RE: Using SOAP

2000-09-06 Thread Kamlesh Patel
Title: Using SOAP Thanks a lot for useful tips!   Kam -Original Message-From: Christopher Taylor [mailto:[EMAIL PROTECTED]Sent: 06 September 2000 07:05To: [EMAIL PROTECTED]Subject: RE: Using SOAP Awesome!  Thanks for the pointer.   -Chris -Original

RE: Using SOAP

2000-09-06 Thread Christopher Taylor
Title: Using SOAP Awesome!  Thanks for the pointer.   -Chris -Original Message-From: John Noss [mailto:[EMAIL PROTECTED]Sent: Tuesday, September 05, 2000 8:37 PMTo: [EMAIL PROTECTED]Subject: RE: Using SOAP Using SOAP in IE 5.0 or higher is pretty straightforward.  You can

RE: Using SOAP

2000-09-06 Thread John Noss
Title: Using SOAP Using SOAP in IE 5.0 or higher is pretty straightforward.  You can invoke the MS XML parser (MSXML) from _javascript_.  You do not need to have an ActiveX control.  You can use the HTTP component of the MSMXL parser to send a POST to the Unix web server that includes the

RE: Using SOAP

2000-09-06 Thread Christopher Taylor
Title: Using SOAP That's another good question.  I'm not familiar with IE 5.5's built-in XML parser, but I wonder if you built an ActiveX control using Microsoft's SOAP toolkit... you could probably use JScript to tickle it into sending the right information (b

RE: Using SOAP

2000-09-05 Thread Kamlesh Patel
Title: Using SOAP Chris,   Lets say SOAP server is on a UNIX machine and client is running IE on windows machine (doesn't have Apache SOAP client API's). How can client machine invoke a SOAP request from a HTML page?   Sorry I am asking same question again. I thought whole purpo

RE: Using SOAP

2000-09-05 Thread Christopher Taylor
Title: Using SOAP Kam,   H... that's a good question.  We're using SOAP for a few applications at work, but our clients just drop SOAP messages over an HTTP connection.   If you want to do this stuff from a ASP (which I have no experience with), I'd think you'd ha

RE: Using SOAP

2000-09-05 Thread Kamlesh Patel
Title: Using SOAP Thanks Chris. I was reading documentation of Apache SOAP and I got an impression that we need to use Apache SOAP client API's (implemented using Java classes) on client side as well. So if my ASP is a SOAP client, how can I access this Java APIs from it?

RE: Using SOAP

2000-09-05 Thread Christopher Taylor
Title: Using SOAP Kam,   The only way that comes to mind is to use a Servlet that knows how to parse a posted SOAP message.  When the Servlet receives the message and parses it, it can use its RequestDispatcher object to forward() the call to a particular JSP.   -Chris  -Original

Using SOAP

2000-09-05 Thread Kamlesh Patel
Title: Using SOAP Hi, Any idea how can I invoke JSP from a ASP page using SOAP? Thanks, Kam