在WSDL

时间:2016-10-10 12:30:02

标签: wcf xsd wsdl

我有一个WCF服务,我需要在旧的IIS 6服务器上托管。服务器的名称为Server1,但也有一个用于该网站的别名。显然,服务器和网站解析为不同的IP地址。

所以WCF服务路径是

  

https://alias.sys.domain.com/ProjectName/MyService.svc?wsdl

但是当我查看xml生成时,schemaLocation显示为:

<wsdl:types>
  <xsd:schema targetNamespace="http://tempuri.org/Imports">
     <xsd:import schemaLocation="https://server1.subdomain.domain.com/ProjectName/MyService.svc?xsd=xsd0" namespace="http://tempuri.org/" /> 
     <xsd:import schemaLocation="https://server1.subdomain.domain.com/ProjectName/MyService.svc?xsd=xsd2" namespace="http://schemas.datacontract.org/2004/07/ProjectName" /> 
     <xsd:import schemaLocation="https://server1.subdomain.domain.com/ProjectName/MyService.svc?xsd=xsd1" namespace="http://schemas.microsoft.com/2003/10/Serialization/" /> 
   </xsd:schema>
</wsdl:types>

如果我尝试访问xml中指定的模式

  

https://server1.subdomain.domain.com/ProjectName/MyService.svc?xsd=xsd0

我得到&#34;页面无法显示&#34;错误,如果我在Chrome调试工具中使用网络标签,则会显示调用已中止。但是,如果我尝试访问

中的架构
  

https://alias.sys.domain.com/ProjectName/MyService.svc?xsd=xsd0

然后我可以毫无问题地找到它,但不幸的是,这不是服务使用的那个。

要更改我在配置文件中添加了httpsGetURL:

<serviceMetadata httpGetEnabled="true" httpsGetUrl="https://alias.sys.domain.com/ProjectName/MyService.svc"  />

导致错误:

  

URI

已存在注册

我可以在/mex之后添加.svc来摆脱这种情况。奇怪的是,由于禁用匿名身份验证,我无法使用mex端点。

但添加/mex会导致另一个错误

  

带有To&#39; https://alias.sys.domain.com/ProjectName/MyService.svc/mex?wsdl&#39;的消息   由于EndpointDispatcher上的AddressFilter不匹配,无法在接收器处理。   检查发件人和收件人的EndpointAddresses是否一致。

然后我将地址添加到我的端点,将其从

更改
<endpoint address="" binding="webHttpBinding" bindingConfiguration="webBinding" contract="Projectname.IMyService"/>

<endpoint address="web1" binding="webHttpBinding" bindingConfiguration="webBinding" contract="Projectname.IMyService"/>

并尝试使用

  

https://alias.sys.domain.com/ProjectName/MyService.svc/web1

将我的错误更改为

  

带有操作的消息&#39;&#39;由于ContractFilter,无法在接收方处理   EndpointDispatcher不匹配。这可能是因为合同不匹配   (发送方和接收方之间不匹配的操作)或绑定/安全性不匹配   发件人和收件人。检查发件人和收件人是否有相同的合同   相同的绑定(包括安全要求,例如消息,传输,无)   [/代码]

有人可以帮忙吗?

<system.serviceModel>
<bindings>
  <basicHttpBinding>
    <binding name="basicHTTP">
      <security mode="TransportCredentialOnly">
        <transport clientCredentialType="Windows">
        </transport>
      </security>
    </binding>
  </basicHttpBinding>
  <webHttpBinding>
    <binding name="webBinding">
      <security mode="Transport">
      <transport clientCredentialType="Windows">
        </transport>
      </security>
   </binding>
  </webHttpBinding>
</bindings>
<services>
  <service behaviorConfiguration="basicBehavior" name="ProjectName.MyService">
<endpoint address="" binding="webHttpBinding" bindingConfiguration="webBinding" contract="Projectname.IMyService"/>
    <!--<endpoint address="mex" binding="mexHttpsBinding" contract="IMetadataExchange" />-->
  </service>
</services>
<behaviors>
  <serviceBehaviors>
    <behavior name="basicBehavior">
      <serviceMetadata httpGetEnabled="false" httpsGetEnabled="true"/>
      <serviceDebug includeExceptionDetailInFaults="true"/>
      <serviceCredentials>
          <windowsAuthentication includeWindowsGroups="true" allowAnonymousLogons="false">
         </windowsAuthentication>
    </serviceCredentials>-->
    </behavior>
  </serviceBehaviors>
</behaviors>
<serviceHostingEnvironment aspNetCompatibilityEnabled="false"/>
</system.serviceModel>

这是界面:

public interface IMyService
{

    [OperationContract]
    [WebInvoke(UriTemplate = "GetStatus/{groupID}/{groupName}", Method = "GET",
      ResponseFormat = WebMessageFormat.Json,
      RequestFormat = WebMessageFormat.Json,
      BodyStyle = WebMessageBodyStyle.WrappedRequest)]
    string GetStatus(string groupID, string groupName);

}

2 个答案:

答案 0 :(得分:1)

您无法使用WSDL使用RESTful服务操作。即使元数据通过http://schemas.microsoft.com/ws/2008/06/identity/claims/role查询公开,它也不是您服务的有效定义。

WSDL仅适用于基于SOAP的操作。您正在通过纯HTTP公开您的操作。

您应该使用HttpClientWebClient来呼叫您的服务。

如果您需要公开元数据,请查看OpenAPI

Microsoft应该删除webHttpBinding的元数据功能,因为它具有误导性。他们没有这个信号,你应该放弃WCF进行RESTful操作并使用Nancy或ASP.Net WebAPI。

答案 1 :(得分:1)

通过更改

解决了这个问题
<services>
  <service behaviorConfiguration="basicBehavior" name="ProjectName.MyService">
     <endpoint address="" binding="webHttpBinding" bindingConfiguration="webBinding" contract="Projectname.IMyService"/>

  </service>
</services>
<behaviors>
  <serviceBehaviors>
    <behavior name="basicBehavior">
      <serviceMetadata httpGetEnabled="false" httpsGetEnabled="true"/>
      <serviceDebug includeExceptionDetailInFaults="true"/>

    </behavior>
  </serviceBehaviors>
</behaviors>

<services>
  <service behaviorConfiguration="basicBehavior" name="ProjectName.MyService">
     <endpoint address="https://alias.sys.domain.com/ProjectName/MyService.svc" binding="webHttpBinding" bindingConfiguration="webBinding" contract="Projectname.IMyService"/>

  </service>
</services>
<behaviors>
  <serviceBehaviors>
    <behavior name="basicBehavior">
      <serviceMetadata httpGetEnabled="false" httpsGetEnabled="true" httpsGetUrl="https://alias.sys.domain.com/ProjectName/MyService.svc/ssl"/>
      <serviceDebug includeExceptionDetailInFaults="true"/>

    </behavior>
  </serviceBehaviors>
</behaviors>