联系 Web 服务的 Windows 小工具
是否可以创建一个联系 Web 服务的 Windows 小工具。
在本例中,调用 Web 服务方法,该方法又返回预定义的 SQL Server 查询的结果。
如果是这样,执行此操作的理想方法是什么?
有没有人有做这样的事情的经验?
Is it possible to create a Windows Gadget, which contacts a web service.
In this case calls the web service method which in turn returns the results of a pre-defined SQL Server query.
If so, what is an ideal approach to doing this.
Has anyone any experience in doing such a thing?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
回答你的问题,这确实是很有可能的,而且也很简单。
在客户端/小工具端,您需要使用 javascript 向服务器发出 ajax 请求。当发出此请求时,您的服务器将简单地访问您的 SQL 数据库并打印它,从而创建对该 ajax 调用的响应。这是一个使用 php 作为服务器端语言的示例。如果您需要帮助请评论。
客户端(javascript):
以及 php 中的服务器代码
To answer your question, this is indeed very possible and fairly simply too.
On the client/gadget side you will need to use javascript to make an ajax request to your server. when this request is made your server will simply access your SQL database and print it, creating the response to that ajax call. Here is an example using php as the server side language. Please Comment if you need help.
Client side (javascript):
And The Server code in php