Re: How to run apache-soap on a servlet engine except Tomcat

2002-07-09 Thread Tatsuya Tsurukawa
Hi, Thank you for your quick response. I'd like to clarify some points again. I think it is correct that I call RPCRouterServet directly. Is it right ? I don't use configuration files like web.xml included in Tomcat. Are there any information does our servlet engine have to have in advance ?

Re: cookies

2002-07-09 Thread Remus Stratulat
On Tue, 2002-07-09 at 18:59, Scott Nichol wrote: > > Ok, I got it. Thank you. But still no access to them. Some getters and > > setters for cookies and cookies2 would be nice. > > Good idea. I'll throw that in today. > > > And by the way, why don't you make some of the fields and methods > > pr

no object DCH for MIME type multipart/related

2002-07-09 Thread Amazing Arny
Hi, I have made a Soap with attachment implementation in Oracle Jdeveloper. When I run it from Jdeveloper if works fine, but when I run it using a normale JDK(1.3.1.03)in stead of the Oracle JDK it keeps coming up with the next error: Error: no object DCH for MIME type multipart/related;

ClassDefNotFound

2002-07-09 Thread gabeki
Title: ClassDefNotFound Hi all, I am very new to soap and tomcat.  I have installed tomcat and soap server OK. but when i go into http://localhost:8080/soap/admin/index.html try to deploy, i will get into package not found error.  i am pretty sure the classpath is correct.   Do I miss anyth

Re: Help:Extracting the name of elements in user-defined provider

2002-07-09 Thread Scott Nichol
The Envelope gives you access to Body through Envelope#getBody. Scott Nichol - Original Message - From: "Eric Lo" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, July 09, 2002 8:54 PM Subject: Help:Extracting the name of elements in user-defined provider > Hi, > I am writin

Re: Constructor Deadlock

2002-07-09 Thread Scott Nichol
If the services are specified to be at application scope, all calls to either will have to wait on the same monitor at the synchronized block. Scott Nichol - Original Message - From: "Martin Gainty" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]> Cc: <[EMAIL PROTECTED]>

Re: Constructor Deadlock

2002-07-09 Thread Martin Gainty
Adam: If individual calls from client fail then why would java Call have more success?If possible could you provide 1)Specific services you are executing on Server (are they registered)2)Specific client call to the server code(in code)danke,Martin > > >I have a class that implements a SOAP

Re: BadTargetObjectURI problem:: Please guide me !!!

2002-07-09 Thread Scott Nichol
Here are some resources for installing Apache SOAP and Tomcat: http://www.javaworld.com/javaworld/jw-04-2001/jw-0427-soap.html http://www.soapuser.com/server1.html http://www.scottnichol.com/apachesoapinstall.htm http://www.onjava.com/pub/a/onjava/2002/02/27/tomcat.html Scott Nichol - Origi

Re: BadTargetObjectURI problem:: Please guide me !!!

2002-07-09 Thread Scott Nichol
That is an abstract URI to specify the namespace. It is OK. You have successfully deployed, the error you get implies that the service cannot find the class Hello to load. Do you have the freedom to use another version of Apache SOAP and/or another version of Tomcat? Apache SOAP installs very

Re: BadTargetObjectURI problem:: Please guide me !!!

2002-07-09 Thread Nishant_Awasthi
-- Nishant Awasthi Corporate Systems Database Intern Progressive Insurance Phone: 440-603-4055 (Work) Cell: 330-328-0243 (Cell) - Forwarded by Nishant Awasthi on 07/09/2002 04:15 PM -

Re: BadTargetObjectURI problem:: Please guide me !!!

2002-07-09 Thread Nishant_Awasthi
I am using follwing non-working link in my DeploymentDescriptor.xml file while depolying my web service: http://xml.apache.org/xml-soap/deployment Is non-working of this link is not creating the problem in proper deployment of the service class. this file is attached below: http://xml.apache.

Re: BadTargetObjectURI problem:: Please guide me !!!

