Re: ApcheSOAP without Apache

2002-11-11 Thread Ashutosh Arora
Thanks Scott and others for their inputs. My intent was that just like java has java.net.HTTPURLConnection for HTTP client side, if there were a class for listening for HTTP Connections, that would have been really perfect. People need not create again and again same code for the HTTP protocol. A

Re: Apache SOAP and JSSE

2002-11-09 Thread Ashutosh Arora
: 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 >

Re: Apache SOAP and request only Web Services.

2002-11-09 Thread Ashutosh Arora
the service before transmitting an HTTP response and (2) always transmits a SOAP envelope as the HTTP entity. The closest thing to one-way operations is any service with a void return type. Scott Nichol - Original Message - From: "Ashutosh Arora" <[EMAIL PROTECTED]> To:

RE: ApcheSOAP without Apache

2002-11-09 Thread Ashutosh Arora
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 Nicho

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

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

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

Re: TODO list

2002-10-13 Thread Ashutosh Arora
Also it does not allows you to set timeouts. You will have to perform blocking reads always. Scott Nichol

Re: multireference types

2002-04-06 Thread Ashutosh Arora
Axis definitely supports multireference types. Workaround for SOAP is to parse the message yourself. There is a method in DOMUtils.getElementByID() You can use that method.

Re: PLEASE HELP

2002-03-18 Thread Ashutosh Arora
You do not have servlet.jar in your classpath. "Nadine Broering"

RE: soap messaging XML ???

2002-03-12 Thread Ashutosh Arora
ode below? Can this be done through Apache SOAP API itself or Is the myEl added to bodyEntries supposed to have method name in it? + Shashi Anand ( Senior Software Engineer 8 Infogain India O B 15 Sec 58, NOida, UP 201301, India -Original Message- From: Ashutosh A

RE: soap messaging XML ???

2002-03-08 Thread Ashutosh Arora
Shashi, Apache SOAP message can be built using Apache SOAP API. You need not read them from file. Developers did a great job with Apache SOAP APIs. It provides great support and utilities for that.  Following code snippet will walk u thru:     // Create document   DocumentBuilder xd

RE: Client specific processing

2001-10-04 Thread Ashutosh Arora
This code snippet shows how...   public void getRate(Envelope reqEnv, SOAPContext reqCtx, SOAPContext respCtx)  throws SOAPException {    HttpServletRequest request = (HttpServletRequest) reqCtx.getProperty(      Constants.BAG_H

https and Apache SOAP...

2001-09-28 Thread Ashutosh Arora
Hello Everybody, I am trying to use https with Apache SOAP and Tomcat for invoking a web-service. My project requires me to write my custom protocol handlers. I mean my project uses URL class to load my custom protocol handler for http and https. There I've to set the system property "java.protoco

RE: httpRequest in my webservice ?

2001-08-21 Thread Ashutosh Arora
Hi! Did you found how to get the HTTPRequest object in the Web Service? Do you mind sharing it with me. Thanks. -Ashutosh. -Original Message- From: Naggi Rao [mailto:[EMAIL PROTECTED]] Sent: Monday, July 23, 2001 10:13 AM To: [EMAIL PROTECTED] Subject: httpRequest in my webservice ? Hi

Publishing Web Services...

2001-07-16 Thread Ashutosh Arora
Guys, How do you publish your Web Services? I want to know, which tools you guys use to generate WSDL documents. I created a proxy class and deployed it on Tomcat. Now I want to register this Web Service onto UDDI server. I want to know, how shall I generate WSDL document for it? Are there any ope