Reputation: 950
Is it possible to map URL according web 2.0 standard in AXIS Web Service without using WSDL? For instance: http://foo.com/user/login/2255 - ???
http://foo.com/user?action=login&id=2255
Upvotes: 1
Views: 831
Reputation: 340903
The URL scheme from your example is commonly referred as a REST service (in contrast to SOAP service, heavily dependent on WSDL). Seems like Axis2 supports REST services, but I've never tried it.
Using JAX-RS standard you can create REST services from plain POJOs, without the need for WSDL (though Axis2 doesn't seem to support JAX-RS yet).
Upvotes: 1