使用 C++ 在 Web 上发布数据脚本
我正在使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
看起来您需要这样的东西:
This is JScript。该代码将在 C++Script TC 项目中运行。
但是,如果将代码放在 C++ 应用程序中的“new ActiveXObject”语句中,则可能会出现问题。因此,您需要修改代码以使用不同的方式在 C++ 应用程序中创建相同的“MSXML2.XMLHTTP.3.0”对象。这个想法保持不变。
Looks like you need something like this:
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.