Can someone point me in the right direction? I am new to Java
(somewhat) but have built many web services in .Net. This time
however, I need to build one in Java without SOAP. I am using eclipse
and have Tomcat and Axis running. Is there a book .... tutorial ...
concept to tearing web services away from the fat envelopes of SOAP. I
need something light and quick. What are my options?
TIA
-mark
Venkatesh - 27 Apr 2006 05:29 GMT
One thing that I have heard about is XML-RPC. Java has support for this
"Java API for XML-Based RPC (JAX-RPC)". See the URL
http://java.sun.com/webservices/jaxrpc/ for more details.
-Venkatesh
Tony Morris - 27 Apr 2006 06:54 GMT
> Can someone point me in the right direction?
Representational State Transfer (REST)
http://en.wikipedia.org/wiki/Representational_State_Transfer

Signature
Tony Morris
http://tmorris.net/
Oliver Wong - 01 May 2006 22:54 GMT
> Can someone point me in the right direction? I am new to Java
> (somewhat) but have built many web services in .Net. This time
> however, I need to build one in Java without SOAP. I am using eclipse
> and have Tomcat and Axis running. Is there a book .... tutorial ...
> concept to tearing web services away from the fat envelopes of SOAP. I
> need something light and quick. What are my options?
http://en.wikipedia.org/wiki/SOAP#Alternatives_to_SOAP
- Oliver