jAX-WS 2.0 binary data transmission
Hi all,
Just tap into web service technology recently. I google around and found out that there is MTOM.
But if by default,without MTOM enabled, how does JAX-WS handle binary transmission by default?
for example: one of my web method
@webmethod
publicvoid upload(byte[] byteArray){
//implementation
}
is above method automatically send the byte array as attachment in SOAP or it is just embedded in SOAP?
Best regards,
Caesar

