...
Code Block | ||||||
---|---|---|---|---|---|---|
| ||||||
package com.celestial.jaxrs.client; import com.celestial.dbankbusinessobjects.User; import com.sun.jersey.api.client.Client; import com.sun.jersey.api.client.ClientResponse; import com.sun.jersey.api.client.WebResource; import com.sun.jersey.api.client.config.ClientConfig; import com.sun.jersey.api.client.config.DefaultClientConfig; import com.sun.jersey.api.json.JSONConfiguration; /** * * @author Selvyn */ public class TestServices { public static void main(String[] args) { try { User usr = new User("David", "PP-WW-QQ"); ClientConfig clientConfig = new DefaultClientConfig(); clientConfig.getFeatures().put( JSONConfiguration.FEATURE_POJO_MAPPING, Boolean.TRUE); Client client = Client.create(clientConfig); WebResource webResource = client .resource("http://localhost:8084/dbwstier/dbrest/user/fu/selvyn/gradprog2016"); ClientResponse response = webResource.accept("application/json") .type("application/json").getpost(ClientResponse.class, usr); if (response.getStatus() != 200201) { throw new RuntimeException("Failed : HTTP error code : " + response.getStatus()); } String output = response.getEntity(String.class); System.out.println("Server response .... \n"); System.out.println(output); } catch (Exception e) { e.printStackTrace(); } } } |
...
This will be a carrier object, holding two objects of type User.
Let's see the full server side service interface
Code Block | ||||||||
---|---|---|---|---|---|---|---|---|
| ||||||||