RE: basic question about axis

2005-02-18 Thread Vikas Phonsa
in tomcat to another server, should I expect it to work? Thanks again for your time. Vikas -Original Message- From: Bill Keese [mailto:[EMAIL PROTECTED] Sent: Thursday, February 17, 2005 5:12 PM To: [EMAIL PROTECTED] Subject: Re: basic question about axis > >AxisServlet

RE: basic question about axis

2005-02-18 Thread Brown, Mike
EMAIL PROTECTED] Sent: Thursday, February 17, 2005 6:33 PM To: [EMAIL PROTECTED] Subject: Re: basic question about axis I'm not sure what you are asking exactly. Tomcat routes incoming requests based on the path and extension type, as specified in web.xml. For example, any requests for jws files

Re: basic question about axis

2005-02-17 Thread Bill Keese
AxisServlet /services/* So every request with "/services/*" would be passed to the AxisServlet, right? Right Now how would the AxisServlet find the service / class that needs to be invoked? JWS files are found automatically; you don't have to do anything. For services that are wri

RE: basic question about axis

2005-02-17 Thread Vikas Phonsa
--Original Message- From: Bill Keese [mailto:[EMAIL PROTECTED] Sent: Thursday, February 17, 2005 4:33 PM To: [EMAIL PROTECTED] Subject: Re: basic question about axis I'm not sure what you are asking exactly. Tomcat routes incoming requests based on the path and extension type, as specified i

Re: basic question about axis

2005-02-17 Thread Bill Keese
I'm not sure what you are asking exactly. Tomcat routes incoming requests based on the path and extension type, as specified in web.xml. For example, any requests for jws files are routed to Axis: AxisServlet *.jws You can look at the web.xml in the sample app released with axis. Vik

basic question about axis

2005-02-17 Thread Vikas Phonsa
Hi Everybody, I have a very basic question about how axis intercepts calls to the deployed services. An axis based web services application is not much different than a regular web application deployed with the war structure except that we load a bunch of axis servlets on startup and we have a se