Browser or jre problem, i need help asap

hi
One ofmy jsp page calls an applet(and inturn applet calls another servlet). this applet runs in jre1.3.1 also
My Question is y my browser is not able to load this applet even though my java console shows my jre version as 1.4.0 ???
when load the jsp in my browser the java console threw this error,
but the same jsp is running on other browsers.
Java(TM) Plug-in: Version 1.4.0
Using JRE version 1.4.0 Java HotSpot(TM) Client VM
User home directory = C:\Documents and Settings\vetrikkumaran.am
c: clear console window
f: finalize objects on finalization queue
g: garbage collect
h: display this help message
l: dump classloader list
m: print memory usage
o: trigger logging
p: reload proxy configuration
q: hide console
r: reload policy configuration
s: dump system properties
t: dump thread list
x: clear classloader cache
0-5: set trace level to <n>
load: class com.login.action.ServletInvoker.class not found.
java.lang.ClassNotFoundException: com.login.action.ServletInvoker.class
     at sun.applet.AppletClassLoader.findClass(AppletClassLoader.java:151)
     at sun.plugin.security.PluginClassLoader.findClass(PluginClassLoader.java:189)
     at java.lang.ClassLoader.loadClass(ClassLoader.java:306)
     at sun.applet.AppletClassLoader.loadClass(AppletClassLoader.java:112)
     at java.lang.ClassLoader.loadClass(ClassLoader.java:262)
     at sun.applet.AppletClassLoader.loadCode(AppletClassLoader.java:478)
     at sun.applet.AppletPanel.createApplet(AppletPanel.java:548)
     at sun.plugin.AppletViewer.createApplet(AppletViewer.java:1621)
     at sun.applet.AppletPanel.runLoader(AppletPanel.java:477)
     at sun.applet.AppletPanel.run(AppletPanel.java:290)
     at java.lang.Thread.run(Thread.java:536)
Caused by: java.io.IOException: open HTTP connection failed.
     at sun.applet.AppletClassLoader.getBytes(AppletClassLoader.java:224)
     at sun.applet.AppletClassLoader.access$100(AppletClassLoader.java:40)
     at sun.applet.AppletClassLoader$1.run(AppletClassLoader.java:141)
     at java.security.AccessController.doPrivileged(Native Method)
     at sun.applet.AppletClassLoader.findClass(AppletClassLoader.java:138)
     ... 10 more

Hey, first ease up on the 'Post' button :D
The error seems to be here:
com.login.action.ServletInvoker.class  Perhaps you are missing this class ?

