>> Caught SOAPException (SOAP-ENV:Client): Parsing error, response was: >> An invalid XML character (Unicode: 0x1) was found in the element
> This is a guess, but you may need to have the bytes that make up the > image be > within a cdata tag, or use base64 encoding. > Most likely there is a character that is inside the image that has a > different meaning to XML. It's not that it has a different meaning to XML, it's that it has no meaning to XML. 0x1 (and most other control characters) is not a legit Unicode character and thus cannot appear where the XML parser expects to find text. -- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>
