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 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- From

Re: soap and Linux/NT

2001-07-23 Thread Oleg Dulin
> rpcroupter servlet is working fine. However when i try and deploy the > service i get a segmentation fault on linux. The segmentation fault is caused by bugs in the JVM and (unlikely) Linux, not Tomcat, SOAP, or Xerces. Java applications can't segfault. Are you using Sun's or IBM's JDK on Linux

Re: C++ SOAP Client Program

2001-07-23 Thread Jim Hazen
You may want to give Easysoap a shot.  It includes C++ client API calls.  They're slightly different than the Java calls, but you should be able to figure it out.  They also include test (and source) code to further aid in development. http://sourceforge.net/projects/easysoap/ -Jim   Hi, I have i

soap and Linux/NT

2001-07-23 Thread Abhijat Thakur
Hi All, I am trying to deploy a service on SOAP. When i go to http://port/soap i can see the soap client screen. Also http://port/soap/servlet/rpcrouter works properly so i know that the rpcroupter servlet is working fine. However when i try and deploy the service i get a segmentation fault on li

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 C++

RE: Sending request error

2001-07-23 Thread Tom Myers
At 02:03 PM 7/23/2001 -0600, Liaw, Wan-Bih wrote: >What is TcpTunnelGui for? http://xml.apache.org/soap/faq/faq_chawke.html#Q2_10 Tom Myers

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.

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 tr

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 12:

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 fi

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 deserialize

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

2001-07-23 Thread Michael J. Hudson
I understand that everything is transported as an XML document. What I'm asking is this... The serializer (in this case the Java Bean Serializer) is choosing a format to describe the Java object in XML text. Is this format standard?? I'm assuming that there really is no standard way of rep

RE: SOAPHTTPConnection.setTimeout - does it work?

2001-07-23 Thread Paula Young
Thanks Heitzso, I forgot to ask, if it does timeout, will that come back to me as a SOAP exception? IE., will I be able to detect the 5-sec timeout I set up expired? signed, Paula -Original Message- From: Heitzso [mailto:[EMAIL PROTECTED]] Sent: Monday, July 23, 2001 3:07 PM To:

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(h

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:

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 hel

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 = >"

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 if

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 q

RE: Request next version of Apache Soap

2001-07-23 Thread Adrian Pang
Hi, Sorry, I forgot to include the error message. The error thrown was: Caught SOAPException (SOAP-ENV:Client): Unable to retrieve PropertyDescriptor for property 'Symbol' of class 'class QuoteResult'. Which is thrown in beanserializer, the getWriteMethod method, after it fails the if (prop

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._

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):           IBM   INTL BUSINESS MACHINES   106.02   2001-07-23T12:40:00.000-07:00   0.32   0.3   105.3   106.99   3666900     MSFT   MICROSOFT CORP  

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 in

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 very

How to pass an Element as an parameter

2001-07-23 Thread Andreas Ullmann
Hi guys, the same old question as asked thousend times before. Anyway I still ask it again. I want to pass an Element as an parameter to a method. Passing String is simple done: params.addElement(new Parameter("request", String.class,request, Constants.NS_URI_SOAP_ENC)); But I want to pas

Re: rpcrouter

2001-07-23 Thread Andreas Ullmann
I read this also in an article, but this is definitly wrong. Gus Delgado wrote: > 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: '[

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 09131/

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 org.apache

RE: rpcrouter

2001-07-23 Thread Sri Sankaran
It is the servlet org.apache.soap.server.http.RPCRouterServlet. Sri -Original Message- From: Gus Delgado [mailto:[EMAIL PROTECTED]] Sent: Monday, July 23, 2001 11:53 AM To: [EMAIL PROTECTED] Subject: rpcrouter 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 upgrading to Xerces 1.4.1 did not solve it. 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

rpcrouter

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

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.

RE: Vector of parameters as a parameter

2001-07-23 Thread Luis Pinho (EST)
I didn't explained very well.   I'm using SOAP, and I build an envelope this envelope has it's parameters (a vector of parameters).      Call call = new Call();   call.setSOAPMappingRegistry(new SOAPMappingRegistry());   call.setEncodingStyleURI(Constants.NS_URI_SOAP_ENC);   call.setTarget

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,

newbie: can't get rpcrouter running

2001-07-23 Thread Herbert Bock
Hi everybody, I try to set up Apache SOAP 2.2 with Tomcat 3.2.3. I made sure that Xerces is the first entry in my classpath. When I direct my browser to the rpcrouter I get the following NullPointerException: java.lang.NullPointerException at java.util.Hashtable.put(Compiled Code)

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]'" <[EMAI

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: 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: 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 can't

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 PROTE

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 >

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?   Than

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.

Escape Charaters!

2001-07-23 Thread keith.watt
Hi, New to XML and Soap. Have installed soap and deployed a java Method called getSoapDescriptor(String comName) which looks at the components installed on a App Server and returns the Soap Descriptor as the payload of the Soap XML responce. My problem relates to the <> " formatting, Soap co

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

Target Object URI?

2001-07-23 Thread Dylan J Browne
Hi, I'm running my SOAP client and Tomcat on a Windows 2000 box and trying to send get/sets to a soap service (part of upnp) running on a Linux box. I'm having a problem and I think it lies in my conufsion as to what to put in the target object URI. Is the below anything like correct. How can I f

Problem configuring Apache SOAP 2.2

2001-07-23 Thread Yashasree
Hi All   I am facing a problem in configuring Apache SOAP 2.2 which i need to use for the SSL support they have given. On server side, the installation looks quite okay, since i am able to get the rpcrputer servlet running on the browser. But then when i try to deploy the service or even try

String Index Out of Bounds in HTTPUtils

2001-07-23 Thread Dylan J Browne
Just in case anyway has experienced similar problems, I'm trying to do an rpc call on a service running on a linux box and I'm getting the following error. Has anyone seen this before or have any ideas? Thanks v much. Debug: REQUEST IS: POST HTTP/1.0 Host: 192.168.3.25 Content-Type: text/xml; c