2002-07-09 Thread Nishant_Awasthi
Hello Scott... I tried putting the my service file i.e Hello.class file at c:/soap-2_0/webapps/soap/WEB-INF/classes and added this in the classpath too. But it didn't worked. I then put this .class file in c:/soap-2_0/webapps/soap and c:/soap-2_0/webapps/soap/WEB-INF just to see if it works but

Re: BadTargetObjectURI problem:: Please guide me !!!

2002-07-09 Thread Scott Nichol
Because you set the context, the base for your SOAP webapps is c:/soap-2_0/webapps/soap. Your service classes in c:\jakarta-tomcat-3.2.4\webapps\examples\WEB-INF\classes are accessible from the examples webapp, not the soap webapp. Try placing your service classes in c:/soap-2_0/webapps/soap/WEB

Re: BadTargetObjectURI problem:: Please guide me !!!

2002-07-09 Thread Nishant_Awasthi
Hello Scott. Thanks for replying. Here are the steps of installation and configuration: 1. I have installed Tomcat 3.2.4 at C:\jakarta-tomcat-3.2.4 2. Then I downloaded soap-bin-2.0.zip on harddisk and unzipped to create C: \soap-2_0 folder which contained docs,lib,samples and webapps fold

Re: HTTP/1.1

2002-07-09 Thread Scott Nichol
FYI, Axis supports chunked encoding but still does not do HTTP/1.1 keep-alive. Scott Nichol - Original Message - From: "Scott Nichol" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, July 09, 2002 12:54 PM Subject: Re: HTTP/1.1 > I had a quick look at the archives at http://m

Re: HTTP/1.1

2002-07-09 Thread Scott Nichol
I had a quick look at the archives at http://marc.theaimsgroup.com and it looks like June 2001 was the last discussion. Matt Duftler had hacked something, but it never got into the code base. The thread also mentions chunked encoding, which could also be supported. Scott Nichol - Original

cvs commit: xml-soap/java/src/org/apache/soap/transport/http SOAPHTTPConnection.java

2002-07-09 Thread snichol
snichol 2002/07/09 09:30:55 Modified:java/src/org/apache/soap/transport/http SOAPHTTPConnection.java Log: Add accessor and mutator for cookies and cookies2 so that all cookies can be viewed and manipulated. Revision ChangesPath 1.24 +44 -0

RE: Constructor Deadlock

2002-07-09 Thread Emilio Belmonte
Title: RE: Constructor Deadlock I run into a similar problem when deploying a service using application scope.  After reviewing the code, I think that the problem is in: org.apache.soap.server.http.ServerHTTPUtils.getTargetObject The scopeLock is obtained using the servlet context.  I think

Re: Constructor Deadlock

2002-07-09 Thread Scott Nichol
Adam, If you are using Application or Session scope for your services, this behavior is by design. Creation of an instance of a service object is synchronized on the app or session in those cases to ensure that only one instance is created per application or session. Scott Nichol - Origina

HTTP/1.1

2002-07-09 Thread WJCarpenter
Is it my imagination, or was somebody talking a while back about doing a patch that provided HTTP/1.1 persistent connections for Apache SOAP 2.x? -- [EMAIL PROTECTED] (WJCarpenter)PGP 0x91865119 38 95 1B 69 C9 C6 3D 2573 46 32 04 69 D6 ED F3 -- To unsubscribe, e-mail:

Re: BadTargetObjectURI problem:: Please guide me !!!

2002-07-09 Thread Scott Nichol
Can you provide a little more information about how you installed Apache SOAP with Tomcat. For example, did you edit tomcat.bat? If so, what change did you make. Did you install Apache SOAP as a war, or did you unjar it yourself, or did you build the webapps directory manually? Did you add a c

Re: cookies

2002-07-09 Thread Scott Nichol
> Ok, I got it. Thank you. But still no access to them. Some getters and > setters for cookies and cookies2 would be nice. Good idea. I'll throw that in today. > And by the way, why don't you make some of the fields and methods > protected so one can easily extend from your classes. Now I have

Constructor Deadlock

