JAXM, JBoss - Tomcat

2001-12-10 Thread Le Ngoc Lam
I always get errors when I used JAXM with JBoss-Tomcat. May be, JBoss-Tomcat doesn't allow use Http POST method from EJB? Anyone suggest, Thank in advance. Lam

Help needed in trouble shooting the error Exception in thread "main" java.lang.AbstractMethodError at org.apache.soap.util.xml.QName.(QName.java:80)

2001-12-10 Thread Muralikrishnan_s
Hi, I'm using Bea Weblogic 6.0 server. I followed the instructions of installation for the soap.I did the following Copy the /path-to-apache-soap/webapps/soap to your applications directory For example: To install into the "mydomain" plug the directory into: c:/b

RE: Passing Complex objects

2001-12-10 Thread Chopra, Jitender
Title: RE: Passing Complex objects Could you send those posts (with examples) again .   Thanks     -Original Message-From: Andrew Fawcett [mailto:[EMAIL PROTECTED]]Sent: Monday, December 10, 2001 5:11 AMTo: '[EMAIL PROTECTED]'Subject: RE: Passing Complex objects

RE: Help! - addressbook example generated fault when putListings/ getAllListings

2001-12-10 Thread Hashimoto, Mike
Lee, If you're using Tomcat 4 (Catalina), and it looks that way below, then my experience is the following: 1. Modify TWO places in the 'bin/catalina.bat' (assuming Win else, catalina.sh). The first is near the top where CLASSPATH is defined. Mine looks like: rem - Save Environment Varia

RE: Help! - addressbook example generated fault when putListings/getAllListings

2001-12-10 Thread Lee . Guan
Rino, Thanks for the quick response. Both DOMUtils and XMLParserUtils are in soap.jar. I wonder if it is necessary to put soap.jar in classpath in tomcat statup script. I tried to add it to the classpath and restarted tomcat, but I can't even deploy the service after that, following is the err

Dynamic Service

2001-12-10 Thread Jared Peterson
I have another interesting question for the list today. In my experience with Apache SOAP up to this point I have been exposing a Java class as a SOAP service. So every time that I want to deploy a new service I have to go the administration page and deploy the service. My question is what if I

RE: Help! - addressbook example generated fault when putListings/getAllListings

2001-12-10 Thread Rino Srivastava
Lee: Do check your classpath and make sure that DOMUtils and XMLParserUtils classes are in your classpath. Cheers! Rino -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Monday, December 10, 2001 3:45 PM To: [EMAIL PROTECTED] Subject: Help! - addressbook exampl

Help! - addressbook example generated fault when putListings/getAllListings

2001-12-10 Thread Lee . Guan
Hi, The following happened when I ran the address book sample, seems the AddressBook class cannot find the DOMUtils and XMLParserUtils classes. Does anybody have a clue? This test assumes a server URL of http://localh

RE:exception while handling service request: hello.Helloserver.testCon([none]) not found

2001-12-10 Thread Rino Srivastava
Hello everyone: I am trying to run a Client Program but, I get the following error message: Exception while handling service request: hello.HelloServer.testCon([none]) not found. In the above statement, "testCon()" is a method on the server that returns a String. I have deployed the service an

Re: Multiple concurrent requests are queuing

2001-12-10 Thread Dave Smith
Hi Jared, Sorry, I should have mentioned that I've tried deploying the service as Session, Application and even Request. Each scope type exhibits the same behaviour. Thanks, Dave Jared Peterson wrote: >How have you set up the scope for your service? Are you using >application scope or sessi

RE: Multiple concurrent requests are queuing

2001-12-10 Thread Jared Peterson
How have you set up the scope for your service? Are you using application scope or session scope? Jared -Original Message- From: Dave Smith [mailto:[EMAIL PROTECTED]] Sent: Monday, December 10, 2001 1:08 PM To: [EMAIL PROTECTED] Subject: Multiple concurrent requests are queuing I'm fa

Multiple concurrent requests are queuing

2001-12-10 Thread Dave Smith
I'm fairly new to the SOAP environment, Hence there may be an obvious fix to my problem, but the FAQ's and archives don't appear to address this situation. The problem I'm having may just be a misunderstanding of how SOAP or more specifically the rpcrouter handles multiple concurrent requests.

RE: Soap and HTTPS

2001-12-10 Thread Jeremy Levy
I was able to get HTTPS over SOAP working relatively painlessly.. you seem to be halfway there... http://xml.apache.org/soap/docs/install/FAQ_Tomcat_SOAP_SSL.html that should get you the rest of the way... all you have to do is add some code to you soap method call... and set up the keys (which I

RE:Storing response returned by the soap server

2001-12-10 Thread Rino Srivastava
Thanks, Senthil, I'm able to store the value of the response object. Rino

Re: return type: array of Strings

2001-12-10 Thread Aczel Csilla
Hi Paramdeep, Thank you for your immediate response! I will study your wsdl file and I let you know about my result. Thanks and best regards: Csilla

Re: return type: array of Strings

2001-12-10 Thread Paramdeep Singh
Hi Csilla, Array is NOT a simple type, supported by SOAP. You need to define a types tag for it. I am attaching a WSDL file, which takes a string as an [out] parameter, and has an array of strings as return value. If you want this string parameter as an in parameter, then simply copy it to the

RE:Storing response from the soap server for further processing

2001-12-10 Thread Rino Srivastava
Please Help!!! Can someone please give me an example of a Client and Server program where the response returned back from the soap server is stored for further processing. ~Rino

return type: array of Strings

2001-12-10 Thread Aczel Csilla
Hi All, I would like to write a web service with a String parameter and with String[] return value. I don't know how should I write wsdl documents for the service, how can I define array in it. My wsdl-interface docoment is: * http://www.echoservice.

RE: Passing Complex objects

2001-12-10 Thread Andrew Fawcett
Title: RE: Passing Complex objects A couple of months ago, I did have some success with .NET Beta 2 (client) and Apache SOAP (server). This was using .NET's WSDL.EXE tool and the Castor XML tool to exchange data contained in complex types defined via a WSDL file. At both ends the marshalling/s

Re: DOM or SAX??

2001-12-10 Thread Paramdeep Singh
Apache AXIS implementation is using SAX APIs. It is also an open source implementation. You can have a look at it on: http://xml.apache.org/axis/ With Warm Regards, Paramdeep - Original Message - From: "Colin Saxton" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Monday, December 10,

DOM or SAX??

2001-12-10 Thread Colin Saxton
I have had a quick look at the open-source code and have found that it relys mainly on the DOM for the SOAP request and SOAP response... Is there any plans to write an all singing SAX version of the libraries? DOM works fine for small SOAP messages but once you get above 50k you will start to se