Remote administration - HxGN EAM - Version 12.0 - Customization & Programming - Hexagon

HxGN EAM Web Services Toolkit Help

Language
English
Product
HxGN EAM
Search by Category
Customization & Programming
HxGN EAM Version
12

HxGN EAM Connector is deployed on an Axis SOAP Server. 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 axis.war’s WEB-INF directory. In this directory, you will 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>

Enabling remote administration may give unauthorized parties access to your machine. If you do this, please make sure to add security to your Apache Tomcat configuration.