Re: Classpath on Windows ME

2002-10-08 Thread Syam Rajasekharuni
Hi, I have tried this method. After restarting the computer, the classpath appears in single line in Autoexec.bat. But, I still get Out of environment space error when starting Tomcat. If I comment out the CLASSPATH in Autoexec, Tomcat starts. So the problem is still with the Classpath. Any mor

Fault and exception handling

2002-10-08 Thread Ann-Cathrin Dykström
Hi, I'm looking for examples of how fault and exception handling is done?? I'm writing a SOAP web service in Java. /Annci -- To unsubscribe, e-mail: For additional commands, e-mail:

Re: Fault and exception handling

2002-10-08 Thread Scott Nichol
I am not certain what you mean by "fault and exception handling". You say you are writing a service. The service does not need to have anything specific to SOAP. You can handle exceptions the way you always would, both catching exceptions you don't want propagating to the client and throwing ex

soap, Jetty

2002-10-08 Thread Emma Johansson
Hi! Is there some way to create a client that communicates with a servlet where Jetty is the servlet container and all messages should be transmitted as SOAP messages over HTTP? If so, please tell me how. I have just found tutorials when Tomcat is the server. / Emma -- To unsubscribe, e-mail:

Re: soap, Jetty

2002-10-08 Thread Scott Nichol
Apache SOAP should be able to work with any servlet container. The only thing that changes from container to container is the way in which Apache SOAP is installed. Doing a Google search, I found some info on installing Apache SOAP 2.0 on Jetty 3.0, but the current Apache versions install differ

Re: soap, Jetty

2002-10-08 Thread Scott Nichol
I have successfully run Apache SOAP with Jetty. Here's what I did. 1. Download and install Jetty 1.4.1 2. Edit %JETTY_HOME%\bin\jetty.bat, adding two lines after line 117 (the location of activation.jar and mail.jar will vary) set CP=%CP%;j:\jakarta-tomcat-4.0.1\common\lib\activation.jar

Re: soap, Jetty

2002-10-08 Thread Scott Nichol
You can now view Jetty installation instructions at http://cvs.apache.org/viewcvs.cgi/*checkout*/xml-soap/java/docs/install/ jetty411.html?rev=1.1. Scott Nichol - Original Message - From: "Scott Nichol" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, October 08, 2002 10:05 AM

cvs commit: xml-soap/java/docs/install jetty411.html index.html

2002-10-08 Thread snichol
snichol 2002/10/08 07:49:53 Modified:java/docs/install index.html Added: java/docs/install jetty411.html Log: Add installation instructions for Jetty 4.1.1. Revision ChangesPath 1.30 +2 -1 xml-soap/java/docs/install/index.html Index: index.html =

Re: Classpath on Windows ME

2002-10-08 Thread Scott Nichol
I suspect your use of /e:920 in config.sys means that the option is ignored. My config.sys on Windows 98 has shell=c:\windows\command.com /e:4096 /p You can build your classpath like (note that you should not need the J2SDK stuff) SET CLASSPATH=C:\AXIS SET CLASSPATH=%CLASSPATH%;C:\XML-

Re: Classpath on Windows ME

2002-10-08 Thread Scott Nichol
Check http://support.microsoft.com/default.aspx?scid=kb;en-us;Q230205; you will see that the maximum environment space is 4096k. Scott Nichol - Original Message - From: "Scott Nichol" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, October 08, 2002 11:07 AM Subject: Re: Classp

RE: Classpath on Windows ME

2002-10-08 Thread Pavel Ausianik
Hello, in general it is not necessary to set up maximum environment space for all applications. It is possible to run single application with bigger env space, like following (soory I'm not sure for keys exactly, have no Win ME to check) command /e:4096 /c YOURBATFILE Best regards, Pavel > ---

Re: SOAP & PHP

2002-10-08 Thread Scott Nichol
Can you be more specific about what you are trying to do? Scott Nichol - Original Message - From: "Dale Attree" <[EMAIL PROTECTED]> To: "SOAP-Dev" <[EMAIL PROTECTED]> Sent: Tuesday, October 08, 2002 1:48 AM Subject: SOAP & PHP > Is there any other way than having to instantiate multipl

Re: Classpath on Windows ME

2002-10-08 Thread rwbolerjack
Need to check your computer date it is set for August. > > From: "Syam Rajasekharuni" <[EMAIL PROTECTED]> > Date: 2002/08/09 Fri AM 01:24:22 EDT > To: <[EMAIL PROTECTED]> > Subject: Classpath on Windows ME > > Hi, > > I am deploying SparePartPrice web service in Tomcat, AXIS Java SOAP > environ

Re: Classpath on Windows ME

2002-10-08 Thread Scott Nichol
You will find that catalina.bat uses a fair amount of environment. However, it is mostly dynamically creating the proper command to invoke. On the machine I am currently using, which already has CATALINA_HOME, CATALINA_BASE and JAVA_HOME in the environment, running startup.bat from %CATALINA_HOME%

committing some perf improvements

2002-10-08 Thread Sanjiva Weerawarana
Several months ago I made some changes to the codebase on my machine to basically change write (s1 + s2 + .. + sn) to write (s1) write (s2) .. and noticed that it got an improvement of about 5%. I just went thru and brought the changes in sync with the latest codebase. Unless anyone o

Re: Classpath on Windows ME

2002-10-08 Thread Syam Rajasekharuni
Hi, I created the bat file with the following: Line 1 set _CLASSPATH=%CLASSPATH% Line2 set CLASSPATH="C:\XML-AXIS-BETA1\LIB\AXIS.JAR;C:\XML-AXIS-BETA1\LIB\JAXRPC.JAR;C :\XML-AXIS-BETA1\LIB\CLUTIL.JAR;C:\XML-AXIS-BETA1\LIB\WSDL4J.JAR;C:\XML-AXIS -BETA1\LIB\LOG4J-CORE.JAR;C:\XML-AXIS-BETA1\LIB\CO