Hi all!

I have multiple AxisServlet in a webapp. Each AxisServlet is in charge
of some services endpoint.
So I must have multiple server-config.wsdd file (1 for each
AxisServlet).
But how can I tell Axis to take not the WEB-INF/server-config.wsdd but
another file (ex : WEB-INF/<servlet-name>-server-config.wsdd).
I try with an init-param like this but it does not work :
<servlet>
 <servlet-name>AxisServlet1</servlet-name>

<servlet-class>org.apache.axis.transport.http.AxisServlet</servlet-class>
 <init-param>
  <param-name>axis.ServerConfigFile</param-name>
  <param-value>WEB-INF/AxisServlet1-server-config.wsdd</param-value>
 </init-param>
</servlet>

Is there a way to tell axis the new wsdd to load with init-param ??

Regards

Guillaume

Reply via email to