RE: Webservice Client not working from inside Tomcat5

2008-01-24 Thread Callaway, Pamela
] To: axis-user@ws.apache.org Sent: Wednesday, January 23, 2008 12:21 PM Subject: Re: Webservice Client not working from inside Tomcat5 I remember having a similar problem in the past... I'm not sure if it is the same, but try setting up the Action header on your client to match that of your

Re: Webservice Client not working from inside Tomcat5

2008-01-24 Thread Martin Gainty
java.lang.Object[] {userName, password}); Thank you! (I really can't say that enough.) Pam -Original Message- From: Martin Gainty [mailto:[EMAIL PROTECTED] Sent: Wednesday, January 23, 2008 1:02 PM To: axis-user@ws.apache.org Subject: Re: Webservice Client not working from inside Tomcat5

RE: Webservice Client not working from inside Tomcat5

2008-01-24 Thread Callaway, Pamela
: Martin Gainty [mailto:[EMAIL PROTECTED] Sent: Thursday, January 24, 2008 12:01 PM To: axis-user@ws.apache.org Subject: Re: Webservice Client not working from inside Tomcat5 using AXIS-1_4 specific environment I generated the following client stub using WSDL2Java at command line java -classpath

RE: Webservice Client not working from inside Tomcat5

2008-01-24 Thread Callaway, Pamela
Subject: RE: Webservice Client not working from inside Tomcat5 _call.setOperation(_operations[0 //references the first operation and NOT the 44th.. Perhaps this is due to the number of operations in the WSDL? I wasn't able to attach the whole WSDL - it was over 10,000 bytes, too big

RE: Webservice Client not working from inside Tomcat5

2008-01-23 Thread Callaway, Pamela
PM To: axis-user@ws.apache.org Subject: Re: Webservice Client not working from inside Tomcat5 Is there anything showing up in Tomcat's logs? Is the Tomcat process running as a service, or as a user that may not be able to establish network connections? Are all of the jars that the web service

RE: Webservice Client not working from inside Tomcat5

2008-01-23 Thread Callaway, Pamela
: Webservice Client not working from inside Tomcat5 try Requesting JSP-Servlet (Servlet constructs the AxisService call from supplied params which acts as AxisClient) -AxisService Response JSP - Servlet (receives the params and populates response

Re: Webservice Client not working from inside Tomcat5

2008-01-23 Thread Maicon Stihler
? This doesn't happen when I run the JUnit test on the client. Thank you! Pam -Original Message- From: Callaway, Pamela [mailto:[EMAIL PROTECTED] Sent: Wednesday, January 23, 2008 11:17 AM To: axis-user@ws.apache.org Subject: RE: Webservice Client not working from inside Tomcat5 Hi, thanks

Re: Webservice Client not working from inside Tomcat5

2008-01-23 Thread Martin Gainty
] To: axis-user@ws.apache.org Sent: Wednesday, January 23, 2008 12:21 PM Subject: Re: Webservice Client not working from inside Tomcat5 I remember having a similar problem in the past... I'm not sure if it is the same, but try setting up the Action header on your client to match that of your target

Re: Webservice Client not working from inside Tomcat5

2008-01-20 Thread Stephen Souness
Is there anything showing up in Tomcat's logs? Is the Tomcat process running as a service, or as a user that may not be able to establish network connections? Are all of the jars that the web service client requires included in your web app? -- Stephen Callaway, Pamela wrote: Hi folks,

Re: Webservice Client not working from inside Tomcat5

2008-01-18 Thread Martin Gainty
- - Original Message - From: Callaway, Pamela To: axis-user@ws.apache.org Sent: Friday, January 18, 2008 3:36 PM Subject: Webservice Client not working from inside Tomcat5 Hi folks, I am encountering a strange problem with my webservice client that I generated using wsdl2java

Webservice Client not working from inside Tomcat5

2008-01-18 Thread Callaway, Pamela
Hi folks, I am encountering a strange problem with my webservice client that I generated using wsdl2java. It works fine from the command line or as a JUnit test, but when I try and use it from a JSP file, it doesn't return a result. Exactly the same code, no differences that I can find,