Java SOAP Server that can be deployed to Tomcat, JBoss, Geronimo, etc. Etc. Etc.

I hope to create a Java SOAP server that I can deploy to Tomcat, or to JBoss, or to Geronimo, or to XYZ, etc. etc. etc.

In the bottom line, it should have the least dependencies. I am trying to avoid libraries beyond what is included in the standard java distribution due to licensing / packaging / reuse issues.

Can I provide a link to where I should start searching, or some sample code?

+5
source share
5 answers

Java 1.6 introduced the ability to create standard SOAP web services with a standard JDK.

, http://weblogs.java.net/blog/2006/12/12/webservices-jdk-6

IDE, NetBeans, (apt), .

, .

+4
+1

.

http://www.w3.org/TR/soap/

. . HTTP XML .

XFire Axis2 - ...

+1

Metro 1.4 ( ), -.

Drop the banners in the Java 5 web container, annotate your class and method with the standard @tags, and let Metro do the rest.

I was very pleased with the performance in the Jetty container.

0
source

If you use the Spring web service module, you do not need Axis or XFire. I think this is a good way if you are already using Spring.

0
source

All Articles