我刚刚开始为公司工作,我的第一个任务是为管理大型数据库的C#Web应用程序添加一些功能。此应用程序使用WCF REST服务和实体框架将条目存储到数据库(而不是应用程序旨在管理的主数据库)。请注意,我对使用REST完全不熟悉。
对于我添加的功能,我需要修改REST服务,但根据公司政策,我需要先与解决方案设计人员,数据库管理员,系统构建商等完成完整的代码审查,然后才能将任何内容部署到开发服务器。
这意味着如果我正在处理的应用程序的新功能正常工作,我无法部署我修改过的REST以便在本地进行测试。因此,我一直在尝试使用IIS express在本地部署REST服务,但是当我使用REST尝试使用REST时,我不断收到错误说明:
Error: System.ServicModel.EndpointNotFoundException: There was no endpoint listening at http://localhost:45178/EmailWebServiceRest/EmailBatchManager/SendBatch that could accept the message.
用于测试REST,EmailWebService.Proxy.TestHarness的解决方案的App.config如下;
<?xml version="1.0"?>
<configuration>
<appSettings>
<!--<add key="EmailWebService.RestServiceURI" value="http://webservices.capetown.gov.za/EmailWebServiceRest/EmailBatchManager"/>-->
<add key="EmailWebService.RestServiceURI" value="http://localhost:45178/EmailWebServiceRest/EmailBatchManager"/>
<add key="EmailWebService.ApplicationName" value="COD"/>
<add key="EmailWebService.ApplicationLicenseKey" value="b24968d3-7011-4dab-abba-f513a430b91f"/>
</appSettings>
<startup><supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.0"/></startup></configuration>
如您所见,我只是在上面的App.config中更改了RestServiceURI。据我所知,REST服务在IIS中运行。我缺少一些步骤吗?
REST服务解决方案本身的Web.config如下:
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<configSections>
<section name="entityFramework" type="System.Data.Entity.Internal.ConfigFile.EntityFrameworkSection, EntityFramework, Version=4.3.1.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
</configSections>
<appSettings>
<add key="ApplicationName" value="EmailWebService" />
</appSettings>
<connectionStrings>
<add name="EmailWebService"
connectionString="integrated security=SSPI;
data source=cbd-civic-dqc03;
persist security info=False;
initial catalog=EmailWebService"
providerName="System.Data.SqlClient" />
</connectionStrings>
<system.web>
<compilation debug="true" targetFramework="4.0" />
<httpRuntime maxRequestLength="2147483647" />
</system.web>
<system.webServer>
<modules runAllManagedModulesForAllRequests="true">
<add name="UrlRoutingModule" type="System.Web.Routing.UrlRoutingModule, System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
</modules>
</system.webServer>
<system.serviceModel>
<bindings>
<webHttpBinding>
<binding maxBufferSize="2147483647" maxReceivedMessageSize="2147483647" maxBufferPoolSize="2147483647">
<readerQuotas maxArrayLength="2147483647" maxBytesPerRead="2147483647" maxNameTableCharCount="2147483647" maxStringContentLength="2147483647" maxDepth="2147483647" />
</binding>
</webHttpBinding>
</bindings>
<serviceHostingEnvironment aspNetCompatibilityEnabled="true" />
<standardEndpoints>
<webHttpEndpoint>
<standardEndpoint name="" helpEnabled="true" automaticFormatSelectionEnabled="true" maxReceivedMessageSize="2147483647" maxBufferSize="2147483647" maxBufferPoolSize="2147483647" />
</webHttpEndpoint>
</standardEndpoints>
</system.serviceModel>
<entityFramework>
<defaultConnectionFactory type="System.Data.Entity.Infrastructure.SqlConnectionFactory, EntityFramework">
<parameters>
<parameter value="Data Source=.\SQLEXPRESS; Integrated Security=True; MultipleActiveResultSets=True" />
</parameters>
</defaultConnectionFactory>
</entityFramework>
</configuration>
答案 0 :(得分:1)
在这种情况下,我将安装IIS并在我要测试的应用程序的默认网站下配置虚拟应用程序。然后,您就可以直接从http://localhost/a.n.other.url
但是,作为附注,通过http访问和测试服务可以被视为集成测试,您应该通过不需要通过http调用的单元测试来测试尽可能多的代码。< / p>