接收发送到端口 80 上的 Web 服务的 GPS 数据
我正在购买一个 GPS 跟踪器,它能够将其 GPS 数据 (NMEA) 发送到指定的 IP/主机名和端口。
由于我没有服务器,我想知道如果我将设备配置为将其数据发送到默认 php-webservice 正在运行的 1.1.1.1:80 会发生什么。
到目前为止,一切都很好。但是我如何使用发送的数据呢?当我发布表单时,它位于 $_POST 中。但是我可以在哪个变量中找到发送的 NMEA 数据呢? 接收发送到端口 80 上的 Web 服务的 GPS 数据
I'm buying a gps tracker which is able to sent its GPS data (NMEA) to a designated ip/hostname and port.
Since i do not own a server, I was wondering what would happen if I configured the device to send its data to 1.1.1.1:80 where the default php-webservice is running.
So far so good. But how can I then use the sended data? When i post a form it is in $_POST. But in what variable can I find the sent NMEA data?
recieving gps data sent to webservice on port 80
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您的 GPS 设备不是 HTTP 客户端。它不“讲通常在端口 80 上运行的服务(即 Web 服务器)的语言”。
相反,安装一个守护程序,例如
gpsd
。我不知道
1.1.1.1
是什么意思。我敢打赌您不拥有具有该地址的机器。Your GPS device is not an HTTP client. It does not "speak the language" of the service that usually runs on port 80 (that is, a web server).
Instead, install a daemon like
gpsd
.And I have no idea what you mean by
1.1.1.1
. I bet you don't own a machine with that address.