Advertisement
neo7bf

xsd for calculator

May 25th, 2023
1,289
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 0.65 KB | Source Code | 0 0
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema"
  3.     targetNamespace="http://www.codingspace.it/calculatorws"
  4.     xmlns:tns="http://www.codingspace.it/calculatorws"
  5.     elementFormDefault="qualified">
  6.     <xsd:element name="Add">
  7.         <xsd:complexType>
  8.             <xsd:sequence>
  9.                 <xsd:element name="intA" type="xsd:int"/>
  10.                 <xsd:element name="intB" type="xsd:int"/>
  11.             </xsd:sequence>
  12.         </xsd:complexType>
  13.     </xsd:element>
  14.     <xsd:element name="AddResponse">
  15.         <xsd:complexType>
  16.             <xsd:sequence>
  17.                 <xsd:element name="addResult" type="xsd:int"/>
  18.             </xsd:sequence>
  19.         </xsd:complexType>
  20.     </xsd:element> 
  21. </xsd:schema>
  22.  
Tags: xsd
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement