Defining Configuration Ports - Intergraph Smart 3D - Reference Data - Hexagon

Intergraph Smart 3D Structural Manufacturing Reference Data

Language
English
Product
Intergraph Smart 3D
Subproduct
Structural Manufacturing
Search by Category
Reference Data
Smart 3D Version
13.1

The delivered configuration files use port number 5050 by default. You can change the configuration file on both the client and the listener computers.

Some port numbers might be restricted. To verify port availability, contact your local network administrator.

Define the S3DLoopBackListener port

  1. If Intergraph Smart 3D LoopBack Listener Service is running, stop it. See Setting up Nesting LoopBack for information about starting and stopping the service.

  2. Navigate to [Product Folder]\Core\Container\Bin\Assemblies\Release, and open S3DLoopBackListener.exe.config using a text editor.

  3. Change the default port (5050) to the port you require. The default port is shown in the example below.

    <service name="Ingr.SP3D.Manufacturing.Middle.LoopBackService">
    <endpoint address="net.tcp://localhost:5050/ILoopbackService"
    binding="netTcpBinding"
    contract="Ingr.SP3D.Manufacturing.Middle.ILoopBackService">
    </endpoint>
    </service>

  4. Start the Windows service. For more information, see Setting up Nesting LoopBack.

Define the S3DProductionClient port

  1. On the client, navigate to [Product Folder]\Core\Container\Bin\Assemblies\Release and open S3DProductionClient.exe.config using a text editor.

  2. Change the default port (5050) to the port you require. The default port is shown in the example below.

    <application>
    <client>
    <wellknown type="S3DProductionRemotable, S3DProductionRemotable"
    url="tcp://MyServer:5050/S3DProductionRemotable.rem"/>

Define the S3DLoopBackClient port

  1. On the client, navigate to [Product Folder]\Core\Container\Bin\Assemblies\Release and open S3DLoopBackClient.exe.config using a text editor.

  2. Change the default port (5050) to the port you require. The default port is shown in the example below.

    <client>
    <endpoint address="net.tcp:// MyServer:5050/ILoopbackService"
    binding="netTcpBinding"
    bindingConfiguration="NetTcpBinding_ILoopBackService"
    contract="ILoopBackService"
    name="NetTcpBinding_ILoopBackService">

    </endpoint>

    </client>

    The delivered S3DLoopBackClient.exe.config file URL directs to the default localhost. For information on redirecting the URL, see Setting up the Client.