Recently active
I suddenly cannot login in Thingworx for no aparent reason, I have checked de logs and this is what I found: The first one is from a previous attempt, there was a password entered since this was not a first attempt and my first reaction was to make sure i had entered the password and try again. The second one is from the latest attempt. I don't know why the log is different[L: WARN] [O: S.c.t.s.a.AuthenticationUtilities] [I: ] [U: ???] [S: ] [P: ] [T: https-openssl-nio-8443-exec-6] Authentication FAILED for [user = Administrator] using [directory service = ThingWorxDirectoryService] : Cannot Login Using ThingWorx Authentication With an Empty Password[L: ERROR] [O: S.c.t.s.a.AuthenticationFilter] [I: ] [U: ???] [S: ] [P: ] [T: https-openssl-nio-8443-exec-4] Authentication failed: Please make sure the credentials are correct. I have also tried accesing via REST API to check that the system is healthy, which as far as I could see it was, at least the UserManagementSubsyste
I'm really trying. Coming from this: Re: Thingworx installation can't open PID file ubu... - PTC CommunityWhere i get thingworx url? How do i check if Thingworx is working? Why there is no installer for thingworx? Which is the correct manual? I followed like 3 different articlesAny help or any tip will be welcomed. Thanks
I'm trying to create InfoTable in Java, but it's always empty. What do I do wrong? Created "ThingWorx Extension Project" in Eclipse 2022-03 with "ThingWorx Eclipse Plugin 9.0.1" installed, using SDK 9.2.0, Gradle 6.9.1 and Amazon Corretto 11.0.10. public static void main(String[] args) throws Exception { // Create InfoTable DataShapeDefinition ds = new DataShapeDefinition(); ds.addFieldDefinition(new FieldDefinition("field1", BaseTypes.NUMBER)); InfoTable table = new InfoTable(ds); ValueCollection row = new ValueCollection(); row.SetNumberValue("field1", 1); table.addRow(row.clone()); } Also, tried `new InfoTableFunctions().FromJSON(myJsonInfoTable)` and it doesn't work too. // Create InfoTable from JSON JSONObject infoTableJson = new JSONObject("{\"dataShape\":{\"fieldDefinitions\":{\"id\":{\"name\":\"id\",\"description\":\"id\",\"baseType\":\"STRING\"}}},\"rows\":[{\"id\":\"someString\"}]}"); InfoTableFunctions fns = new InfoTableFunctions(
Using Logout Function, generally on Button Clicked Event calling this logout function, but it gives the pop-up to sign-in instead of redirecting to the login page or sometimes error message but logsout the session.Thingworx Version: 9.2Logout function Configuration: Error: @slangley @PaiChung Thanks,Shashi.
Hi Developers, Im working on a mashup as shown below. I have this input container with the start and end month dropdowns and other input widgets. I want to use the same containers across all the tabs. I've tried to use a mashup container to reduce the redundancy of binding the input widgets across the tabs. Im using session variables to pass the information to the Parent mashup. The problem is that the selections made on one screen are not visible on other screens which messes up the selections made in the active tab. How to overcome this? Is there a better approach for this.
Hi, How can we add a image file in a repository to infotable
Dear Developers, I'm trying to add a line feed code into string which will be displayed as a confirmation message.I currently use "\n" as a line feed code as show the below though, it doesnt work. Could you let me know on how to get it work normal ?
Our XML file is not able to load in TWX without chrome extensions(X-frame options header). Same XML file is working fine with chrome extension but it is creating dependency for the end users. We need solution where users can directly see the xml file from the TWX mashup. I am assuming we need to make some update in the TWX xml file for the filter but based on all PTC articles we tried many filter options to bypass/ignore the URL(PTC articles followed: https://www.ptc.com/en/support/article/CS229450, https://support.ptc.com/help/thingworx_hc/thingworx_8_hc/en/index.html#page/ThingWorx/Help/Composer/Security/AllowingEmbeddedMashupsiniFrames.html#) and it did not work for us to solve this issue. I have also attached the screenshot of the output with and without having extensions.
Trying to start the thingworx, but fails to start with the following error: CRITICAL ERROR ON STARTUP: Unable to initialize and start system: null Gone through following articles, but nothing is working.https://www.ptc.com/it/support/article/cs307146, https://www.ptc.com/en/support/article/CS238915@slangley @PaiChung Thanks,Shashi.
Hello,I have one requirement of matching content from pdf file and from SAP system. So, I want to first extract the content in teh pdf and can able to store in variables using thingworx services. if possible plzz how we can achieve that ThanksKSM
Hi, When I click on Upload button of File upload widget in mashp, status message is displaying as No file choosen even after selecting the file.
1. Add an Json parameter Example:{ "rows":[ { "email":"example1@ptc.com" }, { "name":"Qaqa", "email":"example2@ptc.com" } ]}2. Create an Infotable with a DataShape usingCreateInfoTableFromDataShape(params)3. Using a for loop, iterate through each Json object and add it to the Infotable usingInfoTableName.AddRow(YourRowObjectHere)Example:var params = { infoTableName: "InfoTable", dataShapeName : "jsontest"}; var infotabletest = Resources["InfoTableFunctions"].CreateInfoTableFromDataShape(params); for(var i=0; i<json.rows.length; i++) {
How to resolve it?
Trying to check if the Postgres 13.6 is supported by the TWX 8.4.3 ?When connected Postgres 13.6 with TWX 8.4.3, gives errors.. and TWX gets Shutdown@slangley @PaiChung ThanksShashi.
Apologies if this has been discussed before and I missed it. If so, please point me in the right direction. We have three environments (Dev, QA, PROD) that run Thingworx. The "usual" process is followed by doing dev in Dev, test in QA, deploy to PROD. However, the project team has changed and Dev is in an unknown state with its changes. (I think the term I hear the most is "wild west"). My question: Is there a way/tool that can be utilized to do an environment compare of Thingworx to see where and what the differences are? Much like running a diff in many IDE's? Thanks
How to fix this?
Hi Experts, How do I show my models created using Analytics engine on Mashup?
Hi, I'm looking for a way to hide the grid title in TWX 9.3 I'm not able to find any widget property to hide it / VR
Hello everyone, i try to have legend in line, because like a grid takes so much space... Not possible with Theme it seems.. so try with customCss but failed.. Someone can help me ? Thanks in advance
Iam creating users, usergroups, organisation in runtime. But how to attach usergroup to one organisation using API or service ?
I am a Developer, to improve my skill and practice how can I get access to Thingworx server? The Demo and Hosted servers have been removed by PTC.
Dear Sir/Madam,1.I'm new to thingworx. Would like to an extension which will trigger an event when it detects a change in SQL server - table (similar to the SQL trigger). I guess i would like to program the extension using Thingworx .NET SDK.2.I've searched Thingworx documentation w/o much success.3.I've several questions.(a).Is my solution valid? If not, any alternatives?(b).Where can i download the Thingworx .NET SDK s/w & documentation?(c).Is Thingworx .NET SDK supported on Thingworx 9.x?Thanks
where is generateGUID(); service present in thingworx. Will this provide unique id for every service execution ? So we dont need to verift this ID again ?
Hi All, Can anyone please let me know where can I get the free trial version of ThingWorx foundation cloud server? I have been looking for it from past few weeks. Hoping for a response soon ! Yours Sincerely,Srijith Krishnan
Dear community, I have a question about Thingworx SCO Connected User license. According to PTC license agreement, page 19, "This license does not entitle the user to general view access in Windchill nor the ability to install and use ThingWorx Navigate View apps. " That being said, can someone explain me why one the features contained within this license is PTC Navigate View (please see attached image) ? Thank you very much for your help, regards
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.