REA_ANDREW
REA_ANDREW

Reputation: 10774

Does anyone know of a Java implementation similar to the .NET SoapFormatter

I am looking for a library or code snippet to allow me to serialize and de serialize an object into a SOAP representation. Similar to what the .NET SoapFormatter does but an implementation in Java.

I have looked on Google and web but so far I have been unable to find something which does it. I know there is a namepsace in javax for SOAP, but again, if this holds what I need ton achieve it, I am looking for a little guidance code to show me an example or something.

TIA

Andrew

Upvotes: 0

Views: 164

Answers (2)

Mykola Golubyev
Mykola Golubyev

Reputation: 59882

Please take a look at the JAXB(Java Architecture for XML Binding) and SAAJ(SOAP with Attachments API for Java).

Upvotes: 1

skaffman
skaffman

Reputation: 403581

There are more web service implementations in Java than you could shake a stick at. There is no one way of doing this stuff.

Are you actually looking for a web service implementation, or just that one very specific task? There's no such thing as "SOAP representation", so I'm not sure what you're asking for.

Upvotes: 0

Related Questions