如何上传连接到数据库的网络服务以便在任何地方使用?
好吧,我需要上传或在互联网上公开一个网络服务,我需要在任何地方观看它,使用它,因为世界任何地方,我该怎么做?
我在哪里上传它?它与我的数据库有连接,
我的网络服务用于在我的数据库中添加、编辑、删除和查询。
它将适用于两个 Windows 应用程序。
我已经看到了上传页面的网页,但它们对我不起作用,它们是 .html 而不是 webservice
我可以公开它吗,因为我的电脑?并消耗它,如果我的电脑打开,只有?
例如服务器位于计算机 A 中,但我的应用程序将位于计算机 B 中(因为世界任何地方),其他应用程序将位于计算机 C 中(因为世界任何地方),那么我需要他们可以做,从他们的计算机上查询、添加、编辑、删除,但服务器在计算机A上
well I need to upload or to public in internet a webservice, I need watch it in anyplace, to consum it, since any part of world, how do i do it?
where do i upload it? it has a connection with my database
my webservice is for add, for edit,delete and queries in my database.
it is going to work for two windows applications.
i have seen webpage for upload page, but they dont work for me, they are .html and not webservice
can i public it, since my computer? and consum it, if my computer is turn on, only?
for example Server is in computer A, but my application is going to be in computer B (since any place of world), other application is going to be in computer C (since any place of world), then i need they can do, queries, add, edit, delete since their computer, but server is in computer A
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您不需要上传 Web 服务,您需要托管它们。
这意味着您需要一个托管提供商,或者在您自己的(始终在线)互联网连接上运行 HTTP 服务器。
主机的类型取决于您的平台,对于 WCF 或 ASP.NET 服务,您需要基于 Windows 的托管。
You don't upload WebServices, you need to Host them.
And that means you need a Hosting Provider, or run a HTTP server on your own (always-on) Internet connection.
The kind of Host depends on your platform, for a WCF or ASP.NET service you need Windows-based hosting.