65 lines
2.7 KiB
XML

<?xml version="1.0" encoding="UTF-8"?>
<!-- Manageability Presence Server authentication interface version 1.0-->
<definitions
xmlns="http://schemas.xmlsoap.org/wsdl/"
xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/"
xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
xmlns:xs="http://www.w3.org/2001/XMLSchema"
xmlns:mpa="http://schemas.intel.com/platform/client/MPSAuthentication/2006/01"
targetNamespace="http://schemas.intel.com/platform/client/MPSAuthentication/2006/01">
<types>
<!-- MPSAuthentication namespace -->
<xs:schema targetNamespace="http://schemas.intel.com/platform/client/MPSAuthentication/2006/01" elementFormDefault="qualified">
<xs:element name="AuthenticateRequest">
<xs:complexType>
<xs:sequence>
<xs:element name="AuthenticateId" type="xs:string"/>
<xs:element name="AuthenticatePassword" type="xs:string"/>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="AuthenticateResponse">
<xs:complexType>
<xs:sequence>
<xs:element name="AuthenticateResult" type="xs:boolean"/>
</xs:sequence>
</xs:complexType>
</xs:element>
</xs:schema>
</types>
<message name="AuthenticateIn">
<part name="parameters" element="mpa:AuthenticateRequest"/>
</message>
<message name="AuthenticateOut">
<part name="parameters" element="mpa:AuthenticateResponse"/>
</message>
<portType name="MPSAuthenticationSoapPortType">
<operation name="Authenticate">
<input message="mpa:AuthenticateIn"/>
<output message="mpa:AuthenticateOut"/>
</operation>
</portType>
<binding name="MPSAuthenticationSoapBinding" type="mpa:MPSAuthenticationSoapPortType">
<soap:binding style="document" transport="http://schemas.xmlsoap.org/soap/http"/>
<operation name="Authenticate">
<soap:operation soapAction="http://schemas.intel.com/platform/client/MPSAuthentication/2006/01/Authenticate"/>
<input>
<soap:body use="literal"/>
</input>
<output>
<soap:body use="literal"/>
</output>
</operation>
</binding>
<!-- Service Types -->
<service name="MPSAuthenticationService">
<port name="MPSAuthenticationSoapPortType" binding="mpa:MPSAuthenticationSoapBinding">
<soap:address location="http://hostname:7792/MPSAuthenticationService"/>
</port>
</service>
</definitions>