Java Applets and multiple classes not working.

I have tested my JApplet class alone to view its layout and to make sure it actually works. But once I add in my other classes, compile, jar, and test I get the error:
java.lang.NoClassDefFoundError: AlakApp (wrong name: alak/codeFiles/AlakApp)
        at java.lang.ClassLoader.defineClass1(Native Method)
        at java.lang.ClassLoader.defineClass(ClassLoader.java:620)
        at java.security.SecureClassLoader.defineClass(SecureClassLoader.java:12
4)
        at java.net.URLClassLoader.defineClass(URLClassLoader.java:260)
        at java.net.URLClassLoader.access$000(URLClassLoader.java:56)
        at java.net.URLClassLoader$1.run(URLClassLoader.java:195)
        at java.security.AccessController.doPrivileged(Native Method)
        at java.net.URLClassLoader.findClass(URLClassLoader.java:188)
        at sun.applet.AppletClassLoader.findClass(AppletClassLoader.java:155)
        at java.lang.ClassLoader.loadClass(ClassLoader.java:306)
        at sun.applet.AppletClassLoader.loadClass(AppletClassLoader.java:127)
        at java.lang.ClassLoader.loadClass(ClassLoader.java:251)
        at sun.applet.AppletClassLoader.loadCode(AppletClassLoader.java:618)
        at sun.applet.AppletPanel.createApplet(AppletPanel.java:779)
        at sun.applet.AppletPanel.runLoader(AppletPanel.java:708)
        at sun.applet.AppletPanel.run(AppletPanel.java:362)
        at java.lang.Thread.run(Thread.java:619)My Directory contains these and only these:
F:\alak\codeFiles:
  AlakApp.java
  Game.java
  Board.java
  Space.java
  index.html
  AlakGame.jarAll my classes are in the package alak.codeFiles.
My .html file contains this:
<HTML>
<HEAD>
  <TITLE>ALAK</TITLE>
</HEAD>
<BODY>
  <applet code="AlakApp.class" archive="AlakGame.jar" width=400 height=200>
  Please use a Java compatible browser to see this.
  </applet>
  <br>
</BODY>
</HTML>These are they commands I am issuing:
F:\alak\codeFiles>javac *.java
F:\alak\codeFiles>jar -cvf AlakGame.jar *.class
F:\alak\codeFiles>appletviewer index.htmlI've been trying many different things to narrow down what is going on. If you need to see my code let me know, but I've tested everything with a text-based user interface and they work.
So does anyone know the cause of this error?

Ok i rared the test and uploaded to rapidshare.. here is the link:
http://rapidshare.com/files/76860865/test.rar.html
But here is the code. They are in the directory /test/files/
ADigit.java
package test.files;
public class ADigit
  private int value;
  public ADigit( int val )
   this.value = val;
  public String toString()
   return "" + this.value;
}ADigitApp.java
package test.files;
import java.awt.*;
import java.awt.event.*;
import javax.swing.*;
public class ADigitApp extends JApplet implements ActionListener
  private ADigit numeroUno;
  private int currentNum;
  private Container container;
  private javax.swing.JLabel jLabel;
  private javax.swing.JTextArea jTextArea;
  private javax.swing.JButton jButton;
  public void init()
    currentNum = 1;
    numeroUno = new ADigit( currentNum );
     container = getContentPane();
    container.setLayout( new BorderLayout() );
     jLabel = new javax.swing.JLabel();
     jTextArea = new javax.swing.JTextArea();
     jLabel.setText( "The Number is: " );
     jTextArea.setText( numeroUno.toString() );
     jButton = new javax.swing.JButton();
     jButton.setText( "New Number" );
    jButton.addActionListener( this );
     container.add( jLabel, BorderLayout.WEST );
     container.add( jTextArea, BorderLayout.CENTER );
     container.add( jButton, BorderLayout.EAST );
    setSize( 200, 200 );
  public void actionPerformed( ActionEvent e )
    this.currentNum++;
     numeroUno = new ADigit( this.currentNum );
     jTextArea.setText( numeroUno.toString() );
}index.html
<HTML>
<HEAD>
  <TITLE>NUMBERSSSS</TITLE>
</HEAD>
<BODY>
  <applet code="ADigitApp.class" archive="NumberFun.jar" width=200 height=200>
  Please use a Java compatible browser to see this.
  </applet>
  <br>
</BODY>
</HTML>Commands:
/test/files>javac *.java
/test/files>jar -cvf NumberFun.jar *.class
/test/files>appletviewer index.htmlThis example produces the same style of error.

