我有一个WCF Web服务,我使用Ajax
(JQuery
)调用WCF方法。
我使用WcfTestClient.exe
测试了我的网络服务,效果很好。
但是当我使用Jquery
调用Web服务方法时,出现错误(对象引用未设置为对象的实例)。
我调试了我的**ConfigurationManager.ConnectionStrings[0].Name** : *LocalSqlServer*
。
我的dataBase密钥是RMS而不是LocalSqlServer。
我的解决方案中有2个项目,WCF和应用程序控制台,用于关闭Web服务。
这是我的解决方案
这是我的web.config:
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<connectionStrings>
<add name="RMS" connectionString="Data Source=192.168.40.137;Initial Catalog=RMS_Database;Persist Security Info=True;User ID=****;Password=****"
providerName="System.Data.SqlClient" />
</connectionStrings>
<appSettings>
<add key="aspnet:UseTaskFriendlySynchronizationContext" value="true" />
</appSettings>
<system.web>
<compilation debug="true" targetFramework="4.5" />
<httpRuntime targetFramework="4.5" maxRequestLength="16384"/>
</system.web>
<system.serviceModel>
<behaviors>
<serviceBehaviors>
<behavior>
<serviceMetadata httpGetEnabled="true" httpsGetEnabled="true"/>
<serviceDebug includeExceptionDetailInFaults="false"/>
</behavior>
</serviceBehaviors>
</behaviors>
<protocolMapping>
<add binding="basicHttpsBinding" scheme="https" />
</protocolMapping>
<serviceHostingEnvironment aspNetCompatibilityEnabled="true" multipleSiteBindingsEnabled="true" />
<bindings>
<basicHttpBinding>
<binding name="basicHttp" allowCookies="true" maxReceivedMessageSize="20000000" maxBufferSize="20000000" maxBufferPoolSize="20000000">
<readerQuotas maxDepth="32" maxArrayLength="200000000" maxStringContentLength="200000000"/>
</binding>
</basicHttpBinding>
</bindings>
</system.serviceModel>
<system.webServer>
<modules runAllManagedModulesForAllRequests="true"/>
<directoryBrowse enabled="true"/>
</system.webServer>
</configuration>
我创建了.asmx
网络服务,我成功JQuery
次来电。
我认为我的解决方案没有使用正确的web.config.
如何解决这个问题?
答案 0 :(得分:11)
您的第一篇文章可能只是缺少以下条目:
<clear />
在以下条目之前:
<add name="RMS" connectionString="Data Source=192.168.40.137;Initial Catalog=RMS_Database;Persist Security Info=True;User ID=****;Password=****"
providerName="System.Data.SqlClient" />
描述:如果没有clear条目,则读取默认的machine.config连接字符串。此条目称为LocalSqlServer。明确避免这种情况。
答案 1 :(得分:1)
我解决了这个问题。
我还在 GettingStartedHost 项目的app.config中添加了连接字符串,现在效果很好。
这是正确的方法吗?
答案 2 :(得分:0)
将Web.config重命名为App.config,以使Configuration Manager正常工作。