Recently active
I am trying to push my entities to gitlab repository using the push function available in gitbackup extension 4.1.0 in thingworx 8.5.8. The exact error message is org.eclipse.jgit.api.errors.TransportException: <repository> redirection blocked
Any properties available to customise/styling confirmation dialogue box?
Hello, I am newbie to Thingworx and C SDK. I would like to know how to debug the C SDK code using gdb. I use SteamSensor C SDK as a hands-on exercise. This SteamSensor use C SDK and it connect to Things from Thingworx and register property and services. I compile the main.c by using "make" command. Then inside the folder "linux/bin/gcc-linux-x86-64/debug/" there is a binary file called "SteamSensor". When I command "gdb SteamSensor", it can debug the C SDK but the problem is that while I am debugging the main.c C SDK code, the thingworx is not connected so I cannot debug the thingworx part. May I know how can I debug the C SDK code using gdb in order to debug both C SDK and Thingworx? Thank you.
To upgrade, Thingworx 9.2/9.1/9.0 is best? and why? Does Twx 9.2 have any legacy widgets or entities?
Pleas tell me concretely the processing for text data that TW Analytics can do.
I have data's in a grid as a string type, want to do translate those dynamic data's, but have no idea to do this, Kindly assist me to do this if any options.
I am reading multiple csv files one by one. If one csv file not exists error occurred, the code stopped. Instead i want to move on to reading next csv file. So i tried try catch inside for loop only for ReadCSVFile method, but that doesn't worked. What to do.
Is it possible to set Calendar (select date) to start weeks with Mondays instead of Sundays? Meaning the Sunday column below would shift to the far right.
Hi, I am on TWX 9.1 and using Line Chart. We have multiple datasources to it. There can be values in datafield for datasources. In service, if there is no data to show, we are setting datafield value to be NA. Because if we don't set datafield value then then chart doesn't get displayed. Could you please tell if there is any way to hide the legend which have datafield value as "NA" Thanks Anirudha
Hola everyone, I was wondering weither there's a way to find out how long does it take to run a script inside a subscription ? Thanks in advance
I have 100 rows in CSV File. I want to replace only one row. This snippet: Resources["CSVParserFunctions"].WriteCSVFile(params2); is not accepting one row as an input. Iam getting an error "JavaException: java.lang.Exception: Unable To Convert From com.thingworx.types.collections.ValueCollection to INFOTABLE ". 1. How to update only one row of csv file? 2. Shall i pass arrays tothe input data? var params2 = {path: filePath2 /* STRING */,data: rowCSV /* INFOTABLE */,fileRepository: "SystemRepository" /* THINGNAME */,withHeader: true /* BOOLEAN */};Resources["CSVParserFunctions"].WriteCSVFile(params2);
Im not able to install Thingworx9 on window 8.1.Seems to have Installation error.Can you please suggest few ways to overcome that.
I have a value stream that logs historical change of several properties, and i want to get the historical values of a specific property? any idea? Thanks, Youssef
Hi Guys, Are there any groups where I can find small tasks to solve in thingworx? Thanks and Regards,
Has anyone else had a sudden problem where they are unable to use Advanced Grids because the FooterData property is acting up? We've been using these Grids for a few months now. Not only has there never been a problem, I've never had a to-do list item for a lack of FooterData. I did a quick search and found that I should just need to uncheck the box for the EnableFooter property. Unfortunately, I can't even find that. Does anyone have any suggestions?
I am not able to connect to thingworx server. And i seen these errors in application log of TWX and tomcat logs as well. 2021-08-24 15:40:30.229+0530 [L: ERROR] [O: c.t.s.ThingWorxServer] [I: ] [U: SuperUser] [S: ] [T: main] [message: Connections could not be acquired from the underlying database!]2021-08-24 15:40:30.255+0530 [L: ERROR] [O: c.t.s.ThingWorxBootstrapper] [I: ] [U: SuperUser] [S: ] [T: main] [message: Unable to initialize and start system: Connections could not be acquired from the underlying database!]2021-08-24 15:40:30.255+0530 [L: ERROR] [O: c.t.s.ThingWorxBootstrapper] [I: ] [U: SuperUser] [S: ] [T: main] *** CRITICAL ERROR ON STARTUP: Unable to initialize and start system: Connections could not be acquired from the underlying database!2021-08-24 15:40:30.255+0530 [L: ERROR] [O: c.t.s.ThingWorxBootstrapper] [I: ] [U: SuperUser] [S: ] [T: main] *** Web Application STATE is being set to ERROR! *** 2021-08-24 15:40:30.195+0530 [L: WARN] [O: c.m.v.r.BasicRes
My thingworx instance was working fine. Suddenly now it shows "Errors 503 Service Unavailable Back to Composer". What to do now?
Why this code is not removing all the rows in infotable? If i have 100 rows, it is removing only 50 rows. code: for(var a=0;a<updaterows.rows.length;a++){var newEntry1 = updaterows; newEntry1.RemoveRow(a); updaterows=newEntry1;}Anyone knows the code to remove/delete all the rows in infotable?
[L: ERROR] [O: c.t.c.u.HttpUtilities] [I: ] [U: Administrator] [S: ] [T: TWEventProcessor-9] Error constructing headers JSONObject I get above error.Is it due to extension or any other issue.
Hi, can someone help me with Custom Thingworx App. I would like to develop a search Parts from Windchill in Thingworx Navigate App in a Table. is there a allready made function or do i have to develop this myself? Any Tipps? BR VC
I am trying to receive a binary or BLOB as a REST server. Is it possible to receive the request's body and parse the payload? I understand using a property name it would be possible but would it be possible to get a handle of the incoming request body directly?
Hi All, I want to know how to configure Thingworx to access a remote database over SSH? I found that the previous version of Thingworx had an SSH extension, but it seems that the 9.1 version of Thingworx does not support this extension. Can anyone provide me with some documents or related information? My Thingworx Version: ThingWorx-Foundation-Installer-postgresql-Windows-9-1-0
Why both of these codes are not updating the entries in datatable. it is not showing error as well. Someone please tell me how to approach this code. 1. var params5 = {infoTableName : "InfoTable",dataShapeName : "MACMON_ProductionPlanDT_DS"}; // CreateInfoTableFromDataShape(infoTableName:STRING("InfoTable"), dataShapeName:STRING):INFOTABLE(MACMON_ProductionPlanDT_DS)var updateDT = Resources["InfoTableFunctions"].CreateInfoTableFromDataShape(params5);updateDT.ToolHistoryID=rowDT.ToolHistoryID;updateDT.MachineName=MachineName;updateDT.PlannedTimeStart=rowDT.PlannedTimeStart;updateDT.PlannedTimeEnd=rowDT.PlannedTimeEnd;updateDT.QualityScore=resultDT.rows[i].QualityScore;updateDT.QualityScoreUpdatedBy=QualityUpdatedBy; Things[productionPlannerDT].UpdateDataTableEntries({sourceType: undefined /* STRING */,values: updateDT /* INFOTABLE */,location: undefined /* LOCATION */,source: undefined /* STRING */,tags: undefined /* TAGS */}); ------- 2. var params5 = {infoTableName : "InfoTable",dataS
I have rows in infotable A. i have to store infotable B=A. Then i have to delete all rows in infotable A. This have to do in a loop. How to do this?
Trying to make something with these example files like https://community.ptc.com/t5/Vuforia-Studio/How-to-extract-the-components-with-properties-from-a-pvz-file/td-p/589089 My goal is to get folder structure showing for file that i am showing in my web page. like in attachment. I have this Angular example, but don't want use Angular with this project. So just vanilla JS and HTML. Does anyone have solution for this? There are no working examples for this. Or any that i can find 😞
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.