Recently active
Hi everyone, i have xml input. I need to retrieve all the attributes of the specific node .thanks in advance
Hi I have a service where i write a propertyHistory infotable to a csv file. In the UI, I can see the datetime in IST format, but I expected the timestamp on the written csv file to have UTC format. But instead, the timestamp is in EDT/EST format. Is there a method to change this conversion so that I can get the output timestamp in UTC. Since the EST/EDT vary each year the quality of the exported data has an expiration date. Please let me know your comments. @VladimirRosu_116627
Hi, I have a problem about update a property of base type ThingName. Scenario: => Thing Template = 'ABC' (contain property 'test' of type string)=> Thing : 'EFG' contain a property of base type THINGNAME (Thing template : 'ABC') , i name it ABC_1On the service of thing 'EFG' i want to update the property test this code : me.ABC_1.test ='new value' does not work ! Do you have any idea how to achive this ? Thank you in advance.
My understanding is that Things[fileRepositoryThing].ExtractArchive(params) is an asynchronous function. Is there an event listener service similar to addEventListener( ) that I can use to run a callback function when the extraction is complete? I am moving the file after it's extracted, but I want to make the process more efficient by using some kind of event listener instead of a do while loop. let moveFileComplete = false; do { try { Things["SystemRepository"].MoveFile({ targetPath: "/Push/" + me.name + "/" + fileName /* STRING */ , overwrite: true /* BOOLEAN */ , sourcePath: "/temp/Push/" + fileName /* STRING */ }); moveFileComplete = true; } catch (err) { moveFileComplete = false; pause(29999); //pause to ensure file extraction is complete before restarting loop } } while (!moveFileComplete); http://support.ptc.com/help/thingworx_hc/javadoc/com/thingworx/things/repository/FileRepositoryThing.html#ExtractArchive(java.lan
Can Thingworx Applications hosted on IIS or Apache Web Server? If load Balancer has to be eliminated. Kindly share some information.
There are 2 tree grids in container. If i selected 8th row in first grid, automatically 8th row in second grid should get selected and vice versa. How to do this?
Hello ThingWorx community members,!As part of our continuous efforts to improve our offerings, ThingWorx product management regularly reviews the software deliverables we provide to our customers as well as how we do so. As we had notified ThingWorx users with more than a year's advance notice via this Knowledge Base article, community post, and Product Release Calendar "standard support end dates" that the below three extensions will be discontinued past their End of Standard support date, we’d like to inform you that these are no more available for downloads from PTC Software Download portalThingWorx CSV Parser ExtensionThingWorx Twilio ExtensionThingWorx Google Widgets ExtensionHenceforth, customers desiring fulfillment of the use cases served by the three extensions as well as formal support would need to contact PTC partner- IQNOX.The latest versions of these extensions compatible with the ThingWorx 9.3.4 release are also available for community usage attached to this a
Hello.I have added reference lines to my chart but i cannot see the labels. Also, anyway to customize the colors for each reference line? I am using ThingWorx 9.3.2-b411
Hello @Pedro_Sanchez , Same kind of problem we are also facing now in v9.1. if you got any resolution for this case, kindly share with us, which will be of great help thanks
Hi, I have a question. I spend a decent amount of time coding checks if something is allowed to happen. mostly because it is so easy to enable, disabled/hidden buttons. You can just edit this html on the frontend: disabled button. but in the front end I can just remove disabled="" and I can use the button. remove display: none; and you can use the button Is there a way to disable clicked event on runtime? Or something else that the end user can't change themselves
Hello , I am trying to connect thingworx with KepserverEX but getting following error Error ThingWorx Native Interface Connection to ThingWorx failed. | Platform = localhost:443/Thingworx/WS, error = could not initialize a secure socket connection. Any help would be appreciated !! Thanks
Hello, I have recently installed thingworx 9.3 using installer . I want to know which option is recommended for installation manual or installer one? Does it make any difference if I choose between both of them? Thanks
Hello,Our ThingWorx solution has been facing an issue where, upon changing the Language of the solution, the Charts and Graphs have their styling options changed. I have attached two different pictures that more accurately portray this issue: it is the exact same graph with the only difference being the selected language. What could be causing this issue?
Hello , I am working on a project and want to configure cross origin resource sharing . Can we enable Cross origin request in Thingworx? Thanks in advance
Is there a way to combine different mashups from different Thingworx enviroments? So each of our sites has a Thingworx enviroment set up is there a way to pull in different reports into one dashboard?
Hello. I have a static Mashup; it is left aligned, but as per the client's requirement, it needs to be center aligned on a page/screen; how can we do that?All the Widgets or the whole design are in a single container(which is static). Alignment is not possible for it.Any CSS that can be added to the Container to align it in the center?Thanks,
Hi,Was migrating the dashboard from 8.4.x to 9.3.x, when migrating the List Widget, can't see View property of List which is present in the 8.4.x version was missing in the 9.3.x..Below is the picture of the Legacy widget property which is missing in the 9.3.x.. How can view property can be configured in the 9.3.x ?Thanks,
Hi, I am using the MQTT template to subscribe to MQTT values, but when I query for property history I only get the values which I set manually. I think it's a permission problem. Any help is appreciated. Thank you!
Hey @krishnakomal , Do you know how to change the color of dropdown scrollbar by using CSS? Here I attach SS. Please help me in this. Thanks.
Hello. i have the following pareto with small values that i cannot use the 'SeriesClicked' event because the values are so small. is there a way to click the cumulative line 'dot' or the label and trigger an event?
Are there any best practices regarding installing RTPPM w/ MS SQL on an existing ThingWorx running w/ PostgreSQL?
Hi, I have created an account to access the trial. While logging with my credentials, i am unable to see the server option to launch. Do helpful to resolve my issue.
Hello, I have a problem to solve this : I have an Infotable create in Thingworx and I want to use Java Edge SDK in order to enter data in the first row.Today, I got this : ValueCollection row = com.thingworx.crypto.functions.HTTPRequest(pictureFolder, urlHTTP, predictionKey);FieldDefinitionCollection fields = new FieldDefinitionCollection();fields.addFieldDefinition(new FieldDefinition(NAME, BaseTypes.STRING));fields.addFieldDefinition(new FieldDefinition(DATE, BaseTypes.DATETIME));fields.addFieldDefinition(new FieldDefinition(C, BaseTypes.STRING));fields.addFieldDefinition(new FieldDefinition(Z, BaseTypes.STRING));defineDataShapeDefinition("ds", fields);InfoTable resultInfoTable = new InfoTable(getDataShapeDefinition("ds"));ValueCollection entry = new ValueCollection();entry.clear();entry.SetStringValue(NAME, row.getValue(NAME));entry.SetDateTimeValue(DATE, row.getValue(DATE));entry.SetStringValue(C, row.getValue(C));entry.SetStringValue(Z, row.getValue(Z));resultInfoTable.addRow
Hi, I have issues with thing properties bound to remote Kepware tags. The Kepware tags are connected to OPC-UA endpoints and they all work and are updated as expected in the Quick OPC-UA client. The Industrial Connection status is connected and the bound properties display as healthy. But when the Kepware values change, the properties are not updated. Refreshing the thing properties does nothing, but when I save the thing, then the values are updated. The strange thing is this only happens on some bound tags and not all of them. The applicationkey is created with the admin user for testing purposes right now. Does anyone have similar experiences? Regards JK
Hello, We are using MFA, and we've configured a connection to Kepserver with an asset and remotely bound properties to Kepserver tags. The connection pushes values every seconds (in monitoring section we view that we receive it every second), and we need to log those values even haven't changed. Remoted bound properties Data Change Type property is set to Always, but QueryPropertyHistory service does't show a value for every second, only the changes. How can we get it? Thanks in advance
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.