Re: Target Object URI?

2001-07-23 Thread DREX
Hi, In the URL http://localhost:8000/soap/admin/index.html , you will find the list of services registered in apache-SOAP for that particular server. You can find the details of the services there.The entry corresponding to Property ID is the one to be used for targetObjectURI. Regards Duby

Re: Escape Charaters!

2001-07-23 Thread Mike Spreitzer
While the sender should encode escape characters, the receiver should decode them, so your application-level caller and callee should be dealing with the same character sequence.

Vector of parameters as a parameter

2001-07-23 Thread Luis Pinho (EST)
Hi, I want to send a vector of Parameter objects, as a parameter of a SOAP envelope. When I send the envelope all seems OK. But in the other side (the method that is being called by SOAP), the vector of parameters is transformed in a string vector Is there any way I can fix this?

RE: String Index Out of Bounds in HTTPUtils

2001-07-23 Thread Matthew J. Duftler
Hi Dylan, Please try one of the nightly builds. I believe this bug was fixed in the latest CVS tree. Thanks, -Matt -Original Message- From: Dylan J Browne [mailto:[EMAIL PROTECTED]] Sent: Monday, July 23, 2001 4:51 AM To: soap Subject: String Index Out of Bounds in HTTPUtils

RE: Vector of parameters as a parameter

2001-07-23 Thread Matthew J. Duftler
Hi Luis, Can you please provide some more details. I don't believe that the types of the items in the Vector was changed from Parameter to String. Can you please show why you think this is the case? Thanks, -Matt -Original Message-From: Luis Pinho (EST) [mailto:[EMAIL

RE: Request next version of Apache Soap

2001-07-23 Thread Matthew J. Duftler
Hi Adrian, I'm assuming you're talking about the BeanSerializer. If you are, the BeanSerializer uses the Java introspection mechanisms to manipulate (i.e. read/write) properties. The names of those properties are case-sensitive. If the BeanSerializer is giving an error message which says it

RE: Fault Code = SOAP-ENV:Server.Exception: Fault String: java.lang.NoSuchMethodError

2001-07-23 Thread Matthew J. Duftler
Hi Rebekah, Please use the TcpTunnelGui tool, as described in the docs, to capture the response from the server. Then post the captured response here. The stack-trace is most likely being sent back in the Fault Details, which are not being displayed on the command-line. Thanks, -Matt

RE: Fault Code = SOAP-ENV:Server.Exception: Fault String: java.lang.NoSuchMethodError

2001-07-23 Thread Sri Sankaran
I had exactly the same symptoms. They vanished when I upgraded form Xerces 1.4.0 to 1.4.1. Sri -Original Message-From: Matthew J. Duftler [mailto:[EMAIL PROTECTED]]Sent: Monday, July 23, 2001 10:37 AMTo: [EMAIL PROTECTED]Subject: RE: Fault Code = SOAP-ENV:Server.Exception: Fault

Re: SOAP and SSL and WebSphere