2002-07-09 Thread Adam Moore
I have a class that implements a SOAP service. In the constructor of that class, I want to make a SOAP call (using the Apache "Call" class) to a different service that is running in the same JVM, and everything hangs. Looking with jdb, it appears that the call is awaiting the response from the d

BadTargetObjectURI problem:: Please guide me !!!

2002-07-09 Thread Nishant_Awasthi
I am new to SOAP and Tomcat and I am continuously getting this problem: Fault Code = SOAP-ENV:Server.BadTargetObjectURI Fault String = Unable to resolve target object: Hello As per I have read so far it is due to the classpath settings. I have all my .java and .class files( as well as classpa

Re: cookies

2002-07-09 Thread Remus Stratulat
Ok, I got it. Thank you. But still no access to them. Some getters and setters for cookies and cookies2 would be nice. And by the way, why don't you make some of the fields and methods protected so one can easily extend from your classes. Now I have to rewrite the entire class or modify the sourc

Re: multiRef element

2002-07-09 Thread Scott Nichol
To discuss Axis issues, please post to an Axis mailing list, e.g. [EMAIL PROTECTED] Thanks. Scott Nichol BTW, I am interested in reading the answer, since Apache SOAP and Microsoft use the same convention. - Original Message - From: "soap vamsi" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTE

Re: How to run apache-soap on a servlet engine except Tomcat

2002-07-09 Thread Scott Nichol
You are correct that RPCRouterServlet is the servlet that is executed to access an Apache SOAP service, although I don't know why you would need to modify it. When using HTTP as the transport, only the POST action is supported, which is why you get the message from doGet. Tomcat and Apache SOAP

Re: cookies

2002-07-09 Thread Scott Nichol
What you say is true of the latest release, but the current source, available through the nightly distribution or CVS tree, supports multiple cookies. Scott Nichol - Original Message - From: "Remus Stratulat" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, July 09, 2002 4:56 A

RE: difference between soap and Message Driven Bean

2002-07-09 Thread Soumya Dasgupta
Message Driven Beans are for asynchronous message transfer typically used in a Messaging Service.Hence SOAP and MDBS are totally parallel concepts.As far as security is concerned one can achieve secure communication thru both. >From: Shashi Anand <[EMAIL PROTECTED]> >Reply-To: [EMAIL PROTECTED

Help:Extracting the name of elements in user-defined provider

2002-07-09 Thread Eric Lo
Hi, I am writing my own provider by implementing the Provider interface. I also need to pass the element names in the SOAP message into the invoking method. For example, the incoming soap message is: ... 065-1439 1000 And I need the pass the element name, such as ("model" and

RE: difference between soap and Message Driven Bean

2002-07-09 Thread Soumya Dasgupta
Message Driven Beans are for asynchronous message transfer typically used in a Messaging Service.Hence SOAP and MDBS are totally parallel concepts.As far as security is concerned one can achieve secure communication thru both. >From: Shashi Anand <[EMAIL PROTECTED]> >Reply-To: [EMAIL PROTECTED

How to run apache-soap on a servlet engine except Tomcat

2002-07-09 Thread Tatsuya Tsurukawa
Hi All, I'm now trying to run apache-soap 2.2 on our proprietary servlet engine instead of Tomcat. I could successfully run it on RHL 7.2, JDK 1.3.1 and Tomcat 3.2.3. In case of using our servlet engine, I have to register a servlet to it in advance by its name. ex) "servlet-name". Then I can r

cookies

2002-07-09 Thread Remus Stratulat
Will be a version with support for multiple cookies and cookie handling? Right now in SOAPHTTPConnection the responseHeaders can hold only the last cookie that was set (due to the fact that it's a Hashtable). I know that the SOAP's main goal is not session maintaining but I'm confronting with thi

RE: difference between soap and Message Driven Bean

2002-07-09 Thread Shashi Anand
Hi NIket,   I do not know much about transport used in Message Driven Bean. but in SOAP HTTPS can be used as transport which is secure for ur case.   Shashi Anand  -Original Message-From: Niket Anand [mailto:[EMAIL PROTECTED]]Sent: Monday, July 08, 2002 7:17 PMTo: [EMAIL PROTECTED