onvif-python
Advanced tools
| <?xml version="1.0" encoding="UTF-8"?> | ||
| <!-- | ||
| OASIS takes no position regarding the validity or scope of any intellectual property or other rights that might be claimed to pertain to the implementation or use of the technology described in this document or the extent to which any license under such rights might or might not be available; neither does it represent that it has made any effort to identify any such rights. Information on OASIS's procedures with respect to rights in OASIS specifications can be found at the OASIS website. Copies of claims of rights made available for publication and any assurances of licenses to be made available, or the result of an attempt made to obtain a general license or permission for the use of such proprietary rights by implementors or users of this specification, can be obtained from the OASIS Executive Director. | ||
| OASIS invites any interested party to bring to its attention any copyrights, patents or patent applications, or other proprietary rights which may cover technology that may be required to implement this specification. Please address the information to the OASIS Executive Director. | ||
| Copyright (C) OASIS Open (2004-2006). All Rights Reserved. | ||
| This document and translations of it may be copied and furnished to others, and derivative works that comment on or otherwise explain it or assist in its implementation may be prepared, copied, published and distributed, in whole or in part, without restriction of any kind, provided that the above copyright notice and this paragraph are included on all such copies and derivative works. However, this document itself may not be modified in any way, such as by removing the copyright notice or references to OASIS, except as needed for the purpose of developing OASIS specifications, in which case the procedures for copyrights defined in the OASIS Intellectual Property Rights document must be followed, or as required to translate it into languages other than English. | ||
| The limited permissions granted above are perpetual and will not be revoked by OASIS or its successors or assigns. | ||
| This document and the information contained herein is provided on an "AS IS" basis and OASIS DISCLAIMS ALL WARRANTIES, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTY THAT THE USE OF THE INFORMATION HEREIN WILL NOT INFRINGE ANY RIGHTS OR ANY IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. | ||
| --> | ||
| <xsd:schema | ||
| targetNamespace="http://docs.oasis-open.org/wsn/b-2" | ||
| xmlns:wsnt="http://docs.oasis-open.org/wsn/b-2" | ||
| xmlns:wsa="http://www.w3.org/2005/08/addressing" | ||
| xmlns:wsrf-bf="http://docs.oasis-open.org/wsrf/bf-2" | ||
| xmlns:wstop="http://docs.oasis-open.org/wsn/t-1" | ||
| xmlns:xsd="http://www.w3.org/2001/XMLSchema" | ||
| elementFormDefault="qualified" attributeFormDefault="unqualified"> | ||
| <!-- ======================== Imports ============================ --> | ||
| <xsd:import namespace="http://www.w3.org/2005/08/addressing" | ||
| schemaLocation="./ws-addr.xsd" | ||
| /> | ||
| <xsd:import namespace="http://docs.oasis-open.org/wsrf/bf-2" | ||
| schemaLocation="./bf-2.xsd" | ||
| /> | ||
| <xsd:import namespace="http://docs.oasis-open.org/wsn/t-1" | ||
| schemaLocation="./t-1.xsd" | ||
| /> | ||
| <!-- ===================== Misc. Helper Types ===================== --> | ||
| <xsd:complexType name="QueryExpressionType" mixed="true"> | ||
| <xsd:sequence> | ||
| <xsd:any minOccurs="0" maxOccurs="1" processContents="lax" /> | ||
| </xsd:sequence> | ||
| <xsd:attribute name="Dialect" type="xsd:anyURI" use="required"/> | ||
| </xsd:complexType> | ||
| <xsd:complexType name="TopicExpressionType" mixed="true"> | ||
| <xsd:sequence> | ||
| <xsd:any minOccurs="0" maxOccurs="1" processContents="lax" /> | ||
| </xsd:sequence> | ||
| <xsd:attribute name="Dialect" type="xsd:anyURI" use="required" /> | ||
| <xsd:anyAttribute/> | ||
| </xsd:complexType> | ||
| <xsd:complexType name="FilterType"> | ||
| <xsd:sequence> | ||
| <xsd:any minOccurs="0" maxOccurs="unbounded"/> | ||
| </xsd:sequence> | ||
| </xsd:complexType> | ||
| <xsd:complexType name="SubscriptionPolicyType"> | ||
| <xsd:sequence> | ||
| <xsd:any minOccurs="0" maxOccurs="unbounded" processContents="lax"/> | ||
| </xsd:sequence> | ||
| </xsd:complexType> | ||
| <!-- =============== Resource Property Related =================== --> | ||
| <!-- ======== Resource Properties for NotificationProducer ======== --> | ||
| <xsd:element name="TopicExpression" type="wsnt:TopicExpressionType"/> | ||
| <xsd:element name="FixedTopicSet" type="xsd:boolean" default="true"/> | ||
| <xsd:element name="TopicExpressionDialect" type="xsd:anyURI"/> | ||
| <xsd:element name="NotificationProducerRP"> | ||
| <xsd:complexType> | ||
| <xsd:sequence> | ||
| <xsd:element ref="wsnt:TopicExpression" | ||
| minOccurs="0" maxOccurs="unbounded" /> | ||
| <xsd:element ref="wsnt:FixedTopicSet" | ||
| minOccurs="0" maxOccurs="1" /> | ||
| <xsd:element ref="wsnt:TopicExpressionDialect" | ||
| minOccurs="0" maxOccurs="unbounded" /> | ||
| <xsd:element ref="wstop:TopicSet" | ||
| minOccurs="0" maxOccurs="1" /> | ||
| </xsd:sequence> | ||
| </xsd:complexType> | ||
| </xsd:element> | ||
| <!-- ======== Resource Properties for SubscriptionManager ========= --> | ||
| <xsd:element name="ConsumerReference" | ||
| type="wsa:EndpointReferenceType" /> | ||
| <xsd:element name="Filter" type="wsnt:FilterType" /> | ||
| <xsd:element name="SubscriptionPolicy" type="wsnt:SubscriptionPolicyType" /> | ||
| <xsd:element name="CreationTime" type="xsd:dateTime" /> | ||
| <xsd:element name="SubscriptionManagerRP" > | ||
| <xsd:complexType> | ||
| <xsd:sequence> | ||
| <xsd:element ref="wsnt:ConsumerReference" | ||
| minOccurs="1" maxOccurs="1" /> | ||
| <xsd:element ref="wsnt:Filter" | ||
| minOccurs="0" maxOccurs="1" /> | ||
| <xsd:element ref="wsnt:SubscriptionPolicy" | ||
| minOccurs="0" maxOccurs="1" /> | ||
| <xsd:element ref="wsnt:CreationTime" | ||
| minOccurs="0" maxOccurs="1" /> | ||
| </xsd:sequence> | ||
| </xsd:complexType> | ||
| </xsd:element> | ||
| <!-- ================= Notification Metadata ===================== --> | ||
| <xsd:element name="SubscriptionReference" | ||
| type="wsa:EndpointReferenceType" /> | ||
| <xsd:element name="Topic" | ||
| type="wsnt:TopicExpressionType" /> | ||
| <xsd:element name="ProducerReference" | ||
| type="wsa:EndpointReferenceType" /> | ||
| <!-- ================== Message Helper Types ===================== --> | ||
| <xsd:complexType name="NotificationMessageHolderType" > | ||
| <xsd:sequence> | ||
| <xsd:element ref="wsnt:SubscriptionReference" | ||
| minOccurs="0" maxOccurs="1" /> | ||
| <xsd:element ref="wsnt:Topic" | ||
| minOccurs="0" maxOccurs="1" /> | ||
| <xsd:element ref="wsnt:ProducerReference" | ||
| minOccurs="0" maxOccurs="1" /> | ||
| <xsd:element name="Message"> | ||
| <xsd:complexType> | ||
| <xsd:sequence> | ||
| <xsd:any namespace="##any" processContents="lax" | ||
| minOccurs="1" maxOccurs="1"/> | ||
| </xsd:sequence> | ||
| </xsd:complexType> | ||
| </xsd:element> | ||
| </xsd:sequence> | ||
| </xsd:complexType> | ||
| <xsd:element name="NotificationMessage" | ||
| type="wsnt:NotificationMessageHolderType"/> | ||
| <!-- ========== Message Types for NotificationConsumer =========== --> | ||
| <xsd:element name="Notify" > | ||
| <xsd:complexType> | ||
| <xsd:sequence> | ||
| <xsd:element ref="wsnt:NotificationMessage" | ||
| minOccurs="1" maxOccurs="unbounded" /> | ||
| <xsd:any namespace="##other" processContents="lax" | ||
| minOccurs="0" maxOccurs="unbounded"/> | ||
| </xsd:sequence> | ||
| </xsd:complexType> | ||
| </xsd:element> | ||
| <!-- ========== Message Types for NotificationProducer =========== --> | ||
| <xsd:simpleType name="AbsoluteOrRelativeTimeType"> | ||
| <xsd:union memberTypes="xsd:dateTime xsd:duration" /> | ||
| </xsd:simpleType> | ||
| <xsd:element name="CurrentTime" type="xsd:dateTime" /> | ||
| <xsd:element name="TerminationTime" | ||
| nillable="true" type="xsd:dateTime" /> | ||
| <xsd:element name="ProducerProperties" | ||
| type="wsnt:QueryExpressionType" /> | ||
| <xsd:element name="MessageContent" | ||
| type="wsnt:QueryExpressionType" /> | ||
| <xsd:element name="UseRaw"><xsd:complexType/></xsd:element> | ||
| <xsd:element name="Subscribe" > | ||
| <xsd:complexType> | ||
| <xsd:sequence> | ||
| <xsd:element name="ConsumerReference" | ||
| type="wsa:EndpointReferenceType" | ||
| minOccurs="1" maxOccurs="1" /> | ||
| <xsd:element name="Filter" | ||
| type="wsnt:FilterType" | ||
| minOccurs="0" maxOccurs="1" /> | ||
| <xsd:element name="InitialTerminationTime" | ||
| type="wsnt:AbsoluteOrRelativeTimeType" | ||
| nillable="true" | ||
| minOccurs="0" maxOccurs="1" /> | ||
| <xsd:element name="SubscriptionPolicy" | ||
| minOccurs="0" maxOccurs="1"> | ||
| <xsd:complexType> | ||
| <xsd:sequence> | ||
| <xsd:any namespace="##any" processContents="lax" | ||
| minOccurs="0" maxOccurs="unbounded"/> | ||
| </xsd:sequence> | ||
| </xsd:complexType> | ||
| </xsd:element> | ||
| <xsd:any namespace="##other" processContents="lax" | ||
| minOccurs="0" maxOccurs="unbounded"/> | ||
| </xsd:sequence> | ||
| </xsd:complexType> | ||
| </xsd:element> | ||
| <xsd:element name="SubscribeResponse"> | ||
| <xsd:complexType> | ||
| <xsd:sequence> | ||
| <xsd:element name="SubscriptionReference" | ||
| type="wsa:EndpointReferenceType" | ||
| minOccurs="1" maxOccurs="1" /> | ||
| <xsd:element ref="wsnt:CurrentTime" | ||
| minOccurs="0" maxOccurs="1" /> | ||
| <xsd:element ref="wsnt:TerminationTime" | ||
| minOccurs="0" maxOccurs="1" /> | ||
| <xsd:any namespace="##other" processContents="lax" | ||
| minOccurs="0" maxOccurs="unbounded"/> | ||
| </xsd:sequence> | ||
| </xsd:complexType> | ||
| </xsd:element> | ||
| <xsd:element name="GetCurrentMessage"> | ||
| <xsd:complexType> | ||
| <xsd:sequence> | ||
| <xsd:element name="Topic" | ||
| type="wsnt:TopicExpressionType" /> | ||
| <xsd:any namespace="##other" processContents="lax" | ||
| minOccurs="0" maxOccurs="unbounded"/> | ||
| </xsd:sequence> | ||
| </xsd:complexType> | ||
| </xsd:element> | ||
| <xsd:element name="GetCurrentMessageResponse"> | ||
| <xsd:complexType> | ||
| <xsd:sequence> | ||
| <xsd:any namespace="##other" processContents="lax" | ||
| minOccurs="0" maxOccurs="unbounded"/> | ||
| </xsd:sequence> | ||
| </xsd:complexType> | ||
| </xsd:element> | ||
| <xsd:complexType name="SubscribeCreationFailedFaultType"> | ||
| <xsd:complexContent> | ||
| <xsd:extension base="wsrf-bf:BaseFaultType"/> | ||
| </xsd:complexContent> | ||
| </xsd:complexType> | ||
| <xsd:element name="SubscribeCreationFailedFault" | ||
| type="wsnt:SubscribeCreationFailedFaultType"/> | ||
| <xsd:complexType name="InvalidFilterFaultType"> | ||
| <xsd:complexContent> | ||
| <xsd:extension base="wsrf-bf:BaseFaultType"> | ||
| <xsd:sequence> | ||
| <xsd:element name="UnknownFilter" type="xsd:QName" | ||
| minOccurs="1" maxOccurs="unbounded"/> | ||
| </xsd:sequence> | ||
| </xsd:extension> | ||
| </xsd:complexContent> | ||
| </xsd:complexType> | ||
| <xsd:element name="InvalidFilterFault" | ||
| type="wsnt:InvalidFilterFaultType"/> | ||
| <xsd:complexType name="TopicExpressionDialectUnknownFaultType"> | ||
| <xsd:complexContent> | ||
| <xsd:extension base="wsrf-bf:BaseFaultType"/> | ||
| </xsd:complexContent> | ||
| </xsd:complexType> | ||
| <xsd:element name="TopicExpressionDialectUnknownFault" | ||
| type="wsnt:TopicExpressionDialectUnknownFaultType"/> | ||
| <xsd:complexType name="InvalidTopicExpressionFaultType"> | ||
| <xsd:complexContent> | ||
| <xsd:extension base="wsrf-bf:BaseFaultType"/> | ||
| </xsd:complexContent> | ||
| </xsd:complexType> | ||
| <xsd:element name="InvalidTopicExpressionFault" | ||
| type="wsnt:InvalidTopicExpressionFaultType"/> | ||
| <xsd:complexType name="TopicNotSupportedFaultType"> | ||
| <xsd:complexContent> | ||
| <xsd:extension base="wsrf-bf:BaseFaultType"/> | ||
| </xsd:complexContent> | ||
| </xsd:complexType> | ||
| <xsd:element name="TopicNotSupportedFault" | ||
| type="wsnt:TopicNotSupportedFaultType"/> | ||
| <xsd:complexType name="MultipleTopicsSpecifiedFaultType"> | ||
| <xsd:complexContent> | ||
| <xsd:extension base="wsrf-bf:BaseFaultType"/> | ||
| </xsd:complexContent> | ||
| </xsd:complexType> | ||
| <xsd:element name="MultipleTopicsSpecifiedFault" | ||
| type="wsnt:MultipleTopicsSpecifiedFaultType"/> | ||
| <xsd:complexType name="InvalidProducerPropertiesExpressionFaultType"> | ||
| <xsd:complexContent> | ||
| <xsd:extension base="wsrf-bf:BaseFaultType"/> | ||
| </xsd:complexContent> | ||
| </xsd:complexType> | ||
| <xsd:element name="InvalidProducerPropertiesExpressionFault" | ||
| type="wsnt:InvalidProducerPropertiesExpressionFaultType"/> | ||
| <xsd:complexType name="InvalidMessageContentExpressionFaultType"> | ||
| <xsd:complexContent> | ||
| <xsd:extension base="wsrf-bf:BaseFaultType"/> | ||
| </xsd:complexContent> | ||
| </xsd:complexType> | ||
| <xsd:element name="InvalidMessageContentExpressionFault" | ||
| type="wsnt:InvalidMessageContentExpressionFaultType"/> | ||
| <xsd:complexType name="UnrecognizedPolicyRequestFaultType"> | ||
| <xsd:complexContent> | ||
| <xsd:extension base="wsrf-bf:BaseFaultType"> | ||
| <xsd:sequence> | ||
| <xsd:element name="UnrecognizedPolicy" type="xsd:QName" | ||
| minOccurs="0" maxOccurs="unbounded"/> | ||
| </xsd:sequence> | ||
| </xsd:extension> | ||
| </xsd:complexContent> | ||
| </xsd:complexType> | ||
| <xsd:element name="UnrecognizedPolicyRequestFault" | ||
| type="wsnt:UnrecognizedPolicyRequestFaultType"/> | ||
| <xsd:complexType name="UnsupportedPolicyRequestFaultType"> | ||
| <xsd:complexContent> | ||
| <xsd:extension base="wsrf-bf:BaseFaultType"> | ||
| <xsd:sequence> | ||
| <xsd:element name="UnsupportedPolicy" type="xsd:QName" | ||
| minOccurs="0" maxOccurs="unbounded"/> | ||
| </xsd:sequence> | ||
| </xsd:extension> | ||
| </xsd:complexContent> | ||
| </xsd:complexType> | ||
| <xsd:element name="UnsupportedPolicyRequestFault" | ||
| type="wsnt:UnsupportedPolicyRequestFaultType"/> | ||
| <xsd:complexType name="NotifyMessageNotSupportedFaultType"> | ||
| <xsd:complexContent> | ||
| <xsd:extension base="wsrf-bf:BaseFaultType"/> | ||
| </xsd:complexContent> | ||
| </xsd:complexType> | ||
| <xsd:element name="NotifyMessageNotSupportedFault" | ||
| type="wsnt:NotifyMessageNotSupportedFaultType"/> | ||
| <xsd:complexType name="UnacceptableInitialTerminationTimeFaultType"> | ||
| <xsd:complexContent> | ||
| <xsd:extension base="wsrf-bf:BaseFaultType"> | ||
| <xsd:sequence> | ||
| <xsd:element name="MinimumTime" type="xsd:dateTime"/> | ||
| <xsd:element name="MaximumTime" type="xsd:dateTime" | ||
| minOccurs="0"/> | ||
| </xsd:sequence> | ||
| </xsd:extension> | ||
| </xsd:complexContent> | ||
| </xsd:complexType> | ||
| <xsd:element name="UnacceptableInitialTerminationTimeFault" | ||
| type="wsnt:UnacceptableInitialTerminationTimeFaultType"/> | ||
| <xsd:complexType name="NoCurrentMessageOnTopicFaultType"> | ||
| <xsd:complexContent> | ||
| <xsd:extension base="wsrf-bf:BaseFaultType"/> | ||
| </xsd:complexContent> | ||
| </xsd:complexType> | ||
| <xsd:element name="NoCurrentMessageOnTopicFault" | ||
| type="wsnt:NoCurrentMessageOnTopicFaultType"/> | ||
| <!-- ======== Message Types for PullPoint ======================== --> | ||
| <xsd:element name="GetMessages"> | ||
| <xsd:complexType> | ||
| <xsd:sequence> | ||
| <xsd:element name="MaximumNumber" | ||
| type="xsd:nonNegativeInteger" | ||
| minOccurs="0"/> | ||
| <xsd:any namespace="##other" processContents="lax" | ||
| minOccurs="0" maxOccurs="unbounded"/> | ||
| </xsd:sequence> | ||
| <xsd:anyAttribute/> | ||
| </xsd:complexType> | ||
| </xsd:element> | ||
| <xsd:element name="GetMessagesResponse"> | ||
| <xsd:complexType> | ||
| <xsd:sequence> | ||
| <xsd:element ref="wsnt:NotificationMessage" | ||
| minOccurs="0" maxOccurs="unbounded" /> | ||
| <xsd:any namespace="##other" processContents="lax" | ||
| minOccurs="0" maxOccurs="unbounded"/> | ||
| </xsd:sequence> | ||
| <xsd:anyAttribute/> | ||
| </xsd:complexType> | ||
| </xsd:element> | ||
| <xsd:element name="DestroyPullPoint"> | ||
| <xsd:complexType> | ||
| <xsd:sequence> | ||
| <xsd:any namespace="##other" processContents="lax" | ||
| minOccurs="0" maxOccurs="unbounded"/> | ||
| </xsd:sequence> | ||
| <xsd:anyAttribute/> | ||
| </xsd:complexType> | ||
| </xsd:element> | ||
| <xsd:element name="DestroyPullPointResponse"> | ||
| <xsd:complexType> | ||
| <xsd:sequence> | ||
| <xsd:any namespace="##other" processContents="lax" | ||
| minOccurs="0" maxOccurs="unbounded"/> | ||
| </xsd:sequence> | ||
| <xsd:anyAttribute/> | ||
| </xsd:complexType> | ||
| </xsd:element> | ||
| <xsd:complexType name="UnableToGetMessagesFaultType"> | ||
| <xsd:complexContent> | ||
| <xsd:extension base="wsrf-bf:BaseFaultType"/> | ||
| </xsd:complexContent> | ||
| </xsd:complexType> | ||
| <xsd:element name="UnableToGetMessagesFault" | ||
| type="wsnt:UnableToGetMessagesFaultType"/> | ||
| <xsd:complexType name="UnableToDestroyPullPointFaultType"> | ||
| <xsd:complexContent> | ||
| <xsd:extension base="wsrf-bf:BaseFaultType"/> | ||
| </xsd:complexContent> | ||
| </xsd:complexType> | ||
| <xsd:element name="UnableToDestroyPullPointFault" | ||
| type="wsnt:UnableToDestroyPullPointFaultType"/> | ||
| <!-- ======== Message Types for Create PullPoint ================= --> | ||
| <xsd:element name="CreatePullPoint"> | ||
| <xsd:complexType> | ||
| <xsd:sequence> | ||
| <xsd:any namespace="##other" processContents="lax" | ||
| minOccurs="0" maxOccurs="unbounded"/> | ||
| </xsd:sequence> | ||
| <xsd:anyAttribute/> | ||
| </xsd:complexType> | ||
| </xsd:element> | ||
| <xsd:element name="CreatePullPointResponse"> | ||
| <xsd:complexType> | ||
| <xsd:sequence> | ||
| <xsd:element name="PullPoint" | ||
| type="wsa:EndpointReferenceType"/> | ||
| <xsd:any namespace="##other" processContents="lax" | ||
| minOccurs="0" maxOccurs="unbounded"/> | ||
| </xsd:sequence> | ||
| <xsd:anyAttribute/> | ||
| </xsd:complexType> | ||
| </xsd:element> | ||
| <xsd:complexType name="UnableToCreatePullPointFaultType"> | ||
| <xsd:complexContent> | ||
| <xsd:extension base="wsrf-bf:BaseFaultType"/> | ||
| </xsd:complexContent> | ||
| </xsd:complexType> | ||
| <xsd:element name="UnableToCreatePullPointFault" | ||
| type="wsnt:UnableToCreatePullPointFaultType"/> | ||
| <!-- ======== Message Types for Base SubscriptionManager ========= --> | ||
| <xsd:element name="Renew"> | ||
| <xsd:complexType> | ||
| <xsd:sequence> | ||
| <xsd:element name="TerminationTime" | ||
| type="wsnt:AbsoluteOrRelativeTimeType" | ||
| nillable="true" | ||
| minOccurs="1" maxOccurs="1" /> | ||
| <xsd:any namespace="##other" processContents="lax" | ||
| minOccurs="0" maxOccurs="unbounded"/> | ||
| </xsd:sequence> | ||
| </xsd:complexType> | ||
| </xsd:element> | ||
| <xsd:element name="RenewResponse"> | ||
| <xsd:complexType> | ||
| <xsd:sequence> | ||
| <xsd:element ref="wsnt:TerminationTime" | ||
| minOccurs="1" maxOccurs="1" /> | ||
| <xsd:element ref="wsnt:CurrentTime" | ||
| minOccurs="0" maxOccurs="1" /> | ||
| <xsd:any namespace="##other" processContents="lax" | ||
| minOccurs="0" maxOccurs="unbounded"/> | ||
| </xsd:sequence> | ||
| </xsd:complexType> | ||
| </xsd:element> | ||
| <xsd:complexType name="UnacceptableTerminationTimeFaultType"> | ||
| <xsd:complexContent> | ||
| <xsd:extension base="wsrf-bf:BaseFaultType"> | ||
| <xsd:sequence> | ||
| <xsd:element name="MinimumTime" type="xsd:dateTime"/> | ||
| <xsd:element name="MaximumTime" type="xsd:dateTime" | ||
| minOccurs="0"/> | ||
| </xsd:sequence> | ||
| </xsd:extension> | ||
| </xsd:complexContent> | ||
| </xsd:complexType> | ||
| <xsd:element name="UnacceptableTerminationTimeFault" | ||
| type="wsnt:UnacceptableTerminationTimeFaultType"/> | ||
| <xsd:element name="Unsubscribe"> | ||
| <xsd:complexType> | ||
| <xsd:sequence> | ||
| <xsd:any namespace="##other" processContents="lax" | ||
| minOccurs="0" maxOccurs="unbounded"/> | ||
| </xsd:sequence> | ||
| </xsd:complexType> | ||
| </xsd:element> | ||
| <xsd:element name="UnsubscribeResponse"> | ||
| <xsd:complexType> | ||
| <xsd:sequence> | ||
| <xsd:any namespace="##other" processContents="lax" | ||
| minOccurs="0" maxOccurs="unbounded"/> | ||
| </xsd:sequence> | ||
| </xsd:complexType> | ||
| </xsd:element> | ||
| <xsd:complexType name="UnableToDestroySubscriptionFaultType"> | ||
| <xsd:complexContent> | ||
| <xsd:extension base="wsrf-bf:BaseFaultType"/> | ||
| </xsd:complexContent> | ||
| </xsd:complexType> | ||
| <xsd:element name="UnableToDestroySubscriptionFault" | ||
| type="wsnt:UnableToDestroySubscriptionFaultType"/> | ||
| <!-- ====== Message Types for Pausable SubscriptionManager ======= --> | ||
| <xsd:element name="PauseSubscription"> | ||
| <xsd:complexType> | ||
| <xsd:sequence> | ||
| <xsd:any namespace="##other" processContents="lax" | ||
| minOccurs="0" maxOccurs="unbounded"/> | ||
| </xsd:sequence> | ||
| </xsd:complexType> | ||
| </xsd:element> | ||
| <xsd:element name="PauseSubscriptionResponse" > | ||
| <xsd:complexType> | ||
| <xsd:sequence> | ||
| <xsd:any namespace="##other" processContents="lax" | ||
| minOccurs="0" maxOccurs="unbounded"/> | ||
| </xsd:sequence> | ||
| </xsd:complexType> | ||
| </xsd:element> | ||
| <xsd:element name="ResumeSubscription"> | ||
| <xsd:complexType> | ||
| <xsd:sequence> | ||
| <xsd:any namespace="##other" processContents="lax" | ||
| minOccurs="0" maxOccurs="unbounded"/> | ||
| </xsd:sequence> | ||
| </xsd:complexType> | ||
| </xsd:element> | ||
| <xsd:element name="ResumeSubscriptionResponse"> | ||
| <xsd:complexType> | ||
| <xsd:sequence> | ||
| <xsd:any namespace="##other" processContents="lax" | ||
| minOccurs="0" maxOccurs="unbounded"/> | ||
| </xsd:sequence> | ||
| </xsd:complexType> | ||
| </xsd:element> | ||
| <xsd:complexType name="PauseFailedFaultType"> | ||
| <xsd:complexContent> | ||
| <xsd:extension base="wsrf-bf:BaseFaultType"/> | ||
| </xsd:complexContent> | ||
| </xsd:complexType> | ||
| <xsd:element name="PauseFailedFault" | ||
| type="wsnt:PauseFailedFaultType"/> | ||
| <xsd:complexType name="ResumeFailedFaultType"> | ||
| <xsd:complexContent> | ||
| <xsd:extension base="wsrf-bf:BaseFaultType"/> | ||
| </xsd:complexContent> | ||
| </xsd:complexType> | ||
| <xsd:element name="ResumeFailedFault" | ||
| type="wsnt:ResumeFailedFaultType"/> | ||
| </xsd:schema> |
| <?xml version="1.0" encoding="UTF-8"?> | ||
| <!-- | ||
| OASIS takes no position regarding the validity or scope of any intellectual property or other rights that might be claimed to pertain to the implementation or use of the technology described in this document or the extent to which any license under such rights might or might not be available; neither does it represent that it has made any effort to identify any such rights. Information on OASIS's procedures with respect to rights in OASIS specifications can be found at the OASIS website. Copies of claims of rights made available for publication and any assurances of licenses to be made available, or the result of an attempt made to obtain a general license or permission for the use of such proprietary rights by implementers or users of this specification, can be obtained from the OASIS Executive Director. | ||
| OASIS invites any interested party to bring to its attention any copyrights, patents or patent applications, or other proprietary rights which may cover technology that may be required to implement this specification. Please address the information to the OASIS Executive Director. | ||
| Copyright (C) OASIS Open (2005). All Rights Reserved. | ||
| This document and translations of it may be copied and furnished to others, and derivative works that comment on or otherwise explain it or assist in its implementation may be prepared, copied, published and distributed, in whole or in part, without restriction of any kind, provided that the above copyright notice and this paragraph are included on all such copies and derivative works. However, this document itself may not be modified in any way, such as by removing the copyright notice or references to OASIS, except as needed for the purpose of developing OASIS specifications, in which case the procedures for copyrights defined in the OASIS Intellectual Property Rights document must be followed, or as required to translate it into languages other than English. | ||
| The limited permissions granted above are perpetual and will not be revoked by OASIS or its successors or assigns. | ||
| This document and the information contained herein is provided on an "AS IS" basis and OASIS DISCLAIMS ALL WARRANTIES, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTY THAT THE USE OF THE INFORMATION HEREIN WILL NOT INFRINGE ANY RIGHTS OR ANY IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. | ||
| --> | ||
| <xsd:schema | ||
| xmlns="http://www.w3.org/2001/XMLSchema" | ||
| xmlns:xsd="http://www.w3.org/2001/XMLSchema" | ||
| xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
| xmlns:wsa="http://www.w3.org/2005/08/addressing" | ||
| xmlns:wsrf-bf= | ||
| "http://docs.oasis-open.org/wsrf/bf-2" | ||
| elementFormDefault="qualified" attributeFormDefault="unqualified" | ||
| targetNamespace= | ||
| "http://docs.oasis-open.org/wsrf/bf-2"> | ||
| <xsd:import | ||
| namespace="http://www.w3.org/2005/08/addressing" | ||
| schemaLocation="./ws-addr.xsd"/> | ||
| <xsd:import namespace="http://www.w3.org/XML/1998/namespace" | ||
| schemaLocation="./xml.xsd"> | ||
| <xsd:annotation> | ||
| <xsd:documentation> | ||
| Get access to the xml: attribute groups for xml:lang as declared on 'schema' | ||
| and 'documentation' below | ||
| </xsd:documentation> | ||
| </xsd:annotation> | ||
| </xsd:import> | ||
| <!-- ====================== BaseFault Types ======================= --> | ||
| <xsd:element name="BaseFault" type="wsrf-bf:BaseFaultType"/> | ||
| <xsd:complexType name="BaseFaultType"> | ||
| <xsd:sequence> | ||
| <xsd:any namespace="##other" processContents="lax" | ||
| minOccurs="0" maxOccurs="unbounded"/> | ||
| <xsd:element name="Timestamp" type="xsd:dateTime" | ||
| minOccurs="1" maxOccurs="1"/> | ||
| <xsd:element name="Originator" type="wsa:EndpointReferenceType" | ||
| minOccurs="0" maxOccurs="1"/> | ||
| <xsd:element name="ErrorCode" | ||
| minOccurs="0" maxOccurs="1"> | ||
| <xsd:complexType> | ||
| <xsd:complexContent mixed="true"> | ||
| <xsd:extension base="xsd:anyType"> | ||
| <xsd:attribute name="dialect" type="xsd:anyURI" | ||
| use="required"/> | ||
| </xsd:extension> | ||
| </xsd:complexContent> | ||
| </xsd:complexType> | ||
| </xsd:element> | ||
| <xsd:element name="Description" | ||
| minOccurs="0" maxOccurs="unbounded"> | ||
| <xsd:complexType> | ||
| <xsd:simpleContent> | ||
| <xsd:extension base="xsd:string"> | ||
| <xsd:attribute ref="xml:lang" use="optional"/> | ||
| </xsd:extension> | ||
| </xsd:simpleContent> | ||
| </xsd:complexType> | ||
| </xsd:element> | ||
| <xsd:element name="FaultCause" minOccurs="0" maxOccurs="1"> | ||
| <xsd:complexType> | ||
| <xsd:sequence> | ||
| <xsd:any namespace="##other" processContents="lax" | ||
| minOccurs="1" maxOccurs="1"/> | ||
| </xsd:sequence> | ||
| </xsd:complexType> | ||
| </xsd:element> | ||
| </xsd:sequence> | ||
| <xsd:anyAttribute namespace="##other" processContents="lax"/> | ||
| </xsd:complexType> | ||
| </xsd:schema> |
| <?xml version="1.0" encoding="utf-8"?> | ||
| <!-- | ||
| OASIS takes no position regarding the validity or scope of any intellectual property or other rights that might be claimed to pertain to the implementation or use of the technology described in this document or the extent to which any license under such rights might or might not be available; neither does it represent that it has made any effort to identify any such rights. Information on OASIS's procedures with respect to rights in OASIS specifications can be found at the OASIS website. Copies of claims of rights made available for publication and any assurances of licenses to be made available, or the result of an attempt made to obtain a general license or permission for the use of such proprietary rights by implementors or users of this specification, can be obtained from the OASIS Executive Director. | ||
| OASIS invites any interested party to bring to its attention any copyrights, patents or patent applications, or other proprietary rights which may cover technology that may be required to implement this specification. Please address the information to the OASIS Executive Director. | ||
| Copyright (C) OASIS Open (2004-2006). All Rights Reserved. | ||
| This document and translations of it may be copied and furnished to others, and derivative works that comment on or otherwise explain it or assist in its implementation may be prepared, copied, published and distributed, in whole or in part, without restriction of any kind, provided that the above copyright notice and this paragraph are included on all such copies and derivative works. However, this document itself may not be modified in any way, such as by removing the copyright notice or references to OASIS, except as needed for the purpose of developing OASIS specifications, in which case the procedures for copyrights defined in the OASIS Intellectual Property Rights document must be followed, or as required to translate it into languages other than English. | ||
| The limited permissions granted above are perpetual and will not be revoked by OASIS or its successors or assigns. | ||
| This document and the information contained herein is provided on an "AS IS" basis and OASIS DISCLAIMS ALL WARRANTIES, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTY THAT THE USE OF THE INFORMATION HEREIN WILL NOT INFRINGE ANY RIGHTS OR ANY IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. | ||
| --> | ||
| <wsdl:definitions name="WS-BaseNotification" | ||
| targetNamespace="http://docs.oasis-open.org/wsn/bw-2" | ||
| xmlns:wsntw="http://docs.oasis-open.org/wsn/bw-2" | ||
| xmlns:wsnt="http://docs.oasis-open.org/wsn/b-2" | ||
| xmlns:wsa="http://www.w3.org/2005/08/addressing" | ||
| xmlns:wsrf-rw="http://docs.oasis-open.org/wsrf/rw-2" | ||
| xmlns:xsd="http://www.w3.org/2001/XMLSchema" | ||
| xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/"> | ||
| <!-- ========================== Imports =========================== --> | ||
| <wsdl:import | ||
| namespace="http://docs.oasis-open.org/wsrf/rw-2" | ||
| location="./rw-2.wsdl"/> | ||
| <!-- ===================== Types Definitions ====================== --> | ||
| <wsdl:types> | ||
| <xsd:schema> | ||
| <xsd:import | ||
| namespace="http://docs.oasis-open.org/wsn/b-2" | ||
| schemaLocation="./b-2.xsd"/> | ||
| </xsd:schema> | ||
| </wsdl:types> | ||
| <!-- ================ NotificationConsumer::Notify ================ | ||
| Notify( | ||
| NotificationMessage | ||
| (SubscriptionReference, TopicExpression, ProducerReference, | ||
| Message)* | ||
| returns: n/a (one way) | ||
| --> | ||
| <wsdl:message name="Notify"> | ||
| <wsdl:part name="Notify" element="wsnt:Notify"/> | ||
| </wsdl:message> | ||
| <!-- ============== NotificationProducer::Subscribe =============== | ||
| Subscribe( | ||
| (ConsumerEndpointReference, [Filter], [SubscriptionPolicy], | ||
| [InitialTerminationTime]) | ||
| returns: WS-Resource qualified EPR to a Subscription | ||
| --> | ||
| <wsdl:message name="SubscribeRequest" > | ||
| <wsdl:part name="SubscribeRequest" | ||
| element="wsnt:Subscribe"/> | ||
| </wsdl:message> | ||
| <wsdl:message name="SubscribeResponse"> | ||
| <wsdl:part name="SubscribeResponse" | ||
| element="wsnt:SubscribeResponse"/> | ||
| </wsdl:message> | ||
| <wsdl:message name="SubscribeCreationFailedFault"> | ||
| <wsdl:part name="SubscribeCreationFailedFault" | ||
| element="wsnt:SubscribeCreationFailedFault" /> | ||
| </wsdl:message> | ||
| <wsdl:message name="TopicExpressionDialectUnknownFault"> | ||
| <wsdl:part name="TopicExpressionDialectUnknownFault" | ||
| element="wsnt:TopicExpressionDialectUnknownFault" /> | ||
| </wsdl:message> | ||
| <wsdl:message name="InvalidFilterFault"> | ||
| <wsdl:part name="InvalidFilterFault" | ||
| element="wsnt:InvalidFilterFault" /> | ||
| </wsdl:message> | ||
| <wsdl:message name="InvalidProducerPropertiesExpressionFault"> | ||
| <wsdl:part name="InvalidProducerPropertiesExpressionFault" | ||
| element="wsnt:InvalidProducerPropertiesExpressionFault" /> | ||
| </wsdl:message> | ||
| <wsdl:message name="InvalidMessageContentExpressionFault"> | ||
| <wsdl:part name="InvalidMessageContentExpressionFault" | ||
| element="wsnt:InvalidMessageContentExpressionFault" /> | ||
| </wsdl:message> | ||
| <wsdl:message name="UnrecognizedPolicyRequestFault"> | ||
| <wsdl:part name="UnrecognizedPolicyRequestFault" | ||
| element="wsnt:UnrecognizedPolicyRequestFault" /> | ||
| </wsdl:message> | ||
| <wsdl:message name="UnsupportedPolicyRequestFault"> | ||
| <wsdl:part name="UnsupportedPolicyRequestFault" | ||
| element="wsnt:UnsupportedPolicyRequestFault" /> | ||
| </wsdl:message> | ||
| <wsdl:message name="NotifyMessageNotSupportedFault"> | ||
| <wsdl:part name="NotifyMessageNotSupportedFault" | ||
| element="wsnt:NotifyMessageNotSupportedFault" /> | ||
| </wsdl:message> | ||
| <wsdl:message name="UnacceptableInitialTerminationTimeFault"> | ||
| <wsdl:part name="UnacceptableInitialTerminationTimeFault" | ||
| element="wsnt:UnacceptableInitialTerminationTimeFault"/> | ||
| </wsdl:message> | ||
| <!-- ========== NotificationProducer::GetCurrentMessage =========== | ||
| GetCurrentMessage(topicExpression) | ||
| returns: a NotificationMessage (xsd:any) | ||
| --> | ||
| <wsdl:message name="GetCurrentMessageRequest"> | ||
| <wsdl:part name="GetCurrentMessageRequest" | ||
| element="wsnt:GetCurrentMessage"/> | ||
| </wsdl:message> | ||
| <wsdl:message name="GetCurrentMessageResponse"> | ||
| <wsdl:part name="GetCurrentMessageResponse" | ||
| element="wsnt:GetCurrentMessageResponse"/> | ||
| </wsdl:message> | ||
| <wsdl:message name="InvalidTopicExpressionFault"> | ||
| <wsdl:part name="InvalidTopicExpressionFault" | ||
| element="wsnt:InvalidTopicExpressionFault" /> | ||
| </wsdl:message> | ||
| <wsdl:message name="TopicNotSupportedFault"> | ||
| <wsdl:part name="TopicNotSupportedFault" | ||
| element="wsnt:TopicNotSupportedFault" /> | ||
| </wsdl:message> | ||
| <wsdl:message name="MultipleTopicsSpecifiedFault"> | ||
| <wsdl:part name="MultipleTopicsSpecifiedFault" | ||
| element="wsnt:MultipleTopicsSpecifiedFault" /> | ||
| </wsdl:message> | ||
| <wsdl:message name="NoCurrentMessageOnTopicFault"> | ||
| <wsdl:part name="NoCurrentMessageOnTopicFault" | ||
| element="wsnt:NoCurrentMessageOnTopicFault" /> | ||
| </wsdl:message> | ||
| <!-- ========== PullPoint::GetMessages =========== | ||
| GetMessages(MaximumNumber) | ||
| returns: NotificationMessage list | ||
| --> | ||
| <wsdl:message name="GetMessagesRequest"> | ||
| <wsdl:part name="GetMessagesRequest" | ||
| element="wsnt:GetMessages"/> | ||
| </wsdl:message> | ||
| <wsdl:message name="GetMessagesResponse"> | ||
| <wsdl:part name="GetMessagesResponse" | ||
| element="wsnt:GetMessagesResponse"/> | ||
| </wsdl:message> | ||
| <wsdl:message name="UnableToGetMessagesFault"> | ||
| <wsdl:part name="UnableToGetMessagesFault" | ||
| element="wsnt:UnableToGetMessagesFault"/> | ||
| </wsdl:message> | ||
| <!-- ========== PullPoint::DestroyPullPoint =========== | ||
| DestroyPullPoint() | ||
| returns: void | ||
| --> | ||
| <wsdl:message name="DestroyPullPointRequest"> | ||
| <wsdl:part name="DestroyPullPointRequest" | ||
| element="wsnt:DestroyPullPoint"/> | ||
| </wsdl:message> | ||
| <wsdl:message name="DestroyPullPointResponse"> | ||
| <wsdl:part name="DestroyPullPointResponse" | ||
| element="wsnt:DestroyPullPointResponse"/> | ||
| </wsdl:message> | ||
| <wsdl:message name="UnableToDestroyPullPointFault"> | ||
| <wsdl:part name="UnableToDestroyPullPointFault" | ||
| element="wsnt:UnableToDestroyPullPointFault"/> | ||
| </wsdl:message> | ||
| <!-- ========== PullPoint::CreatePullPoint =========== | ||
| CreatePullPoint() | ||
| returns: PullPoint (wsa:EndpointReference) | ||
| --> | ||
| <wsdl:message name="CreatePullPointRequest"> | ||
| <wsdl:part name="CreatePullPointRequest" | ||
| element="wsnt:CreatePullPoint"/> | ||
| </wsdl:message> | ||
| <wsdl:message name="CreatePullPointResponse"> | ||
| <wsdl:part name="CreatePullPointResponse" | ||
| element="wsnt:CreatePullPointResponse"/> | ||
| </wsdl:message> | ||
| <wsdl:message name="UnableToCreatePullPointFault"> | ||
| <wsdl:part name="UnableToCreatePullPointFault" | ||
| element="wsnt:UnableToCreatePullPointFault"/> | ||
| </wsdl:message> | ||
| <!-- ================ SubscriptionManager::Renew ================== | ||
| Renew( Duration | AbsoluteTime) | ||
| returns: (New Termination Time [CurrentTime]) | ||
| --> | ||
| <wsdl:message name="RenewRequest"> | ||
| <wsdl:part name="RenewRequest" | ||
| element="wsnt:Renew"/> | ||
| </wsdl:message> | ||
| <wsdl:message name="RenewResponse"> | ||
| <wsdl:part name="RenewResponse" | ||
| element="wsnt:RenewResponse"/> | ||
| </wsdl:message> | ||
| <wsdl:message name="UnacceptableTerminationTimeFault"> | ||
| <wsdl:part name="UnacceptableTerminationTimeFault" | ||
| element="wsnt:UnacceptableTerminationTimeFault" /> | ||
| </wsdl:message> | ||
| <!-- ============== SubscriptionManager::Unsubscribe =============== | ||
| Unsubscribe() | ||
| returns: empty | ||
| --> | ||
| <wsdl:message name="UnsubscribeRequest"> | ||
| <wsdl:part name="UnsubscribeRequest" | ||
| element="wsnt:Unsubscribe"/> | ||
| </wsdl:message> | ||
| <wsdl:message name="UnsubscribeResponse"> | ||
| <wsdl:part name="UnsubscribeResponse" | ||
| element="wsnt:UnsubscribeResponse"/> | ||
| </wsdl:message> | ||
| <wsdl:message name="UnableToDestroySubscriptionFault"> | ||
| <wsdl:part name="UnableToDestroySubscriptionFault" | ||
| element="wsnt:UnableToDestroySubscriptionFault" /> | ||
| </wsdl:message> | ||
| <!-- ========== SubscriptionManager::PauseSubscription ============ | ||
| PauseSubscription() | ||
| returns: empty | ||
| --> | ||
| <wsdl:message name="PauseSubscriptionRequest"> | ||
| <wsdl:part name="PauseSubscriptionRequest" | ||
| element="wsnt:PauseSubscription"/> | ||
| </wsdl:message> | ||
| <wsdl:message name="PauseSubscriptionResponse"> | ||
| <wsdl:part name="PauseSubscriptionResponse" | ||
| element="wsnt:PauseSubscriptionResponse"/> | ||
| </wsdl:message> | ||
| <wsdl:message name="PauseFailedFault"> | ||
| <wsdl:part name="PauseFailedFault" | ||
| element="wsnt:PauseFailedFault" /> | ||
| </wsdl:message> | ||
| <!-- ========= SubscriptionManager::ResumeSubscription ============ | ||
| ResumeSubscription() | ||
| returns: empty | ||
| --> | ||
| <wsdl:message name="ResumeSubscriptionRequest"> | ||
| <wsdl:part name="ResumeSubscriptionRequest" | ||
| element="wsnt:ResumeSubscription"/> | ||
| </wsdl:message> | ||
| <wsdl:message name="ResumeSubscriptionResponse"> | ||
| <wsdl:part name="ResumeSubscriptionResponse" | ||
| element="wsnt:ResumeSubscriptionResponse"/> | ||
| </wsdl:message> | ||
| <wsdl:message name="ResumeFailedFault"> | ||
| <wsdl:part name="ResumeFailedFault" | ||
| element="wsnt:ResumeFailedFault" /> | ||
| </wsdl:message> | ||
| <!-- =================== PortType Definitions ===================== --> | ||
| <!-- ========= NotificationConsumer PortType Definition =========== --> | ||
| <wsdl:portType name="NotificationConsumer"> | ||
| <wsdl:operation name="Notify"> | ||
| <wsdl:input message="wsntw:Notify" /> | ||
| </wsdl:operation> | ||
| </wsdl:portType> | ||
| <!-- ========= NotificationProducer PortType Definition =========== --> | ||
| <wsdl:portType name="NotificationProducer"> | ||
| <wsdl:operation name="Subscribe"> | ||
| <wsdl:input message="wsntw:SubscribeRequest" /> | ||
| <wsdl:output message="wsntw:SubscribeResponse" /> | ||
| <wsdl:fault name="ResourceUnknownFault" | ||
| message="wsrf-rw:ResourceUnknownFault" /> | ||
| <wsdl:fault name="InvalidFilterFault" | ||
| message="wsntw:InvalidFilterFault"/> | ||
| <wsdl:fault name="TopicExpressionDialectUnknownFault" | ||
| message="wsntw:TopicExpressionDialectUnknownFault"/> | ||
| <wsdl:fault name="InvalidTopicExpressionFault" | ||
| message="wsntw:InvalidTopicExpressionFault" /> | ||
| <wsdl:fault name="TopicNotSupportedFault" | ||
| message="wsntw:TopicNotSupportedFault" /> | ||
| <wsdl:fault name="InvalidProducerPropertiesExpressionFault" | ||
| message="wsntw:InvalidProducerPropertiesExpressionFault"/> | ||
| <wsdl:fault name="InvalidMessageContentExpressionFault" | ||
| message="wsntw:InvalidMessageContentExpressionFault"/> | ||
| <wsdl:fault name="UnacceptableInitialTerminationTimeFault" | ||
| message="wsntw:UnacceptableInitialTerminationTimeFault"/> | ||
| <wsdl:fault name="UnrecognizedPolicyRequestFault" | ||
| message="wsntw:UnrecognizedPolicyRequestFault"/> | ||
| <wsdl:fault name="UnsupportedPolicyRequestFault" | ||
| message="wsntw:UnsupportedPolicyRequestFault"/> | ||
| <wsdl:fault name="NotifyMessageNotSupportedFault" | ||
| message="wsntw:NotifyMessageNotSupportedFault"/> | ||
| <wsdl:fault name="SubscribeCreationFailedFault" | ||
| message="wsntw:SubscribeCreationFailedFault"/> | ||
| </wsdl:operation> | ||
| <wsdl:operation name="GetCurrentMessage"> | ||
| <wsdl:input message="wsntw:GetCurrentMessageRequest"/> | ||
| <wsdl:output message="wsntw:GetCurrentMessageResponse"/> | ||
| <wsdl:fault name="ResourceUnknownFault" | ||
| message="wsrf-rw:ResourceUnknownFault" /> | ||
| <wsdl:fault name="TopicExpressionDialectUnknownFault" | ||
| message="wsntw:TopicExpressionDialectUnknownFault"/> | ||
| <wsdl:fault name="InvalidTopicExpressionFault" | ||
| message="wsntw:InvalidTopicExpressionFault" /> | ||
| <wsdl:fault name="TopicNotSupportedFault" | ||
| message="wsntw:TopicNotSupportedFault" /> | ||
| <wsdl:fault name="NoCurrentMessageOnTopicFault" | ||
| message="wsntw:NoCurrentMessageOnTopicFault" /> | ||
| <wsdl:fault name="MultipleTopicsSpecifiedFault" | ||
| message="wsntw:MultipleTopicsSpecifiedFault" /> | ||
| </wsdl:operation> | ||
| </wsdl:portType> | ||
| <!-- ========== PullPoint PortType Definition ===================== --> | ||
| <wsdl:portType name="PullPoint"> | ||
| <wsdl:operation name="GetMessages"> | ||
| <wsdl:input name="GetMessagesRequest" | ||
| message="wsntw:GetMessagesRequest" /> | ||
| <wsdl:output name="GetMessagesResponse" | ||
| message="wsntw:GetMessagesResponse" /> | ||
| <wsdl:fault name="ResourceUnknownFault" | ||
| message="wsrf-rw:ResourceUnknownFault" /> | ||
| <wsdl:fault name="UnableToGetMessagesFault" | ||
| message="wsntw:UnableToGetMessagesFault" /> | ||
| </wsdl:operation> | ||
| <wsdl:operation name="DestroyPullPoint"> | ||
| <wsdl:input name="DestroyPullPointRequest" | ||
| message="wsntw:DestroyPullPointRequest" /> | ||
| <wsdl:output name="DestroyPullPointResponse" | ||
| message="wsntw:DestroyPullPointResponse" /> | ||
| <wsdl:fault name="ResourceUnknownFault" | ||
| message="wsrf-rw:ResourceUnknownFault"/> | ||
| <wsdl:fault name="UnableToDestroyPullPointFault" | ||
| message="wsntw:UnableToDestroyPullPointFault" /> | ||
| </wsdl:operation> | ||
| <wsdl:operation name="Notify"> | ||
| <wsdl:input message="wsntw:Notify"/> | ||
| </wsdl:operation> | ||
| </wsdl:portType> | ||
| <!-- ========== CreatePullPoint PortType Definition =============== --> | ||
| <wsdl:portType name="CreatePullPoint"> | ||
| <wsdl:operation name="CreatePullPoint"> | ||
| <wsdl:input name="CreatePullPointRequest" | ||
| message="wsntw:CreatePullPointRequest" /> | ||
| <wsdl:output name="CreatePullPointResponse" | ||
| message="wsntw:CreatePullPointResponse" /> | ||
| <wsdl:fault name="UnableToCreatePullPointFault" | ||
| message="wsntw:UnableToCreatePullPointFault" /> | ||
| </wsdl:operation> | ||
| </wsdl:portType> | ||
| <!-- ========== SubscriptionManager PortType Definition =========== --> | ||
| <wsdl:portType name="SubscriptionManager"> | ||
| <wsdl:operation name="Renew"> | ||
| <wsdl:input name="RenewRequest" | ||
| message="wsntw:RenewRequest" /> | ||
| <wsdl:output name="RenewResponse" | ||
| message="wsntw:RenewResponse" /> | ||
| <wsdl:fault name="ResourceUnknownFault" | ||
| message="wsrf-rw:ResourceUnknownFault" /> | ||
| <wsdl:fault name="UnacceptableTerminationTimeFault" | ||
| message= | ||
| "wsntw:UnacceptableTerminationTimeFault" /> | ||
| </wsdl:operation> | ||
| <wsdl:operation name="Unsubscribe"> | ||
| <wsdl:input name="UnsubscribeRequest" | ||
| message="wsntw:UnsubscribeRequest" /> | ||
| <wsdl:output name="UnsubscribeResponse" | ||
| message="wsntw:UnsubscribeResponse" /> | ||
| <wsdl:fault name="ResourceUnknownFault" | ||
| message="wsrf-rw:ResourceUnknownFault" /> | ||
| <wsdl:fault name="UnableToDestroySubscriptionFault" | ||
| message= | ||
| "wsntw:UnableToDestroySubscriptionFault" /> | ||
| </wsdl:operation> | ||
| </wsdl:portType> | ||
| <!-- ====== PausableSubscriptionManager PortType Definition ======= --> | ||
| <wsdl:portType name="PausableSubscriptionManager"> | ||
| <!-- ============== Extends: SubscriptionManager ============ --> | ||
| <wsdl:operation name="Renew"> | ||
| <wsdl:input name="RenewRequest" | ||
| message="wsntw:RenewRequest" /> | ||
| <wsdl:output name="RenewResponse" | ||
| message="wsntw:RenewResponse" /> | ||
| <wsdl:fault name="ResourceUnknownFault" | ||
| message="wsrf-rw:ResourceUnknownFault" /> | ||
| <wsdl:fault name="UnacceptableTerminationTimeFault" | ||
| message= | ||
| "wsntw:UnacceptableTerminationTimeFault" /> | ||
| </wsdl:operation> | ||
| <wsdl:operation name="Unsubscribe"> | ||
| <wsdl:input name="UnsubscribeRequest" | ||
| message="wsntw:UnsubscribeRequest" /> | ||
| <wsdl:output name="UnsubscribeResponse" | ||
| message="wsntw:UnsubscribeResponse" /> | ||
| <wsdl:fault name="ResourceUnknownFault" | ||
| message="wsrf-rw:ResourceUnknownFault" /> | ||
| <wsdl:fault name="UnableToDestroySubscriptionFault" | ||
| message= | ||
| "wsntw:UnableToDestroySubscriptionFault" /> | ||
| </wsdl:operation> | ||
| <!-- === PausableSubscriptionManager specific operations === --> | ||
| <wsdl:operation name="PauseSubscription"> | ||
| <wsdl:input message="wsntw:PauseSubscriptionRequest"/> | ||
| <wsdl:output message="wsntw:PauseSubscriptionResponse"/> | ||
| <wsdl:fault name="ResourceUnknownFault" | ||
| message="wsrf-rw:ResourceUnknownFault" /> | ||
| <wsdl:fault name="PauseFailedFault" | ||
| message="wsntw:PauseFailedFault" /> | ||
| </wsdl:operation> | ||
| <wsdl:operation name="ResumeSubscription"> | ||
| <wsdl:input message="wsntw:ResumeSubscriptionRequest"/> | ||
| <wsdl:output message="wsntw:ResumeSubscriptionResponse"/> | ||
| <wsdl:fault name="ResourceUnknownFault" | ||
| message="wsrf-rw:ResourceUnknownFault" /> | ||
| <wsdl:fault name="ResumeFailedFault" | ||
| message="wsntw:ResumeFailedFault" /> | ||
| </wsdl:operation> | ||
| </wsdl:portType> | ||
| </wsdl:definitions> |
Sorry, the diff of this file is not supported yet
| <!-- | ||
| Software Copyright Licencing Disclaimer for MPEG Standards | ||
| This software module was originally developed in the course of development of the ISO/IEC 15938-12 | ||
| for reference purposes and its performance may not have been optimized. This software module is an | ||
| implementation of one or more tools as specified by the ISO/IEC 15938-12 standard. | ||
| Those intending to use this software module in products are advised that its use may infringe existing patents. | ||
| ISO/IEC have no liability for use of this software module or modifications thereof. | ||
| --> | ||
| <schema xmlns:mpqf="urn:mpeg:mpqf:schema:2008" xmlns="http://www.w3.org/2001/XMLSchema" targetNamespace="urn:mpeg:mpqf:schema:2008" elementFormDefault="qualified" attributeFormDefault="unqualified"> | ||
| <element name="MpegQuery" type="mpqf:MpegQueryType"/> | ||
| <complexType name="MpegQueryType"> | ||
| <choice> | ||
| <element name="Query"> | ||
| <complexType> | ||
| <choice> | ||
| <element name="Input" type="mpqf:InputQueryType"/> | ||
| <element name="FetchResult"> | ||
| <complexType> | ||
| <attribute name="queryID" type="anyURI"/> | ||
| <attribute name="retrievePageNum" type="positiveInteger"/> | ||
| </complexType> | ||
| </element> | ||
| <element name="Output" type="mpqf:OutputQueryType"/> | ||
| </choice> | ||
| </complexType> | ||
| </element> | ||
| <element name="Management"> | ||
| <complexType> | ||
| <choice> | ||
| <element name="Input" type="mpqf:InputManagementType"/> | ||
| <element name="Output" type="mpqf:OutputManagementType"/> | ||
| </choice> | ||
| </complexType> | ||
| </element> | ||
| </choice> | ||
| <attribute name="mpqfID" type="anyURI" use="required"/> | ||
| </complexType> | ||
| <complexType name="MediaLocatorType"> | ||
| <sequence> | ||
| <choice> | ||
| <element name="MediaUri" type="anyURI"/> | ||
| <element name="InlineMedia" type="mpqf:InlineMediaType"/> | ||
| </choice> | ||
| </sequence> | ||
| </complexType> | ||
| <complexType name="InlineMediaType"> | ||
| <choice> | ||
| <element name="MediaData16" type="hexBinary"/> | ||
| <element name="MediaData64" type="base64Binary"/> | ||
| </choice> | ||
| <attribute name="type" type="mpqf:mimeType" use="required"/> | ||
| </complexType> | ||
| <simpleType name="mimeType"> | ||
| <restriction base="string"> | ||
| <whiteSpace value="collapse"/> | ||
| <pattern value="([Xx]\-)?[!#$%'*+.0-9A-Z\^-~]+/([Xx]\- | ||
| )?[!#$%'*+.0-9A-Z\^-~\-]+"/> | ||
| </restriction> | ||
| </simpleType> | ||
| <simpleType name="xPathType"> | ||
| <restriction base="token"/> | ||
| </simpleType> | ||
| <simpleType name="zeroToOneType"> | ||
| <restriction base="float"> | ||
| <minInclusive value="0.0"/> | ||
| <maxInclusive value="1.0"/> | ||
| </restriction> | ||
| </simpleType> | ||
| <complexType name="TermType"> | ||
| <sequence> | ||
| <element name="Name" type="string" minOccurs="0"/> | ||
| <element name="Description" type="string" minOccurs="0"/> | ||
| <element name="Term" type="mpqf:TermType" minOccurs="0" maxOccurs="unbounded"/> | ||
| </sequence> | ||
| <attribute name="href" type="mpqf:SimpleTermType" use="required"/> | ||
| </complexType> | ||
| <simpleType name="SimpleTermType"> | ||
| <restriction base="anyURI"/> | ||
| </simpleType> | ||
| <element name="ClassificationScheme"> | ||
| <complexType> | ||
| <sequence> | ||
| <element name="Term" type="mpqf:TermType" maxOccurs="unbounded"/> | ||
| </sequence> | ||
| <attribute name="uri" type="anyURI" use="required"/> | ||
| <attribute name="domain" use="optional"> | ||
| <simpleType> | ||
| <list itemType="mpqf:xPathType"/> | ||
| </simpleType> | ||
| </attribute> | ||
| </complexType> | ||
| </element> | ||
| <complexType name="RelationType"> | ||
| <sequence/> | ||
| <attribute name="relationType" type="anyURI" use="required"/> | ||
| <attribute name="sourceResource" type="IDREF" use="required"/> | ||
| <attribute name="targetResource" type="IDREF" use="optional"/> | ||
| </complexType> | ||
| <complexType name="SemanticFieldType"> | ||
| <sequence> | ||
| <element name="Var" type="string"/> | ||
| </sequence> | ||
| </complexType> | ||
| <complexType name="InputQueryType"> | ||
| <sequence> | ||
| <element name="QFDeclaration" type="mpqf:QFDeclarationType" minOccurs="0"/> | ||
| <element name="OutputDescription" type="mpqf:OutputDescriptionType" minOccurs="0"/> | ||
| <element name="QueryCondition" type="mpqf:QueryConditionType" minOccurs="0"/> | ||
| <element name="ServiceSelection" type="mpqf:ServiceSelectionType" minOccurs="0"/> | ||
| </sequence> | ||
| <attribute name="previousAnswerID" type="anyURI" use="optional"/> | ||
| <attribute name="immediateResponse" type="boolean" use="optional" default="true"/> | ||
| <attribute name="streamingResponse" type="boolean" use="optional" default="false"/> | ||
| <attribute name="timeout" type="duration" use="optional"/> | ||
| </complexType> | ||
| <complexType name="ServiceSelectionType"> | ||
| <sequence> | ||
| <element name="ServiceID" type="anyURI" maxOccurs="unbounded"/> | ||
| </sequence> | ||
| </complexType> | ||
| <complexType name="QFDeclarationType"> | ||
| <sequence> | ||
| <element name="DeclaredField" type="mpqf:DeclaredFieldType" minOccurs="0" maxOccurs="unbounded"/> | ||
| <element name="Resource" type="mpqf:ResourceType" minOccurs="0" maxOccurs="unbounded"/> | ||
| <element name="Prefix" minOccurs="0" maxOccurs="unbounded"> | ||
| <complexType> | ||
| <attribute name="name" type="string" use="required"/> | ||
| <attribute name="uri" type="anyURI" use="required"/> | ||
| </complexType> | ||
| </element> | ||
| </sequence> | ||
| <!-- Declaration of entities that can be reused in OutputDescription or QueryCondition --> | ||
| </complexType> | ||
| <complexType name="DeclaredFieldType"> | ||
| <simpleContent> | ||
| <extension base="mpqf:xPathType"> | ||
| <attribute name="id" type="ID" use="required"/> | ||
| <attribute name="typeName" type="string" use="optional"/> | ||
| </extension> | ||
| </simpleContent> | ||
| </complexType> | ||
| <complexType name="ResourceType" abstract="true"> | ||
| <attribute name="resourceID" type="ID" use="required"/> | ||
| </complexType> | ||
| <complexType name="MediaResourceType"> | ||
| <complexContent> | ||
| <extension base="mpqf:ResourceType"> | ||
| <sequence> | ||
| <element name="MediaResource" type="mpqf:MediaLocatorType"/> | ||
| </sequence> | ||
| </extension> | ||
| </complexContent> | ||
| </complexType> | ||
| <complexType name="DescriptionResourceType"> | ||
| <complexContent> | ||
| <extension base="mpqf:ResourceType"> | ||
| <sequence> | ||
| <element name="AnyDescription"> | ||
| <complexType mixed="true"> | ||
| <sequence> | ||
| <any namespace="##any"/> | ||
| </sequence> | ||
| </complexType> | ||
| </element> | ||
| </sequence> | ||
| </extension> | ||
| </complexContent> | ||
| </complexType> | ||
| <complexType name="OutputDescriptionType"> | ||
| <sequence> | ||
| <element name="ReqField" type="mpqf:FieldType" minOccurs="0" maxOccurs="unbounded"/> | ||
| <element name="ReqAggregateID" type="IDREF" minOccurs="0" maxOccurs="unbounded"/> | ||
| <element name="ReqSemanticField" type="string" minOccurs="0" maxOccurs="unbounded"/> | ||
| <element name="GroupBy" minOccurs="0"> | ||
| <complexType> | ||
| <sequence> | ||
| <element name="GroupByField" type="mpqf:FieldType" maxOccurs="unbounded"/> | ||
| <element name="Aggregate" type="mpqf:AggregateExpressionType" minOccurs="0" maxOccurs="unbounded"/> | ||
| </sequence> | ||
| </complexType> | ||
| </element> | ||
| <element name="SortBy" type="mpqf:AbstractSortByType" minOccurs="0" maxOccurs="unbounded"/> | ||
| </sequence> | ||
| <attribute name="maxPageEntries" type="positiveInteger" use="optional"/> | ||
| <attribute name="maxItemCount" type="positiveInteger" use="optional"/> | ||
| <attribute name="freeTextUse" type="boolean" use="optional"/> | ||
| <attribute name="thumbnailUse" type="boolean" use="optional"/> | ||
| <attribute name="mediaResourceUse" type="boolean" use="optional"/> | ||
| <attribute name="outputNameSpace" type="anyURI" use="optional"/> | ||
| <attribute name="distinct" type="boolean" use="optional" default="false"/> | ||
| <!-- This indicates that if I want to receive a link to the actual media resource. --> | ||
| </complexType> | ||
| <complexType name="FieldType"> | ||
| <simpleContent> | ||
| <extension base="mpqf:xPathType"> | ||
| <attribute name="typeName" type="string" use="optional"/> | ||
| <attribute name="fragmentResultName" type="string" use="optional"/> | ||
| <attribute name="fromREF" type="IDREF" use="optional"/> | ||
| <attribute name="fieldREF" type="IDREF" use="optional"/> | ||
| <attribute name="resultMode" use="optional" default="structured"> | ||
| <simpleType> | ||
| <restriction base="string"> | ||
| <enumeration value="flat"/> | ||
| <enumeration value="structured"/> | ||
| </restriction> | ||
| </simpleType> | ||
| </attribute> | ||
| </extension> | ||
| </simpleContent> | ||
| </complexType> | ||
| <complexType name="AbstractSortByType" abstract="true"> | ||
| <attribute name="order" use="required"> | ||
| <simpleType> | ||
| <restriction base="string"> | ||
| <enumeration value="ascending"/> | ||
| <enumeration value="descending"/> | ||
| </restriction> | ||
| </simpleType> | ||
| </attribute> | ||
| </complexType> | ||
| <complexType name="SortByFieldType"> | ||
| <complexContent> | ||
| <extension base="mpqf:AbstractSortByType"> | ||
| <choice> | ||
| <element name="Field" type="mpqf:FieldType"/> | ||
| <element name="SemanticField" type="mpqf:SemanticFieldType"/> | ||
| </choice> | ||
| </extension> | ||
| </complexContent> | ||
| </complexType> | ||
| <complexType name="SortByAggregateType"> | ||
| <complexContent> | ||
| <extension base="mpqf:AbstractSortByType"> | ||
| <choice> | ||
| <element name="Aggregate" type="mpqf:AggregateExpressionType"/> | ||
| <element name="AggregateID" type="IDREF"/> | ||
| </choice> | ||
| </extension> | ||
| </complexContent> | ||
| </complexType> | ||
| <complexType name="QueryConditionType"> | ||
| <sequence> | ||
| <element name="EvaluationPath" type="mpqf:xPathType" minOccurs="0"/> | ||
| <element name="TargetMediaType" type="mpqf:mimeType" minOccurs="0" maxOccurs="unbounded"/> | ||
| <choice minOccurs="0"> | ||
| <element name="Join" type="mpqf:JoinType"/> | ||
| <element name="Condition" type="mpqf:BooleanExpressionType"/> | ||
| </choice> | ||
| </sequence> | ||
| </complexType> | ||
| <complexType name="BooleanExpressionType" abstract="true"> | ||
| <attribute name="preferenceValue" type="mpqf:zeroToOneType" use="optional" default="1"/> | ||
| <attribute name="thresholdValue" type="mpqf:zeroToOneType" use="optional"/> | ||
| </complexType> | ||
| <complexType name="ArithmeticExpressionType" abstract="true"/> | ||
| <complexType name="StringExpressionType" abstract="true"/> | ||
| <group name="DateTimeOperands"> | ||
| <sequence> | ||
| <choice> | ||
| <element name="DateTimeValue" type="dateTime"/> | ||
| <element name="DateValue" type="date"/> | ||
| <element name="TimeValue" type="time"/> | ||
| <element name="DateTimeField" type="mpqf:FieldType"/> | ||
| </choice> | ||
| </sequence> | ||
| </group> | ||
| <group name="DurationOperands"> | ||
| <sequence> | ||
| <choice> | ||
| <element name="DurationValue" type="duration"/> | ||
| <element name="DurationField" type="mpqf:FieldType"/> | ||
| </choice> | ||
| </sequence> | ||
| </group> | ||
| <complexType name="AND"> | ||
| <complexContent> | ||
| <extension base="mpqf:BooleanExpressionType"> | ||
| <sequence> | ||
| <element name="Condition" type="mpqf:BooleanExpressionType" minOccurs="2" maxOccurs="unbounded"/> | ||
| </sequence> | ||
| <attribute name="scoringFunction" type="mpqf:SimpleTermType" use="optional"/> | ||
| </extension> | ||
| </complexContent> | ||
| </complexType> | ||
| <complexType name="OR"> | ||
| <complexContent> | ||
| <extension base="mpqf:BooleanExpressionType"> | ||
| <sequence> | ||
| <element name="Condition" type="mpqf:BooleanExpressionType" minOccurs="2" maxOccurs="unbounded"/> | ||
| </sequence> | ||
| <attribute name="scoringFunction" type="mpqf:SimpleTermType" use="optional"/> | ||
| </extension> | ||
| </complexContent> | ||
| </complexType> | ||
| <complexType name="NOT"> | ||
| <complexContent> | ||
| <extension base="mpqf:BooleanExpressionType"> | ||
| <sequence> | ||
| <element name="Condition" type="mpqf:BooleanExpressionType"/> | ||
| </sequence> | ||
| </extension> | ||
| </complexContent> | ||
| </complexType> | ||
| <complexType name="XOR"> | ||
| <complexContent> | ||
| <extension base="mpqf:BooleanExpressionType"> | ||
| <sequence> | ||
| <element name="Condition" type="mpqf:BooleanExpressionType" minOccurs="2" maxOccurs="2"/> | ||
| </sequence> | ||
| <attribute name="scoringFunction" type="mpqf:SimpleTermType" use="optional"/> | ||
| </extension> | ||
| </complexContent> | ||
| </complexType> | ||
| <complexType name="ComparisonExpressionType" abstract="true"> | ||
| <complexContent> | ||
| <extension base="mpqf:BooleanExpressionType"/> | ||
| </complexContent> | ||
| </complexType> | ||
| <complexType name="GreaterThan"> | ||
| <complexContent> | ||
| <extension base="mpqf:ComparisonExpressionType"> | ||
| <choice> | ||
| <choice minOccurs="2" maxOccurs="2"> | ||
| <element name="DoubleValue" type="double"/> | ||
| <element name="LongValue" type="long"/> | ||
| <element name="ArithmeticField" type="mpqf:FieldType"/> | ||
| <element name="ArithmeticExpression" type="mpqf:ArithmeticExpressionType"/> | ||
| <element name="SemanticArithmeticField" type="mpqf:SemanticFieldType"/> | ||
| </choice> | ||
| <group ref="mpqf:DateTimeOperands" minOccurs="2" maxOccurs="2"/> | ||
| <group ref="mpqf:DurationOperands" minOccurs="2" maxOccurs="2"/> | ||
| </choice> | ||
| </extension> | ||
| </complexContent> | ||
| </complexType> | ||
| <complexType name="GreaterThanEqual"> | ||
| <complexContent> | ||
| <extension base="mpqf:ComparisonExpressionType"> | ||
| <choice> | ||
| <choice minOccurs="2" maxOccurs="2"> | ||
| <element name="DoubleValue" type="double"/> | ||
| <element name="LongValue" type="long"/> | ||
| <element name="ArithmeticField" type="mpqf:FieldType"/> | ||
| <element name="ArithmeticExpression" type="mpqf:ArithmeticExpressionType"/> | ||
| <element name="SemanticArithmeticField" type="mpqf:SemanticFieldType"/> | ||
| </choice> | ||
| <group ref="mpqf:DateTimeOperands" minOccurs="2" maxOccurs="2"/> | ||
| <group ref="mpqf:DurationOperands" minOccurs="2" maxOccurs="2"/> | ||
| </choice> | ||
| </extension> | ||
| </complexContent> | ||
| </complexType> | ||
| <complexType name="LessThanEqual"> | ||
| <complexContent> | ||
| <extension base="mpqf:ComparisonExpressionType"> | ||
| <choice> | ||
| <choice minOccurs="2" maxOccurs="2"> | ||
| <element name="DoubleValue" type="double"/> | ||
| <element name="LongValue" type="long"/> | ||
| <element name="ArithmeticField" type="mpqf:FieldType"/> | ||
| <element name="ArithmeticExpression" type="mpqf:ArithmeticExpressionType"/> | ||
| <element name="SemanticArithmeticField" type="mpqf:SemanticFieldType"/> | ||
| </choice> | ||
| <group ref="mpqf:DateTimeOperands" minOccurs="2" maxOccurs="2"/> | ||
| <group ref="mpqf:DurationOperands" minOccurs="2" maxOccurs="2"/> | ||
| </choice> | ||
| </extension> | ||
| </complexContent> | ||
| </complexType> | ||
| <complexType name="LessThan"> | ||
| <complexContent> | ||
| <extension base="mpqf:ComparisonExpressionType"> | ||
| <choice> | ||
| <choice minOccurs="2" maxOccurs="2"> | ||
| <element name="DoubleValue" type="double"/> | ||
| <element name="LongValue" type="long"/> | ||
| <element name="ArithmeticField" type="mpqf:FieldType"/> | ||
| <element name="ArithmeticExpression" type="mpqf:ArithmeticExpressionType"/> | ||
| <element name="SemanticArithmeticField" type="mpqf:SemanticFieldType"/> | ||
| </choice> | ||
| <group ref="mpqf:DateTimeOperands" minOccurs="2" maxOccurs="2"/> | ||
| <group ref="mpqf:DurationOperands" minOccurs="2" maxOccurs="2"/> | ||
| </choice> | ||
| </extension> | ||
| </complexContent> | ||
| </complexType> | ||
| <complexType name="Equal"> | ||
| <complexContent> | ||
| <extension base="mpqf:ComparisonExpressionType"> | ||
| <choice> | ||
| <choice minOccurs="2" maxOccurs="2"> | ||
| <element name="DoubleValue" type="double"/> | ||
| <element name="LongValue" type="long"/> | ||
| <element name="ArithmeticField" type="mpqf:FieldType"/> | ||
| <element name="ArithmeticExpression" type="mpqf:ArithmeticExpressionType"/> | ||
| <element name="SemanticArithmeticField" type="mpqf:SemanticFieldType"/> | ||
| </choice> | ||
| <choice minOccurs="2" maxOccurs="2"> | ||
| <element name="BooleanValue" type="boolean"/> | ||
| <element name="BooleanField" type="mpqf:FieldType"/> | ||
| <element name="BooleanExpression" type="mpqf:BooleanExpressionType"/> | ||
| <element name="SemanticBooleanField" type="mpqf:SemanticFieldType"/> | ||
| </choice> | ||
| <group ref="mpqf:DateTimeOperands" minOccurs="2" maxOccurs="2"/> | ||
| <group ref="mpqf:DurationOperands" minOccurs="2" maxOccurs="2"/> | ||
| <choice minOccurs="2" maxOccurs="2"> | ||
| <element name="StringValue" type="string"/> | ||
| <element name="StringField" type="mpqf:FieldType"/> | ||
| <element name="StringExpression" type="mpqf:StringExpressionType"/> | ||
| <element name="SemanticStringField" type="mpqf:SemanticFieldType"/> | ||
| </choice> | ||
| </choice> | ||
| </extension> | ||
| </complexContent> | ||
| </complexType> | ||
| <complexType name="NotEqual"> | ||
| <complexContent> | ||
| <extension base="mpqf:ComparisonExpressionType"> | ||
| <choice> | ||
| <choice minOccurs="2" maxOccurs="2"> | ||
| <element name="DoubleValue" type="double"/> | ||
| <element name="LongValue" type="long"/> | ||
| <element name="ArithmeticField" type="mpqf:FieldType"/> | ||
| <element name="ArithmeticExpression" type="mpqf:ArithmeticExpressionType"/> | ||
| <element name="SemanticArithmeticField" type="mpqf:SemanticFieldType"/> | ||
| </choice> | ||
| <choice minOccurs="2" maxOccurs="2"> | ||
| <element name="BooleanValue" type="boolean"/> | ||
| <element name="BooleanField" type="mpqf:FieldType"/> | ||
| <element name="BooleanExpression" type="mpqf:BooleanExpressionType"/> | ||
| <element name="SemanticBooleanField" type="mpqf:SemanticFieldType"/> | ||
| </choice> | ||
| <group ref="mpqf:DateTimeOperands" minOccurs="2" maxOccurs="2"/> | ||
| <group ref="mpqf:DurationOperands" minOccurs="2" maxOccurs="2"/> | ||
| <choice minOccurs="2" maxOccurs="2"> | ||
| <element name="StringValue" type="string"/> | ||
| <element name="StringField" type="mpqf:FieldType"/> | ||
| <element name="StringExpression" type="mpqf:StringExpressionType"/> | ||
| <element name="SemanticStringField" type="mpqf:SemanticFieldType"/> | ||
| </choice> | ||
| </choice> | ||
| </extension> | ||
| </complexContent> | ||
| </complexType> | ||
| <complexType name="Contains"> | ||
| <complexContent> | ||
| <extension base="mpqf:ComparisonExpressionType"> | ||
| <sequence> | ||
| <choice minOccurs="2" maxOccurs="2"> | ||
| <element name="StringValue" type="string"/> | ||
| <element name="StringField" type="mpqf:FieldType"/> | ||
| <element name="StringExpression" type="mpqf:StringExpressionType"/> | ||
| <element name="SemanticStringField" type="mpqf:SemanticFieldType"/> | ||
| </choice> | ||
| </sequence> | ||
| </extension> | ||
| </complexContent> | ||
| </complexType> | ||
| <complexType name="Add"> | ||
| <complexContent> | ||
| <extension base="mpqf:ArithmeticExpressionType"> | ||
| <sequence> | ||
| <choice minOccurs="2" maxOccurs="2"> | ||
| <element name="DoubleValue" type="double"/> | ||
| <element name="LongValue" type="long"/> | ||
| <element name="ArithmeticField" type="mpqf:FieldType"/> | ||
| <element name="ArithmeticExpression" type="mpqf:ArithmeticExpressionType"/> | ||
| </choice> | ||
| </sequence> | ||
| </extension> | ||
| </complexContent> | ||
| </complexType> | ||
| <complexType name="Subtract"> | ||
| <complexContent> | ||
| <extension base="mpqf:ArithmeticExpressionType"> | ||
| <sequence> | ||
| <choice minOccurs="2" maxOccurs="2"> | ||
| <element name="DoubleValue" type="double"/> | ||
| <element name="LongValue" type="long"/> | ||
| <element name="ArithmeticField" type="mpqf:FieldType"/> | ||
| <element name="ArithmeticExpression" type="mpqf:ArithmeticExpressionType"/> | ||
| </choice> | ||
| </sequence> | ||
| </extension> | ||
| </complexContent> | ||
| </complexType> | ||
| <complexType name="Multiply"> | ||
| <complexContent> | ||
| <extension base="mpqf:ArithmeticExpressionType"> | ||
| <sequence> | ||
| <choice minOccurs="2" maxOccurs="2"> | ||
| <element name="DoubleValue" type="double"/> | ||
| <element name="LongValue" type="long"/> | ||
| <element name="ArithmeticField" type="mpqf:FieldType"/> | ||
| <element name="ArithmeticExpression" type="mpqf:ArithmeticExpressionType"/> | ||
| </choice> | ||
| </sequence> | ||
| </extension> | ||
| </complexContent> | ||
| </complexType> | ||
| <complexType name="Divide"> | ||
| <complexContent> | ||
| <extension base="mpqf:ArithmeticExpressionType"> | ||
| <sequence> | ||
| <choice minOccurs="2" maxOccurs="2"> | ||
| <element name="DoubleValue" type="double"/> | ||
| <element name="LongValue" type="long"/> | ||
| <element name="ArithmeticField" type="mpqf:FieldType"/> | ||
| <element name="ArithmeticExpression" type="mpqf:ArithmeticExpressionType"/> | ||
| </choice> | ||
| </sequence> | ||
| </extension> | ||
| </complexContent> | ||
| </complexType> | ||
| <complexType name="Modulus"> | ||
| <complexContent> | ||
| <extension base="mpqf:ArithmeticExpressionType"> | ||
| <sequence> | ||
| <choice minOccurs="2" maxOccurs="2"> | ||
| <element name="DoubleValue" type="double"/> | ||
| <element name="LongValue" type="long"/> | ||
| <element name="ArithmeticField" type="mpqf:FieldType"/> | ||
| <element name="ArithmeticExpression" type="mpqf:ArithmeticExpressionType"/> | ||
| </choice> | ||
| </sequence> | ||
| </extension> | ||
| </complexContent> | ||
| </complexType> | ||
| <complexType name="Abs"> | ||
| <complexContent> | ||
| <extension base="mpqf:ArithmeticExpressionType"> | ||
| <sequence> | ||
| <choice> | ||
| <element name="DoubleValue" type="double"/> | ||
| <element name="LongValue" type="long"/> | ||
| <element name="ArithmeticField" type="mpqf:FieldType"/> | ||
| <element name="ArithmeticExpression" type="mpqf:ArithmeticExpressionType"/> | ||
| </choice> | ||
| </sequence> | ||
| </extension> | ||
| </complexContent> | ||
| </complexType> | ||
| <complexType name="Ceiling"> | ||
| <complexContent> | ||
| <extension base="mpqf:ArithmeticExpressionType"> | ||
| <sequence> | ||
| <choice> | ||
| <element name="DoubleValue" type="double"/> | ||
| <element name="LongValue" type="long"/> | ||
| <element name="ArithmeticField" type="mpqf:FieldType"/> | ||
| <element name="ArithmeticExpression" type="mpqf:ArithmeticExpressionType"/> | ||
| </choice> | ||
| </sequence> | ||
| </extension> | ||
| </complexContent> | ||
| </complexType> | ||
| <complexType name="Floor"> | ||
| <complexContent> | ||
| <extension base="mpqf:ArithmeticExpressionType"> | ||
| <sequence> | ||
| <choice> | ||
| <element name="DoubleValue" type="double"/> | ||
| <element name="LongValue" type="long"/> | ||
| <element name="ArithmeticField" type="mpqf:FieldType"/> | ||
| <element name="ArithmeticExpression" type="mpqf:ArithmeticExpressionType"/> | ||
| </choice> | ||
| </sequence> | ||
| </extension> | ||
| </complexContent> | ||
| </complexType> | ||
| <complexType name="Round"> | ||
| <complexContent> | ||
| <extension base="mpqf:ArithmeticExpressionType"> | ||
| <sequence> | ||
| <choice> | ||
| <element name="DoubleValue" type="double"/> | ||
| <element name="LongValue" type="long"/> | ||
| <element name="ArithmeticField" type="mpqf:FieldType"/> | ||
| <element name="ArithmeticExpression" type="mpqf:ArithmeticExpressionType"/> | ||
| </choice> | ||
| </sequence> | ||
| </extension> | ||
| </complexContent> | ||
| </complexType> | ||
| <complexType name="AggregateExpressionType" abstract="true"> | ||
| <attribute name="aggregateID" type="ID" use="optional"/> | ||
| </complexType> | ||
| <complexType name="AVG"> | ||
| <complexContent> | ||
| <extension base="mpqf:AggregateExpressionType"> | ||
| <sequence> | ||
| <element name="Field" type="mpqf:FieldType"/> | ||
| </sequence> | ||
| </extension> | ||
| </complexContent> | ||
| </complexType> | ||
| <complexType name="StdDev"> | ||
| <complexContent> | ||
| <extension base="mpqf:AggregateExpressionType"> | ||
| <sequence> | ||
| <element name="Field" type="mpqf:FieldType"/> | ||
| </sequence> | ||
| </extension> | ||
| </complexContent> | ||
| </complexType> | ||
| <complexType name="Variance"> | ||
| <complexContent> | ||
| <extension base="mpqf:AggregateExpressionType"> | ||
| <sequence> | ||
| <element name="Field" type="mpqf:FieldType"/> | ||
| </sequence> | ||
| </extension> | ||
| </complexContent> | ||
| </complexType> | ||
| <complexType name="SUM"> | ||
| <complexContent> | ||
| <extension base="mpqf:AggregateExpressionType"> | ||
| <sequence> | ||
| <element name="Field" type="mpqf:FieldType"/> | ||
| </sequence> | ||
| </extension> | ||
| </complexContent> | ||
| </complexType> | ||
| <complexType name="Count"> | ||
| <complexContent> | ||
| <extension base="mpqf:AggregateExpressionType"> | ||
| <sequence> | ||
| <element name="Field" type="mpqf:FieldType"/> | ||
| </sequence> | ||
| </extension> | ||
| </complexContent> | ||
| </complexType> | ||
| <complexType name="MAX"> | ||
| <complexContent> | ||
| <extension base="mpqf:AggregateExpressionType"> | ||
| <sequence> | ||
| <element name="Field" type="mpqf:FieldType"/> | ||
| </sequence> | ||
| </extension> | ||
| </complexContent> | ||
| </complexType> | ||
| <complexType name="MIN"> | ||
| <complexContent> | ||
| <extension base="mpqf:AggregateExpressionType"> | ||
| <sequence> | ||
| <element name="Field" type="mpqf:FieldType"/> | ||
| </sequence> | ||
| </extension> | ||
| </complexContent> | ||
| </complexType> | ||
| <complexType name="UpperCase"> | ||
| <complexContent> | ||
| <extension base="mpqf:StringExpressionType"> | ||
| <sequence> | ||
| <choice> | ||
| <element name="StringValue" type="string"/> | ||
| <element name="StringField" type="mpqf:FieldType"/> | ||
| <element name="StringExpression" type="mpqf:StringExpressionType"/> | ||
| </choice> | ||
| </sequence> | ||
| </extension> | ||
| </complexContent> | ||
| </complexType> | ||
| <complexType name="LowerCase"> | ||
| <complexContent> | ||
| <extension base="mpqf:StringExpressionType"> | ||
| <sequence> | ||
| <choice> | ||
| <element name="StringValue" type="string"/> | ||
| <element name="StringField" type="mpqf:FieldType"/> | ||
| <element name="StringExpression" type="mpqf:StringExpressionType"/> | ||
| </choice> | ||
| </sequence> | ||
| </extension> | ||
| </complexContent> | ||
| </complexType> | ||
| <complexType name="SemanticExpressionType" abstract="true"> | ||
| <complexContent> | ||
| <extension base="mpqf:BooleanExpressionType"> | ||
| <attribute name="anchorDistance" type="nonNegativeInteger" use="required"/> | ||
| <attribute name="anchor" type="boolean" use="optional"/> | ||
| </extension> | ||
| </complexContent> | ||
| </complexType> | ||
| <complexType name="SubClassOf"> | ||
| <complexContent> | ||
| <extension base="mpqf:SemanticExpressionType"> | ||
| <attribute name="var" type="string"/> | ||
| <attribute name="class" type="string"/> | ||
| </extension> | ||
| </complexContent> | ||
| </complexType> | ||
| <complexType name="TypeOf"> | ||
| <complexContent> | ||
| <extension base="mpqf:SemanticExpressionType"> | ||
| <attribute name="var" type="string"/> | ||
| <attribute name="class" type="string"/> | ||
| </extension> | ||
| </complexContent> | ||
| </complexType> | ||
| <complexType name="EquivalentClass"> | ||
| <complexContent> | ||
| <extension base="mpqf:SemanticExpressionType"> | ||
| <attribute name="var" type="string"/> | ||
| <attribute name="class" type="string"/> | ||
| </extension> | ||
| </complexContent> | ||
| </complexType> | ||
| <complexType name="ComplementOf"> | ||
| <complexContent> | ||
| <extension base="mpqf:SemanticExpressionType"> | ||
| <attribute name="var" type="string"/> | ||
| <attribute name="class" type="string"/> | ||
| </extension> | ||
| </complexContent> | ||
| </complexType> | ||
| <complexType name="IntersectionOf"> | ||
| <complexContent> | ||
| <extension base="mpqf:SemanticExpressionType"> | ||
| <attribute name="var" type="string"/> | ||
| <attribute name="class" type="string"/> | ||
| </extension> | ||
| </complexContent> | ||
| </complexType> | ||
| <complexType name="UnionOf"> | ||
| <complexContent> | ||
| <extension base="mpqf:SemanticExpressionType"> | ||
| <attribute name="var" type="string"/> | ||
| <attribute name="class" type="string"/> | ||
| </extension> | ||
| </complexContent> | ||
| </complexType> | ||
| <complexType name="InverseOf"> | ||
| <complexContent> | ||
| <extension base="mpqf:SemanticExpressionType"> | ||
| <attribute name="var" type="string"/> | ||
| <attribute name="class" type="string"/> | ||
| </extension> | ||
| </complexContent> | ||
| </complexType> | ||
| <complexType name="DisjointWith"> | ||
| <complexContent> | ||
| <extension base="mpqf:SemanticExpressionType"> | ||
| <attribute name="var" type="string"/> | ||
| <attribute name="class" type="string"/> | ||
| </extension> | ||
| </complexContent> | ||
| </complexType> | ||
| <complexType name="SemanticRelation"> | ||
| <complexContent> | ||
| <extension base="mpqf:SemanticExpressionType"> | ||
| <sequence> | ||
| <element name="Subject" type="string"/> | ||
| <element name="Property" type="string"/> | ||
| <element name="Object" type="string"/> | ||
| </sequence> | ||
| </extension> | ||
| </complexContent> | ||
| </complexType> | ||
| <complexType name="QueryType" abstract="true"> | ||
| <complexContent> | ||
| <extension base="mpqf:BooleanExpressionType"/> | ||
| </complexContent> | ||
| </complexType> | ||
| <complexType name="QueryByMedia"> | ||
| <complexContent> | ||
| <extension base="mpqf:QueryType"> | ||
| <choice> | ||
| <element name="MediaResource" type="mpqf:MediaResourceType"/> | ||
| <element name="MediaResourceREF" type="IDREF"/> | ||
| </choice> | ||
| <attribute name="matchType" use="optional" default="similar"> | ||
| <simpleType> | ||
| <restriction base="string"> | ||
| <enumeration value="similar"/> | ||
| <enumeration value="exact"/> | ||
| </restriction> | ||
| </simpleType> | ||
| </attribute> | ||
| <attribute name=" TargetMediaPath" use="optional" type="mpqf:xPathType"/> | ||
| </extension> | ||
| </complexContent> | ||
| </complexType> | ||
| <complexType name="QueryByDescription"> | ||
| <complexContent> | ||
| <extension base="mpqf:QueryType"> | ||
| <choice> | ||
| <element name="DescriptionResource" type="mpqf:DescriptionResourceType"/> | ||
| <element name="DescriptionResourceREF" type="IDREF"/> | ||
| </choice> | ||
| <attribute name="matchType" use="optional" default="similar"> | ||
| <simpleType> | ||
| <restriction base="string"> | ||
| <enumeration value="similar"/> | ||
| <enumeration value="exact"/> | ||
| </restriction> | ||
| </simpleType> | ||
| </attribute> | ||
| <attribute name=" TargetMediaPath" use="optional" type="mpqf:xPathType"/> | ||
| </extension> | ||
| </complexContent> | ||
| </complexType> | ||
| <complexType name="QueryByFreeText"> | ||
| <complexContent> | ||
| <extension base="mpqf:QueryType"> | ||
| <sequence> | ||
| <choice> | ||
| <element name="FreeText" type="string"/> | ||
| <element name="RegExp" type="string"/> | ||
| </choice> | ||
| <choice minOccurs="0"> | ||
| <element name="SearchField" type="mpqf:FieldType" maxOccurs="unbounded"/> | ||
| <element name="IgnoreField" type="mpqf:FieldType" maxOccurs="unbounded"/> | ||
| </choice> | ||
| </sequence> | ||
| </extension> | ||
| </complexContent> | ||
| </complexType> | ||
| <complexType name="QueryByFeatureRange"> | ||
| <complexContent> | ||
| <extension base="mpqf:QueryType"> | ||
| <sequence> | ||
| <choice> | ||
| <element name="Range"> | ||
| <complexType> | ||
| <attribute name="RangeStart" type="IDREF" use="required"/> | ||
| <attribute name="RangeEnd" type="IDREF" use="required"/> | ||
| </complexType> | ||
| </element> | ||
| <element name="Distance"> | ||
| <complexType> | ||
| <attribute name="Center" type="IDREF" use="required"/> | ||
| <attribute name="Radius" type="mpqf:zeroToOneType" use="required"/> | ||
| <attribute name="DistanceFunction" type="mpqf:SimpleTermType" use="optional"/> | ||
| </complexType> | ||
| </element> | ||
| </choice> | ||
| </sequence> | ||
| <attribute name=" TargetMediaPath" use="optional" type="mpqf:xPathType"/> | ||
| </extension> | ||
| </complexContent> | ||
| </complexType> | ||
| <complexType name="SpatialQuery"> | ||
| <complexContent> | ||
| <extension base="mpqf:QueryType"> | ||
| <sequence> | ||
| <element name="SpatialRelation" type="mpqf:RelationType"/> | ||
| </sequence> | ||
| <attribute name=" TargetMediaPath" use="optional" type="mpqf:xPathType"/> | ||
| </extension> | ||
| </complexContent> | ||
| </complexType> | ||
| <complexType name="TemporalQuery"> | ||
| <complexContent> | ||
| <extension base="mpqf:QueryType"> | ||
| <sequence> | ||
| <element name="TemporalRelation" type="mpqf:RelationType"/> | ||
| </sequence> | ||
| <attribute name=" TargetMediaPath" use="optional" type="mpqf:xPathType"/> | ||
| </extension> | ||
| </complexContent> | ||
| </complexType> | ||
| <complexType name="QueryByXQuery"> | ||
| <complexContent> | ||
| <extension base="mpqf:QueryType"> | ||
| <sequence> | ||
| <element name="XQuery" type="string"/> | ||
| </sequence> | ||
| </extension> | ||
| </complexContent> | ||
| </complexType> | ||
| <complexType name="QueryByRelevanceFeedback"> | ||
| <complexContent> | ||
| <extension base="mpqf:QueryType"> | ||
| <sequence> | ||
| <element name="ResultItem" type="positiveInteger" minOccurs="0" maxOccurs="unbounded"/> | ||
| </sequence> | ||
| <attribute name="answerID" type="anyURI" use="required"/> | ||
| </extension> | ||
| </complexContent> | ||
| </complexType> | ||
| <complexType name="QueryByROI"> | ||
| <complexContent> | ||
| <extension base="mpqf:QueryByMedia"> | ||
| <sequence> | ||
| <choice> | ||
| <element name="TemporalRegionOfInterest" type="mpqf:TemporalRegionType" maxOccurs="unbounded"/> | ||
| <element name="SpatialRegionOfInterest" type="mpqf:IntegerMatrixType" maxOccurs="unbounded"/> | ||
| </choice> | ||
| </sequence> | ||
| </extension> | ||
| </complexContent> | ||
| </complexType> | ||
| <complexType name="IntegerMatrixType"> | ||
| <simpleContent> | ||
| <extension base="mpqf:listOfPositiveInteger"> | ||
| <attribute name="dim" type="positiveInteger" use="required"/> | ||
| </extension> | ||
| </simpleContent> | ||
| </complexType> | ||
| <simpleType name="listOfPositiveInteger"> | ||
| <list itemType="nonNegativeInteger"/> | ||
| </simpleType> | ||
| <complexType name="TemporalRegionType"> | ||
| <sequence> | ||
| <element name="StartTime" type="mpqf:startTimePointType"/> | ||
| <element name="Duration" type="mpqf:mediaDurationType"/> | ||
| </sequence> | ||
| </complexType> | ||
| <simpleType name="startTimePointType"> | ||
| <restriction base="string"> | ||
| <pattern value="(\-?\d+(\-\d{2}(\-\d{2})?)?)?(T\d{2}(:\d{2}(:\d{2}(:\d+)?)?)?)?(F\d+)?"/> | ||
| </restriction> | ||
| </simpleType> | ||
| <simpleType name="mediaDurationType"> | ||
| <restriction base="string"> | ||
| <pattern value="\-?P(\d+D)?(T(\d+H)?(\d+M)?(\d+S)?(\d+N)?)?(\d+F)?"/> | ||
| </restriction> | ||
| </simpleType> | ||
| <complexType name="JoinType"> | ||
| <sequence> | ||
| <element name="From" maxOccurs="2"> | ||
| <complexType> | ||
| <sequence> | ||
| <element name="EvaluationPath" type="mpqf:xPathType" minOccurs="0"/> | ||
| <element name="TargetMediaType" type="mpqf:mimeType" minOccurs="0" maxOccurs="unbounded"/> | ||
| <element name="Condition" type="mpqf:BooleanExpressionType"/> | ||
| </sequence> | ||
| <attribute name="id" type="ID" use="required"/> | ||
| </complexType> | ||
| </element> | ||
| <element name="JoinCondition" type="mpqf:BooleanExpressionType"/> | ||
| </sequence> | ||
| </complexType> | ||
| <complexType name="QueryBySPARQL"> | ||
| <complexContent> | ||
| <extension base="mpqf:QueryType"> | ||
| <sequence> | ||
| <element name="SPARQL" type="string"/> | ||
| </sequence> | ||
| </extension> | ||
| </complexContent> | ||
| </complexType> | ||
| <complexType name="OutputQueryType"> | ||
| <sequence> | ||
| <element name="GlobalComment" type="string" minOccurs="0"/> | ||
| <element name="ResultItem" type="mpqf:ResultItemType" minOccurs="0" maxOccurs="unbounded"/> | ||
| <element name="SystemMessage" type="mpqf:SystemMessageType" minOccurs="0"/> | ||
| </sequence> | ||
| <attribute name="currPage" type="positiveInteger" default="1"/> | ||
| <attribute name="totalPages" type="positiveInteger" default="1"/> | ||
| <attribute name="expirationDate" type="dateTime" use="optional"/> | ||
| </complexType> | ||
| <complexType name="ResultItemBaseType" abstract="true"/> | ||
| <complexType name="ResultItemType"> | ||
| <complexContent> | ||
| <extension base="mpqf:ResultItemBaseType"> | ||
| <sequence> | ||
| <element name="Comment" minOccurs="0" maxOccurs="2"> | ||
| <complexType> | ||
| <simpleContent> | ||
| <extension base="string"> | ||
| <attribute name="fromREF" type="string" use="optional"/> | ||
| </extension> | ||
| </simpleContent> | ||
| </complexType> | ||
| </element> | ||
| <!-- Need for comment for each individual item should be cleared. --> | ||
| <!-- One use case can be for each individual responder to identify the origin of the result. --> | ||
| <element name="TextResult" minOccurs="0" maxOccurs="2"> | ||
| <complexType> | ||
| <simpleContent> | ||
| <extension base="string"> | ||
| <attribute name="fromREF" type="string" use="optional"/> | ||
| </extension> | ||
| </simpleContent> | ||
| </complexType> | ||
| </element> | ||
| <element name="Thumbnail" minOccurs="0" maxOccurs="2"> | ||
| <complexType> | ||
| <simpleContent> | ||
| <extension base="anyURI"> | ||
| <attribute name="fromREF" type="string" use="optional"/> | ||
| </extension> | ||
| </simpleContent> | ||
| </complexType> | ||
| </element> | ||
| <element name="MediaResource" minOccurs="0" maxOccurs="2"> | ||
| <complexType> | ||
| <simpleContent> | ||
| <extension base="anyURI"> | ||
| <attribute name="fromREF" type="string" use="optional"/> | ||
| </extension> | ||
| </simpleContent> | ||
| </complexType> | ||
| </element> | ||
| <!-- The media resource is expected to lead the customer to the location | ||
| of the actual full size media. --> | ||
| <element name="Description" minOccurs="0" maxOccurs="2"> | ||
| <complexType mixed="true"> | ||
| <sequence> | ||
| <any namespace="##any" processContents="strict" maxOccurs="unbounded"/> | ||
| </sequence> | ||
| <attribute name="fromREF" type="string" use="optional"/> | ||
| </complexType> | ||
| </element> | ||
| <!-- If you want to return embedded in-line media, you should use the Description. For example, you should instantiate a mpeg7:MediaLocator with inline media --> | ||
| <element name="AggregationResult" minOccurs="0" maxOccurs="unbounded"> | ||
| <complexType> | ||
| <simpleContent> | ||
| <extension base="string"> | ||
| <attribute name="aggregateID" type="string" use="required"/> | ||
| </extension> | ||
| <!-- This aggregateID is given in the Aggregate element | ||
| of the Input Query. --> | ||
| </simpleContent> | ||
| </complexType> | ||
| </element> | ||
| <element name="FragmentResult" minOccurs="0" maxOccurs="unbounded"> | ||
| <complexType> | ||
| <simpleContent> | ||
| <extension base="string"> | ||
| <attribute name="name" type="string" use="required"/> | ||
| <attribute name="fromREF" type="string" use="optional"/> | ||
| </extension> | ||
| </simpleContent> | ||
| </complexType> | ||
| </element> | ||
| <!-- elements with names of each aggregate expression --> | ||
| </sequence> | ||
| <attribute name="recordNumber" type="positiveInteger" use="required"/> | ||
| <attribute name="rank" type="positiveInteger" use="optional"/> | ||
| <attribute name="confidence" type="mpqf:zeroToOneType" use="optional"/> | ||
| <attribute name="originID" type="anyURI" use="optional"/> | ||
| </extension> | ||
| <!-- Can contain the serviceID or URL of the responder responding to the Input | ||
| Query, when there are multiple services responding to the single request. --> | ||
| </complexContent> | ||
| </complexType> | ||
| <complexType name="SystemMessageType"> | ||
| <choice> | ||
| <element name="Status" type="mpqf:InformationType" maxOccurs="unbounded"/> | ||
| <element name="Warning" type="mpqf:InformationType" maxOccurs="unbounded"/> | ||
| <element name="Exception" type="mpqf:InformationType" maxOccurs="unbounded"/> | ||
| </choice> | ||
| </complexType> | ||
| <complexType name="InformationType"> | ||
| <sequence> | ||
| <element name="Code" type="positiveInteger"/> | ||
| <element name="Description" type="string"/> | ||
| </sequence> | ||
| </complexType> | ||
| <complexType name="InputManagementType"> | ||
| <sequence> | ||
| <element name="DesiredCapability" type="mpqf:CapabilityType" minOccurs="0"/> | ||
| <element name="ServiceID" type="anyURI" minOccurs="0" maxOccurs="unbounded"/> | ||
| </sequence> | ||
| </complexType> | ||
| <complexType name="CapabilityType"> | ||
| <sequence> | ||
| <element name="SupportedQFProfile" type="mpqf:CapabilityTermType" minOccurs="0"/> | ||
| <element name="SupportedMetadata" type="anyURI" minOccurs="0" maxOccurs="unbounded"/> | ||
| <element name="SupportedExampleMediaTypes" minOccurs="0"> | ||
| <simpleType> | ||
| <list itemType="mpqf:mimeType"/> | ||
| </simpleType> | ||
| </element> | ||
| <element name="SupportedResultMediaTypes" minOccurs="0"> | ||
| <simpleType> | ||
| <list itemType="mpqf:mimeType"/> | ||
| </simpleType> | ||
| </element> | ||
| <element name="SupportedQueryTypes" type="mpqf:CapabilityTermType" minOccurs="0" maxOccurs="unbounded"/> | ||
| <element name="SupportedExpressions" type="mpqf:CapabilityTermType" minOccurs="0" maxOccurs="unbounded"/> | ||
| <element name="UsageConditions" minOccurs="0" maxOccurs="unbounded"> | ||
| <complexType> | ||
| <complexContent> | ||
| <extension base="mpqf:TermType"> | ||
| <attribute name="usageID" type="ID" use="optional"/> | ||
| </extension> | ||
| </complexContent> | ||
| </complexType> | ||
| </element> | ||
| </sequence> | ||
| </complexType> | ||
| <complexType name="CapabilityTermType"> | ||
| <complexContent> | ||
| <extension base="mpqf:TermType"> | ||
| <attribute name="usageRefList" type="IDREFS" use="optional"/> | ||
| </extension> | ||
| </complexContent> | ||
| </complexType> | ||
| <complexType name="OutputManagementType"> | ||
| <sequence> | ||
| <choice> | ||
| <element name="AvailableCapability" type="mpqf:AvailableCapabilityType" minOccurs="0" maxOccurs="unbounded"/> | ||
| <element name="SystemMessage" type="mpqf:SystemMessageType" minOccurs="0"/> | ||
| </choice> | ||
| </sequence> | ||
| </complexType> | ||
| <complexType name="AvailableCapabilityType"> | ||
| <complexContent> | ||
| <extension base="mpqf:CapabilityType"> | ||
| <attribute name="serviceID" type="anyURI" use="required"/> | ||
| </extension> | ||
| </complexContent> | ||
| </complexType> | ||
| </schema> |
| <?xml version="1.0" encoding="UTF-8"?> | ||
| <!-- | ||
| OASIS takes no position regarding the validity or scope of any intellectual property or other rights that might be claimed to pertain to the implementation or use of the technology described in this document or the extent to which any license under such rights might or might not be available; neither does it represent that it has made any effort to identify any such rights. Information on OASIS's procedures with respect to rights in OASIS specifications can be found at the OASIS website. Copies of claims of rights made available for publication and any assurances of licenses to be made available, or the result of an attempt made to obtain a general license or permission for the use of such proprietary rights by implementors or users of this specification, can be obtained from the OASIS Executive Director. | ||
| OASIS invites any interested party to bring to its attention any copyrights, patents or patent applications, or other proprietary rights which may cover technology that may be required to implement this specification. Please address the information to the OASIS Executive Director. | ||
| Copyright (C) OASIS Open (2005). All Rights Reserved. | ||
| This document and translations of it may be copied and furnished to others, and derivative works that comment on or otherwise explain it or assist in its implementation may be prepared, copied, published and distributed, in whole or in part, without restriction of any kind, provided that the above copyright notice and this paragraph are included on all such copies and derivative works. However, this document itself may not be modified in any way, such as by removing the copyright notice or references to OASIS, except as needed for the purpose of developing OASIS specifications, in which case the procedures for copyrights defined in the OASIS Intellectual Property Rights document must be followed, or as required to translate it into languages other than English. | ||
| The limited permissions granted above are perpetual and will not be revoked by OASIS or its successors or assigns. | ||
| This document and the information contained herein is provided on an "AS IS" basis and OASIS DISCLAIMS ALL WARRANTIES, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTY THAT THE USE OF THE INFORMATION HEREIN WILL NOT INFRINGE ANY RIGHTS OR ANY IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. | ||
| --> | ||
| <xsd:schema | ||
| xmlns:xsd="http://www.w3.org/2001/XMLSchema" | ||
| xmlns:wsrf-r="http://docs.oasis-open.org/wsrf/r-2" | ||
| xmlns:wsrf-bf="http://docs.oasis-open.org/wsrf/bf-2" | ||
| xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
| elementFormDefault="qualified" attributeFormDefault="unqualified" | ||
| targetNamespace="http://docs.oasis-open.org/wsrf/r-2" | ||
| > | ||
| <xsd:import | ||
| namespace= | ||
| "http://docs.oasis-open.org/wsrf/bf-2" | ||
| schemaLocation="./bf-2.xsd" | ||
| /> | ||
| <!-- ====================== WS-Resource fault types ============= --> | ||
| <xsd:complexType name="ResourceUnknownFaultType"> | ||
| <xsd:complexContent> | ||
| <xsd:extension base="wsrf-bf:BaseFaultType"/> | ||
| </xsd:complexContent> | ||
| </xsd:complexType> | ||
| <xsd:element name="ResourceUnknownFault" | ||
| type="wsrf-r:ResourceUnknownFaultType"/> | ||
| <xsd:complexType name="ResourceUnavailableFaultType"> | ||
| <xsd:complexContent> | ||
| <xsd:extension base="wsrf-bf:BaseFaultType"/> | ||
| </xsd:complexContent> | ||
| </xsd:complexType> | ||
| <xsd:element name="ResourceUnavailableFault" | ||
| type="wsrf-r:ResourceUnavailableFaultType"/> | ||
| </xsd:schema> | ||
| <?xml version="1.0" encoding="utf-8"?> | ||
| <!-- | ||
| OASIS takes no position regarding the validity or scope of any intellectual property or other rights that might be claimed to pertain to the implementation or use of the technology described in this document or the extent to which any license under such rights might or might not be available; neither does it represent that it has made any effort to identify any such rights. Information on OASIS's procedures with respect to rights in OASIS specifications can be found at the OASIS website. Copies of claims of rights made available for publication and any assurances of licenses to be made available, or the result of an attempt made to obtain a general license or permission for the use of such proprietary rights by implementors or users of this specification, can be obtained from the OASIS Executive Director. | ||
| OASIS invites any interested party to bring to its attention any copyrights, patents or patent applications, or other proprietary rights which may cover technology that may be required to implement this specification. Please address the information to the OASIS Executive Director. | ||
| Copyright (C) OASIS Open (2005). All Rights Reserved. | ||
| This document and translations of it may be copied and furnished to others, and derivative works that comment on or otherwise explain it or assist in its implementation may be prepared, copied, published and distributed, in whole or in part, without restriction of any kind, provided that the above copyright notice and this paragraph are included on all such copies and derivative works. However, this document itself may not be modified in any way, such as by removing the copyright notice or references to OASIS, except as needed for the purpose of developing OASIS specifications, in which case the procedures for copyrights defined in the OASIS Intellectual Property Rights document must be followed, or as required to translate it into languages other than English. | ||
| The limited permissions granted above are perpetual and will not be revoked by OASIS or its successors or assigns. | ||
| This document and the information contained herein is provided on an "AS IS" basis and OASIS DISCLAIMS ALL WARRANTIES, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTY THAT THE USE OF THE INFORMATION HEREIN WILL NOT INFRINGE ANY RIGHTS OR ANY IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. | ||
| --> | ||
| <wsdl:definitions name="WS-Resource" | ||
| xmlns="http://schemas.xmlsoap.org/wsdl/" | ||
| xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" | ||
| xmlns:xsd="http://www.w3.org/2001/XMLSchema" | ||
| xmlns:wsrf-r="http://docs.oasis-open.org/wsrf/r-2" | ||
| xmlns:wsrf-rw="http://docs.oasis-open.org/wsrf/rw-2" | ||
| targetNamespace="http://docs.oasis-open.org/wsrf/rw-2" | ||
| > | ||
| <!-- ===================== Types Definitions ====================== --> | ||
| <wsdl:types> | ||
| <xsd:schema | ||
| xmlns:xsd="http://www.w3.org/2001/XMLSchema" | ||
| targetNamespace="http://docs.oasis-open.org/wsrf/rw-2" | ||
| elementFormDefault="qualified" | ||
| attributeFormDefault="unqualified"> | ||
| <xsd:import | ||
| namespace="http://docs.oasis-open.org/wsrf/r-2" | ||
| schemaLocation="./r-2.xsd" | ||
| /> | ||
| </xsd:schema> | ||
| </wsdl:types> | ||
| <!-- ================= WS-Resource faults ========================= --> | ||
| <wsdl:message name="ResourceUnknownFault"> | ||
| <part name="ResourceUnknownFault" | ||
| element="wsrf-r:ResourceUnknownFault" /> | ||
| </wsdl:message> | ||
| <wsdl:message name="ResourceUnavailableFault"> | ||
| <part name="ResourceUnavailableFault" | ||
| element="wsrf-r:ResourceUnavailableFault" /> | ||
| </wsdl:message> | ||
| </wsdl:definitions> | ||
Sorry, the diff of this file is not supported yet
| <?xml version="1.0" encoding="UTF-8"?> | ||
| <!-- | ||
| OASIS takes no position regarding the validity or scope of any intellectual property or other rights that might be claimed to pertain to the implementation or use of the technology described in this document or the extent to which any license under such rights might or might not be available; neither does it represent that it has made any effort to identify any such rights. Information on OASIS's procedures with respect to rights in OASIS specifications can be found at the OASIS website. Copies of claims of rights made available for publication and any assurances of licenses to be made available, or the result of an attempt made to obtain a general license or permission for the use of such proprietary rights by implementors or users of this specification, can be obtained from the OASIS Executive Director. | ||
| OASIS invites any interested party to bring to its attention any copyrights, patents or patent applications, or other proprietary rights which may cover technology that may be required to implement this specification. Please address the information to the OASIS Executive Director. | ||
| Copyright (C) OASIS Open (2004-2006). All Rights Reserved. | ||
| This document and translations of it may be copied and furnished to others, and derivative works that comment on or otherwise explain it or assist in its implementation may be prepared, copied, published and distributed, in whole or in part, without restriction of any kind, provided that the above copyright notice and this paragraph are included on all such copies and derivative works. However, this document itself may not be modified in any way, such as by removing the copyright notice or references to OASIS, except as needed for the purpose of developing OASIS specifications, in which case the procedures for copyrights defined in the OASIS Intellectual Property Rights document must be followed, or as required to translate it into languages other than English. | ||
| The limited permissions granted above are perpetual and will not be revoked by OASIS or its successors or assigns. | ||
| This document and the information contained herein is provided on an "AS IS" basis and OASIS DISCLAIMS ALL WARRANTIES, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTY THAT THE USE OF THE INFORMATION HEREIN WILL NOT INFRINGE ANY RIGHTS OR ANY IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. | ||
| --> | ||
| <xsd:schema | ||
| xmlns:xsd="http://www.w3.org/2001/XMLSchema" | ||
| xmlns:wstop = "http://docs.oasis-open.org/wsn/t-1" | ||
| targetNamespace = "http://docs.oasis-open.org/wsn/t-1" | ||
| elementFormDefault="qualified" attributeFormDefault="unqualified"> | ||
| <!-- =============== utility type definitions ==================== --> | ||
| <xsd:complexType name="Documentation" mixed="true"> | ||
| <xsd:sequence> | ||
| <xsd:any processContents="lax" minOccurs="0" | ||
| maxOccurs="unbounded" namespace="##any"/> | ||
| </xsd:sequence> | ||
| </xsd:complexType> | ||
| <xsd:complexType name="ExtensibleDocumented" abstract="true" | ||
| mixed="false"> | ||
| <xsd:sequence> | ||
| <xsd:element name="documentation" type="wstop:Documentation" | ||
| minOccurs="0" /> | ||
| </xsd:sequence> | ||
| <xsd:anyAttribute namespace="##other" processContents="lax" /> | ||
| </xsd:complexType> | ||
| <xsd:complexType name="QueryExpressionType" mixed="true"> | ||
| <xsd:sequence> | ||
| <xsd:any minOccurs="0" maxOccurs="1" processContents="lax" /> | ||
| </xsd:sequence> | ||
| <xsd:attribute name="Dialect" type="xsd:anyURI" use="required"/> | ||
| </xsd:complexType> | ||
| <!-- ================== Topic-Namespace Related ================ --> | ||
| <xsd:complexType name="TopicNamespaceType"> | ||
| <xsd:complexContent> | ||
| <xsd:extension base="wstop:ExtensibleDocumented"> | ||
| <xsd:sequence> | ||
| <xsd:element name="Topic" | ||
| minOccurs="0" maxOccurs="unbounded"> | ||
| <xsd:complexType> | ||
| <xsd:complexContent> | ||
| <xsd:extension base="wstop:TopicType"> | ||
| <xsd:attribute name="parent" type="wstop:ConcreteTopicExpression" /> | ||
| </xsd:extension> | ||
| </xsd:complexContent> | ||
| </xsd:complexType> | ||
| </xsd:element> | ||
| <xsd:any namespace="##other" | ||
| minOccurs="0" maxOccurs="unbounded" | ||
| processContents="lax"/> | ||
| </xsd:sequence> | ||
| <xsd:attribute name="name" type="xsd:NCName"/> | ||
| <xsd:attribute name="targetNamespace" type="xsd:anyURI" | ||
| use="required"/> | ||
| <xsd:attribute name="final" type="xsd:boolean" | ||
| default="false"/> | ||
| </xsd:extension> | ||
| </xsd:complexContent> | ||
| </xsd:complexType> | ||
| <xsd:element name="TopicNamespace" type="wstop:TopicNamespaceType"> | ||
| <xsd:unique name="rootTopicUniqueness"> | ||
| <xsd:selector xpath="wstop:Topic"/> | ||
| <xsd:field xpath="@name"/> | ||
| </xsd:unique> | ||
| </xsd:element> | ||
| <xsd:attribute name="topicNamespaceLocation" type="xsd:anyURI"/> | ||
| <!-- ===================== Topic Related ========================= --> | ||
| <xsd:complexType name="TopicType"> | ||
| <xsd:complexContent> | ||
| <xsd:extension base="wstop:ExtensibleDocumented"> | ||
| <xsd:sequence> | ||
| <xsd:element name="MessagePattern" | ||
| type="wstop:QueryExpressionType" | ||
| minOccurs="0" maxOccurs="1" /> | ||
| <xsd:element name="Topic" type="wstop:TopicType" | ||
| minOccurs="0" maxOccurs="unbounded"> | ||
| <xsd:unique name="childTopicUniqueness"> | ||
| <xsd:selector xpath="wstop:topic"/> | ||
| <xsd:field xpath="@name"/> | ||
| </xsd:unique> | ||
| </xsd:element> | ||
| <xsd:any namespace="##other" minOccurs="0" | ||
| maxOccurs="unbounded"/> | ||
| </xsd:sequence> | ||
| <xsd:attribute name="name" use="required" type="xsd:NCName"/> | ||
| <xsd:attribute name="messageTypes"> | ||
| <xsd:simpleType> | ||
| <xsd:list itemType="xsd:QName"/> | ||
| </xsd:simpleType> | ||
| </xsd:attribute> | ||
| <xsd:attribute name="final" type="xsd:boolean" | ||
| default="false"/> | ||
| </xsd:extension> | ||
| </xsd:complexContent> | ||
| </xsd:complexType> | ||
| <!-- ================ Topic Set Related =================== --> | ||
| <xsd:complexType name="TopicSetType"> | ||
| <xsd:complexContent> | ||
| <xsd:extension base="wstop:ExtensibleDocumented"> | ||
| <xsd:sequence> | ||
| <xsd:any namespace="##other" | ||
| minOccurs="0" maxOccurs="unbounded" | ||
| processContents="lax"/> | ||
| </xsd:sequence> | ||
| </xsd:extension> | ||
| </xsd:complexContent> | ||
| </xsd:complexType> | ||
| <xsd:element name="TopicSet" type="wstop:TopicSetType"/> | ||
| <xsd:attribute name="topic" type="xsd:boolean" default="false"/> | ||
| <!-- ================ Topic Expression Related =================== --> | ||
| <xsd:simpleType name="FullTopicExpression"> | ||
| <xsd:restriction base="xsd:token"> | ||
| <xsd:annotation> | ||
| <xsd:documentation> | ||
| TopicPathExpression ::= TopicPath ( '|' TopicPath )* | ||
| TopicPath ::= RootTopic ChildTopicExpression* | ||
| RootTopic ::= NamespacePrefix? ('//')? (NCName | '*') | ||
| NamespacePrefix ::= NCName ':' | ||
| ChildTopicExpression ::= '/' '/'? (QName | NCName | '*'| '.') | ||
| </xsd:documentation> | ||
| </xsd:annotation> | ||
| <xsd:pattern value= | ||
| "([\i-[:]][\c-[:]]*:)?(//)?([\i-[:]][\c-[:]]*|\*)((/|//)(([\i-[:]][\c-[:]]*:)?[\i-[:]][\c-[:]]*|\*|[.]))*(\|([\i-[:]][\c-[:]]*:)?(//)?([\i-[:]][\c-[:]]*|\*)((/|//)(([\i-[:]][\c-[:]]*:)?[\i-[:]][\c-[:]]*|\*|[.]))*)*"> | ||
| </xsd:pattern> | ||
| </xsd:restriction> | ||
| </xsd:simpleType> | ||
| <xsd:simpleType name="ConcreteTopicExpression"> | ||
| <xsd:restriction base="xsd:token"> | ||
| <xsd:annotation> | ||
| <xsd:documentation> | ||
| The pattern allows strings matching the following EBNF: | ||
| ConcreteTopicPath ::= RootTopic ChildTopic* | ||
| RootTopic ::= QName | ||
| ChildTopic ::= '/' (QName | NCName) | ||
| </xsd:documentation> | ||
| </xsd:annotation> | ||
| <xsd:pattern value= | ||
| "(([\i-[:]][\c-[:]]*:)?[\i-[:]][\c-[:]]*)(/([\i-[:]][\c-[:]]*:)?[\i-[:]][\c-[:]]*)*" > | ||
| </xsd:pattern> | ||
| </xsd:restriction> | ||
| </xsd:simpleType> | ||
| <xsd:simpleType name="SimpleTopicExpression"> | ||
| <xsd:restriction base="xsd:QName"> | ||
| <xsd:annotation> | ||
| <xsd:documentation> | ||
| The pattern allows strings matching the following EBNF: | ||
| RootTopic ::= QName | ||
| </xsd:documentation> | ||
| </xsd:annotation> | ||
| </xsd:restriction> | ||
| </xsd:simpleType> | ||
| </xsd:schema> |
| <?xml version="1.0" encoding="utf-8"?> | ||
| <!-- | ||
| W3C XML Schema defined in the Web Services Addressing 1.0 specification | ||
| http://www.w3.org/TR/ws-addr-core | ||
| Copyright © 2005 World Wide Web Consortium, | ||
| (Massachusetts Institute of Technology, European Research Consortium for | ||
| Informatics and Mathematics, Keio University). All Rights Reserved. This | ||
| work is distributed under the W3C® Software License [1] in the hope that | ||
| it will be useful, but WITHOUT ANY WARRANTY; without even the implied | ||
| warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. | ||
| [1] http://www.w3.org/Consortium/Legal/2002/copyright-software-20021231 | ||
| $Id: ws-addr.xsd,v 1.4 2008/07/14 18:48:47 plehegar Exp $ | ||
| --> | ||
| <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:tns="http://www.w3.org/2005/08/addressing" targetNamespace="http://www.w3.org/2005/08/addressing" blockDefault="#all" elementFormDefault="qualified" finalDefault="" attributeFormDefault="unqualified"> | ||
| <!-- Constructs from the WS-Addressing Core --> | ||
| <xs:element name="EndpointReference" type="tns:EndpointReferenceType"/> | ||
| <xs:complexType name="EndpointReferenceType" mixed="false"> | ||
| <xs:sequence> | ||
| <xs:element name="Address" type="tns:AttributedURIType"/> | ||
| <xs:element name="ReferenceParameters" type="tns:ReferenceParametersType" minOccurs="0"/> | ||
| <xs:element ref="tns:Metadata" minOccurs="0"/> | ||
| <xs:any namespace="##other" processContents="lax" minOccurs="0" maxOccurs="unbounded"/> | ||
| </xs:sequence> | ||
| <xs:anyAttribute namespace="##other" processContents="lax"/> | ||
| </xs:complexType> | ||
| <xs:complexType name="ReferenceParametersType" mixed="false"> | ||
| <xs:sequence> | ||
| <xs:any namespace="##any" processContents="lax" minOccurs="0" maxOccurs="unbounded"/> | ||
| </xs:sequence> | ||
| <xs:anyAttribute namespace="##other" processContents="lax"/> | ||
| </xs:complexType> | ||
| <xs:element name="Metadata" type="tns:MetadataType"/> | ||
| <xs:complexType name="MetadataType" mixed="false"> | ||
| <xs:sequence> | ||
| <xs:any namespace="##any" processContents="lax" minOccurs="0" maxOccurs="unbounded"/> | ||
| </xs:sequence> | ||
| <xs:anyAttribute namespace="##other" processContents="lax"/> | ||
| </xs:complexType> | ||
| <xs:element name="MessageID" type="tns:AttributedURIType"/> | ||
| <xs:element name="RelatesTo" type="tns:RelatesToType"/> | ||
| <xs:complexType name="RelatesToType" mixed="false"> | ||
| <xs:simpleContent> | ||
| <xs:extension base="xs:anyURI"> | ||
| <xs:attribute name="RelationshipType" type="tns:RelationshipTypeOpenEnum" use="optional" default="http://www.w3.org/2005/08/addressing/reply"/> | ||
| <xs:anyAttribute namespace="##other" processContents="lax"/> | ||
| </xs:extension> | ||
| </xs:simpleContent> | ||
| </xs:complexType> | ||
| <xs:simpleType name="RelationshipTypeOpenEnum"> | ||
| <xs:union memberTypes="tns:RelationshipType xs:anyURI"/> | ||
| </xs:simpleType> | ||
| <xs:simpleType name="RelationshipType"> | ||
| <xs:restriction base="xs:anyURI"> | ||
| <xs:enumeration value="http://www.w3.org/2005/08/addressing/reply"/> | ||
| </xs:restriction> | ||
| </xs:simpleType> | ||
| <xs:element name="ReplyTo" type="tns:EndpointReferenceType"/> | ||
| <xs:element name="From" type="tns:EndpointReferenceType"/> | ||
| <xs:element name="FaultTo" type="tns:EndpointReferenceType"/> | ||
| <xs:element name="To" type="tns:AttributedURIType"/> | ||
| <xs:element name="Action" type="tns:AttributedURIType"/> | ||
| <xs:complexType name="AttributedURIType" mixed="false"> | ||
| <xs:simpleContent> | ||
| <xs:extension base="xs:anyURI"> | ||
| <xs:anyAttribute namespace="##other" processContents="lax"/> | ||
| </xs:extension> | ||
| </xs:simpleContent> | ||
| </xs:complexType> | ||
| <!-- Constructs from the WS-Addressing SOAP binding --> | ||
| <xs:attribute name="IsReferenceParameter" type="xs:boolean"/> | ||
| <xs:simpleType name="FaultCodesOpenEnumType"> | ||
| <xs:union memberTypes="tns:FaultCodesType xs:QName"/> | ||
| </xs:simpleType> | ||
| <xs:simpleType name="FaultCodesType"> | ||
| <xs:restriction base="xs:QName"> | ||
| <xs:enumeration value="tns:InvalidAddressingHeader"/> | ||
| <xs:enumeration value="tns:InvalidAddress"/> | ||
| <xs:enumeration value="tns:InvalidEPR"/> | ||
| <xs:enumeration value="tns:InvalidCardinality"/> | ||
| <xs:enumeration value="tns:MissingAddressInEPR"/> | ||
| <xs:enumeration value="tns:DuplicateMessageID"/> | ||
| <xs:enumeration value="tns:ActionMismatch"/> | ||
| <xs:enumeration value="tns:MessageAddressingHeaderRequired"/> | ||
| <xs:enumeration value="tns:DestinationUnreachable"/> | ||
| <xs:enumeration value="tns:ActionNotSupported"/> | ||
| <xs:enumeration value="tns:EndpointUnavailable"/> | ||
| </xs:restriction> | ||
| </xs:simpleType> | ||
| <xs:element name="RetryAfter" type="tns:AttributedUnsignedLongType"/> | ||
| <xs:complexType name="AttributedUnsignedLongType" mixed="false"> | ||
| <xs:simpleContent> | ||
| <xs:extension base="xs:unsignedLong"> | ||
| <xs:anyAttribute namespace="##other" processContents="lax"/> | ||
| </xs:extension> | ||
| </xs:simpleContent> | ||
| </xs:complexType> | ||
| <xs:element name="ProblemHeaderQName" type="tns:AttributedQNameType"/> | ||
| <xs:complexType name="AttributedQNameType" mixed="false"> | ||
| <xs:simpleContent> | ||
| <xs:extension base="xs:QName"> | ||
| <xs:anyAttribute namespace="##other" processContents="lax"/> | ||
| </xs:extension> | ||
| </xs:simpleContent> | ||
| </xs:complexType> | ||
| <xs:element name="ProblemHeader" type="tns:AttributedAnyType"/> | ||
| <xs:complexType name="AttributedAnyType" mixed="false"> | ||
| <xs:sequence> | ||
| <xs:any namespace="##any" processContents="lax" minOccurs="1" maxOccurs="1"/> | ||
| </xs:sequence> | ||
| <xs:anyAttribute namespace="##other" processContents="lax"/> | ||
| </xs:complexType> | ||
| <xs:element name="ProblemIRI" type="tns:AttributedURIType"/> | ||
| <xs:element name="ProblemAction" type="tns:ProblemActionType"/> | ||
| <xs:complexType name="ProblemActionType" mixed="false"> | ||
| <xs:sequence> | ||
| <xs:element ref="tns:Action" minOccurs="0"/> | ||
| <xs:element name="SoapAction" minOccurs="0" type="xs:anyURI"/> | ||
| </xs:sequence> | ||
| <xs:anyAttribute namespace="##other" processContents="lax"/> | ||
| </xs:complexType> | ||
| </xs:schema> |
| <?xml version='1.0'?> | ||
| <?xml-stylesheet href="../2008/09/xsd.xsl" type="text/xsl"?> | ||
| <xs:schema targetNamespace="http://www.w3.org/XML/1998/namespace" | ||
| xmlns:xs="http://www.w3.org/2001/XMLSchema" | ||
| xmlns ="http://www.w3.org/1999/xhtml" | ||
| xml:lang="en"> | ||
| <xs:annotation> | ||
| <xs:documentation> | ||
| <div> | ||
| <h1>About the XML namespace</h1> | ||
| <div class="bodytext"> | ||
| <p> | ||
| This schema document describes the XML namespace, in a form | ||
| suitable for import by other schema documents. | ||
| </p> | ||
| <p> | ||
| See <a href="http://www.w3.org/XML/1998/namespace.html"> | ||
| http://www.w3.org/XML/1998/namespace.html</a> and | ||
| <a href="http://www.w3.org/TR/REC-xml"> | ||
| http://www.w3.org/TR/REC-xml</a> for information | ||
| about this namespace. | ||
| </p> | ||
| <p> | ||
| Note that local names in this namespace are intended to be | ||
| defined only by the World Wide Web Consortium or its subgroups. | ||
| The names currently defined in this namespace are listed below. | ||
| They should not be used with conflicting semantics by any Working | ||
| Group, specification, or document instance. | ||
| </p> | ||
| <p> | ||
| See further below in this document for more information about <a | ||
| href="#usage">how to refer to this schema document from your own | ||
| XSD schema documents</a> and about <a href="#nsversioning">the | ||
| namespace-versioning policy governing this schema document</a>. | ||
| </p> | ||
| </div> | ||
| </div> | ||
| </xs:documentation> | ||
| </xs:annotation> | ||
| <xs:attribute name="lang"> | ||
| <xs:annotation> | ||
| <xs:documentation> | ||
| <div> | ||
| <h3>lang (as an attribute name)</h3> | ||
| <p> | ||
| denotes an attribute whose value | ||
| is a language code for the natural language of the content of | ||
| any element; its value is inherited. This name is reserved | ||
| by virtue of its definition in the XML specification.</p> | ||
| </div> | ||
| <div> | ||
| <h4>Notes</h4> | ||
| <p> | ||
| Attempting to install the relevant ISO 2- and 3-letter | ||
| codes as the enumerated possible values is probably never | ||
| going to be a realistic possibility. | ||
| </p> | ||
| <p> | ||
| See BCP 47 at <a href="http://www.rfc-editor.org/rfc/bcp/bcp47.txt"> | ||
| http://www.rfc-editor.org/rfc/bcp/bcp47.txt</a> | ||
| and the IANA language subtag registry at | ||
| <a href="http://www.iana.org/assignments/language-subtag-registry"> | ||
| http://www.iana.org/assignments/language-subtag-registry</a> | ||
| for further information. | ||
| </p> | ||
| <p> | ||
| The union allows for the 'un-declaration' of xml:lang with | ||
| the empty string. | ||
| </p> | ||
| </div> | ||
| </xs:documentation> | ||
| </xs:annotation> | ||
| <xs:simpleType> | ||
| <xs:union memberTypes="xs:language"> | ||
| <xs:simpleType> | ||
| <xs:restriction base="xs:string"> | ||
| <xs:enumeration value=""/> | ||
| </xs:restriction> | ||
| </xs:simpleType> | ||
| </xs:union> | ||
| </xs:simpleType> | ||
| </xs:attribute> | ||
| <xs:attribute name="space"> | ||
| <xs:annotation> | ||
| <xs:documentation> | ||
| <div> | ||
| <h3>space (as an attribute name)</h3> | ||
| <p> | ||
| denotes an attribute whose | ||
| value is a keyword indicating what whitespace processing | ||
| discipline is intended for the content of the element; its | ||
| value is inherited. This name is reserved by virtue of its | ||
| definition in the XML specification.</p> | ||
| </div> | ||
| </xs:documentation> | ||
| </xs:annotation> | ||
| <xs:simpleType> | ||
| <xs:restriction base="xs:NCName"> | ||
| <xs:enumeration value="default"/> | ||
| <xs:enumeration value="preserve"/> | ||
| </xs:restriction> | ||
| </xs:simpleType> | ||
| </xs:attribute> | ||
| <xs:attribute name="base" type="xs:anyURI"> <xs:annotation> | ||
| <xs:documentation> | ||
| <div> | ||
| <h3>base (as an attribute name)</h3> | ||
| <p> | ||
| denotes an attribute whose value | ||
| provides a URI to be used as the base for interpreting any | ||
| relative URIs in the scope of the element on which it | ||
| appears; its value is inherited. This name is reserved | ||
| by virtue of its definition in the XML Base specification.</p> | ||
| <p> | ||
| See <a | ||
| href="http://www.w3.org/TR/xmlbase/">http://www.w3.org/TR/xmlbase/</a> | ||
| for information about this attribute. | ||
| </p> | ||
| </div> | ||
| </xs:documentation> | ||
| </xs:annotation> | ||
| </xs:attribute> | ||
| <xs:attribute name="id" type="xs:ID"> | ||
| <xs:annotation> | ||
| <xs:documentation> | ||
| <div> | ||
| <h3>id (as an attribute name)</h3> | ||
| <p> | ||
| denotes an attribute whose value | ||
| should be interpreted as if declared to be of type ID. | ||
| This name is reserved by virtue of its definition in the | ||
| xml:id specification.</p> | ||
| <p> | ||
| See <a | ||
| href="http://www.w3.org/TR/xml-id/">http://www.w3.org/TR/xml-id/</a> | ||
| for information about this attribute. | ||
| </p> | ||
| </div> | ||
| </xs:documentation> | ||
| </xs:annotation> | ||
| </xs:attribute> | ||
| <xs:attributeGroup name="specialAttrs"> | ||
| <xs:attribute ref="xml:base"/> | ||
| <xs:attribute ref="xml:lang"/> | ||
| <xs:attribute ref="xml:space"/> | ||
| <xs:attribute ref="xml:id"/> | ||
| </xs:attributeGroup> | ||
| <xs:annotation> | ||
| <xs:documentation> | ||
| <div> | ||
| <h3>Father (in any context at all)</h3> | ||
| <div class="bodytext"> | ||
| <p> | ||
| denotes Jon Bosak, the chair of | ||
| the original XML Working Group. This name is reserved by | ||
| the following decision of the W3C XML Plenary and | ||
| XML Coordination groups: | ||
| </p> | ||
| <blockquote> | ||
| <p> | ||
| In appreciation for his vision, leadership and | ||
| dedication the W3C XML Plenary on this 10th day of | ||
| February, 2000, reserves for Jon Bosak in perpetuity | ||
| the XML name "xml:Father". | ||
| </p> | ||
| </blockquote> | ||
| </div> | ||
| </div> | ||
| </xs:documentation> | ||
| </xs:annotation> | ||
| <xs:annotation> | ||
| <xs:documentation> | ||
| <div xml:id="usage" id="usage"> | ||
| <h2><a name="usage">About this schema document</a></h2> | ||
| <div class="bodytext"> | ||
| <p> | ||
| This schema defines attributes and an attribute group suitable | ||
| for use by schemas wishing to allow <code>xml:base</code>, | ||
| <code>xml:lang</code>, <code>xml:space</code> or | ||
| <code>xml:id</code> attributes on elements they define. | ||
| </p> | ||
| <p> | ||
| To enable this, such a schema must import this schema for | ||
| the XML namespace, e.g. as follows: | ||
| </p> | ||
| <pre> | ||
| <schema . . .> | ||
| . . . | ||
| <import namespace="http://www.w3.org/XML/1998/namespace" | ||
| schemaLocation="http://www.w3.org/2001/xml.xsd"/> | ||
| </pre> | ||
| <p> | ||
| or | ||
| </p> | ||
| <pre> | ||
| <import namespace="http://www.w3.org/XML/1998/namespace" | ||
| schemaLocation="http://www.w3.org/2009/01/xml.xsd"/> | ||
| </pre> | ||
| <p> | ||
| Subsequently, qualified reference to any of the attributes or the | ||
| group defined below will have the desired effect, e.g. | ||
| </p> | ||
| <pre> | ||
| <type . . .> | ||
| . . . | ||
| <attributeGroup ref="xml:specialAttrs"/> | ||
| </pre> | ||
| <p> | ||
| will define a type which will schema-validate an instance element | ||
| with any of those attributes. | ||
| </p> | ||
| </div> | ||
| </div> | ||
| </xs:documentation> | ||
| </xs:annotation> | ||
| <xs:annotation> | ||
| <xs:documentation> | ||
| <div id="nsversioning" xml:id="nsversioning"> | ||
| <h2><a name="nsversioning">Versioning policy for this schema document</a></h2> | ||
| <div class="bodytext"> | ||
| <p> | ||
| In keeping with the XML Schema WG's standard versioning | ||
| policy, this schema document will persist at | ||
| <a href="http://www.w3.org/2009/01/xml.xsd"> | ||
| http://www.w3.org/2009/01/xml.xsd</a>. | ||
| </p> | ||
| <p> | ||
| At the date of issue it can also be found at | ||
| <a href="http://www.w3.org/2001/xml.xsd"> | ||
| http://www.w3.org/2001/xml.xsd</a>. | ||
| </p> | ||
| <p> | ||
| The schema document at that URI may however change in the future, | ||
| in order to remain compatible with the latest version of XML | ||
| Schema itself, or with the XML namespace itself. In other words, | ||
| if the XML Schema or XML namespaces change, the version of this | ||
| document at <a href="http://www.w3.org/2001/xml.xsd"> | ||
| http://www.w3.org/2001/xml.xsd | ||
| </a> | ||
| will change accordingly; the version at | ||
| <a href="http://www.w3.org/2009/01/xml.xsd"> | ||
| http://www.w3.org/2009/01/xml.xsd | ||
| </a> | ||
| will not change. | ||
| </p> | ||
| <p> | ||
| Previous dated (and unchanging) versions of this schema | ||
| document are at: | ||
| </p> | ||
| <ul> | ||
| <li><a href="http://www.w3.org/2009/01/xml.xsd"> | ||
| http://www.w3.org/2009/01/xml.xsd</a></li> | ||
| <li><a href="http://www.w3.org/2007/08/xml.xsd"> | ||
| http://www.w3.org/2007/08/xml.xsd</a></li> | ||
| <li><a href="http://www.w3.org/2004/10/xml.xsd"> | ||
| http://www.w3.org/2004/10/xml.xsd</a></li> | ||
| <li><a href="http://www.w3.org/2001/03/xml.xsd"> | ||
| http://www.w3.org/2001/03/xml.xsd</a></li> | ||
| </ul> | ||
| </div> | ||
| </div> | ||
| </xs:documentation> | ||
| </xs:annotation> | ||
| </xs:schema> | ||
Sorry, the diff of this file is not supported yet
| Metadata-Version: 2.4 | ||
| Name: onvif-python | ||
| Version: 0.2.6 | ||
| Version: 0.2.7 | ||
| Summary: A modern Python library for ONVIF-compliant devices | ||
@@ -49,3 +49,3 @@ Author-email: Nirsimetri Technologies® <open@nirsimetri.com> | ||
| <a href="https://deepwiki.com/nirsimetri/onvif-python"><img alt="Ask DeepWiki" src="https://deepwiki.com/badge.svg"></a> | ||
| <a href="https://pypi.org/project/onvif-python/"><img alt="PyPI Version" src="https://img.shields.io/badge/PyPI-0.2.6-orange?logo=archive&color=yellow"></a> | ||
| <a href="https://pypi.org/project/onvif-python/"><img alt="PyPI Version" src="https://img.shields.io/badge/PyPI-0.2.7-orange?logo=archive&color=yellow"></a> | ||
| <a href="https://pepy.tech/projects/onvif-python"><img alt="Pepy Total Downloads" src="https://img.shields.io/pepy/dt/onvif-python?label=Downloads&color=red"></a> | ||
@@ -366,3 +366,3 @@ <br> | ||
| ONVIF Terminal Client — v0.2.6 | ||
| ONVIF Terminal Client — v0.2.7 | ||
| https://github.com/nirsimetri/onvif-python | ||
@@ -448,3 +448,3 @@ | ||
| ```bash | ||
| ONVIF Interactive Shell — v0.2.6 | ||
| ONVIF Interactive Shell — v0.2.7 | ||
| https://github.com/nirsimetri/onvif-python | ||
@@ -451,0 +451,0 @@ |
@@ -64,2 +64,14 @@ LICENSE.md | ||
| onvif/wsdl/LICENSE.md | ||
| onvif/wsdl/schema/common/b-2.xsd | ||
| onvif/wsdl/schema/common/bf-2.xsd | ||
| onvif/wsdl/schema/common/bw-2.wsdl | ||
| onvif/wsdl/schema/common/include | ||
| onvif/wsdl/schema/common/mpqf.xsd | ||
| onvif/wsdl/schema/common/r-2.xsd | ||
| onvif/wsdl/schema/common/rw-2.wsdl | ||
| onvif/wsdl/schema/common/soap-envelope | ||
| onvif/wsdl/schema/common/t-1.xsd | ||
| onvif/wsdl/schema/common/ws-addr.xsd | ||
| onvif/wsdl/schema/common/xml.xsd | ||
| onvif/wsdl/schema/common/xmlmime | ||
| onvif/wsdl/ver10/actionengine.wsdl | ||
@@ -66,0 +78,0 @@ onvif/wsdl/ver10/analyticsdevice.wsdl |
| # onvif/__init__.py | ||
| __version__ = "0.2.7" | ||
| from .client import ONVIFClient | ||
@@ -25,2 +27,3 @@ from .operator import CacheMode | ||
| "ONVIFParser", | ||
| "__version__", | ||
| ] |
@@ -16,2 +16,3 @@ # onvif/cli/interactive.py | ||
| from .. import __version__ | ||
| from ..client import ONVIFClient | ||
@@ -198,3 +199,3 @@ from ..utils.exceptions import ONVIFOperationException | ||
| "/ /_/ / /| / | |/ // // __/ ", | ||
| "\\____/_/ |_/ |___/___/_/ v0.2.6", | ||
| f"\\____/_/ |_/ |___/___/_/ v{__version__}", | ||
| " ", | ||
@@ -1405,3 +1406,3 @@ ] | ||
| help_text = f""" | ||
| {colorize('ONVIF Interactive Shell — v0.2.6', 'cyan')}\n{colorize('https://github.com/nirsimetri/onvif-python', 'white')} | ||
| {colorize(f'ONVIF Interactive Shell — v{__version__}', 'cyan')}\n{colorize('https://github.com/nirsimetri/onvif-python', 'white')} | ||
@@ -1408,0 +1409,0 @@ {colorize('Basic Commands:', 'yellow')} |
@@ -14,2 +14,3 @@ # onvif/cli/main.py | ||
| from .. import __version__ | ||
| from ..client import ONVIFClient | ||
@@ -26,3 +27,3 @@ from ..operator import CacheMode | ||
| prog="onvif", | ||
| description=f"{colorize('ONVIF Terminal Client', 'yellow')} — v0.2.6\nhttps://github.com/nirsimetri/onvif-python", | ||
| description=f"{colorize('ONVIF Terminal Client', 'yellow')} — v{__version__}\nhttps://github.com/nirsimetri/onvif-python", | ||
| formatter_class=argparse.RawDescriptionHelpFormatter, | ||
@@ -193,3 +194,3 @@ epilog=f""" | ||
| if args.version: | ||
| print(colorize("0.2.6", "yellow")) | ||
| print(colorize(__version__, "yellow")) | ||
| sys.exit(0) | ||
@@ -196,0 +197,0 @@ |
@@ -107,2 +107,11 @@ # onvif/services/devicemgmt.py | ||
| def GetUserRoles(self, UserRole=None): | ||
| return self.operator.call("GetUserRoles", UserRole=UserRole) | ||
| def SetUserRole(self, UserRole): | ||
| return self.operator.call("SetUserRole", UserRole=UserRole) | ||
| def DeleteUserRole(self, UserRole): | ||
| return self.operator.call("DeleteUserRole", UserRole=UserRole) | ||
| def GetUsers(self): | ||
@@ -109,0 +118,0 @@ return self.operator.call("GetUsers") |
@@ -15,3 +15,3 @@ <?xml version="1.0" encoding="UTF-8"?> | ||
| <xs:import namespace="http://www.onvif.org/ver10/schema" schemaLocation="../ver10/schema/onvif.xsd"/> | ||
| <xs:import namespace="http://docs.oasis-open.org/wsn/b-2" schemaLocation="http://docs.oasis-open.org/wsn/b-2.xsd"/> | ||
| <xs:import namespace="http://docs.oasis-open.org/wsn/b-2" schemaLocation="../schema/common/b-2.xsd"/> | ||
| <!-- Message Request/Responses elements --> | ||
@@ -18,0 +18,0 @@ <!--===============================--> |
@@ -21,3 +21,3 @@ <?xml version="1.0" encoding="utf-8"?> | ||
| <xs:schema targetNamespace="http://www.onvif.org/ver10/appmgmt/wsdl" version="22.12"> | ||
| <xs:import namespace="http://www.onvif.org/ver10/schema" schemaLocation="http://www.onvif.org/ver10/schema/onvif.xsd"/> | ||
| <xs:import namespace="http://www.onvif.org/ver10/schema" schemaLocation="../../schema/onvif.xsd"/> | ||
@@ -24,0 +24,0 @@ <xs:simpleType name="AppState"> |
@@ -14,3 +14,3 @@ <?xml version="1.0" encoding="utf-8"?> | ||
| <xs:schema targetNamespace="http://www.onvif.org/ver10/display/wsdl" xmlns:tt="http://www.onvif.org/ver10/schema" xmlns:xs="http://www.w3.org/2001/XMLSchema" elementFormDefault="qualified"> | ||
| <xs:import namespace="http://www.onvif.org/ver10/schema" schemaLocation="http://www.onvif.org/onvif/ver10/schema/onvif.xsd"/> | ||
| <xs:import namespace="http://www.onvif.org/ver10/schema" schemaLocation="../../../ver10/schema/onvif.xsd"/> | ||
| <!--===============================--> | ||
@@ -17,0 +17,0 @@ <xs:element name="GetLayout"> |
@@ -30,3 +30,3 @@ <?xml version="1.0" encoding="utf-8"?> | ||
| namespace="http://docs.oasis-open.org/wsrf/rw-2" | ||
| location="http://docs.oasis-open.org/wsrf/rw-2.wsdl"/> | ||
| location="../../../schema/common/rw-2.wsdl"/> | ||
@@ -38,3 +38,3 @@ <!-- ===================== Types Definitions ====================== --> | ||
| namespace="http://docs.oasis-open.org/wsn/b-2" | ||
| schemaLocation="http://docs.oasis-open.org/wsn/b-2.xsd"/> | ||
| schemaLocation="../../../schema/common/b-2.xsd"/> | ||
| </xsd:schema> | ||
@@ -41,0 +41,0 @@ </wsdl:types> |
@@ -14,8 +14,8 @@ <?xml version="1.0" encoding="UTF-8"?> | ||
| <wsdl:import namespace="http://docs.oasis-open.org/wsn/bw-2" location="bw-2-vs-mod.wsdl"/> <!-- Use modified OASIS file to avoid svcutil name clash --> | ||
| <wsdl:import namespace="http://docs.oasis-open.org/wsrf/rw-2" location="http://docs.oasis-open.org/wsrf/rw-2.wsdl"/> | ||
| <wsdl:import namespace="http://docs.oasis-open.org/wsrf/rw-2" location="../../../schema/common/rw-2.wsdl"/> | ||
| <wsdl:types> | ||
| <xs:schema targetNamespace="http://www.onvif.org/ver10/events/wsdl" xmlns:wstop="http://docs.oasis-open.org/wsn/t-1" xmlns:wsnt="http://docs.oasis-open.org/wsn/b-2" elementFormDefault="qualified" version="24.12"> | ||
| <xs:import namespace="http://www.w3.org/2005/08/addressing" schemaLocation="http://www.w3.org/2005/08/addressing/ws-addr.xsd"/> | ||
| <xs:import namespace="http://docs.oasis-open.org/wsn/t-1" schemaLocation="http://docs.oasis-open.org/wsn/t-1.xsd"/> | ||
| <xs:import namespace="http://docs.oasis-open.org/wsn/b-2" schemaLocation="http://docs.oasis-open.org/wsn/b-2.xsd"/> | ||
| <xs:import namespace="http://www.w3.org/2005/08/addressing" schemaLocation="../../../schema/common/ws-addr.xsd"/> | ||
| <xs:import namespace="http://docs.oasis-open.org/wsn/t-1" schemaLocation="../../../schema/common/t-1.xsd"/> | ||
| <xs:import namespace="http://docs.oasis-open.org/wsn/b-2" schemaLocation="../../../schema/common/b-2.xsd"/> | ||
| <!-- Message Request/Responses elements --> | ||
@@ -22,0 +22,0 @@ <!--===============================--> |
@@ -13,9 +13,9 @@ <?xml version="1.0" encoding="UTF-8"?> | ||
| <wsdl:definitions xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap12/" xmlns:wsa="http://www.w3.org/2005/08/addressing" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:wsnt="http://docs.oasis-open.org/wsn/b-2" xmlns:wstop="http://docs.oasis-open.org/wsn/t-1" xmlns:wsntw="http://docs.oasis-open.org/wsn/bw-2" xmlns:tev="http://www.onvif.org/ver10/events/wsdl" xmlns:wsrf-rw="http://docs.oasis-open.org/wsrf/rw-2" xmlns:wsaw="http://www.w3.org/2006/05/addressing/wsdl" targetNamespace="http://www.onvif.org/ver10/events/wsdl"> | ||
| <wsdl:import namespace="http://docs.oasis-open.org/wsn/bw-2" location="http://docs.oasis-open.org/wsn/bw-2.wsdl"/> | ||
| <wsdl:import namespace="http://docs.oasis-open.org/wsrf/rw-2" location="http://docs.oasis-open.org/wsrf/rw-2.wsdl"/> | ||
| <wsdl:import namespace="http://docs.oasis-open.org/wsn/bw-2" location="../../../schema/common/bw-2.wsdl"/> | ||
| <wsdl:import namespace="http://docs.oasis-open.org/wsrf/rw-2" location="../../../schema/common/rw-2.wsdl"/> | ||
| <wsdl:types> | ||
| <xs:schema targetNamespace="http://www.onvif.org/ver10/events/wsdl" xmlns:wstop="http://docs.oasis-open.org/wsn/t-1" xmlns:wsnt="http://docs.oasis-open.org/wsn/b-2" elementFormDefault="qualified" version="24.12"> | ||
| <xs:import namespace="http://www.w3.org/2005/08/addressing" schemaLocation="http://www.w3.org/2005/08/addressing/ws-addr.xsd"/> | ||
| <xs:import namespace="http://docs.oasis-open.org/wsn/t-1" schemaLocation="http://docs.oasis-open.org/wsn/t-1.xsd"/> | ||
| <xs:import namespace="http://docs.oasis-open.org/wsn/b-2" schemaLocation="http://docs.oasis-open.org/wsn/b-2.xsd"/> | ||
| <xs:import namespace="http://www.w3.org/2005/08/addressing" schemaLocation="../../../schema/common/ws-addr.xsd"/> | ||
| <xs:import namespace="http://docs.oasis-open.org/wsn/t-1" schemaLocation="../../../schema/common/t-1.xsd"/> | ||
| <xs:import namespace="http://docs.oasis-open.org/wsn/b-2" schemaLocation="../../../schema/common/b-2.xsd"/> | ||
| <!-- Message Request/Responses elements --> | ||
@@ -22,0 +22,0 @@ <!--===============================--> |
@@ -14,3 +14,3 @@ <?xml version="1.0" encoding="utf-8"?> | ||
| <xs:schema targetNamespace="http://www.onvif.org/ver10/federatedsearch/wsdl" xmlns:xs="http://www.w3.org/2001/XMLSchema" elementFormDefault="qualified" version="1.0"> | ||
| <xs:import namespace="urn:mpeg:mpqf:schema:2008" schemaLocation="http://standards.iso.org/ittf/PubliclyAvailableStandards/MPEG-7_schema_files/mpqf.xsd"/> | ||
| <xs:import namespace="urn:mpeg:mpqf:schema:2008" schemaLocation="../schema/common/mpqf.xsd"/> | ||
| <!-- Message Request/Responses elements --> | ||
@@ -17,0 +17,0 @@ <!--=============================== |
@@ -16,3 +16,3 @@ <?xml version="1.0" encoding="UTF-8"?> | ||
| <xs:include schemaLocation="common.xsd"/> | ||
| <xs:import namespace="http://docs.oasis-open.org/wsn/b-2" schemaLocation="http://docs.oasis-open.org/wsn/b-2.xsd"/> | ||
| <xs:import namespace="http://docs.oasis-open.org/wsn/b-2" schemaLocation="../../schema/common/b-2.xsd"/> | ||
| <xs:import namespace="http://www.onvif.org/ver20/analytics/humanface" schemaLocation="../../ver20/analytics/humanface.xsd"/> | ||
@@ -19,0 +19,0 @@ <xs:import namespace="http://www.onvif.org/ver20/analytics/humanbody" schemaLocation="../../ver20/analytics/humanbody.xsd"/> |
@@ -89,4 +89,4 @@ <?xml version="1.0" encoding="utf-8"?> | ||
| </xs:element> | ||
| <xs:element name="UserLevel" type="xs:string"> | ||
| <xs:annotation><xs:documentation>Authorization level that will be assigned to the uplink connection.</xs:documentation></xs:annotation> | ||
| <xs:element name="UserLevel" type="tt:StringList"> | ||
| <xs:annotation><xs:documentation>List of authorization levels and roles that will be used to restrict the commands that will be accepted through the uplink connection.</xs:documentation></xs:annotation> | ||
| </xs:element> | ||
@@ -93,0 +93,0 @@ <xs:element name="Status" type="xs:string" minOccurs="0"> |
+4
-4
| Metadata-Version: 2.4 | ||
| Name: onvif-python | ||
| Version: 0.2.6 | ||
| Version: 0.2.7 | ||
| Summary: A modern Python library for ONVIF-compliant devices | ||
@@ -49,3 +49,3 @@ Author-email: Nirsimetri Technologies® <open@nirsimetri.com> | ||
| <a href="https://deepwiki.com/nirsimetri/onvif-python"><img alt="Ask DeepWiki" src="https://deepwiki.com/badge.svg"></a> | ||
| <a href="https://pypi.org/project/onvif-python/"><img alt="PyPI Version" src="https://img.shields.io/badge/PyPI-0.2.6-orange?logo=archive&color=yellow"></a> | ||
| <a href="https://pypi.org/project/onvif-python/"><img alt="PyPI Version" src="https://img.shields.io/badge/PyPI-0.2.7-orange?logo=archive&color=yellow"></a> | ||
| <a href="https://pepy.tech/projects/onvif-python"><img alt="Pepy Total Downloads" src="https://img.shields.io/pepy/dt/onvif-python?label=Downloads&color=red"></a> | ||
@@ -366,3 +366,3 @@ <br> | ||
| ONVIF Terminal Client — v0.2.6 | ||
| ONVIF Terminal Client — v0.2.7 | ||
| https://github.com/nirsimetri/onvif-python | ||
@@ -448,3 +448,3 @@ | ||
| ```bash | ||
| ONVIF Interactive Shell — v0.2.6 | ||
| ONVIF Interactive Shell — v0.2.7 | ||
| https://github.com/nirsimetri/onvif-python | ||
@@ -451,0 +451,0 @@ |
+1
-1
@@ -7,3 +7,3 @@ [build-system] | ||
| name = "onvif-python" | ||
| version = "0.2.6" | ||
| version = "0.2.7" | ||
| description = "A modern Python library for ONVIF-compliant devices" | ||
@@ -10,0 +10,0 @@ readme = "README.md" |
+3
-3
@@ -6,3 +6,3 @@ <h1 align="center">ONVIF Python</h1> | ||
| <a href="https://deepwiki.com/nirsimetri/onvif-python"><img alt="Ask DeepWiki" src="https://deepwiki.com/badge.svg"></a> | ||
| <a href="https://pypi.org/project/onvif-python/"><img alt="PyPI Version" src="https://img.shields.io/badge/PyPI-0.2.6-orange?logo=archive&color=yellow"></a> | ||
| <a href="https://pypi.org/project/onvif-python/"><img alt="PyPI Version" src="https://img.shields.io/badge/PyPI-0.2.7-orange?logo=archive&color=yellow"></a> | ||
| <a href="https://pepy.tech/projects/onvif-python"><img alt="Pepy Total Downloads" src="https://img.shields.io/pepy/dt/onvif-python?label=Downloads&color=red"></a> | ||
@@ -323,3 +323,3 @@ <br> | ||
| ONVIF Terminal Client — v0.2.6 | ||
| ONVIF Terminal Client — v0.2.7 | ||
| https://github.com/nirsimetri/onvif-python | ||
@@ -405,3 +405,3 @@ | ||
| ```bash | ||
| ONVIF Interactive Shell — v0.2.6 | ||
| ONVIF Interactive Shell — v0.2.7 | ||
| https://github.com/nirsimetri/onvif-python | ||
@@ -408,0 +408,0 @@ |
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Alert delta unavailable
Currently unable to show alert delta for PyPI packages.
85183335
0.16%145
9.02%10960
0.09%