JMS 스트림 메시지에 대한 XML 스키마 정의
이는 JMS 스트림 메시지를 메시지 유형으로 트랜스코딩하기 위한 XML 스키마 정의입니다.
다음 XML 스키마 정의는 대상 네임스페이스
http://www.ibm.com/xmlns/prod/websphere/messaging/jms/를 사용하여
XML에서 JMS 스트림 메시지를 표시합니다. 이 정의를 사용하여 바이트 배열과
메시지 페이로드 사이에서 트랜스코딩하십시오.
<xsd:schema elementFormDefault="qualified" xml:lang="EN"
targetNamespace="http://www.ibm.com/xmlns/prod/websphere/messaging/jms"
xmlns="http://www.ibm.com/xmlns/prod/websphere/messaging/jms"
xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<xsd:element name="data" type="StreamBody"/>
<xsd:complexType name="StreamBody">
<xsd:sequence>
<xsd:element name="value"
type="streamTypes"
minOccurs="0"
maxOccurs="unbounded"
nillable="true"/>
</xsd:sequence>
</xsd:complexType>
<xsd:simpleType name="character">
<xsd:restriction base="xsd:string">
<xsd:minLength value="1"/>
<xsd:maxLength value="1"/>
</xsd:restriction>
</xsd:simpleType>
<xsd:simpleType name="streamTypes">
<xsd:union memberTypes="xsd:long xsd:int xsd:short xsd:byte xsd:boolean
xsd:float xsd:double xsd:string xsd:hexBinary character"/>
</xsd:simpleType>
</xsd:schema>