2001-07-23 Thread Jonathan Chawke
There's a doc about Apache-SOAP and SSL here: http://xml.apache.org/websrc/cvsweb.cgi/xml-soap/java/docs/install/FAQ_Tomcat_SOAP_SSL.html It's not WAS-specific, but it might help. Jonathan. From: Irfan Mohammed [EMAIL PROTECTED] Reply-To: [EMAIL PROTECTED] To: '[EMAIL PROTECTED]' [EMAIL

RE: newbie: can't get rpcrouter running

2001-07-23 Thread Kher, Amol
This looks more of a Tomcat issue than SOAP. Confirm if Tomcat has been successfully installed. -Amol -Original Message- From: Herbert Bock [mailto:[EMAIL PROTECTED]] Sent: Monday, July 23, 2001 10:08 AM To: [EMAIL PROTECTED] Subject: newbie: can't get rpcrouter running Hi everybody,

Re: Escape Charaters!

2001-07-23 Thread sramasu
This problem occurs if you use Constants.NS_URI_SOAP_ENC encoding style. Try to use Constants.NS_URI_LITERAL_XML when you build the Call object. this informs the SOAP server to treat the XML as xml and not to encode, I guess. Sekar.

rpcrouter

2001-07-23 Thread Gus Delgado
where can I find the rpcrouter jsp?

RE: Fault Code = SOAP-ENV:Server.Exception: Fault String: java. lang.NoSuchMethodError

2001-07-23 Thread Neuhaus, Stephan, myview
Hello, I am having the same problem as described below and unfortunately upgradingto Xerces 1.4.1did not solveit. Here is the response from the TcpTunnelGui tool : HTTP/1.0 500 Internal Server Error Content-Type: text/xml; charset=utf-8 Content-Length: 472 Date: Mon, 23 Jul 2001

RE: rpcrouter

2001-07-23 Thread Gus Delgado
the RPCRouterServlet is a Servlet, I thought there was a JSP version of this servlet? -Original Message- From: Sri Sankaran [mailto:[EMAIL PROTECTED]] Sent: Monday, July 23, 2001 10:56 AM To: '[EMAIL PROTECTED]' Cc: '[EMAIL PROTECTED]' Subject: RE: rpcrouter It is the servlet

Re: rpcrouter

2001-07-23 Thread Andreas Ullmann
The rpcrouter isnt a JSP its an servlet. You find it n the soap.jar (org.apache.soap.server.rpcrouter.class) Andreas Ullmann Gus Delgado wrote: where can I find the rpcrouter jsp? -- [EMAIL PROTECTED] MATHEMA AG Nägelsbachstraße 25 b 91052 E r l a n g e n Telefon 09131/8903-0 Telefax

RE: newbie: can't get rpcrouter running

2001-07-23 Thread Herbert Bock
Hi Amol, I ran the Tomcat JSP and Servlet Examples from the Tomcat home page to make sure that Tomcat was installed properly. There were no problems at all. Meanwhile I recompiled RPCRouterServlet.java with some debug statements. This way I found out that getClass().getClassLoader() in the

Installing SOAP on Oracle 9iAs

2001-07-23 Thread Tapan Nanawati
My Apache Tomcat with SOAP_2.2 works fine. But when I try to install Tomcat with apache that comes bundled with Oracle 9iAS it wont let me start apache service and there is no error message. And when there is no Tocmat there, how can I make SOAP run. Does anybody know a servlet 2.2 container

RE: Request next version of Apache Soap

2001-07-23 Thread Adrian Pang
Hi, Here's an example of the result returned by the service (I don't own the source code therefore cannot change it): tns:GetSimpleQuoteResponse   GetSimpleQuoteResult href=#id1 / /tns:GetSimpleQuoteResponse soapenc:Array id=id1 soapenc:arrayType=types:SimpleQuote[2]   Item href=#id2 /   Item

Sending request error

2001-07-23 Thread Liaw, Wan-Bih
Title: I kept getting status code 500, i.e. server side error, when I did something like the followings. Can someone help? TIA. this._xmlHttp = new ActiveXObject("microsoft.xmlhttp"); this._serviceUrl = "http://c004266a/soap/rpcrouter"; this._xmlHttp.Open("POST",this._serviceUrl ,

RE: How to pass an Element as an parameter

2001-07-23 Thread pduvvuri
use this: Parameter(name, Element.class, root, Constants.NS_URI_LITERAL_XML)) Prasad -Original Message- From: Andreas Ullmann [mailto:[EMAIL PROTECTED]] Sent: Monday, July 23, 2001 12:26 PM To: [EMAIL PROTECTED] Subject: How to pass an Element as an parameter Hi guys, the same old

How do you retrieve complex Java objects from a non-Java client.

2001-07-23 Thread Michael J. Hudson
This question goes either way... that is... whether your SOAP server is Java and your client is VB/C++/etc. OR you SOAP server is VB/C++/etc. and your client is Java. I understand how to map a Java object in Apache's SOAP using its default Bean Seralizer and the SOAP Mapping Registry... but

Re: Sending request error

