Some exchange result status
Youenn Fablet <[email protected]>
| Newsgroups | gmane.comp.web.services.description |
|---|---|
| Message-ID | <[email protected]> |
Even if I have no logs, my clients and servers seem to communicate well
with MessageTest-1G, 2G and 3G.
I needed to fix the schema of MessageTest-3G (see in attachment), in
order for EchoString to be boundable to GET (safe binding).
Jonathan, could you check this fix and commit it to CVS if that is ok
with you.
Youenn
servicetypes.xsd
(text/plain, 1.2 KB)
<xs:schema elementFormDefault="qualified" targetNamespace="http://example.org/message-test/xsd"
xmlns:xs="http://www.w3.org/2001/XMLSchema"
xmlns:xsmt="http://example.org/message-test/xsd">
<xs:complexType name="EchoStringType">
<xs:sequence>
<xs:element name="string" type="xs:string"/>
</xs:sequence>
</xs:complexType>
<xs:element name="EchoString" type="xsmt:EchoStringType"/>
<xs:element name="EchoName" type="xsmt:EchoStructType"/>
<xs:complexType name="EchoStructType">
<xs:sequence>
<xs:element name="FirstName" type="xs:string"/>
<xs:element name="MiddleName" type="xs:string"/>
<xs:element name="LastName" type="xs:string"/>
</xs:sequence>
</xs:complexType>
<xs:element name="EchoNameFault" type="xsmt:FaultStructType"/>
<xs:complexType name="FaultStructType">
<xs:sequence>
<xs:element name="Fault" type="xs:string"/>
<xs:element name="FirstName" type="xs:string"/>
<xs:element name="MiddleName" type="xs:string"/>
<xs:element name="LastName" type="xs:string"/>
</xs:sequence>
</xs:complexType>
</xs:schema>