Tetra LabX Agent Frequently Asked Questions

Why does a LabX server error display when I try to connect the Tetra LabX Agent?

470

Server Error

To troubleshoot the error:

  1. Log in to the LabX app server and run the installation checker app (same folder as the actual LabX app).
  2. From the installation checker app, click Run to initiate a system check (this may take a few minutes).
  3. When the check completes, search for the SystemIntegrationService and review the following:
    • Does the endpoint URL match the one entered in LabX Agent?
    • Is the port open on the server?
720

Error Review

After installing the Tetra LabX Agent, why doesn't it start when I double-click and instead indicates that "Tetrascience.Agent.LabX.WinApp has stopped working"?

The v1.0.0 Tetra LabX Agent does not include the Admin role requirement in its manifest file. You may need to manually launch the application "as administrator".
Please always run the app 'as administrator' until the next version is released to avoid permission issues

What is the LabX endpoint address that the Tetra LabX Agent communicates with?

The Tetra LabX Agent uses this LabX endpoint address:
http://<address of server>:51155/LabX/BasicSystemIntegrationService

How to configure LabX to integrate over Https

By default, LabX API is not configured for using HTTPS protocol. The LabX client application communicates with the server over a secure channel, only the API by default is not configured for a secure protocol. The procedures below are to make the configuration secure.
Just a reminder that this configuration change is not officially tested and supported by the vendor

  1. Open the file C:\Program Files (x86)\METTLER TOLEDO\LabX\LabXHost.exe.config within a text editor. Note that in order to save the file after editing, administrative privileges are required. It is recommended to make a copy of the file before editing it. The file is in XML format
  2. File the element <bindings> and add the HTTPS binding configuration as this example:
    <bindings>
     ...
    <basicHttpsBinding>
    		<binding name="SystemIntegrationBasicHttpsBinding">
    		</binding>
    </basicHttpsBinding>
     ...
    </bindings>
    
  3. Find the element <services> and within this element block find the service with the name MT.Sequoia.SystemIntegration.SystemIntegrationService, add the BasicHttpsBinding as
    <endpoint binding="basicHttpsBinding" 
    bindingConfiguration="SystemIntegrationBasicHttpsBinding" 
    contract="MT.Sequoia.SystemIntegration.Contracts.IBasicSystemIntegrationService"
    address="https://[server name]:51157/LabX/BasicSystemIntegrationService"/>
    
  4. Note that during an update of LabX, the above-mentioned changes may be underdone by the installation and you would have to verify and eventually redo that change.
  5. In order for LabX to be allowed by the operating system to use port 51157, permission must be given (http://go.microsoft.com/fwlink/?LinkId=70353)
    Note that Local Service is the account running the LabXHost service. You can check yours to replace this account
    netsh http add urlacl url=https://+:51157/LabX/BasicSystemIntegrationService user="Local Service"
    
  6. The SSL certificate to be used for HTTPS communication on port 51157 has to be configured. The certificate has to be provided by the customer's IT department.
    Note that the IP address 0.0.0.0 must be indicated as such. The App ID provided corresponds to the App ID for LabX. The command to be executed will be similar to this one:
    netsh http add sslcert ipport=0.0.0.0:51157 certhash=[put certificate hash here] appid={2887C40E-F4F2-4E73-AE77-F85E6FDD3974}
    
  7. Restart the service LabXHost. If the service doesn't start correctly, you should be able to find a reason in the log file (C:\Program Files (x86)\METTLER TOLEDO\LabX\LogErrorBusinessServer[XXXX].txt). If the service starts correctly, you should be able to from SOAP UI (or other tools) to access the LabX API over HTTPS on port 51157.

Which tasks are selected by the Tetra LabX Agent?

The task selection is based on two criteria:

  • Task Creation Date is later than the Task Creation Date which you specify on the Management Console.
  • Task State. The Tetra LabX Agent excludes all tasks which are still processing. The Task State selection includes these states:
    • Completed
    • Aborted

How to export the method parameters?

The parameters of a method can be selected or implemented depending on the application (LabX Operational Manual, Page 190, Section 7.6.3.3 ). A user might change the value of a method parameter during the experiment. The changed value can be exported to the result file if the "include results in exports" checkbox is checked. (see the screenshot below)

How to fix the folder security right error?

After a user clicks on the "Start" button, the service start can be failed with this error message "User XXX has no access to this folder: YYYY". It can be fixed by changing the windows folder security settings.

  1. Open that folder in the Windows Explorer, right click on the folder and select the "Properties"
666

Folder Properties

  1. Select the "Security" Tab and click on "Advanced"
363

Security Advanced

  1. Select "Add", then "Select a principal", input user name, click on the "Check Name", click on "OK", then select "Modify" and "Write" access right.
1140

Add user