Labview 中的 .NET 对象

发布于 2024-08-06 13:00:13 字数 78 浏览 6 评论 0原文

我想使用一个.NET Web服务,它返回labview中某个类的对象。如何将返回对象转换为labview对象。目前它只返回一个字符串。 谢谢

i want to consume a .NET web service which returns an object of some class in labview. How do i convert the returning object into a labview object. Currently it just returns a srting.
Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

蓦然回首 2024-08-13 13:00:13

您使用过 LabVIEW 的导入 Web 服务功能吗?它位于“工具”->“工具”中。导入菜单。它应该负责为您转换数据类型;除非数据很复杂或以某种方式编码。有关使用导入功能的帮助,请参阅此页面:http:// /zone.ni.com/devzone/cda/tut/p/id/4728#toc4

这应该创建一个包含 VI 的 lvlib,该 VI 将以 LabVIEW 格式返回数据。

尝试导入下面的 WSDL,然后创建一个 VI,将打开的 vi 连接到 checkcc vi,再连接到关闭的 vi。 CheckCC vi 的输出由导入函数创建,是一个由字符串和布尔值组成的簇。

https://secure.cdyne.com/creditcardverify/luhnchecker.asmx?wsdl

Have you used the Import Web Services feature of LabVIEW? This is located in Tools -> Import menu. It should take care of converting the data type for you; unless the data is complex or encoded some how. For help using the import function, see this page: http://zone.ni.com/devzone/cda/tut/p/id/4728#toc4

This should create an lvlib containing VIs that will return the data in a LabVIEW format.

Try importing the WSDL below and then create a VI that connects the open vi to the checkcc vi to the close vi. The output of the CheckCC vi is created by the import function, and is a cluster consisting of a string and a Boolean.

https://secure.cdyne.com/creditcardverify/luhnchecker.asmx?wsdl

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文