pion 网络库:测试示例 Web 服务

发布于 2024-10-09 01:31:13 字数 485 浏览 4 评论 0原文

我正在使用 Pion Network Library 尝试构建一些 lighteight C++ HTTP Web 服务。

我已经成功构建了源代码,现在我想测试与该库捆绑在一起的示例 Web 服务。

我正在运行 PionWebServer 可执行文件,通过运行以下命令向其传递正确的参数以运行 EchoService:

./PionWebServer WEBSERVICE EchoService

然后导航到:

http://localhost:8080

我收到 404 资源未找到错误。有没有人设法获得任何与 Pion Network 一起使用的 Web 服务示例?我做错了什么?

I am using the Pion Network Library to try to build some lighteight C++ HTTP web services.

I have succesfully built the sources, and I now want to test the sample web services that come bundled with the library.

I am running the PionWebServer executable, passing it the correct arguments to run the EchoService by running:

./PionWebServer WEBSERVICE EchoService

I then navigate to:

http://localhost:8080

and I get an 404 resource not found error. Has anyone managed to get any of the web service examples working with Pion Network?. What am I doing wrong?

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

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

发布评论

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

评论(2

凡尘雨 2024-10-16 01:31:14

我正在使用 pion 4.0.5。

使用

./PionWebServer -d {defaultPionInstallDir}/pion/share/pion/plugins echo EchoService

-d: 编译服务所在的目录(需要)

第一次这样做时,我只有静态编译的库(.a)。但 PionWebServer 正在寻找动态库。所以我用动态库重新编译了 pion 项目。

EchoService 将在以下位置提供:

\\\host-ip:8080/echo

I' am using pion 4.0.5.

Use

./PionWebServer -d {defaultPionInstallDir}/pion/share/pion/plugins echo EchoService

-d: dir where your compiled service is located (NEEDED)

First time I did this I had only statically compiled libs (.a). But PionWebServer was looking for dynamic libs. So I recompiled the pion-project with dynamic libs.

EchoService will be available at

\\\host-ip:8080/echo
左岸枫 2024-10-16 01:31:13

尝试

./PionWebServer /echo EchoService

然后访问 http://localhost:8080/echo/foo /bar?query=baz 应该可以。

Try

./PionWebServer /echo EchoService

Then access to http://localhost:8080/echo/foo/bar?query=baz should work.

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