I’m currently trying to implement a WS client in java but I have the following problem:
The server is running in IIS 7.5 and was implemented with c#. It is sending a base64Binary string (which I believe it is supposed to since the original data was a byte array) but on the java side, all I get is an object of class B.
How can I get a byte array back from that object?
Thanks
It sounds like you have a object of type array of byte (byte[])
produces an output of
If this matches your output, then just cast the object into a byte[]