English 中文(简体)
能否建立一个2008年服务器数据库,在两个不同的终端点内支持一个REE和SOAP网络服务?
原标题:Can a SQL Server 2008 database support both a REST and SOAP web services within two different endpoints?

Say you have a SQL Server 2008 database. You build a SOAP web service. You then deploy or publish this using Visual Studio 2010 in one website. Now, using the same database, you build a REST web service, in a different solution. You deploy this on another website.

您能否使用SOAP和REST网络服务的终端点和(或)终端点文件,尽管它们参考了2008年SQ数据库。

我看不出为什么,但在我走这条路之前,我还要花几天时间保证。

另外,如果数据库同时运行SOAP和REST,如果数据库的性能受到影响,我看不出为什么会发生,但我必须保证。 感谢。

最佳回答

页: 1 服务器获得的门口,知道你的网络服务——它只是收到问询,并将数据退回到电话链接(在这种情况下,服务器方代码)。

它对质询是否起源于VBA、Mgmt 演播室、您的SOAP服务或所有三者都毫不谨慎。

问题回答

The database is completely oblivious of how your clients submit requests. All it sees is ODBC (or whatever) connections running queries. You could have 20 people sitting in SQL Developer typing these queries manually, it wouldn t know any better. So yes, you are right, your question makes no sense -- you can have as many different interfaces as you want, performance/load will be determined only by the queries executed.





相关问题
IIS 6.0 hangs when serving a web-service

I am having issues with one of our web-services. It works fine on my development machine (win XP) whether I host it as a separate application or using cassini from Visual studio. Once I deploy on the ...

ASP.net web services

I am using a web service which sets the Thread.CurrentPrincipal object while logging in and soon later when another webmethod of the same web service accesses Thread.CurrentPrincipal, its different/...

Unity Container Disposing and XML Web Service

I am registering some wrapers over un-managed objects in container. How can I dispose of them at the end of the container s lifetime? Please bear in mind I have an XML Web service.

SharePoint : web service permission error

I have a sharepoint site, and I am calling a standard sharepoint web service. I create the web service request like this : wsDws.Url = this.SiteAddress + @"/_vti_bin/Dws.asmx"; When I use ...

热门标签