你的位置:首页 > 软件开发 > Java > WebService笔记

WebService笔记

发布时间:2016-07-31 15:00:31
Schema约束俗话说得好 好记性不如烂笔头。看了下WebService视频,觉得还是得下笔记。观看的视频地址:http://edu.51cto.com/lesson/id-25757.html复习下 1 <schema ="http://www.w3.org/2 ...

                    Schema约束

俗话说得好 好记性不如烂笔头。

看了下WebService视频,觉得还是得下笔记。

观看的视频地址:http://edu.51cto.com/lesson/id-25757.html

复习下

 1 <schema ="http://www.w3.org/2001/ 2   targetNamespace="http://www.atguigu.com/bookSchema" 3   elementFormDefault="qualified"> 4   <element name="书架"> 5     <complexType> 6       <sequence maxOccurs="unbounded"> 7         <element name="书"> 8           <complexType> 9             <sequence>10               <element name="书名" type="string" />11               <element name="作者" type="string" />12               <element name="售价" type="string" />13             </sequence>14           </complexType>15         </element>16       </sequence>17     </complexType>18   </element>19 </schema>
 <书架>  <书>   <书名></书名>   <作者></作者>   <售价></售价>  </书>  <书>   <书名></书名>   <作者></作者>   <售价></售价>  </书> </书架> 

原标题:WebService笔记

关键词:web

web
*特别声明:以上内容来自于网络收集,著作权属原作者所有,如有侵权,请联系我们: admin#shaoqun.com (#换成@)。