远程实施 c++通过php编程

发布于 2024-12-12 03:52:29 字数 157 浏览 0 评论 0原文

最近我一直在研究基于网页的远程控制。该函数已经由 C++ 完成,现在我正在尝试找到一种将该函数链接到我的网页的方法。 我尝试使用soap,但现在几乎放弃了,因为这些“无法加载wsdl文件”和“http get方法未实现”错误

除了使用soap之外,还有其他方法可以做到这一点吗? 干杯

Recently I've been working on web page based remote control. the function is already there done by c++ and now I'm trying to find a way linking this function to my web page.
I tried using soap and now almost give up because of those "cannot load wsdl file" and "http get method not implemented" errors

Is there any other way to do this beside using soap?
Cheers

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

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

发布评论

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

评论(2

情话墙 2024-12-19 03:52:29

您真的想使用 PHP 吗?

您还可以将网页内容放入 C++ 应用程序中,使其成为(快速)cgi 应用程序,或者使用 wt 等框架CppCMS

Do you really want to use PHP?

You can also put the webpage stuff in the C++ application and make it a (fast)cgi application or by using a framework like wt or CppCMS

说谎友 2024-12-19 03:52:29

这听起来很笼统,所以这里有一些可能的方向:

  • 将 C++ 绑定到自定义 php 模块
  • 使用 php 系统调用 C++ 二进制文件('')
  • 在 C++ 守护程序中维护控制套接字 (TCP / UDP /...) 并从 PHP 进行连接
  • 集成 C++在除 PHP 之外的其他应用程序框架中(.Net,...)

至于肥皂错误,您使用什么将 C++ 包装到 SOAP 提供程序中?

This sounds rather general so here are some possible directions:

  • Bind C++ to a custom php module
  • Call C++ binary with php system('')
  • Maintain a control socket (TCP / UDP /...) in C++ Daemon and connect from PHP
  • Integrate C++ in other Application Framework than PHP (.Net, ...)

As for the soap errors, what did you use to wrap your C++ into a SOAP Provider?

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