Tomcat  not finding struts tld files

I'm trying to use some struts tags and unless I extract the tld into the WEB-INF directory it wont find the file.
I get the following error:
org.apache.jasper.JasperException: File "/WEB-INF/struts-html.tld" not found
     org.apache.jasper.compiler.DefaultErrorHandler.jspError(DefaultErrorHandler.java:50)
     org.apache.jasper.compiler.ErrorDispatcher.dispatch(ErrorDispatcher.java:411)
     org.apache.jasper.compiler.ErrorDispatcher.jspError(ErrorDispatcher.java:118)
     org.apache.jasper.compiler.TagLibraryInfoImpl.<init>(TagLibraryInfoImpl.java:159)
     org.apache.jasper.compiler.Parser.parseTaglibDirective(Parser.java:418)
     org.apache.jasper.compiler.Parser.parseDirective(Parser.java:483)
     org.apache.jasper.compiler.Parser.parseElements(Parser.java:1539)
     org.apache.jasper.compiler.Parser.parse(Parser.java:126)
     org.apache.jasper.compiler.ParserController.doParse(ParserController.java:220)
     org.apache.jasper.compiler.ParserController.parse(ParserController.java:101)
     org.apache.jasper.compiler.Compiler.generateJava(Compiler.java:203)
     org.apache.jasper.compiler.Compiler.compile(Compiler.java:470)
     org.apache.jasper.compiler.Compiler.compile(Compiler.java:451)
     org.apache.jasper.compiler.Compiler.compile(Compiler.java:439)
     org.apache.jasper.JspCompilationContext.compile(JspCompilationContext.java:511)
     org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:295)
     org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:292)
     org.apache.jasper.servlet.JspServlet.service(JspServlet.java:236)
     javax.servlet.http.HttpServlet.service(HttpServlet.java:802)if I extract the tld I then get this error:
javax.servlet.ServletException: Cannot find ActionMappings or ActionFormBeans collection
     org.apache.jasper.runtime.PageContextImpl.doHandlePageException(PageContextImpl.java:825)
     org.apache.jasper.runtime.PageContextImpl.handlePageException(PageContextImpl.java:758)
     org.apache.jsp.index_jsp._jspService(index_jsp.java:79)
     org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:94)
     javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
     org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:324)
     org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:292)
     org.apache.jasper.servlet.JspServlet.service(JspServlet.java:236)
     javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
root cause
javax.servlet.jsp.JspException: Cannot find ActionMappings or ActionFormBeans collection
     org.apache.struts.taglib.html.FormTag.lookup(FormTag.java:798)
     org.apache.struts.taglib.html.FormTag.doStartTag(FormTag.java:506)
     org.apache.jsp.index_jsp._jspx_meth_html_form_0(index_jsp.java:96)
     org.apache.jsp.index_jsp._jspService(index_jsp.java:66)
     org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:94)
     javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
     org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:324)
     org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:292)
     org.apache.jasper.servlet.JspServlet.service(JspServlet.java:236)
     javax.servlet.http.HttpServlet.service(HttpServlet.java:802)I think the problems are connected tomcat isn't seeing whats inside the struts jar? am I missing something in my DD?
<web-app>
     <!-- Tag Libraries -->
  <taglib>
    <taglib-uri>/WEB-INF/struts-html.tld</taglib-uri>
    <taglib-location>/WEB-INF/struts-html.tld</taglib-location>
   </taglib>
  <taglib>
    <taglib-uri>/WEB-INF/struts-beans.tld</taglib-uri>
    <taglib-location>/WEB-INF/struts-beans.tld</taglib-location>
  </taglib>
  <taglib>
    <taglib-uri>/WEB-INF/struts-logic.tld</taglib-uri>
    <taglib-location>/WEB-INF/struts-logic.tld</taglib-location>
  </taglib>
  <taglib>
    <taglib-uri>/WEB-INF/struts-tiles.tld</taglib-uri>
    <taglib-location>/WEB-INF/struts-tiles.tld</taglib-location>
  </taglib>
     <!-- Standard ActionServlet Configuration -->
  <servlet>
    <servlet-name>action</servlet-name>
    <servlet-class>
     org.apache.struts.action.ActionServlet
    </servlet-class>
    <init-param>
      <param-name>config</param-name>
      <param-value>/WEB-INF/struts-config.xml</param-value>
    </init-param>
    <load-on-startup>1</load-on-startup>
  </servlet>
     <!-- Standard ActionServlet Mapping -->
  <servlet-mapping>
    <servlet-name>action</servlet-name>
    <url-pattern>*.do</url-pattern>
  </servlet-mapping>
     <!-- Standard Welcom File List -->
  <welcome-file-list>
    <welcome-file>index.jsp</welcome-file>
  </welcome-file-list>
