views:

93

answers:

3

I am gonna implement web service in Java but before implementation I will decide which framework I should use. Simplicity and running on JBoss 4.2.3 Platform are the requirements.

What is your suggestions?

+2  A: 

Since JBoss provides JavaEE features, you can simply take a look at JAX-WS, annotate your EJBs, and let JBoss handle everything from there.

Otherwise you can look at Apache CXF and for JBoss + CXF see here

Bozho
I have tried it, JAX-WS CXF implementation but I couldn't successfully deploy on JBoss 4.2.3
Firstthumb
+2  A: 

Instead of using an additional technology stack component, why not use the @WebService annotation introduced in EJB3. JBoss 4.2.3 supports EJB3

Two examples

Using EJB3 Web Services guarantees that you web services will run on any Java EE compliant server without any modifications to the server.

n002213f
I have used JBoss-WS with EJB 3 support. It is simple. I had tried before but my jboss is customized so some jars are not included. I added these jars in my project. Anyway JBoss-WS is good choice for Java Web Service
Firstthumb
+1  A: 
  1. Axis2 on Tomcat 6
  2. JAX-WS on Tomcat 6

Quick, Fast and Easy

zengr