Recently active
Hi, We are using 'GetPropertyDefinitions' inbuilt service to fetch any Kepware connected Thing details. When we execute this service, we are name (tag name) column along with other columns. In this tag name column, along with tag name there are few other properties getting logged like IndustrialThing,Description,Isconnected which we don't want to get. We only wanted to fetch the tag names. Even through subscription, when we log the tag names and its value based on any data change event, it logs the isconnected property which we do not want to log. How can we achieve this? Thanks, Shalini V.
The log out button has a redirect mashup option, I created a logout mashup and then provided the mashup name in the input of the log out button. The functionality doesn't seem to work as it should. When I click on Logout button it asks me to login instead of redirecting me to that mashup! Can anyone help me to solve this issue!
Hey Got a problem while installing. Running a 64-bit Ubuntu in a VM. Got JRE 1.8. Attached log file. Pls help me. Thanks!
I am getting following error while installing thingworx 8.5 trial version
I am trying to install TWX trial version on Ubuntu but unable to complete installation. I am getting attached error. I am not able to get the failure logs as well. Since once installation fails everything in installation directory is emptied. For one time the uninstallation script is not generated properly. Also the JAVA_HOME installation path is set to "/usr/lib/jvm/jdk-11.0.5" when installation script is ran. Please let me know what is the cause for this issue.
Hi, I have created a query service which returns dynamic columns. How can i make an infotable dynamic...to display dynamic columns. Is there any way of doing this? if so..please provide me the steps of doing it. Thanks, Sheetal
Hello, In a service I need to return an error with status code = 500 and return type JSON. Actually my service returns JSON but the response I really get is "Error executing service getError. Message :: {"test":"error"} - See Script Error Log for more details." and what I want to get is just the JSON {"test":"error"} I succeeded to have this work if I call a service on a resource but as soon as I call the service of the resource from a service of a Thing it doesn't work. Any ideas? Thanks Best regards
Hello everyone, I am facing a quite strange behaviour from Thingworx on Chrome. My customer is unable to log in to the composer from a normal chrome window, whereas she is able to do it from an incognito window. Another customer (in the same corporate network) is redirected to IE when she tries to open the mashup in normal chrome. For both cases, it works just fine from an incognito window. I also work in the same network and I do not face any of these issues. Any idea why this is happening?
Hi, May I know how to pass one infotable value to another infotable value. As I need to create a new infotable based on different datashape,and also pass one infotable's value to another one by one and new infotable should be output.
Hi, I got a WSEMS Error: The remote server returned an error: (504) Gateway Timeout after 10 seconds waiting a response from server. I've looked into the config.json, but i don't see any value related to 10 seconds, is it content_read_timeout? "http_server": { "host": "localhost", // Defaults to localhost - be careful, this likely means IPV6 localhost, not 127.0.0.1. "port": 8000, // Number. Defaults to 8000. "ssl": true, // Boolean. Enable SSL. Defaults to false. "certificate": "/path/to/certificate/file", // String. Default is empty. "private_key": "/path/to/private/key", //String. Default is empty. "passphrase": "password", //String. Default is empty. "authenticate": true, // Boolean. Enable Authentication. Defaults to false. "user": "johnsmith", // User for HTTP server. "password": "AES:EncryptedPassword", // Password for user. Can be encrypted. "content_read_timeout": 20000, // Setting to timeout when trying to read content from a POST or PUT. "ports_
Hi, I followed the instructions on https://developer.thingworx.com/en/resources/guides/thingworx-raspberry-pi-quickstart/configure-ems I got a error after ./wsem: Starting the connection which is: Main: Unable to connect to server. Trying .booted config file followed by other errors eg 110 as shown.
Hi, we got the errors in runtime after import custom widgets, which have documented in release notes in thingworx 8.5, as below: we have modified the code accordingly, however it didn't work. Anyone have clear idea how to solve this error, which file should we paste the code as different widgets have different file structure. Thanks.
I am experiencing the same issue, was there any solution for this?
Hi, I have successfully create a ssh-connection and a vnc-connection over a edge device to an rpi via EMS. Now I try the same with RDP but this will not work. I have installed xrdp on the rpi (tcp-port 3389). I have setup the firewall of the edge device (where the EMS is running) to allow TCP 3389. When I try to connect via remote access widget I get the error message [ERROR] 2019-12-04 12:11:18,313 SDK: twTunnelManager_TaskerFunction: Error connecting to 1.0.1.2:3389. tid: 75da34af-e679-4338-984b-d2ec35f8818a. Error: 111 on EMS-side.
Hi, I need to connect to a device using TCP/IP connection. Have got the Ip and Port for the TCP. Is there any extension available to pull the data. I have also tried to use WebSocketsTunnelWidgetAndLibrary3.0.1. But its not getting connected. Have made changes in the Configuration column. Please suggest. Regards, Saddam
Hi, I wonder why the TransferExecutor sometimes rejected a FileCopyTask when active threads are still less than pool size JavaException: java.util.concurrent.RejectedExecutionException: Task com.thingworx.system.subsystems.filetransfer.engine.FileCopyTask@659cadf7 rejected from com.thingworx.system.subsystems.filetransfer.engine.TransferExecutor@1d58682b[Running, pool size = 50, active threads = 16, queued tasks = 1, completed tasks = 100193] ... JavaException: java.util.concurrent.RejectedExecutionException: Task com.thingworx.system.subsystems.filetransfer.engine.FileCopyTask@75ec5668 rejected from com.thingworx.system.subsystems.filetransfer.engine.TransferExecutor@1d58682b[Running, pool size = 50, active threads = 0, queued tasks = 0, completed tasks = 101136] { "async": false, "sourceRepo": "DEVICE_225016", "targetRepo": "ABCD", "targetFile": "test225016.txt", "targetPath": "/", "sourceFile": "test.txt", "sourcePath":
I have installed thingworx manufacturing application trail version. Please provide steps to configure and how to open thingworx composer.
I have to install Thingworx 8.5 on RHEL 7.6 with Postgresql and influxdb. I need to know where the data is stored and what size to calculate to create the file system and the corresponding partitions. My client asks me for that information. I will install as a user with few privileges. Thanks
Hi, I got error "Internal server error" when opening monitoring->ApplicationLog and click , no such error occurs if open other Log , for example: ScriptLog. Please check the attached error.log. Thingworx 8.5.1. Postgresql 10.11, Windows server 2016 Regards, Sean
// creating data table var createResult = Things[thingname].customCreateEntity({templateName: "DataTable" /* THINGTEMPLATENAME */,entityName: dtName /* STRING */,description: dtDesc /* STRING */,tags: undefined /* TAGS */});Things[dtName].EnableThing();Things[dtName].RestartThing(); //Now set the Datashape for this DTThings[dtName].SetDataShape({ name: dataShape });Things[dtName].EnableThing();Things[dtName].RestartThing();// Assign thingshape to this DT Resources["EntityServices"].AddShapeToThing({name: dtName /* THINGNAME */,thingShapeName: customThingShape /* THINGSHAPENAME */});Things[dtName].EnableThing();Things[dtName].RestartThing();
Hi All, I need a litle help. I would like to solve that, you don't have to sign in every time, it goes automatically log in to user. So i would like to create a Mashup access without login. I tried with Mashup parameter: USER, and PASSWORD, but no success. It will also be asked to sign in. I tried with Application Key, x-thingworx-session=true, but the result is: you mustn't log in, but it goes with error. Am I missing something? Can someone help me? Thank you, Ilona
I am following the guide here: https://developer.thingworx.com/en/resources/guides/foundation-linux-install-guide I set up the self-signed cert. I enter the initial configuration info and the installation starts and fails almost immediately with the error: There has been an error. Failed to install dependencies: Chef Client The application will exit now. I am trying this on an ubuntu 16.04 VM. I have Oracle Java installed: jdk-8u202 64 bit. Trying to install Foundation-Installer-Linux-8-5 obtained from the developer's site. Appreciate learning what my options are to move forward.
Hello, everyone! With the release of ThingWorx 8.5, we’ve incorporated a lot of new functionality into our manufacturing and service apps. To cover a few, I’ve included the list below. We created a manufacturing common layer extension to bundle all the PTC-offered IoT apps (Operator Advisor, Asset Advisor, Production KPIs and Controls Advisor) into one extension to enable you to use them even more quickly. We added a UI to Operator Advisor to strengthen your development of work instructions. We introduced new shift and crew data models and user interfaces to standardize how to track workers’ shifts and crew availability. We also introduced Flexible KPIs to help you more rapidly develop apps to calculate common metrics. We enhanced the Operator Advisor MPMLink connector to allow users to access navigation criteria for filtering parameters based on required criteria with support for standard processes. We incorporated multiple context supports for assets—like different bu
Hello all, We have a web application which supports only SOAP service. I'm trying to fetch data from Thingworx Server from my web application. Is there any possibility to create SOAP response in Thingworx ? Thanks in advance. Regards, VR
At the moment I trie to use Thingworx 8.5 + Manufacturing Apps + KEPServerEX 6.7 I want to publish MQTT Messages Thingworx with the KEPServer and the MQTT Driver (Not MQTT Extension). I successfully subscribe the Data in Thingworx. I created the Tags in KEP and I see the messages from a MQTT Client (Node-Red) via the MQTT Broker (Mosquitto) to the KEPServer. In Thingworx I created with Discover the Thing (Remote Thing) with the Binding to the KEPServer Tag. Everything works fine and I see the Value in the Properties. But if I trie to change the value in the properties i see in the event log from KEPServer: Warning MQTT Client Channel2.Device1 | Unable to write to address on device. | Address = 'thingworx+invalue'. In KEP the Client Access = Read/Write. if change it to Read only I get an error in Thingworx. In the MQTT Manual I found: Reading data from a MQTT server (writes are currently not supported) Bu
Already have an account? Login
No account yet? Create an account
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.