soap client, weblogic and classpaths

2002-11-26 Thread Norman Mann
Hi all, I am having a few problems with soap and classpaths. This may sound simple on the face of it but it is confusing me! First we have a soap client using the apache soap client code, talking to weblogic 6. I remember at the time having to put xerces in the start of the classpath

Re: SOAP Client code using VB/VC

2002-10-25 Thread jingkun . hu
Thanks, Scott. It is working with nightly built version.

Re: SOAP Client code using VB/VC

2002-10-24 Thread Scott Nichol
SoapRpcService for any .NET services you write. Scott Nichol - Original Message - From: <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Cc: <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]> Sent: Thursday, October 24, 2002 4:33 PM Subject: Re: SOAP Client co

Re: SOAP Client code using VB/VC

2002-10-24 Thread Scott Nichol
http://xml.apache.org/soap/dist/nightly/ Scott Nichol - Original Message - From: <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Cc: <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]> Sent: Thursday, October 24, 2002 4:46 PM Subject: Re: SOAP Client

Re: SOAP Client code using VB/VC

2002-10-24 Thread jingkun . hu
I am trying to build a simple SOAP Java client consuming a VB.NET Web service. The Web service performs three simple operations. It is working fine.     Public Function Hello(ByVal name As String) As String         Hello = "Hello, " + name     End Function     Public Function HelloWorld() As St

Re: SOAP Client code using VB/VC

2002-10-24 Thread jingkun . hu
TECTED] (bcc: Jingkun Hu/BRQ/RESEARCH/PHILIPS)         Subject:        Re: SOAP Client code using VB/VC         Classification:         The service you are talking to uses document/literal encoding.  It will ignore the rpc/encoded parameters that you are sending.  To talk to such a service, you

Re: SOAP Client code using VB/VC

2002-10-24 Thread Scott Nichol
I am not sure what you mean by "your Java SOAP client". What code is this based on? In any case, the problem is that you have mapped the wrong type. From the error message, I can see the XML type is http://tempuri.org:addNumbersResult, but you have mapped :addNumbersResult. Your map

Re: SOAP Client code using VB/VC

2002-10-24 Thread jingkun . hu
TECTED]         cc:        [EMAIL PROTECTED] [EMAIL PROTECTED] (bcc: Jingkun Hu/BRQ/RESEARCH/PHILIPS)         Subject:        Re: SOAP Client code using VB/VC         Classification:         I am not sure what you mean by "your Java SOAP client".  What code is this based on? In any case

Re: SOAP Client code using VB/VC

2002-10-24 Thread Scott Nichol
- From: <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Cc: <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]> Sent: Thursday, October 24, 2002 11:47 AM Subject: Re: SOAP Client code using VB/VC > Thanks, Scott. It is working now after I modified as you

Re: SOAP Client code using VB/VC

2002-10-24 Thread jingkun . hu
Scott, I got the following error message when using your Java SOAP client with my modification: error message: C:\Web Services\javaclient>java testClient Caught SOAPException (SOAP-ENV:Client): No Deserializer found to deserialize a & apos;http://tempuri.org/:addNumbersResult' us

Re: SOAP Client code using VB/VC

2002-10-23 Thread Scott Nichol
t;[EMAIL PROTECTED]> Sent: Wednesday, October 23, 2002 5:17 PM Subject: SOAP Client code using VB/VC > Hi friends, I found the sample SOAP client code for Java but can anyone send > me the SOAP VB and VC clients for accessing Apache's v2.2 SOAP service. > > thanks > Om >

SOAP Client code using VB/VC

2002-10-23 Thread Omprakash Bachu
Hi friends, I found the sample SOAP client code for Java but can anyone send me the SOAP VB and VC clients for accessing Apache's v2.2 SOAP service. thanks Om -- To unsubscribe, e-mail: <mailto:soap-dev-unsubscribe@;xml.apache.org> For additional commands, e-mail: <mailto

Re: execution error while running SOAP client-server

2002-07-05 Thread Scott Nichol
7 AM Subject: execution error while running SOAP client-server > Hi, > > i am trying to access a SOAP service from the WAS3.5 > server. > i have a server program as follows > - > public class HelloServer > { &g

execution error while running SOAP client-server

2002-07-05 Thread KavithaK
Hi, i am trying to access a SOAP service from the WAS3.5 server. i have a server program as follows - public class HelloServer { public String sayHelloTo(String name) { return ( name + new String("hello")); } } }

Re: Apache SOAP client MS SOAP server?

