Re: soap, tomcat & directories

2002-10-10 Thread Emma Johansson
Hi Scott! Thank you so much for helping me! Yes, I have the line package onjava; both in my CalcService.java and CalcClient.java I am still wondering about the client.class file. You said that I need to reach it from the JVM classpath. Is that some of these which I've set or have I missed s

Re: Custom Deserializer

2002-10-10 Thread Tanmay Kumar
Thanks a lot Scott for your nice explanation. Due to your explanation only, today we can finalize our project design. regards, Tans - Original Message - From: "Scott Nichol" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]> Sent: Thursday, October 10, 2002 10:29 PM Subjec

Re: soap, tomcat & directories

2002-10-10 Thread Scott Nichol
If the CalcService.java has the line package onjava; then you have put the .class file in the right place (you don't need the .java file there) and specified the right class in the deployment descriptor. I believe you will have to restart Tomcat to get it to recognize that the new class fil

Re: Classpath on Windows ME

2002-10-10 Thread Scott Nichol
I have installed Tomcat 4.0.5 (c:\jakarta-tomcat-4.0.5) and Axis 1.0 (c:\xml-axis-10) on a Windows ME machine by unzipping the distribution files. I then installed Axis in Tomcat by doing xcopy c:\xml-axis-10\webapps\axis\* c:\jakarta-tomcat-4.0.5\webapps\axis /e I am fortunate enough that when

Re: soap, tomcat & directories

2002-10-10 Thread Emma Johansson
Sorry, I forgot to mension that I'm using jakarta-tomcat-4.1.12 Emma Johansson wrote: > Hi! > > I have created a SOAP Service and compiled it, but am not sure of in > which directory to place it. > Right now both the .java and .class files are placed in > /jakarta-tomcat-4.1.12/webapps/soap/WEB

soap, tomcat & directories

2002-10-10 Thread Emma Johansson
Hi! I have created a SOAP Service and compiled it, but am not sure of in which directory to place it. Right now both the .java and .class files are placed in /jakarta-tomcat-4.1.12/webapps/soap/WEB-INF/classes/onjava/ I'm also wondering about the deployment descriptor. Mine looks like this: htt

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

2002-10-10 Thread snichol
snichol 2002/10/10 07:16:35 Modified:java/docs/install index.html Log: Explain and clarify class loading issues better, especially potential conflicts with optional packages (lib/ext) and the vagaries of application server class loaders. Revision ChangesPath 1.31

Re: Custom Deserializer

2002-10-10 Thread Scott Nichol
> Apart from using apache SOAP in my project, we have one more specific > requirement for which Is it possible to use the existing/modifying Apache > source code? Yes, you can modify the source for Apache SOAP and use it if you want. > If yes, my requirement is that I want to pass a DOM node to

Re: Classpath on Windows ME

2002-10-10 Thread Syam Rajasekharuni
Hi, Thanks Scott and Pavel for the time and help so far.. though I haven't yet resolved the issue. Syam - Original Message - From: "Syam Rajasekharuni" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, October 09, 2002 4:11 PM Subject: Re: Classpath on Windows ME > Hi, > >

Custom Deserializer

2002-10-10 Thread Tanmay Kumar
Hi all, Apart from using apache SOAP in my project, we have one more specific requirement for which Is it possible to use the existing/modifying Apache source code? If yes, my requirement is that I want to pass a DOM node to unmarshall() method of a Deserializer (may be Bean or custom) during run