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 – ???
Is it possible to map URL according web 2.0 standard in AXIS Web Service
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
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).