RE:pass arguments to the constructor of SOAP service

2002-01-14 Thread Rino Srivastava
Is there anyway by which you can pass arguments to the constructor of SOAP service? If yes then where to configure these parameter values? Thanks. Rino

RE:No deserializer found

2001-12-28 Thread Rino Srivastava
Hi, I am getting the following error: No Deserializer found to deserialize a 'urn:xml-recipe:recipe' using encoding style 'http://schemas.xmlsoap.org/soap/encoding/'. What do you have to do to provide a deserializer for a certain class... Thank you in advance, Rino

RE: No deserializer found

2001-12-28 Thread Rino Srivastava
, and review the examples. -Original Message- From: Rino Srivastava [mailto:[EMAIL PROTECTED]] Sent: Friday, December 28, 2001 10:37 AM To: [EMAIL PROTECTED] Subject: RE:No deserializer found Hi, I am getting the following error: No Deserializer found to deserialize a 'urn:xml

RE:No Serializer found

2001-12-28 Thread Rino Srivastava
Thanks Ashish, for the info. on the Deserializer. I'll check the docs. Rino

Deployment error in soap service 'urn:cd-order-service'

2001-12-28 Thread Rino Srivastava
Hello all, When I try to run a client program, I get the following error message: Deployment error in soap service 'urn:cd-order-service' class name 'org.apache.soap.util.xml.Serializer' could not be resolved as a Serializer. Can someone let me know what could be wrong? Thanks. rino

RE: Deployment error in soap service 'urn:cd-order-service'

2001-12-28 Thread Rino Srivastava
-Original Message- From: Rino Srivastava [mailto:[EMAIL PROTECTED]] Sent: Friday, December 28, 2001 2:52 PM To: [EMAIL PROTECTED] Subject: Deployment error in soap service 'urn:cd-order-service' Hello all, When I try to run a client program, I get the following error message

RE: Problems with the samples

2001-12-14 Thread Rino Srivastava
Make sure your class is in the classpath. Cheer! Rino -Original Message- From: LAMY Olivier [mailto:[EMAIL PROTECTED]] Sent: Friday, December 14, 2001 7:03 AM To: [EMAIL PROTECTED] Subject: Problems with the samples Hi, I'm using W2K, jdk1.4, Tomcat 3.2.3 and soap 2.2. I have

Tools for generating WSDL document for complex types

2001-12-13 Thread Rino Srivastava
Hello everyone: Does anyone know of a tool for generating a WSDL document for complex types such as: input: Envelop and SOAPContext Thanks in advance. Rino

RE: Help to run soap example.

