问题标签 [thingworx]

For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.

0 投票
3 回答
1479 浏览

java - PTC ThingWorx 平台是否支持 Java 企业应用程序和数据库移植?

只是想知道基于物联网的 ThingWorx 平台是否支持生产中的 Java 应用程序和数据库移植。

我已经在 Google App Engine 上工作过,它支持可用于选定数据库的数据库(带有数据转储)移植。

如果我有基于 Java rest api 的项目并将其移植到 ThingWorx 平台以利用 M2M 通信,那么所有需要做的事情。

0 投票
3 回答
757 浏览

xml - 未能在项目温度事物上执行目标:无法解析项目 com.ptcmanaged.thingworx:temperature-thing 的依赖关系

当我运行mvn package我得到这个错误。知道如何解决这个问题吗?

0 投票
0 回答
518 浏览

java - Tomcat 无法写入 aws EB 上的文件系统

我正在使用弹性beantalk 在tomcat 上部署一个war 文件(Thingworx Iot Software)。该软件正在尝试在我已授予 tomcat 写入权限的几个文件夹(位于服务器根目录)下创建一些文件夹/文件。

这是我得到的错误:

我在 AWS EB 设置上运行 Java 8 和 Tomcat 8。

像它这样的接缝应该只是一个简单的权限问题,但据我所知,我已经正确地完成了所有这些。我错过了什么?

0 投票
2 回答
391 浏览

java - PTC Thingworx: java null pointer exception

TW 6.5.5 with postgres properly configured, after proper deploying of war file, provide a java null pointer exception. It seems tied to improper credentials (check application.log below) but also folow instructions retrieved on the web to manage the modelprovideconfig.json file, still no chance to have it working properly. Any idea?

0 投票
1 回答
191 浏览

javascript - Wrapped java.net.UnknownHostException: file: unknown error Cause: file: unknown error for PTC thingworx service script to parse xml file

我在 PTC thingworx 服务 var params = { url:"file:///C:/Users/ShaurabhKumar/Documents/MATLAB/AGENT.xml", timeout:160 }; 上尝试了以下 javascript

收到以下错误 Wrapped java.net.UnknownHostException: file: unknown error Cause: file: unknown error

谢谢

0 投票
1 回答
206 浏览

twilio - Twilio 并发症

我目前正在尝试将 Twilio 与我的 Thingworx 平台一起使用,以在传感器被触发时发送短信。

当我将传感器设置为活动触发状态时,短信然后向我发送垃圾邮件并且在我手动将其设置为 false 之前不会关闭。

是否有脚本可以将 twilio 短信变为假,或者它向我发送垃圾邮件的原因?

谢谢

0 投票
1 回答
790 浏览

thingworx - Thingworx:使用 REST API 获取仪表状态

我创建了简单的混搭

测量

我想使用 REST GET 请求在图片上获取仪表的状态。你能告诉我这样做的模式吗?

0 投票
1 回答
674 浏览

thingworx - Thingworx: GET method not allowed

Here in tutorial is written:

The following API call executes the service GetBlogEntriesWithComments that is associated with the Thing called ThingWorxTrainingMaintenanceBlog. http://localhost/Thingworx/Things/ThingWorxTrainingMaintenanceBlog/Services/GetBlogEntriesWithComments

By this example I created Thing CarA and I want to call default service but I get 405 error code 'not implemented'

Any ideas what I am doing wrong?

0 投票
3 回答
772 浏览

thingworx - ThingWorx:在混搭网格中加入表

我有数据模型,其中car有一些sensors. 传感器是Thing其具有属性的对象的别名,不能表示为单列,我希望传感器表示为name传感器对象的一个​​属性。我怎么能做到?

在此处输入图像描述

0 投票
2 回答
1524 浏览

thingworx - Thingworx:自定义“GetImplementingThings”服务

我是 ThingWorx 的新手,我想在此示例中获得一些实现服务的实用风格。我有这样的数据模型:

事物“汽车”具有事物“传感器”(信息表)

我想要 CarTemplate 服务,它将返回所有已实现的汽车,而不是传感器的对象,它将返回传感器的“名称”属性。

我现在拥有的:

我想要的是:

请帮我实现它。