Recently active
Hi Developers, Thorugh HTML text area widget i'm trying out the following html code. <!DOCTYPE html><html> <head><title>Axeda Developer Connection Simple Ajax HelloWorld Example</title> </head><body> <h2>Radio Buttons</h2> <form id="mySelect" onchange="myFunction()"><input type="radio" name="gender" value="male" checked> Male<br><input type="radio" name="gender" value="female"> Female<br><input type="radio" name="gender" value="other"> Other </form> <p id="demo"></p> <script>function myFunction() {var x = document.getElementById("mySelect").name;var form = document.getElementById("mySelect");console.log("Hello world!"+form.elements["gender"].value);document.getElementById("demo").innerHTML = "You selected: " + form.elements["gender"].value;}</script> </body></html> It works in w3schools editor as expected like if i make a selection, th
I have the same problem. First I could not install the application because my PC didn´t have java installed, after installing java I was able to install thingworx foundation succesfully, but after that nothing happened. Unlike thingworx industrial connectivity which creates an icon to launch the program, thingworx foundation creates nothing to launch the application. It does install a directory ("thingworxH2Trial-8.4.0-SNAPSHOT) but I can´t find a way to execute the application. Any help would be appreciated. Thanks
Hello, I am working on a project and looking for some advice. I am trying to pass a time stamp value from a row of a Main Event grid widget and use that stored time stamp as the input to a date/time picker widget on another diagnostic tab on the same mashup with an ability to drill down +/- 5 hours to view events from the original time stamp. So a 10 our window from when the event occurred. Example. A customer clicks on an event in the grid table which has a time stamp. From there, they can then select further tabs on the same mashup which also have their own date/time widgets to diagnose events. Once a row is selected on the Main Event Grid Widget, I would like to pass that same time stamp into into the other tabs date/time picker along with updating a start time of - 5 hrs, and the end time of + 5 hrs from the chosen row above. Please let me know how I can accomplish this. Thank you
Hi, I am planning to upgrade from Thingworx 8.4.5 to Thingworx 8.5.1. In Thingworx 8.4.5, used Azure PostgreSQL version 10. Also, configured Thingworx HA in existing version. I need below clarification in upgrading instruction. 1. Do I need to run below commands?. Is there any thing I need to follow because I am using Azure PostgreSQL thingworxPostgresSchemaUpdate8.4-to-8.5.bat thingworxPostgresValueStreamSchemaUpdate.batthingworxPostgresValueStreamDataUpdate.bat 2. Do I need to re import all the extension once again after upgrading? Thank you Regards, Latha
Hi, I need to implement(using thingworx) a dashboard for below scenario , what entities we should have. Web based dashboard application will be developed with the following features 1. Machine ON time.2. Machine OFF time.3. Uptime4. Notification downtime via SMS or Email 5. Cost Analysis 6. Acknowledgement Message Could you help me how we can achieve this considering we have static data for now Thank you
Hi , I have a remote thing bound with Java SDK and the SDK calls the method updateSubscribedEvents to communicate with the remote thing. The communication works well for about 2 months , but yesterday calling updateSubscribedEvents got errror "Timed out APIRequestMessage" logged , meanwhile, the remote thing become disconnected . I tried the following code to wait and update , but pending event keep persistent as long as the timedout error occurs. while (this.getPendingEvents().size() > 0) { Thread.sleep(5000); this.updateSubscribedEvents(2000); } The thingworx server doesn't has high CPU/Memory/Disk usage when the error occurs. I've also increase the thread number in the WSCommunication subsystem, but it doesn't help. ====================Trace log===================== 2019-12-25 15:32:38.512+0800 [L: DEBUG] [O: c.t.c.c.e.m.ConnectivityMonitorTask] [T: main] Initializing CommunicationEndp
How to Implement Caching in Thingworx. Any reference/pointers/samples will help. Thanks
Hi i am trying to connect thingworx to a public mqtt broker. I have install the thingworx mqtt extension and have use the mqtt template to create a mqtt thing. However, in configuration when i input test.mosquitto.org or even 5.196.95.208. it still will not connect. I have tried this both on my school's thingworx and the free trial webhosted thingworx but the result is the same Please help.
Hi, I am having a problem with Analytic Server. I have published a model and the prediction is done when a property changes the value. Is has being working properly, I tested it manually and I can see the jobs in "Analysis Jobs" but after some time it stopped working. I change the value of the property but nothing happens. I search from a error log on the analytics server but the last message on edge.log is this (no errors): " 2020-01-13 09:04:40 [ClientProcessor-3] DEBUG c.t.a.e.s.p.PredictionMicroserver - Starting BatchScore for goalField : temperature modelUri : results:/models/c3d64030-67eb-471a-9a6a-d591cf5297912020-01-13 09:04:40 [ClientProcessor-3] DEBUG c.t.a.e.s.p.PredictionMicroserver - Ending BatchScore for goalField : temperature modelUri : results:/models/c3d64030-67eb-471a-9a6a-d591cf5297912020-01-13 09:22:03 [ClientProcessor-3] DEBUG c.t.a.e.s.p.PredictionMicroserver - Starting BatchScore for goalField : temperature modelUri : results:/models/c3d64030-67eb-471a-9a
Hi I want to change string size to 'Limit to 30 characters' but I can't choice it. Do you know how to change it? Thanks.
Can anybody explain me the difference between streams and value streams clearly ?
Hi, Is it possible to bind service of multiple grids to a single export widget in a single mashup? Thanks, Shalini V.
Hi, I wanted to export the data that I have binded to grid. But, I am filtering the grid data by passing input. Based on the input, the grid data will be filtered. So, If I filter by order number only those filtered data needs to be exported. How can I achieve this? I am mentioning the service that I am binding to grid. switch(String(input)){ case "All": var params = {From: From /* DATETIME */,To: To /* DATETIME */}; // result: INFOTABLE dataShape: "Navistar_RejectedOrder_DS"sampleResult = me.Get_RejectedOrderAll(params); break;//case "Part Number": var params = {From: From /* DATETIME */,To: To /* DATETIME */,partNumber: partNumber /* STRING */}; // result: INFOTABLE dataShape: "Navistar_RejectedOrder_DS"sampleResult = me.Get_RejectedOrder_partNumber(params); break;//case "Job Number": var params = {From: From /* DATETIME */,To: To /* DATETIME */,jobNum: jobNumber /* STRING */}; // result: INFOTABLE dataShape: "Navistar_RejectedOrder_DS"sampleResult = me.Get_RejectedOrder_
Hi All, I am using PDF extension for my project on thingworx 8.3, but I cannot create pdf.It is possible to use the pdf extension on thingworx 8.3 and have anyone tested it successfully? Thanks and Regards, Duong.
Hi everyone, we built in our environment a CICD pipeline to deploy our Thingworx applications automatically.After importing all entities and extensions to a new thingworx deployment we would like to import the data of datatables too. We tried to import the data via http request like the Composer do. var ImportTask = Resources["ContentLoaderFunctions"].PostText({ headers: { "appKey" : ApplicationKeys["MYKEY"].GetKeyID(), 'X-XSRF-TOKEN': 'TWX-XSRF-TOKEN-VALUE', 'Accept':'application/json', 'Content-Type':'application/json' }, url: Hostname + "/Thingworx/DataImporter?repositoryName=" + me.Repository + "&path=/MyRepositoryPath/" + exportDataDirName +"&IgnoreBadValueStreamData=false&WithSubsystems=false&purpose=import&usedefaultdataprovider=false&_="+Math.random(), ignoreSSLErrors: true }); logger.debug(me.name + ".ImportData: Import data triggered " + ImportTask); After execution the in
Hello. How can I add custom js library when thingworx start or runtime? I just know 1 way that modifying thingworx common js like 'mashup-runtime.js' directly. Is there any solution except it?
Is it possible to have multiple markers at the same location? I noticed that I can only see one marker when they have the same geocode. I need to be able to see all markers that are located at the same location. They don't split up even if I zoom in. I can only view one of the tool tip mashups since the other markers are hidden behind the first one.
Hi there, We kind a have a problem here. We successfully upgraded to Thingworx 8.4. We have found that QueryThing extension (queryExecute mashups to be more precise) no longer works as expected. Buttons are gone and we cannot export displayed data to excel nor as csv. We are using that extension and we have to make it work again. I have noticed that this extension is no longer present on the marketplace. I have narrowed it down to HTML text area. The whole output that needs to be displayed is generated via service getQueryResultAsHtml which returns HTML code. That code goes to HTML text area marked as readonly. On previous versions of ThingWorx (namely 7.3.8) that widget (HTML area) had not perform any safety measures (I guess) and appended the whole content to DOM. It was not very safe, but very convenient and powerful. These days are gone. I tried simple <script>alert()</script>. No longer works. I would be able to circumvent this issue with Express
Hi I am using Thingworx 8.4 and Thingworx Flow 8.4 I want to send SMS with Thingworx Flow when there is an event. How can I make it? If you have any idea, please let me know. Thanks
Do we able export our subscriptions and services code to file ?
While configuring state definition,I have to enter values manually.But how do I give values using a service to state definition?
There's a ThingWorx Time Series Chart, I want to change the Y scale manually after auto-scale Y axis. Is it possible?
Hi, Is there any feasibility or method to find out the sources for the particular property update? Ex. I am having thing called "Thing1" with "Property1" (NUMBER). For "Property1" get value form "Service1" and "Service2". How i can find out these two services updating value for Property1? Regards, Sathishkumar C.
While adding a http thing property in another thing, in the binding the http thing is not visible, soo, how can i use that property here; Please help me out. Thank you.
Hi there,Follow the PTC University course Fundamentals of IoT Development with Whingworx M7.7 Getting Starged with REST. I created another request in POSTMAN which would PUT single value to the Thinwgorx Thing flawlessly. As I tried to use the Collection Run to PUT a series of values. I got 403 error. The only thing I changed is the Request Body, but I see no difference in the log.Both are {"mailbox": "some-string"} I tried solution the in REST API test of simple service returns HTTP 403. go to System / Subsystems / PlatformSubsystem / Configuration. Check "Allow Request Method Switch" and uncheck "Filter Content-Type" And it lead me to error 400. Meantime, Disable Metrics Reporting by deselecting the Metrics Reporting Enabled checkbox like the Calling service API from Postman - 403 mentioned.So, how to make POSTMAN Collection Run works with Thingworx flawlessly?Any response would be appreciated.
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.