1

バックグラウンド:

最近、ユーザーリクエストの内部認証をWebサービスに追加しました。認証に失敗した場合に、カスタムのFaultExceptionがスローされます。

FaultExceptionカスタムタイプがマークアップされました:

[DataContract(Namespace = ConstantConfig.ServiceNamespace, Name = "AuthenticationError")]
public class AuthenticationError

サービスインターフェイスメソッドがマークアップされました:

[OperationContract]
[FaultContract(typeof(AuthenticationError), Namespace = ConstantConfig.ServiceNamespace)]
ClientReport GetClientReport(DateTime from, DateTime to);

インターフェイス自体がマークアップされています。

[ServiceContract(Namespace = ConstantConfig.ServiceNamespace)]
public interface IClientReportService

インターフェイスの実装はマークアップされています:

[ServiceBehavior(Namespace = ConstantConfig.ServiceNamespace)]
public class ClientReportService : IClientReportService

web.configとapp.configはすべて、コピー/貼り付けされたサービス名前空間を指しています。

それでも、これらすべてにもかかわらず、tempuri.wsdlが生成されています。これは、wsdlからの代表的な抜粋です。

主要:

<?xml version="1.0" encoding="utf-8"?>
<wsdl:definitions xmlns:wsap="http://schemas.xmlsoap.org/ws/2004/08/addressing/policy" xmlns:wsa10="http://www.w3.org/2005/08/addressing" xmlns:tns="http://webservice.company.com/ClientReportService" xmlns:msc="http://schemas.microsoft.com/ws/2005/12/wsdl/contract" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsx="http://schemas.xmlsoap.org/ws/2004/09/mex" xmlns:wsp="http://schemas.xmlsoap.org/ws/2004/09/policy" xmlns:i0="http://tempuri.org/" xmlns:wsam="http://www.w3.org/2007/05/addressing/metadata" xmlns:soap12="http://schemas.xmlsoap.org/wsdl/soap12/" xmlns:wsa="http://schemas.xmlsoap.org/ws/2004/08/addressing" xmlns:wsaw="http://www.w3.org/2006/05/addressing/wsdl" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd" xmlns:xsd="http://www.w3.org/2001/XMLSchema" name="ClientReportService" targetNamespace="http://webservice.company.com/ClientReportService" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">
<wsdl:import namespace="http://tempuri.org/" location="http://localhost:4319/ClientReportService.svc?wsdl=wsdl0" />
<wsdl:types>
<xsd:schema targetNamespace="http://webservice.company.com/ClientReportService/Imports">
    <xsd:import schemaLocation="http://localhost:4319/ClientReportService.svc?xsd=xsd0" namespace="http://webservice.company.com/ClientReportService" />
    <xsd:import schemaLocation="http://localhost:4319/ClientReportService.svc?xsd=xsd1" namespace="http://schemas.microsoft.com/2003/10/Serialization/" />
</xsd:schema>
</wsdl:types>

テンプリ:

<wsdl:operation name="GetClientReport">
  <soap:operation soapAction="http://webservice.company.com/ClientReportService/IClientReportService/GetClientReport" style="document" />
  <wsdl:input>
    <soap:body use="literal" />
  </wsdl:input>
  <wsdl:output>
    <soap:body use="literal" />
  </wsdl:output>
  <wsdl:fault name="AuthenticationErrorFault">
    <soap:fault use="literal" name="AuthenticationErrorFault" namespace="" />
  </wsdl:fault>
</wsdl:operation>

マークアップしていない、または間違ってマークアップしているものがあると思いますが、見つけられません。

助言がありますか?

4

2 に答える 2

3

結局のところ、エラーは完全に私のものでした。

Web 構成で、サービス名が実際のサービスのサービス名と一致しませんでした。

実際のサービス (.svc ファイルのマークアップ内):

Service="Company.Client.Framework.ReportService.ClientReportService"

壊れた Web 設定

<service name="Company.Client.ReportService.ReportService">

修正された Web 設定:

<service name="Company.Client.ReportService.ClientReportService">

これを修正して WSDL を再生成したところ、tempuri は消えました。

于 2013-02-27T09:37:44.173 に答える
3

これを試して

<endpoint address=""
                          binding="basicHttpBinding"
                          bindingNamespace="http://my.namespace.com"
                          contract=""/>
            </service>
于 2013-02-25T17:01:01.483 に答える