Recently active
i have one user in thingworx user list name as "superadmin". Now i want to give permissions to "Superadmin" user to create a another user. Suggest me what permissons i have give this "Superadmin" user
Hi, I'm looking for a way to validate a property name before it gets created. Basically, the name of the property is chosen at Runtime by a user, so I'll need to double-check if the Name entered for the property is valid. Is there a service I can use to verify a specified Name for service AddPropertyDefinition? Thanks!
I'm trying to create an expression that simply takes a number (called 'shift') and returns a string like the following: "This Shift ([shift])" I tried creating an expression that takes 'shift' as an input and the expression code is simply: "This Shift (" + shift + ")" However, every time I try to create this expression, the expression code is empty the next time I open it and it doesn't actually work.
Hello, when you plan to update to newer .net version. Currently it is .net 3.5 .... Instalattion of 3.5 on newer server is not so nice ... you could also set it as open source and the community will do it.
Hi, I'm using ThingWorx 8.5.5, the sequence of the logs that output via logger.debug in the script log is different with the execution code , it's inconvenient to read the log . I don't see the problem in ThingWorx 8.4. Is there any setting about the log sequence ? Regards, Sean
Hello, I am having the same problem. Did you solve it? Thank you
Hi Steven, We have a Fanuc focas connection to a 30i CNC and we are reading data with GOOD quality. However, a similar error is displayed sometimes. The error message is 'Read error occurred for address starting at 'Tag' on device. FWLIB error: 65520.'. I have checked that the mentioned libraries are already installed in the server. Any ideas how to proceed / troubleshoot the error? We have the same error in more than 6 machines which feature a Fanuc 30i model. Thanks Related to previous post
Hello Guys!Anyone with experience integrating WinCC and Thingworx? How this integration can be achieved through OPC-UA? In that case it will be necessary to use Kepware in between WinCC and Thingworx?Looking forward to hearing from you? Regards! DJ
Hello , I am using collection widget and bind data ,I want to bind that collection row id is it possible to pass collection row id to any parameter ?? I pass Id from base mashup through mashup parameter ,for testing give one value display and bind that mashup parameter but cant show id and also also pass value through session it give me only one value please suggest How to get collection row id?? Thanks in advance
Hi, I have encountered a weird instance in one of my user account. In the mashup, under properties of the timeseries chart, I could not load or see the datafields. However, when I change to my admin account or other user accounts, they are able to view the options under datafield1. Even when I change the privilege of that account with issues to admin, it is still not working. Please help!
Does anyone know how to store data for at least a week or more? I need to make a history, but some important data of my PLC is only kept for a day, or a few hours, do you know how I can extend that time?
Since we are using a Thingworx entity with our company on an azure server. I'm not able to use the ThingWorx academic simulator. As soon as I try to simulate a thing with the ThingWorx Academic Simulator it says "Unable to connect to ThingWorx. Check your server url." Does anybody know how to solve this problem by connecting the academic simulator to our ThingWorx entity? I'm completely new to this IoT topic, I hope somebody can help me out! Thank you so much Philipp
Hello everyone, I'm using ThingWorx v9 and attempting to use the Row State formatting on the Grid Advanced widget. However, it seems that only the first row has its state formatting applied. The rest is not done. Is this a known issue? In previous versions, it worked without any problems.
When QueryImplementingThingsWithNamedPropertyHistory is used in my script I am getting data of all the PUMPS data available on the dashboard, but I need only One Pump data in PIVOT and Code goes like this: var PropertyName = "PumpRunSignal"; if(PumpName === undefined || PumpName === null || PumpName === '' ) {var query = undefined;}else{var query = {"filters": {"type": "EQ","fieldName": "name","value": PumpName}}; } var result2 = ThingTemplates["PumpThingTemplate"].QueryImplementingThingsWithNamedPropertyHistory({propertyNames: {"rows": [{"name" : PropertyName}],"dataShape": {"fieldDefinitions":{"name":{"name" : "name","aspects" :{},"description": "","baseType":"STRING","ordinal": 1},"description": {"name" : "description","aspects" :{},"description": "","baseType":"STRING","ordinal": 2}} } } /* INFOTABLE */,maxItems: undefined /* NUMBER */,tags: undefined /* TAGS */,nameMask: undefined /* STRING */,query: query /* QUERY */,maxDataItems: 500000 /* NUMBER */,startDate:
Hi Team, How can I use DeriveFields on an infotable? I have an infotable as shown below. col1 col2 test name.hai test2 name.hello test3 name.hai test4 name.hello test5 hello I want new infotable to me without the string "name." in the col2 field. The new col2 should have hai , hello only. Regards,
Hello guys, Regarding solution central, I have the following question: In the scenario on a restricted network implementation DMZ for Azure VMs running Thingworx instances Solution Central can be used to deploy the developments and promote to production? or it is mandatory to have internet access between solution central and the Azure VMs? Looking forward to hearing from you! Regards, DJ
Hi, I have gone through Rhino Javascript Debugger , but really don't have idea how to use it to debug the ThingWorx's javascript service. Could someone share some experience on it ? Thanks Regards, Sean
Hi, Is the responsiveness issue fixed in ThingWorx 9.1? In the product document there were no update about the responsiveness in new launched TW 9.1. Please let us know if there is any upgrade in responsiveness in 9.1 version. Thanks & Regards, Shalini V.
Hi, Does calling rest API in ThingWorx work for multi session users? Because when multiple users hit same api url, we are facing errors. When we tried to hit the same url in browser by multiple users there were no error and we got the output properly. But when calling through ThingWorx, we are facing issues. Please let us know if there are any multi session limitation in ThingWorx?
Pls help on this topic.
Hi all, I have a contained mashup with a value display widget. I want to display data on the contained mashup based on the item selected in the collection widget of the main mashup. I bind the value display widget of the contained mashup to the selected rows, but It doesn't work. How can I do? Thanks
Hi Team, Is there any way to that I can get the list of all the project entities programatically? Thanks and Regards,
This is the program I have written and I am getting an output in the form InfoTable, when I am trying to add an row or trying to change the timestamp, the table has no effect on it showing the same values as previous !! Code: var PropertyName = "PumpRunSignal"; var result2 = Things["LVPump100"].QueryNamedPropertyHistory({ propertyNames: { "rows": [{ "name" : PropertyName }], "dataShape": { "fieldDefinitions":{ "name":{ "name" : "name", "aspects" :{}, "description": "", "baseType":"STRING", "ordinal": 1 }, "description": { "name" : "description", "aspects" :{}, "description": "", "baseType":"STRING", "ordinal": 2 } } } } /* INFOTABLE */, maxItems: undefined /* NUMBER */, query: undefined /* QUERY */, maxDataItems: 500000 /* NUMBER */, startDate: startDate /* DATETIME */, endDate: endDate /* DATETIME */, oldestFirst: true /* BOOLEAN */, dataQuery: undefined /* QUERY */ }); var result = result2; var oldEntry = new Object(); oldEntry.timestamp = "2020-10-01";
Hello, I have to send some alarms, warnings and errors from a device (microcontroleur) to thingworx. The SDK type has not been choosen yet, but I would personnaly prefer the Java SDK. Because the quality of the network is very poor, I have to prioritize the message sending. It means that I have to make sure that the errors will be send first. - Is that possible using the SDK? - or should I manage myself a queue of messages ? - How can I make sure that a value has been successfully sended / received using updateSubscribedProperties? Can I also switch the network used if one is down, for instance switching from Wifi to GSM? In java I would open a socket for a given interface, is that also possible? socket.bind(ni.getInetAddresses().nextElement());
I have a requirement to visualize the real time data from Kepware and predicted data from Factory talk edge (python code) to be plotted on a graph in Thingworx with very less latency (less than 5 sec). I cannot find any information on how to connect FT Edge to Thingworx however it can seen in Rockwell's site. Can anyone give a rough idea on what could be the best way to accomplish this. We are also considering to have a DB layer between the data sources which Thingworx can leverage for visualization but i guess that would cause latency.
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.