Recently active
Hi all, It has been a year since people talked here about automated testing so let's talk again. Do you have preferences between Sikuli vs Selenium vs Watir vs Cucumber? For automated test runners, do you prefer Jenkins vs Travis vs Circle-ci? PTC/Thingworx folks please chip in, what do you use internally? thanks -- Rick
in repeater widget we can automatically select the first row in the list using properties (auto select first row) and if we click the next button next set of list will appear is there any possiblities to automatically select the first row in the next set of list?
I have a thingshape used in a template that relates to some particular area of functionality in that template. I want to allow a particular group to have access to the thingshapes properties and services, but not allow them access to any other parts of the template. If I set the run time permissions in the thingshape 'run time instance' level, does this mean I wont have to do override permissions at the template level? TIA K
Hello, I am trying to connect a Raspberry pi to Thingworx platform vis EMS. When running ./wsems command, I have a time out issue. Here is my log file. [DEBUG] 2020-01-30 10:50:15,708 SDK: twTlsClient_Connect: Connecting to server[INFO ] 2020-01-30 10:50:15,761 SDK: Server supports websocket extensions: permessage-deflate[DEBUG] 2020-01-30 10:50:15,761 SDK: ws_on_headers_complete: Websocket connected![INFO ] 2020-01-30 10:50:15,761 SDK: twWs_Connect: Websocket connected![DEBUG] 2020-01-30 10:50:15,762 SDK: twWs_SendMessage: Sent 60 bytes using 1 frames.[WARN ] 2020-01-30 10:50:25,784 SDK: api:sendMessageBlocking: Message 2 timed out[DEBUG] 2020-01-30 10:50:25,784 SDK: twOfflineMessageStore_Write: Stored message in offline msg file. RequestId 2[DEBUG] 2020-01-30 10:50:25,784 SDK: twMessage_Delete: Deleting AUTH Message: 2[INFO ] 2020-01-30 10:50:25,784 SDK: twMessageHandler_CleanupOldMessages: Message 2 timed out Can anyone please find me a solution ?
Hi, the custom widget given in the tutorial is not working after I imported it. It has errors during the runtime. "ERROR - TW.Runtime.Workspace.Mashups.getWidget exception loading widget { name: Error, message: simplewidgetdoesn't exist }" I have search the community about this problem and it says to clear cache or change browser. Done all of that but still having this error. Shouldn't it work if I just build the files from https://developer.thingworx.com/en/resources/guides/create-mashup-widget-extension/completed-example-create-mashup-widget-extension and import them?
is there any way to manage message queue in ThingWorx
Hi , I am trying displaying infotable field values in html table as email content or body.but it not taking as variable? can anyone help me for this query? below is code for displaying html content. its printing rowValue1 , rowValue2 as it is. I want their actual values . var result = me.getDataForWeek(); //infotable resultvar tableLength = result.rows.length;logger.warn(tableLength);for (var x=0; x < tableLength; x++) {var row = result.rows[x];logger.warn(row.M_Key);var rowvalue1= row.M_Key;var rowvalue2 =row.PowerFactor;var emailContent = "<html><body>\<table>\<tr><td>M_Key</td><td>Powerfactor</td></tr>\<tr><td>rowvalue1</td><td>rowvalue2</td></tr>\</table></body></html>"} Thank you
I am trying to reset password for a user in Form Login. There it asks to fill userID. where can I find the user ID of a user?
Hi, Is it possible to fetch the button label or display name as a output in runtime. We know that the button doesn't have input/output arrows option to bind any service for its name. But we wanted to take the display name or label of button in the runtime. So, is there any other possible way to achieve this? Thanks in advance, Shalini V.
I want to get the display name of button widget as input. And I need to pass the display name as input to the service. How to get the Display name of button as input? Kindly help me if there are any possiblities or Alternate solutions are there.
I am using ThingWorx 8.3.2-b535. I have an sql query service that returns 1 row of data (containing about 6 columns). when I execute this service from the thing it takes around 1 second. When this service is called from a mashup it takes around 7 seconds. This mashup executes about 7 other services which are also sql queries and they generally take less than 1 second. What is the proper way to diagnose why this is occurring?
How do I use the LoadBinary Service of FileRepository TT to convert a pdf file in my SystemRepository to array/stream of bytes and assign it to a blob type property of a separate Thing. Currently, If I'm running the LoadBinary service with the file path as input in the Composer for the SystemRepository Thing, nothing is returned by the service.
Hi Experts, We all are well aware of the usual steps to migrate Entities from one server to another. I wanted to know if anyone has come across some automated way of doing Thingworx application migration instead of manual export and import. Objective is to achieve migration with minimal manual efforts. Thanks!
Hello, I am trying to call my service 'ResetSheetCount' on each hour throughout the day. (7,8,9,10,11,12, .etc). I am wondering what is the best route to go with this. To use a timer that calls my service every second (use JS to determine whether the time is correct to reset sheet count) or create 8 or 9 schedulers that will execute the service at the correct times. Any other suggestions would be great. Thanks
Hello , I have configured Thingworx 8.1 on server . but when i hit URL apavhe tomcat automatically down. below is my platform-setting.jason file Also find Tomcat java setting -Dserver -Dd64 -XX:+UseG1GC -Dfile.encoding=UTF-8 -Djava.library.path=C:\Tomcat 8.5\webapps\webapps\Thingworx\WEBINF\extensions Add above in Tomcat JAVA configure but tomcat is going down attached log files . Installing on Windows server. Please help in this case.
Hi , I have Datatable with some records. I want to get the specific rows or field values by using Timestamp, and later I have to send the result through the mail. how we can get it? can someone has done it? I am expecting pseudo code in javascript using datatable. Thank you
Hi We have a use-case where we collect positions in x,y,z from an in-house positioning system. We want to show it in a plot-diagram. I can plot X & Y, but there is no widget for X, Y, Z. Do you know how to proceed, any workaround or plans to have a X, Y, Z plot-widget? Also want to do a heat-diagram using the same data. On pot.ly (https://plot.ly/javascript/3d-charts/) I can find a lot of nice charts to use, can I use these in ThingWorx Mashup? Thanks
How to change mashup style in Thingworx 8.5? I have kept background image for master and called in mashup using transparent style,but couldn't able to get the background image.
Hi, We wanted to log each and every action performed by a user in a runtime mashup in a log table that we have. For eg: If there is a button named 'Add' and if the user clicks that, a entry with 'the user clicked the button Add' should be logged in our table. If the user navigates to another screen from one screen using navigation button, that should be logged that he navigated from so and so screen to that screen. How can we make it generalised so that we can use the same snippet or service for all the mashups? Please help us achieve this use case. Thanks in advance, Shalini V.
Hi everyone! I have created a value stream to do test but I wanna clear the values storaged. How I to clear the data storaged on the my value stream? Regards.
Hi, I am facing issues doing the "manual test" with my Analysis Model. For some some models (Screenshot(154).png) I am not allowed to fill in values (Screenshot(155).png). For some other models I can fill in values but then the Analysis Job produces a failure (Screenshot(152).png and Screenshot(153).png). Screenshot(156).png shows the Application Log right after the failure. Previously I experienced issues with the Predictor and publishing Models. I followed the steps of this tutorial: https://www.youtube.com/watch?v=YnZSjDmmIac&feature=youtu.be
Configuring the Thingworx azure IoT hub connector requires creating a blob storage, should this storage account be Hot or Cold Storage?
Thingworx 8.5 Trial.Thingworx Analytics 8.5.Thingworx Flow 8.5. I am getting the following error (Invalid Connection) when I attempt to create a connection to Thingworx from Flow. Also getting Error 404 when attempting to add a Workflow from within a Thing. Have logged a case with support - but is it because I am using a trial?
Hi, We are trying to call a post method oData API with different set of params. I have attached a picture which has parameters and error thrown by API. Please assist, how to pass collection(edm.string) to oData API.
Hello, has anyone here manage to create a web application / E-commerce website using thingworx? Am pretty new to thingworx and I know thingworx is use for as a platform for IoT development. But is it weird if I use thingworx to build a E-commerce or a web application without involving the IoT aspects? Also if it's possible, how should I categorise "Things, Things Template, Things Shape" as?
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.