Re: Tomact Servlet Deploy Question/Problem- Help

2002-03-20 Thread Sanjay Bahal
Can anybody help on this. TIA Sanjay --- Sanjay Bahal <[EMAIL PROTECTED]> wrote: > I installed Tomcat4.01/NT the examples run- > webapps/servlets. > I am trying to deploy my example servlet it does not run. > I have directory structure /webapps/search. > Under this I have m

Re: Tomact Deploy Question/Problem

2002-03-19 Thread Sanjay Bahal
Hi all, Can anybody help me deploy a servlet? Thanks a lot, Sanjay --- Sanjay Bahal <[EMAIL PROTECTED]> wrote: > I insatalled Tomcat the examples run- > webapps/servlets. > I am trying to deploy my example it does not run. > I have directory structure /webapps/search. > Unde

Tomact Deploy Question/Problem

2002-03-19 Thread Sanjay Bahal
I insatalled Tomcat the examples run- webapps/servlets. I am trying to deploy my example it does not run. I have directory structure /webapps/search. Under this I have my html file hello.htm- Execute I have further dir. struc- /webapps/search/web-inf/classes Under web-inf I have my web.xml-

Tomcat Deployment

2002-03-15 Thread Sanjay Bahal
New to Tomcat- installed it- examples run fine. I want to undersatnd the deployment structure. The documentation does not make it so clear. I have looked at the various web.xml's - I could'nt find the one for examples. My question is how do I deploy my servlet? Do I create a new file structure for

RE: Soap 2_2 on Tomact 4

2001-11-29 Thread Sanjay Bahal
rces.jar for > tomcat 3.3 & soap 2.2 ? > > -----Original Message- > From: Sanjay Bahal [mailto:[EMAIL PROTECTED]] > Sent: Thursday, November 29, 2001 3:11 PM > To: [EMAIL PROTECTED] > Subject: RE: Soap 2_2 on Tomact 4 > > > I think the way soap_2_2 is to be con

RE: Soap 2_2 on Tomact 4

2001-11-29 Thread Sanjay Bahal
that came with SOAP > download are incorrect. Just > remove this context information, but make sure > you do everything else, such as specify xerces.jar > as a first thing in your > classpath and copy yout soap.war file to webapps > directory. > > Max > > -----Ori

RE: Tomcat 3.3 & soap 2.2... Help!!!!

2001-11-29 Thread Sanjay Bahal
In /tomcat/bin/tomcat.bat HTH Sanjay --- "Sahoo, Ajaya (CICG, CSSD)" <[EMAIL PROTECTED]> wrote: > In which file I should add the CLASSPATH ?? > > -Original Message- > From: Sanjay Bahal [mailto:[EMAIL PROTECTED]] > Sent: Thursday, November 29, 2001

Soap 2_2 on Tomact 4

2001-11-29 Thread Sanjay Bahal
Hi, I am trying to run soap_2_2 on Tomcat4. I have set my conetxt: But when I access:http://localhost:8080/soap I get error: The requested resource (/soap) is not available. My Soap setup works fine with Tomcat_3_2. Any ideas. TIA Sanjay __

Re: Tomcat 3.3 & soap 2.2... Help!!!!

2001-11-29 Thread Sanjay Bahal
Just add xerces.jar in front of the set CLASSPATH statement. HTH Sanjay --- "Sahoo, Ajaya (CICG, CSSD)" <[EMAIL PROTECTED]> wrote: > Hi, > > I am trying to work with SOAP2.2 and Tomcat 3.3. I > have this document for > Apache-SOAP Version 2.2: Installing the Server > Side Und

RE: Soap Deseralization Error

2001-11-17 Thread Sanjay bahal
Any body getting a chance to look at this. TIA Sanjay --- Sanjay bahal <[EMAIL PROTECTED]> wrote: > The code looks like this: > SOAPMappingRegistry registry = new > SOAPMappingRegistry(); > QName qname = new QName( "urn:my_encoding", > "demo.Invoice&q

RE: WSDL descriptors

2001-11-16 Thread Sanjay bahal
You can use the web developers toolkit from IBM wstk2.4 to create the wsdl from an interface. Sanjay --- PJ Murray <[EMAIL PROTECTED]> wrote: > Hello Alex, > > I'm not sure if this will help, but there's a case > study about using SOAP > with Attachments at this address. > > http://www.capecle

RE: Soap Deseralization Error

2001-11-14 Thread Sanjay bahal
ement( new Parameter( "invoice", Invoice.class, new Invoice( "MyInvoice", 42 ), null ) ); call.setParams( params ); Response response = call.invoke( url, "" ); Thanks again, Sanjay --- Sanjay bahal <[EMAIL PROTECTED]> wrote: > Henk: > Here is the deployment de

RE: Soap Deseralization Error

2001-11-14 Thread Sanjay bahal
ion numbers. > > Further on can you give the definition of your > deployment descriptor and > soap request? > > Thx > > Henk. > > -Original Message- > From: Sanjay bahal [mailto:[EMAIL PROTECTED]] > Sent: Wednesday, 14 November, 2001 2:51 PM > To: [

Soap Deseralization Error

2001-11-14 Thread Sanjay bahal
Hi, I get the flwg error: No Deserializer found to deserialize a 'urn:my_encoding:demo.Invoice' using encoding style 'http://schemas.xmlsoap.org/soap/encoding/'. demo.Invoice my class. any ideas, Thanks Sanjay I use Tomcat 3_2 and SOAP_2_2 __