使用 C++ 在 Web 上发布数据脚本

发布于 2024-11-02 09:38:42 字数 115 浏览 3 评论 0原文

我正在使用 TestComplete 7。在此配置中,我必须在指定的 IP 和端口地址的 Web 上发布 XML。我正在使用 C++ 脚本语言。我该怎么做?或者是否有其他方法可以使用界面而不需要脚本来执行相同的操作?

I am using TestComplete 7. In this for configuration I have to post XML on web at specified IP and port address. I am using C++ Scripting language. How can I do this? or if there is other way to do same using interface and without scripting??

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

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

发布评论

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

评论(1

不乱于心 2024-11-09 09:38:42

看起来您需要这样的东西:

  XmlHttpRequest = new ActiveXObject("MSXML2.XMLHTTP.3.0");
  XmlHttpRequest.open("POST", "http://camera.ip/configuration_page", false);
  XmlHttpRequest.send("<?xml version="1.0" ?> <Config> <Video_Input_Source>IP CAM 3</Video_Input_Source> </Config>");

This is JScript。该代码将在 C++Script TC 项目中运行。
但是,如果将代码放在 C++ 应用程序中的“new ActiveXObject”语句中,则可能会出现问题。因此,您需要修改代码以使用不同的方式在 C++ 应用程序中创建相同的“MSXML2.XMLHTTP.3.0”对象。这个想法保持不变。

Looks like you need something like this:

  XmlHttpRequest = new ActiveXObject("MSXML2.XMLHTTP.3.0");
  XmlHttpRequest.open("POST", "http://camera.ip/configuration_page", false);
  XmlHttpRequest.send("<?xml version="1.0" ?> <Config> <Video_Input_Source>IP CAM 3</Video_Input_Source> </Config>");

This is JScript. This code will work in a C++Script TC project.
But there may be problems with the "new ActiveXObject" statement in a C++ application if you put the code there. So, you will need to modify the code to use a different way to create the same "MSXML2.XMLHTTP.3.0" object in your C++ app. The idea remains the same.

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