tags:

views:

24

answers:

1

What the best way of passing images over a soap server?

I'm using WCF 4.0 and flex for my front end.

+1  A: 

I cannot say if this is the best, but I have used Base64 encoding to send binary data as XML within SOAP as well as AMQP. Worked well for what I needed, but YMMV.

Rob Goodwin
Base64 is the ONLY way to encode binary data through a text format.
Nate Bross