2001-07-23 Thread Tom Myers
At 11:10 AM 7/23/2001 -0600, Liaw, Wan-Bih wrote: I kept getting status code 500, i.e. server side error, when I did something like the followings. Can someone help? TIA. this._xmlHttp = new ActiveXObject(microsoft.xmlhttp); this._serviceUrl =

SOAPHTTPConnection.setTimeout - does it work?

2001-07-23 Thread Paula Young
I want to timeout and break out of waiting for the return from call.invoke() if the return is taking too long. Has any one done this successfully with: SOAPHTTPConnection http = new SOAPHTTPConnection(); http.setTimeout(5000);// 5-sec timeout call.setSOAPTransport(http); ??? Thanks for

RE: How do you retrieve complex Java objects from a non-Java client.

2001-07-23 Thread Hansen, Richard
There are no Java objects involved. SOAP messages are transported XML as text. It is totally up to the client to extract the message into whatever kind of data structure is appropriate. Check the MS Soap Toolkit on how to handle complex types. Rick Hansen -Original Message- From:

Re: SOAPHTTPConnection.setTimeout - does it work?

2001-07-23 Thread Heitzso
Paula Young wrote: I want to timeout and break out of waiting for the return from call.invoke() if the return is taking too long. Has any one done this successfully with: SOAPHTTPConnection http = new SOAPHTTPConnection(); http.setTimeout(5000);// 5-sec timeout call.setSOAPTransport(http);

RE: How do you retrieve complex Java objects from a non-Java client.

2001-07-23 Thread Hansen, Richard
Yes, clients parse the XML and put it into some data structure that is appropriate for the language. Some client languages support object some don't. The data comes in a standard data structure in XML. SOAP use XML Schema so data typing is standardized. With MS you need to either write

Re: SOAPHTTPConnection.setTimeout - does it work?

2001-07-23 Thread Heitzso
Paula, I remember seeing it embedded in an exception. I didn't bother to parse out the words to flag that particular exception. So, re can you detect? Yes, but you'll want to run a test that breaks on the timeout, note the exact text of the exception, and search for some key phrase that you

RE: Sending request error

2001-07-23 Thread Liaw, Wan-Bih
Hi Tom, The piece of code you wrote was slightly different, because we configured rpcrouter on websphere differently but they should both be working, i think. What is TcpTunnelGui for? Thanks! -Original Message- From: Tom Myers [mailto:[EMAIL PROTECTED]] Sent: Monday, July 23, 2001

Soap And Tomcat on Red Hat 7.0

2001-07-23 Thread Abhijat Thakur
Hi , I am trying to configure Tomcat with SOAP. I have them working fine on NT but when i am trying to configure them on Linux Red Hat 7.0 that is when things start going wrong. As soon as i put soap.war file under tomcat/webapps and start my tomcat firstly tomcat does not even start and if i

question about web service

2001-07-23 Thread Liaw, Wan-Bih
The soap web services seem only return true and false (e.g. ExtractReturn(response) == true). Are there ways to get the return values from the responses of the RPC calls, if there are any? TIA.

C++ SOAP Client Program

2001-07-23 Thread Chouthri Palanisamy
Title: C++ SOAP Client Program Hi, I have installed Tomcat 3.2 and SOAP-2.2 successfully. I have configured Tomcat with Soap-2.2. It's working fine. I have written a java client program to connect to SOAP service, which is registered at my web server. It is working fine. I want to write a

RE: soap and Linux/NT

2001-07-23 Thread Abhijat Thakur
i am using suns jvm for linux Right now with Red Hat 7.0 i am using jdk 1.3.1. For Red Hat 7.0 Sun does not support jdk1.2.2. Previously i had configured Red Hat 6.1 with Tomcat and SOAP with jdk1.2.2 and it was working fine. Thanks a lot Regards Abhijat Thakur -Original Message-

Re: Soap And Tomcat on Red Hat 7.0

2001-07-23 Thread Mark Young
Abhijat: You may be correct in principle that jdk 1.3.1 would be the most compatible with redhat 7.0, but I had exactly the same symptoms, and I got past them by going back to jdk 1.2.2. I don't remember the exact message that advised doing this, but it was in this group, and it said something