RE: SOAP with IIS

2002-10-28 Thread Dan Allen
You need to obtain the Jakarta ISAPI redirector for Tomcat. I don't have the exact reference handy but I can find it if you cannot. The ISAPI plugin is called by IIS whenever an HTTP request is received. The plugin checks to see if the request is a servlet

RE: newbie questions

2002-10-15 Thread Dan Allen
If you must use Apache SOAP look at the sorce code for rpcrouter. It's short, cryptic, and an example of what you want to do. I have no experience (yet ;-) with Axis but I can say that Apache SOAP is indeed lacking in the type of modularity you are likely need/wa

RE: SOAP Headers

2002-09-23 Thread Dan Allen
I can't help with examples but the general idea is to use the Envelope.setEnvelopeEntries() method to add the headers. IIRC the argument is a Vector of DOM Elements to be used as header entries. I also seem to recall that this is an all-or-none operation. Whatever yo

RE: HTTP 1.1 Protocol for Requests

2002-06-18 Thread Dan Allen
Edit Constants.java and rebuild? > -Original Message- > From: Frank Cohen [mailto:[EMAIL PROTECTED]] > Sent: Monday, June 17, 2002 11:06 PM > To: [EMAIL PROTECTED] > Subject: HTTP 1.1 Protocol for Requests > > > I'm using Apache SOAP 2.3.1 on Sun JDK 1.4 on Windows 2000. I noti

RE: Can Tomcat share port 80?

2002-05-23 Thread Dan Allen
TheTomcat ISAPI plug-in for IIS provides this functionality > -Original Message- > From: Maris Orbidans [mailto:[EMAIL PROTECTED]] > Sent: Wednesday, May 22, 2002 3:12 PM > To: [EMAIL PROTECTED] > Subject: RE: Can Tomcat share port 80? > > > > Charles > > If by "share port 80

RE: Can Tomcat share port 80?

2002-05-23 Thread Dan Allen
The ISAPI plugin for Tomcat provides this functionality. > -Original Message- > From: Maris Orbidans [mailto:[EMAIL PROTECTED]] > Sent: Wednesday, May 22, 2002 2:15 PM > To: [EMAIL PROTECTED] > Subject: RE: Can Tomcat share port 80? > > > > I dont think so. > > Maris > > > -

RE: Can Tomcat share port 80?

2002-05-23 Thread Dan Allen
I have > -Original Message- > From: Charles Brauer [mailto:[EMAIL PROTECTED]] > Sent: Wednesday, May 22, 2002 12:37 PM > To: [EMAIL PROTECTED] > Subject: Can Tomcat share port 80? > > > Howdy all, > > Has anybody successfully setup Tomcat to share port 80 with > a web server on a Wind

RE: setEnvelopeEntries

2002-05-07 Thread Dan Allen
Why DOM nodes of course ;-) Had to look at the source to figure that out - ouch! Build your content as a DOM document. Dan > -Original Message- > From: Mark Hauchwitz [mailto:[EMAIL PROTECTED]] > Sent: Tuesday, May 07, 2002 12:54 PM > To: [EMAIL PROTECTED] > Su

RE: Xerces2

2002-05-06 Thread Dan Allen
I am using Xerces2 to build and exchange Soap messages using the Soap 2.2 dist. Had to write my own MessageHandler using the Soap utilities. Can't use JAXP style interfaces to get the necessary configuration info into Xerces DOM parser. Dan > -Origi