ApcheSOAP without Apache

2002-11-07 Thread Jean-Luc Cooke
All, good work on this OSS project. Very keen. I'm going to ask something out-landish here and I'm very interested in your response. I'd like to create a small java application which accepts HTTP-SOAP requests and processes them. In other words: I want to create a light-weight HTTP-SOAP service

RE: ApcheSOAP without Apache

2002-11-07 Thread Pavel Ausianik
Hello, I think you have answered youself - to implement Apache SOAP you need an servlet engine. Of cource you may want to implement realy simple and limited one youself - but still you need to take care of finding and processing HTTP header, and creating one when sending responce. Is it really wo

Re: ApcheSOAP without Apache

2002-11-07 Thread Jean-Luc Cooke
All, Thanks for your help. I've gone with Tomcat's Servlets and I'm going to put apacheSOAP in the middle of it and my application. Deploying SOAP applications is like pulling teeth for a kernel hacker such as myself. JLC - http://www.kerneli.org/ On Thu, Nov 07, 2002 at 10:40:13PM +0200, Pave

Re: ApcheSOAP without Apache

2002-11-07 Thread Ashutosh Arora
I'm also interested in something similar. I basically want to be able to recieve HTTP requests, extract the HTTP headers, HTTP body. And then using Apache SOAP parse the SOAP message. And then finally compose a response using Apache SOAP and respond back to the client. Is there any open source, wh

Apache SOAP and JSSE

2002-11-07 Thread Ashutosh Arora
Hi! I'm researching Apache SOAP to figure out if I can use any JSSE with Apache SOAP on client side. I understand previous releases were using Sun's JSSE directly. Is there any compile-time or run-time dependency with Sun's JSSE? I looked at the code. It does not seems to me that there is any run

Apache SOAP and request only Web Services.

2002-11-07 Thread Ashutosh Arora
Hi, Is it possible to invoke request only Web Services using Apache SOAP? I want to use SOAP/HTTP to invoke a request only Web SErvice. Is there any way I can leverage Apache SOAP to do that? Is there any sample code that I can refer to? Any help will be greatly appreciated. Thanks -Ashutosh

Re: Apache SOAP and JSSE

2002-11-07 Thread Scott Nichol
You are right: the use of that field from Sun's JSSE implementation is unnecessary. I will remove it. Scott Nichol - Original Message - From: "Ashutosh Arora" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, November 07, 2002 5:18 PM Subject: Apache SOAP and JSSE > Hi! > > I'

Re: Apache SOAP and request only Web Services.

2002-11-07 Thread Scott Nichol
Apache SOAP does not currently implement something equivalent the one-way ports specified in WSDL (http://www.w3.org/TR/wsdl.html#_one-way). I am not certain what specification says how to implement this on HTTP. Microsoft has the server respond with an empty (no entity) HTTP response with some m

cvs commit: xml-soap/java/src/org/apache/soap/util/net SSLUtils.java

2002-11-07 Thread snichol
snichol 2002/11/07 20:32:37 Modified:java/src/org/apache/soap/util/net SSLUtils.java Log: Remove unnecessary dependency on Sun's JSSE implementation. Revision ChangesPath 1.9 +2 -4 xml-soap/java/src/org/apache/soap/util/net/SSLUtils.java Index: SSLUtils.ja

Re: ApcheSOAP without Apache

2002-11-07 Thread Scott Nichol
You may find it difficult to have Apache SOAP parse the request, execute the service method, the write the response, because some of the server code to do this depends on the code running in a servlet container. It would be *great* to factor out these dependencies: any volunteers? Scott Nichol -