• 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 regarding JSP document

 
Ranch Hand
Posts: 49
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi,
I have question regarding JSP document. As per JSP 2.0 spec (Section JSP.1.3.9).
� The document must be well-formed
� Validation, if indicated
� Entity resolution will apply, if indicated
<% style syntax cannot be used

so doesn't that mean I should get the error in the below code? but it is working fine


correct me if I am wrong.

[ June 18, 2008: Message edited by: Sandip Kaviman ]
[ June 18, 2008: Message edited by: Sandip Kaviman ]
 
Sheriff
Posts: 14691
16
Eclipse IDE VI Editor Ubuntu
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Maybe your container doesn't recognize your files as a JSP document. Check "JSP.6.2.1 Identifying JSP Documents " from the JSP spec. Did you give your file a "jspx" extension ?
 
Sandip Kaviman
Ranch Hand
Posts: 49
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Thanks Christophe,

It gave me error when I changed the extension to .jspx.

Thanks
Sandip
 
reply
    Bookmark Topic Watch Topic
  • New Topic