About message-oriented server.

2001-12-03 Thread Xiao Juguang
Hi, all.   Any of you would like to tell where and how to set action URN of one method, in deployment describer, for message-oriented service?   Thanks in advance.     Juguang.

RE: bug in SMTP2HTTPBridge

2001-12-03 Thread William Brogden
> -Original Message- > From: Sanders, Corey [mailto:[EMAIL PROTECTED]] > Sent: Monday, December 03, 2001 5:04 PM > To: '[EMAIL PROTECTED]' > Subject: RE: bug in SMTP2HTTPBridge > > > > Here is a somewhat related question. My Javamail package > (Javamail 1.2 from > javasoft) has mail

Tomcat Info

2001-12-03 Thread Jared Peterson
I know that I should direct this type of question to the Tomcat list but I thought that I would send it to this list as well. Does anyone know what type of footprint Tomcat has on a machine. I am interested in the memory footprint and the storage requirements. I also was wondering if when you i

RE: bug in SMTP2HTTPBridge

2001-12-03 Thread Lucas Gonze
Ok, yeah, the full workaround is to get the IBM developerworks pop3.jar and smtp.jar via http://www.alphaworks.ibm.com/ab.nsf/techreqs/SMTP http://www.alphaworks.ibm.com/ab.nsf/techreqs/POP3 - Lucas

RE: bug in SMTP2HTTPBridge

2001-12-03 Thread Sanders, Corey
Ok, thanks. That fixed my problem. I underestimated the number of dependencies needed to build the SOAP 2.2 source code. I know this is listed in the documentation, but I was obviously too thick to get it. Anyway, for future reference, I needed the following JARs to compile the SOAP 2.2 Source.

RE: bug in SMTP2HTTPBridge

2001-12-03 Thread Lucas Gonze
Hi Tom, > I'm puzzled. >(a) the pop3.jar I have, dated June 4th, does seem to have such > a class in it. (just use grep, or ^F on the windows dir containing > the jar, to search for the actual string > com/ibm/network/mail/pop3/event/MessageListener > because that's in the jar, uncompres

RE: Calling multiple methods in a single request

2001-12-03 Thread Ryan Winkler
Try having SOAP call a method with either Java's reflection classes or with a big switch statement that calls other methods. -Original Message- From: Rino Srivastava [mailto:[EMAIL PROTECTED]] Sent: Monday, December 03, 2001 3:40 PM To: [EMAIL PROTECTED] Subject: RE:Calling multiple metho

RE: bug in SMTP2HTTPBridge

2001-12-03 Thread Tom Myers
> > On Mon, 3 Dec 2001, Lucas Gonze wrote: > > > > > Using soap-2_2/lib/soap.jar and invoking SMTP2HTTPBridge, I get the > > following > > > error: > > > java -classpath C:/src/mandingo/lib/soap-2_2/lib/soap.jar > > > org.apache.soap.server.SMTP2HTTPBridge > > > java.lang.NoClassDefFoundError:

RE:Calling multiple methods in a single request

2001-12-03 Thread Rino Srivastava
Please help Can somone suggest me how i can call multiple methods in a single soap request. A link to an example or tutorial to demonstrate the above will be greatly appreciated. Thanks. Rino

RE: bug in SMTP2HTTPBridge

2001-12-03 Thread Richard Boehme
The correct version should be on IBM's AlphaWorks at http://www.alphaworks.ibm.com/ab.nsf/techmain/AD8820E9114E5B4488256723000AC87A --Richard On Mon, 3 Dec 2001, Sanders, Corey wrote: > > Here is a somewhat related question. My Javamail package (Javamail 1.2 from > javasoft) has mail.jar and

RE: bug in SMTP2HTTPBridge

