>For services that are written in Java you need the server-config.wsdd file >in your WEB-INF directly. (Or alternately you can deploy the service >using as specified in the manual, but I just copied over my wsdd file).
Thanks for your reply, I have deployed and tested several sample services. But I wanted to understand how things are working as I want to try to deploy axis on other servers than tomcat. So does the server-config.wsdd file have any dependency on the server in which the app is being deployed? If the web.xml and the wsdd file is just copied from an app deployed 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 ><servlet-mapping> > <servlet-name>AxisServlet</servlet-name> > <url-pattern>/services/*</url-pattern> > </servlet-mapping> > >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 written in Java you need the server-config.wsdd file in your WEB-INF directly. (Or alternately you can deploy the service using as specified in the manual, but I just copied over my wsdd file). > >