Re: java2wsdl

2002-11-06 Thread Selvakumar Ganesan
Emma, Make sure you are at the correct directory level when issuing the command. You may be inside fibonacci directory (where Fibonacci.class is present) while issuing the command, in which case the class file path is just Fibonacci and not fibonacci.Fibonacci. Assuming you are

Re: How to make Axis work in WSAD

2002-10-28 Thread Selvakumar Ganesan
David, I await the answer too. I am trying to run it within Eclipse. Will post here if I make any progress. regards, Selva. - Original Message - From: [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Tuesday, October 29, 2002 4:03 AM Subject: How to make Axis work in

Running axis standalone server under eclipse

2002-10-25 Thread Selvakumar Ganesan
Hi, Is there a way I can run the SimpleAxisServer inside Eclipse environment ? I didn't understand the error message, which says java.lang.NoClassDefFoundError when I try to launch SimpleAxisServer inside Eclipse. Any pointers as to how I should go about dong this ? appreciate any help. Selva.

Re: WSDL2Java not reading from live internet URLs?

2002-10-23 Thread Selvakumar Ganesan
In your client code you can set the System properties. Client code is the class/servlet where you instantiate the WSDL2Java generated Locator and Stub classes. //set the proxy System.getProperties().put( http.proxySet, true ); System.getProperties().put( http.proxyHost, );

Re: Problem installing Axis with Tomcat 4.1.12 [Scanned for known viruses]

2002-10-21 Thread Selvakumar Ganesan
] To: [EMAIL PROTECTED] Sent: Monday, October 21, 2002 7:22 PM Subject: Re: Problem installing Axis with Tomcat 4.1.12 [Scanned for known viruses] in 4.1.12 I believe I put this in TOMCAT_HOME/common/lib Selvakumar Ganesan [EMAIL PROTECTED] on 10/21/2002 06:35:15 AM Please respond

Re: A SOAP Client through a proxy

2002-10-18 Thread Selvakumar Ganesan
Hi, Steve answered earlier and worked for me. Use : System.getProperties().put( http.proxyHost, yourProxyHost ); System.getProperties().put( http.proxyPort, yourProxyPort ); If your proxy requires authorization, you'll get a (407)Proxy authorization required message from the proxy, but it does

Getting UnknownHostException

2002-10-17 Thread Selvakumar Ganesan
Hi, I've written a client to access the FexExTrackingService hosted at xmethods. Am running the client inside company firewall (with authentication). This throws up the exception under. I've tried setting the proxyHost, proxyPort in the command line parameters (-DproxyHost etc) without any