无法在Visual Studio中调试WCF服务



我在这里有一个问题,这真的很烦人...

我用3种简单方法创建了一个WCF Servcice。该服务正在开发服务器和生产服务器上运行精细的本地。

2周后,我被要求添加更多功能,因此我打开了解决方案,并试图在进行任何更改之前构建/调试服务以检查其状态。

不幸的是,在尝试了我在网络上找到的7-8个不同的解决方案之后,仍然无法调试它,我一直都会遇到相同的错误。

错误:无法从http://localhost获得元数据:50930/stservice.svc 如果这是您可以访问的Windows(R)通信基础服务,请检查您在指定地址启用了元数据发布。 有关启用元数据出版的帮助,请参阅http://go.microsoft.com/fwlink/?linkid=65455。

,请参阅MSDN文档。

WS-Metadata交换错误URI:http://localhost:50930/stservice.svc 元数据包含无法解决的参考:'http://localhost:50930/stservice.svc'。 内容类型应用程序/SOAP XML;charset = UTF-8不受服务的支持http://localhost:50930/stservice.svc。

客户和服务绑定可能不匹配。 远程服务器返回错误:(415)无法处理消息,因为内容类型'application/soap xml;charset = utf-8'不是预期类型'text/xml;charset = utf-8'..

http获取错误URI:http://localhost:50930/stservice.svc下载错误,下载'http://localhost:50930/stservice.svc'。HTTP状态400的请求失败:

我试图编辑web.config(尽管在dev& amp; live服务器上都是相同的DB连接),但在每个临时文件夹中,在项目文件夹上赋予了权限,禁用并删除了任何防火墙或防火病毒,等等。无法使它起作用...

有什么想法?

根据请求,这是web.config:

<?xml version="1.0"?>
<configuration>
  <system.web>
      <customErrors mode="Off"/>
    <compilation debug="true" targetFramework="4.5" />
    <httpRuntime targetFramework="4.5"/>
    <caching>
      <sqlCacheDependency enabled="true">
        <databases>
          <add connectionStringName="PhotosSqlServer" name="PhotosSqlServer" pollTime="1000"/>
        </databases>
      </sqlCacheDependency>
    </caching>
  </system.web>
  <system.serviceModel>
    <behaviors>
      <serviceBehaviors>
        <behavior>
          <!-- To avoid disclosing metadata information, set the values below to false before deployment -->
          <serviceMetadata httpGetEnabled="true" httpsGetEnabled="true"/>
          <!-- To receive exception details in faults for debugging purposes, set the value below to true.  Set to false before deployment to avoid disclosing exception information -->
          <serviceDebug includeExceptionDetailInFaults="true"/>
        </behavior>
      </serviceBehaviors>
    </behaviors>
    <bindings>
      <wsHttpBinding>
        <binding name ="wsMessage">
          <security mode ="Message">
            <message clientCredentialType ="Windows"/>
          </security>
        </binding>
      </wsHttpBinding>
      <netTcpBinding>
        <binding name="NetTcpBinding_IStService" maxReceivedMessageSize="5242880" maxConnections="10">
          <readerQuotas maxDepth="64" maxStringContentLength="5242880" maxArrayLength="16384"
            maxBytesPerRead="4096" maxNameTableCharCount="16384"/>
          <security mode="None"></security>
        </binding>
      </netTcpBinding>
    </bindings>
    <serviceHostingEnvironment aspNetCompatibilityEnabled="true" multipleSiteBindingsEnabled="true" />
  </system.serviceModel>
  <system.webServer>
    <modules runAllManagedModulesForAllRequests="true"/>
    <!--
        To browse web app root directory during debugging, set the value below to true.
        Set to false before deployment to avoid disclosing web app folder information.
      -->
    <directoryBrowse enabled="false"/>
  </system.webServer>
</configuration>

在您的<system.serviceModel>标签中,添加:

    <service name="YourAppNameSpace.StService">
    <endpoint address="" binding="wsMessage" bindingConfiguration="NetTcpBinding_IStService"
      contract="YourAppNameSpace.IStService" />
    <endpoint address="mex" binding="mexHttpBinding" bindingConfiguration=""
      contract="IMetadataExchange" />
    <host>
      <baseAddresses>
        <add baseAddress="http://localhost:50930/StService" />
      </baseAddresses>
    </host>
  </service>

我不确定参数。但是您遇到的是您的app.config中的service-endpoint信息。

相关内容

  • 没有找到相关文章

最新更新