2002-06-14 Thread Scott Nichol
Try http://www.scottnichol.com/vbclientapachesoap.htm, for example. Scott Nichol - Original Message - From: "Earl Bingham" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]> Sent: Friday, June 14, 2002 1:04 PM Subject: Re: Apache SOAP clien

RE: Apache SOAP client MS SOAP server?

2002-06-14 Thread jasenj1
Title: RE: Apache SOAP client MS SOAP server? Check Scott's tutorial at http://www.scottnichol.com/vbclientapachesoap.htm     - Jasen. P.S. I solved my problem of MS and Apache clients talking to MS and Apache servers with just an end point URL change.  The solution invol

Re: Apache SOAP client MS SOAP server?

2002-06-14 Thread Earl Bingham
t some >interop results at http://www.apache.org/~rubys/ApacheClientInterop.html. > >Scott Nichol > >- Original Message - >From: <[EMAIL PROTECTED]> >To: <[EMAIL PROTECTED]> >Sent: Friday, June 07, 2002 2:38 PM >Subject: Apache SOAP client MS SOAP server? &

RE: Apache SOAP client MS SOAP server?

2002-06-07 Thread jasenj1
Title: RE: Apache SOAP client MS SOAP server? No, sorry, perhaps I did not explain myself clearly. I have a number of existing Apache SOAP client classes that interact nicely with an Apache 2.2 server.  For various reasons I need/want to implement the same services using the MS SOAP Toolkit

Re: Apache SOAP client MS SOAP server?

2002-06-07 Thread Scott Nichol
TED]> To: <[EMAIL PROTECTED]> Sent: Friday, June 07, 2002 2:38 PM Subject: Apache SOAP client MS SOAP server? > Argh! I've found numerous examples of getting MSSOAP and Apache SOAP to > work together by either A) Making the Apache server talk nice to the MS > client code, or B)

Re: Apache SOAP client MS SOAP server?

2002-06-07 Thread dswanson1
PROTECTED] 06/07/2002 01:38 cc: (bcc: Doug Swanson/US-Corporate/3M/US) PM

Apache SOAP client MS SOAP server?

2002-06-07 Thread jasenj1
Title: Apache SOAP client MS SOAP server? Argh!  I've found numerous examples of getting MSSOAP and Apache SOAP to work together by either A) Making the Apache server talk nice to the MS client code, or B) Making the MS SOAP client talk nice to the Apache server; but I need to get the MS

Re: VB SOAP Client (Collection, array)

2002-05-03 Thread Scott Nichol
One other piece of advice: use arrays rather than Vector to make interoperability easier. Scott - Original Message - From: "pop m" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Friday, May 03, 2002 10:15 AM Subject: VB SOAP Client (Collection, array) Hi ! I

Re: VB SOAP Client (Collection, array)

2002-05-03 Thread Scott Nichol
framework of code that works somewhat like Apache SOAP client code. First, look at RPCCall.Invoke to see how I parse the SOAP response for a return value and output parameters. Non-trivial types must implement the XMLDeserializableFactory interface, which is used to get a deserializer (something that

VB SOAP Client (Collection, array)

2002-05-03 Thread pop m
Hi !   I am using Tomcat where I have a web app. hwo is capable to communicate via SOAP.   I also have a java bean class and one of its methods returns a Vector.   I've written a VB client who invokes this method and it works.   My problem is that the result I've got is something like this:

Re: Date Problem while sending Date from Apache Soap Client to MS SoapServer

2002-04-30 Thread dswanson1
Take a look at the XML spec... http://www.w3.org/TR/2001/REC-xmlschema-2-20010502/#dateTime

Date Problem while sending Date from Apache Soap Client to MS Soap Server

2002-04-30 Thread Yagantappa J
Hello,     I am having a problem in sending Date value from Apache Soap Client to MS Soap Server. My system time is in PDT. When I send a date to MS Soap, the date value is getting reduced by 7 hours in MS Soap server. Please help me in solving this problem. Thanks in advance, Yag.Have a nice

RE: MS SOAP CLIENT

2002-04-18 Thread John Maughan
ECTED]' Subject: RE: MS SOAP CLIENT 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:

Re: MS SOAP CLIENT

2002-04-18 Thread Scott Nichol
Serializer.writeString "value of s3" Serializer.endElement Serializer.endElement Serializer.endBody Scott - Original Message - From: "Vaibhav Joshi" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, Apr

RE: MS SOAP CLIENT

2002-04-17 Thread Vaibhav Joshi
: [EMAIL PROTECTED] Subject: Re: MS SOAP CLIENT 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 cli

Re: MS SOAP CLIENT

