Classpath Wrong?

2001-06-19 Thread Dylan J Browne
Hi, Am getting the following error when trying to run the addressbook sample with SOAP2.2. My coomand line is: C:\soap-2_2javasamples.addressbook.GetAddress http://localhost:8080/soap/servlet/rpcrouter John B. Good The error is: Generated fault: Fault Code = SOAP-ENV:Server Fault String

Re: Server.Exception NoSuchMethodError

2001-06-19 Thread Tom Myers
At 12:56 PM 6/19/2001 +0200, Juerg Baumann wrote: I am trying to run the samples delivered with Apache SOAP 2.2 and get errors which I cannot figure out how to solve. I spent a lot of time trying to get it running. It hapens for Deploy/List etc. Fault Code = SOAP-ENV:Server.Exception: Fault

Compatibility with MS SOAP

2001-06-19 Thread Oleg Dulin
I can't figure something out from the FAQs. Is Apache SOAP 2.2 now fully compatible with MS SOAP ? It seems that getting Apache SOAP to infer parameter types should not be very difficult. I have a class written that infers a Java type based on a string. -- Regards, Oleg Dulin --=+ Dulin

Re: Compatibility with MS SOAP

2001-06-19 Thread Oliver Rettig
Hallo Oleg Dulin, I can't figure something out from the FAQs. Is Apache SOAP 2.2 now fully compatible with MS SOAP ? It seems that getting Apache SOAP to infer parameter types should not be very difficult. I have a class written that infers a Java type based on a string. Excuse that I

VBScript client to use Java SOAP service ?

2001-06-19 Thread Khamesra, SandeepX
Doen any one know how to make a call to service using a vbScript client .. How to say which service it needs to talk to and which method it needs to execute using SOAP

RE: Problems with SMTP

2001-06-19 Thread Matthew J. Duftler
Hi Pravin, The SMTP FAQ on the web-site explains how to set it up: http://xml.apache.org/soap/faq/faq_chawke_smtp.html The necessary jar files are in the same location as the distribution: http://xml.apache.org/dist/soap/version-2.2/ Thanks, -Matt -Original Message- From: pravin

TcpTunnelGui tool port question

2001-06-19 Thread sachin chaudhari
Hi, I am not sure what port I mention as listenport in java org.apache.soap.util.net.TcpTunnelGui listenport tunnelhost tunnelport My weblogic is running on localhost at port 7001, so tunnelport will be 7001. My client will be sending message to 7001 so my listenport will also be 7001 as per

Re: TcpTunnelGui tool port question

2001-06-19 Thread Dmitri Colebatch
what is wl listening for on 7001? isn't that its T3 port? to use the tunnel gui have the client send requests to a different port (in this example 7002) and the tunnel gui will display them and forward them to a different port (7001). use the following: java

Re: TcpTunnelGui tool port question

2001-06-19 Thread Nirmal Mukhi
Hello Sachin, You need to modify either the client or the server so that you can put TcpTunnelGui between them. For example, you could leave your client as it is but run weblogic at port 7002. Then run TcpTunnelGui with your tunnelport as 7002 and listenport as 7001. Nirmal.

Re: TcpTunnelGui tool port question

2001-06-19 Thread sachin chaudhari
Dim Thanks a lot for the exaplinnation. So you are saying my soap server listens on a port different than weblogic server. Is there a way to find out what port the soap is listening on?? Unfortunately the following did not work: java org.apache.soap.util.net.TcpTunnelGui 8088 localhost 8080

RE: User defined object as a request, literal XML as a response. Poss ible?!

2001-06-19 Thread Matthew J. Duftler
Hi Dirck, You were right. It turns out there was a bug in the BeanSerializer that prevented the client from using a BeanSerializer to serialize SOAP-encoded parameters within a Call labeled with the literalXML encoding style. Since the bug was in the BeanSerializer, it only came up when the user