from the documentation:

Remote Administration
Note that by default, the Axis server is configured to only accept administration requests from the machine on which it resides - if you wish to enable remote administration, you must set the "enableRemoteAdmin" property of the AdminService to true. To do this, find the "server-config.wsdd" file in your webapp's WEB-INF directory. In it, you'll see a deployment for the AdminService. Add an option as follows:

<service name="AdminService" provider="java:MSG">
  <parameter name="className" value="org.apache.axis.util.Admin"/>
  <parameter name="allowedMethods" value="*"/>
  <parameter name="enableRemoteAdmin" value="true"/></service>

WARNING: enabling remote administration may give unauthorized parties access to your machine. If you do this, please make sure to add security to your configuration!


Have you done this?
Harry

Am Mi, den 24.03.2004 schrieb Virginie Legrand um 15:48:
It's what I have done ... It doesn't work ! :(

Harald Pollak wrote:

> try to uncommend the admin-section in web.xml 
> ($CATALINA_HOME/webapps/axis/WEB-INF, when using Tomcat). Then it 
> should work!
>
> best regards
> Harry
>
> Am Mi, den 24.03.2004 schrieb Virginie Legrand um 15:18:
>
>>/Hi all,
>>
>>I am trying axis and I want to deploy a web service by using Adminclient :
>>
>>    java org.apache.axis.client.AdminClient hello.wsdd
>>
>>That works fine  when I execute it on the same host that  tomcat server.
>>
>>But It doesn't work when I try to call the AxisServlet from another host
>>I typed :
>>    java org.apache.axis.client.AdminClient   
>>-l//_http://foo:8080/axis/servlet/AxisServlet_ hello./wsdd
>>
>>The logs on tomcat servers says "Rejected remote access from host /foo".
>>
>>Is there something I forgot to do ?
>>
>>Thanks for your help
>>
>>Virginie
>>/
>>

Reply via email to