firstthumb
firstthumb

Reputation: 4754

Which Java Web Service Framework do you prefer?

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?

Upvotes: 3

Views: 323

Answers (3)

zengr
zengr

Reputation: 38899

  1. Axis2 on Tomcat 6
  2. JAX-WS on Tomcat 6

Quick, Fast and Easy

Upvotes: 1

TheGuyNextDoor
TheGuyNextDoor

Reputation: 7937

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.

Upvotes: 3

Bozho
Bozho

Reputation: 597362

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

Upvotes: 3

Related Questions