• 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
  • Ron McLeod
  • Paul Clapham
  • Devaka Cooray
  • Liutauras Vilda
Sheriffs:
  • Jeanne Boyarsky
  • paul wheaton
  • Henry Wong
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Tim Moores
  • Carey Brown
  • Mikalai Zaikin
Bartenders:
  • Lou Hamers
  • Piet Souris
  • Frits Walraven

Hot to deploy struts application in weblogic8.1 with SP4

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

I deployed a struts application by creating a war file. But i am getting the following error message due to struts regular tag.

Detail Error:-

Compilation of 'C:\bea\user_projects\domains\mydomain\.\myserver\.wlnotdelete\extract\myserver_webappdti_webappdti\jsp_servlet\_app\__login.java' failed:
--------------------------------------------------------------------------------
C:\bea\user_projects\domains\mydomain\.\myserver\.wlnotdelete\extract\myserver_webappdti_webappdti\jsp_servlet\_app\__login.java:180: cannot resolve symbol
probably occurred due to an error in /app/login.jsp line 56:
<html:form action="/app/authenticate" onSubmit="setLoginCookie(this.username.value, this.password.value)">

C:\bea\user_projects\domains\mydomain\.\myserver\.wlnotdelete\extract\myserver_webappdti_webappdti\jsp_servlet\_app\__login.java:252: cannot resolve symbol
probably occurred due to an error in /app/login.jsp line 118:
</html:form>


--------------------------------------------------------------------------------
Full compiler error(s):
C:\bea\user_projects\domains\mydomain\.\myserver\.wlnotdelete\extract\myserver_webappdti_webappdti\jsp_servlet\_app\__login.java:180: cannot resolve symbol
symbol : variable EVAL_BODY_BUFFERED
location: interface javax.servlet.jsp.tagext.BodyTag
if (_int0 == BodyTag.EVAL_BODY_BUFFERED) { //[ /app/login.jsp; Line: 56]
^
C:\bea\user_projects\domains\mydomain\.\myserver\.wlnotdelete\extract\myserver_webappdti_webappdti\jsp_servlet\_app\__login.java:252: cannot resolve symbol
symbol : method doAfterBody ()
location: class org.apache.struts.taglib.html.FormTag
} while (_html_form0.doAfterBody() == IterationTag.EVAL_BODY_AGAIN); //[ /app/login.jsp; Line: 118]
^
2 errors

Please tell me solution of this.
 
Bartender
Posts: 9626
16
Mac OS X Linux Windows
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Do you have struts.jar included in your WAR somewhere that the compiler will find it (i.e. /APP-INF or /WEB-INF/lib)?
Do you have the various struts .tld files in WEB-INF?
[ July 17, 2006: Message edited by: Joe Ess ]
 
arpan prasad
Greenhorn
Posts: 3
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Yes i have struts.jar file inside the application lib folder.And made a .war file of that application. and deployed it inside weblogic8.1
 
arpan prasad
Greenhorn
Posts: 3
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I also put struts.tld files inside the WEB-INF. I can not figure out where is the actual problem. Because the same application run properly in Iplanet.
 
No, tomorrow we rule the world! With this tiny ad:
We need your help - Coderanch server fundraiser
https://coderanch.com/wiki/782867/Coderanch-server-fundraiser
reply
    Bookmark Topic Watch Topic
  • New Topic