SOAP document collection?

2001-10-30 Thread Dennis Sosnoski
Does anyone know of a collection of SOAP documents (preferably both requests and responses) available somewhere? I'd like to use a set of documents for parser performance testing. There are some automatically generated sets I know of, but I'd rather have real samples. Thanks, - Dennis

Re: Problems with Upgrade from SOAP 2.1 to 2.2: strange error

2001-10-30 Thread Pae Choi
Tell me about it. It gets worse if you use Cocoon. More worse thing is that they excuse themselves by saying, "Welcome to the blooding edge of the open source project" when someone raise this issue to them. :-) Pae >[EMAIL PROTECTED] wrote: > >> The last time I had this problem, it was beca

Re: SOAP ssl & proxy

2001-10-30 Thread Pae Choi
Scott, Even though Scott has his solution what he needs for now. It is indeed strange to me. Which version of Apache/SOAP are you running? Pae >It doesn't really make sense, but I trust that it's now working for you! > Anyway, I'm glad it works, and that's all that matters at this >point. I

Controlling Body Content

2001-10-30 Thread Gunther Jones
I want to explicitly set all the data between the tags. If I pass in an org.w3c.Element as a parameter, it wraps my element data with the name of the parameter. How do I get direct access to the body?

Re: SOAP actor attribute

2001-10-30 Thread Simon Fell
There's a couple of us experimenting with SOAP intermediaries and SOAP-RP over on the soapbuilders list. The thread starts with http://groups.yahoo.com/group/soapbuilders/message/5756 Cheers Simon www.pocketsoap.com On Tue, 30 Oct 2001 13:23:15 -0600, in soap you wrote: >Hi, > >I'd be intereste

RE: error

2001-10-30 Thread Wilkins, Craig
You must have dropped the mail.jar out of your classpath. The rpcrouter needs it. -Original Message- From: Oleg Timofeyev [mailto:[EMAIL PROTECTED]] Sent: Tuesday, October 30, 2001 4:01 PM To: [EMAIL PROTECTED] Subject: error Thats interesting I am not sure even what I did, it use to w

Re: SOAP actor attribute

2001-10-30 Thread Jeff Linwood
Hi, I'd be interested in learning more about SOAP actors myself. The way I currently understand actors is that SOAP messages are bounced from one actor to another, and each actor processes the SOAP message in some way. I haven't seen any implementations, myself, although I'm sure there are some.

Re: Problems with Upgrade from SOAP 2.1 to 2.2: strange error

2001-10-30 Thread greyson . smith
The last time I had this problem, it was because of a classpath problem with Tomcat. In my case, Xerces wasn't listed as the first class in the classpath. Hope it is that easy for you.

error

2001-10-30 Thread Oleg Timofeyev
Thats interesting I am not sure even what I did, it use to work perfectly now when I call rpcrouter, I get no class found? Any ideas Error: 500 Location: /soap/servlet/rpcrouter Internal Servlet Error: java.lang.NoClassDefFoundError: javax/mail/MessagingException at org.apache.soap.serve

Problems with Upgrade from SOAP 2.1 to 2.2: strange error

2001-10-30 Thread Alexander Schatten
I installed SOAP 2.2 using Apache Tomcat 3 then I tried to list and deploy services as I did it using soap 2.1: java org.apache.soap.server.ServiceManagerClient http://localhost:8080/soap/servlet/rpcrouter list to list or java org.apache.soap.server.ServiceManagerClient http://localhost:8080

RE: Custom Service class (loading providers)

2001-10-30 Thread Bono, Chris
I just noticed that ServerUtils.loadProvider actually uses the DeploymentDescriptor.getServiceClass() to get the actual provider to load. Shouldn't it use DeploymentDescriptor.getProviderClass()??? It should be the service class that loads the providers. >>-Original Message- >>From: Bono,

Re: question on inter-operability

2001-10-30 Thread William Brogden
[EMAIL PROTECTED] wrote: > > Hi Amit > > > wrong. I tried to print out the SOAP request from apache and microsoft > and > > the only difference is namespaces. > > how did you do this. I never found out to access the SOAP request/response > to have a look at it. (I´m working with Apache SOAP)

