RE: replacing DefaultSocketFactory

2003-04-04 Thread Tom Jordahl
Great news Steve! Glad I could help. -- Tom Jordahl Macromedia Server Development -Original Message- From: Steven Gollery [mailto:[EMAIL PROTECTED] Sent: Thursday, April 03, 2003 6:38 PM To: [EMAIL PROTECTED] Subject: Re: replacing DefaultSocketFactory Tom, I figured it out -- the

Re: replacing DefaultSocketFactory

2003-04-03 Thread Davanum Srinivas
META-INF/services should be in the JAR file that has your org.apache.axis.components.net.MySocketFactory. So basically create a jar file with your socket factory that contains the META-INF directory as well. Then place the jar file in your servlet/WEB-INF/lib Thanks, dims --- Steven Gollery <[EM

Re: replacing DefaultSocketFactory

2003-04-03 Thread Steven Gollery
Tom, I figured it out -- the META-INF directory just needs to be under WEB-INF/classes. This is going to make it possible for us to go forward. Thanks again for your help. Steve Tom Jordahl wrote: This is the kind of thing that you need to use the commons-discovery code to do. You can eithe

Re: replacing DefaultSocketFactory

2003-04-03 Thread Steven Gollery
Tom, Thanks for the pointer: the integration guide turns out to have a lot of useful information for me. I can set the SocketFactory by setting a system property (Example 2 in the integration guide) just fine. But when I try to create a service definition file, like in example 1, I still get D

RE: replacing DefaultSocketFactory

2003-04-03 Thread Tom Jordahl
This is the kind of thing that you need to use the commons-discovery code to do. You can either set a property or create a service config file. Check out the xml-axis/docs/integration-guide.html file for info on this. -- Tom Jordahl Macromedia Server Development -Original Message- Fr