----- Original Message -----
From: "Chen, Waymon N" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Wednesday, January 08, 2003 12:39
Subject: RE: Can you access jws files inside a war?
> Here's the error I'm getting...
>
> - Unable to load/create servlet engine config file, attempting internal
> default (from jar).
that isnt necessarily a problem.
I have JWS files working in my webapp, by retaining the declaration in the
web.xml of the new war file I have created
with this mapping
<servlet-mapping>
<servlet-name>AxisServlet</servlet-name>
<url-pattern>*.jws</url-pattern>
</servlet-mapping>
and this servlet decl.
<servlet>
<servlet-name>AxisServlet</servlet-name>
<display-name>Apache-Axis Servlet</display-name>
<servlet-class>
org.apache.axis.transport.http.AxisServlet
</servlet-class>
<init-param>
<param-name>axis.development.system</param-name>
<param-value>true</param-value>
</init-param>
<load-on-startup>50</load-on-startup>
</servlet>
This hands it off to Axis, and all is well.