Re: Need help badly with soap apache!!!!!

2003-05-29 Thread Scott Nichol
Scott Nichol - Original Message - From: "Henk Schipper" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]> Sent: Wednesday, May 28, 2003 1:47 AM Subject: RE: Need help badly with soap apache! > Hi Scott, > > I think so too that somewhere

RE: Need help badly with soap apache!!!!!

2003-05-27 Thread Henk Schipper
Original Message- From: Scott Nichol [mailto:[EMAIL PROTECTED] Sent: Tuesday, May 27, 2003 11:32 PM To: [EMAIL PROTECTED]; [EMAIL PROTECTED] Subject: Re: Need help badly with soap apache! Two questions 1. How have you deployed Apache SOAP on the server? Did you create a webapp? Did

Re: Need help badly with soap apache!!!!!

2003-05-27 Thread Scott Nichol
Two questions 1. How have you deployed Apache SOAP on the server? Did you create a webapp? Did you change Tomcat's classpath? 2. How have you deployed your service class, newrequestv2? On 26 May 2003 at 20:09, Henk Schipper wrote: > Hi All, > > We are implementing apache soap fase 2 now. >

Re: Need help with user defined Objects

2002-10-21 Thread Scott Nichol
The "standard" pattern for bean usage is to use the default constructor and set any properties with mutator (setter) methods. To use the BeanSerializer with your MyDouble class, MyDouble must have a "double" property that is read/write, i.e. it either has public getter/setter methods or the field

Re: Need help with user defined Objects

2002-10-21 Thread Mark Childerson
Does MyDouble have a public void setValue(double value) and a public double getValue() methods? If not, it will not meet the definition of a bean, so the BeanSerializer will not be able to handle it properly. Mark At 11:35 AM 21/10/2002 -0400, you wrote: I am a newbie and I have been trying to

Re: Need help creating a custom type mapping

2002-10-18 Thread Scott Nichol
http://cvs.apache.org/viewcvs.cgi/*checkout*/xml-soap/java/docs/guide/se rializer.html is the latest documentation on type mapping; I just added a client code snippet from the addressbook sample. This page has a link to show the general addition that must be made to the deployment descriptor. For

Re: Need help in soap 2.3.1 samples

2002-10-15 Thread jingkun . hu
Thanks a lot,  Scott. It is working now.

Re: Need help in soap 2.3.1 samples

2002-10-15 Thread Scott Nichol
ur service classes and jars in the directories under %CATALINA_HOME% or under path-to-apache-soap/webapps/soap/WEB-INF. <<<< Scott Nichol - Original Message - From: "Scott Nichol" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, October 15, 2

Re: Need help in soap 2.3.1 samples

2002-10-15 Thread Scott Nichol
Address.class implements the service. Scott Nichol - Original Message - From: <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, October 15, 2002 2:49 PM Subject: Re: Need help in soap 2.3.1 samples > What I did is dropping the soap.war to %JWSDP_HOME%/webapps and

Re: Need help in soap 2.3.1 samples

2002-10-15 Thread jingkun . hu
> 2002-10-15 02:33 PM Please respond to soap-user                 To:        [EMAIL PROTECTED]         cc:        (bcc: Jingkun Hu/BRQ/RESEARCH/PHILIPS)         Subject:        Re: Need help in soap 2.3.1 samples         Classification:         The classes in a webapp are not accessibl

Re: Need help in soap 2.3.1 samples

2002-10-15 Thread Scott Nichol
samples. How did you install Apache SOAP in Tomcat? Scott Nichol - Original Message - From: <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, October 15, 2002 2:26 PM Subject: Re: Need help in soap 2.3.1 samples > This is addressbook.war I created using deploy

Re: Need help in soap 2.3.1 samples

2002-10-15 Thread jingkun . hu
   Re: Need help in soap 2.3.1 samples         Classification:         What is in addressbook.war? Scott Nichol - Original Message - From: <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, October 15, 2002 2:09 PM Subject: Re: Need help in soap 2.3.1 samples > S

Re: Need help in soap 2.3.1 samples

2002-10-15 Thread Scott Nichol
What is in addressbook.war? Scott Nichol - Original Message - From: <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, October 15, 2002 2:09 PM Subject: Re: Need help in soap 2.3.1 samples > Scott, > > I forgot to mention that I didn't installed Tomc

Re: Need help in soap 2.3.1 samples

2002-10-15 Thread jingkun . hu
Scott, I forgot to mention that I didn't installed Tomcat separately but together with Sun's JWSDP. I created addressbook.war and dropped it to the webapp directory. Also, I can see addressbook is running in Tomcat's Web Service Manager: /Addressbook:running:0:C:\jwsdp-1_0_01\webapps\Addressbook

Re: Need help in soap 2.3.1 samples

2002-10-15 Thread Scott Nichol
Tomcat searches, such as $CATALINA_HOME/classes. Scott Nichol - Original Message - From: <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, October 15, 2002 1:52 PM Subject: Re: Need help in soap 2.3.1 samples > Scott, > > The apache Soap is installed successfull

Re: Need help in soap 2.3.1 samples

2002-10-15 Thread jingkun . hu
    To:        [EMAIL PROTECTED]         cc:        (bcc: Jingkun Hu/BRQ/RESEARCH/PHILIPS)         Subject:        Re: Need help in soap 2.3.1 samples         Classification:         I believe that this except tells you what to do >>>> The Apache SOAP distribution includes a web archive at

Re: Need help in soap 2.3.1 samples

2002-10-15 Thread Scott Nichol
s can either be copied to the Tomcat lib or classes directories or to the directories that are created when Tomcat unpacks the soap.war file. Scott Nichol - Original Message - From: <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, October 15, 2002 11:47 AM Subject: Re:

Re: Need help in soap 2.3.1 samples

2002-10-15 Thread jingkun . hu
RQ/RESEARCH/PHILIPS)         Subject:        Re: Need help in soap 2.3.1 samples         Classification:         Your server cannot load the classes for the samples.  Since you are using Tomcat 4.0.1, you should follow these instructions for installation Apache SOAP: http://cvs.apache.org/viewcvs.cgi/*