</web-app>any help is greatly appreciated
-Tad

Thanks, that seemed to do the trick for the first problem unfortunately I'm still getting the second error:
javax.servlet.ServletException: Cannot find ActionMappings or ActionFormBeans collection
     org.apache.jasper.runtime.PageContextImpl.doHandlePageException(PageContextImpl.java:825)
     org.apache.jasper.runtime.PageContextImpl.handlePageException(PageContextImpl.java:758)
     org.apache.jsp.index_jsp._jspService(index_jsp.java:80)
     org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:94)
     javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
     org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:324)
     org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:292)
     org.apache.jasper.servlet.JspServlet.service(JspServlet.java:236)
     javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
root cause
javax.servlet.jsp.JspException: Cannot find ActionMappings or ActionFormBeans collection
     org.apache.struts.taglib.html.FormTag.lookup(FormTag.java:798)
     org.apache.struts.taglib.html.FormTag.doStartTag(FormTag.java:506)
     org.apache.jsp.index_jsp._jspx_meth_html_form_0(index_jsp.java:97)
     org.apache.jsp.index_jsp._jspService(index_jsp.java:67)
     org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:94)
     javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
     org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:324)
     org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:292)
     org.apache.jasper.servlet.JspServlet.service(JspServlet.java:236)
     javax.servlet.http.HttpServlet.service(HttpServlet.java:802)-Tad

