RE: How to setUp a Visual Basic Client to talk to Apache Service

2002-04-03 Thread Tiago Fernandes Thomaz
Scott, I adapt your VB client (StockQuoteClient) in order to call my service and the changes were: dim sSOAPMsg as string sSOAPMsg = "1.108"+i+"7934527842@935255660@936493989" (note that I changed that \ character to visual basic, & chr(34) &, and there was no problem) Method: sendRequest

RPCRouterServlet?

2002-04-03 Thread Mikko Laanti
Hi, Could some please, explain or give me a point where to find information about RPCRouterServlet and how it works? I would be also very interested in Apache/SOAP server's architecture e.g. how it's build and who it's working. Any documents around? Thanks, - ML .

Re: How to setUp a Visual Basic Client to talk to Apache Service

2002-04-03 Thread dswanson1
Scott, THANK YOU for doing this...that's all I need is a good exampleI don't suppose you have a WSDL file that "describes" one of the example methods?or do the MS clients have to use the low level api because of the xsi:type attribute?...I'll be looking over this one today...thanks a

Re: How to setUp a Visual Basic Client to talk to Apache Service

2002-04-03 Thread Scott Nichol
Doug, Thanks for the kind words. I basically aimed to get something working and had some code snippets posted by Ed Keen. I then tried to generalize things using the address book sample and came up with some classes that should be pretty easy for an Apache SOAP programmer to learn. Some day, m

Re: How to setUp a Visual Basic Client to talk to Apache Service

2002-04-03 Thread Scott Nichol
At what line of source code does the error occur? Also, you will need to "escape" sSOAPMsg, e.g. turn "<" into "<" and ">" into ">". Scott - Original Message - From: "Tiago Fernandes Thomaz" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, April 03, 2002 5:57 AM Subject: RE:

Coinnector.EndMessage error: Invalid procedure call or argument!

