Do the built in EJBProviders will cache the EJBLookup handles?

2002-10-10 Thread Omprakash Bachu
Hi all, does any one have any idea whether the built in EJBProviders will cache the EJBLookup handles or not? :o)m -- To unsubscribe, e-mail: For additional commands, e-mail:

Will the order of FaultListners matters in DD?

2002-10-10 Thread Omprakash Bachu
Hi, can anyone throw some light... Question: In order to support my service along with custom faultlistener and default faultlistener, do the order of multiple listeners matter in deployment descriptor? :o)m -- To unsubscribe, e-mail: For additional commands, e-mail

Re: Custom Deserializer

2002-10-10 Thread Tanmay Kumar
Thanks a lot Scott for your nice explanation. Due to your explanation only, today we can finalize our project design. regards, Tans - Original Message - From: "Scott Nichol" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]> Sent: Thursday, October 10, 2002 10:29 PM Subjec

Re: Proxy Bypass

2002-10-10 Thread Scott Nichol
The syntax for http.nonProxyHosts can be seen at http://java.sun.com/j2se/1.4.1/docs/guide/net/properties.html. Scott Nichol - Original Message - From: "Scott Nichol" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, October 10, 2002 8:42 PM Subject: Re: Proxy Bypass > The 2.

Re: Proxy Bypass

2002-10-10 Thread Scott Nichol
The 2.3.1 release does not accomodate this by itself. Your code would have to determine whether the endpoint URL should do through the proxy or not and either use or not use the proxy as appropriate. The current code in CVS (and available for download as nightly drops) can use system properties

Proxy Bypass

2002-10-10 Thread Gill, John
I'm using Soap2.3.1 through a proxy.  This is working just fine.  Now a situation where I need to use the same soap client to call servers on both the internet and those behind the proxy has arisen.  HELP!  I know there's a way to do it as part of soap, but how?   John Gill  

Getting in to problems while accessing a SOAP service using HTTPS

2002-10-10 Thread Hussain, Syed
Hi Guys , I m trying to access a soap service over https , i m using Resin as my servlet engine . I followed resin SSL set up to install JSSE and some config changes in resin . I also have the debug flag set as -Djavax.net.debug=ssl . Now , i m trying to access the soap services from https

Re: Custom Deserializer

2002-10-10 Thread Scott Nichol
> Apart from using apache SOAP in my project, we have one more specific > requirement for which Is it possible to use the existing/modifying Apache > source code? Yes, you can modify the source for Apache SOAP and use it if you want. > If yes, my requirement is that I want to pass a DOM node to

Re: Problems changing from Tomcat 3.2.2 to Tomcat 4.0.5

2002-10-10 Thread Scott Nichol
For a Tomcat 4 installation, you should not touch Tomcat's classpath. Starting with a clean Tomcat installation, you just copy soap.war into %CATALINA_HOME%\webapps. That's it. Your services classes/jars can then either be put into %CATALINA_HOME%\webapps\soap\WEB-INF\[lib|classes] or %CATALINA_

Re: Problems changing from Tomcat 3.2.2 to Tomcat 4.0.5

2002-10-10 Thread Michael J Asbridge
surely it is a problem with your classpath not finding the servlet api according to the root cause exception method and stack trace. Not sure where tomcat keeps its servlet classes, probably in a servlet.jar or j2ee.jar I would check that the jar file containing the servlet api classes has not

Problems changing from Tomcat 3.2.2 to Tomcat 4.0.5

2002-10-10 Thread Jorge Cambra
Hello, I have programmed some web services that run okay in my Tomcat 3.2.2. Then, I have installed in a different directory Tomcat 4.0.5 and installed everything to get my services working exactly with the same configuration that with my Tomcat 3.2.2 (same libraries, same classpath, ...). S

Custom Deserializer

2002-10-10 Thread Tanmay Kumar
Hi all, Apart from using apache SOAP in my project, we have one more specific requirement for which Is it possible to use the existing/modifying Apache source code? If yes, my requirement is that I want to pass a DOM node to unmarshall() method of a Deserializer (may be Bean or custom) during run