Re: Problem with running testclient.java

2003-10-26 Thread Mees
The axisclasspath already directs to the axis.jar and alle the other jars... so i dunno what u mean with the classpath... --- Xavier Renard <[EMAIL PROTECTED]> wrote: > Mees wrote: > > >I've set the environmental variables AXISCLASSPATH, > >AXIS_LIB and AXIS_HOME. > >I've runned the getQuote exam

Re: Problem with running testclient.java

2003-10-26 Thread Xavier Renard
Mees wrote: I've tried 2 ways: 1 is the path to testclient.class and 2 is to path example1 both failed :S C:\axis>set classpath classpath=C:\axis\samples\userguide\example1\TestClient.class;c:\axis\lib\axis.j ar;c:\axis\lib\axis.jar;c:\axis\lib\commons-discovery.jar;c:\axis\lib\commons-lo gging.ja

Re: Problem with running testclient.java

2003-10-26 Thread NJ Rogers, Learning and Research Technology
Should not be: set classpath classpath=C:\axis\samples\userguide\example1\TestClient.class should not be: C:\axis>set classpath classpath=C:\axis\samples\userguide\example1\; should instead be: C:\axis>set classpath classpath=C:\axis\samples\userguide\example1; (take off slash at end) n --On

Re: Problem with running testclient.java

2003-10-26 Thread NJ Rogers, Learning and Research Technology
Hi From my private emails with you Mees, I think we've discovered that you should have been doing "set classpath= " instead of "set axisclasspath=" Hope you're all sorted out now, Nikki --On 26 October 2003 07:45 -0800 Mees <[EMAIL PROTECTED]> wrote: The axisclasspath already directs

Re: Problem with running testclient.java

2003-10-26 Thread Xavier Renard
Mees wrote: The axisclasspath already directs to the axis.jar and alle the other jars... so i dunno what u mean with the classpath... well, should be on another mailing-list this question. However, trying to execute your class,there is some other classes that need to be found and loaded (as the S

Re: Problem with running testclient.java

2003-10-26 Thread Mees
C:\axis>java samples.userguide.example1.TestClient Exception in thread "main" java.lang.NoClassDefFoundError: samples/userguide/exa mple1/TestClient this is what i get when i do what u say, so i tried it with .; befor the path... that doesn't work either... but it's another error, sth bout refusal

Re: Problem with running testclient.java

2003-10-26 Thread Mees
I've tried exactly what u said, but then i get this: C:\axis>set CLASSPATH=.;C:\axis\samples\userguide\example1\TestClient.class;c:\a xis\lib\axis.jar;c:\axis\lib\axis.jar;c:\axis\lib\commons-discovery.jar;c:\axis\ lib\commons-logging.jar;c:\axis\lib\jaxrpc.jar;c:\axis\lib\saaj.jar;c:\axis\lib\ lo

Re: Problem with running testclient.java

2003-10-26 Thread Mees
--- Xavier Renard <[EMAIL PROTECTED]> wrote: > Mees wrote: > > >I've tried 2 ways: > >1 is the path to testclient.class > >and 2 is to path example1 both failed :S > > > >C:\axis>set classpath > >classpath=C:\axis\samples\userguide\example1\TestClient.class;c:\axis\lib\axis.j > >ar;c:\axis\lib\ax

Re: Problem with running testclient.java

2003-10-26 Thread Mees
--- Xavier Renard <[EMAIL PROTECTED]> wrote: > Mees wrote: > > >I've tried 2 ways: > >1 is the path to testclient.class > >and 2 is to path example1 both failed :S > > > >C:\axis>set classpath > >classpath=C:\axis\samples\userguide\example1\TestClient.class;c:\axis\lib\axis.j > >ar;c:\axis\lib\ax

Re: Problem with running testclient.java

2003-10-26 Thread Mees
I've tried 2 ways: 1 is the path to testclient.class and 2 is to path example1 both failed :S C:\axis>set classpath classpath=C:\axis\samples\userguide\example1\TestClient.class;c:\axis\lib\axis.j ar;c:\axis\lib\axis.jar;c:\axis\lib\commons-discovery.jar;c:\axis\lib\commons-lo gging.jar;c:\axis\li

Re: Problem with running testclient.java

2003-10-26 Thread Mees
yes tomcat is up and running... can it be something wrong with the firewall? I've already tried shutting the firewall off, but that didn't work... orit's because of my router...? --- Xavier Renard <[EMAIL PROTECTED]> wrote: > Mees wrote: > > >I've tried exactly what u said, but then i get > this

Re: Problem with running testclient.java

2003-10-26 Thread Xavier Renard
Mees wrote: I've tried exactly what u said, but then i get this: C:\axis>set CLASSPATH=.;C:\axis\samples\userguide\example1\TestClient.class;c:\a xis\lib\axis.jar;c:\axis\lib\axis.jar;c:\axis\lib\commons-discovery.jar;c:\axis\ lib\commons-logging.jar;c:\axis\lib\jaxrpc.jar;c:\axis\lib\saaj.jar;c:

Re: Problem with running testclient.java

2003-10-26 Thread Mees
I FOUND THE PROBLEM!!! after the previous post i found a similiar problem on the mailinglist "The example tries to connect to a service at http://nagoya.apache.org:5049/axis/services/echo. This service is not running (and has not been for weeks), hence the connection is refused. The "connection

Re: Problem with running testclient.java

2003-10-26 Thread Xavier Renard
Mees wrote: I've set the environmental variables AXISCLASSPATH, AXIS_LIB and AXIS_HOME. I've runned the getQuote example it worked. It gave back 55.25 But now that I've moved on to the user guide, to the example with the TestClient.java. It says run with the following command: java samples.usergui

Re: Problem with running testclient.java

2003-10-26 Thread Mees
on the post http://marc.theaimsgroup.com/?l=axis-user&m=105276538418974&w=2 he says try with telnet to see if it's a network problem... well i tried and no it's not the network that's giving me the error... So what is it? :S --- "NJ Rogers, Learning and Research Technology" <[EMAIL PROTECTED]>

Re: Problem with running testclient.java

2003-10-26 Thread Mees
thanx for helping out! i really appreciate it. But no, i'm not new to java, but I just suck at it... as u have seen... :D I'll let u know if i can get that example to work... --- "NJ Rogers, Learning and Research Technology" <[EMAIL PROTECTED]> wrote: > Hi > > You've sorted out your classpath p

Re: Problem with running testclient.java

2003-10-26 Thread NJ Rogers, Learning and Research Technology
Hi You've sorted out your classpath problem. Now you've got a connect problem. I suggest you search via "Connection refused" in the archives for this list (http://ws.apache.org/axis/mail.html). If you're new to java, servlet containers, web services in general. I suggest you try some of the fre

Re: Problem with running testclient.java

2003-10-26 Thread Mees
i already have Axisclasspath = %AXIS_LIB%\axis.jar;%AXIS_LIB%\commons-discovery.jar;%AXIS_LIB%\commons-logging.jar;%AXIS_LIB%\jaxrpc.jar;%AXIS_LIB%\saaj.jar;%AXIS_LIB%\log4j-1.2.8.jar;%AXIS_LIB%\xml-apis.jar;%AXIS_LIB%\xercesImpl.jar and now also a environmental variable classpath with the same p

Problem with running testclient.java

2003-10-26 Thread Mees
I've set the environmental variables AXISCLASSPATH, AXIS_LIB and AXIS_HOME. I've runned the getQuote example it worked. It gave back 55.25 But now that I've moved on to the user guide, to the example with the TestClient.java. It says run with the following command: java samples.userguide.example1.