Why I keep getting this exception?

I try to introduce JSTL into my current work. I keep getting the following error
The absolute uri: http://java.sun.com/jsp/jstl/core cannot be resolved in either web.xml or the jar files deployed with this applicationAfter searching this issue on the internet, I place the standard jstl 1.1.2 in our library direction under the WEB-INF. It doesn't go away however. The container is WebSphara Community Edition with jdb 1.5.
What is missing here?

What version of Websphere?
What servlet spec does it support? You can find out with this JSP snippet:
Working with server: <%= application.getServerInfo() %><br>
Servlet Specification: <%= application.getMajorVersion() %>.<%= application.getMinorVersion() %> <br>
JSP version: <%= JspFactory.getDefaultFactory().getEngineInfo().getSpecificationVersion() %><br>
Java Version: <%= System.getProperty("java.version") %><br>You have the files
- jstl.jar
- standard.jar
both in the WEB-INF/lib directory?
Restarted the server?
Are you sure it is JSTL1.1.2?
Open the file standard.jar in something like winzip.
Take a look at the manifest.mf file to check version.
Does standard.jar contain all the necessary tld files? c.tld - c-1_0.tld, c1_0-rt.tld

Similar Messages

  • Why  i always get this exception

    i have one table and i use custom renderer to format the number value inside the table to 2 decimal points and when user click on a particular cell it will pop up a dialog also with a table and display detail value correspond to the value that user click, but the problem is i always get this exception anyone knows why?
    java.lang.ArrayIndexOutOfBoundsException: 3 >= 3
         at java.util.Vector.elementAt(Vector.java:431)
         at javax.swing.table.DefaultTableModel.getValueAt(DefaultTableModel.java:618)
         at net.devicesworld.common.ui.SortableTableModel.getValueAt(SortableTableModel.java:56)
         at javax.swing.JTable.getValueAt(JTable.java:1771)
         at javax.swing.JTable.prepareRenderer(JTable.java:3724)
         at javax.swing.plaf.basic.BasicTableUI.paintCell(BasicTableUI.java:1149)
         at javax.swing.plaf.basic.BasicTableUI.paintCells(BasicTableUI.java:1051)
         at javax.swing.plaf.basic.BasicTableUI.paint(BasicTableUI.java:974)
         at javax.swing.plaf.ComponentUI.update(ComponentUI.java:142)
         at javax.swing.JComponent.paintComponent(JComponent.java:541)
         at javax.swing.JComponent.paint(JComponent.java:808)
         at javax.swing.JComponent.paintWithOffscreenBuffer(JComponent.java:4795)
         at javax.swing.JComponent.paintDoubleBuffered(JComponent.java:4748)
         at javax.swing.JComponent._paintImmediately(JComponent.java:4692)
         at javax.swing.JComponent.paintImmediately(JComponent.java:4495)
         at javax.swing.RepaintManager.paintDirtyRegions(RepaintManager.java:410)
         at javax.swing.SystemEventQueueUtilities$ComponentWorkRequest.run(SystemEventQueueUtilities.java:117)
         at java.awt.event.InvocationEvent.dispatch(InvocationEvent.java:178)
         at java.awt.EventQueue.dispatchEvent(EventQueue.java:454)
         at java.awt.EventDispatchThread.pumpOneEventForHierarchy(EventDispatchThread.java:201)
         at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:151)
         at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:145)
         at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:137)
         at java.awt.EventDispatchThread.run(EventDispatchThread.java:100)

    actually i already check for the row and column index this is what i do for the getvalueat method inside the table model
    public Object getValueAt(int row, int col) {
    int rowIndex = row;
    if (indexes != null && row < indexes.length && row >=0) {
    rowIndex = indexes[row];
    if(rowIndex < 0){
    return null;//super.getValueAt(0, col);
    }else if(rowIndex >= super.getRowCount()){
    return super.getValueAt(getRowCount() - 1, col);
    }else if(col >= super.getColumnCount()){
    return super.getValueAt(rowIndex, super.getColumnCount()-1);
    }else
    return super.getValueAt(rowIndex >= getRowCount() ? getRowCount() - 1 :
    rowIndex,
    col >= getColumnCount() ? getColumnCount() - 1 :
    col);
    }

  • Why do i get this exception?

    Hi,
    i have a CompanyVO class, wich also has members such AddressVO, UserVO. As you can see, i have some other value objects inside CompanyVO.
    When i do this:
    CompanyVO companyVO = new CompanyVO();
    BeanUtils.copyProperties(companyVO, customCompanyVO);CustomCompanyVO is an object that has only "direct" properties of CompanyVO, stuff like companyName, companyID, companyType (basically all of them are String).
    But when i do this.
    CompanyVO companyVO = new CompanyVO();
    BeanUtils.copyProperties(companyVO, customCompanyVO);
    BeanUtils.copyProperties(companyVO.getAddressVO(), addressVO);I get the following excetion just on the third line (note the addressVO contain the values to be transfered to AddressVO, wich a VO inside the CompanyVO, as i said).
    java.lang.IllegalArgumentException: No destination bean specified
    at org.apache.commons.beanutils.BeanUtils.copyProperties(BeanUtils.java:220)
    at ltcmelo.session.RegisterCompanyBean.saveCompanyAddressInfo(RegisterCompanyBean.java:157)
    So, if i already initialize the companyVO doesn't the addressVO and the userVO memers have to be initialized too ???
    This way i'm force to do such thing.
    CompanyVO companyVO = new CompanyVO();
    BeanUtils.copyProperties(companyVO, customCompanyVO);
    AddressVO auxAddressVO = new AddressVO();
    BeanUtils.copyProperties(auxAddressVO, addressVO);
    companyVO.setAddressVO(auxAddressVO);Is there a better option????

    No, no, no....
    There's a misunderstanting here! Sorry, it's my fault!
    addressVO is already initialized and populated with data.
    BUT, the addressVO that is a member of companyVO is NOT !!!
    Using BeanUtils, i'm trying to populate what's FROM addressVO (wich contains data) TO companyVO.getAddressVO (wich has not been initializes).
    So, i thought the i could initialize companyVO.getAddressVO in the way, but as i get the exception, it seems that it's not possible.
    My question is WHY is it not possible??? It seems ok to me to copy addressVO to companyVO.getAddressVO in that way.

  • Why am I getting this exception???

    Every once in a while I get the following exception when starting my app, and I can't figure out why... Why??
    java.lang.NullPointerException
         at javax.swing.SwingUtilities.computeIntersection(SwingUtilities.java:369)
         at javax.swing.RepaintManager.paintDirtyRegions(RepaintManager.java:404)
         at javax.swing.SystemEventQueueUtilities$ComponentWorkRequest.run(SystemEventQueueUtilities.java:117)
         at java.awt.event.InvocationEvent.dispatch(InvocationEvent.java:178)
         at java.awt.EventQueue.dispatchEvent(EventQueue.java:454)
         at java.awt.EventDispatchThread.pumpOneEventForHierarchy(EventDispatchThread.java:201)
         at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:151)
         at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:145)
         at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:137)
         at java.awt.EventDispatchThread.run(EventDispatchThread.java:100)

    This is actually a very hard question. Swing is designed to be fast so it is not thread safe. That means if you do something to a swing component while its being painted, you get this type of exception. Notice how it does not mention your own code anywhere in the stack trace. The "Event Dispatcher Thread' is trying to paint something and you are probably changing its size, setting its visibility to false, removing it form its container, moving it, changing the data in its model, etc. Your code is doing something to the component at the exact moment its being painted, and this exception is thrown.
    There are two general strategies for dealing with this problem:
    1) When you modify swing components, use SwingUtilities.invokeLater() to make the event dispatcher thread do the work.
    2) Do your work in a synchronized block, something that looks like this (say you are removing rows from a table):
    synchronized ( table.getTreeLock() ) {
      // do work here...
    }Either of these strategies will prevent this type of error from happening. It's a tought problem, since it can happen anywhere, is usually hard to reproduce, and difficult to verify it's actually fixed.

  • Can any one explain why I keep getting this message?

    Hello I keep getting the following poping up in a box headed Adobe Flash Player 10.2.153.1:
    Security Error: Error#2000: No Security context.
    It gives me two options. 1. to Dismiss All and the 2nd to continue.
    Can anyone please explain why it maybe crashing my browser.
    Thanks.
    Matt

    It calls it an ActionScript Error.

  • Why do I keep getting, this mp4 "was not copied to your ipod because it cannot be played on this ipod"?

    Why do I keep getting, this mp4 "was not copied to your ipod because it cannot be played on this ipod"?

    See:
    iTunes: Frequently asked questions about viewing and syncing videos
    iTunes: May be unable to transfer videos to iPhone, iPad, or iPod

  • Why i keep getting the message application could not be downloaded at this time on  ipad2

    Why I keep getting message application could not be downloaded at this time, for applications purchased for the app store. I have tried resetting my ipad and that did not work, so now I have all this apps that I have purchased but will not download.

    Hello tay19
    Check out the articles below to troubleshoot updating your iPad. You may be having an issue with a firewall or other security software preventing iTunes from communicating with the update server.
    iOS: Resolving update and restore alert messages
    http://support.apple.com/kb/TS1275
    iTunes: Specific update-and-restore error messages and advanced troubleshooting
    http://support.apple.com/kb/TS3694
    Thanks for using Apple Support Communities.
    Regards,
    -Norm G.

  • HT3775 I am not able to convert movies, keep getting this message The document "The Walking Dead Trailer - YouTube-2.mp4" could not be opened. The movie's file format isn't recognized. not sure why, anybody know

    I am not able to convert movies, keep getting this message The document “The Walking Dead Trailer - YouTube-2.mp4” could not be opened. The movie's file format isn't recognized. not sure why, anybody know

    Sounds like someone ripped the movie off of YouTube and it got corrupted in the process. Try getting the movie file again, or try using an alternative movie player such as VLC: http://www.videolan.org

  • I have attempted to update OS X 10.8.4 and keep getting this error message...The operation was cancelled.(3072) Anyone know why?

    I have attempted to update OS X 10.8.4 and keep getting this error message...The operation was cancelled.(3072) Anyone know why?

    You're trying to update an application that's running, perhaps in another account. Make sure you quit all apps that are to be updated. If another user is logged in under Fast User Switching or Screen Sharing, he or she must do the same.

  • The name of your computer "Alpha (3376)" is already in use on this network. The name has been changed to "Alpha (6759)".  Why do I keep getting this message?

    I keep getting this message every time I log in.  Why?   I have an iMac with sharing on for my networked printer and to share file between the iMac and my MacBook.  Can anyone help?

    This is an annoying but not disastrous thing. Your computer sends messages on your home network and each message includes its name. If your computer is restarted or if it goes to sleep and wakes up all those messages should now gone but sometimes when the computer reconnects to the network it picks up a message with its name in it. Your computer doesn't realize its an old message from itself, it thinks the message is from a computer with the same name and that's not permitted so your computer's name is automatically changed.
    Temporary solution (or not): turn everything off - your computers, printers, internet modem and router; any and all devices that are connected to your network. Then restart them. I hear about this issue all the time and this solution has been temporary for some people (days, weeks, or months) and for others it has seemingly solved it totally.

  • HT201109 Why am I getting this message when I am signed in with the account that I purchased it I don't have another account I'm not sure what's going on here's the message I keep getting my:"To update this application sign into the account you used to pu

    I am trying to update my Final Cut Pro X which I have done many times before.
    Why am I getting this message now?
    --- here's the message I keep getting every time I  try to download the update--
    "To update this application sign into the account you used to purchase it"
    I am signed in with the account that I purchased it I don't have another account I'm not sure what's going on

    Open up iTunes. Go to Store. Go to Account and sign in. Click on Purchase History. Find your purchase record.
    Good luck
    Russ

  • Why do I keep getting this message - it is simply not true. 'You are signed in with a different Apple ID than previously used with Podcasts. Do you want to sync these podcast subscriptions and stations?

    Why do I keep getting this message - it is simply not true. 'You are signed in with a different Apple ID than previously used with Podcasts. Do you want to sync these podcast subscriptions and stations?
    <Email Edited by Host>

    Please sign out of the iTunes Store by selecting
              Store ▹ Sign Out
    from the iTunes menu bar. Then sign back in.

  • Why do i keep getting this message when trying to view a movie: The shared library "iCloud Purchases" is not accepting connections at this time. Please try again later.

    why do i keep getting this message when trying to view a movie: The shared library “iCloud Purchases” is not accepting connections at this time. Please try again later.

    Same issue. What are they doing?
    Macbook Pro Retina Yosemite 10.10.2

  • Icloud keeps giving this error "You cant sign in because of a server error" why do i keep getting this?

    I am trying to fix an outlook cal sync issue which requires me to sign into icloud. I get this error every time I try. "You cant sign in because of a server error" why do i keep getting this?

    I have used the solution below to fix mine and others that have run into this issue.
    Start --> Programs --> Accessories (Right Click on Command Prompt) --> Run as Administrator
    then type in:  "Netsh winsock reset"  (-without the quotes-)
    Hit enter, restart PC, iCloud For PC should now connect without any server errors
    (This solutions will work in some instances when trying to fix errors associated when you are unable to connect to iTunes also.)

  • HT201514 I keep getting this message "Unable to complete back up an error has occurred while creating back up folder" Why is this happening and is it time to purchase a new tim machine?

    I keep getting this message “Unable to complete back up an error has occurred while creating back up folder” Why is this happening and is it time to purchase a new tim machine?

    Check out the Apple Support Communities Time Machine expert Pondini's troubleshooting article on this exact topic. Hopefully, it will help.

