Recently active
Hi, I'm trying to setup permissions in ThingWorx. And I have run into some strange behavior. The scenario is as follows. 1. create a new organization 2 .create a new group 3. create a new user 4. assign the user to the group and the group to the organization. Theoretically I should now set permissions on the organization and group. Which I have done. This is pretty standard stuff according to the documentation and the youtube movies. I have a previously created mashup that I want my new user (in the new org and group) to be able to view. The user can see the mashup in composer and can view the mashup. But not the data. This is what the user is supposed to see. This is what the user sees. I thought is was permissions on the value stream/ the thing/ thingtemplate / thing shape so in an effort to trace the problem I added the group to each of these entities to see if that would fix it. Still the situation does not change. When adding my Org to the Style definitions I
Hello team, I'm trying to connect my Pi with Composer server by following the guide. While running my LSR, keep getting port conflict issue. The micro server is trying to listen 8001 (default) but don't know how to override. I have updated related entries in Config.lua by referring one of the discussion thread but didn't work. Thank you much! Ponraj.
Hello Team, Is their any way to check uploaded files integrity check in file repository, I need to develop integrity check like MD5 Check sum. Please suggest
Hi everyone, there is a GET call to retrieve all data collected from a property of a Thing, in json format? It's also possible specify a timestamp and retrieve all the data since that period Thanks, Daniele
I have a requirement where selection of list widget have to set as a thing property. How can i accomplish this? i checked but couldn't find the option to access the selection of list widget.
I have created a custom widget. For the 1st time, the selection of widget works fine when added in mash-up. All the widget properties are loaded and I can assign relevant properties with no issue. When I add multiple instances of my custom widget into the mash-up, I can only select and see last added widget properties window. I cannot select and see the widget properties window of the previous widgets. Also after closing and re-opening of mash-up, I cannot see properties window of any selected widget. I am getting following error when I select custom widget. Error in TW.IDE.updateWidgetPropertiesWindow TypeError: s.replace is not a function Any help will be deeply appreciated.
Attached a Tomcat log.. 02-Apr-2018 01:17:30.074 INFO [main] org.apache.catalina.startup.VersionLoggerListener.log Server version: Apache Tomcat/8.5.2902-Apr-2018 01:17:30.074 INFO [main] org.apache.catalina.startup.VersionLoggerListener.log Server built: Mar 5 2018 13:11:12 UTC02-Apr-2018 01:17:30.074 INFO [main] org.apache.catalina.startup.VersionLoggerListener.log Server number: 8.5.29.002-Apr-2018 01:17:30.074 INFO [main] org.apache.catalina.startup.VersionLoggerListener.log OS Name: Windows 702-Apr-2018 01:17:30.074 INFO [main] org.apache.catalina.startup.VersionLoggerListener.log OS Version: 6.102-Apr-2018 01:17:30.074 INFO [main] org.apache.catalina.startup.VersionLoggerListener.log Architecture: x8602-Apr-2018 01:17:30.074 INFO [main] org.apache.catalina.startup.VersionLoggerListener.log Java Home: C:\Program Files (x86)\Java\jre1.8.0_16102-Apr-2018 01:17:30.074 INFO [main] org.apache.catalina.startup.VersionLoggerListener.log JVM Version: 1.8.0_161-b1202-Apr-2018
Hi, I'm new to Axeda. I'm using Rest API to retrieve the assets using IDs. I'm using this API:- services/v2/rest/asset/findByIds My issue is, its accepting only 100 ids in the request. Is there any way to give more than 100 ids in the request. Thanks, Srikanth.
Hello,Does anyone have a trick to make the images/text behind a Style Definition using Opacity to have a blur effect? I like the ability to have the opacity as it adds a nice look but I would like the make the content behind it also have a blurred effect.Thank you,Mike
Hi! Issue: Experiencing this error upon starting Thingworx on Tomcat Manager "FAIL - Application at context path [/Thingworx] could not be started" Please see attached file for the logs. Actions taken: -version checking -adding thingworx license -adding thingworx in system variables -added folder full control access-edited WEB-INF from WEBINF-restarted Tomcat 8.5 With this, I'm still not able to start Thingworx on my local machine. Did I missed on any steps? Appreciate your help. Thanks! Currently doing: -reinstall Tomcat 8.5 from 32 bit to 64 bit This is RESOLVED.I did a fresh installation and the significant correction was reinstalling Tomcat from Tomcat 8.5 32 bit to Tomcat 8.0 64 bit.
Once I published the model to ThingPredictor, and use Thingworx Analytix Managemer to test new data with ThingPredictor connector. Does the predictor use its own engine or use Thingworx Analytics Server to calculate the result?
I am trying to create an extension, which provides a Template having a service for dynamic custom thing creation. After installing the extension and creating a Thing from the extension template, i am executing the createThing service. I am successfully able to create the Things dynamically using the below code, however my property is not getting updated. public static void createSomeThing(DeviceNode node) throws Exception { String thingName = "MT-" + node.getName(); Thing deviceThing = ThingUtilities.findThing(thingName); if (deviceThing == null) { deviceThing = ThingTemplateUtilities.createThingFromTemplate("MyTemplate", thingName, node.getName(), true); } deviceThing.EnableThing(); deviceThing.RestartThing(); if (deviceThing.GetValueStream() == null) { String streamName = thingName+"Stream"; Thing deviceVS = ThingTemplateUtilities.createThingFromTemplate( "ValueStream", streamName, "Value stream for " + node.getName(), true); deviceVS.EnableT
Hey, I followed the raspberry pi quickstart and it works well but I need to update the values every 5 secondes how can I do that ? I searched in the microserver 's file but I didn't find where to change this option. I think it is Inside the microserver/etc/custom/templates/example.lua but I don't know which line so if someone can help me Thank you.
Hello, I have the following error message on device side: "Binding failed, see server log for more information" (See screenshot attached here). This error is displayed when calling the function "twApi_BindThing(thingName)" on device. I looked at the logs server side but I didn't find anything. The message isn't displayed the first time the device starts after creating the thing (Server side) , it's during a second startup of device. TW version used currently: 8.2.1 The same software used on the device side works properly using the thingworx version 7.4 Thank you in advance for your help.
It would appear that the necessary building blocks are available in the .NET SDK to support SCM. However, I have not been able to pick apart the back-and-forth interactions between the .NET SDK Gateway I have built and ThingWorx to get a firmware update to occur. It would be very helpful to have a description/tutorial that describes what is necessary on the SDK-side of implementing support for SCM. Here is what I can see: The TriggerUpdateAction() service in my FileTransferVirtualThing-based object is getting invoked with a 'start' action. The params JSON object, however, is null even though I can see data in the logs. I'm guessing that a FileTransfer event would need to be fired from the FileTransferVirtualThing to ThingWorx to indicate progress/failure The ScheduleDownload() and ScheduleInstall() services in the FileTransferVirtualThing play some role in processing, but I'm not sure what event I need to pass back to get them invoked. At t
Hi, I have following scenario in ThingWorx:A thing is created with properties: Property1, Property2, Property3, Property4 and Property5 etc.I wish to display these property values in mashup and at the same time I want to update them from mashup itself.How can i achieve this? Thanks!
Hi All, I am getting Lat and Long of a plant location from Database which are of VARCHAR . I am trying to convert them to Location datatype in Thingworx, but getting following error. Unable To Convert From java.lang.String to LOCATION Can someone help me on this ?
I'm using ROC Chard widget it works fine, linking an infotable to "Data" and selecting the XAxisField and DataField 1..2.... However the XAsixField can be parametrized. If i link XAsixField to a string (eg a textbox, just to try) giving the name of the field to use, the widget does not works. I can make it running only if a select directly on the widget the infotable field use. Has anyone used this XAsixField as a parameter ? Is there a particular "syntax" for selecting the field name with XAsixField ?
Spoiler (Highlight to read)Hi All,I created a service using the snippet function GetText and received this mesage error:"Name or service not known - See Script Error Log for more details."See the code below for details var token = "eyJhbGciOiJSUzI1NiJ9.eyJqdGkiOiJlNDIzNjI2NS1kMjBlLTQwYmMtODExMC1mYWVlYWFlZjE4ZjUiLCJzdWIiOiJhZG1pbiIsImF1dGhvcml0aWVzIjpbImNsaWVudHMucmVhZCIsImhpc3Rvcmlhbl9yZXN0X2FwaS5yZWFkIiwicGFzc3dvcmQud3JpdGUiLCJjbGllbnRzLnNlY3JldCIsImhpc3Rvcmlhbl9yZXN0X2FwaS5hZG1pbiIsImhpc3Rvcmlhbl9yZXN0X2FwaS53cml0ZSIsImNsaWVudC5hZG1pbiIsImNsaWVudHMud3JpdGUiLCJ1YWEuYWRtaW4iLCJzY2ltLndyaXRlIiwic2NpbS5yZWFkIl0sInNjb3BlIjpbImNsaWVudHMucmVhZCIsImhpc3Rvcmlhbl9yZXN0X2FwaS5yZWFkIiwicGFzc3dvcmQud3JpdGUiLCJjbGllbnRzLnNlY3JldCIsImhpc3Rvcmlhbl9yZXN0X2FwaS5hZG1pbiIsImhpc3Rvcmlhbl9yZXN0X2FwaS53cml0ZSIsImNsaWVudC5hZG1pbiIsImNsaWVudHMud3JpdGUiLCJ1YWEuYWRtaW4iLCJzY2ltLndyaXRlIiwic2NpbS5yZWFkIl0sImNsaWVudF9pZCI6ImFkbWluIiwiY2lkIjoiYWRtaW4iLCJhenAiOiJhZG1pbiIsImdyYW50X3R5cGUiOiJjbGllbnRfY3J
Hi, I'm following the guide https://developer.thingworx.com/resources/guides/anomaly-detection-how-guide . During the model training it fails after calibrating and the application log throws out this error multiple times Not really sure what the issue could be. Both the training and results microservices are up and running. Thanks.
Hi Community, I wish to design permissions on thing permissions programmatically: Does anyone have any advice on how to achieve this? Regards, Andy
Hello, I have one 'break reasons' dropdown list. My requirement is to show 'Reason' label widget and respective textarea widget on dropdown item(item - 'other') selection and for dropdown items other than this I want to disable textarea. How to implement that? Thanks.
I'm also having this issue
I am getting the following flow of events: 14/05/2018, 15:15:07Start/Request profile of Dataset 2018-05-14 15:15:21.298 GetProfilesAMS: Error calling RetrieveResult(): JavaException: com.thingworx.common.exceptions.GenericHTTPException: [ProfilingMicroserver] could not retrieve result for jobId [15ac9974-3fa7-449e-b05d-9aa8f6b7778c]: Unable to retrieve results at results:/profiles/15ac9974-3fa7-449e-b05d-9aa8f6b7778c. Received response: {"code":404,"message":"Could not retrieve result [15ac9974-3fa7-449e-b05d-9aa8f6b7778c]"} This last message is constantly surging. Basically it seems analytics is stuck in trying to get results. Until today (1 day later) I have a running profile job request. When I try to delete: 2018-05-14 15:51:00.745DeleteProfileAMS: ERROR deleting signal job: jobId=15ac9974-3fa7-449e-b05d-9aa8f6b7778c: JavaException: com.thingworx.common.exceptions.GenericHTTPException: Cannot delete a job in queued or pending state Which is
Unable To Convert From com.thingworx.types.collections.ValueCollectionList to JSON Within my service ParentService (with output type set to InfoTable) I call ChildService service which returns result: INFOTABLE dataShape: "undefined" and I set result to that InfoTable so this can be converted to JSON so a Rest client can ask for JSON response. This "undefined" Infotable when converted to JSON will have this shape: { "dataShape": {...}, "rows": [{firstobj}, {seconobj}...] } I want to return only result.rows, but that is treated as ValueCollectionList which cannot be converted to JSON. I used InfoTableFunction's ToJSON service and I got almost what I wanted with .rows, but now I need to remove{ "array": part and only get this as a return object: [{obj1},{obj2},{obj3}]. I want then to save this json return value to a repository file. So how can I do that? It is a strange that "array" property is added. I don't want to have a wrap
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.