使用 Python 在正在运行的 Windows 服务(进程)中调用 RPC 函数

发布于 2024-08-06 23:36:35 字数 426 浏览 6 评论 0原文

我有 Windows 服务(充当服务器),我想使用 Python 脚本进行测试。该服务是用 C++ 编写的,并公开了其他服务使用的多个 RPC 函数。我想使用我的 Python 程序模拟那些其他服务,并从脚本中调用这些 RPC 函数。这是第一阶段。当服务器服务通过另一个 RPC 调用响应其调用者服务时,就会发生第二阶段。在 Python 中如何做到这一点?

如果 Python(或其任何扩展)无法调用/接收 RPC,如果我更改主服务器服务代码并添加任何必要的代码,这是否可以完成,这最终将调用 RPC 用于执行的相同功能但可以从Python调用吗?

笔记: 服务器服务使用通过 IDL 文件实现的原始 Windows RPC 来实现 RPC 功能。其他对使用这些 RPC 感兴趣的服务(也是用 C++ 编写的)正在使用 IDL 文件来生成进行通信所需的接口。使用 XML-RPC 或其他技术不是一个选择。

I have Windows service (acts as a server) that I want to test using Python scripts. This service is written in C++ and exposes several RPC functions that other services consume. I want to mock those other services using my Python program and call those RPC functions from the script. This is the first stage. The second stage happens when the server service responds to its caller service by another RPC call. How can this be done in Python?

If Python (or any of its extensions) can't call/receive the RPCs, can this be done if I change the main server service code and added whatever code is necessary, which will end up calling the same functionality the RPCs used to execute but will be callable from Python?

Note:
The server service implements the RPC functions using raw Windows RPC implemented with IDL files. Other services, which are written in C++ too, interested in consuming those RPCs are using the IDL file to generate the needed interface to do the communication. Using XML-RPC or other technologies aren't an option.

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

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

发布评论

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

评论(1

走过海棠暮 2024-08-13 23:36:35

您正在考虑哪种 RPC?如果是 XML-RPC,那么 Python 带有 SimpleXMLRPCServer 模块,那么, ,允许您用 Python 编写 RPC 服务器。

如果远程服务器使用DCOM,则可以使用PythonCOM

What kind of RPC are you thinking of? If it is XML-RPC, then Python comes with the SimpleXMLRPCServer module, which, well, allows you to write RPC servers in Python.

If the remote server uses DCOM, you can use PythonCOM.

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