Maybe you are looking for

  • Upgrade to Unlimited BT Infinity 1: post-order iss...

    A little earlier I accepted an emailed BT offer to upgrade from the Infinity package I have with a monthly limit, to Unlimited BT Infinity 1. Went through the online process, upgrade was confirmed online and now I have two issues. (1) The emailed off

  • Be Careful, Found out Verizon Edge is Deceptive

    The information contained in this thread is true and there is no deviation from the truth.  Has anyone else experienced this? This letter is to notify you about a problem I am experiencing with my xxx-xxx-xxxx line, which has no come to a resolution.

  • I have CS6 and my PS 3D menu is completely grey, how can i fix this?

    Adobe Photoshop Version: 13.0.6 (13.0.6 20131025.r.54 2013/10/25:21:00:00) x64 Operating System: Mac OS 10.9.2 System architecture: Intel CPU Family:6, Model:42, Stepping:7 with MMX, SSE Integer, SSE FP, SSE2, SSE3, SSE4.1, SSE4.2 Physical processor

  • HT1459 unlock button does not slide

    How to fix?

  • Hand-me-down iPods

    Hey, I have a shuffle right now with the lower amount of storage space on it. It's named and has all my songs on it. I want to upgrade to the shuffle with more memory on it. Is it possible to give my current shuffle to someone else and they would be