2001-12-03 Thread Sanders, Corey
Here is a somewhat related question. My Javamail package (Javamail 1.2 from javasoft) has mail.jar and pop3.jar, but the package structure is these jars (com/sun/mail/*) is different from what the SOAP source expects. What is the correct distribution of mail.jar and pop3.jar and where do I get th

RE: bug in SMTP2HTTPBridge

2001-12-03 Thread Lucas Gonze
Yup. Have tested with jars from both Tomcat and Javamail-1.2. - Lucas > -Original Message- > From: Richard Boehme [mailto:[EMAIL PROTECTED]] > Sent: Monday, December 03, 2001 5:01 PM > To: [EMAIL PROTECTED] > Subject: Re: bug in SMTP2HTTPBridge > > > Do you have mail.jar and pop3.jar

Applet communicating with Soap - not able to create call object...

2001-12-03 Thread Senthil_M_Kumar
Hi, I had an applet which is a soap client... I am not to create call object in my applet... I got null pointer exception... after the code Call call = new Call(); In my html applet tag, I included all the jar files.. I would like to know what is the error or can I communicate to Soap serv

Re: bug in SMTP2HTTPBridge

2001-12-03 Thread Richard Boehme
Do you have mail.jar and pop3.jar in your classpath? --Richard On Mon, 3 Dec 2001, Lucas Gonze wrote: > Using soap-2_2/lib/soap.jar and invoking SMTP2HTTPBridge, I get the following > error: > java -classpath C:/src/mandingo/lib/soap-2_2/lib/soap.jar > org.apache.soap.server.SMTP2HTTPBridge >

bug in SMTP2HTTPBridge

2001-12-03 Thread Lucas Gonze
Using soap-2_2/lib/soap.jar and invoking SMTP2HTTPBridge, I get the following error: java -classpath C:/src/mandingo/lib/soap-2_2/lib/soap.jar org.apache.soap.server.SMTP2HTTPBridge java.lang.NoClassDefFoundError: com/ibm/network/mail/pop3/event/MessageListener My guess is that either that class

Error format diff

2001-12-03 Thread Oleg
Hi, I am having this weird problem. I deploy same service and use the same client code to call them on two different machines. One is running Tomcat 3.2.2 and one is running Tomcat 4.x For some reason when service throws an exception Tomcat 3.2.2 reports ir properly: Fault= CODE , MESSAGE but

RE: XML Payload Performance

2001-12-03 Thread boehme
I've been looking at this problem, and the time spent seems to mostly be the character transformation of the string. --Richard On 30 Nov 2001, at 14:41, Hashimoto, Mike wrote: > Craig (& others), > > When my method finally gets called on the Soap server side, I timestamp it > and write the st

bodyEntries in the SOAP-ENV?

2001-12-03 Thread Daniel . Wolff
Hi soap users ;) I wrote a simple service to hand out a product catalog by using a rpc oriented client. Now I ´m writinga message oriented client where I hav to set up the SOAP-Env and -Body in my implementation. When I created a "Body" object where I have to put in a vector with bodyEntries.

Re: xml via SOAP Q?

2001-12-03 Thread Tim Bertrand
Hi Jakub,   We've a number of examples of attaching payloads on to SOAP messages. The easiest way to do this is using SwA (SOAP with Attachments).   You can find a high level example of this at: http://www.capeclear.com/customers/rsco.pdf   Other examples include a record company send

RE: Invoking multiple methods on the soap server

2001-12-03 Thread Rino Srivastava
Hi Ian: I'm sorry, my sentence was a little jumbled up, so I am sending another email. Yes, I do mean mutiple method calls in a single request. Can you send me an example? Thanks. Rino -Original Message- From: Rino Srivastava [mailto:[EMAIL PROTECTED]] Sent: Monday, December 03, 2001

RE: Invoking multiple methods on the soap server

2001-12-03 Thread Rino Srivastava
Hi Ian: Yes, I do mean method mutiple calls in a single request. Can you send me an example? Thanks. Rino -Original Message- From: Ian Snead [mailto:[EMAIL PROTECTED]] Sent: Monday, December 03, 2001 8:36 AM To: [EMAIL PROTECTED] Subject: Re: Invoking multiple methods on the soap serve

Re: Invoking multiple methods on the soap server

2001-12-03 Thread Ian Snead
Do you mean multiple method calls in a single SOAP request? Seems to me like you would want to make multiple calls or, have the first call invoke a set of code on the server side that does what you want... Cheers! Ian Rino Srivastava wrote: > > Hi everyone: > > Can someone suggest how I ca

Invoking multiple methods on the soap server

2001-12-03 Thread Rino Srivastava
Hi everyone: Can someone suggest how I can invoke multiple methods on the soap server. An example would be very helpful. Thanks. Rino

RE:Invoking more than one method on the soap server

2001-12-03 Thread Rino Srivastava
Hi: Can someone tell me how you invoke more than one method on the soap server? Thanks. Rino

Q:How can expand addressbook example

2001-12-03 Thread Grabner Michael
Hi! I have spend quite a long time until the example addressbook worked (Tomcat,Apache-Soap). However, now I have the intention to expand the example. I want to run it via web but I'm not sure how to implement this. Is it possible to include JSP? Can anybody tell me, how to use them and where to s

HELP, PLEASE :class name could not be resolved ???

2001-12-03 Thread dovle
Hi all, I have made a service that uses an auxiliary class ( RoomState ) . I have managed to deploy it on the server but when I try to access a method from this service, I get an soapFault with the message Deployment error in soap service "urn:Controller" . Class name "com.heater.RoomState

Re: xml via SOAP Q?

2001-12-03 Thread Radovan Janecek
You should send XML document as an attachment to a SOAP message. This is the only defined way how to do that in SOAP. Look at the demo multipart in WASP that supports attachments (http://www.systinet.com/products/wasp_lite/index.html) Sincerely Radovan Radovan Janecek VP, Engineering, Systinet

AW: How to set params with multiple names and values ?

2001-12-03 Thread Schweigl, Johann
I had a similar problem which disallowed an additional encapsulation of parameters - simply because the SOAP requests were already defined by the remote system. In this case I chose to drop Apache SOAP and do it by hand, and haven't found a solution since then. Either I did not understand the ri