• 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

getting error during precompilation of JSPs in weblogic

 
Greenhorn
Posts: 1
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi,
Since our JSP's are trying to load upto 2 MB of data, we are trying to load pre-compiled jsp's for BPM. For achieving this, we made the following changes to our weblogic.xml

<jsp-descriptor>
<jsp-param>
<param-name>precompile</param-name>
<param-value>true</param-value>
</jsp-param>
</jsp-descriptor>
<session-descriptor>
<session-param>
<param-name>CookieSecure</param-name>
<param-value>true</param-value>
</session-param>
</session-descriptor>

But the server failed to start up because of an error ( as shown below). After reverting the weblogic.xml back , the server started up properly.

<Error> <HTTP> <BEA-101045> <[ServletContext(id=24721556,name=portal,context-path=/portal)] translation of /1137webRoot/customJSP/QueryEventDetails.jsp failed: weblogic.servlet.jsp.JspException: (line 4): Could not parse deployment descriptor: java.io.IOException: cannot resolve 'http://www.springframework.org/tags' into a valid tag library> <Aug 6, 2009 5:23:35 PM EDT> <Error> <Deployer> <BEA-149205> <Failed to initialize the application portal due to error weblogic.management.ApplicationException: prepare failed for portal { Module Name: portal, Error: Could not load portal: weblogic.servlet.jsp.JspException: (line 4): Could not parse deployment descriptor: java.io.IOException: cannot resolve 'http://www.springframework.org/tags' into a valid tag library }.

we are using weblogic 8.1SP2 version

Can you please advise why this is happening?
 
Bartender
Posts: 6663
5
MyEclipse IDE Firefox Browser Linux
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Are you using spring web flow tags ? It appears that the compiler is not able to recognize the tags. It is probable that before the TLD tag map was created for your app, the compiler is trying to compile your page and unable to find the related TLD.

Please provide more details that will help identify the problem. Some source code snippets, what lib you use for JSP page displays, its version, your JDK version.

BPM = Business process manager ?
 
Maybe he went home and went to bed. And took this tiny ad with him:
a bit of art, as a gift, that will fit in a stocking
https://gardener-gift.com
reply
    Bookmark Topic Watch Topic
  • New Topic