Hi Shimpa,

we had the same problem and we do it like this:

1) we add AxisServlet to web.xml

<web-app>
    <servlet>
        <servlet-name>AxisServlet</servlet-name>
        <display-name>Apache-Axis Servlet</display-name>
        <servlet-class>
            org.apache.axis2.transport.http.AxisServlet</servlet-class>
        <load-on-startup>1</load-on-startup>
    </servlet>
  <servlet-mapping>
    <servlet-name>AxisServlet</servlet-name>
    <url-pattern>/services/*</url-pattern>
  </servlet-mapping>
</web-app>

2) we use the services.xml generated by WSDL2java

<serviceGroup>
        <service name="ServiceOne"
                        <!-- everything else here -->
        </service>
</serviceGroup>

3) we deploy the java classes like any other class in our webapp and add 
services.xml like this: 

\---WEB-INF
    |   web.xml
    |
    \---services
        \---ServiceOne
            \---META-INF
                    services.xml
                    
4) We do not deploy a wsdd file

Good luck
Martin

-------- Original-Nachricht --------
Datum: Tue, 20 Mar 2007 10:33:33 -0700 (PDT)
Von: Shimpa Mithal <[EMAIL PROTECTED]>
An: [email protected]
Betreff: AXIS war deployment

> I have deployed a web service in AXIS under Tomcat and it works well. Now,
> I want to deploy the same service as a deployable application in
> production where I do not have AXIS. For this I created a war with lib and 
> web.xml
> from AXIS. When I start Tomcat it comes up without any errors, but how do I
> deploy this application in Tomcat? 
> Do I need a server-config.wsdd? 
> What should go in the web.xml ( currently it is AXIS default web.xml). 
> Do I need to use java org.apache.axis.client.AdminClient for deployment?
> If yes, then how? Right now it gives me a 404 , I am not sure if the URL I
> am giving is correct ...
>    
>   Thanks
>   Shimpa
>   
> 
> 
>  
> ---------------------------------
> It's here! Your new message!
> Get new email alerts with the free Yahoo! Toolbar.

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to