Se si utilizzano servizi Web riposanti (si consiglia Jersey se si è http://jersey.dev.java.net) è possibile passare oggetti annotati JAXB. Jersey serializzerà e deserializza automaticamente i tuoi oggetti sia lato client che lato server.
Lato server;
@Path("/mypath")
public class MyResource
{
@GET
@Produces(MediaType.APPLICATION_XML)
public MyBean getBean()
{
MyBean bean = new MyBean();
bean.setName("Hello");
bean.setMessage("World");
return bean;
}
@POST
@Consumers(MediaType.APPLICATION_XML)
public void updateBean(MyBean bean)
{
//Do something with your bean here
}
}
Lato client;
//Get data from the server
Client client = Client.create();
WebResource resource = client.resource(url);
MyBean bean = resource.get(MyBean.class);
//Post data to the server
bean.setName("Greetings");
bean.setMessage("Universe");
resource.type(MediaType.APPLICATION_XML).post(bean);
JAXB bean;
@XmlRootElement
public class MyBean
{
private String name;
private String message;
//Constructors and getters/setters here
}
Puoi condividere un esempio di questo, uno di SOAP e altro di JSON? – Rachel
In quale linguaggio di programmazione? – heb
Java è la lingua che stiamo usando. – Rachel