• 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

DTD issue in migration from weblogic to tomcat server

 
Greenhorn
Posts: 3
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi,

We are doing migration of our application from Weblogic to Tomcat. We have deployed our application of Linux server. Now here, the issue is.

Our production release failed. Below is the reason.

In some files like

1.cm.tld we have external reference for DTD files as shown below.

<!DOCTYPE taglib PUBLIC "-//Sun Microsystems, Inc.//DTD JSP Tag Library 1.2//EN"
"http://java.sun.com/dtd/web-jsptaglibrary_1_2.dtd">

2. struts-bean.tld
<!DOCTYPE taglib PUBLIC "-//Sun Microsystems, Inc.//DTD JSP Tag Library 1.1//EN"

"http://java.sun.com/j2ee/dtds/web-jsptaglibrary_1_1.dtd">

At the time of production release, java.sun.com was down and because of this our application could not find DTD at runtime and release failed. And we had to roll back.

Now it is decided that external reference need to be removed and to keep these DTDs in local path ... may be inside <our app>/WEB-INF/DTD/ directory.

I have downloaded these DTDs and kept in WEB-INF/DTD folder. Now how to refer these DTDs from nm.tld and struts-bean.tld file ???

Please help. This is very urgent. I am badly stuck at it.

Thanks,
Sanjay
 
Sheriff
Posts: 22784
131
Eclipse IDE Spring VI Editor Chrome Java Windows
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

sanjay kankariya wrote:This is very urgent.


Please EaseUp. There is no such thing as "urgent" around here.
reply
    Bookmark Topic Watch Topic
  • New Topic