7

.svc通常,当我实现第 3 方 WCF Web 服务时,我会得到一个以扩展名结尾的 URL 。

我刚刚在 VS2010 中创建了一个 WCF Web 服务并且我能够运行该服务,但是我在测试客户端中看不到任何以.svc扩展名结尾的 URL。

为了获得这样的 URL,我还需要做些什么吗?因为通常从那里人们也可以通过添加?wsdl到末尾来获得 WSDL,例如: http://site.com/service1.svc?wsdl

如何在我的 Web 服务中生成这样的 URL?


这就是我的 App.Config 中的内容:

<?xml version="1.0" encoding="utf-8" ?>
<configuration>

  <system.web>
    <compilation debug="true" />
  </system.web>
  <!-- When deploying the service library project, the content of the config file must be added to the host's 
  app.config file. System.Configuration does not support config files for libraries. -->
  <system.serviceModel>
    <services>
      <service name="TestWebservice.Test">
        <endpoint address="" binding="wsHttpBinding" contract="TestWebservice.ITest">
          <identity>
            <dns value="localhost" />
          </identity>
        </endpoint>
        <endpoint address="mex" binding="mexHttpBinding" contract="IMetadataExchange" />
        <host>
          <baseAddresses>
            <add baseAddress="http://localhost:8732/Design_Time_Addresses/TestWebservice/" />
          </baseAddresses>
        </host>
      </service>
    </services>
    <behaviors>
      <serviceBehaviors>
        <behavior>
          <!-- To avoid disclosing metadata information, 
          set the value below to false and remove the metadata endpoint above before deployment -->
          <serviceMetadata httpGetEnabled="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="False" />
        </behavior>
      </serviceBehaviors>
    </behaviors>
  </system.serviceModel>

</configuration>

编辑

mexHttpBinding从配置文件中删除了端点。当我现在启动我的 Web 服务时,它会自动显示一个 WSDL 的 URL:

http://localhost:8732/Design_Time_Addresses/TestWebservice/?wsdl

/之前的部分?wsdl似乎重要。否则它将无法正常工作。

但这仍然让我想到最后一个问题。如何指定.svc文件的 URL?我想要一个像这样的网址:http://localhost:8732/Design_Time_Addresses/TestWebservice/Test.svc?wsdl


编辑 2

我走得更远了。我读到这个:http: //msdn.microsoft.com/en-us/library/aa751792.aspx

因此Test.svc,我使用以下代码在项目的根目录中创建了一个文件:

<% @ServiceHost Service="TestWebservice.ITest" %>

然后我尝试svc通过以下 URL 访问我的文件,但都对我不起作用:

http://localhost:8732/Design_Time_Addresses/TestWebservice/Test.svc
http://localhost:8732/Design_Time_Addresses/Test.svc

甚至可以svc在 Visual Studio 内部托管吗?还是我真的需要先在 IIS 中托管它?


编辑 3 - 已修复!

我终于让它工作了!我将 重新添加mexHttpBinding到我的 App.Config 中。

我安装了 IIS7。将 Web 服务发布到我的C:\驱动器中的文件夹。然后在 IIS 中映射该文件夹并尝试.svc在浏览器中请求该文件。

起初它对我不起作用,因为它无法识别.svc扩展名。然后我所要做的就是输入以下 cmd:aspnet_regiis.exe -i现在一切正常。

现在一切似乎都运行良好。.svc猜测当服务由 Visual Studio 托管时,您无法请求文件。但是当它托管在 IIS 中时它可以工作。

4

0 回答 0