MS SOAP CLIENT

2002-04-17 Thread Vaibhav Joshi
Hi, I want to pass 4 parameters to a SOAP Method written in JAVA-APACHE, through VB,ie. i want to invoke getInstances(String s, String s1,String s2,String s3)... Can you please let me know how can i invoke this method using VB. Is there any sample code u could send me..This is what i am doing..

Re: MS SOAP CLIENT

2002-04-17 Thread Scott Nichol
You can check my samples at http://mywebpages.comcast.net/scottnichol/vbclientapachesoap.htm >From the code below, it appears you are not doing startElement/endElement for each parameter. For example, the symbol parameter for the stock quote client is serialized by this code: Se

RE: MS SOAP CLIENT

2002-04-17 Thread Vaibhav Joshi
HI, I am getting this error:: can anyone let me know why this might be happening java.lang.illegalArgumentException:No Serializer found to serialize a 'org.w3c.dom.Element' using encoding style 'http://schemas.xmlsoap.org/soap/encoding/"; Thanking you V -Original Message- From: Sco

unsubscribe me

2002-04-17 Thread Catherine . Melton
unsubscribe me > Thanks, > Catherine Melton > Strategic System Delivery > *678-339-4520 > [EMAIL PROTECTED] > >

Re: MS SOAP CLIENT

2002-04-17 Thread Scott Nichol
Is this on the server? If a method for your service returns an Element, you must provide a serializer for it. Alternatively, you can emulate the GetAllListings address book sample and have the client specify literal XML encoding: call.setEncodingStyleURI(Constants.NS_URI_LITERAL_XML); Scot

Re: unsubscribe me

2002-04-17 Thread Scott Nichol
Catherine, Did you try sending an e-mail to [EMAIL PROTECTED] ? This is supposed to unsubscribe you. Scott - Original Message - From: <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, April 17, 2002 3:43 PM Subject: unsubscribe me > unsubscribe me > > > > Thanks, > > Cathe

RE: MS SOAP CLIENT

2002-04-17 Thread Vaibhav Joshi
No its on Client Side.Do i need to do anything on the client side. Where can i find the address book sample. Thanking you V -Original Message- From: Scott Nichol [mailto:[EMAIL PROTECTED]] Sent: Wednesday, April 17, 2002 3:54 PM To: [EMAIL PROTECTED] Subject: Re: MS SOAP CLIENT Is this

Re: MS SOAP CLIENT

2002-04-17 Thread Scott Nichol
To send a parameter that is not a Java primitive or one of the types with built-in support (such as Date, Vector, Hashtable), you must write a serializer and map the type to the serializer in the client. The address book sample demonstrates this in GetAddress. The samples are in a directory in y

unsubscribe me

2002-04-17 Thread Catherine . Melton
unsubscribe me > Thanks, > Catherine Melton > Strategic System Delivery > *678-339-4520 > [EMAIL PROTECTED] > >

question about passing Large string from Client to Apache Soap 2.2 Service

2002-04-17 Thread Ding, Chengmin
Hello, We need to pass a large XML string(1-2 MB) from VB client to a Apache 2.2 soap service. The XML String is MIME64 encoded before the invoke of the service and it is received in the service as a Binary array. This works fine(within 1 minute) in a Tomcat 3.2.3(3.3) + Soap 2.2 scenario. It use

RE: MS SOAP CLIENT

2002-04-17 Thread Vaibhav Joshi
I have a few doubts about parameter passing. If you look at code below i get a method signature error. I want to know how to pass more that one parameter through VB Thanking you V -Original Message- From: Scott Nichol [mailto:[EMAIL PROTECTED]] Sent: Wednesday, April 17, 2002 2:30 PM To:

adding header blocks

2002-04-17 Thread soap vamsi
hello, How do i add header blocks to a soap message using apache soap? How can i use the actor attribute to route messagges to intermidiate processors? thanks in advance vamsi