Skippy
Skippy

Reputation: 161

Client server protocol with XML messages

I have to implement client server protocol over socket in java, and sending the data as XML messages, so i implement one by my self, but i want to know is there any standard API, or standard way to do this in java.

Upvotes: 1

Views: 822

Answers (1)

skaffman
skaffman

Reputation: 403441

Yes, SOAP is the standard. Example Java implementations are Apache CXF, JAX-WS and Spring-WS.

For something a bit simpler, you might want to look at Burlap, but that's very much not a standard, or XMPP.

Upvotes: 2

Related Questions