Recently active
Hi, I am implementing a workaround for a custom toastr extension, Iam using a Mashup as modal popup with animations using custom css to display the toastr. I need to change the panel/Mashup color based on an input like to show green when its a success message and red when its a warning. The Input need to passed from another mashup to the toastr mashup. Toastr mashup contains a panel and label widget., I am using thingworx version 8.5 Can anyone please point out a way to change the panel color using a custom input?
Hi Team, I'd like to export some data in a grid. I have attached the all data from my service to the grid, configured the grid columns so that they are user-friendly (Ex. OwnerEmail to Owner Email) and removed the grid columns, that I do not want to see and download. I bound the Data Export widget to the edited table, but the mashup will not download the edited table. How can I get the export widget to download the edited table? When i bind the data from the service directly, I can export all the data. However, the column titles are not user-friendly and there are columns I do not want to download. The solution given in the topic https://community.ptc.com/t5/ThingWorx-Developers/Data-Export-an-Edited-Table/m-p/503130 is to create a custom service. But If I am using multiple grids in my solution it is not feasible to create service and provide the numerous changes in the column names to it. Is there a way around it?
Hi, Does anybody know how can be "Units" assigned to a property in Manufacturing Apps 8.5.2? I thought that we could do this from the "Configuration and Setup" option, in the "Additional Properties" menu, but there is no option to do it in the screen. Although it is explained in the help center how to do it, it is imposible to do it from this screen. https://support.ptc.com/help/thingworx_apps/r8.5/en/#page/thingworx_apps%2FThingWorxAppsSetupConfig%2Fadditional_properties.html Thanks Olatz.
Hello, is there a way to open a specific web page in a mashup , when clicking on a row in the tree widget? So that I can configure for each Thing in a tree widget (which is defined by a Network of things) a URL which will open up, when clicking on it?
I have a problem when I import “MYSQL Extension Package” on the ThingWorx Platform, it gives me this Error “Error Occurred during the import” also when I press Validate button it gives me the same Error “Error Occurred during the Validation”. I have been tried many versions of Database Extension but I faced the same problem. notice i have tried to find another version but i cannot find anything in the Marketplace.
Hi, How to retained the message in topic when we are in offline. There is any ways to retained messages in ThingWorx using MQTT template. Please explain detailed. Regards, Saranya.S
Hi, i'm still new to thingworx. Is there a way to export the entire project and import it back safely without loosing any of the connections. Thanks in advance.
Hello, We have an application that is polling Things every 500ms using the REST API. On our ThingWorx server, this is causing the the localhost_access_log to grow exponentially, as it's logging all of these calls. Is there a way to turn this logging off or at least limit it?
Hi, Is there any LDAP extension available in marketplace for download? Thanks & Regards, Shalini V.
Hi, We are thinking about migrate to ThingWorx 9.0. Is the ThingWorx 9.0 version stable to be deployed in customer place? Looking forward for your advice. Thanks & Regards, Shalini V.
Hi all, We have configured Thingworx, PingFederate and Azure AD. When we try to login it throwing below error. 2020-07-01 11:04:46.703+0000 [L: ERROR] [O: o.o.x.e.Decrypter] [I: ] [U: ] [S: ] [P: ] [T: https-jsse-nio-443-exec-9] Error decrypting encrypted key 2020-07-01 11:04:46.703+0000 [L: ERROR] [O: o.o.x.e.Decrypter] [I: ] [U: ] [S: ] [P: ] [T: https-jsse-nio-443-exec-9] Failed to decrypt EncryptedKey, valid decryption key could not be resolved 2020-07-01 11:04:46.703+0000 [L: ERROR] [O: o.o.x.e.Decrypter] [I: ] [U: ] [S: ] [P: ] [T: https-jsse-nio-443-exec-9] Failed to decrypt EncryptedData using either EncryptedData KeyInfoCredentialResolver or EncryptedKeyResolver + EncryptedKey KeyInfoCredentialResolver 2020-07-01 11:04:46.703+0000 [L: ERROR] [O: o.o.s.e.Decrypter] [I: ] [U: ] [S: ] [P: ] [T: https-jsse-nio-443-exec-9] SAML Decrypter encountered an error decrypting element content I have tried this link from StackOverflow - https://stackoverflow.com/qu
I am trying to iterate through a JSON and map it to info table (later show the data calculated in a mashup). Based on this article: How to convert JSON to an InfoTable in ThingWorx Thingworx Versions in use are 8.4 and 8.5. var params = { url: "https://<URL to JSON>" /* STRING */, }; // result: JSON var jsonData = Resources["ContentLoaderFunctions"].GetJSON(params); // Function gives back a string-> toJSON only works with Infotable jsonData = jsonData.ToJSON(); // lenght is only possible with actual JSON Object logger.warn(jsonData.items.length); var result = jsonData; // TO DO create Infotable and change result to Info Table /* var dparams = { infoTableName : "InfoTable", dataShapeName : "LiveData" }; // CreateInfoTableFromDataShape(infoTableName:STRING("InfoTable"), dataShapeName:STRING):INFOTABLE(AlertEvent) var result = Resources["InfoTableFunctions"].CreateInfoTableFromDataShape(dparams); */ My major question is wha
Hi all, I try to create services for joining 2, 32 bit int as a high_byte and low_byte. Like join() function in picture below. But seem like in services can't left shift 32 index. I try to use (3 << 32) the result is always 3 not 12,884,901,888. But when I use (3<<2) the result is 12. What is I miss or it have another way to join 2 32 int into 1
How do I reload mashup in runtime on session changed or service invoke completed event? Tried location.reload(); in service.But it's not working.Please provide a way to achieve this.
Hi, I have an EMS running in a docker container. On thingworx side I have a parent device with different child devices (hierachy is build as property relation). All devices are in auto_bind of config.json "auto_bind": [ { "name": "ParentDevice", "gateway": false, "host": "127.0.0.1"}, { "name": "ChildDevice_01", "gateway": false, "host": "192.168.0.1" },{ "name": "ChildDevice_02", "gateway": false, "host": "192.168.0.2" }] On Lua every device has its script-section scripts.ParentDevice = { file = "thing.lua", template = "edgeBoxTemplate", scanRate = 3000, taskRate = 60000, keepAliveRate = 10000 } scripts.ChildDevice_01= { file = "thing.lua", template = "edgeBoxTemplate", scanRate = 3000, taskRate = 2000, keepAliveRate = 10000 } scripts.ChildDevice_02= { file = "thing.lua", template = "edgeBoxTemplate", scanRate = 3000, taskRate = 2000, keepAliveRate = 10000 } scripts.EdgeDevice = { file = "EdgeDevice.lua" } Than I have a lua file in
Hi, we would like to call a Service, which returns a JSON, when you call it with a POST request. Unfortunately, we get the following response when we call the Service via Postman:The URI we use: http://localhost:8080/Thingworx/Things/{ThingName}/Services/Get_All_Sensor_DataThe Response: <!DOCTYPE html> <html> <head> <title>Unexpected Error</title> <script> function clickAndDisable(link) { link.onclick = function(event) { event.preventDefault(); } } </script> </head> <body>
hello everyone Iam having an issue with Dashboard widget responsiveness functionality, it works well when using gadgets without changing width of gadget, but if the size of the gadget is smaller than the default size of the columns selected(rows * columns); it will leave white space in the shrunken space. for example, if i create a 1 * 1 gadget which has a default size of 240 * 240 and change it's size to 200 * 200, the difference in size which is 40 * 40 will be filled with white space. the problem with this is that Thingworx uses fixed size for each row and column(240px per row or column) with out calculating the total width of gadgets in the row; which will reduce the number of gadgets in row if the actual gadget size is smaller than default. I tried changing the width of the div containing the gadget using custom CSS but that didn't solve the issue. is there a way to fix this issue?
Hi, The Oracle database is not included in the <<ThingWorx 8.5 System Requirements>>, Does anyone knows the reason ? My customer only has Oracle DBA and they want all of the applications which based on relational database , use the Oracle database. Regards, Sean
Hello everyone, How do I enable gridlines on the x and y axes? Am I not able to enable this?
Hi everyone, I would like to know if is possible I to monitor the time that some user is on line on my dashboard. Regards
Hi, When trying to view the mashup, I'm getting an error: 404 Page Not Found. I've restarted Tomcat , but I still got the error. The attached Image show the screenshot. Thanks & Regards, Jialing W.
Hello everybody, I am successfully using Creo Product Insight. Now I want to move on to Creo as a Service on that same maschine to automatically analyse my model and send the result back to ThingWorx. I followed this PTC videoguide: https://www.ptc.com/en/support/article/CS285051?&sourcearticle=CS318055%3F&source=ArticleViewerRelated I can start the service sucessfully and when i create a new analyticsmodel and upload the creofile as a ZIP, the service starts Creo but does not open the model. I have the visible option on. I do get 2 messages when I start Creo this way -> see appendix <- but i dont know if they have anything to do with the problem. I am on Creo 6 and Thingworx 8.3.4 I would like your help to fix that problem and is there a way to enable CAAS for a model that i uploaded from Creo when i was using the "normal" Projuct Insight features?
Hello, I am very new to ThingWorx and want to create a parent-child relationship between my Thing Elements. So that I can let them Show e.g. in a widget which shows them in a structure like a Navigation tree on the left side of a mashup. The Thing objects should look like as follows and on "line"-Level I would like to integrate a web Frame to be opened up: Enterprise - Site A - Building A - Line A - Building B - Line B I have read About the "Tree Grid Advanced"-Widget but could not find out how to implement the structure like described above in my Things or Thing templates. I hope I can find some
Hi, I installed the "Platform Analytics" in graphical mode , there was no error raised during the installation. However, the thing PropertyTransformThing was NOT generated after the installation. Then I checked logs file and found two kind of errors: org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'mapDB' defined in class path resource (configuration.log) twpas-property-transform-service:Unexpectedstatus SERVICE_STOP_PENDING in response to STOP control. (install.log) Does anyone knows the reason ? I've also tried install Platform Analytics in a different server , but got the same error . ------------Environment---- Windows Server 2016 Thingworx 8.5.5
At every mashup change from menu I get the log above on the browser logs I read old topics and seems was related to a google map extension, but seems not be the case (I removed also google map extension) The pages are opened correctly, I have no errors on thingworx script or application logs Sometimes the property name is not 'hide' but a property used on the pages, got from a data entity It this something known ? I have thingworx 8.5.3 cloud hosted
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.