• 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

the description element inside of web-resource-collection.

 
Ranch Hand
Posts: 71
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
<!ELEMENT web-resource-collection (web-resource-name, description?, url-pattern*, http-method*)>
e.g
<web-resource-collection>
<web-resource-name>Enterprise App</web-resource-name>
<description>The Description goes here</description>
<url-pattern>/EnterApp/*</url-pattern>
<http-method>GET</http-method>
</web-resource-collection>
Question:
Does the optional <description> element must be placed between <web-resource-name> and <url-pattern> elelments? Can it go after the <http-method> element?
 
Greenhorn
Posts: 25
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
The order of the elements is important. They should appear in the order given in the specs
The optional <description> element if present should be placed between <web-resource-name> and <url-pattern>.
Hope this helps
Regards,
Deepti
 
Joe Man
Ranch Hand
Posts: 71
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Thanks Deepti!
I appreciate your help.
 
Consider Paul's rocket mass heater.
reply
    Bookmark Topic Watch Topic
  • New Topic