Recently active
I have two thing templates "Plant Thing Template" & "Department Thing Template". While creation of "Department Thing Template", I have inherited the "Plant Thing Template" as base thing template, to inherit & store certain properties. Now, I want to get the list of implemented things from "Plant Thing Template" separately and "Department Thing Template" separately. The issue is "GetImplementingThings" of "Plant Thing Template" is returning things implemented by both "Plant Thing Template" & "Department Thing Template" Can someone please suggest a solution
Isn't the UpdateQuery service supposed to update the infotable passed to it in the "t" parameter? In this support document, InfoTableFunctions the service description states that the UpdateQuery service will "Update rows that match a query with a provided set of values." However, when I use it (see the example below), the result infotable contains the updated records, but those updates are not saved to the infotable passed to it in the "t" parameter. Am I missing a step? For example: In the code below, the result infotable contains the correct records filtered from the FrameComponents by the query and they are updated properly with the values infotable. However, the cooresponding records in the FrameComponents infotable are not updated. What do I need to do to update the FrameComponents infotable? var query = {"filters": {"type": "EQ","fieldName": "gath_cart_no","value": row.gath_cart_no}}; var params = {t: FrameComponents /* INFOTA
We are currently using the .NET SDK for thingworx. out of a security perspective we are interested in which security-terms are part of the default SDK-Connection. -Are there Certificates (Which Type/Class) -Is there an internal VPN tunnel used .. Where can we get such information? At the moment we're asking the question if there is any security point we have to implement or wrap around the connection for our securitystandards, or if the Thingworx connections are safe enough.
Hello Community, I`m currently using OPC Aggregator on my PC to collect OPC UA data from a server running in a Raspberry Pi. I was wondering if there was an option to run a version of OPC Aggregator on the Raspberry Pi or Linux so I don`t need to use my PC as intermediary. Cheers
I made a ThingShape "Searchable.TS" which let me get all of my searchable things in a collection widget. Now I want to show a little indicator wether the Thing is connected or not. So is there an option for me to write a Service in "Searchable.TS" which gets the Connected property of the belonging thing? Something like: -> Me.GetProperty("Connected")...
I want to display the selected value from the drop down list on the LED display. I have used the selected item from a List widget, bind the Selected Row(s) from the Service used to populate the List. But still data is not loading in the LED display. How can I get the data to display.
Hello, I have 2 buttons in my mashup, "START" and "STOP" buttons. With these buttons I would like start and stop the data entry from Industrial Connectivity. Is it possible? If not, How can I program a simulate data in my thing "Temperature"? And with these buttons start and stop this simulation? I am trying with one button and display bind through GetPropertyValues and the click event is working but I don´t know if I have to program a service, event, subscription... Thank you in advance BR, Luis
Hi , How can we add multiple recipients(mail Ids) in send message service of thingworx mail Extension?I would like to add 3 recipients in CC and 2 recipients in to.Please let me know, how a mail notification will be sent to many people at once.
In the summer heat, keep your operators cool with Operator Advisor. Sit by the pool and relax to the tunes of Episode 05 of “ThingWorx on Air.” High five! We’re back with Episode 05 of “ThingWorx on Air,” our developer-focused IoT podcast. In today’s episode Jordan Chaisson, a super talented product manager, joins me to share even more about Operator Advisor (OA). You may remember that we introduced OA in our very first episode of “ThingWorx on Air”. Today, we dive deeper into its business value and reveal what’s on its roadmap. Plus, hear the coolest use case she’s seen yet with Operator Advisor! OA is an accelerator application built on the ThingWorx platform that enables manufacturing operators through digital work instructions and a comprehensive user experience to receive the right data at the right time to minimize scrap and maximize efficiency. Looking for more? Check out the Operator Advisor Guide or discover where to download Operator Advis
I need to get the timestamp of tags updated in kepware to Thingworx. Using GetPropertyTime() we can only get the property update time in Thingworx rather than the timestamp of Kepware. Is there any way to get values directly instead of running GetPropertyTime()?
I have created a time series chart. The data is created using a python script that I have wrote and is taken via GET method. I am able to create the graph initially but I am unable to update the graph using the 'updateChart' service. I am getting the new data every second and would like to update my graph. What do I have to do to be able to update my time series chart?
Hi all, I am using the widget OpenStreetMap and always when I refresh my screen, the map's zoom show as: I would like the view the map with less zoom, for example like the image below: How do I do this? Regards, Leonardo
Hi, I have a problem with configuration of Advanced Grid columns via JSON. My goal is to create one editable column, no problem with that.And I also need to capture the values of the selected row.The problem is that when the Editable property is set to true, then row selection does not work. When the Editable property is set to false, then the row selection works very well. My TWX Version: ThingWorx 8.4.0-b2013 Configuration for single selection row: "rows": { "selection": "single", "defaultSelectedRows": "", "minHeight": "20px", "autoScroll": false } Configuration for edition:1. Activation of table edition mode "cellEditingEnabled": true, 2. Definition of cell to be editable { "targets": 0, "fieldName": "priority", "title": " ", "width": "23px", "autoWidth": false, "overflow": "wrapped", "headerTextAlignment": "center", "textAlignment": "center", "hidden": false, "inLayout": true, "columnFormatter": { "type": "integer", "format": "0", "cellEditor": { "enabled": true }
I have a menubar in my header flexcontainer and set all alignmentsettings to "right". But the result is shown on the left end. Could you provide me some help? This is in editor And this is the result
I made a pop-up window which displays an infotable in Mashup. How to return value of the selected field for processing by service, after closing of a pop-up window?
Hi, I am facing an issue in session parameter , as am getting it empty. I need to pass my mashup name as parameter to another mashup. I am getting seeion as emty as shown below and when i looked into Subsytem--> usermanagementsubsytem--> it is not running. see the below screenshot. Please help me to solve this issue? Reply as soon as possible, Thanks in advance, Sheetal
Hi , For a customized widget, sometimes the callback function updateProperty is triggered as my expected, but sometimes not. I found the following situations that updateProperty will NOT be triggered : afterRender is empty Div doesn't has nested div/span inside it . for example, <div class="widget-content widget-helloWorld"><div class="DisplayText"></div></div> works, but <div class="widget-content widget-helloWorld DisplayText"></div> doesn't work call this.setProperty function in afterRender won't be helpful in the above cases I'm really confused about the behavior of triggering updateProperty , could someone give me a detailed description for updateProperty ? =============afterRender==================== this.afterRender = function () { //this.setProperty("BarTitle", 'test'); valueElem = this.jqElement.find(".DisplayText");  
Hello, I have a stream that I am attempting to add entries to by calling the .AddStreamEntries() method. I have tried passing two different infotables - one whose datashape is identical to the datashape on the stream which I'm trying to edit, and one which is defined by a new datashape, where I added the fields for 'location', 'tags', etc (to match more exactly with all stream fields). Both methods throw a null pointer exception. I know that the infotable I'm passing it is not empty - already checked that. Any ideas? Things["MY_STREAM"].AddStreamEntries({values: MY_INFO_TABLE /* INFOTABLE */});
Everyone knows how I can generate an device-id respectively licenceRequestFile if thingworxs is not starting because the licence is not valid any more? We renewed our licence and would like to activate thingworxs via offline-mode because we have a strict company proxy which we cannot deactivate and ptc don't think about implementing an proxy setting for communicating with the licence-server. Anyone has an idea?
Hello guys, I'm facing a strange problem. There is a thing with some properties that have Alerts configured. If I set manually some of these properties to "TRUE" the event of Alert works and the History populate normally. On the other hand when a service manage automatically the Alerts, the properties change, the Alerts be active, but the history doesn't populate the infotable. Could you help me, please? Thanks. Christyam
Hi. When I try to start the thingworxs plattform it shuts down before even starting with the error:"Unable to retrieve license from FNO server because Connect to fnoauth.ptc.com:443 [fnoauth.ptc.com/52.2.0.42, fnoauth.ptc.com/3.216.245.130] failed: Connection timed out: connect - Shutting down the Platform." I'm sure this is because I'm behind a strict corporate-proxy. How can I set up thingworxs to use this proxy to connect to the license-server?I know there is the possibility to generate a licence-file manually, but I would prefer setting up the proxy.
Hi everyone, I started the work with maps e I am having difficult with it. I wanna do the following: Create a marker on the map to show some expecific localization; When click on the marker open other mashup or some pop up with the information that localization The map that I am using are this: (openStreetMap)
I exported my project to the ThingworxStorage folder, which happened successfully. I want to import the entire thing back to my instance under a different project name, without losing the existing data and entities. Is it possible to do so? If yes, how? Thanks in advance!
At the moment we are designing our datamodel with thingworx. We encountered an problem when we are trying to design our modular machine. Basicly we are having a thing consisting of "part-things" and we cannot design this at the moment. For example we have a machine(thing) which can contain different modules. How would be best partice for a modular datamodel? Example: 1. We have a Truck 2. We have a Sand-Transportation-Trailer 3. We have a Silo-Trailer 4. We have a Sleepingcabin 5. We have a Light-Package Plus 6. We have a Light-Package Minimal So now there can be any combination of this like e.g. A) A truck with Silo-Trailer and Sleepingcabin B) A truck with Silo-Trailer and Light-Package Plus C) A truck with Sand-Transportation-Trailer and Sleepingcabin and Light-Package Plus A logisticmanager now wants to see all of his trucks with the filling-percentage of the trailers. So the percentage could either be taken from a Silo-Trailer or
I am trying to import entities and data tables from one instance to another instance. I have exported into thingworxStorage.Its giving me below issue. I am using default persistence provider. kindly help. Unable To Create Resource Instance From Class: com.ptc.analysis.api.ProviderManagementServices2019-06-24 11:51:36.017+0000 [L: ERROR] [O: c.t.c.ImportProcessor] [I: ] [U: Administrator] [S: ] [T: Thread-27] *** Unable to create resource instance in Resource: [TW.AnalysisServices.ProviderManagementServicesAPI] ***2019-06-24 11:51:36.033+0000 [L: ERROR] [O: c.t.c.ImportProcessor] [I: ] [U: Administrator] [S: ] [T: Thread-27] Unable to process import: com.ptc.analysis.api.ProviderManagementServices2019-06-24 11:51:36.033+0000 [L: ERROR] [O: c.t.c.ImportAll] [I: ] [U: Administrator] [S: ] [T: Thread-27] Import Entities error: java.lang.Exception: Import Failed: com.ptc.analysis.api.ProviderManagementServices
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.