|
Axis2 ServiceClient enables one to invoke a service in a RESTfull manner, and that can be used to invoke a REST service as well. Let's see how this can be done.
|
Date: Sat, 17th Jun, 2006
Level:
Reads: 16425
Discuss this article on Stack Overflow
|
|
|
|
Eran Chinthaka Software Engineer WSO2 Inc. |
|
|
|
The difference between doing a SOAP invocation and a REST invocation depends on just one line (with default configuration). Just insert the following line of code:
options.setProperty(Constants.Configuration.ENABLE_REST, Constants.VALUE_TRUE);
Let's see the complete code snippet.
Options options = new Options();
options.setTo(new EndpointReference(toEpr));
options.setProperty(Constants.Configuration.ENABLE_REST, Constants.VALUE_TRUE);
ServiceClient sender = new ServiceClient();
sender.setOptions(options);
OMElement result = sender.sendReceive(getPayload());
If you are invoking a Web service in RESTful manner, make sure the toEpr you give has all the information required to identify the operation and the service that you are invoking. The above code will invoke a resource using HTTP PUT method. To change it to use GET method simply set another option as shown below.
options.setProperty(Constants.Configuration.HTTP_METHOD,
Constants.Configuration.HTTP_METHOD_GET);
Can I change the content type of the request? Yes, you can.
options.setProperty(Constants.Configuration.CONTENT_TYPE, contentType);
The content type should be one of the following:
- MEDIA_TYPE_X_WWW_FORM - application/x-www-form-urlencoded
- MEDIA_TYPE_TEXT_XML - text/xml
- MEDIA_TYPE_MULTIPART_RELATED - multipart/related
- MEDIA_TYPE_APPLICATION_XML - application/xml
Very helpful post.