Сервис, сгенерированный из WSDL, возвращает другой WSDL - PullRequest
1 голос
/ 31 июля 2009

Я сгенерировал интерфейс службы WCF из поставляемой схемы WSDL , затем этот интерфейс был реализован в одной из моих служб WCF без проблем.

[ServiceBehavior(Name = "HL7Service", Namespace = "urn:hl7-org:v3")]
[ServiceContract(Namespace = "urn:hl7-org:v3", Name = "HL7Service", SessionMode = SessionMode.Allowed)]
public class HL7Service : IPatientRegistryQueryTracker_Binding
{


    [OperationContract(IsTerminating = false, IsInitiating = true, IsOneWay = false, AsyncPattern = false, Action = "PRPA_IN201302NO_Operation")]
    public PRPA_IN201302NOResponse PRPA_IN201302NO_Operation(PRPA_IN201302NO request)
    {

    }

    [OperationContract(IsTerminating = false, IsInitiating = true, IsOneWay = false, AsyncPattern = false, Action = "PRPA_IN201304NO_Operation")]
    public PRPA_IN201304NOResponse PRPA_IN201304NO_Operation(PRPA_IN201304NO request)
    {

    }

}

Странная часть в том, что WSDL из моего нового сервиса не соответствует WSDL, из которого он был сгенерирован?

Пример того, как часть доставленного WSDL выглядит как

    <xs:complexType name="PRPA_MT201302UV02.Patient">
    <xs:sequence>
        <xs:group ref="InfrastructureRootElements"/>
        <xs:element name="id" type="PRPA_MT201302UV02.Patient.id" maxOccurs="unbounded"/>
        <xs:element name="addr" type="AD" minOccurs="0" maxOccurs="unbounded"/>
        <xs:element name="telecom" type="TEL" minOccurs="0" maxOccurs="unbounded"/>
        <xs:element name="statusCode" type="PRPA_MT201302UV02.Patient.statusCode"/>
        <xs:element name="effectiveTime" type="IVL_TS" minOccurs="0"/>
        <xs:element name="confidentialityCode" type="CE" minOccurs="0" maxOccurs="unbounded"/>
        <xs:element name="veryImportantPersonCode" type="CE" minOccurs="0"/>
        <xs:choice>
            <xs:element name="patientPerson" type="PRPA_MT201302UV02.Patient.patientPerson" nillable="true"/>
            <xs:element name="patientNonPersonLivingSubject" type="PRPA_MT201302UV02.Patient.patientNonPersonLivingSubject" nillable="true"/>
        </xs:choice>
        <xs:element name="providerOrganization" type="COCT_MT150003UV03.Organization" nillable="true" minOccurs="0"/>
        <xs:element name="subjectOf" type="PRPA_MT201302UV02.Subject4" nillable="true" minOccurs="0" maxOccurs="unbounded"/>
        <xs:element name="coveredPartyOf" type="PRPA_MT201302UV02.CoveredParty" nillable="true" minOccurs="0" maxOccurs="unbounded"/>
    </xs:sequence>
    <xs:attributeGroup ref="InfrastructureRootAttributes"/>
    <xs:attribute name="nullFlavor" type="NullFlavor" use="optional"/>
    <xs:attribute name="classCode" type="RoleClass" use="required" fixed="PAT"/>
</xs:complexType>

Это генерируется для следующего интерфейса моего сервиса

    [System.Xml.Serialization.XmlElementAttribute("patientNonPersonLivingSubject", typeof(PRPA_MT201302UV02PatientpatientNonPersonLivingSubject), IsNullable=true)]
[System.Xml.Serialization.XmlElementAttribute("patientPerson", typeof(PRPA_MT201302UV02PatientpatientPerson), IsNullable=true)]
public object Item {
    get {
        return this.itemField;
    }
    set {
        this.itemField = value;
    }
}

Это нормально. Вот так выглядит та же часть из моего сервиса WSDL.

<xs:complexType name="PRPA_MT201302UV02Patient">
−
<xs:sequence>
    <xs:element name="addrField" nillable="true" type="tns:ArrayOfAD"/>
    <xs:element name="classCodeField" nillable="true" type="xs:string"/>
    <xs:element name="confidentialityCodeField" nillable="true" type="tns:ArrayOfCE"/>
    <xs:element name="coveredPartyOfField" nillable="true" type="tns:ArrayOfPRPA_MT201302UV02CoveredParty"/>
    <xs:element name="effectiveTimeField" nillable="true" type="tns:IVL_TS"/>
    <xs:element name="idField" nillable="true" type="tns:ArrayOfPRPA_MT201302UV02Patientid"/>
    <xs:element name="itemField" nillable="true" type="xs:anyType"/>
    <xs:element name="nullFlavorField" nillable="true" type="xs:string"/>
    <xs:element name="providerOrganizationField" nillable="true" type="tns:COCT_MT150003UV03Organization"/>
    <xs:element name="realmCodeField" nillable="true" type="tns:ArrayOfCS"/>
    <xs:element name="statusCodeField" nillable="true" type="tns:PRPA_MT201302UV02PatientstatusCode"/>
    <xs:element name="subjectOfField" nillable="true" type="tns:ArrayOfPRPA_MT201302UV02Subject4"/>
    <xs:element name="telecomField" nillable="true" type="tns:ArrayOfTEL"/>
    <xs:element name="templateIdField" nillable="true" type="tns:ArrayOfII"/>
    <xs:element name="typeIdField" nillable="true" type="tns:II"/>
    <xs:element name="veryImportantPersonCodeField" nillable="true" type="tns:CE"/>
</xs:sequence>

Элемент выбора заменяется простым элементом anyType? И проблема в том, что типы (PRPA_MT201302UV02.Patient.patientPerson и PRPA_MT201302UV02.Patient.patientNonPersonLivingSubject), которые должны быть помещены в поле item, никогда не генерируются в прокси-классе клиента?

Я попытался сгенерировать прокси-клиентские классы из поставляемой WSDL схемы, из которой генерируется сервис, и это создаст правильный прокси-клиент, НО при попытке связаться с сервисом будет Исключение несоответствия Datacontract

Почему схема WSDL не такая же?

1 Ответ

0 голосов
/ 31 июля 2009

Похоже, вы помечаете класс рабочим контрактом вместо контракта (интерфейс).

Также вы не показываете, пометили ли вы свои сообщения атрибутом DataContract / DataMember.

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...