Re: user management

2001-10-30 Thread Pae Choi
Have look at the MessageRouterServlet and RPCRouterServlet with web..xml? Then, you should be able to create your own servlet by extending the HttpServlet. >From there, you should be able to what you need to do. Pae Hi, as I worked with normal servlet I could manage the user by accessing th

Custom Service class (loading providers)

2001-10-30 Thread Bono, Chris
In RPCRouterServlet.doPost() the provider is loaded as shown below: Provider provider; if ( dd.getProviderType() == DeploymentDescriptor.PROVIDER_JAVA ) { // Handle Java based services provider = new org.apache.soap.providers.RPCJavaProvider(); } else if (

RE: C++ client

2001-10-30 Thread Anne Thomas Manes
You can use Systinet WASP Server for C++, Lite Edition. It's open source. Download it from www.systinet.com/download.html. Regards, Anne Thomas Manes CTO, Systinet (formerly Idoox) > -Original Message- > From: Schweizer Laurent [mailto:[EMAIL PROTECTED]] > Sent: Tuesday, October 30, 2001

Re: question on inter-operability

2001-10-30 Thread Daniel . Wolff
Oh cool... I remember that I read some from Tunnel. thx I will try it cya de.we. SinnerSchrader Deutschland GmbH Communication & Technology mailto:[EMAIL PROTECTED] http://www.sinnerschrader.com fon +49.(0) 40.39 88 55-0 fax +49.(0) 40.39 88 5

Re: question on inter-operability

2001-10-30 Thread Paramdeep Singh
You can use TcpTunnelGui for seeing what exactly (in terms of XML) are being passed from client and server. Regards Paramdeep - Original Message - From: <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, October 30, 2001 8:03 PM Subject: RE: question on inter-operability Hi Ami

RE: question on inter-operability

2001-10-30 Thread Daniel . Wolff
Hi Amit > wrong. I tried to print out the SOAP request from apache and microsoft and > the only difference is namespaces. how did you do this. I never found out to access the SOAP request/response to have a look at it. (I´m working with Apache SOAP) cya :) daniel _

Re: Multicast

2001-10-30 Thread William Brogden
Tomas Jacobsson wrote: > > Hello! > I wonder if there is some easy way to send multicast with Soap, like in the > multicast class in java where you are using sockets. The problem with this is > that I think you must have a soap server at every client that should recieve > this multicast, or can

Re: question on inter-operability

2001-10-30 Thread William Brogden
The Apache SOAP docs have a note on interoperability in the guide section "interop.html" -- WBB - [EMAIL PROTECTED] Java Cert mock exams http://www.lanw.com/java/javacert/ Author of Java Developer's Guide to Servlets and JSP ISBN 0-7821-2809-2

user management

2001-10-30 Thread Daniel . Wolff
Hi, as I worked with normal servlet I could manage the user by accessing the session. So I could set attributes to the session. Now I want to build a service whit Apache SOAP where only registrated member can access. I dont know how to access the session or to handle such a problem because within

Multicast

2001-10-30 Thread Tomas Jacobsson
Hello! I wonder if there is some easy way to send multicast with Soap, like in the multicast class in java where you are using sockets. The problem with this is that I think you must have a soap server at every client that should recieve this multicast, or can it be any other way to solve this? Li

RE: SOAP 2.2 plug-in for Tomcat 4.0.1 (Has anybody did it ?)

2001-10-30 Thread Lakkavaram, Ashok
Thanks, Boon Pang. I will certainly take a look at your instructions. -Original Message- From: Ong Boon Pang [mailto:[EMAIL PROTECTED]] Sent: Monday, October 29, 2001 9:55 PM To: [EMAIL PROTECTED] Subject: Re: SOAP 2.2 plug-in for Tomcat 4.0.1 (Has anybody did it ?) Hi Lakkavaram, I wr

C++ client

2001-10-30 Thread Schweizer Laurent
hello, I have a RPC service (java) running with soap RMI and a client for this service (java). Now I need this client in C++ (linux). where can I downlad library or ... to make that ! thanks Schweizer Laurent _ Téléchargez MSN E