使用websrvice在Web服务器和ms sql服务器之间进行通信

问题描述 投票:0回答:0

有一个Web应用程序。 开发后现在要安装并必须更改服务器地址,服务器名称,用户名和密码。 已经修改了application.Web Web.Config连接字符串,只是将现有元素切换为新元素。

<connectionStrings> <add name="ConnstringName" connectionString="Data Source=SourceServerName;Initial Catalog=CName;Persist Security Info=True;User ID=user;Password=pwd" providerName="System.Data.SqlClient" </connectionStrings>

并在应用程序上像这样修改servicereferences.clientconfig文件

<client>
<endpoint address="../Service1.svc" binding="customBinding"
bindingConfiguration="CustomBinding_Service1" contract="ServiceReference1.Service1"
name="CustomBinding_Service1"/>
</client>

在我测试了我的URL之后,该应用程序运行良好,但无法显示从数据库接收到的数据

c# wcf silverlight
© www.soinside.com 2019 - 2024. All rights reserved.