为什么我的WSDL仍然显示基本的http绑定与http的位置值?

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了为什么我的WSDL仍然显示基本的http绑定与http的位置值?相关的知识,希望对你有一定的参考价值。

我启用了https绑定,但我的WSDL的SOAP地址为http。有什么想法吗?谢谢!

<wsdl:service name="XXXX"><wsdl:port name="BasicHttpBinding_XXXXService" binding="i0:BasicHttpBinding_XXXService">
    <soap:address location="http://dev-soa-app/XXXX/XXXX/XXXService.svc"/></wsdl:port>
</wsdl:service>

这是我的web.config文件:

<?xml version="1.0"?>
<configuration>

  <system.web>
    <customErrors mode="Off"/>
    <compilation debug="true" targetFramework="4.0" />
  </system.web>
  <configProtectedData>
    <providers>
      <add name="ConnStrings" type="System.Configuration.RsaProtectedConfigurationProvider, System.Configuration, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" keyContainerName="ConnStrings" cspProviderName="" useMachineContainer="true" useOAEP="false"/>
    </providers>
  </configProtectedData>
  <connectionStrings configSource="ConnStringsConnStrings.config"/>
  <system.serviceModel>
    <services>
      <service name="XXXXService">
        <!-- Use a bindingNamespace to eliminate tempuri.org -->
        <endpoint address=""  name="XXXXService"
                  binding ="wsHttpBinding" bindingConfiguration="TransportSecurity"
                  bindingNamespace="WF.CT2.WebServices.XXXXService"
                  contract="WF.CT2.WebServices.XXXXService.SAMLService" />
        <endpoint address="mex" binding="mexHttpsBinding" contract="IMetadataExchange"/>
      </service>
    </services>
    <bindings>
      <wsHttpBinding>
        <binding name="TransportSecurity">
          <security mode="Transport">
            <transport clientCredentialType="None"/>
          </security>
        </binding>
      </wsHttpBinding>
    </bindings>
    <behaviors>
      <serviceBehaviors>
        <behavior>
          <!-- To avoid disclosing metadata information, set the value below to false and remove the metadata endpoint above before deployment -->
          <serviceMetadata httpsGetEnabled="true" httpGetEnabled ="false" />
          <!-- 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>
    <serviceHostingEnvironment multipleSiteBindingsEnabled="true" />
  </system.serviceModel>
  <system.webServer>
    <modules runAllManagedModulesForAllRequests="true"/>
  </system.webServer>

</configuration>
答案

首先,您应该意识到WSDL的service元素中的URL只是一个提示。您的客户不应该依赖于此服务的正确地址。

其次,要意识到如果您的服务托管在IIS中,那么IIS就会根据您在IIS中的绑定来确定要放置在该元素中的地址。我怀疑您在托管服务的站点上启用了HTTP和HTTPS。您通常可以通过在IIS管理器中的SSL页面上设置“需要SSL”属性将其切换为仅HTTPS。

另一答案

从Web.Config中删除httpGetEnabled =“false”并保持httpsGetEnabled =“true”(见下文)。

 <serviceBehaviors>
   <behavior>
     <serviceMetadata httpsGetEnabled="true" />
     <serviceDebug includeExceptionDetailInFaults="false"/>
 </behavior>

以上是关于为什么我的WSDL仍然显示基本的http绑定与http的位置值?的主要内容,如果未能解决你的问题,请参考以下文章

RESTful服务 - WSDL等效

使用基于MTOM的WSDL文件进行测试

RESTful 服务 - WSDL 等价物

当SSL终止后,WSDL绑定URL将协议更改为HTTP

为什么我的wsdl不显示元素

wsdl.exe 错误:无法从命名空间“...”导入绑定“...”