• 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

Error 500 from struts-el tags

 
Ranch Hand
Posts: 49
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I don't know if this is a problem with my IDE or what... I'm using WSSD 5.1.2 with Tomcat 4.1 and I'm trying to create a very simple page using struts-el tags.

I have the struts-el.jar, struts.jar, standard.jar, and jstl.jar in my buildpath.

Here's the very simple code that bombs out. It's not compiling because when I look in the cache in the Tomcat directory, there's no related .class file to this jsp.

Here's the code. I don't know what else to check. I'm accessing this page directly.

If I take out the <html:button> tag, it works fine. It seems to bomb anytime I access tags-html-el.



Thanks for the help.

Edit: The exact error I get in my console is:

"ERROR - An HTTP 500 (Internal Server Error) error occurred when the user attempted to access paul.jsp."


Aaron
[ June 09, 2005: Message edited by: Aaron Wilt ]
 
Sheriff
Posts: 13411
Firefox Browser VI Editor Redhat
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Aron,
There is a Struts specific forum on this site.
You'll find a lot more Struts Gurus there..
 
Sheriff
Posts: 67746
173
Mac Mac OS X IntelliJ IDE jQuery TypeScript Java iOS
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Moved to the Struts forum.
 
Ranch Hand
Posts: 4864
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Is the struts-el.jar file and it's associated jar files in the WEB-INF/lib directory in your WAR file?

Putting jar files in your build path makes it so they compile in WSAD, bit this does not make them available at run time. The jar files have to be in the proper location in the WAR file in order for the code to work when it is deployed.
 
Aaron Wilt
Ranch Hand
Posts: 49
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Thanks for the reply.

Yes, all of the struts jars are in my Web-Inf/lib directory.

Aaron
 
The knights of nee want a shrubbery. And a tiny ad:
a bit of art, as a gift, the permaculture playing cards
https://gardener-gift.com
reply
    Bookmark Topic Watch Topic
  • New Topic