Calling Neone!!! Help me Out !! Simple Pblm But Soln not strking

Hi!
On the Browser window, I always find following exception printed along with my data. Could you pls help me Out...\
is this an application error or some pblm with OJVM??
java.lang.NullPointerException
java.lang.Object com.evermind[Oracle9iAS (9.0.3.0.0) Containers for J2EE].server.http.EvermindHttpSession.getValueFromMap(java.lang.String)
EvermindHttpSession.java:657
java.lang.Object com.evermind[Oracle9iAS (9.0.3.0.0) Containers for J2EE].server.http.EvermindHttpSession.getAttribute(java.lang.String)
EvermindHttpSession.java:151
java.lang.Object com.evermind[Oracle9iAS (9.0.3.0.0) Containers for J2EE].server.http.EvermindHttpSession.getValue(java.lang.String)
EvermindHttpSession.java:141
void Servlet.doGet(javax.servlet.http.HttpServletRequest, javax.servlet.http.HttpServletResponse)
Servlet.java:75
void oracle.ats.applicationservlet.ApplicationServlet.doPost(javax.servlet.http.HttpServletRequest, javax.servlet.http.HttpServletResponse)
ApplicationServlet.java:409
void javax.servlet.http.HttpServlet.service(javax.servlet.http.HttpServletRequest, javax.servlet.http.HttpServletResponse)
HttpServlet.java:760
void javax.servlet.http.HttpServlet.service(javax.servlet.ServletRequest, javax.servlet.ServletResponse)
HttpServlet.java:853
void com.evermind[Oracle9iAS (9.0.3.0.0) Containers for J2EE].server.http.ServletRequestDispatcher.invoke(javax.servlet.ServletRequest, javax.servlet.ServletResponse)
ServletRequestDispatcher.java:689
void com.evermind[Oracle9iAS (9.0.3.0.0) Containers for J2EE].server.http.ServletRequestDispatcher.forwardInternal(javax.servlet.ServletRequest, javax.servlet.http.HttpServletResponse)
ServletRequestDispatcher.java:306
boolean com.evermind[Oracle9iAS (9.0.3.0.0) Containers for J2EE].server.http.HttpRequestHandler.processRequest(com.evermind[Oracle9iAS (9.0.3.0.0) Containers for J2EE].server.ApplicationServerThread, com.evermind[Oracle9iAS (9.0.3.0.0) Containers for J2EE].server.http.EvermindHttpServletRequest, com.evermind[Oracle9iAS (9.0.3.0.0) Containers for J2EE].server.http.EvermindHttpServletResponse, java.io.InputStream, java.io.OutputStream, boolean)
HttpRequestHandler.java:767
void com.evermind[Oracle9iAS (9.0.3.0.0) Containers for J2EE].server.http.HttpRequestHandler.run(java.lang.Thread)
HttpRequestHandler.java:259
void com.evermind[Oracle9iAS (9.0.3.0.0) Containers for J2EE].server.http.HttpRequestHandler.run()
HttpRequestHandler.java:106
void EDU.oswego.cs.dl.util.concurrent.PooledExecutor$Worker.run()
PooledExecutor.java:803
void java.lang.Thread.run()
Thread.java:484

Is your servlet passing in a null to the getValue() method?
Try using our debugger to figure out what's going wrong.

