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: "Tiago Fernandes Thomaz" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Wednesday, April 03, 2002 1:53 PM
Subject: RE: Coinnector.EndMessage error: Invalid procedure call or argument!


> 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 PROTECTED]]
> Sent: quarta-feira, 3 de Abril de 2002 18:43
> To: [EMAIL PROTECTED]
> Subject: Re: Coinnector.EndMessage error: Invalid procedure call or
> argument!
>
>
> 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 you are using Windows 2000 SP1
> with SOAP Toolkit 2.0 SP2, I am getting the same error as you running the
> stock quote client.  I am looking into this.
>
> Scott
>
> ----- Original Message -----
> From: "Tiago Fernandes Thomaz" <[EMAIL PROTECTED]>
> To: <[EMAIL PROTECTED]>
> Sent: Wednesday, April 03, 2002 11:37 AM
> Subject: RE: Coinnector.EndMessage error: Invalid procedure call or
> argument!
>
>
> > 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!
> >
> >
> > 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: Coinnector.EndMessage error: Invalid procedure call or
> > argument!
> >
> >
> > > 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
> > > argument!
> > >
> > >
> > > 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 should also be certain that the Web container (e.g.
> Tomcat)
> > > is
> > > running.
> > >
> > > Scott Nichol
> > >
> > > ----- Original Message -----
> > > From: "Tiago Fernandes Thomaz" <[EMAIL PROTECTED]>
> > > To: <[EMAIL PROTECTED]>
> > > Sent: Wednesday, April 03, 2002 9:40 AM
> > > Subject: Coinnector.EndMessage error: Invalid procedure call or
> argument!
> > >
> > >
> > > > 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 [mailto:[EMAIL PROTECTED]]
> > > > Sent: quarta-feira, 3 de Abril de 2002 15:18
> > > > To: [EMAIL PROTECTED]
> > > > Subject: Re: How to setUp a Visual Basic Client to talk to Apache
> > > > Service
> > > >
> > > >
> > > > At what line of source code does the error occur?
> > > >
> > > > Also, you will need to "escape" sSOAPMsg, e.g. turn "<" into "&lt;"
> and
> > > ">"
> > > > into
> > > > "&gt;".
> > > >
> > > > Scott
> > > >
> > > > ----- Original Message -----
> > > > From: "Tiago Fernandes Thomaz" <[EMAIL PROTECTED]>
> > > > To: <[EMAIL PROTECTED]>
> > > > Sent: Wednesday, April 03, 2002 5:57 AM
> > > > Subject: RE: How to setUp a Visual Basic Client to talk to Apache
> > Service
> > > >
> > > >
> > > > > Scott,
> > > > >
> > > > > I adapt your VB client (StockQuoteClient) in order to call my
> service
> > > and
> > > > > the changes were:
> > > > >
> > > > > dim sSOAPMsg as string
> > > > >
> > > > > sSOAPMsg = "<?xml version=\"1.0\" encoding=\"US-ASCII\"?><request
> > client
> > > =
> > > > > \"TiagoTest\" action = \"SayHello\"><parameter name = \"sCustCode\"
> > list
> > > =
> > > > > \"false\" separator = \"\">1.1000008"+i+"</parameter><parameter name
> =
> > > > > \"sCurrency\" list = \"false\" separator =
> > \"\">7</parameter><parameter
> > > > name
> > > > > = \"MSISDNList\" list = \"true\" separator =
> > > > > \"@\">934527842@935255660@936493989</parameter></request>" (note
> that
> > I
> > > > > changed that \ character to  visual basic, & chr(34) &, and there
> was
> > no
> > > > > problem)
> > > > >
> > > > > Method: sendRequest;
> > > > >
> > > > > STOCKQUOTE_NS: urn:Example3 (my service);
> > > > >
> > > > > Serializer.startElement "sXML"
> > > > >                     Serializer.SoapAttribute "xsi:type", ,
> > "xsd:string"
> > > > >                     Serializer.writeString sSOAPMsg
> > > > >                 Serializer.endElement
> > > > >
> > > > > It keeps gwetting the following error: Invalid procedure call or
> > > argument.
> > > > > Any ideas?
> > > > >
> > > > > Tiago Fernandes Thomaz
> > > > >
> > > > > -----Original Message-----
> > > > > From: Scott Nichol [mailto:[EMAIL PROTECTED]]
> > > > > Sent: quarta-feira, 3 de Abril de 2002 05:28
> > > > > To: [EMAIL PROTECTED]
> > > > > Subject: Re: How to setUp a Visual Basic Client to talk to Apache
> > > > > Service
> > > > >
> > > > >
> > > > > Nigel,
> > > > >
> > > > > I have quickly put together a pair of Web pages regarding Apache
> SOAP
> > > and
> > > > > Visual Basic clients.  They are
> > > > >
> > > > > Using a VB Client:
> > > > > http://mywebpages.comcast.net/scottnichol/vbclientapachesoap.htm
> > > > > Installing Apache SOAP, Tomcat, etc.:
> > > > > http://mywebpages.comcast.net/scottnichol/apachesoapinstall.htm
> > > > >
> > > > > Scott Nichol
> > > > >
> > > > >
> > > > > ----- Original Message -----
> > > > > From: "Cornyn" <[EMAIL PROTECTED]>
> > > > > To: <[EMAIL PROTECTED]>
> > > > > Sent: Monday, April 01, 2002 9:48 AM
> > > > > Subject: How to setUp a Visual Basic Client to talk to Apache
> Service
> > > > >
> > > > >
> > > > > Can anyone please tell me how to set up a Visual Basic Client that
> > will
> > > > > communicate with a java service.  Do i have to create a dll and what
> > are
> > > > the
> > > > > proper libraries i should include.  I am running on Windows 98.  I
> > have
> > > a
> > > > > java client and server communicating but i cannot get the vb client
> to
> > > do
> > > > > this. I would be greatful if some body could give me some sample
> code
> > > and
> > > > > steps to do this.
> > > > >
> > > > > Thanks in advance
> > > > > NigelMcPartland
> > > > >
> > > > >
> > > > >
> > > > >
> > > > > _________________________________________________________
> > > > >
> > > > > Do You Yahoo!?
> > > > >
> > > > > Get your free @yahoo.com address at http://mail.yahoo.com
> > > > >
> > > >
> > > >
> > > >
> > > > _________________________________________________________
> > > >
> > > > Do You Yahoo!?
> > > >
> > > > Get your free @yahoo.com address at http://mail.yahoo.com
> > > >
> > >
> > >
> > >
> > > _________________________________________________________
> > >
> > > Do You Yahoo!?
> > >
> > > Get your free @yahoo.com address at http://mail.yahoo.com
> > >
> >
> >
> >
> > _________________________________________________________
> >
> > Do You Yahoo!?
> >
> > Get your free @yahoo.com address at http://mail.yahoo.com
> >
>
>
>
> _________________________________________________________
>
> Do You Yahoo!?
>
> Get your free @yahoo.com address at http://mail.yahoo.com
>


_________________________________________________________
Do You Yahoo!?
Get your free @yahoo.com address at http://mail.yahoo.com

Reply via email to