Setting up the Client - 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

The nesting computer triggers the connection to the Smart 3D system listener.

Set up S3DLoopBackClient

  1. Create a new folder on the nesting computer (the client; see item 4 in Nesting LoopBack Windows Service). In this example, the new folder is named LoopBack.

  2. Navigate to [Product Folder]\Core\Container\Bin\Assemblies\Release, and then copy the files listed below to the LoopBack folder you created on the nesting computer in the previous step:

    • S3DLoopBackClient.exe

    • S3DLoopBackClient.exe.config

    • S3DLoopBackService.dll

  3. Using a text editor, open S3DLoopBackClient.exe.config on the nesting computer (the client).

  4. Modify the URL to point to the listener Smart 3D computer. In the example below, the Smart 3D computer URL is MyServer.

    Original Configuration

    <client>

    <endpoint address="net.tcp://localhost:5050/ILoopbackService"
    binding="netTcpBinding"
    bindingConfiguration="NetTcpBinding ILoopBackService"
    contract="ILoopBackService"
    name="NetTcpBinding ILoopBackService">
    <endpoint/>

    </client>

    New Configuration

    <client>

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

    </endpoint>

    </client>

  5. Set the log directory in the S3DLoopBackClientClient.exe.config file.

    You can set the log directory if you have Write permissions. If you do not have Write permissions, or if the value below is not set in the configuration file, the default log directory is %temp%\NestingServiceLog:

    <appSettings>
    <add key="LogDirectory" value = ""/>
    </appSettings>