2002-04-03 Thread Tiago Fernandes Thomaz
I believe the problem is nopt in the string since I've tried with a simpler one (sXML="Tiago") and still got the same error. I've done that scott and still get the same error in line: Connector.EndMessage Any ideas?? Tiago Fernandes Thomaz -Original Message- From: Scott Nichol [mailt

RE: http timeouts

2002-04-03 Thread McEligot, Sean (contractor)
Thanks, that's what I was looking for. I will call setSOAPTransport instead of modifying the code from now on. > I'm not sure why you needed to change Message.java. Your > client code can > create a SOAPHTTPConnection, set its timeout, then set the > transport on the > Message (or Call for RPC

Re: Coinnector.EndMessage error: Invalid procedure call or argument!

2002-04-03 Thread Scott Nichol
I believe this error indicates that the client was not able to connect to the server. Note that the server is set by this line of code: END_POINT_URL = "http://localhost:8080/soap/servlet/rpcrouter"; If your Apache SOAP rpcrouter is at a different URL, you must change this code. Of course, you

RE: Coinnector.EndMessage error: Invalid procedure call or argument!

2002-04-03 Thread Tiago Fernandes Thomaz
I'm running the vb client from my machine. Thnaks anyway, Scott! Tiago Fernandes Thomaz -Original Message- From: Scott Nichol [mailto:[EMAIL PROTECTED]] Sent: quarta-feira, 3 de Abril de 2002 16:25 To: [EMAIL PROTECTED] Subject: Re: Coinnector.EndMessage error: Invalid procedure call or

Please help me to solve this error

2002-04-03 Thread Purvesh Vora
error.doc Description: MS-Word document

Re: Coinnector.EndMessage error: Invalid procedure call or argument!

2002-04-03 Thread Scott Nichol
My next suggestion would be to run TcpTunnelGui and point the VB client at it so that you can see if anything is sent over the wire. Scott - Original Message - From: "Tiago Fernandes Thomaz" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, April 03, 2002 10:37 AM Subject: RE:

Re: Please help me to solve this error

2002-04-03 Thread Scott Nichol
Can you post the error in some format other than a Word document, e.g. text or a JPEG/GIF image? Scott - Original Message - From: "Purvesh Vora" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, April 03, 2002 9:42 AM Subject: Please help me to solve this error __

Re: Coinnector.EndMessage error: Invalid procedure call or argument!

2002-04-03 Thread Scott Nichol
Here is something interesting: I was testing using the SOAP Toolkit 2.0 (not 2.0 SP2) on NT 4 SP 6. When I tried using SOAP Toolkit 2.0 SP2 on Windows 2000 SP1, I got the same error as Tiago. I will investigate further Scott - Original Message - From: "Scott Nichol" <[EMAIL PROT

RE: Coinnector.EndMessage error: Invalid procedure call or argument!

2002-04-03 Thread Tiago Fernandes Thomaz
Where can I get TcpTunnelGui and how do I manage it? Tiago Fernandes Thomaz -Original Message- From: Scott Nichol [mailto:[EMAIL PROTECTED]] Sent: quarta-feira, 3 de Abril de 2002 17:03 To: [EMAIL PROTECTED] Subject: Re: Coinnector.EndMessage error: Invalid procedure call or argument!

RE: Coinnector.EndMessage error: Invalid procedure call or argume nt!

2002-04-03 Thread Vaibhav Joshi
Hi, You can get a tcp trace util from any where on the webit lets you know what is passed to the server and what the server returns back Thanking you Vaibhav Joshi -Original Message- From: Tiago Fernandes Thomaz [mailto:[EMAIL PROTECTED]] Sent: Wednesday, April 03, 2002 11:37 AM To:

Re: Coinnector.EndMessage error: Invalid procedure call or argument!

2002-04-03 Thread Scott Nichol
It's part of Apache SOAP. If Tomcat is listening on port 8080, then run java org.apache.soap.util.net.TcpTunnelGui 81 localhost 8080 The client should point to port 81 instead of 8080. Then all characters sent back and forth will be captured. Please note my other message to this list: if

Re: Coinnector.EndMessage error: Invalid procedure call or argume nt!

2002-04-03 Thread Scott Nichol
There is also a trace utility included in the SOAP Toolkit. Scott - Original Message - From: "Vaibhav Joshi" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, April 03, 2002 12:21 PM Subject: RE: Coinnector.EndMessage error: Invalid procedure call or argume nt! > Hi, > You

Re: Coinnector.EndMessage error: Invalid procedure call or argument!

2002-04-03 Thread Scott Nichol
I copied the 2.0 binaries to my Win2k machine, unregistered the SP2 binaries and registered the 2.0, and the code works. I don't know whether this is a bug or feature of SP2. Unfortunately, I overwrote my 2.0 distribution with the SP2 one, so all I can do is move the binaries around. Scott ---

RE: Coinnector.EndMessage error: Invalid procedure call or argument!

2002-04-03 Thread Tiago Fernandes Thomaz
Scott, I've tried to run the client in several operating systems (Windows NT4, Windows 2000 SP2) with this toolkit (SOAP 2.0) and I've not been able yet to run it succesfully. What are your achievements so far? Tiago Fernandes Thomaz -Original Message- From: Scott Nichol [mailto:[EMAIL

RE: SOAP ObjecT support

2002-04-03 Thread Soumen Sarkar
I beleive a definite answer on this issue is needed to foster SOAP interop. I would vote for disallowing it, just my opinion. Soumen Sarkar. -Original Message- From: Scott Nichol [mailto:[EMAIL PROTECTED]] Sent: Tuesday, April 02, 2002 8:37 PM To: [EMAIL PROTECTED] Subject: Re: SOAP Obje

Re: Coinnector.EndMessage error: Invalid procedure call or argument!

2002-04-03 Thread Scott Nichol
Replace the line that sets the soap action with If Len(SOAP_ACTION) > 0 Then Connector.Property("SoapAction") = SOAP_ACTION Apparently, SP2 does not allow you to set an empty soap action. However, not setting it at all achieves the same result. Scott - Original Message - From: "Ti

Re: SOAP ObjecT support

2002-04-03 Thread Scott Nichol
I note that Xerces does not complain when I have an element named . It does complain for <-xmlfoo>, which is not a valid name. I bet other parsers behave the same. Since this issue comes from the XML spec, I'd rather see the Apache SOAP code do nothing about it and let parsers complain. Scott

RE: Coinnector.EndMessage error: Invalid procedure call or argument!

2002-04-03 Thread Tiago Fernandes Thomaz
I've tried to look for the binaries of 2.0 to download but did not find any. Do u know where can I found them? Tiago Fernandes Thomaz -Original Message- From: Scott Nichol [mailto:[EMAIL PROTECTED]] Sent: quarta-feira, 3 de Abril de 2002 19:50 To: [EMAIL PROTECTED] Subject: Re: Coinnect

Re: Coinnector.EndMessage error: Invalid procedure call or argument!

2002-04-03 Thread Scott Nichol
Don't look for 2.0 binaries; do this instead: Replace the line that sets the soap action with If Len(SOAP_ACTION) > 0 Then Connector.Property("SoapAction") = SOAP_ACTION Apparently, SP2 does not allow you to set an empty soap action. However, not setting it at all achieves the same result.

Null Call object passed to locate of the provider

2002-04-03 Thread Zalewski, Tomasz
Should the EJB SOAP implementation work with the message based SOAP? It looks like the StatelessEJBProvider.locate method receives a null for the call object because the MessageRouterServlet passed a hard coded null as that argument. Should MessageRouterServlet be extracting the call similar to

Why is ServerHTTPUtils.readEnvelpeFromRequest() private?

2002-04-03 Thread Daniel P Allen
I ran into a problem using the subject class (SOAP 2.2). I was embarking on a custom message router and cannot access this method from my own package. Is there some reason it is not exposed? I'd rather not have to clone this class for all of the obvious reasons. Are user written routers

Re: How to setUp a Visual Basic Client to talk to Apache Service

2002-04-03 Thread Scott Nichol
All, I have added a page of instructions for using the high level API from the Microsoft SOAP Toolkit to connect to the Apache SOAP stock quote service. The page is http://mywebpages.comcast.net/scottnichol/vbclienthiapachesoap.htm Scott Nichol - Original Message - From: "Scott Nichol