Recently active
Hi Team, How to display and play mp3 file in ThingWorx 9.2 on mashup? Thanks in advance.
i am getting property value but the anomalous state is not displayed can someone suggest what could be wrong ?
Hi, Is this layer of HA configuration using TW Connection server possible for TW Foundation 8.5 and TW Platform 8.5 and above version in windows? Thanks, SV
Hi Team, Could somebody help me with the snippet alongwith example that how to write ForEach loop of JS in ThingWorx. Suppose my array is var fruits = ["apple", "orange", "cherry"]; , then how to print each element (or access each element) of this array. Thanks in advance.
Is your team operating an effective DevOps pipeline? DevOps is an important part of a mature, enterprise ready application, but the process isn’t simple. This expert session will focus on how a full DevOps pipeline looks like and how PTC can help to build a seamless pipeline. Join us for our upcoming Expert Session to learn how to create a Docker image, integrate Azure with Docker and Git, and set up a seamless DevOps pipeline. When? Thursday, September 30th 2021 | 11 AM EST Host: Tori FIrewind, Senior Engineer in PTC IOT Enterprise Deployment Center Registration link: https://www.ptc.com/en/resources/iiot/webcast/devops-pipeline-thingworx
Hi, I have this Mashup (Always showed on the screen) the widget containedMashup (Green square) is the only one that changes: I know how to change the contained mashup by binding the Menu (String Mashup property) to the Name of the contained Mashup as follows: BUT, now I want to change the contained mashup when I click a Button inside the Contained Mashup. Is like one mashup goes after another one withotu click on the menu, just click a Button inside the Mashup. I tried to use Navigation function by Target Window Type = Replace but it Replace ALL the window on my navigator. with the menu, the top part, etc, etc. Another option I tried was to create a Mashup parameter on the Mashup which I have to click the button and try to send the target MashupName to the ContainedMashup property: I Add the Mashup where I have the parameter created and using the service GetParameter I can get the parameter created on the mashup where I have the contained Mashup (red): But the
anomalous state is not showing my anomaly dashboard ,what could be the possible error
Hi Developers, I'd like to set sortable grid, so I checked "EnableSorting" but it doesn't work.Could you tell me on how to configure the grid.
I am new to thingworx so can someone please brief about ,how to go about displaying the analytics manger results in a dashboard ? or how a dashboard can be connected to the results from analytics manager ?
Is there a way to create organization branches via scripting? I know I can create top level organization via following snippet: var params = { topOUName: "customer"/* STRING */, name: "customer"/* STRING */, description: undefined /* STRING */, topOUDescription: undefined /* STRING */, tags: undefined /* TAGS */}; // no returnResources["EntityServices"].CreateOrganization(params); But is there a way to create branches also via script? See attached picture (branch1 & branch2).
Hello. I want to display the data in Gantt chart. I refer this post and I successfully import extension but the Gantt chart widget is not visible in widget section. I'm using Thingworx 9.2 version . please check the below attachment and let me know ; What is the solution for this? OR Is there inbuild Gantt chart extension available which supports and works properly in Thingworx 9.2 then please let me know Thanks in Advance
Hi, I have written a service with output data shape MenuEntry. The output of this service is linked to a menu widget. The menu data and the icons are loading, but the submenus are not loading. I refered the service writing method from the following link:https://support.ptc.com/help/thingworx/platform/r9/en/#page/ThingWorx/Help/Mashup_Builder/Widgets/MenuBarDefiningtheMenuBarItemsUsinganInfotable.html Also, sharing my code for reference. var result = Resources["InfoTableFunctions"].CreateInfoTableFromDataShape({infoTableName: "InfoTable",dataShapeName: "MenuEntry"}); result.AddRow({menuId: 'topMenu',linkType: 'Menu',}); result.AddRow({linkDestination: 'Main_Utility_Dashboard',isDefault: true,parentMenuId: 'topMenu',imageURL: 'Home_style_twaek_icon',linkTarget: 'Self', // (Popup, Mashup, New)description: '',menuId: '1',linkType: 'Mashup',title: 'Monitor'}); result.AddRow({isDefault: false,parentMenuId: 'topMenu',imageURL: 'dashboard_style_twaek_icon',link
Hello I am testing the "Connect Raspberry Pi to ThingWorx Guide" and have problems with step 5 (Launch the EMS). I get the error message below when connecting from Raspberry PI to ThingWorx 9.1.2. I am using EMS version 5.4.10.1509, what is the problem here? [INFO ] 2021-10-07 12:02:53,485 ./wsems: Starting the connection. 192.168.108.6:8080-->[ERROR] 2021-10-07 14:02:53,981 SDK: TW_NEW_SSL_CLIENT: SSL handshake error. Error: error:1408F10B:SSL routines:ssl3_get_record:wrong version number.[ERROR] 2021-10-07 14:02:53,981 SDK: twWs_Connect: Error restarting socket. Error 0[ERROR] 2021-10-07 14:02:58,991 SDK: TW_NEW_SSL_CLIENT: SSL handshake error. Error: error:1408F10B:SSL routines:ssl3_get_record:wrong version number.[ERROR] 2021-10-07 14:02:58,991 SDK: twWs_Connect: Error restarting socket. Error 0[ERROR] 2021-10-07 14:03:03,999 SDK: TW_NEW_SSL_CLIENT: SSL handshake error. Error: error:1408F10B:SSL routines:ssl3_get_record:wrong version number.[ERROR] 2021-10-07 14:03
Hi, Can we have entity name as suffix for naming the entities in thingworx? As per the best practices in Help document, it says companyname and component name. But can we have entity name as suffix? Is that the best practices? Thanks, SV.
Hi, Team!I looking for a way to send a boolean variable to my microcontroller. I try to linked the Property Thing LED1 to Toogle Button, but isn´t work.How I can link the Toogle Button with Toogle Button? Regards.Telles.
Hi, Team! How I can change the size dimensions on Toogle Button?I change any properties and doesn´t works. Regards.Telles.
Hi,Installed KepServerEX 6.10 and it gets closed automatically when Opened@paic @slangley @c_lowy Thanks,Shashi
What is the limit of values we can show in dropdown of list widget?
I want to get the hostname of the client server using thingworx
Super simple widget that embeds the HTML5 audio tag, allowing MP3 files to be played and/or triggers by another mashup event.
Hi, Team! I work with these sketch but the TW don´t receive any data. Follow two printscreens.#include "ESP8266WiFi.h"#include<ESP8266HTTPClient.h> const char* ssid = "InfoAxis_NET1";const char* password = "InfoNet1"; char server[] = "xxxx";char appKey[] = "xxxx"; // ThingWorx detailschar thingName[] = "Box";char serviceName[] = "setValue"; //optionalchar property1[]="pressao";char property2[]="temperatura"; #define ACCEPT_TYPE "text/csv" void setup() {Serial.begin(115200);WiFi.begin(ssid, password); while (WiFi.status() != WL_CONNECTED){delay(1000);Serial.print(".");}} void loop() {if(WiFi.status() == WL_CONNECTED){HTTPClient http;String t ="{\"pressao\":\"40\"}";int a=t.length();Serial.println("TELLES");Serial.println(a);String URL = String(server) + "/Thingworx/Things/" + thingName + "/Properties/" + property1 + "?appKey=" + String(appKey);Serial.println(URL);http.begin(URL);http.addHeader("Accept",ACCEPT_TYPE,false,false);int httpcode=http.sendRequest("PUT",t);Ser
Good time! Can you please tell me if it is possible to create a notification from the service using MailServer? Or just a subscription? There is a service that returns statuses and some more data, it is necessary to send a notification by email according to the status data. Or is it necessary to create a separate property and a subscription for it and embed it in the service? thanks!
Hi, Team. How I can fix it?The Thing to attach on Mashupe is offline. Regards.Telles.
Hi, Team. I´m use the ESP12F in my board, to communicate with TX. I´m use the code bellow to update my Things.String fullRequestURL = String(server) + "/Thingworx/Things/" + ThingName + "/Properties/" + Property1 + "?method=PUT&value=" + d + "&appKey=" + String(APPKEY);http.begin(fullRequestURL);//Specify request destinationhttp.addHeader("Accept",ACCEPT_TYPE,false,false);http.addHeader("Content-Type","application/json",false,false);int httpCode = http.sendRequest("PUT", d);The httpCode has answer -1. In reference table, -1 it´s 404 to web server. But the server keeps on line. Also I copy and paste the generated URL, the Property Thing has updated.Regards.Telles.
Is there a work around instead of Kepware, Clients wanna use the Thingworx, but kepware is too costly to be afforded by the client. Is there a Work around open source where we can get data from OPC UA Modbus TCP Protocol and then send to the Thingworx. @paic @slangley @c_lowy Thanks !!
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.