Java 3D installation problems

I have installed Java 1.4.1 and am now trying to install Java 3D.
When i try to run the demos from the Java3D folder i get an error:
"No compatible device found, please switch to other display mode and try again".
How do i solve this problem, so that i am able to view the demonstarations.???
thanks.

I have directx 8.1 installed already, and have tried different window resolutions, from 640X480 to 1024X768, but the message still appears on the screen, any other ideas?
It is the directx version of java 3D that i have downloaded.
My graphics card is an ATI Rage Pro with AGP2X...do i need to have a 3d graphics card to use java 3D???
When i try to load one of the demos in to IE (version 5.5) the error in the applet laoding area (if that makes sense!!) is:
"exception: java.lang.NullPointerException: Canvas3D: null GraphicsConfiguration".
Is anyone able to give me some help with this????
thankyou.

Similar Messages

  • HT4592 Airport and Java update installation problem

    I tried to install the recommended updates, but the Airport 5.5.3 and Java for Mac OSX 10.5 Update 10 1.0 wouldn't install because they couldn't be verified.  What does this mean?  I don't understand why Apple would need to verify them, or be unable to verify them, if they come from Apple.  Also, I've been having trouble with video on my MacBook Pro and am wondering if this problem could be related to the installation issue? 

    I just tried the updates again and these were the error messages I received:
    For Java: The Installer could not validate the contents of the ‘JavaForMacOSX10.5Update10’ package. Contact the software manufacturer for assistance.
    And for Airport: The digital signature for this package is incorrect. The package may have been tampered with or corrupted since being signed by “Apple”.

  • Java ME installation problem

    Hi, i am new to java me, but not to java in general. I am trying to install java me already   4 days and it still cannot be done. When i download java me sdk, usually the latest version, but i tried also previous versions, and i start the *.exe file , on the screen appears "Loading the installer..." and progress bar is filling.When it finishes, i expect that installation will begin(like 1.where to install, 2.do you accept license term, etc with buttons where i just click "Next" or "Browse",etc...) but nothing like this happens.It just happen NOTHING. When i press control + alt + del in order to see what processes are running (i mean the task manager in Windows), it shows that there is started program for installation, the exe is in the process list, also there is process java.exe .But the installation doesn't start.I waited at first 15 minutes, then i waited 30 minutes - just NOTHING. I tried previous version of java me - again the same. I use Windows XP and have installed many times the standard java, java1.4 sdk, java1.5 sdk,... java 1.7 sdk many times and haven't had any problems.
      Thanks if someone knows the answer of this.

    Try this instructions:
    1. Download and install Microsoft Device Emulator with device images for Windows Mobile 6 in "Network" emulator properties tab.
    2. Download and install Microsoft Virtual PC.
    Note: Installs virtual switch driver required for emulated network adapters.
    3. Run Windows Mobile 6 Professional Emulator and bind its emulated NE2000 Network Adapter to a desktop network card.
    Note 1: Consult the Microsoft device emulator documentation for instructions.
    Note 2: Don't use ActiveSync for networking (cradling the emulator).
    4. Write down the IP address of the emulator and the IP address of the host computer.
    4.1. Open the Start menu on the emulator, click Settings, click Connections, click Network Cards, Click NE2000 Compatible Ethernet Driver.
    4.2. Open Network Connections on the desktop, and display the status of the connection corresponding to the network card to which the NE2000 Network Adapter has been bound (step 3). Click the Support tab.
    5. Open Emulator Properties.
    5.1. Open the File menu.
    5.2. Click Configure.
    6. Set JavaMESdkHome\on-device\winmobile-arm as a shared folder in "General" emulator properties tab.
    6.1. Browse to JavaMESdkHome\on-device\winmobile-arm.
    6.2. Click OK.
    7. Run File Explorer on the emulator.
    7.1. Open Start menu.
    7.2. Click Programs.
    7.3. Click File Explorer.
    8. Start the Sun Java CLDC Emulation CAB file installation.
    8.1. Open Show menu.
    8.2. Select Storage Card.
    8.3. Click on the sun-java-cldc-emu.cab file.
    9. Finish the installation and run the Sun Java CLDC Emulation.
    Note: See the device installation for reference.
    10. Register the Windows Mobile emulator in the Java ME SDK.
    10.1. Open JavaMESdkHome\toolkit-lib\process\device-manager\conf\static-registrations.cfg.
    10.2. Add the <device name>, <device ip>, <host ip> line into the file and save the changes (use the IP addresses from step 4).
    As instance: MS_Emulator, 192.168.1.2, 192.168.1.1
    11. Restart the Java ME SDK Device Manager.

  • Java as installation problem

    hello all,
    i deleted the JAVA part from ABAP+JAVA installation(used the installation guides). During the installation JAVA addin is getting the problem with start J2EE instance. The server0 instance is starting fine, but i can`t find any action from dispatcher... How i can try to start dispatcher node separately? Or how i can determine a problem with dispatcher?
    Please help me...

    Hello Mr. gennady,
    Please go to the work folder (ABAP SAP GUI transaction ST11) and then search for the Log files with the following name:
    dev_server0, dev_dispatcher, dev_disp, dev_bootstrap, dev_jvm.
    so you will get to track the problem occuring with your java stack.
    Regards,
    Prem

  • Java JDK Installation Problem - Need Help!

    Below is my program Access.java which resides in c:\java. It generates a "NoSuchMethodError" when I run it on my Windows 2000 computer at work. When my friend here at work runs the SAME program on his Windows 2000 computer, it runs fine. I have No idea why! I suspect it's a classpath problem, but I use the same classpath on my Windows 98 computer at home w/o a problem.
    For windows 2000, I set my path statement by going into the Control Panel ->System->Advanced Tab and adding a user variable named path.
    To set my classpath, I use sysedit. Anyway, here's what my path and classpath statements look like in my c:\autoexec.bat
    path=c:\windows;c:\windows\command;c:\java
    path=c:\jdk1.3.1\jre\bin;c:\jdk1.3.1\bin;%path%
    set classpath = .;%classpath%;c:\jdk1.3.1\jre\lib;c:\java\;
    Finally, here's my c:\java\Access.java program that blows up (only on MY Windows 2000 machine)
    //Access.java
    package com.gfarms.geometry;
    class Other
    public void fnc(int b)
    System.out.println("integer received = " + b);
    public class Access
    public static void main(String[] args)
    Other a = new Other();
    a.fnc(48);
    Any help would be deeply appreciated!

    Try this:
    create a new directory called c:\java\com\gfarms\geometry and move Access.java to it. Delete all class files.
    compile from c:\java:
    c:\java> javac com/gfarms/geometry/Access.java
    run it:
    c:\java> java com.gfarms.geometry.Access

  • Java 3D Installation Problem... pls it�s URGENT

    Hi,
    I've tried to install java 3d software but I get the following error message while executing a program. I don't understand where is the problem... Can anybody help me out? I' ve Suse Linux 8.2. I posted in java 3d forum but no response.
    Thanks.
    ERROR MESSAGE:
    Ruta de las librer�as --> /usr/java/j2sdk1.4.2_04/bin
    Ejemplo --> HelloUniverse de las demos
    Ruta del ejemplo --> /usr/java/j2sdk1.4.2_04/demo/java3d/HelloUniverse/HelloUniverse.java
    El error crea el archivo hs_err_pid1895.log con el siguiente texto y tiene el siguiente texto:
    An unexpected exception has been detected in native code outside the VM.
    Unexpected Signal : 8 occurred at PC=0x4D78F89B
    Function=(null)+0x4D78F89B
    Library=/usr/lib/libGL.so.1
    NOTE: We are unable to locate the function name symbol for the error
    just occurred. Please refer to release documentation for possible
    reason and solutions.
    Current Java thread:
    at javax.media.j3d.Canvas3D.callDisplayList(Native Method)
    at javax.media.j3d.DisplayListRenderMethod.render(DisplayListRenderMethod.java:43)
    at javax.media.j3d.RenderMolecule.render(RenderMolecule.java:1852)
    at javax.media.j3d.TextureBin.renderList(TextureBin.java:1296)
    at javax.media.j3d.TextureBin.renderList(TextureBin.java:1268)
    at javax.media.j3d.TextureBin.render(TextureBin.java:1258)
    at javax.media.j3d.TextureBin.render(TextureBin.java:1211)
    at javax.media.j3d.AttributeBin.render(AttributeBin.java:389)
    at javax.media.j3d.EnvironmentSet.render(EnvironmentSet.java:426)
    at javax.media.j3d.LightBin.render(LightBin.java:361)
    at javax.media.j3d.RenderBin.renderOpaque(RenderBin.java:5013)
    at javax.media.j3d.Renderer.doWork(Renderer.java:1226)
    at javax.media.j3d.J3dThread.run(J3dThread.java:250)
    Dynamic libraries:
    08048000-0804e000 r-xp 00000000 03:06 165793 /usr/java/j2sdk1.4.2_04/bin/java
    0804e000-0804f000 rw-p 00005000 03:06 165793 /usr/java/j2sdk1.4.2_04/bin/java
    40000000-40014000 r-xp 00000000 03:06 24589 /lib/ld-2.3.2.so
    40014000-40015000 rw-p 00014000 03:06 24589 /lib/ld-2.3.2.so
    40015000-4001d000 r-xp 00000000 03:06 166990 /usr/java/j2sdk1.4.2_04/jre/lib/i386/native_threads/libhpi.so
    4001d000-4001e000 rw-p 00007000 03:06 166990 /usr/java/j2sdk1.4.2_04/jre/lib/i386/native_threads/libhpi.so
    4001e000-40022000 rw-s 00000000 03:06 159605 /tmp/hsperfdata_root/1895
    40022000-40023000 r--p 00551000 03:06 25889 /usr/lib/locale/locale-archive
    40023000-40026000 r--s 00000000 03:06 166915 /usr/java/j2sdk1.4.2_04/jre/lib/ext/dnsns.jar
    40026000-40033000 r-xp 00000000 03:06 24609 /lib/libpthread.so.0
    40033000-40034000 rw-p 0000d000 03:06 24609 /lib/libpthread.so.0
    40077000-40079000 r-xp 00000000 03:06 24598 /lib/libdl.so.2
    40079000-4007a000 rw-p 00001000 03:06 24598 /lib/libdl.so.2
    4007a000-401a9000 r-xp 00000000 03:06 24595 /lib/libc.so.6
    401a9000-401ad000 rw-p 0012f000 03:06 24595 /lib/libc.so.6
    401b0000-405ab000 r-xp 00000000 03:06 166962 /usr/java/j2sdk1.4.2_04/jre/lib/i386/client/libjvm.so
    405ab000-405c6000 rw-p 003fa000 03:06 166962 /usr/java/j2sdk1.4.2_04/jre/lib/i386/client/libjvm.so
    405d9000-405eb000 r-xp 00000000 03:06 24601 /lib/libnsl.so.1
    405eb000-405ec000 rw-p 00011000 03:06 24601 /lib/libnsl.so.1
    405ee000-4060f000 r-xp 00000000 03:06 24599 /lib/libm.so.6
    4060f000-40610000 rw-p 00020000 03:06 24599 /lib/libm.so.6
    40610000-40620000 r-xp 00000000 03:06 166987 /usr/java/j2sdk1.4.2_04/jre/lib/i386/libverify.so
    40620000-40622000 rw-p 0000f000 03:06 166987 /usr/java/j2sdk1.4.2_04/jre/lib/i386/libverify.so
    40622000-40642000 r-xp 00000000 03:06 166973 /usr/java/j2sdk1.4.2_04/jre/lib/i386/libjava.so
    40642000-40644000 rw-p 0001f000 03:06 166973 /usr/java/j2sdk1.4.2_04/jre/lib/i386/libjava.so
    40644000-40658000 r-xp 00000000 03:06 166988 /usr/java/j2sdk1.4.2_04/jre/lib/i386/libzip.so
    40658000-4065b000 rw-p 00013000 03:06 166988 /usr/java/j2sdk1.4.2_04/jre/lib/i386/libzip.so
    4065b000-41ffb000 r--s 00000000 03:06 167493 /usr/java/j2sdk1.4.2_04/jre/lib/rt.jar
    42045000-4205b000 r--s 00000000 03:06 167060 /usr/java/j2sdk1.4.2_04/jre/lib/sunrsasign.jar
    4205b000-42136000 r--s 00000000 03:06 167053 /usr/java/j2sdk1.4.2_04/jre/lib/jsse.jar
    42136000-42147000 r--s 00000000 03:06 167008 /usr/java/j2sdk1.4.2_04/jre/lib/jce.jar
    42147000-426a0000 r--s 00000000 03:06 167009 /usr/java/j2sdk1.4.2_04/jre/lib/charsets.jar
    44748000-4474f000 r-xp 00000000 03:06 27499 /usr/X11R6/lib/libXp.so.6.2
    4474f000-44750000 rw-p 00006000 03:06 27499 /usr/X11R6/lib/libXp.so.6.2
    4c7d0000-4c9d0000 r--p 00000000 03:06 25889 /usr/lib/locale/locale-archive
    4c9d0000-4ca02000 r--p 00518000 03:06 25889 /usr/lib/locale/locale-archive
    4ca02000-4cc66000 r--s 00000000 03:06 168006 /usr/java/j2sdk1.4.2_04/jre/lib/ext/j3dcore.jar
    4cc66000-4cdab000 r--s 00000000 03:06 168007 /usr/java/j2sdk1.4.2_04/jre/lib/ext/j3dutils.jar
    4cdab000-4cefd000 r--s 00000000 03:06 168008 /usr/java/j2sdk1.4.2_04/jre/lib/ext/j3daudio.jar
    4cefd000-4cf19000 r--s 00000000 03:06 166918 /usr/java/j2sdk1.4.2_04/jre/lib/ext/sunjce_provider.jar
    4cf19000-4cf26000 r--s 00000000 03:06 166916 /usr/java/j2sdk1.4.2_04/jre/lib/ext/ldapsec.jar
    4cf26000-4cfe2000 r--s 00000000 03:06 166906 /usr/java/j2sdk1.4.2_04/jre/lib/ext/localedata.jar
    4cfe2000-4d029000 r--s 00000000 03:06 168005 /usr/java/j2sdk1.4.2_04/jre/lib/ext/vecmath.jar
    4d029000-4d2f4000 r-xp 00000000 03:06 166965 /usr/java/j2sdk1.4.2_04/jre/lib/i386/libawt.so
    4d2f4000-4d30a000 rw-p 002ca000 03:06 166965 /usr/java/j2sdk1.4.2_04/jre/lib/i386/libawt.so
    4d32f000-4d382000 r-xp 00000000 03:06 166982 /usr/java/j2sdk1.4.2_04/jre/lib/i386/libmlib_image.so
    4d382000-4d383000 rw-p 00052000 03:06 166982 /usr/java/j2sdk1.4.2_04/jre/lib/i386/libmlib_image.so
    4d383000-4d385000 r-xp 00000000 03:06 27465 /usr/X11R6/lib/X11/locale/lib/common/xlcDef.so.2
    4d385000-4d386000 rw-p 00001000 03:06 27465 /usr/X11R6/lib/X11/locale/lib/common/xlcDef.so.2
    4d386000-4d38e000 r-xp 00000000 03:06 27483 /usr/X11R6/lib/libXcursor.so.1.0
    4d38e000-4d38f000 rw-p 00007000 03:06 27483 /usr/X11R6/lib/libXcursor.so.1.0
    4d390000-4d392000 r-xp 00000000 03:06 25837 /usr/lib/gconv/ISO8859-15.so
    4d392000-4d393000 rw-p 00001000 03:06 25837 /usr/lib/gconv/ISO8859-15.so
    4d394000-4d3e4000 r-xp 00000000 03:06 27507 /usr/X11R6/lib/libXt.so.6.0
    4d3e4000-4d3e7000 rw-p 00050000 03:06 27507 /usr/X11R6/lib/libXt.so.6.0
    4d3e8000-4d3f6000 r-xp 00000000 03:06 27485 /usr/X11R6/lib/libXext.so.6.4
    4d3f6000-4d3f7000 rw-p 0000d000 03:06 27485 /usr/X11R6/lib/libXext.so.6.4
    4d3f7000-4d3fc000 r-xp 00000000 03:06 27509 /usr/X11R6/lib/libXtst.so.6.1
    4d3fc000-4d3fd000 rw-p 00004000 03:06 27509 /usr/X11R6/lib/libXtst.so.6.1
    4d3fd000-4d4c7000 r-xp 00000000 03:06 27475 /usr/X11R6/lib/libX11.so.6.2
    4d4c7000-4d4cb000 rw-p 000c9000 03:06 27475 /usr/X11R6/lib/libX11.so.6.2
    4d4cb000-4d4d3000 r-xp 00000000 03:06 27473 /usr/X11R6/lib/libSM.so.6.0
    4d4d3000-4d4d4000 rw-p 00007000 03:06 27473 /usr/X11R6/lib/libSM.so.6.0
    4d4d4000-4d4e8000 r-xp 00000000 03:06 27471 /usr/X11R6/lib/libICE.so.6.3
    4d4e8000-4d4ea000 rw-p 00013000 03:06 27471 /usr/X11R6/lib/libICE.so.6.3
    4d4eb000-4d5a5000 r-xp 00000000 03:06 166969 /usr/java/j2sdk1.4.2_04/jre/lib/i386/libfontmanager.so
    4d5a5000-4d5bf000 rw-p 000b9000 03:06 166969 /usr/java/j2sdk1.4.2_04/jre/lib/i386/libfontmanager.so
    4d5c0000-4d5c6000 r--s 00000000 03:06 25881 /usr/lib/gconv/gconv-modules.cache
    4d5c6000-4d5c7000 r-xp 00000000 03:06 166975 /usr/java/j2sdk1.4.2_04/jre/lib/i386/libjawt.so
    4d5c7000-4d5c8000 rw-p 00000000 03:06 166975 /usr/java/j2sdk1.4.2_04/jre/lib/i386/libjawt.so
    4d5c8000-4d5cf000 r-xp 00000000 03:06 27493 /usr/X11R6/lib/libXi.so.6.0
    4d5cf000-4d5d0000 rw-p 00006000 03:06 27493 /usr/X11R6/lib/libXi.so.6.0
    4d5d1000-4d5d8000 r-xp 00000000 03:06 27505 /usr/X11R6/lib/libXrender.so.1.2
    4d5d8000-4d5d9000 rw-p 00006000 03:06 27505 /usr/X11R6/lib/libXrender.so.1.2
    4d5d9000-4d5f6000 r-xp 00000000 03:06 27464 /usr/X11R6/lib/X11/locale/lib/common/ximcp.so.2
    4d5f6000-4d5f8000 rw-p 0001c000 03:06 27464 /usr/X11R6/lib/X11/locale/lib/common/ximcp.so.2
    4d5f8000-4d619000 r-xp 00000000 03:06 168011 /usr/java/j2sdk1.4.2_04/jre/lib/i386/libJ3D.so
    4d619000-4d61a000 rw-p 00020000 03:06 168011 /usr/java/j2sdk1.4.2_04/jre/lib/i386/libJ3D.so
    4d62b000-4d7ef000 r-xp 00000000 03:06 34440 /usr/lib/GL/libGL.so.1.4.mesasoft
    4d7ef000-4d7f7000 rw-p 001c4000 03:06 34440 /usr/lib/GL/libGL.so.1.4.mesasoft
    4d803000-4d818000 r-xp 00000000 03:06 27495 /usr/X11R6/lib/libXmu.so.6.2
    4d818000-4d819000 rw-p 00015000 03:06 27495 /usr/X11R6/lib/libXmu.so.6.2
    4d8c4000-4d8e6000 rw-s 00000000 00:05 196609 /SYSV00000000 (deleted)
    Heap at VM Abort:
    Heap
    def new generation total 576K, used 62K [0x44750000, 0x447f0000, 0x44c30000)
    eden space 512K, 1% used [0x44750000, 0x44752318, 0x447d0000)
    from space 64K, 83% used [0x447e0000, 0x447ed648, 0x447f0000)
    to space 64K, 0% used [0x447d0000, 0x447d0000, 0x447e0000)
    tenured generation total 1408K, used 641K [0x44c30000, 0x44d90000, 0x48750000)
    the space 1408K, 45% used [0x44c30000, 0x44cd0628, 0x44cd0800, 0x44d90000)
    compacting perm gen total 5376K, used 5269K [0x48750000, 0x48c90000, 0x4c750000)
    the space 5376K, 98% used [0x48750000, 0x48c75670, 0x48c75800, 0x48c90000)
    Local Time = Fri Apr 30 19:37:52 2004
    Elapsed Time = 5
    # The exception above was detected in native code outside the VM
    # Java VM: Java HotSpot(TM) Client VM (1.4.2_04-b05 mixed mode)

    Have had the same problem but it have disappeared after reconfiguring 3D subsystem.
    Try the following:
    1) Edit file /etc/sysconfig/3ddiag. Set
           SCRIPT_3D="switch2xf86_glx"to enable XFree86 4.x/DRI
    2) run /sbin/SuSEconfig
    If this doesn't help, read
    http://www.blackdown.org/java-linux/jdk1.2-status/README-3D131-i386
    carefully, to check does your system fulfill other requirements.

  • Java 3d installation problem........

    Hi everyone, Im trying to install java 3d on my computer,
    Ive already studied a few tutorials and now I want to test my knowledge by making programs.
    I installed the file from http://java.sun.com/javase/technologies/desktop/java3d/ (around 2 mb) but my programs are still not compiling...
    whats wrong?
    thanks.

    How have you done it?
    I'm still trying to compile, but nothing. My compiler don't find java3d classes.
    I've installed java3d from installer.

  • Java Edition installation problem

    Hello,
    For the Full Java Edition System Requirements, it says i should remove an entry for the ports 3601, 3201 and 50000 to 50030. But in my services file, i have that entry for the port 3201 as follows:
       sapdp01          3201/tcp
    I am not sure if i encounter any serious problem when i remove this line?
    Best Regards,
    Serafettin

    HI,
    You can either remove these entries or you can change the SCS no and CI no so that there are no conflicts. To elucidate let us assume that you are installing a NW04 system, SID J2E, now it would ask you to enter the CI number. Here you have an option to change the SCS number, as the message and enque server depends on SCS number for their port definition.
    Eg: SID J2E
         JC00
         SCS01
    then the message server port incase of NW04 would be 3601 and enque server would be 3201.
    YOu just have to make sure that you have changed it tp avoid any conflict
    Reward, If sounds good

  • Java Servlet installation problem

    We have a Java Servlet program.
    To move into OAS.
    1.We need to configure the catridge(Done)
    2.We have to set the run time environment(I couldn't get this
    one)
    Oracle says two different methodology,
    1. From JDeveloper point of view
    2. From OAS point of view,
    I am not very clear in setting the environment variables and
    moving the files.
    Regards
    Nirmal
    null

    Hi,
    I think your problem has to do with your classpath. When compiling java classes, you must specify a classpath that the compiler will use to resolve your import statments. Since you are compiling a servlet, you must include the jar file that contains the javax.servlet package. Since you've installed the j2sdkee 1.3.1, you'll find the javax.serlvet package within the j2ee.jar file within the J2SDKEE 1.3.1 lib directory. So your javac command should look like this:
    javac -classpath <j2sdkee1.3.1 directory>/lib/j2ee.jar Test.java
    ( where j2sdkee1.3.1 directory is the path to where you installed the j2sdkee 1.3.1 ).
    I hope this helps?
    Cheers
    Jeff

  • Java Studio Installation Problem

    This is actually the very first time i'll be dealing with JAVA. And I'm quite excited. Im on my way installing Java Studio Enterprise 8.1.
    During installation (the portion where an username and password is being asked), I encounter an error that says "Could not save the Application Server Settings...".. Why is this so?
    Any help will highly be appreciated..!
    Best Regards

    What do you have in installation log file?
    On Windows it's in
    %SystemDrive%\Documents and Settings\user-ID\Local Settings\Temp\jstudio_ent81-installation-timestamp.random-number.log
    Also probably you can try to install application server as separate product.
    And a few useful links:
    Sun Java Studio Enterprise 8.1 Installation Guide
    http://developers.sun.com/prodtech/javatools/jsenterprise/reference/docs/jse8_1/sjse_install81.pdf
    Sun Java Studio Enterprise 8.1 home:
    http://developers.sun.com/prodtech/javatools/jsenterprise/index.jsp

  • Sneak Preview Java SP07 Installation problem at step 32

    I am trying to install the current version of Java version Sneak Preview SP07.
    At step 32 of 32 the system hangs.
    I am using windows xp and new hard drive. I have 1.4.2.09 java version.
    can anyone advise why this is happening? Your help will be appreciated.

    Hello ,
    I am also facing the same issue but using MaxDb instead of MS Sql ,does it usually take this long or am I missing anything?
    Any help would be highly appreciated.

  • Java 7 installation problem

    I am having trouble installing Java 7 on mac with osx 10.8.3. Java enabled in Safari preferences however Java will not run with message 'inactive plug-in'!
    Any suggestions would be appreciated.

    Click on the 'Inactive plug-in' text, this should enable it.

  • Installation problem for Java EE 5 SDK Update 2

    Hi ,
    I have jdk1.5.0_12 (J2SE) installed on my Windows XP. Now i am trying to install J2EE on my machine.I tried to install it twice but it comes to a halt after completing 45% at the same jar file. Following is the link which shows it comes to a halt.
    http://img141.imageshack.us/my.php?image=j2eeinstallhangupav8.png
    Also I wanted to know if I uninstall the J2SE and then install only J2EE will that be fine.Because I believe J2EE is a superset of J2SE ?
    Thanks in advance.

    For the difference between Java EE and Java SE read here:
    http://java.sun.com/javaee/5/docs/firstcup/doc/p3.html
    For the installation problem, I don�t know how to help you... maybe here you can find some ideas:
    http://forum.java.sun.com/thread.jspa?threadID=738559
    Andrea

  • Java ME SDK 8.0 EA Netbeans plugin installation problem

    We have been getting reports that some developer had trouble installing the Java ME SDK 8 EA plugins into NetBeans. We are working on fixing the issue, in the meantime please try the workaround posted in the Java ME SDK forum:
    Java ME SDK 8.0 EA Netbeans plugin installation problem
    Also be sure to check the latest ME SDK 8 EA Release Notes for late-braking information:
    http://docs.oracle.com/javame/dev-tools/jme-sdk-8/release-notes/html/Release_Notes/Release_Notes.html
    Sorry for the inconvenience.
    Best,
    -- Terrence

    Hi,
    For the Raspberry Pi, tooling over serial port is not supported. The simplest solution is to use standard IP networking over Ethernet. This can be a direct connection between the PC and the Raspberry Pi, as long as the cable is twisted and the IP addressing is correct (e.g. manual IP addressing or DHCP server on the PC).
    Regarding "Connecting to a UART Device": This is meant for attaching and controlling serial devices from the Raspberry Pi, not for tooling connections between the Raspberry Pi and the PC.
    Hope this helps,
    -- Terrence

  • Installation problem: "Java Security Configuration Asistant" failed

    Hello, does anybody can help for the following installation problem of Oracle Enterprise Manager 10g:
    During installation, when I come to the step "Configuration Asistants", the "Java Security Configuration Asistant" can not pass, it always failed even after retry. Pls help!!!

    I'm having the same problem installing on W2K, what I discovered is that it's unable to start listener, I hat to start it manually but it still won't end tihs task.
    I also have a 9i Client / Manager software installed in a 9i Home which disapeared from home selector.
    If I try to deinstall OEM10G it'll just get to a 2% advance and stop...
    ...is this a BETA?

Maybe you are looking for