Recently active
Hello,I want to validate a ThingName in thingworx. Like In Mashup, when I type a thing name in textbox field and enter on click button, the validator function should be check the thing which we have enter in textbox field is already available or not, if yes the message should be Thing Created Successfully and if not then should be Thing Already Exist.So how can we do that? Thanks.
ThingWorx Video Tutorials - PTC Community
HI, I am starting with Thingworx. I have a query as I am getting service response as jsonarray and i want to validate one parameter of each object in Jsonarray. how to do that using validator. i tried to create one parameter in validator and using expression i am validating it but validator is called for first object of array and it validates the first object only but how to validate the remaining items in Array? Appriciate help in advance. Thanks.
Hi,I have contained mashup in which i have label widget binded to the mashup. During the initial load of the containing mashup the values from kepware tag are not displayed. but if the value from kepware is changed after load, the values are updated on the label widget.Is this a known issue or some bug that i need to fix?
Hello all,I have some confusion could you please suggest which approach is best. 1. In migration project, first create the empty Database and proceed with Thing Worx Installation and then Importing the Custom apps. 2. In migration project, first create Database and restore the DB files into Database which have taken from Production and then proceed with Thing Worx Installation and then Importing the Custom apps like into Thing Worx.
Hi Developers, In my use case I have t1 and t2 thing. I want to pass all t1 Thing properties, services and subscriptions to the t2 Thing. Is it possible? If yes then how can we do this? Thanks.
Hi,I have logged property into a value stream and using QueryPropertyHistory service I am able to have a view at the recorded data of the logged properties. What next I wan to achieve is how can we calculate the number of times a value of a property repeats in the data recorded, upto a particular date. eg, I have property called stepValueStatus which has a string value pass/fail. So I want to calculate how many times pass occurs and how many times fail occurs for this stepValueStatus property. Thanks in Advance. Regards,Aditya Gupta
Hi,The TwxRuntimeKey is not deleting and its still there for older days. someone help me to resolve this issue. Thanks,Bharathan
Hi, Am trying to load a pdf file directly from the local directory using hyperlink, when the hyperlink clicked I wanted that file to be displayed on a new tab. url : file://abc.powerdrills.com/Works/1243/pdf/1243.pdf when I embed this url in link widget and try to hit, nothing happens.then I used button to trigger link but the new tab comes blank.Above mentioned url is accessible thru browser if I copy to browser directly. How can I load this file from local server to thingworx application? I even tried to read as binary but no luck, am getting error in the url. please help here thanks,John
I need to install Thingworx Foundation using an already existing persistent DB (both Foundation and DB are at release 9.5.0). Ideally, I would be able to run the Foundation installer and point it to the already existing DB. It would see that the DB is already set up and bypass the initialization steps.
is it possible to install ThingWorx 9.4 on Windows Server 2012???? -------------------------------------------------------- Translated the text from Portuguese to English using google translate. By Community Moderation Team. Old Subject: ThingWorx Instalação Requisitos de sistemasOld Subject: é possível instalar o ThingWorx 9.4 no Windows Server 2012????--------------------------------------------------------
Hi, I need to move a json file from thingworx repository to another server(non thingworx), is there an option to do by thingworx services? thnaks,John
Hi Community team, I have two widgets one date picker and another one button to come up in modal popup but the css i have applied is not visible there which is showing up when I'm normally opening the popup mashup as in not from navigation. version is 8.5.7 Thanks,Shraddha
Hi, I was working on the Line Chart. I don't see many options to remove the extra padding and space in the LineChart and the Reset Area in the Line Chart. ChartType: Area ChartThingworx version: 9.3.6 Thanks,
I've been utilizing a "Mail Server Thing" to send emails on a 24-hour schedule. Lately, I've encountered issues with some emails failing to send. It appears that the code lines are executing properly, but certain schedules aren't triggering, resulting in missed emails. I'd appreciate assistance in tracking the behavior of the SMTP for each schedule. This way, I can log the activity in the ThingWorx log file for auditing purposes. Thank you in advance for your help.
Waites protocol implementation in thingworx and its compatibility
This is my Query which returns the result in Infotable. SELECT COUNT(*) AS TotalCount FROM dbo.ML1QualityDataTable WHERE lineName = [[lineName]] AND CAST(qualityCheckTimestamp AS DATE) = CAST(GETDATE() AS DATE); Result of Query: Now here is my service which executes the above service and get the result but here i am unable to get the result as an output. How to read this output of query from the JS service. Mydatashape contains only one field named TotalCount of infotable type. let mergedInfotable = Resources["InfoTableFunctions"].CreateInfoTableFromDataShape({ infoTableName: "InfoTable", dataShapeName: "V2.TotalCount.DS" }); let ab = Things['V2.MYSQLDatabaseController'].SQLQuery_GetTodaysEntriesCount({ lineName:'ML1' }); let a= mergedInfotable.AddRow(ab.rows[0]); let result=a; logger.info(ab.rows[0]); i get this error:- Error executing service ComputeKey. Message :: Unable To Convert To Val
Hi,I uploaded a font-family into System Repository and use that in CSS to change the font-style of my labels. But this only works for users with administrator rights/permissions. What must be done to apply the css (which refers to the SystemRepository/fonts) for non-admin users?Please refer to the attached CSS image.
Hi,We have a mashup where we are navigating between some of the items in the menu with the help of different clicks in other mashups (the navigateion function). When navigating this way, the menu item that you are on are not being selected. The menu items are neither selected when refreshing the browser window. I have found out that the items are only selected when directly clicking them. So my question is, is there a way to select menu items programatically, if not, can someone explain what are triggeringt the selection in the first place? From what I can tell the selected attribute is added to the item. Kind RegardsOskar Berntorp
Hi,I am trying to create a Remote FileTransfer Thing. I have created the program in the .NET C# sdk. I have also created the thing in thingworx. It can connect perfectly but my service SendFile and GetFile are not found. The output in the service execusion window says " Unable to Invoke Service GetFile on FileTransfer.Thing : null". In CMD it says that Error in VirtualThing processing of Service request from Platform. Service Handler For [GetFile] Does Not Exist On Thing [FileTransfer.Thing] EntityName: FileTransfer.Thing ServiceName: GetFile.From what I can see the service definition is correct, I have attached necessary files.So. I wonder if someone could explain what is wrong here.Kind RegardsOskar Berntorp
Hi Developers, I'd like to convert blob data to string and convert to string data to blob. may I get your help to do the above ? let blob_data = LoadBinary( { path : "/image.png" } );//convert blob data to string to write it to SQLlet str_data = {something function for the conversion}
Hi,I have a service that I am utilizing to save files, I have a remote thing written in C# calling it. Among the fileName and type, I also have the fileData as a parameter of type string, this string is a base64Encdoded blob (byte array).When I run the base64Encoded byte array througth base64DecodeBytes, I get this error: JavaException: java.lang.Exception: Unable To Convert From org.json.JSONObject to BLOB Basically, I am doing something wrong, how do I decode a base64 string into it's underlying byte array so it can be saved with saveBinary? What I think is odd is that the error talkes about a json object, when the FileData parameter is a text type and is a base64 string, When trying to send the byte array as a string in the json request and sending the file into the saveBinare function, I get this error: JavaException: java.lang.Exception: Invalid lengthKindlyOskar Berntorp
I am trying to integrate Codebeamer with slack and in the process the bot user token is showing invalid. The slack team has confirmed that the token is valid and that the problem is from the codebeamer side. Can someone please help me with this issue. The token is showing invalid in codebeamer for me.
Hello Community, I was wondering if there is any way of "showing" linnear regression in a chart line? I can only find the "HideLines" property on the line chart (scatter plot type) widget. Here is an example using the g2plot library for further explanation: https://g2plot.antv.antgroup.com/en/examples/scatter/scatter/#line Regards, Jens C
Hi, I am working on a Thingworx and One Drive Integration. Do we have an extension with Thingworx to integrate with One Drive or a way to do it? 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.