• 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

Refering .dtd file offline from faces-config.xml

 
Greenhorn
Posts: 5
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I am trying to run an application that uses faces-config.xml having following DOCTYPE.

<!DOCTYPE faces-config PUBLIC
"-//Sun Microsystems, Inc.//DTD JavaServer Faces Config 1.0//EN"
"http://java.sun.com/dtd/web-facesconfig_1_0.dtd">

I get an error when I start tomcat offline. I have stored this web-facesconfig_1_0.dtd onto my local machine and would like to refer this when I am offline. How would I do this?

Thanks,
Hemang
 
Bartender
Posts: 10336
Hibernate Eclipse IDE Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Change PUBLIC to SYSTEM, update the url of your dtd accordingly and it should be fine.
 
Hemang Joshi
Greenhorn
Posts: 5
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Thanks Paul.

Following is the declaration that I did and got the SAXParseException stating that Markup declaration or pointed to by the document type declaration must be well formed.

<!DOCTYPE faces-config SYSTEM "file:///c:/apache-tomcat-5.5.17/webapps/library/resource-search/DTD/web-facesconfig_1_0.dtd">

Is anything silly I have done ?

Thanks,
Hemang
 
Marshal
Posts: 28193
95
Eclipse IDE Firefox Browser MySQL Database
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
We don't have access to your C drive, so we can't look at that document to see if it's well-formed, or if it even exists. But I would suggest that you do that.
 
reply
    Bookmark Topic Watch Topic
  • New Topic