Recently active
The sample Anomaly dashboard does not show anomaly model from generic things about only those things created from remote things. Is there a way to configure this? I was finally able to get my generic thing anomaly model to run(init, calibrate,...monitor) but was unable to find it on sample Anomaly dashboard mashup.
I need my Thingworx development environment in my local PC (not a server). If is that possible, please provide a link to system requirements and installation guide
Hi, in the Thingworx Application Development Guide 1.0 on page 75 it's given Naming Guidelines for Reusable Components. It states to use a dot in the namespace. When I use a dot I get the message: "Name contains invalid characters" Are there any way around this or is it a recerved character for PTC developers? Thingworx 8.4.1-b2126 Thingworx Apps 8.4.2-00
Hi all, I have created an XY chart widget for customization based on the built in XY chart widget in ThingWorx and imported it to ThingWorx. The import is successful and I have the new widget in the composer. However, after binding data to the widget, nothing displays when I view the mashup. What baffles me is that I am using the exact same code as the existing XY chart widget so the widget I created should work as well. Attached is the zip file for reference. Any help will be greatly appreciated!
Hi all, I am using the Host Server and two days ago I can not to access my platform. Follow the image below. Regards, Leonardo
Hello, I am using Thingworx 8.4 with Manufacturing Apps extension. Unfortunatly, it is not possible to login (Adminstrator) to /Thingworx/FormLogin/Welcome or even /Thingworx/FormLogin. Instead I get the message: "Anmeldeinformationen stimmen nicht mit einer gültigen Benutzername-Passwort-Kombination für diese Organisation überein. Versuchen Sie es später noch einmal." (In English: Username and password for this Organisation do not match. Please, try again later.). In the Security Log I get a Nullpointerexeption: ApplicationContext.sessionDestroyed(HttpSessionEvent) failed. [ java.lang.NullPointerException: userName was null ][ userName was null ] Eventhough the usernamefield is not empty. What could be the Problem? Thanks Cedrik
Hi, I have implemented pie chart in my mashup. I need to get pop up with information related to the portion selected. In properties of pie chart I have observed that 1. There is no single click event in pie chart i.e, Only Double-click available. 2. There is no option to fetch which portion has been selected. 3. There is only tool tip available which will show the value, but no option to display value on the text. Please let me know, Anyone know how to implement feature which will display the data related to the portion of pie chart selected and to display value on the potion of pie chart.
Hi all, I am ThingWorx Industrial Connectivity to communicate my PLC with ThingWorx Foundation. However, I wanna to bind my TAGs from PLC with my charts in my mashup and when the TAGs values change, mu charts too change, in real time. How I do this?
Hi all, In my browser be show me the follow message "There are only 4 days left until your license expires. Contact your PTC account team" But I installed the ThingWorx Trial Edition yesterday. Does anyone know the reason for this?
I want to preview two different value sets on the same bar chart widget. Kindly refer attached image.
Hi, Am facing following error shown as popup says, "unknown error while running /default/json_utils '-configfile=/results-ms_reports.json' -property=version " I installed Thingworx 8.4 through Tomcat and Thingworx WAR file. And, I could able to run the same bundle in another server without any issue. What could be the issue in this? Regards, Janakiraman P
Hello, I am facing one issue like in the Timeseries chart when I select Show x-axis, Y axis values,legend and X-axis not showing. When I unchecked the ShowXaxis then Yaxis and Legend is showing.Data from the service is coming correctly and it use to work before. Can anyone please help me on this. Thanks in advance. Regards, Vamsi
Hi all, I have created a static mashup and where I have an image and two value display widgets. On that mashup, I have placed a panel widget so my image and value widgets went behind the panel. No on the panel I've placed another two value display widgets. See the attachment for better understanding and all the widgets (one image and four value display widgets) are getting data from an infotable. Now I want to hide the panel (which means panel and the widgets on the panel) by default and show the widgets behind the panel but when mouser over it, I want to show the panel and its widget. To do this, need css code. So pls share some codes to complete this.
Hi all, I am trying to import a customized XY chart from Eclipse into ThingWorx. I can import the extension successfully but the extension doesn't work. When I checked the application log, I see a message saying "export file missing version information. No migration will be performed." which I think may be the cause of this issue. Attached is the zip file for some reference. Any help will be greatly appreciated!
Hi, I found Operator Advisor supports nice GUI for making Work Instruction and managing Work Order but I cannot find the document regarding such GUI operation but only regarding technical like "ThingWorx_Operator_Advisor_Guide.pdf". Does anybody know or have it? Example is also welcome. Best regards Akira
I want to have a selection of several radio buttons. How do I use the 'radiogroup' feature to do this? For example, I just want two radio buttons, each with a label 'A' and 'B'. I have bound the radiogroup property to a service which returns two strings, but I only ever see the first one. Is that what the 'radiogroup' feature will do? I have already found this article (http://support.ptc.com/help/thingworx_hc/thingworx_8_hc/en/index.html#page/ThingWorx/Help/Mashup_Builder/Widgets/RadioButtonWidgetBeta.html) and it give no real explanation.
Hi, I created a custom extension to generate Excel files in Thingworx. I basically coded it in Java ( using eclipse by following the extension developer guide ). The extension uses Apache Poi and works fine on my local machine, where excel files are generated with the input data. But after importing the extension to Thingworx, when I run the extension ( through a service ), I get the below error: Error executing service processExcel. Message :: org/apache/poi/ss/usermodel/Sheet - See Script Error Log for more details. Nothing else is mentioned in the Script Error Log regarding this error. Since the extension works fine on my local machine and fails when imported into Thingworx, can someone help me by identifying the possible root cause of this error? I tried to google on this issue and it was mentioned to check the Jar files ( check if relevant Poi jar files are added to class path). I checked the JAR files and they seem okay. Any help soon, will be greatly
I have created a custom extension in Java to generate PDF file in thingworx using JSON String as input. I have used org.json.JSONObject in my java code for implementing the PDF logic. When I import the extension to Thingworx, import fails with the below error: [context: An unexpected server error occurred: org/json/simple/parser/ParseException][message: org/json/simple/parser/ParseException] If I run the code locally with harcoded string as input, the code complies and PDF gets generated. I am puzzled because I haven't used Json Simple in my code nor the Json Parser. Below is the code for my Thing template service: @ThingworxBaseTemplateDefinition(name = "GenericThing")public class CreatePDFTemplate extends Thing { private static Logger _logger = LogUtilities.getInstance().getApplicationLogger(CreatePDFTemplate.class); public CreatePDFTemplate() {// TODO Auto-generated constructor stub} // Process Report PDF (using pdfbox)@ThingworxServiceDefinition(
Hi, I am trying to import a custom extension ( coded in java to generate PDF files ) into Thingworx 8.4 While importing, I get the below error (see picture) and the import fails. The same extension file, when I import in another instance of Thingworx ( on another server ), gets imported without any errors. The Thingworx version on this server is Thingworx 8.3.2-b535. Can someone help me identify the problem?
Hi all, I'm trying to check if a thing exists before do other stuff.Actually I'm taking the "long road", invoking the SearchThingsByTemplate service, but it doesn't work as well, since seems that the "thingTemplate" is not accepted as String. (you can find the error log as attacched) ValueCollection thingParams = new ValueCollection(); thingParams.Add("maxItems", new NumberPrimitive(500)); thingParams.Add("thingTemplate", new StringPrimitive(thingTemplate)); var infotable = client.invokeService(ThingworxEntityTypes.Resources, ,"SearchFunctions", "SearchThingsByTemplate", thingParams, 5000); QUESTIONS: - How can i give a "ThingTemplate" to this service?- Can I check if a Thing exists in an other way? Thanks in advance!
How to use top and skip parameters in Thingworx? My service is returning only 25 results in one round. I want to fetch all records at a time ? Looks like the value we are providing in Top and skip is incorrect.
Hi,Need a help regarding how to make a geofence on openstreet map .I had tried the steps that had been mentioned for Google map widgets and Baidu but the same doesn't work on openstreet map .Please help me regarding this .Thanks in advance
Hello everyone. I have completed the Raspberry Pi Quickstart. I want to read the data from a vibration sensor connected to the raspberry through using the EMS and display that data on Thingworx . My Python file is running fine. When I run ./wsems and ./luaScriptResource everything connects fine. The problem is the value column doesn't update in Thingworx. Here is the PiTemplate.lua file: --PiTemplatemodule ("templates.PiTemplate", thingworx.template.extend)--hardware readingsproperties.cpu_temperature = { baseType="NUMBER", pushType="ALWAYS", value=0 }properties.cpu_freq = { baseType="NUMBER", pushType="ALWAYS", value=0 }properties.cpu_volt = { baseType="NUMBER", pushType="ALWAYS", value=0 }--sensor readingsproperties.sensor = {baseType="STRING", pushType="ALWAYS", value="Stable"} serviceDefinitions.GetSystemProperties(output { baseType="BOOLEAN", description="" },description { "updates properties" }) services.GetSystemProperties = function(me, headers, query, data)l
Hello, I recently upgraded an old Thingworx server from 7.4 to 8.1, and it is opening in limited mode when I believe I have a valid license. The App log says: "No new License capabilities from license server". and " Unable to fetch license file with device id xxxxxxxx" I did a disconnected license retrieval and have double checked my permissions/naming yet the license_capability_response.bin is getting ignored. Is there a way for you to check if my company is out of licenses? I'm a little unclear on how the licensing subsystem works. Any help you can provide would be great. Thank youConnor
Good afternoon, Is there any widget that allows me to navigate between tabs without using Tabs Bar? Let's visualize this with an example: In my Tabs Bar I have 3 tabs: plant layout, welding stage and coating stage. I can switch between tabs using the tabs bar but I would also like to be able to click in the different parts of the layout and navigate to the specific manufacturing stage. As you can see, I am searching for a widget similar to the Navigation Button but for tabs, not for mashups. Thank you very much, Rodrigo.
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.