• 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

local reference to dtd

 
Ranch Hand
Posts: 399
2
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
hi,

I am using ajax4jsf.jar file in my web application. This jar file is using a reference to access http://java.sun.com/dtd/web-facesconfig_1_1.dtd which is described in the DOCTYPE section of faces-config.xml file in this jar file. Can any one point me how to access this dtd locally instead of using the internet to access the dtd.

I am having this issue as the server on which this application is installed does not have internet connection.

I apprecaite all the help on this issue.

Thanks and Regards
Ayub
 
Ranch Hand
Posts: 2308
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Put this

<!DOCTYPE {ROOT_ELEMENT} SYSTEM "web-facesconfig-1._1.dtd">

and put the DTD in the same folder as the config xml file.
 
reply
    Bookmark Topic Watch Topic
  • New Topic