Which is the BEST Java Web Service Framework to use?
Hi all,
I'm a beginner to Web Services.
I am planning to implement java web services to make the communication between java(Tomcat Server) and C# client.
I found list of web service frameworks like,
1. Apache Axis,(POJO,Axiom)
2. JSON-RPC,
3. Java Web Services Development Pack ,
4. Web Services Invocation Framework,
5. Xfire,
6. XML Interface for Network Services. ...
Please do reply me that which web service framework will be efficient to use.
[532 byte] By [
dhillaruna] at [2007-11-27 4:38:01]

# 1
JWSDP is not longer being developed. However, if you are looking for Java and .Net interoperability, WSIT (Web Services Interoperability Technologies) may be the ticket. WSIT is an extension to JAX-WS. Both WSIT and JAX-WS are open source.
WSIT is at http://wsit.dev.java.net and http://java.sun.com/webservices/interop/index.jsp.
JAX-WS is at http://jax-ws.dev.java.net.
Sun's Web Services page is http://java.sun.com/webservices/
# 3
Thanks for your replies.
But, I want to know which Framework will provide better performance?
Also I want to develope the web service as a standard one and
It should be able to provide bulk data exchange.
Please suggest a web service framework (Java-based) which will give better performance.
# 4
> But, I want to know which Framework will provide
> better performance?
>
better than what?
> Also I want to develope the web service as a standard
> one and
each has it's own quircks and implementation details. Each should be able to generate and accept the same SOAP messages though if you implement them properly.
> It should be able to provide bulk data exchange.
>
That will depend in large part on your hardware.
> Please suggest a web service framework
> (Java-based) which will give better performance.
again, better than what?
Better than messenger pidgeons?
Better than swallows (European or African)?
And if so, how heavy would the message capsule be? 2 swallows may be able to carry a coconut together, holding it on a piece of string.
# 5
Actually the client application should send 1000s of datas to service class.
The service class should able to get those data's without loss and it should process those datas.
This is the requirement.
To achieve this I tried POJO Axis2 Web services.
But I want to know whether any other web service framework available to provide good sol for the above requirement .