从网络浏览器在 LAN 上发送 udp 数据包
我构建了一个简单的 TAPI 应用程序,它将在连接到办公室 PBX 的 LAN 上的计算机上运行,它允许我接收拨号、应答、挂断等命令(我计划通过 udp 数据包接收)。我这样做的目的是将办公室 CRM 系统集成到电话系统中。
完成此操作并使用简单的 python 应用程序发送 udp 数据包进行测试后,我发现自己想知道如何将 udp 数据包发送到此应用程序,因为 CRM 系统是用 php/javascript 编写的 Web 应用程序。
我们在办公室使用 Firefox,所以我打算从 Firefox 扩展开始,但我想我应该问一下,看看是否有人有使用 java 或 flash 的浏览器或浏览器扩展通过局域网发送 udp 数据包的经验/插件。
或者当网络应用程序在线托管时,是否有更好的跨浏览器方式将命令发送到网络电脑上的应用程序?
I have built a simple TAPI app that will run on a machine on the LAN that connects to the office PBX, it allows me to receive dial, answer, hangup etc commands (which I was planning on receiving via a udp packet). I did this with the intention to integrate the office CRM system to the phone system.
Having done this and testing using a simple python app to send the udp packets I find myself wondering how to send the udp packets to this app given that the CRM system is a web app written in php/javascript.
We use Firefox in the office and so I was going to start with a Firefox extension, but I thought I would ask and see if anyone has any experience on sending udp packets over a lan from a browser using java or flash or from a browser extension/plugin.
Or is there a better cross browser way to send commands to an app on a network pc when the web app is hosted online?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
也许在 CRM 中,您可以使用 javascript 和 JSONP 向本地 HTTP 服务器发出请求,然后该服务器可以发送 UDP 数据包。
Maybe in the CRM you could use javascript and JSONP to make a request to a local HTTP server, and that server could then send the UDP packets instead.