Re: Need help in soap 2.3.1 samples

2002-10-15 Thread Scott Nichol
Your server cannot load the classes for the samples. Since you are using Tomcat 4.0.1, you should follow these instructions for installation Apache SOAP: http://cvs.apache.org/viewcvs.cgi/*checkout*/xml-soap/java/docs/install/ tomcat.html?rev=HEAD&content-type=text/html Scott Nichol - Origi

RE: Need help!

2001-12-07 Thread Rino Srivastava
D] Cc: '[EMAIL PROTECTED]' Subject: RE: Need help! Rino, Send the vector (again hoping the vector has some data) to the soap server again. There you get the values of the vector and store it in a database using jdbc or whatever... If u dont want that and want to store from the client co

RE: Need help!

2001-12-07 Thread Senthil_M_Kumar
[EMAIL PROTECTED]'" <[EMAIL PROTECTED]> cc:

RE: Need help!

2001-12-07 Thread Rino Srivastava
Thanks, Xavier. I'll give it a try. Rino -Original Message- From: Xavier Renard [mailto:[EMAIL PROTECTED]] Sent: Friday, December 07, 2001 11:39 AM To: [EMAIL PROTECTED] Subject: RE: Need help! Rino, Once you have your Vector , you can retrieve yours paramaters with the approp

RE: Need help!

2001-12-07 Thread Xavier Renard
do I store it to >be able to store it to a database? > >Thanks. >Rino > >-Original Message- >From: Vinod Soni [mailto:[EMAIL PROTECTED]] >Sent: Friday, December 07, 2001 11:31 AM >To: [EMAIL PROTECTED] >Subject: Re: Need help! > > >Well, let go step