Similar Messages

  • Java clients and IUserPrincipal class not working for authentication

    I'm developing a Java client which talks to EJBs on the iAS server via
    iiop.
    I've already developed EJBs, and they work fine. I'm trying to do user
    authentication per the examples in the Rich Client section.
    Here are the steps I've taken:
    1. I've created a class (achp.security.AchpPrincipal) which implements
    com.netscape.ejb.client.IUserPrincipal.
    2. I've added the class to the initial context via the following line:
    env.put("com.netscape.ejb.client.PrincipalClass",
    "achp.security.AchpPrincipal");
    3. I do a home lookup with the above initial context when the
    application starts, create a bean, and then invoke a method on the bean.
    When I do the home lookup, according to the manual, my AchpPrincipal
    class should be instantiated (which brings up a login window which then
    records username and password for future use).
    This never happens. The AchpPrincipal class is never instantiated,
    although the home lookup occurs successfully and the bean method call is
    also performed successfully.
    I'm running server on my Win2K desktop, with SP3. And, of course, I've
    properly installed the CXS server (as indicated by the fact that I can
    communicate with the EJBs at all though the Java client).
    Any help would be appreciated.
    Thanks,
    Douglas Bullard
    Multnomah County ISD

    I'm developing a Java client which talks to EJBs on the iAS server via
    iiop.
    I've already developed EJBs, and they work fine. I'm trying to do user
    authentication per the examples in the Rich Client section.
    Here are the steps I've taken:
    1. I've created a class (achp.security.AchpPrincipal) which implements
    com.netscape.ejb.client.IUserPrincipal.
    2. I've added the class to the initial context via the following line:
    env.put("com.netscape.ejb.client.PrincipalClass",
    "achp.security.AchpPrincipal");
    3. I do a home lookup with the above initial context when the
    application starts, create a bean, and then invoke a method on the bean.
    When I do the home lookup, according to the manual, my AchpPrincipal
    class should be instantiated (which brings up a login window which then
    records username and password for future use).
    This never happens. The AchpPrincipal class is never instantiated,
    although the home lookup occurs successfully and the bean method call is
    also performed successfully.
    I'm running server on my Win2K desktop, with SP3. And, of course, I've
    properly installed the CXS server (as indicated by the fact that I can
    communicate with the EJBs at all though the Java client).
    Any help would be appreciated.
    Thanks,
    Douglas Bullard
    Multnomah County ISD

  • Java NetBeans and Firefox will not work together

    I'm just beginnig to learn Java an have installed jdk 1.6.0 and NetBeans IDE 5.5.
    In NetBeans I have the possibility to chose Firefox as a tool to read docs (over the internet).
    But when I try to set it up with the following parameters:
    /usr/bin/mozilla-firefox -remote "openURL({URL})"I get the following error:
    Cannot execute /usr/bin/mozilla-firefox.
    Check that valid external browser property is set.
    From Tools menu choose Options.
    Click Advance Options button, expand External Tool and Settings node,
    then expand Web Browsers and choose valid browser.The only thing I can imagine is there will be something wrong with the command but I can't figure out whats wrong.
    The Firefox shell-script is located an named as above (/usr/bin/mozilla-firefox)
    and when I click at it in konqueror i start nicely.
    So ...??

    Hello everyone... unfortunately i have a similar issue. I have a fresh load of openSuSE 10.2 on a Dell Laptop. It is (intended to be) my main Java/AJAX development box, and I cannot get NetBeans to launch Firefox. A detailed account of my symptoms is below:
    OS Config:
    openSuSE 10.2
    Firefox 2.0 (openSuSE pre-packaged version)
    IDE Config:
    configuration:
    A) Browser set to Firefox (/usr/bin/firefox), arguments: -remote "openURL({URL})"
    B) No browser windows open
    1. Try to launch project (or click on a link in the Welcome page to go to NetBeans.org) and nothing happens. Status bar says "Running command /usr/bin/firefox" but nothing happens.
    2. Run command /usr/bin/firefox -remote "openURL(http://www.google.com)" from a terminal get message "no running window found"
    configuration:
    A) Browser set to Firefox (/usr/bin/firefox), arguments: -remote "openURL({URL})"
    B) At least 1 browser window open
    1. Try to launch project (or click on a link in the Welcome page to go to NetBeans.org) and nothing happens. Status bar says "Running command /usr/bin/firefox" but nothing happens.
    2. Run command /usr/bin/firefox -remote "openURL(http://www.google.com)" from a terminal and new browser opens with google.com
    configuration
    A) Browser set to Firefox (usr/lib/firefox), arguments: URLB) No browser window open.
    1. Launch project or click on link on welcome screen and Firefox launches with correct URL. However, upon closing firefox, I get the error from Netbeans stating that it could not run command /usr/bin/firefox (although everything ran fine)
    2. run command /usr/bin/firefox http://www.google.com from the terminal and it launches firefox to google, but blocks (keeps focus away from the terminal window) until you close firefox and you are given back control of the terminal.
    configuration
    A) Browser set to Konqueror, arguments : {URL}
    B) No browser window open
    1. Launch a project or click on any of the links, and everything runs like a champ, no fuss from NetBeans.
    This didn't happen on my SuSE Linux Enterprise Desktop 10.0 install a few weeks back. That, however, came with Firefox 1.5.x and I dont recall if I updated it to 2.0. At any rate, it seems to be something with the way the -remote command is executed. Does anyone have any more ideas? I want to use this machine for my Java/AJAX and really don't want to have to default to Konqueror.
    Thanks in advance!
    ~v
    Message was edited by:
    vyrt1go

  • Java7 and Java6 will not work opening pogo games on firefox, but works perfectly for IE, what can I do to fix this issue?

    Java will not work on the computer all of a sudden. Now when I go to open a Pogo game room up i get a Mozilla red lego piece in the corner saying "Some plug ins have been De-activated for your safety, in the box will be "Java (TM) platform SE 6 U". I have removed Java7 and reloaded it, after that not working found Java6 and loaded and reloaded it and it is not working.
    Now after 3 minutes of the room not loading Pogo will give me the error message of
    Java Not Found or Not Working
    Explanation:
    This error means Java (one of the technologies built into most browsers) is not working correctly on your browser.
    You must have Java installed on your computer in order to run Pogo games, and it must be functioning properly. Either you don't have Java installed yet, or the Web browser you're currently using doesn't support Java or you have Java (or Javascript) disabled in your browser.
    How to Fix the Problem:
    Java is a free download that is required to play Pogo games. Not all computers come with Java pre-installed.
    If you haven't played Pogo games before and are getting this error, you probably just need to install Java on your computer.
    For instructions on installing Java for your operating system and browser click here.
    If you believe Java might be installed but disabled for your browser, please be sure to enable the plugin for your browser. If you need help, click here.
    If you already have Java installed and it is not disabled, your Java may be out-of-date or no longer working. In that case, your Java might need to be upgraded or reinstalled. If you need help, click here.
    I have done the click here in last sentence and all it wants me to do is download Java7 which was the first reason it was not working.
    Hopefully I have explained this well enough, from Mozilla this is what I get BUT if I go to Internet Explorer (which I HATE) the Java6 and Java7 work perfectly fine. So apparently the Java is downloaded correctly I just can not get it to play nicely with Mozilla and that is my main goal.
    EA games help page has gone through it all with me and have proven over and over (after 1 hour sessions, 45 waits for them) Java is working on my computer perfectly with IE just not on Firefox and with the rural situation I have become dependent on Mozilla because of the no fiber optics here it has been my best and only source of successfully using the internet here in the far out part of the country.

    Thank you so much, for once in my computer life I knew what the problem was, what caused it, why it was caused, what it did, what it made it do and most importantly how to fix it and to do it correctly and expeditiously. I can not Thank You all enough for all of the help! I also have Pogo mailed this to all on my friends list, where they have all learned as I have and have fixed theirs also. and the message is being spread. Thank You again, I just can not say it enough.

  • Ive just upgraded my late 2009 macbook, and things are not working properly. First of all, when I started the computer first time after installing Mountain Lion, some message advised me that some files were impossible to install.

    Ive just upgraded my late 2009 macbook, and things are not working properly. First of all, when I started the computer first time after installing Mountain Lion, some message advised me that some files were impossible to install. Once I wrote my password, and for now on, everytime I start the session, another window advise me that "Java SE 6" is missing, due that, the computer can't run some "CS5Service Manager". If I try to install it, the download ends with an error. If finally, you skip the istallation, you arrive to the dock, but the menu bar at the top of the screen doesn't show up.
    In addition, my trackpad doesn't works either. I can move the arrow but i can't click anywhere, probably because the option of clicking by touching is disabeled and I can't performance a regular click.
    I'll be very glad if someone know what the heck is happening with my computer. Anyway, I'm going to the genius bar next Saturday. Thx!

    We're sorry.
    We can't find the article you're looking for.
    Please return to the Apple Support homepage.
    Sigh.

  • I just got a new laptop and itunes is not working I have tryed to reinstall it and do alomst everything and it's still not working. Help?

    I just got a new laptop and itunes is not working I have tryed to reinstall it and do alomst everything and it's still not working. Help?

    What do you mean "not working"?  That could mean multiple different things.
    If help is desired, be as specific as possible.

  • Spotlight and Find does not work in 10.4.7 and Macbook Pro

    I have this strange problem of the Find and the Spotlight not working properly. Whenever I pass on a word to search it doesnot give me the full list. e.g In desktop I have file UserValidator.java and in the Find window I give options: Name Contains "Validator". The list that it is showing is not having the .java file.
    I am getting crazy what is happening. Has anybody faced with this problem.
    Thanks,
    Tanmoy

    Perhaps it's an Invisible item?
    In Find, select Other
    It opens a 'search attribute' window, in that scroll to and select 'Visibility' (4th from bottom)
    Check 'Add to Favorites' then OK
    Then select 'Visibility' and on the right button 'Visible or Invisible'
    Search for your file

  • I have a 27" thunderbolt display NOT the iMac, and I'm trying to connect my xbox 360 to it via the Belkin AV360. I plug everything in and it does not work? I check all the power cables and and connections and still not he issue. Iv'e tried C-F2 also. Help

    I have a 27" thunderbolt display NOT the iMac, and I'm trying to connect my xbox 360 to it via the Belkin AV360. I plug everything in and it does not work? I check all the power cables and and connections and still not he issue. Iv'e tried C-F2 also. has anyone used this devive (AV360) on there own 27" thunderbolt display (not the imac) and gotten it to work? If so I'd appreciate the help.

    There are multiple reasons that lead to issue. You should read the troubleshooting guide to get the right solution to solve the issue: iPhone, iPad, or iPod touch not recognized in iTunes for Windows - Apple Support

  • Dear all,  After Software Upgrade too iOS 6 , Face Time and iMessage is Not working anymore. E Mail is working. Any Ideal what to do. Kind Regatta from Hamburg Germany

    Dear all,  After Software Upgrade too iOS 6 , Face Time and iMessage is Not working anymore. E Mail is working. Any Ideal what to do. Kind Regards from Hamburg Germany

    Using FaceTime http://support.apple.com/kb/ht4319
    Troubleshooting FaceTime http://support.apple.com/kb/TS3367
    The Complete Guide to FaceTime + iMessage: Setup, Use, and Troubleshooting
    http://tinyurl.com/a7odey8
    Troubleshooting FaceTime and iMessage activation
    http://support.apple.com/kb/TS4268
    iOS: About Messages
    http://support.apple.com/kb/HT3529
    Set up iMessage
    http://www.apple.com/ca/ios/messages/
    Troubleshooting Messages
    http://support.apple.com/kb/TS2755
    Setting Up Multiple iOS Devices for iMessage and Facetime
    http://macmost.com/setting-up-multiple-ios-devices-for-messages-and-facetime.htm l
    FaceTime and iMessage not accepting Apple ID password
    http://www.ilounge.com/index.php/articles/comments/facetime-and-imessage-not-acc epting-apple-id-password/
     Cheers, Tom

  • I've received a message on my iphone 4s that it needs to be activated and it is not working

    I have recieved a message on my iphone 4s that it needs to be activated. I have tried doing this multiple times with strong wifi connection and it is not working. I connected it to iTunes as my phone suggested and i still could not activate it. This is quite frustrating as this does not allow me to use my cell phone for anything and I need it for many things.

    It would have saved to your camera roll.  Connect the phone to your Air via a USB cable and then run Image Capture which is located either in your Utilities folder or Other folder, depending on what version of Mac OS X your are running.  You will then see all the photos and videos stored on your iPhone and can then download them.

  • Java Desktop Overview (jds-help) not working after upgrade to jdk6u1

    Hello,
    I am running Sol 10 11/06 for sparc on a Sun Blade. I just upgraded to jdk6u1 from jdk5. I installed all required j6 packages, and then installed patches for j6u1. Java seems to be working fine. I then used pkgrm to remove all jdk5-related packages (I searched for all packages starting with SUNWj5 and then removed them).
    Now, my Desktop Overview and other java-related help functions do not work. I get this error:
    # jds-help ghelp:jdsoverview
    ** (jdshelp:826): WARNING **: An exception occured 'Unknown CORBA exception id: 'IDL:omg.org/CORBA/COMM_FAILURE:1.0''
    Maybe I removed a j5 package I shouldn't have. Which j5 packages are related to the operation of jds-help? Any ideas as to what is causing my problem with jds-help?
    Thank you...

    Here is the error log:
    "hs_err_pid1338.log" [Read only] 215 lines, 9100 characters
    # An unexpected error has been detected by Java Runtime Environment:
    # SIGSEGV (0xb) at pc=0xfc94dd6c, pid=1338, tid=1
    # Java VM: Java HotSpot(TM) Client VM (1.6.0_01-b06 mixed mode, sharing)
    # Problematic frame:
    # V [libjvm.so+0x14dd6c]
    # If you would like to submit a bug report, please visit:
    # http://java.sun.com/webapps/bugreport/crash.jsp
    --------------- T H R E A D ---------------
    Current thread (0x000a6400): JavaThread "main" [_thread_in_vm, id=1]
    siginfo:si_signo=11, si_errno=0, si_code=1, si_addr=0x00000000
    Registers:
    O0=0xffbfe5b4 O1=0x000a6400 O2=0x00000000 O3=0x00000000
    O4=0x000000b5 O5=0xffbfe5e0 O6=0xffbfe550 O7=0xfc94dd24
    G1=0x00010c8c G2=0x00010c00 G3=0x00010ce8 G4=0x00010c00
    G5=0x00000000 G6=0x00000000 G7=0xfc532000 Y=0x00000000
    PC=0xfc94dd6c nPC=0xfc94dd70
    Top of Stack: (sp=0xffbfe550)
    0xffbfe550: fce14154 fcdfe000 fce1238c 00000000
    0xffbfe560: fce0ece8 ffbfe5b4 fce0ec8c 0000cf44
    0xffbfe570: 000a64e8 00000000 00000000 000a6400
    0xffbfe580: 00000000 fce0af44 ffbfe5f0 00014410
    0xffbfe590: 00000000 00000000 00000000 00000000
    0xffbfe5a0: 00000000 00000000 00017254 00000000
    0xffbfe5b0: 00000000 fce0ece8 0001c4a4 00000000
    0xffbfe5c0: ffbfe5f0 000143ac 001174f0 ffbfe66c
    Instructions: (pc=0xfc94dd6c)
    0xfc94dd5c: ac 04 40 01 aa 10 00 08 92 10 00 1b e8 27 bf c4
    0xfc94dd6c: de 06 a0 00 e6 03 e0 08 d6 03 e0 0c da 14 e0 26
    Stack: [0xff400000,0xffc00000), sp=0xffbfe550, free space=8185k
    Native frames: (J=compiled Java code, j=interpreted, Vv=VM code, C=native code)
    V [libjvm.so+0x14dd6c]
    C [jdshelp-server+0x4418]
    C [jdshelp-server+0x590c] ORBITskel_small_JDS_OnlineHelp_Viewer_display+0x54
    C [libORBit-2.so.0.0.0+0x228b4] ORBit_small_invoke_adaptor+0x43c
    C [libORBit-2.so.0.0.0+0x35338]
    C [libORBit-2.so.0.0.0+0x35518]
    C [libORBit-2.so.0.0.0+0x35af4]
    C [libORBit-2.so.0.0.0+0x3ac54] ORBit_handle_request+0x58
    C [libORBit-2.so.0.0.0+0x1e33c] giop_connection_handle_input+0x288
    C [libORBitCosNaming-2.so.0.0.0+0x7e94]
    C [libglib-2.0.so.0.400.1+0x55ad0]
    C [libglib-2.0.so.0.400.1+0x57004] g_main_context_dispatch+0xa4
    C [libglib-2.0.so.0.400.1+0x574d0]
    C [libglib-2.0.so.0.400.1+0x57c4c] g_main_loop_run+0x350
    C [libbonobo-2.so.0.0.0+0x24154] bonobo_main+0x74
    C [jdshelp-server+0x4d14] main+0xe4
    --------------- P R O C E S S ---------------
    Java Threads: ( => current thread )
    0x00113400 JavaThread "Low Memory Detector" daemon [_thread_blocked, id=7]
    0x00111800 JavaThread "CompilerThread0" daemon [_thread_blocked, id=6]
    0x00110800 JavaThread "Signal Dispatcher" daemon [_thread_blocked, id=5]
    0x000ce000 JavaThread "Finalizer" daemon [_thread_blocked, id=4]
    0x000cd000 JavaThread "Reference Handler" daemon [_thread_blocked, id=3]
    =>0x000a6400 JavaThread "main" [_thread_in_vm, id=1]
    Other Threads:
    0x000c3c00 VMThread [id=2]
    0x00115400 WatcherThread [id=8]
    VM state:not at safepoint (normal execution)
    VM Mutex/Monitor currently owned by a thread: None
    Heap
    def new generation total 1984K, used 208K [0xd0400000, 0xd0620000, 0xd0b10000) eden space 1792K, 11% used [0xd0400000, 0xd0434398, 0xd05c0000)
    from space 192K, 0% used [0xd05c0000, 0xd05c0000, 0xd05f0000)
    to space 192K, 0% used [0xd05f0000, 0xd05f0000, 0xd0620000)
    tenured generation total 4096K, used 0K [0xd0b10000, 0xd0f10000, 0xd4400000)
    the space 4096K, 0% used [0xd0b10000, 0xd0b10000, 0xd0b10200, 0xd0f10000)
    compacting perm gen total 12288K, used 27K [0xd4400000, 0xd5000000, 0xd8400000) the space 12288K, 0% used [0xd4400000, 0xd4406d98, 0xd4406e00, 0xd5000000)
    ro space 8192K, 80% used [0xd8400000, 0xd8a6f968, 0xd8a6fa00, 0xd8c00000)
    rw space 12288K, 59% used [0xd8c00000, 0xd93298a8, 0xd9329a00, 0xd9800000)
    Dynamic libraries:
    0x00010000 /usr/lib/jdshelp-server
    0xff370000 /usr/lib/libORBitCosNaming-2.so.0
    0xff280000 /usr/lib/libgnomeui-2.so.0
    0xff250000 /usr/lib/libSM.so.6
    0xff210000 /usr/lib/libICE.so.6
    0xff190000 /usr/lib/libbonoboui-2.so.0
    0xff000000 /usr/lib/libxml2.so.2
    0xff3ec000 /lib/libpthread.so.1
    0xff330000 /usr/lib/libz.so.1
    0xfefb0000 /usr/lib/libgnomecanvas-2.so.0
    0xff150000 /usr/lib/libgnome-2.so.0
    0xfef90000 /usr/lib/libpopt.so.0
    0xfef60000 /usr/lib/libart_lgpl_2.so.2
    0xfef20000 /usr/lib/libpangoft2-1.0.so.0
    0xfec00000 /usr/lib/libgtk-x11-2.0.so.0
    0xfeb00000 /usr/lib/libgdk-x11-2.0.so.0
    0xfebd0000 /usr/lib/libatk-1.0.so.0
    0xfeba0000 /usr/lib/libgdk_pixbuf-2.0.so.0
    0xfd800000 /usr/lib/libmlib.so.2
    0xfeae0000 /usr/lib/libpangoxft-1.0.so.0
    0xfeac0000 /usr/lib/libpangox-1.0.so.0
    0xfd7b0000 /usr/lib/libpango-1.0.so.0
    0xfd730000 /usr/lib/libbonobo-2.so.0
    0xfd6e0000 /usr/lib/libgconf-2.so.4
    0xfd660000 /usr/lib/libgnomevfs-2.so.0
    0xfd630000 /usr/lib/libbonobo-activation.so.4
    0xfd5c0000 /usr/lib/libORBit-2.so.0
    0xfd540000 /usr/lib/libgobject-2.0.so.0
    0xfd4e0000 /lib/libresolv.so.2
    0xfd400000 /lib/libnsl.so.1
    0xfd3d0000 /lib/libsocket.so.1
    0xfd300000 /lib/libm.so.2
    0xfd4c0000 /usr/lib/libgmodule-2.0.so.0
    0xfd2e0000 /usr/lib/libgthread-2.0.so.0
    0xfd200000 /usr/lib/libglib-2.0.so.0
    0xfc800000 /usr/java/jre/lib/sparc/client/libjvm.so
    0xfd000000 /usr/java/jre/lib/sparc/libawt.so
    0xfce80000 /usr/java/jre/lib/sparc/libmlib_image.so
    0xfd1c0000 /usr/java/jre/lib/sparc/libjava.so
    0xfcfd0000 /usr/java/jre/lib/sparc/libverify.so
    0xff3a8000 /lib/libthread.so.1
    0xfc700000 /lib/libc.so.1
    0xfcfb0000 /usr/lib/libgnome-keyring.so.0
    0xfd1a0000 /usr/lib/libgailutil.so.17
    0xfce40000 /usr/lib/libjpeg.so.62
    0xfc600000 /usr/lib/libX11.so.4
    0xfc6c0000 /usr/lib/libXft.so.2
    0xfc5d0000 /usr/sfw/lib/libXrender.so.1
    0xfc570000 /usr/lib/libfontconfig.so.1
    0xfc480000 /usr/sfw/lib/libfreetype.so.6
    0xfc550000 /usr/lib/libesd.so.0
    0xfc440000 /usr/lib/libaudiofile.so.0
    0xfc410000 /usr/X11/lib/libXrandr.so.2
    0xfc3e0000 /usr/lib/libXi.so.5
    0xfc390000 /usr/lib/libXext.so.0
    0xfc340000 /usr/sfw/lib/libssl.so.0.9.7
    0xfc200000 /usr/sfw/lib/libcrypto.so.0.9.7
    0xfc1e0000 /lib/libdl.so.1
    0xfc1c0000 /lib/librt.so.1
    0xff3a0000 /usr/lib/libsched.so.1
    0xfc1a0000 /lib/libm.so.1
    0xfc170000 /usr/lib/libCrun.so.1
    0xfc150000 /lib/libdoor.so.1
    0xfc120000 /lib/libaio.so.1
    0xfc100000 /lib/libmd5.so.1
    0xfa000000 /usr/lib/cpu/sparcv8plus+vis/libmlib.so.2
    0xfc548000 /platform/SUNW,Sun-Blade-100/lib/libc_psr.so.1
    0xfc0c0000 /usr/lib/iconv/UTF-8%8859-1.so
    0xfc080000 /lib/libmp.so.2
    0xf9fd0000 /lib/libscf.so.1
    0xf9fb0000 /lib/libuutil.so.1
    0xf9f50000 /usr/sfw/lib/libexpat.so.0
    0xf9f30000 /usr/jdk/instances/jdk1.6.0/jre/lib/sparc/native_threads/libhpi.so
    0xf9f10000 /platform/SUNW,Sun-Blade-100/lib/libmd5_psr.so.1
    0xf9ed0000 /usr/jdk/instances/jdk1.6.0/jre/lib/sparc/libzip.so
    0xf9eb0000 /usr/lib/iconv/UTF-8%646.so
    VM Arguments:
    java_command: <unknown>
    Launcher Type: generic
    Environment Variables:
    JAVA_HOME=/bin/java
    PATH=/usr/sbin:/sbin:/bin:/usr/xpg4/bin:/usr/bin:/usr/local/bin:/opt/SUNWspro/bin:/usr/ccs/bin:/etc:/usr/etc:/usr/X11:/etc/X11:/usr/X11/bin:/usr:/usr/openwin/bin:.:/home/barnabyr:/usr/openwin/lib:/usr/dt/bin:/opt/sfw/lib/firefox:/opt/sfw/lib/thunderbird:/usr/ucb:/usr/X11/lib:/usr/sfw/bin:/usr/ucb
    LD_LIBRARY_PATH=/lib:/usr/lib:/usr/sfw/lib:/opt/sfw/lib:/usr/local/lib:/usr/X11:/usr/X11/lib:/usr/include/X11:/usr/dt/lib:/usr/openwin/lib:/space/spectral_progs/xforms/FORMS
    SHELL=/bin/csh
    DISPLAY=:0.0
    Signal Handlers:
    SIGSEGV: [libjvm.so+0x4e4710], sa_mask[0]=0xffbffeff, sa_flags=0x0000000c
    SIGBUS: [libjvm.so+0x4e4710], sa_mask[0]=0xffbffeff, sa_flags=0x0000000c
    SIGFPE: [libjvm.so+0x172a38], sa_mask[0]=0xffbffeff, sa_flags=0x0000000c
    SIGPIPE: [libjvm.so+0x172a38], sa_mask[0]=0xffbffeff, sa_flags=0x0000000c
    SIGILL: [libjvm.so+0x172a38], sa_mask[0]=0xffbffeff, sa_flags=0x0000000c
    SIGUSR1: SIG_DFL, sa_mask[0]=0x00000000, sa_flags=0x00000000
    SIGUSR2: SIG_DFL, sa_mask[0]=0x00000000, sa_flags=0x00000000
    SIGHUP: [libjvm.so+0x415910], sa_mask[0]=0xffbffeff, sa_flags=0x00000004
    SIGINT: [libjvm.so+0x415910], sa_mask[0]=0xffbffeff, sa_flags=0x00000004
    SIGQUIT: [libjvm.so+0x415910], sa_mask[0]=0xffbffeff, sa_flags=0x00000004
    SIGTERM: [libjvm.so+0x415910], sa_mask[0]=0xffbffeff, sa_flags=0x00000004
    SIGQUIT: [libjvm.so+0x415910], sa_mask[0]=0xffbffeff, sa_flags=0x00000004
    SIGTERM: [libjvm.so+0x415910], sa_mask[0]=0xffbffeff, sa_flags=0x00000004
    SIG39: [libjvm.so+0x418438], sa_mask[0]=0x00000000, sa_flags=0x00000008
    SIG40: [libjvm.so+0x172a38], sa_mask[0]=0xffbffeff, sa_flags=0x0000000c
    --------------- S Y S T E M ---------------
    OS: Solaris 10 11/06 s10s_u3wos_10 SPARC
    Copyright 2006 Sun Microsystems, Inc. All Rights Reserved.
    Use is subject to license terms.
    Assembled 14 November 2006
    uname:SunOS 5.10 Generic_125100-06 sun4u (T2 libthread)
    rlimit: STACK 8192k, CORE infinity, NOFILE 65536, AS infinity
    load average:0.66 0.85 0.91
    CPU:total 1 has_v8, has_v9, has_vis1
    Memory: 8k page, physical 2097152k(1383752k free)
    vm_info: Java HotSpot(TM) Client VM (1.6.0_01-b06) for solaris-sparc, built on Mar 14 2007 01:17:32 by "" with unknown Workshop:0x580

  • Java.rmi.UnmarshalException: skeleton class not found but required for clie

    Hello everyone,
    I am new to RMI and getting a strange exception. I am using Java 1.5.0_07 both on client and server. They are running on the same machine, the rmi registry is started inside the server application.
    I am wondering why java complains about skeletons, I thought they are automatically created when using java 5.0?
    Please have a look at the stacktrace below.
    Thank you for your help.
    Best Regards
    Patric
    java.rmi.ServerException: RemoteException occurred in server thread; nested exception is:
         java.rmi.UnmarshalException: error unmarshalling call header; nested exception is:
         java.rmi.UnmarshalException: skeleton class not found but required for client version
         sun.rmi.server.UnicastServerRef.dispatch(UnicastServerRef.java:325)
         sun.rmi.transport.Transport$1.run(Transport.java:153)
         java.security.AccessController.doPrivileged(Native Method)
         sun.rmi.transport.Transport.serviceCall(Transport.java:149)
         sun.rmi.transport.tcp.TCPTransport.handleMessages(TCPTransport.java:466)
         sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run(TCPTransport.java:707)
         java.lang.Thread.run(Thread.java:595)
         sun.rmi.transport.StreamRemoteCall.exceptionReceivedFromServer(StreamRemoteCall.java:247)
         sun.rmi.transport.StreamRemoteCall.executeCall(StreamRemoteCall.java:223)
         sun.rmi.server.UnicastRef.invoke(UnicastRef.java:343)
         sun.rmi.registry.RegistryImpl_Stub.lookup(Unknown Source)
         java.rmi.Naming.lookup(Naming.java:84)
         org.apache.jsp.index_jsp._jspService(index_jsp.java:58)
         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)

    The full class path information that I can gather is as follows (some of the library path locations could be suspect...):
    Class path: /edge/node3/hotfix::/edge/node3/current/lib/JMdsApi.jar:/edge/node3/current/lib/MemoryProfilingAgent.jar:/edge/node3/current/lib/T2common-2.6.0-SNAPSHOT.3200.jar:/edge/node3/current/lib/T2scripting-jython.jar:/edge/node3/current/lib/activation.jar:/edge/node3/current/lib/alib.jar:/edge/node3/current/lib/alibom.jar:/edge/node3/current/lib/ant.jar:/edge/node3/current/lib/authapi.jar:/edge/node3/current/lib/bbdlapi.jar:/edge/node3/current/lib/bcpg-jdk15-136.jar:/edge/node3/current/lib/bcprov-jdk15-136.jar:/edge/node3/current/lib/c3p0-0.9.1.2.jar:/edge/node3/current/lib/castor-1.1-codegen-anttask.jar:/edge/node3/current/lib/castor-1.1-codegen.jar:/edge/node3/current/lib/castor-1.1-xml.jar:/edge/node3/current/lib/castor-1.1.jar:/edge/node3/current/lib/colt-1.2.0.jar:/edge/node3/current/lib/common-annotations.jar:/edge/node3/current/lib/commons-beanutils.jar:/edge/node3/current/lib/commons-codec-1.3.jar:/edge/node3/current/lib/commons-collections-3.2.1.jar:/edge/node3/current/lib/commons-jexl-1.1.jar:/edge/node3/current/lib/commons-lang-2.3.jar:/edge/node3/current/lib/commons-logging-1.1.1.jar:/edge/node3/current/lib/commons-net-1.4.1.jar:/edge/node3/current/lib/dsn.jar:/edge/node3/current/lib/eagleapi.jar:/edge/node3/current/lib/ezmorph-1.0.3.jar:/edge/node3/current/lib/f2-loader-1.8.jar:/edge/node3/current/lib/fasttrade-boviewer-1.0.1.jar:/edge/node3/current/lib/hsqldb.jar:/edge/node3/current/lib/icu4j-3.4.4.jar:/edge/node3/current/lib/ivy.jar:/edge/node3/current/lib/janino.jar:/edge/node3/current/lib/janus-sdk-1.7.0.0.jar:/edge/node3/current/lib/jasypt-1.4.1.jar:/edge/node3/current/lib/javolution.jar:/edge/node3/current/lib/jcalendar-1.3.2.jar:/edge/node3/current/lib/jcl-over-slf4j-1.5.6.jar:/edge/node3/current/lib/jcommon-1.0.9.jar:/edge/node3/current/lib/jconn2.jar:/edge/node3/current/lib/jconn3-6.05-b26214.jar:/edge/node3/current/lib/jdom.jar:/edge/node3/current/lib/jfreechart-1.0.5.jar:/edge/node3/current/lib/jgroups-all.jar:/edge/node3/current/lib/jline.jar:/edge/node3/current/lib/jmkv123p1.jar:/edge/node3/current/lib/jna.jar:/edge/node3/current/lib/joda-time-1.5.2.jar:/edge/node3/current/lib/jscience.jar:/edge/node3/current/lib/json-lib-2.2.1-jdk15.jar:/edge/node3/current/lib/jul-to-slf4j-1.5.6.jar:/edge/node3/current/lib/junit.jar:/edge/node3/current/lib/jython.jar:/edge/node3/current/lib/log4j-1.2.15.jar:/edge/node3/current/lib/log4j-over-slf4j-1.5.6.jar:/edge/node3/current/lib/loggablePreparedStatement-1.6.jar:/edge/node3/current/lib/looks-2.1.4.jar:/edge/node3/current/lib/mailapi.jar:/edge/node3/current/lib/model-12021.jar:/edge/node3/current/lib/mysql-connector-java-5.1.7-bin.jar:/edge/node3/current/lib/opencsv-1.8.jar:/edge/node3/current/lib/rfa.jar:/edge/node3/current/lib/rspcore.jar:/edge/node3/current/lib/slf4j-api-1.5.6.jar:/edge/node3/current/lib/slf4j-log4j12-1.5.6.jar:/edge/node3/current/lib/smtp.jar:/edge/node3/current/lib/smtphandler-0.6.jar:/edge/node3/current/lib/spring-2.5.2.jar:/edge/node3/current/lib/statsvn.jar:/edge/node3/current/lib/swingx-0.9.3.jar:/edge/node3/current/lib/t2-12021.jar:/edge/node3/current/lib/testng-5.9-jdk15.jar:/edge/node3/current/lib/tibmsg.jar:/edge/node3/current/lib/tibrvj.jar:/edge/node3/current/lib/trove.jar:/edge/node3/current/lib/velocity-tools.jar:/edge/node3/current/lib/velocity.jar:/edge/node3/current/lib/xalan.jar:/edge/node3/current/lib/xerces.jar:/edge/node3/current/lib/patng/activeio-core-3.0.0-incubator.jar:/edge/node3/current/lib/patng/activemq-core-4.1.1.jar:/edge/node3/current/lib/patng/avalon-framework-4.1.3.jar:/edge/node3/current/lib/patng/backport-util-concurrent-2.2.jar:/edge/node3/current/lib/patng/binding-1.4.0.jar:/edge/node3/current/lib/patng/cglib-nodep-2.1_3.jar:/edge/node3/current/lib/patng/common-1.30.jar:/edge/node3/current/lib/patng/commons-cli-1.0.jar:/edge/node3/current/lib/patng/commons-configuration-1.2.jar:/edge/node3/current/lib/patng/commons-discovery-0.2.jar:/edge/node3/current/lib/patng/commons-math-1.1.jar:/edge/node3/current/lib/patng/concurrent-1.3.4.jar:/edge/node3/current/lib/patng/geronimo-j2ee-management_1.0_spec-1.0.jar:/edge/node3/current/lib/patng/geronimo-jms_1.1_spec-1.0.jar:/edge/node3/current/lib/patng/logkit-1.0.1.jar:/edge/node3/current/lib/patng/mina-core-1.0.1.jar:/edge/node3/current/lib/patng/mina-filter-ssl-1.0.1.jar:/edge/node3/current/lib/patng/mina-java5-1.0.1.jar:/edge/node3/current/lib/patng/mx4j-remote-3.0.1.jar:/edge/node3/current/lib/patng/mx4j-tools-3.0.1.jar:/edge/node3/current/lib/patng/org.apache.felix.framework-1.0.0.jar:/edge/node3/current/lib/patng/org.osgi.core-1.0.0.jar:/edge/node3/current/lib/patng/pat-dt-common-1.18.jar:/edge/node3/current/lib/patng/pat-sdt-1.18.jar:/edge/node3/current/lib/patng/patNg-api-1.27.1.jar:/edge/node3/current/lib/patng/patNg-server-aoc-1.21.jar:/edge/node3/current/lib/patng/patNg-server-common-1.21.jar:/edge/node3/current/lib/patng/patNg-server-session-manager-1.21.jar:/edge/node3/current/lib/patng/patNg-utils-1.27.1.jar:/edge/node3/current/lib/patng/qpid-broker-2.2.2.0.jar:/edge/node3/current/lib/patng/qpid-client-2.2.2.0.jar:/edge/node3/current/lib/patng/qpid-common-2.2.2.0.jar:/edge/node3/current/lib/patng/qpid-mina-core-2.2.2.0.jar:/edge/node3/current/lib/patng/rsee-2.11.jar:/edge/node3/current/lib/patng/servlet-api-2.3.jar:/edge/node3/current/lib/patng/silk-1.3.jar:/edge/node3/current/lib/patng/slf4j-api-1.4.0.jar:/edge/node3/current/lib/patng/slf4j-log4j12-1.4.0.jar:/edge/node3/current/lib/patng/validation-1.2.0.jar
    Boot class path: /apps/jdk/1.6.0_13/linux/jre/lib/resources.jar:/apps/jdk/1.6.0_13/linux/jre/lib/rt.jar:/apps/jdk/1.6.0_13/linux/jre/lib/sunrsasign.jar:/apps/jdk/1.6.0_13/linux/jre/lib/jsse.jar:/apps/jdk/1.6.0_13/linux/jre/lib/jce.jar:/apps/jdk/1.6.0_13/linux/jre/lib/charsets.jar:/apps/jdk/1.6.0_13/linux/jre/classes:/tmp/yjp200811122006.jar
    Library path: /apps/jdk/1.6.0_13/linux/jre/lib/i386/server:/apps/jdk/1.6.0_13/linux/jre/lib/i386:/apps/jdk/1.6.0_13/linux/jre/../lib/i386::/edge/node3/current/lib:/home/eqdev/eqedgeuat/yourkit_7_5_11/yjp-7.5.11/bin/linux-x86-32:/edge/node3/current/lib:/home/eqdev/eqedgeuat/yourkit_7_5_11/yjp-7.5.11/bin/linux-x86-32:/usr/java/packages/lib/i386:/lib:/usr/lib

  • Accidentally deleted x protect meta.plist and plug in not working even after downloading latest

    Hi all
    Need some help here. It started off like this - after upgrading to mavericks, i had a problem viewing some java stuff. Googled and read somewhere to delete the x protect meta.plist and thus, did so. After doing that, my youtube videos etc all couldnt work. So googled again and did whatever the rest suggested - download latest version of Java, uninstall java and reinstall again, install other versions of java etc etc. all didnt worked.
    Someone just pointed out that I had deleted a very critical security file (x protect meta.plist) and might have more problems that I thought on my hand.
    Im not very technical or IT saavy, so please kindly advise. Most of the problems surfaced after deleting that file. And right now, plug in for videos are still not working even though I have attempted various 'solutions' suggested in this forum (the not too technical ones) and java is still cranky. Pls advise. thanks!

    Anyone able to help?
    1) How did u solve the missing/out of date plugin?
    - Have tried installing numberous times the latest version - doesnt work
    - Tried uninstalling and then reinstalled earlier versions of java - doesnt work too
    read somewhere to delete the xprotect meta plist - realised much later that piece of advice was for snow leopard OS and thus, did not work too. A forummer told me today this file is a critical security file and i should not have deleted it. WHat can I do now?
    current situation:
    still cant play youtube videos and other videos.
    java on some sites still cant work

  • FaceTime and iMessage are not working in iPad mini 2 wifi only model.

    Hi ,
    I am using iPad mini with retina display wifi only model. In my iPad everything is ok but FaceTime and iMessage are not working. In settings Removed my id and re-logined multiple times, but still they are not working. Please help me.

    Hi there Suryateja24,
    You may find the troubleshooting steps in the article below helpful.
    iOS: Troubleshooting FaceTime and iMessage activation
    http://support.apple.com/kb/ts4268
    -Griff W. 

  • Padding and margin does not work in div.

    padding and margin does not work in div.
    though design field  shows me padding effect, but at the web browser it does not work.
    please let me know how to deal it.

    Your HTML code is missing a closing div.  I have just done a rough check on it and came out with this code:
    <div class="wrapper">
    <div class="container1">
      <div id="header">
      <!-- end .header -->
      <img height="45" src="n_image/coaraSmall.jpg" width="53" /></div>
      <div id="top">
      <div id="top_inner1">
        <div id="top_inner2">
        <div id="top_inner3">
          <div id="top_inner4">
          <div id="slider1">
            <a class="buttons prev" href="#"></a>
            <div class="viewport">
            <ul class="overview">
              <li><img src="n_image/nora_big.jpg" /></li>
            </ul>
            </div>
            <a class="buttons next" href="#"></a></div>
          <!-- end .top_inner4 --></div>
          <!-- end .top_inner3 --></div>
        <!-- end .top_inner2 --></div>
        <!-- end .top_inner1 --></div>
      <!-- end .top --></div>
      <div id="menue">
      <div id="menue_inner1">
        <div id="globalnavi">
        <ul>
          <li><a href="#">Home</a></li>
          <li><a href="#">Song 4 Happy</a></li>
          <li><a href="#">About</a></li>
          <li><a href="#">Contact</a></li>
          <li><a href="#">Other</a></li>
          <li></li>
        </ul>
        <div class="c-both">
        </div>
        </div>
        <!-- end .menue_inner1 --></div>
      <!-- end .menue --></div>
      <!-- end .container1 --></div>
    <div class="container2">
      <div id="main">
      <div id="main2">
        <div align="center">
        <img height="297" src="n_image/noira002.jpg" width="600" />
        </div>
        <table class="category_01">
        <tr>
          <td>
          <img height="178" src="n_image/noira002_1.gif" width="180" /></td>
          <td>
          <img alt="" height="178" src="n_image/noira002_1.gif" width="180" /></td>
          <td>
          <img alt="" height="178" src="n_image/noira002_1.gif" width="180" /></td>
        </tr>
        </table>
        <div id="step">
        I hope it is going to be good. </div>
        <!-- end .main2 --></div>
      <!-- end .main --></div>
      <div id="footter">
      <div class="inner">
        <div class="footerLogo">
        <img height="92" src="n_image/side_rogojpg.jpg" width="150" /></div>
      </div>
      <!-- end .container2 --></div>
      <!-- end .wrapper --></div>
    </div>
    You need to copy and paste the above code in the body of your editor window and the css styles will start to work again.
    Please note this is a rough check only so you need to see if the closing div tag is in the right place.

