pion 网络库:测试示例 Web 服务
我正在使用 Pion Network Library 尝试构建一些 lighteight C++ HTTP Web 服务。
我已经成功构建了源代码,现在我想测试与该库捆绑在一起的示例 Web 服务。
我正在运行 PionWebServer 可执行文件,通过运行以下命令向其传递正确的参数以运行 EchoService:
./PionWebServer WEBSERVICE EchoService
然后导航到:
我收到 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:
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我正在使用 pion 4.0.5。
使用
-d: 编译服务所在的目录(需要)
第一次这样做时,我只有静态编译的库(.a)。但 PionWebServer 正在寻找动态库。所以我用动态库重新编译了 pion 项目。
EchoService 将在以下位置提供:
I' am using pion 4.0.5.
Use
-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
尝试
./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.