RE: axis2/java service client set operation

2011-03-03 Thread Martin Gainty
x27;expéditeur. N'importe quelle diffusion non autorisée ou la copie de ceci est interdite. Ce message sert à l'information seulement et n'aura pas n'importe quel effet légalement obligatoire. Étant donné que les email peuvent facilement être sujets à la manipulation, nous ne

Re: axis2/java service client set operation

2011-03-03 Thread Gordon Brown
s in the middle of the endpoint URL now, will this cause problem? Thanks! Frank From: Sagara Gunathunga To: java-user@axis.apache.org Cc: Gordon Brown Sent: Wed, March 2, 2011 11:00:55 PM Subject: Re: axis2/java service client set operation Hi Gordonw, Axi

Re: axis2/java service client set operation

2011-03-03 Thread Gordon Brown
: Wed, March 2, 2011 4:57:17 PM Subject: RE: axis2/java service client set operation try this ..     String port = ""; //port the TCP mon listens     String SOAPAction = "Service"; //service name     String endpoint = "http://127.0.0.1:"; + port + "

Re: axis2/java service client set operation

2011-03-02 Thread Sagara Gunathunga
Hi Gordonw, Axis2 server side use several criteria to dispatch incoming messages, "soapAction" is one of them take a look [1]. In fact soapAction is mandatory in SOAP 1.1 but replaced in SOAP 1.2 using a optional "action". So your client can send one of above input data according to underline dis

RE: axis2/java service client set operation

2011-03-02 Thread Martin Gainty
try this .. String port = ""; //port the TCP mon listens String SOAPAction = "Service"; //service name String endpoint = "http://127.0.0.1:"; + port + "/service/servlet/AxisServlet"; //create the service Service service = new Service(); //create the call for