2001-12-12 Thread Rino Srivastava
Check that your client and server are in the proper directory. Also, if you are using tomcat, then edit the server.xml file under tomcat/config to specify the right context. Hope this helps. Cheer! Rino -Original Message- From: Puthezhath, Rajeev (TWII Boston) [mailto:[EMAIL

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

2001-12-11 Thread Rino Srivastava
erClient.java:129) at org.apache.soap.server.ServiceManagerClient.deploy(ServiceManagerClie nt.java:142) at org.apache.soap.server.ServiceManagerClient.main(ServiceManagerClient .java:230) Rino Srivastava rsrivastava@producersam

RE:Invoking a method on the soap server

2001-12-11 Thread Rino Srivastava
Hello: I am trying to invoke a method on the soap server which does not take any parameters but returns a string. Do I still need to set parameters for the return type? Thanks. rino

RE: Invoking a method on the soap server

2001-12-11 Thread Rino Srivastava
From:Rino Srivastava [EMAIL PROTECTED] 12/11/01 09:37 AM Please respond to soap-user To:[EMAIL PROTECTED] cc: Subject:RE:Invoking a method

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

2001-12-11 Thread Rino Srivastava
Lee: I'm glad it worked for you. Cheers! Rino -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Tuesday, December 11, 2001 9:37 AM To: [EMAIL PROTECTED] Subject: RE: Help! - addressbook example generated fault when putListings/ getAllListings Rino, Yes it

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

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

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

Need help!

2001-12-07 Thread Rino Srivastava
I am using Apache soap. I have a server and client program. When I run the Client, I get some response back from the server. Now I want to store this response in a database. How can I do this task? Thanks. Rino

RE: Need help!

2001-12-07 Thread Rino Srivastava
response = Call.invoke(url, ); Vector v = response.getParams(); and then you should know what you are expecting in this Vector and further get the values from vector. or save the Vector as such, someway. Cheers. Vinod. - Original Message - From: Rino Srivastava [EMAIL PROTECTED

RE: Need help!

2001-12-07 Thread Rino Srivastava
to test your client is to do System.out.println(resp)try and see what's inside it and what do you want out of it ? - Original Message - From: Rino Srivastava [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Friday, December 07, 2001 5:31 PM Subject: RE: Need help! How can you save the vector

RE: Need help!

2001-12-07 Thread Rino Srivastava
in this Vector and further get the values from vector. or save the Vector as such, someway. Cheers. Vinod. - Original Message - From: Rino Srivastava [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Friday, December 07, 2001 5:11 PM Subject: Need help! I am using Apache soap

RE: Need help!

2001-12-07 Thread Rino Srivastava
should be able to store the datas in vector in a database using jdbc or whatever... -Senthil From:Rino Srivastava [EMAIL PROTECTED] 12/07/01 12:43 PM Please respond to soap-user

RE: Soap and HTTPS

2001-12-07 Thread Rino Srivastava
Try the following: java org.apache.soap.server.ServiceManagerClient https://localhost:8443/soap/servlet/rpcrouter list Cheer! Rino -Original Message- From: Andrew Stephen McGough [mailto:[EMAIL PROTECTED]] Sent: Friday, December 07, 2001 11:29 AM To: [EMAIL PROTECTED] Subject: Soap

RE: RE

2001-12-06 Thread Rino Srivastava
.setParams(v); call.invoke(url2, ); Hope that should help. Vinod. - Original Message - From: Rino Srivastava [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Wednesday, December 05, 2001 5:51 PM Subject: RE: RE Hi vinod: Can you elaborate more on this? Can you give me an example? Thanks

RE:passing values from one page to another

2001-12-05 Thread Rino Srivastava
Hi all: Can someone tell me if it is possible to pass values from one page to another as we do in JSPs? Thanks. Rino

RE:passing values from one page to another as in JSPs

2001-12-05 Thread Rino Srivastava
Hi there: Can someone tell me if it is possible to pass values from one page to another as we do in JSPs? Or how else can you accomplish this? Thanks. Rino

RE

2001-12-05 Thread Rino Srivastava
Hello everyone: I have a question for you guys. Suppose I have a Client and Server program. The server returns some response back to the Client. Now if I want to use this response in another method on the server, how can I accomplish this? Rino

RE: RE

2001-12-05 Thread Rino Srivastava
...and pass it as a Parameter to Call to another method on the client - Original Message - From: Rino Srivastava [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Wednesday, December 05, 2001 5:34 PM Subject: RE Hello everyone: I have a question for you guys. Suppose I have a Client

RE: RE:Calling multiple methods in a single request

2001-12-04 Thread Rino Srivastava
in a single request SOAP 1.1 doesn't support invoking multiple methods with one request (boxcarring) and as such Apache SOAP doens't either. Sanjiva. - Original Message - From: Rino Srivastava [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Tuesday, December 04, 2001 4:40 AM Subject: RE:Calling

RE: RE:Calling multiple methods in a single request

2001-12-04 Thread Rino Srivastava
SOAP doens't either. Sanjiva. - Original Message - From: Rino Srivastava [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Tuesday, December 04, 2001 4:40 AM Subject: RE:Calling multiple methods in a single request Please help Can somone suggest me how i can call multiple methods

RE: RE:Calling multiple methods in a single request

2001-12-04 Thread Rino Srivastava
Check the following url for a comprehensive example on apache-soap and java: http://www.javaworld.com/javaworld/jw-04-2001/jw-0427-soap.html Cheers! Rino -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Tuesday, December 04, 2001 8:10 AM To: [EMAIL PROTECTED]

RE: RE:Calling multiple methods in a single request

2001-12-04 Thread Rino Srivastava
. - Original Message - From: Rino Srivastava [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Tuesday, December 04, 2001 4:40 AM Subject: RE:Calling multiple methods in a single request Please help Can somone suggest me how i can call multiple methods in a single soap request. A link

RE: RE soap versus JSP

2001-12-04 Thread Rino Srivastava
Regards, /PJ -Original Message- From: Rino Srivastava [mailto:[EMAIL PROTECTED]] Sent: 04 December 2001 16:57 To: [EMAIL PROTECTED] Subject: RE soap versus JSP Can someone tell me why one should use soap instead of using JSP? Thanks. Rino

RE: RE soap versus JSP

2001-12-04 Thread Rino Srivastava
the differences between them, here are some useful links, also check the Apache SOAP FAQ: http://static.userland.com/xmlRpcCom/soap/SOAPv11.htm http://www.theserverside.com/resources/article.jsp?l=WebServices-Dev-Guide Rino Srivastava wrote: Can someone tell me

RE: Check the FAQ and some links before asking here

2001-12-04 Thread Rino Srivastava
I agree with you Pae. Rino -Original Message-From: Pae Choi [mailto:[EMAIL PROTECTED]]Sent: Tuesday, December 04, 2001 11:50 AMTo: [EMAIL PROTECTED]Subject: Re: Check the FAQ and some links before asking here Carlos, Your recommendation is common from

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:Method sayHelloTo is not supported

2001-11-30 Thread Rino Srivastava
Hi Ruben: Now I am getting a different error message as follows: fault code = SOAP-ENV: Server fault string = Method sayhelloTo is not supported I am attaching the Client and Server programs that I am using. Client.java HelloServer.java I have also deployed the HelloServer application

RE:Deploying a service

2001-11-30 Thread Rino Srivastava
Hello: I am trying to deploy a service using the following command line: java org.apache.soap.server.ServiceManagerClient http://localhost:8080/soap/servlet/rpcrouter deploy DeploymentDescriptor.xml I'm getting the following error message: Exception in thread main [SOAPException:

RE:NoSuchMethodError while running a soap client

2001-11-29 Thread Rino Srivastava
at org.apache.soap.Envelop.unmarshallEnvelop.java:237 at org.apache.soap.rpc.Call.invokeCall.java:230 at hello.Client.mainClient.java:50 I am attaching the client and the server programs: Client.java HelloServer.java Can someone please suggest how I can fix the above error? Thanks in advance. Rino

RE: RE:NoSuchMethodError while running a soap client

2001-11-29 Thread Rino Srivastava
SOAPMappingRegistry()); before setting TargetObjectURI. - Original Message - From: Rino Srivastava [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Thursday, November 29, 2001 1:43 PM Subject: RE:NoSuchMethodError while running a soap client Hi there: I am trying to run your HelloServer.java

NoSuchMethodError

2001-11-29 Thread Rino Srivastava
at org.apache.soap.Envelop.unmarshallEnvelop.java:237 at org.apache.soap.rpc.Call.invokeCall.java:230 at hello.Client.mainClient.java:50 I am attaching the client and server files: Client.java HelloServer.java Can you please suggest how I can fix the above error? Thanks in advance. Rino Srivastava

RE: NoSuchMethodError

2001-11-29 Thread Rino Srivastava
:40 PM To: [EMAIL PROTECTED] Subject: Re: NoSuchMethodError I tried and no rpoblem.check ur classpath - Original Message - From: Rino Srivastava [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Thursday, November 29, 2001 8:11 AM Subject: NoSuchMethodError Hi there: I am trying to run your

RE: NoSuchMethodError

2001-11-29 Thread Rino Srivastava
: Rino Srivastava [mailto:[EMAIL PROTECTED]] Sent: Thursday, November 29, 2001 11:12 AM To: [EMAIL PROTECTED] Subject: NoSuchMethodError Hi there: I am trying to run your HelloServer.java and Client.java programs using soap and java. I get the following error message: Exception

RE: NoSuchMethodError

2001-11-29 Thread Rino Srivastava
, November 29, 2001 11:34 AM To: [EMAIL PROTECTED] Subject: Re: NoSuchMethodError You will also have to take care that xerces.jar appears first in the classpath. so that the latest parser version takes precedence. - Original Message - From: Rino Srivastava [EMAIL PROTECTED

RE: Antwort: RE:NoSuchMethodError while running a soap client

2001-11-29 Thread Rino Srivastava
I'll try this out. Thanks, Xavier. Rino -Original Message- From: Xavier Renard [mailto:[EMAIL PROTECTED]] Sent: Thursday, November 29, 2001 11:31 AM To: [EMAIL PROTECTED] Subject: RE: Antwort: RE:NoSuchMethodError while running a soap client I remember there was something similar

RE: Antwort: RE:NoSuchMethodError while running a soap client

2001-11-29 Thread Rino Srivastava
not working for you..perhaps you are missing something somewhere. I am sending you my client and server classes. also find the deploymentdescriptor. - Original Message - From: Rino Srivastava [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Thursday, November 29, 2001 5:50 PM Subject: RE: Antwort

RE: Antwort: RE:NoSuchMethodError while running a soap client

2001-11-29 Thread Rino Srivastava
it through the admin tool also, just make sure that you don't miss out on any required params. - Original Message - From: Rino Srivastava [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Thursday, November 29, 2001 6:01 PM Subject: RE: Antwort: RE:NoSuchMethodError while running a soap client

RE:Installing apache-soap on IIS and using tomcat 3.1

2001-11-29 Thread Rino Srivastava
Hello: I was wondering if someone can guide me about the installation details for apache-soap on IIS which uses Tomcat 3.1 for running servlets and JSPs. I have tried to install apache-soap on IIS on which Tomcat 3.1 is running. I put the soap.jar, activation.jar and mail.jar in the tomcat/lib

method not supported

2001-11-29 Thread Rino Srivastava
Hi: Has anyone come across this error message: some methodname method not supported What does this mean? Thanks. Rino

RE: NoSuchMethodError

2001-11-29 Thread Rino Srivastava
- Original Message - From: Rino Srivastava [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Thursday, November 29, 2001 8:11 AM Subject: NoSuchMethodError Hi there: I am trying to run your HelloServer.java and Client.java programs using soap and java. I get the following error message

RE: NoSuchMethodError

2001-11-29 Thread Rino Srivastava
directory on your classpath? --- Rino Srivastava [EMAIL PROTECTED] wrote: I have added all the required jar files in the classpath(soap.jar, activation.jar, mail.jar and xerces.jar). I have also deployed the service. What could be missing? Thanks. Rino -Original Message- From: P

RE: NoSuchMethodError

2001-11-29 Thread Rino Srivastava
in the classpath. so that the latest parser version takes precedence. - Original Message - From: Rino Srivastava [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Thursday, November 29, 2001 4:19 PM Subject: RE: NoSuchMethodError I have added all the required jar files in the classpath(soap.jar

RE:NoSuchMethodError while compiling a simple soap client

2001-11-28 Thread Rino Srivastava
at org.apache.soap.Envelop.unmarshallEnvelop.java:237 at org.apache.soap.rpc.Call.invokeCall.java:230 at hello.Client.mainClient.java:50 Can you please suggest how I can fix the above error? Thanks in advance. Rino Srivastava