windows服务中的http请求

发布于 2024-09-16 04:25:17 字数 481 浏览 8 评论 0 原文

我们如何实现这样的请求:

http://nominatim.openstreetmap.org/reverse?format=xml&lat=52.5487429714954&lon=-1.81602098644987&zoom=18&addressdetails=1

Windows 服务中的

。我们想要做的是:

从 Windows 服务运行一个请求,当我们收到响应时,我们将保存到数据库?

编辑:该服务采用 C++ 本机代码

How can we implement like this request:

http://nominatim.openstreetmap.org/reverse?format=xml&lat=52.5487429714954&lon=-1.81602098644987&zoom=18&addressdetails=1

in a windows service.

what we are trying to do is this:

run a request from windows service, and when we get the response back,we will save to DB?

Edit: the service is in C++ native code

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

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

发布评论

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

评论(2

寻梦旅人 2024-09-23 04:25:17

只需使用 WebRequestWebClient 类。

Simply use the WebRequest or WebClient classes.

毁梦 2024-09-23 04:25:17

在本机代码中,您可以使用 WinINet 库 发出 HTTP 请求。中的 HttpSendRequest() 方法特别的。

In native code you can use the WinINet library to make HTTP requests. The HttpSendRequest() method in particular.

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