• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

Doubt in SOAP schema for Body element

 
Ranch Hand
Posts: 238
1
Eclipse IDE Fedora Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi all,
Referring the code below which is from standard SOAP schema,please help me understand what does it say


I can clearly see that Body complexType element has defined <xs:antAttribute>,which clearly means that Body element can have as many attributes as it wants.But then what does " <xs:documentation>Prose in the spec does not specify that attributes are allowed on the Body element</xs:documentation>
" mean to say?

Please help me clear my doubt.
Thanks...
 
Ranch Hand
Posts: 343
Mac OS X Spring Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

Sudhanshu Mishra wrote:Hi all,
Referring the code below which is from standard SOAP schema,please help me understand what does it say


I can clearly see that Body complexType element has defined <xs:antAttribute>,which clearly means that Body element can have as many attributes as it wants.But then what does " <xs:documentation>Prose in the spec does not specify that attributes are allowed on the Body element</xs:documentation>
" mean to say?

Please help me clear my doubt.
Thanks...



It means that though schemas has made it possible to include any attribute for element body, however, the specification given by w3.org, talks nothing about attributes with element body. So, the schema is open for adding attributes unless specification says otherwise.
reply
    Bookmark Topic Watch Topic
  • New Topic