Recently active
Numeric Widget value flashes as the exponential value in the input box when adding a decimal value of more than 6 or 7. for example 0.000000001, it shows as 1e-8. Issue: I want to only show the value instead of the exponential.
I'm writing a web application and need to get a user login token to call api ... (Not use appkey, require user login with username and password then return a token.) How can I do that?
Hi everyone, Thingworx Foundation 8.5.1 Thingworx Analytics 8.5.2 We currently are having a lot of issues with thingworx performance, after restarting Apache tomcat/VM, Thingworx works as expected for a few minutes, then it becomes slow, and at some point it becomes unresponsive.Memory utilization of the host reaches above 99%Several assets have been deleted/disabled in order to reduce system workload, this has improved a little the condition but definitely haven't been able to find the root cause of the issue.Based on information from PTC site and forums, it's believed issue could be caused by a service blocked, a service with slow execution, or issues with the garbage collection in JVM.Logs for the day have been cleared and attached is the logs status after a few minutes after restart, and also the logs after the crash and a further restart.If the logs are collected during the day, files get quite large with errorsThingworx navigation becomes slow for a few seconds and th
Hello, I have a situation where data are read from a source that always stores them in imperial units. All widgets in the project need to have the ability to be universally switchable such that they can show the converted values for metric and also the appropriate units at runtime. Any ideas?
Hello All, I gave some css code for the cell mashup, It is working fine when we opened the cell mashup separately. But the same cell mashup css not working, when it is used in the collection widget. I have mentioned the css code for you reference. #root_FlexContainer-2{ overflow : hidden !important; } Also I have noticed that the Container Id changes for the each cell mashups when it is used in collection widget. Can anybody give the solution for this? Thanks & Regards Sugumar
Line chart has one x and one y axis but I want one more Y axis in Line chart. Please let me know How can we add secondary Y-axis in Line chart widget.
Hi Team, How to display one series on graph as dot and on same graph other series as line? (X axis will be as timestamp and y-axis should be numeric) Can anybody let me know the exact graph as well as the process to plot this type of hybrid graph. Thanks in advance.
Hi all, I'm trying to create new Thingworx Widget using Apache echarts. I have created simple chart and imported into Thingworx. I'm able to see widget in Composer but when I try to see chart in runtime I'm getting below error : 17:54:40 ERROR - TW.Runtime.Workspace.Mashups.getWidget exception loading widget { name: Error, message: simplechartdoesn't exist } I checked JAVA OPTIONS everything looks fine. Thingworx Version : 9.2 ( Fresh Instance) Could any one help me to solve this issue. Thanks,VR
HI team, Can I have a multiple y-axis line in the line chart? If it is possible Let me know how to achieve it. Sharing the image how exactly I want to plot the multiple lines. Thanks,
I have an asset that has several properties (image1) lastConnection latestRegistrationDate managedDevices etc.... managedDevices is a infotable containing several other values. What I am doing is populating several labels and a grid within my mashup using a service (MyAsset is a parameter that allows me to dynamically load different assets): var result = Things[MyAsset].GetPropertyValues(); So I have something like (image2) This works, now I want to extract the selected row-col value from that grid and pass this value as a parameter to navigation input so I can navigate to other Mashup when I double click a row of the grid. I have two columns in the grid (image3) name looupId I want to extract the lookupId value of the selected row One idea I tried to implement was to call a service when double clicking the row (image4) and after the service call ends I execute the navigation pas
Hi, I am developing some App in Thingworx. My mate has developed a an API Rest which If I send some JSON, it returns me another JSON. I would like to work with this JSON and save info in order to create fields in Mashup and visualize, modify data, create new one, etc, but let's go step by step. Let's Start: The code I will send to the API is the following: { "paramh":"", "language":"EN", "materialfilter": { "Materialid": "XXX", "Materialdesc": "XXX", "Materialclass": "XXX", "Materialsustitutive": "XXX" }} I can introduce some data to the XXX just to filter and get an específic JSON result . For example, If I write 1106 on Materialid, I will recieve the following JSON: Ok, now, I would like to show th
Hello, I want to create get API in Thingworx from service with converting data table format into json format? for this I create one query for getting all data and use tojson() snippets ..... set output as json base type, but I'm getting output in info table. I also used getjson() snippets and getting blank headers output please refer below attachments and suggest : How to create get API in Thingworx with getting all data in Json format ? Thanks in Advance tojson()snippets output: getjson()snippets output:
after launching thingworx web application, the composer is showing sever error Updating Media
Hello all, As some of you may have noticed, we worked with the ThingWorx product managers to catchup with the product ideas. It is still a work in progress. On behalf of the team, I want to thank you all for your suggestions. Several of you suggested ideas that made it to the ThingWorx. Specials thanks to @wvangeem @vinesh @TomDecock @sniculescu @skrüger @Radu @Prem-IKEA @unknown @karthiks @JosephMeikle @JL_4677510 @Ilya @hbhalerao-5 @dps @DanZ @Constantine @Christian_S @berkob @BennyB @amittal1 @ahaw021rockwell @agondek
Hi Team, Suppose in one section of my mashup there is a chart displaying data (Chart can be of any type) and I want to put download button to down the image of latest appearing chart. How it can be achieved in ThingWorx 9.1. Is there any widget already present to download these type of images? Thanks in advance
When we tried to open Composer and runtime it didn't open. Error is displaying as "HTTP Status 404-Not Found"
While reading csv file, not able to store one by one rows in infotable during runtime. It is storing only in variable. why?
we need to have a filter that helps us select a row from an infotable, we attach the infotatable in the question
Hi all, during importing SourceControlEntities I got following errors.This is only happening when I am importing complete .zip file, but when I unzip this and import entities as a single file, it works fine. Importing the same "project" to the version 8.4.x. is without errors. Is there any possible solution how to import SourceControlEntities from older version to the 9.x? Unable to Invoke Service ImportSourceControlledEntities on SourceControlFunctions : null ErrorCode(cdeb5a8e-1660-4035-97fd-12e3db90e19f), Cause(null), Reason(Access was attempted on a null reference variable.), Possible Resolutions(Remove the reference to the null variable within your extension code.)
Hi, when i create infotable from datashape with Primary key it is accepting duplicate key. below are some snaps..please suggest the correct solution. i want to store entries with primary key. when i enter duplicate key it should update automatically as datashape contains a Field (Primary key ). Thanks,
How can I get the list of all the alerts that are configured for each Thing.
Iam checking each row of datatable in for loop. So iam using code: resultDT.rows[i].XXXXX I stored the field definitions in array arr[] inside the same service. I want to pass them dynamically inside for loop to the code resultDT.rows[i].XXXXX . I dont want to hardcode them again. How to make this possible?
I have been following this guide(https://developer.thingworx.com/en/resources/guides/use-edge-microserver-ems-connect-thingworx/mlp-connect-ems) to establish a EMS connection with Thingworx. after executing the wsems in cmd am not seeing either error or success message. no result is shown in cmd. However am able to see EdgeThing (Example device name as mentioned in the guide) in Thingworx and able to create a remote thing. But when I tried to access the files using BrowseDirectory there is no data. I am attaching my config.json file, config.lua file and log file for reference. Somebody Please help me to resolve this
I was trying to Import a extension ConnectionServicesExtension-2.2.4 as per the instructions given in the following link: https://developer.thingworx.com/en/resources/guides/azure-connector-guide/import-extensionsThen I get the following error: [context: Extension Exception][message: Error parsing C:\ThingworxStorage\extensions\temp\ConnectionServicesExtension-2.2.4_8fa5c171-09fa-4acc-9cea-dbcdf80a2ecf\ConnectionServicesExtension-2.2.4\Entities\Things\ProtocolAdapterLeaderElectionTimer.xml: (20, 32): cvc-complex-type.3.2.2: Attribute 'inheritedValueStream' is not allowed to appear in element 'Thing'.] The Thingworx version is 8.4.5 So what will be solutions to avoid this.@paic @slangley @c_lowy Thanks !!Shashi
Hi krishnakomal123, I am also facing the same issue, if this is resolved Could you please share what is the resolution for this? Eagerly waiting for your valuable response. Thanks, HJo.
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.