RE: Service.createCall

2005-01-11 Thread Vivek Singhai
l the webservice method audaOrderServicePort.requestPacketList(<>,..); Thanks, Vivek -Original Message- From: jecki [mailto:[EMAIL PROTECTED] Sent: Wednesday, January 12, 2005 9:36 AM To: [EMAIL PROTECTED] Subject: Service.createCall hi, I'm trying to consu

Service.createCall

2005-01-11 Thread jecki
hi, I'm trying to consume a web service using AXIS client API. Can anyone give me the best practice to code the client application? Should I create Service or Call object all the time, or can I reuse it... or what if I want to use Service or Call object in a Servlet, which is not thread-safe.

Service.createCall

2005-01-11 Thread jecki
hi, I'm trying to consume a web service using AXIS client API. Can anyone give me the best practice to code the client application? Should I create Service or Call object all the time, or can I reuse it... or what if I want to use Service or Call object in a Servlet, which is not thread-safe.

Re: Service.createCall() - Is this a bug ?

2004-07-09 Thread Davanum Srinivas
here are some guidelines - http://nagoya.apache.org/wiki/apachewiki.cgi?AxisProjectPages/SubmitPatches thx, -- dims On Sat, 10 Jul 2004 02:28:11 +0530, sanjay <[EMAIL PROTECTED]> wrote: > Service.java > Changing the call > > FromService.createCall() > to Ser

RE: Service.createCall() - Is this a bug ?

2004-07-09 Thread sanjay
Service.java Changing the call FromService.createCall() to Service.createCall(QName portType) in Service.createCall(QName portType, QName operationName) should work, first call doesn't initialize anything from WSDL, third is supposed to do all initialization, second is

Re: Service.createCall() - Is this a bug ?

2004-07-09 Thread Davanum Srinivas
PROTECTED] > Sent: Saturday, July 10, 2004 12:51 AM > To: [EMAIL PROTECTED] > Subject: Re: Service.createCall() - Is this a bug ? > > looks like a bugplease submit a bug report with a small test case > if possible., > > -- dims > > - Original Message - &

RE: Service.createCall() - Is this a bug ?

2004-07-09 Thread sanjay
Thanks, I filed a bug for this [AXIS-1445] Regards Sanjay -Original Message- From: Davanum Srinivas [mailto:[EMAIL PROTECTED] Sent: Saturday, July 10, 2004 12:51 AM To: [EMAIL PROTECTED] Subject: Re: Service.createCall() - Is this a bug ? looks like a bugplease submit a bug report

Re: Service.createCall() - Is this a bug ?

2004-07-09 Thread Davanum Srinivas
looks like a bugplease submit a bug report with a small test case if possible., -- dims - Original Message - From: sanjay <[EMAIL PROTECTED]> Date: Fri, 9 Jul 2004 23:07:12 +0530 Subject: Service.createCall() - Is this a bug ? To: [EMAIL PROTECTED]

Service.createCall() - Is this a bug ?

2004-07-09 Thread sanjay
Hi   Service.createCall is overloaded with following methods -   1. Service.createCall(QName portName) 2. Service.createCall(QName portName, QName operationName) 3. Service.createCall()   If I call (1) and then - call.setOperationName() it works fine. If I call (2) and it

RE: Service.createCall() internal error exception

2002-03-15 Thread Neil Smyth
I found the problem, sorry for the post. I was missing the client-config.wsdd file. -Original Message- From: Neil Smyth [mailto:[EMAIL PROTECTED]] Sent: 15 March 2002 09:44 To: '[EMAIL PROTECTED]' Subject: Service.createCall() internal error exception Apologies if I

Service.createCall() internal error exception

2002-03-15 Thread Neil Smyth
Apologies if I am missing something basic, but in trying to execute some of the samples in the the latest code from cvs I am getting an InternalErrorException. The problem code is simply: service = new Service(); which causes a null pointer as the service does not have a configuration set. I ca