Java Tutorial - Java Scipt : Axis Admin Page

Java Tutorial - Java Scipt :

Axis Admin Page


Let’s verify that Axis is working. Using your Web browser, open up the Axis index page (http://localhost:8080/axis/index.html), which should look like Figure 11.2.

The first thing to do is verify that Axis is running okay. To do so, click on the Validate link to open the happyaxis.jsp page. You should see a page similar to FiguFigure 11.3 happyaxis.jsp page.

The admin page will probably be disabled by default. If so, go to WEB-INF/ web.xml file within the Axis Web application and uncomment the following segment:

<!--
<servlet-mapping>
<servlet-name>AdminServlet</servlet-name>
<url-pattern>/servlet/AdminServlet</url-pattern>
</servlet-mapping>
-->

This will reenable the admin link on the Axis index page. Currently, the admin page seems rather sparse and provides little in the way of useful information. This may change in the future, but until then we recommend that you leave the admin page disabled.