I want to return an array of images from a sql server through a web service written in asp dot net . I could return a single file by sending the byte array back . How to return an array of byte arrays or an image images back to the flex application?
Share
I did it finally by creating an array of byte array on the C# web service,and returning this double dimension array .