Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

which is the best framwork for implementing and defining a SOAP web service with Java? Is it JAX WS?

Basically, I want to send a business report (based on XML) from the client to the server. The server validates this report and sends back a status report that the client can evaluate.

I think that SOAP is the way to go since it's an established standard in computer to computer communication.

Thanks for suggestions!

Marco

share|improve this question

1 Answer

up vote 7 down vote accepted

If you want to start from Java Code, JAX-WS is the established standard (possible enhanced through Apache CXF or Axis 2)

If you want to start with XML, use Spring Web Services

(see why contract first for the discussion of the difference)

share|improve this answer
1  
+1 for "why contract first" alone. – duffymo Apr 29 '11 at 15:14

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.