Hi.
I have simple problem.

I have new application in path:
%Tomcat%\webapps\myapp\WEB-INF\classes\webapp\Service.class

WEB-INF constraints web.xml where I defined authenticate contraints.

In Tomcat server.xml file added context for my application:
<Context
  path="/myapp"
  docBase="myapp"
  crossContext="false"
  debug="0"
  reloadable="true" >
</Context>

During server is starting context is properly deployed.
After server started I deploing my application: (deploy.xml)

<deployment name="myapp" xmlns="http://xml.apache.org/axis/wsdd/";
    xmlns:java="http://xml.apache.org/axis/wsdd/providers/java";>
  <service name="My Test app" provider="java:RPC">
    <parameter name="className" value="webapp.Service"/>
    <parameter name="allowedMethods" value="getLocal"/>
  </service>
</deployment>

Unfortunately when I go to axis "administration" local site to view all
defined services my new application is unproperly defined. Axis appear only
name "myapp" but name defined method is not displayed.

Do anyone could tell me why axis doesn't see my new application in this
path?

Regards
Peter

Reply via email to