tcp套接字服务器测试html5websocket

发布于 2024-12-17 05:30:53 字数 348 浏览 0 评论 0原文

哪个是测试 html5websocket 的最佳 tcp 套接字服务器?我开发了一个基于 html5socket 的客户端,它将与 tcp 交互。所以我首先想要一个测试服务器。我擅长 PHP,但不擅长套接字编程。所以我使用了从google code下载的PHPwebsocket。我尝试使用它自己的客户端和服务器进行测试,但它突然断开连接并且无法按预期工作,那么是否有其他套接字服务器来测试 HTML5 websocket 客户端?哪一个更好,我可以使用基于 python 或基于 java 的 tcp 服务器,或者如果使用 PHP 那么会更方便。请告诉我还需要什么来测试 HTML5 websocket。我是套接字新手。所以我的概念不是很清楚。

感谢您的任何建议。

Which is best tcp socket server to testing html5websocket? I developing a html5socket based client that will interact with tcp. So I want first a testing server. I am good in PHP but not in sockets programming. So I used PHPwebsocket downloaded from google code. I tried it using its own client and server for testing but it suddenly disconnects and not work as intended so is there any other socket server to test HTML5 websocket client? Which one is better, I can use a python based, or java based tcp server or if in PHP then that can be more convenient. And please tell me what else I need to test HTML5 websocket. I am newbie in sockets. So my concepts are not so clear.

thanks for any advise.

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

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

发布评论

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

评论(2

荒岛晴空 2024-12-24 05:30:53

如果您想自行托管,则:

您可以连接到 Pusher 托管的 WebSocket API 以查看是否可以连接。有关端点和 Pusher 协议的更多信息,请参见此处:
http://pusher.com/docs/pusher_protocol

您需要注册一个免费的 Pusher 沙盒帐户不过要做到这一点。

If you want to self host then:

You could connect to the Pusher hosted WebSocket API to see if you can connect. More information on the endpoints and Pusher protocol here:
http://pusher.com/docs/pusher_protocol

You would need to sign up for a free Pusher sandbox account to do this though.

就像说晚安 2024-12-24 05:30:53

你说你想“与tcp交互”。您有具体的协议吗?如果使用 JMS、XMPP 或 AMQP,Kaazing WebSocket 网关会在浏览器中开箱即用地提供这些行业标准 API 和协议。例如,使用 JMS,您可以构建相当复杂的消息传递应用程序,而无需一行服务器端代码。一切都可以在客户端中运行(通常在浏览器中的 JavaScript 中)。

这里是一些示例,展示了将丰富的业务协议一直扩展到浏览器的强大功能。

此外,Kaazing网关还附带免费开发许可证;功能齐全的服务器,最多可容纳 50 个并发连接,没有功能或时间限制。

You say you want to "interact with tcp". Do you have specific protocols in mind? If using JMS, XMPP, or AMQP, the Kaazing WebSocket Gateway provides these industry standard APIs and protocols in the browser out-of-the-box. For example, using JMS, you can build pretty complex messaging applications without a single line of server-side code. Everything can run in the client (typically in JavaScript in the browser).

Here are some examples showcasing the power of extending rich business protocols all the way to the browser.

Also, the Kaazing gateway comes with free development license; fully functional server for up to 50 concurrent connections, no functionality or time restrictions.

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