2002-04-17 Thread Scott Nichol
your Apache SOAP installation. Scott - Original Message - From: "Vaibhav Joshi" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, April 17, 2002 3:54 PM Subject: RE: MS SOAP CLIENT > No its on Client Side.Do i need to do anything on the client sid

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
); Scott Nichol - Original Message - From: "Vaibhav Joshi" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, April 17, 2002 3:37 PM Subject: RE: MS SOAP CLIENT > HI, > I am getting this error:: can anyone let me know w

RE: MS SOAP CLIENT

2002-04-17 Thread Vaibhav Joshi
al Message- From: Scott Nichol [mailto:[EMAIL PROTECTED]] Sent: Wednesday, April 17, 2002 2:30 PM To: [EMAIL PROTECTED] Subject: Re: MS SOAP CLIENT You can check my samples at http://mywebpages.comcast.net/scottnichol/vbclientapachesoap.htm >From the code below, it appears you are not doing

Re: MS SOAP CLIENT

2002-04-17 Thread Scott Nichol
uot; <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, April 17, 2002 2:04 PM Subject: MS SOAP CLIENT > 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,Str

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-15 Thread Vaibhav Joshi
Thanks a Lot Kaushik...I really appriciate that. V -Original Message- From: Kaushik Patra [mailto:[EMAIL PROTECTED]] Sent: Monday, April 15, 2002 10:34 AM To: [EMAIL PROTECTED] Subject: Re: MS Soap Client check this also... regards.. kaushik - Original Message - From: "Va

Re: MS Soap Client

2002-04-15 Thread Scott Nichol
Sent: Monday, April 15, 2002 10:28 AM Subject: Re: MS Soap Client > Hi Check the attachment...and see if it helps u.. > thanks kaushik > > > - Original Message - > From: "Vaibhav Joshi" <[EMAIL PROTECTED]> > To: <[EMAIL PROTECTED]> > Sent:

Re: MS Soap Client

2002-04-15 Thread Kaushik Patra
check this also... regards.. kaushik - Original Message - From: "Vaibhav Joshi" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Monday, April 15, 2002 7:38 PM Subject: MS Soap Client > Hi, > Can any one send me an example of MS SOAP CLIENT USING VB. AND CA

Re: MS Soap Client

2002-04-15 Thread Kaushik Patra
Hi Check the attachment...and see if it helps u.. thanks kaushik - Original Message - From: "Vaibhav Joshi" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Monday, April 15, 2002 7:38 PM Subject: MS Soap Client > Hi, > Can any one send me an example of

MS Soap Client

