How to call Struts Action from Jersey Web Service

1.2k Views Asked by At

I am Mobile App Developer so I don't know much about Web technologies.

Currently I am working on one project in which I am using Jersey for Mobile Web Service and main web site is in Struts1.

I want to call / pass some variables to Struts action from my web service but I don't know how can I call and pass some variable to that action.

Lets say this is url

www.xyz.com/xyz/yyy/market/free/XYZAction.do.do?announce.id=1121&note=testing

of my action and I have to pass 2 parameter announce.id and note

Here is my code

Client client = Client.create();
WebResource webResource = client.resource("www.xyz.com/xyzWebservice/module/market/free/XYZAction.do");

String input = "{\"note\": \"This is note thank you\", "
              + "\"announce.id\":\"48298\", \"profil\":\"13855\", "
              + "\"idprofil\":\"13855\",\"portage\":\"false\"}";

// POST method
ClientResponse response = webResource.accept("multipart/form-data")
                          .type("multipart/form-data")
                          .post(ClientResponse.class, input);


// check response status code
if (response.getStatus() != 200) {
     throw new RuntimeException("Failed : HTTP error code : "
               + response.getStatus());
}


// display response
String output = response.getEntity(String.class);
System.out.println("Output from Server .... ");
System.out.println(output + "\n");

But it's not working.

0

There are 0 best solutions below