Similar Messages

  • When i look at how much hard drive space i have available, my mac says i have 250 gigs used up in backup.  I can not find this backup file to delete it and free up the space

    When i look at how much hard drive space i have available, my mac says i have 250 gigs used up in backup.  I can not find this backup file to delete it and free up the space

    OmniDiskSweeper is a free utility that checks HD space.
    FreeSpace cost $1 or is a free utility that checks HD space.
    SpaceControl is a free utility that checks HD space.

  • 8.2 will not find Panasonic raw files

    DNG converter will not find the RW2 files from my Panasonic camera.  It will not even convert files I alredy converted.   Any help would be appreciated.  Since it will not see the files, the convert option is not available.

    When using the DNG converter, just choose the FOLDER, but don't try to open that folder. Notice the prompt. It is asking for the folder, not the file.

  • EA Could Not Find The .html File Associated With...

    After naming folder names, I now get the "EA could not find the .html file associated with..." message when I open the .edge file. When I open the .an file, I have all elements and the timeline are gone! How can I restore it? Surely, it is just a question of changing a path, or? Please help. Thanks!

    From the File > Open menu, browse to the that same folder (the newly renamed one), and select the .html file.
    Darrell

  • Lightroom 5 - Update from 5.0 auf 5.7 does not work. When I try to do the online update I get a message the programm does not find an *.msi file.  Any ideas ?

    Lightroom has been installed on my Laptop with a DVD.
    In the Adobe Programm Folder on my harddrive I do not find a *.msi file.
    Any ideas ?

    Hello I was not sure where to find the right temp Folder. So I deinstalled the program and installed it again.
    But with the same negative effect.
    There are two ways for the update:
    1) Within Lightroom: search for newer Version.
    2) At the Adobe Website
    1) Did not work
    2) worked perfectly
    Thanks for your help

  • Exclamation mark and the message "itunes could not find your song file

    Hi everyone. I've tried doing a search but couldn't find this exact problem. I hope i'm not about to annoy everyone with a question that has been asked a thousand times before.
    my problem is that every now A/some song file(s).that are already in my itunes library and played fine and synced with iphones ipod app fine. well sometimes I get this little exclamation mark on A/some song(s) in the library and the message "itunes could not find your song file would you like to locate it" and when i do and it always seems to be in what itunes find box locates first anyway.......( I'm paraphrasing...........i forget exactly what it says)........the funny thing is when i try and locate the files for itunes they are exactly where they are supposed to be........ and i've been able to put the mp3 back into the itunes library in the past, but now a certain mp3 will not show up in itunes library or play. like i said I can locate it fine, i've never renamed any folders or mp3's. other mp3's in this folder play fine , but i've had exclamation marks on some of them in the past, it seems that i know of 2 folders in my music folder that always have this problem with the mp3's in them at ramdom .
    does anyone know why itunes is doing this?................it happens sometimes with downloaded music and sometimes with ripped music................sometimes a single track and sometimes just a few single tracks .........it's begining to become slighty annoying........
    any help would be most appreciated.

    Helpful but i was reading some posts and threads about consolidate library and it seems that if the song is not in the itunes library it will not consolidate it.i've had songs in the library that i deleted from the library and i remember getting a message when i do that action if i would like to delete it from the music folder as well ( in other words trash it completly from harddrive or do i just want to delete the song from the library and still keep it in the music folder but i guess those actions have little effect if you didn't have the song in itunes music folder,, but another folder. except for the part that it will remove the song from the library. if there was a way to consolidate your music folder(s) into the itunes folder that would be cool. and still leave your itunes library with out those songs you didn't want in there, but wanted to leave in the music folder.

  • Could not find the linked file

    I open a PDF to edit it in Adobe Illustrator and get several messages like this:
    Could not find the linked file "whatever.gif". Choose Repair to locate the missing
    file, Replace to select another file, or Ignore to leave the link unchanged.
    When I open that same PDF up in Adobe Acrobat Pro, however, all images display - even the ones that Adobe Illustrator seems to be trying to "link" to.
    If Adobe Acrobat Pro doesn't require the images be stored locally on the hard drive, why does Adobe Illustrator require it?

    PrepressPro1 wrote:
    It would seem Illustrator compatability was not checked when the PDF was saved.
    Actually it seems it was checked, and Illustrator is opening the AI portion of the file, which links to an external file. The PDF portion can only use embedded images, so that cannot be what Illustrator is reading.
    The PDF was saved from Illustrator with "Include Illustrator Editing Capability" turned on. This option saves the native AI file within the PDF so it can be edited with Illustrator. The drawback is that linked images need to be supplied as well, and in this case they were not. Acrobat ignores the AI portion of he file and only reads the PDF data, which contains an embedded copy of the image, which has probably been heavily modified from the original for embedding in the PDF. Expect the image to have some or all on these modifications: JPEG compression, downsampling, flattening, conversion from RGB to CMYK or from CMYK to RGB, cropping.
    Your best option is to ask the original file's supplier to send you the missing image. Illustrator's Links panel will tell you the file name. If that's not an option, open the PDF with Photoshop and select Images instead of Pages to open. Select the image from the thumbnails shown, open it, then save. Switch back to Illustrator and link to that image.

  • SiteMinder with Weblogic8.1: could not find 'smsecurityproviders.jar' file

    Hello All,
    I am trying to "Integrating SiteMinder with Weblogic 8.1" using follwing support pattern:
    https://support.bea.com/application_content/product_portlets/support_patterns/wls/UsingAndTroubleshootingWebLogicServerAndSiteMinderPattern.html
    In the support pattern, one step is to put "smsecurityproviders.jar" file in the "WL_HOME/server/lib/mbeantypes" directory but I could not find "smsecurityproviders.jar" file.
    Could somebody please tell me...where can I find this jar file and if I have to create this jar file ..what are the steps?
    Your help is much appreciated!
    Regards,
    Qumar
    Edited by qumar_tcs at 05/28/2008 2:51 AM
    Edited by qumar_tcs at 05/28/2008 2:51 AM
    Edited by qumar_tcs at 05/28/2008 2:53 AM

    Dear Patel,
    Thanks a lot for the reply!
    It would be very nice...if you could tell me the siteminder directory, where I can find this jar file...I searched a lot but could not find this jar file.
    if possible for you, please send me the jar file on my mail id:
    [email protected]
    Regards,
    Qumar

  • Why my spotlight can not find my personal files ? It can find them before but can not find them now,I want to know why?

    why my spotlight can not find my personal files ? It can find them before but can not find them now,I want to know why?

    From the menu bar, select
     ▹ System Preferences ▹ Spotlight ▹ Privacy
    The list of items excluded from Spotlight indexing is shown (it may be empty.) Click the plus (“+”) icon to add an item to the list. Select your boot volume (under DEVICES) and add it to the list. Then remove it from the list by selecting it and clicking the minus (“-“) icon.
    Spotlight will rebuild the index. If you try to do a Spotlight search now from the magnifying-glass icon in the top right corner of the display, a pulsing dot will appear in the icon. When the dot disappears, the indexing is complete.

  • Hi there, I have much files saved on pages ( ios ipad) , I just open it today and did not find .all the files !!!! Just 4!!! Taken in consider that I did not delete or making any wrong action. How I can return the lost files!!!! Help please

    Hi there, I have much files saved on pages ( ios ipad) , I just open it today and did not find .all the files !!!! Just 4!!! Taken in consider that I did not delete or making any wrong action. How I can return the lost files!!!! Help please
    its very important files!

    tis true
    I know, I always do that but I was in a rush to get somewhere and I was relying on my thousand dollar Mac to do some kind of recovery or something. I know Microsoft always keeps temporary files (I think Mac does too, part of me asking here in this forum was for someone to tell me where I can find those files) and when you go to open Office Works then it gives you the option of opening the last recent documents, saved or not saved.
    I usually copy paste into my emial just in case something goes wrong with the created document but I just didn't have the time to login and do all that My loss, you live and you learn, BUT still if ANYONE got any info on this, PLEASE DO CHIME IN *keeping the hope alive*

  • Facebook Like Button - Could not find the linked file ....

    Hi All,
    Hope everyone is ok!
    I have a question:
    I have downloaded the Facebook Like Button (https://www.facebookbrand.com/), in AI format, and, when I open it in Illustrator CS6 *trial version*, I get: "Could not find the linked file "likeicon_7-17a.ai". Choose Replace to select another file, or Ignore, to leave the link unchanged".
    If I click "Ignore", the file is displayed, without the "thumbs-up" icon.
    Why does it do this?
    The only "ai" file in the archive is the entire logo. There is no "likeicon_7-17a.ai".
    Here is the archive, if someone can tell me what is going, i would be happy!
    http://speedy.sh/D642Q/logos-and-badges-like-button-print-packaging-ai.zip
    Thanks!
    Chris
    P.S.: I apologize for the "weird" username, but, the forum software wouldnt allow any username I picked!
    Thanks again!
    Chris

    the file is constructed poorly.
    You could download the thumbsup.ai file and then simply copy/paste it to the like button file.

  • I CAN NOT FIND MY IWEB FILES SO THAT I CAN USE THE (SEO TOOL) HELP

    IM TRYING TO MAKE MY WEB SITE NOTICED ON SEARCH ENGINE...
    SO I DOWN LOADED THE SEO TOOL FROM MAC STORE
    THE TOOL IS ASKING ME TO OPEN IWEB FILES IN MY MAC AND COPY/PASTE TO PAGE
    BUT I CAN NOT FIND THE FILES SAVED IN MY MAC
    PLZ HELP
    <Link Edited By Host>

    WHY DO YOU SHOUT!!!
    Here's a tip :
    Publish to a folder. It's probably explained in the manual.
    Repeat : IN THE MANUAL
    Another tip.
    Write interesting content.
    Advertise.
    Make yourself known.
    Magic words : social media
    And provide a clickable link.
    Google indexes this forum in realtime and would have found your website in a hour or so.
    Missed opportunity.

  • New IPhone OS update wiped my contacts. iTunes is not finding my contacts file.

    I have read a few other posts where people have synced their phone to an empty contacts list. That is not the case with me. All my contacts are in my "contacts" program on my mac, but now when I sync through Itunes, it is not finding these contacts. Could the recent update of the Mac OS created a second, empty contacts file?

    Find the serial number and other information for your iPhone, iPad, and iPod touch - Apple Support

  • HT203288 Itunes can not find my music files. But I can with Windows . Lost over 8 hours trying to fix stupid itunes, Even removed it and reinstalled. Still nothing.

    But I can using Windows.
    Lost over 8 hours today. Still not working
    Even deleted itunes and reinstalled.
    My Music files are still there. But itunes can not find them.

    Empty library or library full of broken links?
    tt2

  • My program can not find the help file

    I just downloaded JavaHelp. I can run all the examples. However when I recompile using Forte, the Merge Example it can not find the "master.hs" file. I suspect that I have something configured wrong.
    I put all the help files in the same directory as the source code.

    The helpset hs file is specified relative to the class from which it is referred. If the class & hs are in the same dir
    URL hsUrl=HelpSet.findHelpSet(null, "master.hs");
    hs=new HelpSet(null, hsUrl);

Maybe you are looking for

  • Office 2013 - Incorrect Icons In Taskbar When Apps Running

    Hi, I have a a strange issue relating to Office 2013 (all apps in suite) in our school based Windows 7 domain environment. When students login and run any app from the office suite they launch correctly and are able to be used.  However the icon that

  • Displaying value only in Drop Down List

    Greetings, I have a drop down list with value:text as follows: 01:Daylight 02:Dusk 03:Dawn 04:Night I would like to present the user who clicks on the drop down list with all of the literal text options (daylight, night, etc), but once selected, the

  • Getting the error while submitting the job through the OEM

    I am trying to submit the job, but getting failed with the following VNI-2015 : The Node preferred credentials for the target node are either invalid or do not have sufficient privileges to complete the operation. On Windows platforms, the Node crede

  • Why does Cmd+\ stop working?

    I've been having trouble where a keyboard shortcut in an app - Cmd+\ - gets not response. Or rather it does work on first booting but at some point it stops working. The first thought was another app was grabbing the shortcut association, but I can't

  • Zrepert output in FM

    hellow experts, here i want to display the zreport output in Function Module. how to do this.pls help me. with regards babu