Hi Yadav,

Could you please put the war file under 
C:\software\apache-tomcat-5.5.17\webapps instead of 
C:\software\apache-tomcat-5.5.17\server\webapps.

Regards,

Ali Sadik Kumlali

----- Original Message ----
From: "Yadav, Yogendra (IT)" <[EMAIL PROTECTED]>
To: [email protected]
Sent: Friday, September 29, 2006 11:11:16 PM
Subject: RE: Installing axis2 into Tomcat

I have not changed anything, copied the axis2.war as it is in Tomcat.
The web.xml has what you have mentioned, see attached.

 

-----Original Message-----
From: Spies, Brennan [mailto:[EMAIL PROTECTED] 
Sent: Friday, September 29, 2006 3:39 PM
To: [email protected]
Subject: RE: Installing axis2 into Tomcat

Yadav,

The "welcome page" for Axis2 should be on the <welcome-file-list> in the
web.xml. If you go to http://localhost:8080/axis2/, it should direct you
to the /axis2-web/index.jsp page.


-----Original Message-----
From: Yadav, Yogendra (IT) [mailto:[EMAIL PROTECTED]
Sent: Friday, September 29, 2006 12:34 PM
To: [email protected]
Subject: Installing axis2 into Tomcat

I have installed tomcat 5.5.17. I am facing various problems with it:
1. Tomcat Administration link shows Admin Tool login page, but none of
the logins given in
C:\software\apache-tomcat-5.5.17\conf\tomcat-users.xml work.
2. Tomcat Manager link throws a userid/password challenge box what would
be login id and password ?
3. I copied axis2.war in C:\software\apache-tomcat-5.5.17\server\webapps
and restarted Tomcat. When I try to access Axis2 like this
http://localhost:8080/axis2/services/, I get 404 error page.

any help would be appreciated
-yogen
--------------------------------------------------------

NOTICE: If received in error, please destroy and notify sender. Sender
does not intend to waive confidentiality or privilege. Use of this email
is prohibited when received in error.

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


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

NOTICE: If received in error, please destroy and notify sender. Sender does not 
intend to waive confidentiality or privilege. Use of this email is prohibited 
when received in error.

<?xml version="1.0" encoding="ISO-8859-1"?>



<!DOCTYPE web-app PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 
2.3//EN" "http://java.sun.com/dtd/web-app_2_3.dtd";;>



<web-app>

    <display-name>Apache-Axis2</display-name>

    <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>

        <servlet-name>AxisRESTServlet</servlet-name>

        <display-name>Apache-Axis Servlet (REST)</display-name>

        <servlet-class>

            org.apache.axis2.transport.http.AxisRESTServlet</servlet-class>

    </servlet>

    <servlet>

        <servlet-name>AxisAdminServlet</servlet-name>

        <display-name>Apache-Axis AxisAdmin Servlet (REST)</display-name>

        <servlet-class>

            org.apache.axis2.transport.http.AxisAdminServlet</servlet-class>

    </servlet>

    <servlet-mapping>

        <servlet-name>AxisRESTServlet</servlet-name>

        <url-pattern>/rest/*</url-pattern>

    </servlet-mapping>





    <servlet-mapping>

        <servlet-name>AxisServlet</servlet-name>

        <url-pattern>/servlet/AxisServlet</url-pattern>

    </servlet-mapping>



    <servlet-mapping>

        <servlet-name>AxisServlet</servlet-name>

        <url-pattern>*.jws</url-pattern>

    </servlet-mapping>



    <servlet-mapping>

        <servlet-name>AxisServlet</servlet-name>

        <url-pattern>/services/*</url-pattern>

    </servlet-mapping>



    <servlet-mapping>

        <servlet-name>AxisAdminServlet</servlet-name>

        <url-pattern>/axis2-admin/*</url-pattern>

    </servlet-mapping>



   <welcome-file-list>

      <welcome-file>/axis2-web/index.jsp</welcome-file>

    </welcome-file-list>



    <error-page>

      <error-code>404</error-code>

      <location>/axis2-web/Error/error404.jsp</location>

    </error-page>



    <error-page>

        <error-code>500</error-code>

        <location>/axis2-web/Error/error500.jsp</location>

    </error-page>





</web-app>


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



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

Reply via email to