Re: Exception while deploying service

2001-06-18 Thread Sanjiva Weerawarana
Latest is v1.4 I believe and there have been no reported problems with that. Also, note that Apache SOAP v2.2 is JAXP enabled, meaning that you can use any JAXP compatible parser. Sanjiva. - Original Message - From: "Khamesra, SandeepX" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent:

RE: DeployedServices.ds

2001-06-18 Thread Matthew J. Duftler
Hi Cleveland,   Your question is answered in the "Server Configuration" section of the User's Guide.   Thanks, -Matt -Original Message-From: cleveland cooke [mailto:[EMAIL PROTECTED]]Sent: Friday, June 15, 2001 12:15 AMTo: [EMAIL PROTECTED]Subject: DeployedServices.ds Do

RE: SOAP Method without returnValue - possible?

2001-06-18 Thread Matthew J. Duftler
Hi Ralf, Yes, this will work fine. The "deploy" method on org.apache.soap.server.ServiceManagerClient is one example if a void method being used. > -Original Message- > From: Ralf Bierig [mailto:[EMAIL PROTECTED]] > Sent: Friday, June 15, 2001 10:11 AM > To: [EMAIL PROTECTED]; [EMAIL PRO

RE: Exception while deploying service

2001-06-18 Thread Matthew J. Duftler
Hi Sandeep, It is a known problem with the namespace support in Xerces v1.3.1. Higher and lower versions work fine. Thanks, -Matt > -Original Message- > From: Khamesra, SandeepX [mailto:[EMAIL PROTECTED]] > Sent: Friday, June 15, 2001 2:37 PM > To: '[EMAIL PROTECTED]' > Subject: RE: Exc

Apache SOAP threading

2001-06-18 Thread Chris Laws
I am using Apache Tomcat SOAP to do distributed applications in Java. When my client app sends a request to the server, it appears as if all threads on the client side are paused until the response is received and processed from the server. Sometimes the data sent from the server is of a rel

RE: Help: SMTP over SOAP

2001-06-18 Thread Hardik Sanghvi
Shahid, You will need to implement SMTP2HTTP bridge to make it work. Refer to following document for more details: http://xml.apache.org/soap/faq/faq_chawke_smtp.html Hardik >Reply-To: [EMAIL PROTECTED] >From: "Shahid Ahmad" <[EMAIL PROTECTED]> >To: <[EMAIL PROTECTED]>, <[EMAIL PROTECTED]> >S

FW: User defined object as a request, literal XML as aresponse. Poss ible?!

2001-06-18 Thread Hecking, Dirck J
Guys, Can someone please take a shot at my problem? -Dirck -Original Message- From: Hecking, Dirck J [mailto:[EMAIL PROTECTED]] Sent: Friday, June 15, 2001 11:13 AM To: '[EMAIL PROTECTED]' Subject: User defined object as a request, literal XML as a response. Poss ible?! Guys, Dirck

Re: User defined object as a request, literal XML as aresponse. Poss ible?!

2001-06-18 Thread Naggi Rao
hi, Let me know if you need help.. I have a method which accepts a Element(Object) and returns a Literal XML Naggi - Original Message - From: "Hecking, Dirck J" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]> Sent: Monday, June 18, 2001 1:33 PM Subject: FW: User defined

RE: User defined object as a request, literal XML as aresponse. Poss ible?!

2001-06-18 Thread Khamesra, SandeepX
Does any one have any code which returns XML as return value -Original Message- From: Naggi Rao [mailto:[EMAIL PROTECTED]] Sent: Monday, June 18, 2001 2:01 PM To: [EMAIL PROTECTED]; [EMAIL PROTECTED] Subject: Re: User defined object as a request, literal XML as aresponse. Poss ible?! h

Re: User defined object as a request, literal XML as aresponse. Poss ible?!

2001-06-18 Thread Naggi Rao
public Element getAllListings() in the addressBook example would give u more insight - Original Message - From: "Khamesra, SandeepX" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]> Sent: Monday, June 18, 2001 2:09 PM Subject: RE: User defined object as a request, literal

RE: User defined object as a request, literal XML as aresponse. Poss ible?!

2001-06-18 Thread Khamesra, SandeepX
Naggi, I have a sample exactly the same and it gives me an error No serializer defind What does that mean ? -Original Message- From: Naggi Rao [mailto:[EMAIL PROTECTED]] Sent: Monday, June 18, 2001 2:45 PM To: [EMAIL PROTECTED] Subject: Re: User defined object as a request, literal XML as

Re: User defined object as a request, literal XML as aresponse. Poss ible?!

2001-06-18 Thread Naggi Rao
..OK I guess Scott had helped me with that... I donot know how you are accessing the webServices.. if you are using Java Code ..then make sure ur client has : call.setEncodingStyleURI(Constants.NS_URI_LITERAL_XML); Here's my generated XML (Request..) http://schemas.xmlsoap.org/soap

problem with the build of the src dist for soap 2.2

2001-06-18 Thread Rich Catlett
I just downloaded the source version, and the build process has a few problems. After getting all of the requisite jar files, and getting the dependencies right, I did a build dist. The build script chockes when it tries to do the samples target. There is no samples directory. After looking ar

RE: User defined object as a request, literal XML as aresponse. Poss ible?!

2001-06-18 Thread Khamesra, SandeepX
u are correct.. I was not using the NS_URI_LITERAL_XML.. Where can I get more info. regarding this ? -Original Message- From: Naggi Rao [mailto:[EMAIL PROTECTED]] Sent: Monday, June 18, 2001 3:15 PM To: [EMAIL PROTECTED] Subject: Re: User defined object as a request, literal XML as aresp

Re: User defined object as a request, literal XML as aresponse. Poss ible?!

2001-06-18 Thread Naggi Rao
A Lot is in the specifications.. Also at xml.apache.org And at : http://vsys-www.informatik.uni-hamburg.de/documents/docs/soap21/docs/faq.htm l But the best resource is the SOAP Engine's Source code.. Cheers, Naggi - Original Message - From: "Khamesra, SandeepX" <[EMAIL PROTECTED]> To:

Help: SMTP over SOAP

2001-06-18 Thread Shahid Ahmad
Has anyone managed to get the GetQuoteSMTP sample to work?