Einzelnen Beitrag anzeigen

Benutzerbild von Bernhard Geyer
Bernhard Geyer

Registriert seit: 13. Aug 2002
17.196 Beiträge
 
Delphi 10.4 Sydney
 
#3

AW: Delphi-SOAP-Server - Fehler bei Nutzung in IDEA (2018)

  Alt 5. Dez 2018, 17:33
Wenn nicht stört sogar alles (Ist eh gerade eher ein "Versucherla"):

Code:
<definitions xmlns="http://schemas.xmlsoap.org/wsdl/" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:tns="http://tempuri.org/" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:mime="http://schemas.xmlsoap.org/wsdl/mime/" xmlns:ns1="urn:QueryPartsInfoIntf" name="IQueryPartsInfoservice" targetNamespace="http://tempuri.org/">
<types>
<xs:schema xmlns="urn:QueryPartsInfoIntf" targetNamespace="urn:QueryPartsInfoIntf">
<xs:complexType name="TPartInfo">
<sequence xmlns="http://www.w3.org/2001/XMLSchema">
<xs:element name="PartNo" type="xs:string"/>
<xs:element name="PartAvailable" type="ns1:TPartAvailable"/>
<xs:element name="BasePrice" type="xs:double"/>
</sequence>
</xs:complexType>
<xs:simpleType name="TPartAvailable">
<xs:restriction base="xs:string">
<xs:enumeration value="paNone"/>
<xs:enumeration value="paSoon"/>
<xs:enumeration value="paOK"/>
</xs:restriction>
</xs:simpleType>
<xs:complexType name="TPartNoArray">
<xs:complexContent>
<xs:restriction base="soapenc:Array">
<sequence xmlns="http://www.w3.org/2001/XMLSchema"/>
<xs:attribute xmlns:n1="http://schemas.xmlsoap.org/wsdl/" ref="soapenc:arrayType" n1:arrayType="xs:string[]"/>
</xs:restriction>
</xs:complexContent>
</xs:complexType>
<xs:complexType name="TPartInfos">
<xs:complexContent>
<xs:restriction base="soapenc:Array">
<sequence xmlns="http://www.w3.org/2001/XMLSchema"/>
<xs:attribute xmlns:n1="http://schemas.xmlsoap.org/wsdl/" ref="soapenc:arrayType" n1:arrayType="ns1:TPartInfo[]"/>
</xs:restriction>
</xs:complexContent>
</xs:complexType>
</xs:schema>
</types>
<message name="GetPartInfo0Request">
<part name="PartNo" type="xs:string"/>
</message>
<message name="GetPartInfo0Response">
<part name="return" type="ns1:TPartInfo"/>
</message>
<message name="GetPartsInfo1Request">
<part name="PartsNo" type="ns1:TPartNoArray"/>
</message>
<message name="GetPartsInfo1Response">
<part name="return" type="ns1:TPartInfos"/>
</message>
<portType name="IQueryPartsInfo">
<operation name="GetPartInfo">
<input message="tns:GetPartInfo0Request"/>
<output message="tns:GetPartInfo0Response"/>
</operation>
<operation name="GetPartsInfo">
<input message="tns:GetPartsInfo1Request"/>
<output message="tns:GetPartsInfo1Response"/>
</operation>
</portType>
<binding name="IQueryPartsInfobinding" type="tns:IQueryPartsInfo">
<binding xmlns="http://schemas.xmlsoap.org/wsdl/soap/" style="rpc" transport="http://schemas.xmlsoap.org/soap/http"/>
<operation name="GetPartInfo">
<operation xmlns="http://schemas.xmlsoap.org/wsdl/soap/" soapAction="urn:QueryPartsInfoIntf-IQueryPartsInfo#GetPartInfo" style="rpc"/>
<input>
<body xmlns="http://schemas.xmlsoap.org/wsdl/soap/" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="urn:QueryPartsInfoIntf-IQueryPartsInfo"/>
</input>
<output>
<body xmlns="http://schemas.xmlsoap.org/wsdl/soap/" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="urn:QueryPartsInfoIntf-IQueryPartsInfo"/>
</output>
</operation>
<operation name="GetPartsInfo">
<operation xmlns="http://schemas.xmlsoap.org/wsdl/soap/" soapAction="urn:QueryPartsInfoIntf-IQueryPartsInfo#GetPartsInfo" style="rpc"/>
<input>
<body xmlns="http://schemas.xmlsoap.org/wsdl/soap/" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="urn:QueryPartsInfoIntf-IQueryPartsInfo"/>
</input>
<output>
<body xmlns="http://schemas.xmlsoap.org/wsdl/soap/" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="urn:QueryPartsInfoIntf-IQueryPartsInfo"/>
</output>
</operation>
</binding>
<service name="IQueryPartsInfoservice">
<port name="IQueryPartsInfoPort" binding="tns:IQueryPartsInfobinding">
<address xmlns="http://schemas.xmlsoap.org/wsdl/soap/" location="https://localhost:8060/soap/IQueryPartsInfo"/>
</port>
</service>
</definitions>
Windows Vista - Eine neue Erfahrung in Fehlern.
  Mit Zitat antworten Zitat