RE: Need help!

2001-12-07 Thread Rino Srivastava
I have been able to print the response object. But now how do I store it to be able to store it to a database? Thanks. Rino -Original Message- From: Vinod Soni [mailto:[EMAIL PROTECTED]] Sent: Friday, December 07, 2001 11:31 AM To: [EMAIL PROTECTED] Subject: Re: Need help! Well, let

Re: Need help!

2001-12-07 Thread Vinod Soni
n value. Anyway, the simplest thing to test your client is to do System.out.println(resp)try and see what's inside it and what do you want out of it ? - Original Message - From: "Rino Srivastava" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Friday, December 0

RE: Need help!

2001-12-07 Thread Rino Srivastava
lto:[EMAIL PROTECTED]] Sent: Friday, December 07, 2001 11:13 AM To: [EMAIL PROTECTED] Subject: Re: Need help! Hi Rino, Obviously Response is an object in apache. So first you will have to parse the Response and keep the fields and values you want. Simply, you can take out a Vector from Resp

Re: Need help!

2001-12-07 Thread Vinod Soni
Hi Rino, Obviously Response is an object in apache. So first you will have to parse the Response and keep the fields and values you want. Simply, you can take out a Vector from Response object this way. Response response = Call.invoke(url, ""); Vector v = response.getParams(); and then you shou

RE: Need help on win2000 soap run with tomcat

2001-06-05 Thread Matthew J. Duftler
]Subject: Re: Need help on win2000 soap run with tomcat Never mind... it works now. - Original Message - From: Shyam Sarkar To: [EMAIL PROTECTED] Sent: Tuesday, June 05, 2001 7:27 AM Subject: Re: Need help on win2000 soap run with tomcat

Re: Need help on win2000 soap run with tomcat

2001-06-05 Thread Shyam Sarkar
Never mind... it works now. - Original Message - From: Shyam Sarkar To: [EMAIL PROTECTED] Sent: Tuesday, June 05, 2001 7:27 AM Subject: Re: Need help on win2000 soap run with tomcat Hi,   I have all the correct classpath defined.  Still getting class

Re: Need help on win2000 soap run with tomcat

2001-06-05 Thread Shyam Sarkar
sbook.Address' could not be resolved: samples.addressbook.Address   --- - Original Message - From: Uzay Takaoglu To: '[EMAIL PROTECTED]' Sent: Monday, June

RE: Need help on win2000 soap run with tomcat

2001-06-04 Thread Uzay Takaoglu
-- - Original Message - From: Matthew J. Duftler To: [EMAIL PROTECTED] Sent: Monday, June 04, 2001 12:13 PM Subject: RE: Need help on win2000 soap run with tomcat Hi Shyam,   Are you using Xerces v1.3.1? If you

Re: Need help on win2000 soap run with tomcat

2001-06-04 Thread Sanjiva Weerawarana
Please see the docs - in the troubleshooting section in the User's guide there's an item covering exactly this problem. Sanjiva. - Original Message - From: "Shyam Sarkar" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Monday, June 04, 2001 4:44 PM S

Re: Need help on win2000 soap run with tomcat

2001-06-04 Thread Shyam Sarkar
7;urn:AddressFetcher': class name 'samples.addressbook.Address' could not be resolved: samples.addressbook.Address --- - Original Message - From: Matthew J. Duftler To: [EMAIL PROTECTED] Sent: Monday, Jun

RE: Need help on win2000 soap run with tomcat

2001-06-04 Thread Matthew J. Duftler
Hi Shyam,   Are you using Xerces v1.3.1? If you are, please you a different version of Xerces, or any other JAXP-compliant parser.   Thanks, -Matt -Original Message-From: Shyam Sarkar [mailto:[EMAIL PROTECTED]]Sent: Monday, June 04, 2001 2:06 PMTo: [EMAIL PROTECTED]Subject: N