I am working on a web service, services talk to each other with SOAPMessage (SOAP XML). SOAPMessage enters my method as a byte array
public void process(byte xmlByteArray[]){ ... ..... }
what i need is to convert this byte array to raw XML so that i can process it with JDOM.
do you know any solution for this problem?