where to put .war-file

2001-07-26 Thread Oliver Rettig
Hallo, I want to deploy my soap-service which I have packed as an .war-file. I Use TOMCAT with running apache-soap. For running apache.soap I have put the soap.war file in the folder tomcat-home/webapps. But now I don´t know where I should save my application.war. It´s a soap-server so I think I

Re: Sending large string's (175 kb)

2001-07-26 Thread gopi
Hi, Probably sending this XML data as mime-attachment with SOAP response containing the no. of records and some meta info. Why? As far as my knowledge, when you use Apache-soap it parses using DOM Parser and creates a DOM tree for your huge SOAP response. when the huge XML data is received

Re: SOAP mapping of a bean with vectors

2001-07-26 Thread r_2
Hello, is nobody here who could help? regards, Darko -- GMXler aufgepasst - jetzt viele 11 New WebHosting Pakete ohne Einrichtungsgebuehr + 1 Monat Grundgebuehrbefreiung! http://puretec.de/index.html?ac=OM.PU.PU003K00717T0492a

Perl::lite server - java client

2001-07-26 Thread David Mullens
Hi, I'm trying to get various objects from a PERL::LITE soap server. I can send simple objects such as string, int, float without trouble. However, I am having trouble sending objects such as Date. I want to end up sending more complex objects. I'm having difficulty finding good examples

help can't get services deployed

2001-07-26 Thread Rich Catlett
I have been at this for over two days. I can't get the services deployed. When I run testit.sh in the addressbook sample I get this error message. h3Root Cause:/h3 pre java.lang.NoClassDefFoundError at org.apache.soap.server.ServiceManager.init(ServiceManager.java:83) at

wsdl output message parts

2001-07-26 Thread Richard Emberson
In wsdl: portType/operation/output/@message is the name of a message (message/@name). A message may have 0 or more part elements. How does one represent in the soap java code representing the client and server code a wsdl definition inwhich an output has multiple return values, i.e.:

RE: wsdl output message parts

2001-07-26 Thread Hansen, Richard
Apache SOAP does not, at least with normal use, allow multiple output parameters. I always return objects from my service methods. So my WSDL response message has a single entry for a complex type of some sort. Rick Hansen -Original Message- From: Richard Emberson [mailto:[EMAIL

Re: help can't get services deployed

2001-07-26 Thread Rich Catlett
I tried running the cp.jsp but I get a servlet exception with the root cause being this java.lang.ExceptionInInitializerError: java.lang.ClassCastException: org.apache.xerces.jaxp.DocumentBuilderFactoryImpl at

RE: help can't get services deployed

2001-07-26 Thread Hansen, Richard
The implication appears to be that Xerces is just not being found, unless it means that Xerces 1.4.2 has dropped the framework.Version.fVersion system..so I just downloaded Xerces 1.4.2 (source) and looked, and am not surprised because it's still there. My suspicion is that the classpath

Re: XML error while invoking a service

2001-07-26 Thread Jim Hazen
Use the TCPTunnel tool to see the responce the server is sending. My guess is that your server is sending some sort of HTTP error (500, 404, etc). This error from your web server is not a valid SOAP message and so you'll get this error. This has been my experience with this type of error. -Jim

RE: XML error while invoking a service

2001-07-26 Thread Irfan Mohammed
Jim, When I invoke the service through the TcpTunnel it works fine, however when I invoke the service directly from my client, it fails. Im not sure why this is happening. Any clues on this. Thanks Irfan -Original Message- From: Jim Hazen [mailto:[EMAIL PROTECTED]] Sent: Thursday,

Re: help can't get services deployed

2001-07-26 Thread Rich Catlett
Thanks everyone for you help. I got the problem worked out. When dealing with tomcat4 you want to put the xerces.jar file into the tomcat4/lib directory. I now have another problem though. When I run testit.sh from the address sample it deploys just fine, but when it tries to list the

Re: XML error while invoking a service

2001-07-26 Thread Jim Hazen
Tripple check your client and TcpTunnel setup. I've seen problems with TcpTunnel not flushing output to a waiting client, but never seen things work via TcpTunnel and not work on a regular client. There has always been a misconfiguration in either the TcpTunnel or the client. So make sure your

Error opening socket

2001-07-26 Thread George Fang
Hi: I got following error message when I did java hello.Client John Caught SOAPException (SOAP-ENV:Client): Error opening socket: Connection refused : connect I'm using SOAP 2.2, tomcat 3.2.1, and jdk1.3.02 on Windows 2000. The tomcat was running on my PC Could anyone give a clue? Thanks,

error while invoking a service

2001-07-26 Thread Irfan Mohammed
I get the following error when invoking my service. I am not able to figure out why this is. Any help on this would be appreciated. I am running my service in websphere3.5.4, soap 2.2, ibm http server, xerces1.4.2 Irfan SOAPException = SOAP-ENV:Protocol , Unsupported response content type

Re: Error opening socket

2001-07-26 Thread George Fang
Hi Jim: Thanks for your reply. The web server, Tomcat, was running on the same PC where I requested that service. I don't know how to check whether a web server accepting connections. Any suggestions are appreciated. George From: Jim Hazen [EMAIL PROTECTED] Reply-To: [EMAIL PROTECTED] To:

Re: using soap with tomcat 4.0b6 filter support

2001-07-26 Thread Prashant Jain
KH, If you're using the RPCRouterServlet, then the Call object that is extracted from the Envelope has the Headers. Vector v = call.getHeader.getHeaderEntries(); You are right that the header can be extracted from the Envelope I get when I use Message-based service. However, I want to look