I have created a Web Service in C# that delivers thumbnails from SQL
Server as byte arrays. It works. In C# I can create a client that will
display the images using the web service. I am trying to convert the
byte array to a bitmap and use that as the source to a datagrid column
with an in the itemRenderer. I have tryed several different
approaches. Using the web service and displaying text is straight
forward and I have no problem there. When I try to use the byte array to
create bitmap data a...