2002-04-15 Thread Vaibhav Joshi
Hi, Can any one send me an example of MS SOAP CLIENT USING VB. AND CAN YOU ALSO LET ME KNOW HOW ShOULD I GO ABOUT IT. V Vaibhav Joshi Multicity tel: 703-790-0063, ext. 238 | fax: 703-790-3379 e-mail: [EMAIL

Re: Connecting to MS OLAP Server using Java-Soap Client

2002-04-09 Thread Scott Nichol
arthi, Vasu" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Cc: <[EMAIL PROTECTED]> Sent: Tuesday, April 09, 2002 5:19 PM Subject: RE: Connecting to MS OLAP Server using Java-Soap Client > Hi Scott, > Thank you so much for u'r fact response. Sorry to bother u again an

RE: Connecting to MS OLAP Server using Java-Soap Client

2002-04-09 Thread Yalavarthi, Vasu
:44 PM To: [EMAIL PROTECTED] Subject: Re: Connecting to MS OLAP Server using Java-Soap Client Sorry, my original message may not have been clear on this, but you must also map TRestrictionList and TPropertyList to the BeanSerializer. Basically, any class you want to serialize must be mapped. The only

Re: Connecting to MS OLAP Server using Java-Soap Client

2002-04-09 Thread Scott Nichol
odds and ends (e.g. Date, Hashtable, Vector). Scott - Original Message - From: "Yalavarthi, Vasu" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Cc: <[EMAIL PROTECTED]> Sent: Tuesday, April 09, 2002 3:27 PM Subject: RE: Connecting to MS OLAP Server using Java-So

RE: Connecting to MS OLAP Server using Java-Soap Client

2002-04-09 Thread Yalavarthi, Vasu
//www.w3.org/1999/XMLSchema-instance"; xmlns:xsd="http://www.w3.org/1999/XMLSchema";> http://schemas.xmlsoap.org/soap/encoding/";> MDSCHEMA_CUBES End XML/// Can u tell me if i am missing something BTW, does it have something to do with WSDL?

Re: Connecting to MS OLAP Server using Java-Soap Client

2002-04-09 Thread Scott Nichol
varthi, Vasu" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, April 09, 2002 2:41 AM Subject: Connecting to MS OLAP Server using Java-Soap Client > Hi, > My Java-Apache Soap client is trying to connect to Microsoft OLAP > Server 2000(Provider) using their

Connecting to MS OLAP Server using Java-Soap Client

2002-04-08 Thread Yalavarthi, Vasu
Hi, My Java-Apache Soap client is trying to connect to Microsoft OLAP Server 2000(Provider) using their XML for Analysis (<http://msdn.microsoft.com/library/default.asp?> URL=/library/techart/xmlanalysis.htm). The Provider is returning the following faul

Soap Client Test Error

2002-03-14 Thread Hong Jin
Hello, I have an install/client problem: I just installed Soap and try to run it with Jrun3.1.I have followed the install instructons. The server test works fine but when I run the client test and get the error attched, I appreciate your help. I have all the jar files necessary in both the serv

Soap Client Test Error

2002-03-14 Thread Hong Jin
Hello, I have an install/client problem: I just installed Soap and try to run it with Jrun3.1.I have followed the install instructons. The server test works fine but when I run the client test and get the error attched, I appreciate your help. I have all the jar files necessary in both the serv

SOAP client timeout

2002-03-07 Thread neeraj . rai
Title: SOAP client timeout Hi, We are using SOAP client to access a web service. Our client works through VAJ on WIN 2000. The same code behaves unpredictably on unix. We tried runnig it through Websphere 3.5.3 and also as a stand alone java client. When we set timeout, it sometimes aborts

Ms .NET to Apache SOAP client

2002-02-24 Thread Anna Chen
Hi, I am looking for a example for Apache SOAP client for Ms .NET Thanks Anna

RE:NoSuchMethodError while compiling a soap client

2001-11-28 Thread Rino Srivastava
Hi there: I am trying to run your HelloServer.java and Client.java programs using soap and java. I get the following error message: Exception in thread "main" java.lang.NoSuchMethodError at org.apache.soap.util.xml.Qname. at org.apache.soap.util.xml.matches at org.apache.soap.Envelop.unmarshall

How to create Java SOAP client for some SOAP service in PERL?

2001-10-25 Thread Gaur, Deepak
Title: How to create Java SOAP client for some SOAP service in PERL? Hello Great SOAP Developers, I am trying to convert some legacy PERL code into SOAP services. But i want to use a Java SOAP client to use these services. I am able to convert these PERL code to SOAP services, using SOAP

Error to execute Apache-soap client program

2001-08-31 Thread Alex Chan (Derivatives IT)
Hi, I have just downloaded Apache-SOAP v2.2 and Tomcat v3.2. and follow an article in Javaworld to verify SOAP implementation. Based upon the article, 2 programs have been developed, one for web service name "HelloServer.java" and the other is a client program named "Client". After the web servic

Re: Apache SOAP client to MS.NET webservice problem

2001-07-25 Thread Shih En-Yu
MS.NET doesn't understand it. Do you have any ideas of this? Thank you! Enyu - Original Message - From: "Soumen Sarkar" <[EMAIL PROTECTED]> To: "'Shih En-Yu '" <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]> Sent: Wednesday, July 25, 2001 1:34 PM S

RE: Apache SOAP client to MS.NET webservice problem

2001-07-25 Thread Soumen Sarkar
CTED] Sent: 7/24/01 7:15 PM Subject: Apache SOAP client to MS.NET webservice problem Hi there, I'm trying to deploy a web-service using Microsoft .NET, and using Apache Soap to make a soap request to the web-service. Here comes the questions. When a client makes a request, server can underst

Apache SOAP client to MS.NET webservice problem

2001-07-24 Thread Shih En-Yu
Hi there,   I'm trying to deploy a web-service using Microsoft .NET, and using Apache Soap to make a soap request to the web-service. Here comes the questions. When a client makes a request, server can understand the request and process it. But client can't understand the soap message that s

Re: SOAP Client..

2001-06-28 Thread Kumar Raj
ay as Parameter. Now how do I create my SOAP Client ? For a normal Call parameter looks like this. new Parameter("paramName",paramType,paramValue,action) How do I create a my SOAP client to take a String[] as parameter ? Any one can help me out Regards Kumar Raj        

SOAP Client..

2001-06-28 Thread Kumar Raj
Hi I'm working with Apache SOAP v2.2 I need to create a SOAP service accepting String Array as Parameter. Now how do I create my SOAP Client ? For a normal Call parameter looks like this. new Parameter("paramName",paramType,paramValue,action) How do I create a my SOAP c