83 lines
3.7 KiB
XML

<?xml version="1.0" encoding="UTF-8"?>
<!-- Intel(R) Active Management Technology MPS Event Notification 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:mps="http://schemas.intel.com/platform/client/MPSNotification/2006/01"
targetNamespace="http://schemas.intel.com/platform/client/MPSNotification/2006/01">
<types>
<!-- MPSNotification namespace -->
<xs:schema targetNamespace="http://schemas.intel.com/platform/client/MPSNotification/2006/01" elementFormDefault="qualified">
<xs:element name="EventNotificationRequest">
<xs:complexType>
<xs:sequence>
<xs:element minOccurs="1" maxOccurs="1" name="MPSEvent" type="mps:EventNotificationType"/>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:simpleType name="ConnectionStateTypeDefinition">
<xs:restriction base="xs:string">
<xs:enumeration value="CONNECTED" />
<xs:enumeration value="DISCONNECTED" />
</xs:restriction>
</xs:simpleType>
<xs:complexType name="EventNotificationType">
<xs:sequence>
<xs:element name="State" type="mps:ConnectionStateTypeDefinition"/>
<xs:element name="DeviceFqdn" type="xs:string"/>
<xs:element name="DevicePort" type="xs:unsignedShort" minOccurs="1" maxOccurs="2"/>
<xs:element name="DeviceUuid" type="xs:string"/>
<xs:element name="MpsAddress" type="xs:string"/>
<xs:element name="MpsHttpAddress" type="xs:string" minOccurs="0"/>
<xs:element name="MpsHttpPort" type="xs:unsignedShort"/>
<xs:element name="MpsSocksPort" type="xs:unsignedShort"/>
<xs:element name="WantReply" type="xs:boolean"/>
</xs:sequence>
</xs:complexType>
<xs:element name="MPSAlertResponse">
<xs:complexType>
<xs:sequence>
<xs:element name="KeepConnection" type="xs:boolean"/>
</xs:sequence>
</xs:complexType>
</xs:element>
</xs:schema>
</types>
<message name="MPSAlertIn">
<part name="parameters" element="mps:EventNotificationRequest"/>
</message>
<message name="MPSAlertOut">
<part name="parameters" element="mps:MPSAlertResponse"/>
</message>
<portType name="MPSNotificationSoapPortType">
<operation name="MPSAlert">
<input message="mps:MPSAlertIn"/>
<output message="mps:MPSAlertOut"/>
</operation>
</portType>
<binding name="MPSNotificationSoapBinding" type="mps:MPSNotificationSoapPortType">
<soap:binding style="document" transport="http://schemas.xmlsoap.org/soap/http"/>
<operation name="MPSAlert">
<soap:operation soapAction="http://schemas.intel.com/platform/client/MPSNotification/2006/01/MPSAlert"/>
<input>
<soap:body use="literal"/>
</input>
<output>
<soap:body use="literal"/>
</output>
</operation>
</binding>
<!-- Service Types -->
<service name="MPSNotificationService">
<port name="MPSNotificationSoapPortType" binding="mps:MPSNotificationSoapBinding">
<soap:address location="http://hostname:7792/MPSNotificationService"/>
</port>
</service>
</definitions>