Recently active
Is it possible to connect Sigma Tile to ThingWorx Composer 9.1? Translated by the Community Moderation using Google Translate ----------------------------------------------------------------------------------------------- É possivel conectar o Sigma Tille ao ThingWorx Composer 9.1
Hello all, I've been doing an install of Thingworx with CWC, and have been running into a strange error. Installer message:ERROR 2023-07-31 17:55:49.379 Install Applications - Error Code: 25002CORE Creating database entities: Failed to establish a connection to the database Script Log:THINGWORX APP INSTALLATION - CORE : Step #6 => Creating database entities; Failed to establish a connection to the database We're using Thingworx v9.3.1 Postgres, currently installed and working fine on an Azure Windows VM with a hosted DB. SQL Server is installed locally with a Developer license, with a blank DB and user made ready for Mfg Apps. We're using SP8_ThingWorx-CWC-310 for our CWC installer, following the clean install steps. The proper JDBC connector has been added, and we're able to run "VerifyMnfgAppsTableExistence" on the SQL entities that were created during the CWC install attempt. It correctly shows that we have no tables yet installed into the SQL DB, an
TLDR: Don't use a field name called "location" in your DataTable to save values of the datatype location. Just call it something else. I have been trying to store some data in a DataTable and run into an issue where whenever I try to retrieve the location field, it would always be 0,0,0. This was very confusing and I was clearly not the only person, here is an old post with a false solution:https://community.ptc.com/t5/ThingWorx-Developers/Unable-to-store-location-in-a-data-table/td-p/513471 The problem lies in the fact that when your datashape has a field definition called "location" of datatype location, then you are duplicating the internal field definition of a DataTable. Below is a screenshot of the default field definitions and you will see that there is a "location" field in there.Just change your DataShape to use a different field name (other than "location") and you should be fine.
Hi All, I keep getting this error: 'Error on server ' when I attempt to save permissions on a template whose children have remote connections. Is this a Thingworx error? Or perhaps is there some sort of security feature for remote connections that does not permit a user to save permissions on a template that has remotely connected children? Regards,
Hello all!I am using the KEPServerEx V6.I require some assistance to read the FANUC variables (#10000... also known as Pcode) from FOCAS protocol. Somebody know what is the syntax or the right way to do so? I am getting the FWLIB error: 3.
Hi, The application Log gets multiple times a minute this message:"Failed to dispatch the event. Invalid Thing in the Event or Thing got deleted Type.Thing:Entity.PersistentSessione1f7a041-a8fd-46f2-90f3-7f7bb03fa880:Event.AnyDataChange:PersistentSessione1f7a041-a8fd-46f2-90f3-7f7bb03fa880" Does anyone know where to look for a cause?, the information in de Warning doesn't tell me where to look. Origin says: c.t.s.s.e.QueuedEvents + Thread: websocket background processing + User : SuperUser Best regards,Emiel
Hi,we are using samsung tvs to view dashboards made with thingworx.Our TVs are now not loading the mashup anymore and are getting the error "internal exception 1".The mashups can also not be viewed in the designer.The cache has been deleted and everything that can be resetted has been.We are using the version 9.3 Regards,Thorben
Hi,according to the documentation the Grid Widget should have keyboard navigation. But it does not seem to be working. Pressing keys (arrow keys, tab etc.) is not doing anything. There seems to be no setting to activate the keyboard navigation. Am I missing something obvious? 🙂
Hi,I use the collection widget and set it to :view=flow; FlowLayoutGravity = edge. Its internal elements are left aligned. Is there a way to make internal elements right aligned?(ThingWorx 9.3.4-b1190 ) Thanks!JiabaoXiao
how to apply custom css on textfield textarea background-color.
Hello,How can we check whether property value is received in thingworx or not using Java SDK In Java SDK we create a connection with a web socket so there is any method to check property is updated or not
I need to add a header to my collections . When I set up header mashup, header display on every row. Is there a way I can have only one header ?
Hi, I want to use two way binding in thingworx with JAVA SDK program, when thing property change from thingworx how can I know in java SDK program.
How to install ThingWorx Apps Manufactory extension step by step? Would it be possible to install with 8gb of RAM? Translated by the Community Moderation using Google Translate Como instalar a extensão ThingWorx Apps Manufactory passo a passo? Seria possível instalar com 8gb de RAM?
Hello,I am facing an error when i try to use pop-up from a collection (mashup inside collection contain a button that open a pop-up). If i try to zoom in or zoom out, the pop-up is closing.Do you know if collection is refreshing on zoom action or what i can solve this issue?Thank you in advance, Alex
Hello,I am using collection widget for our mashup page. Inside collection we user navigation to open a pop-up.If the user will zoom out because is not seeing all the info on laptop screen, the pop-up automatically closed.What we can do for avoid refreshing collection widget when zoom in zoom out?Thank you,Luchiian Alexandru
1-> Can anyone explain me how to generate Work Orders? (I have succesfully genrated the production routes)an example will be helpful 2-> What are the difference between Job Order and Work Order?
Hi,I would like to monitor the user login data, such as user name, login time, logout time, and maybe even better with login PC's info (device name, IP address).There're similar info provided in Monitoring menu of composer as 'Connected Users', so is there a service I can get these info? By the way, sometime I saw one user has multiple records on this list and are all marked as "isConnected". So that means the same user is logged into the system via different sessions?Thank you!
I created a Job Order Notification service according to this instruction and I assigned in PTC.FSU.CORE.JobOrder.Endpoint_TG. When should this Job Order Notification be called? How can I check if this service is called and get its result?I am using Thingworx 9.3.9.
Hello,Can anyoe help me on how to add border and other css elements for the HTML table in the below service in thingworxThanks in advance!
I wonder when this service is executed? And how its arguments look like? What does it mean ProcessType? I want to use this mechanism but I dont know when this NotifyJobOrderStatusChange_END and my custom service (To use Job Order Notifications, a custom service must be created that will receive the Job Order Notification messages from the ThingWorx Applications.) are called 😞 Should I called it by some kind of Scheduler?
Hello,I'm working on a Sentiment Analysis project utilising a huge movie reviews dataset I obtained from here, and when I execute my code, I keep getting an out-of-memory issue. Here's an example of pertinent code from my code: import pandas as pd from sklearn.model_selection import train_test_split from sklearn.feature_extraction.text import TfidfVectorizer from sklearn.svm import SVC # Load the large movie reviews dataset data = pd.read_csv('large_movie_reviews.csv') # Preprocess the data # ... (code for data preprocessing) # Split the dataset into training and testing sets X_train, X_test, y_train, y_test = train_test_split(data['review'], data['sentiment'], test_size=0.2, random_state=42) # Vectorize the text data using TfidfVectorizer vectorizer = TfidfVectorizer() X_train_vectorized = vectorizer.fit_transform(X_train) X_test_vectorized = vectorizer.transform(X_test) # Train the Support Vector Machine (SVM) model model = SVC(kernel='linear') model.fit(X_train_vectorized,
I'm using the TWX Analytics clustering microservice for unsupervised machine learning. I was able to load the dataset, ran the clustering microservice, retrieved the PMML model and imported it to the Analytics Manager. How I can visualize my cluster data using ThingWorx?
There is 2 tab in this model popup the 1st tab label is in left and the 2nd tab label is in mid I am trying to add a left margin in the 1st tab label. but when I am trying to add using mashup property it applied to both the tab label. and I am not able to find the css path also to solve this issue
Dears, I have amount of bound tags(greater than 1000) needed to monitor. When any quality turns to bad or other status except good, subscription should be triggered to send info. How can I config event or subscription to get this with minimal impact on system stability. Thanks.
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.