向 Web 服务器发送和接收数据
将数据发送到 Web 服务器,然后接收数据并将其移植到 Web 服务器上的 Microsoft Access 数据库的好方法是什么?
What is a good way to Send data to a web server and then receive and port the data to a Microsoft Access database on the web server?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
听起来你需要一些教程。这是一个。
http://www.devtoolshed.com/content/building-web-service -aspnet-35
请注意,创建和使用 Web 服务有许多不同的方法。
示例包括:通用处理程序 (.ashx)、MS Web 服务 (.asmx)、WCF 服务 (.svc) 等。
它们都有特性/优点。到目前为止,最简单的方法可能是使用通用处理程序,这对于构建 RESTful 类型服务非常有用。
Sounds like you need some tutorials. Here's one.
http://www.devtoolshed.com/content/building-web-service-aspnet-35
Note that there are MANY different ways to create a web service and consume it.
Examples include: Generic Handlers (.ashx), MS Web Services (.asmx), WCF services (.svc), etc.
All of them have features / benefits. Probably the easiest one by far is to use generic handlers which are great for building RESTful type services.