Appserver Configuration

There are two files that configure the ports used by the appserver.

  • ssa.xml:

This file is located under the Infor SCE install folder at <install folder>\sce\scprd\wm\app\conf\ssa.xml

<module name="WmsServer">
<enterprise name="TransactionServiceSORemote">
<provider>remote://server:9990</provider>
<factory>org.jboss.as.naming.InitialContextFactory</factory>
<jndi-name>ejb:wmserver/wmserverclient_ejb//TransactionServiceSO!com.ssaglobal.scm.wms.service.exeprocessmanager.TransactionServiceSORemoteHome</jndi-name>
</enterprise>
</module>
  • standalone.xml:

This file is located at: <install>\sce\wildfly-8.2.0.Final\scprd-wmapp1\configuration\standalone.xml. It determines the port that the appserver is running on. It uses the socket-binding-name for http as the base port number and then is modified by the port-offset.

    <socket-binding-group name="standard-sockets" default-interface="public" port-offset="${jboss.socket.binding.port-offset:0}">
        <socket-binding name="management-http" interface="management" port="${jboss.management.http.port:9990}"/>
        <socket-binding name="management-https" interface="management" port="${jboss.management.https.port:9993}"/>
        <socket-binding name="ajp" port="${jboss.ajp.port:8009}"/>
        <socket-binding name="http" port="${jboss.http.port:8080}"/>
        <socket-binding name="https" port="${jboss.https.port:8443}"/>
        <socket-binding name="txn-recovery-environment" port="4712"/>
        <socket-binding name="txn-status-manager" port="4713"/>
        <outbound-socket-binding name="mail-smtp">
            <remote-destination host="localhost" port="25"/>
        </outbound-socket-binding>
        <outbound-socket-binding name="oaejb">
            <remote-destination host="lightsaber" port="8180"/>
        </outbound-socket-binding>
        <outbound-socket-binding name="laborejb">
            <remote-destination host="lightsaber" port="8780"/>
        </outbound-socket-binding>
    </socket-binding-group>