Similar Messages

  • I selected restore factory settings on my ipod touch but now after restart it stuck on apple icon what will i do anybody help me out plz,even it's not appering on itunes on my p.c

    i selected restore factory settings on my ipod touch but now after restart it stuck on apple icon what will i do anybody help me out plz,even it's not appering on itunes on my p.c

    Try:
    - iOS: Not responding or does not turn on
    - If not successful and you can't fully turn the iPod fully off, let the battery fully drain. After charging for an least an hour try the above again.
    - If still not successful that indicates a hardware problem and an appointment at the Genius Bar of an Apple store is in order.

  • My iphone 4 is getting stuck during gaming when sim card is inserted. Call anyone help me out to solve this problem?

    My iphone 4 is getting stuck during gaming when sim card is inserted. Call anyone help me out to solve this problem?

    That doesn't make any sense to me at all, unless the games you're trying to play have some sort of online connection/capability and you're in a weak signal area, thus the games can't make the required online connection. What happens when you turn cellular data off in settings: Settings>General>Network>Cellular Data>Off.

  • I can't rate or write a review for app on the app store. It allows me to write out the review but does not diplay my review after sending it. Can anyone point me in the right direction to get answer as apply refuse to reply or solve my problem. Thanks

    I can't rate or write a review for app on the app store. It allows me to write out the review but does not diplay my review after sending it. Can anyone point me in the right direction to get answer as apply refuse to reply or solve my problem. Ps thanks apple for ur ignorance

    I have the same problem with another TeamLava app, Fashion Story.

  • Hi i just want request you people about one mobile banking app in app store called STATE BANK SECURE was available previously but its not there now so please bring back that app to app store as soon as possible please

    hi i just want request you people about one mobile banking app in app store called STATE BANK SECURE was available previously but its not there now so please bring back that app to app store as soon as possible please

    We can't do anything for you here.
    You have to write to the developer of the app and ask.
    They are the one making the app not Apple.

  • Currently i am outside country and using my family person sim but my iphone display shows unknown call it become difficult when i missed call please help me out

    currently i am outside country and using my family person sim but my iphone incoming call display shows unknown call it become difficult when i missed call please help me out

    We are all users here
    what exactly do want any one to do ?

  • Plz help me out!! Custom components not showed in JTabbedPane....

    Hi!!
    I am extending a JPanel and adding some components to it and finally when I create an object and add it to the JTAbbedPane its not being shown....If i do it disrectly on JPanel instead of my class its is being shown.can anybody...please help me out and tell where the problem is ...My code is as follows....
    public class TabColorExample extends JPanel {
    public TabColorExample() {
    setLayout(new BorderLayout());
    UIManager.put("TabbedPane.selected", Color.green);
    JTabbedPane tabbedPane = new JTabbedPane();
    String tabs[] = {"One", "Two", "Three", "Four"};
    Color[] colors = {null, Color.red, null, null};
    for (int i=0;i<tabs.length;i++) {
    tabbedPane.addTab(tabs, createPane(tabs[i]));
    tabbedPane.setBackgroundAt(i, colors[i]);
    tabbedPane.setSelectedIndex(0);
    add(tabbedPane, BorderLayout.CENTER);
    JPanel createPane(String s) {
    return new panel(s);
    public static void main(String[] args) {
    JFrame frame = new JFrame("Tab color Example");
    frame.addWindowListener( new WindowAdapter() {
    public void windowClosing( WindowEvent e ) {
    System.exit(0);
    frame.getContentPane().add( new TabColorExample() );
    frame.setSize( 200, 100 );
    frame.setVisible(true);
    class panel extends javax.swing.JPanel
         panel(String s)
              super();
              JPanel p = new JPanel();
              p.add(new JLabel(s));
    Thanx in advance...
    Krtrao

    Hi there,
    Having that string in a mapping of DSO when DSO will process the SIDs it doesn't like that string and therefore throws an error.
    You could for example transform that field in for example start routine or customer exit R/3 side, like for example split string with commas, and concatenate everything like this: 01,02,03 should retrieve 010203.
    Other option is to first create master data texts datasource for that field PDP and for each key retrieves a string, like this for example:
    010203 - text 01,02,03, or text MDTDWD
    than when you fill the DSO with that field aready fixed in the form 010203, you can in the query represent it with text, it should represent in the form 01,02,03 or MDTDWD, see the picture?
    You can do this kind of fixing of the filed 01,02,03 or in the start routine, or the transfer structure.
    And to only get those records with the field being there, just write in the start routine something like:
    DELETE <SOURCE_PACKAGE> where your_field is initial.
    Hope this helps,
    Diogo.

  • My touch just stopped playing as if out of power, but is not responding when plugged in

    My iPod touch just stopped playing as if out of power, but it is not responding when plugged in.  I've left it plugged in for about an hour and still nothing. I'm not sure how to reset. Any suggestions would be welcomed....

    Try here. If not successful, an appointment at the Genius Bar of anApple store is in order.
    iPod touch: Hardware troubleshooting

  • Cant get caller id to read out on BT, but reads text fine

    I just got a LG 260 bluetooth and it reads the text out fine. I have turned on the driving mode and have it set up to read phone calls but all it does is ring in my ear. I tried to go into phone, settings, then additional settings but I do not have the caller id stuff on that screen, only noise reduction. Anyone know how to fix this so it reads out the name of the person calling?

    Bryon,
    This would be a behaviour to expect if one inserts a blank CD, since the original iMac is not capable of (internally) burning discs.
    Otherwise, provided that the operating system is complete and contains the necessary helper files, the iMac should be able to see/read many CDs (at least the ones formatted Mac, hybrid or ISO9660). You may encounter difficulties with some home-burned discs (it is usually better to use CD-R than CD-RW).
    However, if you are trying to boot the iMac from a CD, that is another matter. A proper Mac system disc is needed. If you buy a new system CD, make sure that it is a generic/universal disc, not one intended for a certain (other) Mac model. Also, when starting from a CD, press the C key.
    Jan

  • What number can i call to help me out with my apple account ....

    how can i delate all data from ibooks

    Hi arnoldo137,
    Welcome to the Support Communities!
    The article below may be able to help you with this.
    Click on the link to see more details and screenshots. 
    How to delete content you've downloaded from the iTunes Store, App Store, iBooks Store, or Mac App Store
    http://support.apple.com/kb/HT5772
    Books
    Open the section below for the device you are using.
    iPhone, iPad, or iPod touch
    Before you delete, find out if you'll be able to download the book you deleted again (it depends on where you live). To delete a book:
    Tap the iBooks app.
    View your Purchased Books collection.
    Tap Edit.
    Tap any books you want to delete.
    Tap Delete.
    You'll have the option to delete your book on all your devices.
    More ways to get help:
    Contact iTunes Store support
    U.S. iPod, Mac and iPad technical support:
    (800) APL-CARE (800-275-2273)
    Cheers,
    - Judy

  • HT3964 Urgent Help needed! iMac starts but will not respond

    Last night I was dragging photos onto a disc and accidentally (I have no idea how!) dropped 6500 photos onto the desktop. This would take an agr towait for so I rebooted the Mac. Since then it has not responded at all. I have rebooted several time and left it overnight but I think its Ram is not able to cope with it all. I can get it powered up and all the icons appear but not desktop items appears and I cannot open anything. It is as if the computer is frozen. Please help as I have one day to sort these photo discs out to present to my step daughter for her 21st! It's pandemonium here!
    Thanks for any help.

    Oh yes, files on the Desktop consume far more resources,as each one is a special Qurtz window... LOL.
    Do you have another admin account you can log into?
    If so try a Safe Boot from the HD, (holding Shift key down at bootup), if not...
    Reset OS X Password Without an OS X CD...
    http://theappleblog.com/2008/06/22/reset-os-x-password-without-an-os-x-cd/
    Admin Hack...
    http://www.hackmac.org/?q=node/4
    Starts up like the first time you buy a new Mac, but after filling in all that info again, you should have access to the computer and the other Users & files will still be there... give the new User a different name than an existing one.

  • I'm new to Mac, I recently downloaed steam for my husbands football manager game, having run ok for a few weeks it will no longer allow him to start up his game.I got help once it worked once but will not again....help please!!

    We're retired,new to IMac, I downloaded Steam for my husbands football manager 2011.It ran successfully for few weeks, but now will not allow him to start up his game.I got help from the mac team and it worked for one day but again has the same fault....help please

    Your download or install of the update may have been corrupt. Visit the Mac App Store and re-download the update or visit http://support.apple.com/kb/DL1726 and download the 10.9.2 update combo and re-install.
    If that fails to solve the problem please post back and post a EtreCheck Report which you can locate at:
    http://www.etresoft.com/etrecheck

  • Help. My site published but is not saved in iWeb

    I am completely flummoxed. I put together a one-page site yesterday and published it to Mobile Me fine. But when I went into iWeb today to make some changes the finished, published version of the site is not there. All I have is the original template from before I started work on it.
    How come it hasn't saved into iWeb on publication?
    And how do I get the finished version of the site back into iWeb so I can edit it?
    Thanks
    Sarah

    First, download  Find Any File  and use it to search for "domain.sites" to see if there are more than one domain file.
    If there is try the other to see if it contains your site.  If there is no other domain file but the one in your Users/Home/Library/Application Support/iWeb folder, try the following:
    delete the iWeb preference file, com.apple.iWeb.plist, that resides in your Home()/Library/Preferences folder.
    go to your Home()/Library/Caches/com.apple.iWeb folder and delete its contents.
    launch iWeb and try again.
    If that doesn't help continue with:
    move the domain file from your Home/Library/Application Support/iWeb folder to the Desktop.
    launch iWeb, create a new test site, save the new domain file and close iWeb.
    go to the your Home/Library/Application Support/iWeb folder and delete the new domain file.
    move your original domain file from the Desktop to the iWeb folder.
    launch iWeb and try again.
    OT

  • Help, Connected To The Router, But Still Not Connecting To Internet

    We bought a router and a wireless adapter a few years ago, I moved out and then moved back. I tried to connect to the network we setup in the first place, but it didn't work and I was told that I had to reset the router, so I did, and I setup a new network, and the computer with the router is working fine, but the computer with the adapter, even after I ran the setup disk on it again, all it does is connect to the router, but I'm still not getting the internet. If anyone has any ideas on how I can remedy this problem I would really appreciate it if you would share it with me.  Thank you.
    Adapter Model # - WUSB54GC
    Router Model # - WRT54G2

    Try and download the driver for the adapter again. It can be found here.
    Also for the router, that can be found here.

  • HELP! I can recieve but can not send E-MAIL

    I am connected to microsoft exchange server. All other connections are able to send and receive e-mail except my Blackberry 8330.
    I check my desktop manager everything looks OK can't figure out what it is blocking the outgoing e-mail from the unit. Outgoing and Incoming text messeging working just fine. I would really appreciate any help on this. I have been trying to resolve this issue. Julius
    I am currently using Redirector, if that help. THANK YOU VERY MUCH.
    Message Edited by juliusblackbery on 09-17-2008 03:24 PM
    Message Edited by juliusblackbery on 09-17-2008 03:25 PM

    Are you on a BES or are you using Redirector?
    1. Please thank those who help you by clicking the "Like" button at the bottom of the post that helped you.
    2. If your issue has been solved, please resolve it by marking the post "Solution?" which solved it for you!

Maybe you are looking for