Hi All,
My web service receives both binary and base64 encoded attachments.
SOAPHandler process these request and stripps off the attachements. I am
using SAJJ for SOAP processing.
Handling of attachments is dependant on type of encoding.
All of my requests attachments have "Content-Transfer-Encoding" mime header.
But when dump SOAPMessage, I dont see Content-Transfer-Encoding header.
Following is the snippet I used to dump the message.
<snip>
try {
soapMessage.writeTo(System.out);
} catch (SOAPException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
</snip>
Is this issue with SAJJ? Can you please confirm this ASAP, because this is
blocking issue for us?
Thanks,
Nitin.