Recently active
Hi,I have a connection with a device through SNMP v2c. By default Kepserver allows me to receive a maximum of 100 trap events, but I need it to allow me to receive 200 trap events. Is there a license that increases the number of trap events?
Hi Team, I have two datasets displayed in two different grids, I need to make one scroll bar that works for both of them. any suggestions? Thanks,
We use Kepware to collect data from Mitsubishi Q-series PLCs and process it in ThingWorx.I'm trying to set the device using the Mitsutubishi Ethernet driver and get the data from the PLC's data register as a string, but I can't select "String" from the data type in the Kepware property editor.An integer can be obtained by selecting the "Word" data type.Is there a way to get the string using Kepware? Or do I have to create a service that takes an integer in Kepware , converts the integer to ASCII code and generate strings in ThingWorx? Thanks
Anyone know if 9.3 grid JSON configuration has the ability to set the location of the filter and reset buttons? The old advanced grids allowed for this by using the below JSON string parameters: "search": { "multiColumn": { "enabled": true, "location": "bottom-right" } }, "resetButton": { "enabled": true, "location": "bottom-right" } However the 9.3 grid configuration documentation does not show the ability to set location. I've tried something like this but now luck. Anyone have a way to set the location of these two features? "resetButton": { "location": "bottom-right", "enabled": true }, "filter": { "show": true, "location": "bottom-left" }, (Note: I have found the documentation to be either inaccurate or non-exhaustive. Wondering if there is something missing in the documentation or if this functionality was disabled.)
Hello I come to know about dynamic grid config while creating one of my business usecase.I am looking for documentation regarding the dynamic configuration of the grid widget using the JSON configuration binding.Can anyone please share if there is any example or sample entity present ? Thanks
Hello I want to implement Filters on My grid data , I tried to do it via some service but not able to do it . For search operation i have made a text box on the basis of one service.Can anyone please help me what is the best way to achieve it? Thanks
After a SQL vm reboot, tomcat won't start. get the following error. used the following article with no luck. https://www.ptc.com/en/support/article/CS307146?_gl=1*bwkc9a*_ga*MTM5MzM0Mzg4Ny4xNjUyNDU1Mjg4*_ga_1QBT6P6HR1*MTY3NjAzMzc0MS4yNi4xLjE2NzYwMzQwMzMuMC4wLjA.
Hi all, i am wondering if there is a way to only activate the background-color for this widget only if the X value is appearing on the right side of the column.
Hello community,I am new here and would like to introduce myself first. My name is Steffen and I work as a project manager. I live in Germany in Baden Württemberg. I have recently deployed a WinCC process control system in our production plant in Toronto/Canada to connect the production machines to the SAP MES system. In this case, the WinCC takes over the man in the middle function and reports the individual plant states and operating modes to the SAP world. Automatic product changes are also triggered from SAP and the machine then receives all production-relevant data from WinCC. The network setup looks like this. There are 31 PLC stations of the type Omron CJ2M with the FINS Ethernet driver and 17 Omron NJ stations that are coupled to the Siemens WinCC OPC UA with the NJ Ethernet driver.The individual PLC stations are collected using a Meraki switch and then connected directly to a redundant server system using two network cables.So far so good.....The communication is established a
Hello Everyone,I'm facing an issue with the label chart during runtime. Xaxis labels are showing alternatively when the mashup is viewed in chrome (100-67% Zoom), with zoom less or equal 50 all labels are showing. Has anyone faced this issue before? How can I show all the labels even with 100% zoom on all screens? Please share your valuable inputs.Thanks in advance,Regards,Bhavya P C
Hello, i'm using Thingworx version 9.1.10-B931 and got following problem: The query from the Chip Based Data Filter Widget is binded to a Service that uses this query as input.The QueryChanged Event triggers my Service. Everything works fine until i delete / unselect all my filters.The last known query before removing all filters at the filter widget will be applied to my service but i want an empty query and not the last know filter. For me this is a bug because if no filter is selected then the query have to be empty or set to default and not the last know filter / query.
Is style theme part of widget property .?
Hi there, I would like to use a normal thingworx button widget as a back button. This is for design reasons, because in a normal button, you can insert a custom icon.Unfortunately JS history.back() does not work in an expression. Does anyone know a way to do this without the back button widgets?Case no:In the back button widget is theoretically included in icon. However, this is white for me and I also do not get it visible. Does anyone know the parameter that sets the icon color? Thanks alot!
Thus I wrote a binary search tree in C that uses this struct: struct tnode { int content; struct tnode *left; /* left tree part */ struct tnode *right; /* right tree part */ }; My primary method: int main() { struct tnode *Baum = NULL; struct tnode *tmpPos = NULL; Baum = addelement (Baum, 32); Baum = addelement(Baum, 50); Baum = addelement(Baum, 60); tmpPos = searchnode(Baum,50); } So, in essence, this generates a Binary search tree with three components (32,50,60). According to this post, my searchnode function is intended to move a reference to the "50" so that I may delete it afterwards. My searchnode Method, on the other hand, only provides the pointer if the element I'm looking for is the root of my binary search tree.searchnode: struct tnode *searchnode(struct tnode *p, int nodtodelete) { if (p == NULL) { printf("Baum ist leer oder Element nicht vorhanden \n"); } if ( p -> content == nodtodelete) { return p; } if (p->content >
I have two servers running KepServerEX, LinkMaster and Redundancy Master. They are a redundant pair to ensure uptime. I am looking to upgrade these server's to a new OS (Windows 2019 Server Datacenter). I know Redundancy Master does not work properly on anything past Windows 2016. I am looking for options to replacing the functionality of these obsolete software packages. I am trying to avoid different vendors if at all possible. I specifically need the ability to write data from one PLC in the mill to another. Most of these are between ControlLogix Processors and I need to be able to get data into specific programs, which LinkMaster does easily. I use Redundancy Master to mirror DCS connectivity servers for KepServerEX and LinkMaster, so that if we have to take down one server in the pair, the OPC data can continue to be provided. The nice thing about Redundancy Master is that it is seamless to the other applications. I have looked though t
Hi Developers, I have a requirement to take 3 different data sources (1 label and 2 grids) and export an excel from it.I am not able to get csv with edited column along with its other original entire grid columns.Please provide service to achieve this, if someone has any.
ERROR: relation "system_version" does not exist_ Position: 128
Hello everyone This is my first time on this site. It's been 10 days since then, but I haven't been able to get a trial version of the program. How do I get a link to download the trial version of Thingworx Foundation 9.1 or 9.2 or 9.3? Who can tell me?
Hello , I am unable to connect ThingWorx with external DB . I am getting following error when I try to make connection.[L: ERROR] [O: E.c.q.l.c.Logger] [I: ] [U: Administrator] [S: ] [P: ] [T: https-jsse-nio-8443-exec-2] Unable to start thing TestDB, JDBC Driver Class Not Found: oracle.jdbc.driver.OracleDriver Any help would be appreciated. Thanks
Currently I have a Thingworx Platform installed and licensed on a server. I need to reset the server to factory default (reinstall the OS etc) , all data will be cleared. After that I will need to reinstall the Thingworx and get it licensed again. Am I supposed to remove the currently activated license first before proceed to reset the server? Is there any guide which I can refer to?
How to remove unwanted String that is displaying in excel file which is developed using java(Eclipse Plugin for ThingWorx Extension Development I am getting unwanted string at specific line number as for example : ??????????I am not passing this string "??????????" anywhere in the code. InputStream in=TestThingShape.class.getResourceAsStream("demo.xlsx"); I am not sure about where demo.xlsx is placed in the Thingworx server.Please help me over here.
Hi community. Does anyone can give me a hint on why am I getting "bad VARTYPE" as the item value on the Quick OPC Client whenever I try to read a tag on a Siemens PLC S7-1200 over ethernet. It is suposed to be a number
Hello, I need to use Thingworx and docker in an environment whose network connection is limited. In this case my automatic license verification obviously doesn't work. I need to ask network admin to unblock/whitelist specific URL and port. What URL and port is used to validate the license? I cannot find this information anywhere.
GUIDE CONCEPTStep 1: Completed ExampleStep 2: Create Mashup Widget Extension ProjectStep 3: Widget Lifecycle in the Mashup BuilderStep 4: Widget Coding Examples Quickly Build Mashup Widget Extensions and Extend Application Functionality with the Eclipse Plugin. GUIDE CONCEPT Extensions enable you to quickly and easily add new functionality to an IoT solution. Mashup widget extensions can be utilized to enhance a user's experience, your ability to develop robust applications, and make development easier as you move forward with your IoT development. The Eclipse Plugin for ThingWorx Extension Development (Eclipse Plugin) is designed to streamline and enhance the creation of extensions for the ThingWorx Platform. The plugin makes it easier to develop and build extensions by automatically generating source files, annotations, and methods as well as updating the metadata file to ensure the extension can be imported. These features allow you to focus on de
Hi, Is it possible to generate a random Boolean using the Simulator Drive?I would like to Simulate a Tag that's value will swap between True/False. Thanks Tim
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.