Similar Messages

  • Lenovo B560 Battery problem! Need help asap

    Hi, I have a big problem with my Lenovo B560.
    Recently I started noticing the charging icon in the bottom right corner of the screen would go briefly from "charging" to the icon for "not plugged" (just the battery). If I moved the power cord a bit it would go back to normal.
    Days later it happened again but this time a little more persistent. I didn't give it much attention. And then suddenly, last weekend it stopped charging altogether, despite being plugged. I tried different power sources, I tried moving the cable around, nothing. With the little time I had left before it completely discharged, I googled the problem and saw somebody in a thread saying "it's likely tha battery, it needs replacement", which made sense to me, since my laptop is 3-years old. 
    I ordered a replacement battery and waited. Today it arrived and I put it in, eager to use my computer and have everything going back to normal. I turned on the computer, battery was at 50% but it still did not charge. It showed the battery icon like before, as if it weren't plugged in. I moved the cable around again and noticed it would briefly flash back to being plugged. And then it stabilized on "plugged in, not charging" but it was suddenly at 3%. However, at least it didn't go down this time. 
    I tried reinstalling the Power Management Driver, restarted, everything was the same. Then I went to Device Management, I disabled the Driver and the icon dissapeared. Restarted, reinstalled driver once more, icon was still gone.
    Then I noticed in another thread somebody recommended taking out the battery and turning on the computer with just the power cord plugged in. So I took out the new battery and turned it on with just the power cord. And it worked, and that brings us to the present moment. Both batteries sit next to me and my computer is currently working simply on the power that is supplied by the power cord. 
    Can anyone please tell me how to get out of this mess? My job relies greatly on this computer working, and I need to fix it asap. Any kind of advice is welcome. Thank you!

    Update: the computer will not turn on anymore, not even with just the AC cord and no battery. Please help.

  • Applet problem, i need help asap

    ive downloaded javasmsaoi , it is capable of sending sms.
    it uses the javax.com package. ive tested it and tried it also it works...
    it is able to send sms to another mobile fone...
    but the problem is i need to integrate it with an applet...
    the applet is working fine...
    but when i try to include the lines that initiallize a new object from the javasmsapi it all goes wrong.. i mean the aplley recieves error...
    here is the code that creates the applet;
    import java.applet.*;
    import java.awt.event.*;
    import java.awt.*;
    import java.lang.*;
    import java.io.*;
    import java.util.BitSet;
    import javax.comm.*;
    public class Wavecom extends Applet implements ActionListener{
    TextArea txtArea;
    TextField nameField;
    TextField testing;
    Button send;
    Panel a;
    Panel b;
    Panel c;
    String retStr = new String("");
    String sss = new String();
    public void init(){
         Panel a = new Panel();
         add(a);
    txtArea = new TextArea(5,30);
    testing = new TextField("dito lslaaaa",30);
    txtArea.setEditable(true);
    testing.setEditable(true);
    a.add(txtArea,"center");
    a.add(testing,"center");
    Panel b = new Panel();
    add(b);
    nameField = new TextField("number here",30);
    b.add(nameField);
    Panel c = new Panel();
    add(c);
    send = new Button("send");
    c.add(send);
    send.addActionListener(this);
    public void actionPerformed(ActionEvent e){
         if(e.getSource() == send){
              String number = " ";
              String temp = " ";
              temp = txtArea.getText();
              nameField.setText(temp);
    System.out.println("ok,nakapasok ako sa loob");
              Ryan test = new Ryan();
    System.out.println(test.ryan());
    System.out.println(test.nayr());
    ///this is the part the inatantiate a new object it is als the part that makes it all /////go wrong....
    ComputeSmsData sms = new ComputeSmsData();
    SerialToGsm stg = new SerialToGsm("COM1");
    String retStr = new String("");
    String sss = new String();
    String alarmNumber = new String("09198378689"); // a real phone
    // send a message
    sss = stg.sendSms(alarmNumber,"Hello GSM World");
    System.out.println(sss);
    i dont know what seems to be the problem...
    i run it on the commandline using appltviewer and it recievs error..
    the serial to gsm class uses the javax.comm package.
    im using J2se
    tnx..
    hope somebody will be able to answer this problem
    asap...

    Hi Seema,
    First do a search for Dates and DateFormat on the Sun site. There was a question of the work which explained all the differences quite clearly.
    As I understand it a Date Object is an instance in time: the number of milliseconds that have elapsed since January 1st 1970 till the time you requested the Date object.
    You then cast this object to a Gregorian Calendar object if you want the formats to be in a form that a human prefers. This sounds more complicated then it is. The API documentation for Date, Calendar, and GregorianCalendar have useful information.
    Dan.

  • Email problems. Need help ASAP

    I tried to send a email to my friend and an error occrued and ever since the same email pops up in my draft but I am not able to recieve my email in my inbox and it says it has timed out on port 993. How do I resolve this problem?

    In mail, click window on the menu bar and connection doctor. If there is a connection that isn't working, there will be a red dot next to it. Click to the right of the dot and it should take you to where you need to fix an issue. Ensure that, for example, your ports are what your email service expects  you to use.

  • PROBLEM CAPTURING NEED HELP ASAP

    Hey when I am trying to capture it is telling me my scratch disks are full. Where do I go to clear them and how do I do it, i've tried all I can think of and now I dont know what to do....

    Your scratch disk is a folder on your hard drive where Final Cut keeps your source media. The folder can't get full, but the hard drive it's a part of can. You should delete some things from your hard drive or set your scratch disk to a different drive. (Final Cut-->System settings)

  • Objects outside of workspace show in SWF... Need help ASAP!

    When I export a flash movie (.swf file)And play it on full screen, the objects that are outside of the workspace show. Can anyone tell me how to fish this problem? need help ASAP! Thanks :]

    If what follows isn't sufficient for you to figure out, you'll have to spend some time learning how to work with Flash.  While you'll often get help solving problems in these forums, it's less likely you will get tutoring services.  Google is a very good resource for tutorials.
    To create a mask you draw a shape to the size you want and place it on a layer above all the content you want to mask.  A mask is actually not well named because masks normally hide things, while in the graphics world, masks define the are where things are shown... so when you apply a mask to something, only what is under the mask shows.  To finalize, you right click on the label area of the mask's layer and select Mask from the menu that appears.  You may have to drag lower layers up towards the mask layer to get them included, whicxh is why I mentioned creating the rest of the content as a movieclip (a single layer object).
    To control the visibility of objects you set their visibility to true or false (AS2: mcName._visible = true (or false),  AS3:mcName.visible = true (or false)).
    To create a frame around the stage, add a new layer atop everything and draw a rectangle big enough to hide all the content you don't want showing that is off the stage.  Then draw a rectangle that is the same size as the stage on top of that first rectangle, placing it over the stage, and then deselect anything that is selected.  Then reselect the smaller rectangle you just drew and delete it.  The larger rectangle is now framing your stage.

  • Need help ASAP...iPhone activation problems

    Today i bought two verizon iPhones from the apple store. I activated one just fine but I'm having problems with the other one. I used the upgrade for one of my lines on the account to purchase the other phone. I actually bought this for a friend who will use the iPhone on her own personal account. When I went to the apple store they "activated" the phone but didn't hook it up to the computer for iTunes or anything. Are there any steps I need to take before I give the phone to her so she can have a smooth transition in activating the phone because she lives in another state than I do? Do I have to hook the phone up to iTunes and activate it on my line or no? then switch back to old phone? Phone has never been hooked up to the computer. Need help ASAP please.

    What kind of problems?

  • Need Help ASAP!!! So FRUSTRATING!!! text message problems!!!

    I have 2 problems right now with my BB Torch 9810. I need help ASAP.
    1. It only saves 20 text messages. Messages that I received from august 2012. But it seems other messages are not stored. I don't delete messages, so I don't know where my other messages go. And sometimes if you create a new text, text history will show. But not anymore. This have been going on for a long time. 
    2. When I receive text message from some of my contacts, it will show the first few words of the text. But when you click on it, the message is empty. funny thing is, not all of my contacts are like this. 

    Hey iragarcia,
    Welcome to the BlackBerry Support Community Forums.
    Thanks for the question.
    I would suggest performing the following to resolve the issue: 
    1. Create a backup of all your data by using BlackBerry Desktop Software.  In BlackBerry Desktop Software go to Device>Backup and save the file onto your PC or Mac.
    2. On the BlackBerry Torch 9810 smartphone go to Options>Security>Security Wipe and put a checkmark beside 3rd party applications as well.  Type in the word BlackBerry and press wipe data.
    Please Note: You can re-install your applications through BlackBerry World.
    3. Once completed test sending and receiving some SMS messages prior to restoring any data.  If the issue is resolved, then go into BlackBerry Desktop Software and go to Device>Restore and choose custom and only choose contacts.
    Let me know if you have any more questions.
    Cheers.
    -ViciousFerret
    Come follow your BlackBerry Technical Team on Twitter! @BlackBerryHelp
    Be sure to click Like! for those who have helped you.
    Click  Accept as Solution for posts that have solved your issue(s)!

  • My Curve 9300 lost service need help ASAP

    I lost all serivce on my blackberry curve 9300 and the only way I get service is if I go outside my house. Sometimes I get service in my house but it's for 5 seconds and then I get "searching for network" then it goes to "SOS" I need help ASAP.

    yankeegirl32491 wrote:
    My carrier won't do anything about it because I'm not an authorized user of the account which is stupid. I wasn't having a problem with service for about a year and yesterday my service just cuts out for no apparent reason.
    Hello...well, that's a bit disconcerting...aiding and abetting what could be an unethical use of service...but I'm hopeful that there are further details that mitigate that suspicion. In any event, review this KB for perhaps helpful information:
    KB03448 Network status indicator shows "SOS" on the BlackBerry smartphone
    It is possible that they have a tower out, and you now are receiving service from a more distant tower, which does not have adequate signal strength to work through the walls of your house. But, sadly, there is no way for you to actually find out if such is the case or not.
    Good luck!
    Occam's Razor nearly always applies when troubleshooting technology issues!
    If anyone has been helpful to you, please show your appreciation by clicking the button inside of their post. Please click here and read, along with the threads to which it links, for helpful information to guide you as you proceed. I always recommend that you treat your BlackBerry like any other computing device, including using a regular backup schedule...click here for an article with instructions.
    Join our BBM Channels
    BSCF General Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • Premiere Pro CS6 keeps crashing when exporting h.264 (NEED HELP ASAP!)

    Alright, so I have a video that I've probably rendered around 30 times now and it ALWAYS ends up either freezing up, and then Premiere stops working, or it just stops working.
    I have a YouTube channel and I'm going away for 2 days tomorrow and I really need to get my videos up online, but I just can't render them! Does anyone know how to fix this? I really need help ASAP!
    Here are my export settings.
    http://imgur.com/ZgAuI4a,OMz4FEd,B8gjHws

    While there are "some" Adobe employees who read/post here, this is primarily a user to user forum... NOT Adobe support
    You are simply going to have to wait for someone to read your message, and look at your settings, and reply... IF that person has an idea (20 minutes is really not much time)
    While you wait for someone to reply with ideas, some reading about your freezing problem... and questions to help people help you
    1st, what are you editing?
    Codec & Format information, with 2 links inside to read http://forums.adobe.com/thread/1270588
    Report back with the codec details of your file, use the programs below... A screen shot works well to SHOW people what you are doing
    http://forums.adobe.com/thread/592070?tstart=30 for screen shot instructions
    Free programs to get file information for PC/Mac http://mediaarea.net/en/MediaInfo/Download
    2nd, you need to give LOTS more information about your computer
    -PPro Information FAQ http://forums.adobe.com/message/4200840
    3rd, What is your exact brand/model graphics adapter (ATI or nVidia or ???)
    What is your exact graphics adapter driver version?
    Have you gone to the vendor web site to check for a newer driver?
    For Windows, do NOT rely on Windows Update to have current driver information
    -you need to go direct to the vendor web site and check updates for yourself
    ATI Driver Autodetect http://support.amd.com/en-us/download/auto-detect-tool
    nVidia Driver Downloads http://www.nvidia.com/Download/index.aspx?lang=en-us
    4th, do you have Dual video adapters?
    Go to the Windows Control Panel and select Hardware and Sound and then select Device Manager... In Device manager you click the + sign to the left of Display Adapters... and see if 2 are listed
    -http://helpx.adobe.com/premiere-pro/kb/error---preludevideo-play-modules.html
    -http://forums.adobe.com/thread/1001579
    -Use BIOS http://forums.adobe.com/thread/1019004?tstart=0
    -link to why http://forums.adobe.com/message/4685328
    -http://www.anandtech.com/show/4839/mobile-gpu-faceoff-amd-dynamic-switchable-graphics-vs-n vidia-optimus-technology/2

  • Audio acting up in Premiere Pro | Need Help ASAP

    Okay, I need help ASAP because this has been a serious issue for me.
    So my source video (an interview) is on PR's timeline. I start playing it and it's working fine, but all of a sudden, the audio skips back to the beginning of the interview, then about 10 seconds later, it gets back on track. I checked the original video that I imported it from and it's all fine. I even reimported the file, but the problem persists.

    Okay, problem solved. I took the working source video, took the audio out and put it in there.

  • IPad deactivated. Need help asap!!!

    My daughter deactivated my husband's iPad. The screen says that it's deactivated and that I need to connect it to iTunes. The problem is, that it's connected and a little box appears saying "To allow access, please respond on your iPad...". How am I going to respond if its not working?! Need help asap!!!!

    Is that the computer that it's normally synced to ? With iOS 7 you need to need 'trust' computer that it's connected to, if the iPad is disabled you won't be able to trust it, you will need to put the iPad into recovery mode in order to be able to reset the iPad - there are instructions towards the bottom of this page : http://support.apple.com/kb/HT1212 . You can then restore/resync the content to it.

  • All my Albums in PSE 10 have disappeared.  Need help asap to recover.

    All my Albums in PSE 10 have disappeared.  Need help asap to recover.
    I have over 50 Albums and over 20K photos.
    I did nothing wrong that I am aware of.
    I believe Adobe intentionally sabotages older versions to force you to purchase the new version.
    This has happened now 4 times in a row.  To hide what they are doing they change the problems.
    When I purchase the new version the problem miracleously disappears.

    Hi,
    Please ensure that correct catalog is open. Can you please show me a screenshot of your Elements Organizer 10 catalog?
    To confirm if albums are actually gone or is in some odd view, you may check at one more place - click Find > By Details (Metadata) > choose "Album" and see if your albums get populated in the adjoining dropdown in this dialog?
    Thanks
    Andaleeb

  • Stuttering flv playback issue- need help asap

    We need help asap. Have a project is due to deliver today (5/14).
    We have a video to go on a dvd-rom, live action with Motion Graphics behind.
    When output is done thru Projector the Motion Graphics stutter as they scroll.
    Here is more technical info:
    Stuttering flv playback issue:
    Prores 422 timeline 29.97fps 1280x720 output from fcp using current settings.
    Mov file is approx 7gb, plays relatively smooth on a mac pro with no raid.
    Frame by frame analysis shows all frames are present with no jumps tears or skips.
    Tried several output paths, programs and settings to create a smooth flv file to no avail.
    We adjusted data rates from 2k, 3.5k, 4k and 8k, no luck
    We adjusted keyframe rates from low to all frames, no luck.
    We tried cs3 flash encoder, cs5 media encoder, squeeze ect, same results.
    Playback in the flash projector seems to choke slightly no matter what we do.
    Have also posted in the Director Forum.
    Any help much appreciated!

    Here are a few ideas off the top of my head:
    Try playing the file using a different xtra, sometimes different ones will work better.  If you have Director 11.5, there is a native flv playback xtra.
    You can build a player easily in Flash using the flvPlayback component, then bring that into Director as a swf.
    Once you have the video in Director, try making the member Direct To Stage (DTS).  If it is already DTS, try making it not DTS.
    Make sure the video is not transparent, and nothing in Director overlaps the video... in fact, when the video is playing, nothing should be moving at all, and try to keep the amount of code that is running to a minimum.
    Try lowering your video's data rate further or try using a different codec.
    Using VBR (Variable Bit Rate) compression often makes the video appear to play smoother.
    Try compressing the flv with different software.  FFMpeg, for example, is free and does a very good job, often better than the Flash Video Encoder that comes with Flash/Creative Suite.

  • Need Help ASAP  my State tax form is in a PDF file and the attachment in my email says Please wait

    Need Help ASAP  my State tax form is in a PDF file and the attachment in my email says Please wait...
    I tried downloading updates like it said to but it still will not display the document.  How do I print the PDF file ASAP

    Can you give us a LOT more info?
    What email client? What version of Reader (I can only assume you even have Reader at this point)?
    Please wait? I'm sure it says more than that, right?
    Have you tried simply saving the PDF (it IS a PDF correct?) to your desktop and opening it from there?
    Did you get this form from the IRS or did it come from somewhere else? If the IRS again, what version of Reader?
    Help us help you.

Maybe you are looking for

  • Trying to use UK iPhone 5s abroad

    Hi I have a UK bought iPhone 5s. It's a1457 model. I am trying to use it in South Korea on 4G LTE and their iPhone 5s are all a1530 models. I was wondering if it's possible to use my a1457 over there. The essence of the question is if it's possible t

  • Apple Preview and Interactive PDF Issue

    Hello all - I'm having trouble with exporting an Interactive PDF for Preview in which the content boxes align and print identical to that of Adobe Acrobat. See below for pictures. The text out of the boxes are on Apple Preview. Any help in the matter

  • Webcam Live and Yahoo messanger

    How do i get this to work. Creative said it has to do with yahoo and i emailed yahoo and never got a response. I am pretty sure i installed it properly, or at least that's what my comp said when it finished installing. Can you guys help me out, thank

  • New PO document type

    Hi experts We plan to create new doc type for return Po.What we should do for all related setup? eg: copy one current document type ? assign document number range?  others? Thanks Alice

  • Create proxy to an object created by a wcf service class

    Hi We are trying to develop a WCF Service which is configured as per-session. The service object creates another object which has some data + functions, and has its own Interface which is available on both client and server. Is it possible to somehow