Recently active
I have installed analytics server 8.3.2 on windows 10 home edition 8gb ram and intel i5 processor with 2 cores I see that there was an error during installation which said descriptive analytics service couldn't be created as there was already one present. bur analytics server installed fine. I don't see analytics server thing present after I start the server
Hello Team, I had a issue with combobox ui widget, after selecting one item in the list, If i press the tab to enter into the combobox it was not showing entire list. It shows only shows selected one only.I thought because of auto suggest feature in combox blocking list rend.Please help me on this.
hi Jadhav, am also similar kind of requirement that I want to send the grid data on mashup to e-mail. how could I send and in what format we can send .
I have a situation where I have to access external data (reference data) while writing a service for a thing. For example, if a cooler has a temperature sensor as a property and a service where the temperature value read from the sensor has to be compared to some external reference data like average_monthly_temperature, which is fed from some external database call or some API call from the service, how can this be done ?
I have created a project(Project A) , Template and a thing. Now i need to create 10 things dynamically using a service and then each service has to be configure a project (Project A). I am able to create a thing using a service CreateThings but while using this service it doesn''t provide the param named as project so that i can provide the name of the project that i want it to be binded.
Hello, Currently i m having knowledge about Thingworx composer and Studio. How do i start with Digital twin? please provide a document including example from Scratch. Thanks!
I am trying to reinstall Analytics Trial Edition 8.2 R3 after uninstalling it because of errors. I get the following message. All the ports required by ATE are free. Can't figure out what the error is.
Hello, I use the value of the "lastConnection" property to display the date of the last connection of the device to server. The problem is that when i save the Thing after a modification of a script in the ThingTemplate the value of the "lastConnection" gets updated with the current date (I'm losing the date which the equipment is really connected). Is it normal? Thank you.
Hello Team, Can you please brief on the purpose and and working of local bindings on properties
I have set up Thingworx with forms login, some of my users have multiple logins, as they look after other users. If they happen to already be logged into a user account and then in the same browser login again, it causes issues with the sessions data which I store in the user extensions properties. I need as way to stop multiple logins occur on the same browser, I would be happy of there was a way to know if a user was logged in already or not, so I could then redirect the user to the home page. I have been trying to make changes to the FormLogin.jsp page, but have had no luck so far. Is there anything I can do to see if a user already logged in from the FormLogin.jsp page? Or any other suggestions on handling this situation?
Hi, I try to style my Mashups with custom css, but I don't know where to find the syntax for the widget classes. For example: my collection widget has a custom class (customfoo). Now I can style it in the css, but how do I access for example the cells in it (or any other element)?
Hi Team, Need assistance on accomplishing association between things of different templates(that doesnot have inheritance between them) may be primary and foreign key relation or must use a dataTable to achieve this? Can any one pls suggest
We have a Thingworx 8.1 server running, and I'm unable to perform any REST API calls on it. I've tried in both postman and curl at various URLs, starting from as simple as https://server.com/Thingworx/Things?appKey=[appkey] as well as on various things. No matter what, the response is a 401 with no body. The app key is valid and I've tried generating 3 or 4 different ones at this point just to make sure that they ARE valid. My user can, of course, view the things that I'm querying against (why I went for specific things instead of calling it at just /Thingworx/Things.) Anyone have pointers for what could be going wrong?
Hi, We have connected assets which is sending data to Thingworx platform from last two weeks, but from yesterday data is not reaching platform. It's showing all assets isconnected=true but none of the assets data is not reaching platform. I have checked the logs on device, its' giving me error code 1114(TW_GATEWAY_TIMEOUT), but the device is sending data. Below are the set of Application logs keep on getting on the thingworx: - NULL MessageSynchronizationContext! Request either timed-out waiting for this response, or it was received by mistake: ResponseMessage [requestId: 4518085, endpointId: -1, sessionId: 30071, code: STATUS_SUCCESS, multipart: false, packet #: 0, total packets: 0] - Could not dispatch async service request [NotifyPropertyUpdate] : Timed out APIRequestMessage [requestId: 4519346, endpointId: -1, sessionId: -1, method: POST, entityName: *8902A, characteristic: Services, target: NotifyPropertyUpdate] - Could NOT send response for re
I was testing a service I wrote to allow users to create users using the CloneUserWithGroups() API. When testing, I created a couple users while logged in as the Administrator. That part worked fine. My issue is: ThingWorx won't allow me to delete those users!!?? ThingWorx returned a Delete Failure error message saying, "Editable System Objects Cannot Be Deleted." I've removed those users from the groups the Administrator is in, but I'm still getting the same error message.
Hello, i want to use the filter widget within a mashup, to filter a GRID coming from JDBC MySQL connection? Does this should work? Many thx in advance, Philipp
We made one edge update a temperature property increased by 1 every 5 secs. If 300k ~ 400k edges update logged temperature properties(value streams) every 5 secs concurrently, the ThingWorx Platform(TWX) could only receive/queue 85% ~ 90% of properties. When the edges' connections are established stably, We observed the 'totalWritesQueued' value of Value Stream Substem every 5 secs and computed its minus, then divided this minus by the amount of edges.My question is, why the TWX couldn't handle 100% of properties when more than 300k edges update properties concurrently?+ TWX System Resource: - CPU E5-2650 v3 @ 2.30GHz with 10 cores * HT * 2-way - CPU usage: less than 50% - Total Memory: 128GB - JVM Memory: 96GB+ TWX Subsystem Configuration: - Default except: > Value Stream Subsystem: ' maximumBlockSize: 50,000 ' maximumQueueSize: 10, 000, 000  
is there any way we can connect thingworx to raspberrypi rather than using edge microserver. help out in an easy way to connect raspberrypi to thingworx, the steps given in this link is not helpful https://developer.thingworx.com/resources/guides/thingworx-raspberry-pi-quickstart/install-ems Make it easy, as i am struck with step 5. help me as soon as possible
This document contains an example of calling the service and receiving a result using the REST ThingWorx. Example Arduino sketch in C language.#include <SPI.h>#include <Ethernet.h>#include <ArduinoJson.h>// Enter a MAC address and IP address for your controller below.// The IP address will be dependent on your local network:byte mac[] = {0xDE, 0xAD, 0xBE, 0xEF, 0xFE, 0x03};char server[] = "tvsn.cloud.thingworx.com";EthernetClient client;//ThingWorx App key which replaces login credentials)char appKey[] = "b0b54023-3977-4670-8a0a-671ef412fe30";// ThingWorx Thing name for which you want to set properties valueschar thingName[] = "ExamleThing";//Interval of time at which you want the properties values to be sent to TWX serverint timeBetweenRefresh = 5000;// ThingWorx service that will set values for the properties you need// See the documentation for this tutorial for more informationchar serviceName[] = "ExampleService";//How many values you will be pushing to ThingWorx
Hi, does anyone know if there is there a way to select a menu item via a service or some logic. In one of my mashups I use a dynamic menu widget which drives a contained mashup. There are times when I wish to refresh the whole mashup but keep the menu item last selected, rather than go back to the default menu item. Thanks, K
Hi, I currently have a panel like the picture above, which allows users to type in a new building name and select a site from a dropdown list and add it to the database. After the user clicks the 'Add' button, both the Building name textfield and the Sitename dropdown list should be emptied out. Right now, when a user clicks Add, the Building name textfield becomes empty (I did it binding the textfield to a property and writing a service that changes the property to ' '). But, it does not empty the dropdown list. I have tried using the same method I used for the textfield like binding a property to the selectedText feature of the dropdownlist and setting that to ' ', but this doesn't seem to work for the dropdown widget. How can I achieve this? Thank you!
Am having 2 butttons. If i click first button, another button's color have to change. How to do it?
I am trying to open a second mashup into a contained mashup using Navigation widget, when I click the Navigation button it opens a new window or replaces the existing window and does not open the mashup in the contained mashup. Is there a way to get the second mashup to open in the contained mashup and not replace existing window or open in a new window? I would like the users to be able to select which option they would like to see and have the ability to stay on the same page and open a different selection without having to navigate back to the original mashup from a new window or one that has replaced the current window.
I am not able to establish an HTTP integration from The Thing Network to ThingWorx and therefore not able to view the data coming from The Thing Network in ThingWorx mashup. Though when I am hitting the url via postman, I am able to see the changes in mashup.
Hi, I want to connect Softing dataFEED OPC suite to Thingworx platform and view tags(manage bindings) like we do when we connect using Kepware with Thingworx platform. I have tried the OPC UA extension from market place but in this we need to define each tag address in the .config file. If there are large number of tag addresses which we want to read using this extension becomes very tedious. Please let me know if anyone has tried connecting any other tool like kepware to ThingWorx Platform or let me know if there is a tweak for the OPC UA extension Regards, SKD
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.