2013-11-21 75 views
0

我有一个现有的WCF服务,它没有* .SVC文件。该项目本身就是网站,并在其中编写WCF代码。它使用这一行注册服务:添加服务引用不适用于没有SVC文件的WCF服务

RouteTable.Routes.Add(new ServiceRoute("", new WebServiceHostFactory(), typeof(Service1))); 

我运行从Visual Studio中的项目,并从IE检查服务托管,并通过试验工作方法如下:

http://localhost:51838/GetBenchMark/20 

我要创建一个使用这个WCF服务的控制台应用程序。当我尝试使用“添加服务引用”从Visual Studio,并给予路径http://localhost:51838/,它是不是能够找到它,并给出错误:

The HTML document does not contain Web service discovery information. 
Metadata contains a reference that cannot be resolved: 'http://localhost:51838/'. 
There was no endpoint listening at http://localhost:51838/ that could accept the message. This is often caused by an incorrect address or SOAP action. See InnerException, if present, for more details. 
The remote server returned an error: (404) Not Found. 
If the service is defined in the current solution, try building the solution and adding the service reference again. 

这是web.config中,如果有帮助:

<system.web> 
    <compilation debug="true" targetFramework="4.0"> 
     <assemblies> 
     <add assembly="System.Data.Entity, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" /> 
     </assemblies> 
    </compilation> 
    </system.web> 
    <system.web.extensions> 
    <scripting> 
     <webServices> 
     <jsonSerialization maxJsonLength="2147483647" /> 
     </webServices> 
    </scripting> 
    </system.web.extensions> 
    <system.webServer> 
    <validation validateIntegratedModeConfiguration="false" /> 
    <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> 
    <client /> 
    <serviceHostingEnvironment aspNetCompatibilityEnabled="true" /> 
    <standardEndpoints> 
     <webHttpEndpoint> 
     <!-- 
      Configure the WCF REST service base address via the global.asax.cs file and the default endpoint 
      via the attributes on the <standardEndpoint> element below 
     --> 
     <standardEndpoint name="" helpEnabled="true" automaticFormatSelectionEnabled="true" maxReceivedMessageSize="2147483647" maxBufferSize="2147483647" maxBufferPoolSize="2147483647" /> 
     </webHttpEndpoint> 
    </standardEndpoints> 
    <bindings> 
     <webHttpBinding> 
     <binding closeTimeout="00:20:00" openTimeout="00:20:00" receiveTimeout="00:20:00" sendTimeout="00:20:00" allowCookies="false" bypassProxyOnLocal="false" hostNameComparisonMode="StrongWildcard" maxBufferSize="2147483647" maxBufferPoolSize="524288" maxReceivedMessageSize="2147483647" transferMode="Buffered" useDefaultWebProxy="true"> 
      <readerQuotas maxDepth="2147483647" maxStringContentLength="2147483647" maxArrayLength="2147483647" maxBytesPerRead="2147483647" maxNameTableCharCount="2147483647" /> 
     </binding> 
     </webHttpBinding> 
    </bindings> 
    </system.serviceModel> 

请让我知道我该怎么做才能生成代理类并开始使用控制台应用程序中的此服务。

+0

是否有MEX端点暴露?请参阅:http://stackoverflow.com/questions/7285717/why-do-i-need-both-mex-endpoint-and-httpgetenable –

+0

不知道MEX是什么,但我不认为这是暴露 – CleanBold

+0

显示您的web.config – ray

回答

0

如果您创建WCF-Service,则必须创建一个主机应用程序,但不能自行启动此WCF-Library

如果要从主机应用程序启动WCF服务分离,请创建一个WCF-Application。你有一个svc,你可以像你在你的问题中描述的那样开始它。

+0

该项目是网站项目和WCF代码写在项目中。因此,我可以从visual studio运行/调试它。 – CleanBold

相关问题