Maybe you are looking for

  • Where can I get an eMac install DVD from?

    I've just been given an eMac that was destined for the skip. It came with no install DVD's and the administrator password is unknown. Whoever cleaned it out before parting company with it put in an administrators name as "apple" but didn't clear the

  • Unable to view this webcam in Safari

    Hi , Does anyone know why I am unable to view this webcam in Safari? http://www.cam1.carvoeiro.com/ It appears fine in Firefox & IE but I only really want one browser on my computer. Many thanks for any help on this on, Dave

  • IPhone 3G still connecting to 2.4 GHz N network. How is that possible?

    I have an Extreme N that is set to 2.4 GHz N and extended with an Express N. Question is, how is it possible that my iphone 3G and touch are still connecting to WiFi? Should they not even see my N network since the are both G?

  • DisplayName And ShowField Not Working In ViewFields FieldRef Element For User Field

    Hello, I have the following field defined in my list definition. <Field Name="Member" ID="{542e3c23-0cd0-4362-a699-9209deef278e}" DisplayName="Member" Type="User" List="UserInfo" /> And in the default View I have added the following in ViewFields ele

  • FONTS on OSX 10.4 And Under Classic (System 9 )

    Okay - Ya' all be gentle. Remember - there are no STUPID questions. I'm running a new G5 but have lots of earlier stuff and a very large file of FONTS on my old - very old - G3 - system 9.2. Classic seems to be running fine but the fonts available in