SunJava 1.4.2_06

Help me...........I am told I need to run a program called SunJava ver 1.4.2_06 Today I have downloaded 4 Javas but still no luck.. I really need help as I don't really know what to do. I don't even know if I am in the right place for this question...........

If you follow the steps on this page http://java.sun.com/docs/books/tutorial/getStarted/cupojava/win32.html exactly, it should work.

Similar Messages

  • Unable to call CreateJavaVM through .so file

    Hi,
    I was able to run the basic invoke2.c program to call a java class.
    What I did was, changed the main() as load_func() with all statments intact.
    I created a module.so file (code attached) with this program.
    I tried to call the java program by calling the function in .so file, but it gave me an error. I have given the .log file that was created on executing this program.
    Can any one let me know what could be the problem.
    I have installed Ch Language environment in my system. which can be downloded from www.softintegration.com
    I doubt that Ch defines some symbols that java also wants to define. and it causes trouble during execution and the expected functions are not run.
    It would be of great if some could help me on this.
    thanks in advance
    kabilesh
    //main.c which i used to call the module.so
    #include <stdio.h>
    #include <dlfcn.h>
    int main(){
       void *handle;
       int (*fp)();
       char *modname = "./module.so";
       handle = dlopen(modname, RTLD_LAZY);
       if (handle == NULL) {
          fprintf(stderr, "Can't load %s %s\n", modname, dlerror());
          exit(1);
       fp = (int (*)())dlsym(handle, "load_func");
       if (fp== NULL) {
          fprintf(stderr, "ERROR: dlsym()  %s \n", dlerror());
          exit(1);
       printf("ok\n");
       fp();
    //module.c which i compiled and linked to create module.so
    #include<jni.h>
    #include<math.h>
    #include<stdio.h>
    #define USER_CLASSPATH "." /* where Prog.class is */
    jint load_func(void *varg)
    //int main()
    JNIEnv *env;
    JavaVM *jvm;
    jint res;
    jclass cls;
    jmethodID mid;
    jstring jstr;
    jclass stringClass;
    jobjectArray args;
    JavaVMInitArgs vm_args;
    JavaVMOption options[1];
    options[0].optionString =
    "-Djava.class.path=" USER_CLASSPATH;
    vm_args.version = 0x00010002;
    vm_args.options = options;
    vm_args.nOptions = 1;
    vm_args.ignoreUnrecognized = JNI_TRUE;
    printf("Inside load_func.c \n");
    printf("before JNI_CreateJavaVM(&jvm, (void**)&env, &vm_args\n");
    res = JNI_CreateJavaVM(&jvm, (void**)&env, &vm_args);
    /* never reach here */
    printf("after JNI_CreateJavaVM(&jvm, (void**)&env, &vm_args\n");
    if (res < 0) {
    printf("Can't create Java VM res = %d\n",res);
    exit(1);
    cls = (*env)->FindClass(env, "Prog");
    if (cls == NULL) {
            printf("findd class NULL \n");
            goto destroy;
    mid = (*env)->GetStaticMethodID(env, cls,
    "main","([Ljava/lang/String;)V");
    if (mid == NULL) {
    goto destroy;
    jstr = (*env)->NewStringUTF(env, " \n from C!");
    printf("\n from c just for fun\n");
    if (jstr == NULL) {
    goto destroy;
    stringClass = (*env)->FindClass(env, "java/lang/String");
    args = (*env)->NewObjectArray(env, 1, stringClass, jstr);
    if (args == NULL) {
    goto destroy;
    (*env)->CallStaticVoidMethod(env, cls, mid, args);
    destroy:
    printf("destroy\n");
    if ((*env)->ExceptionOccurred(env)) {
    (*env)->ExceptionDescribe(env);
    (*jvm)->DestroyJavaVM(jvm);
    //Prog.java
    public class Prog {
        public static void main(String[] args) {
            System.out.println("Hello World from java \n" + args[0]);
    #Makefile that i used
    CC = cc
    IFLAG= -I  /home/kcheeta/sunjava/j2sdk1.4.2_06/include -I /home/kcheeta/sunjava/j2sdk1.4.2_06/include/linux
    LFLAG=  -L /home/kcheeta/sunjava/j2sdk1.4.2_06/jre/lib/i386/client
    # for Linux
    CFLAGS =
    LFLAGS = -shared
    all: prog module.so
    prog: main.o
    #       $(CC) -o a.out main.o -lc -lm -ldl -rdynamic -lcurses -lcrypt
            $(CC) -o a.out main.o -ldl
    main.o: main.c
            $(CC) $(CFLAGS) -c main.c
    module.so: module.o
            $(CC) $(LFLAGS) -o module.so module.o $(LFLAG) -ljvm
    module.o: module.c
            $(CC) $(CFLAGS) -c module.c $(IFLAG)
    clean:
            rm -f *.o *.so prog a.out *.dl
    //The log file that the program generated on execution
    Unexpected Signal : 11 occurred at PC=0x402831A2
    Function=(null)+0x402831A2
    Library=/home/kcheeta/c2java_linux/bin/jre/lib/i386/client/libjvm.so
    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:
    Dynamic libraries:
    08048000-08049000 r-xp 00000000 03:03 3925708    /home/kcheeta/sunjava/c2java_linux/demos/a.out
    08049000-0804a000 rw-p 00000000 03:03 3925708    /home/kcheeta/sunjava/c2java_linux/demos/a.out
    40000000-40015000 r-xp 00000000 03:02 98139      /lib/ld-2.3.2.so
    40015000-40016000 rw-p 00015000 03:02 98139      /lib/ld-2.3.2.so
    40016000-40017000 r-xp 00000000 03:03 3925716    /home/kcheeta/sunjava/c2java_linux/demos/module.so
    40017000-40018000 rw-p 00000000 03:03 3925716    /home/kcheeta/sunjava/c2java_linux/demos/module.so
    40018000-40023000 r-xp 00000000 03:02 181427     /lib/tls/libpthread-0.34.so
    40023000-40024000 rw-p 0000a000 03:02 181427     /lib/tls/libpthread-0.34.so
    40027000-4002a000 r-xp 00000000 03:02 98185      /lib/libdl-2.3.2.so
    4002a000-4002b000 rw-p 00002000 03:02 98185      /lib/libdl-2.3.2.so
    4002b000-40427000 r-xp 00000000 03:03 492335     /home/kcheeta/c2java_linux/bin/jre/lib/i386/client/libjvm.so
    40427000-40443000 rw-p 003fb000 03:03 492335     /home/kcheeta/c2java_linux/bin/jre/lib/i386/client/libjvm.so
    40456000-4045e000 r-xp 00000000 03:03 492329     /home/kcheeta/c2java_linux/bin/jre/lib/i386/native_threads/libhpi.so
    4045e000-4045f000 rw-p 00007000 03:03 492329     /home/kcheeta/c2java_linux/bin/jre/lib/i386/native_threads/libhpi.so
    4045f000-40463000 rw-s 00000000 03:02 263384     /tmp/hsperfdata_kcheeta/27916
    40465000-40477000 r-xp 00000000 03:02 98161      /lib/libnsl-2.3.2.so
    40477000-40478000 rw-p 00011000 03:02 98161      /lib/libnsl-2.3.2.so
    4047a000-4049b000 r-xp 00000000 03:02 181426     /lib/tls/libm-2.3.2.so
    4049b000-4049c000 rw-p 00020000 03:02 181426     /lib/tls/libm-2.3.2.so
    404ac000-404b7000 r-xp 00000000 03:02 98334      /lib/libnss_files-2.3.2.so
    404b7000-404b8000 rw-p 0000a000 03:02 98334      /lib/libnss_files-2.3.2.so
    404b8000-404c0000 r-xp 00000000 03:02 98171      /lib/libnss_nis-2.3.2.so
    404c0000-404c1000 rw-p 00008000 03:02 98171      /lib/libnss_nis-2.3.2.so
    404c1000-404d1000 r-xp 00000000 03:03 492340     /home/kcheeta/c2java_linux/bin/jre/lib/i386/libverify.so
    404d1000-404d3000 rw-p 0000f000 03:03 492340     /home/kcheeta/c2java_linux/bin/jre/lib/i386/libverify.so
    404d3000-404f3000 r-xp 00000000 03:03 492341     /home/kcheeta/c2java_linux/bin/jre/lib/i386/libjava.so
    404f3000-404f5000 rw-p 0001f000 03:03 492341     /home/kcheeta/c2java_linux/bin/jre/lib/i386/libjava.so
    404f5000-40509000 r-xp 00000000 03:03 492343     /home/kcheeta/c2java_linux/bin/jre/lib/i386/libzip.so
    40509000-4050c000 rw-p 00013000 03:03 492343     /home/kcheeta/c2java_linux/bin/jre/lib/i386/libzip.so
    4050c000-41eb3000 r--s 00000000 03:03 492412     /home/kcheeta/c2java_linux/bin/jre/lib/rt.jar
    41efd000-41f13000 r--s 00000000 03:03 492365     /home/kcheeta/c2java_linux/bin/jre/lib/sunrsasign.jar
    41f13000-41ff0000 r--s 00000000 03:03 492409     /home/kcheeta/c2java_linux/bin/jre/lib/jsse.jar
    42000000-42130000 r-xp 00000000 03:02 179899     /lib/tls/libc-2.3.2.so
    42130000-42133000 rw-p 00130000 03:02 179899     /lib/tls/libc-2.3.2.so
    42136000-42147000 r--s 00000000 03:03 492366     /home/kcheeta/c2java_linux/bin/jre/lib/jce.jar
    42147000-426a0000 r--s 00000000 03:03 492410     /home/kcheeta/c2java_linux/bin/jre/lib/charsets.jar
    Heap at VM Abort:
    Heap def new generation   total 576K, used 0K [0x44750000, 0x447f0000, 0x44c30000)
      eden space 512K,   0% used [0x44750000, 0x44750048, 0x447d0000)  from space 64K,   0% used [0x447d0000, 0x447d0000, 0x447e0000)
      to   space 64K,   0% used [0x447e0000, 0x447e0000, 0x447f0000) tenured generation   total 1408K, used 0K [0x44c30000, 0x44d90000, 0x48750000)
       the space 1408K,   0% used [0x44c30000, 0x44c30000, 0x44c30200, 0x44d90000) compacting perm gen  total 4096K, used 277K [0x48750000, 0x48b50000, 0x4c750000)   the space 4096K,   6% used [0x48750000, 0x487956c0, 0x48795800, 0x48b50000)
    Local Time = Wed Mar  9 10:28:58 2005
    Elapsed Time = 0#
    # HotSpot Virtual Machine Error : 11
    # Error ID : 4F530E43505002EF
    # Please report this error at# http://java.sun.com/cgi-bin/bugreport.cgi
    # Java VM: Java HotSpot(TM) Client VM (1.4.2_06-b03 mixed mode)
    #

    Hello,
    How are you calling the chm file? If you are using a click
    box, you should be able to set the on success field to "Open URL or
    File" and type in the name of the file that you want to open. As
    long as it is in the same directory, this should not be a problem.
    Hope this helps
    Doug

  • 1.4.2_06 Hotspot Considered Harmful

    The following 23-line program, containing no library calls and nothing even remotely "tricky", consitently crashes the JVM on every Linux or Windows box we ve tried it on. We tried filing a bug report, but since someone once fixed a problem (5009717) generating the same error code some time back in an early 1.5 beta, this is a "duplicate" (despite the fact that it's on a 1.4 build apparently released after the previous bug was closed). A later attachment to the above bug report suggests that at least one other user has hit this, though.
    It is possible to make the problem "disappear" by rearranging the code, but our testing suggests that how long it takes to crop up is a function of Hotspot's optimization heuristics, so it's not easy be sure if you've avoided the problem or just pushed it one iteration past the number of times you've tested some particular path. In other words, you can't trust it.
    We're telling our customers to avoid 1.4.2_06 entirely because of this issue. We are big Java advocates in our company and industry and find it most painful and embarassing to have to tell people using our software that the (at this writing) current version of the Java 1.4 environment is
    unfit for use and we don't know when (or if) it will ever be fixed.
    // run this on 1.4.2_06
    public class GoodbyeWorld {
      public static double func1(){
        double r = 0;
        for (int i = 0; i < 1; i++)
          r += func2();
        return r;
      public static double func2(){
        double[] a = {0};
        double r = 0;
        for (int i = 0; i < 1; i++)
          r = a;
    return r;
    public static void main(String[] argv) {
    for (int i = 0; i < 1000; i++)
    func1(); // System.out.println("i["+i+"]=" + func1());
    $ java -version
    java version "1.4.2_06"
    Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.2_06-b03)
    Java HotSpot(TM) Client VM (build 1.4.2_06-b03, mixed mode)
    $ java GoodbyeWorld
    # HotSpot Virtual Machine Error, Internal Error
    # Please report this error at
    # http://java.sun.com/cgi-bin/bugreport.cgi
    # Java VM: Java HotSpot(TM) Client VM (1.4.2_06-b03 mixed mode)
    # Error ID: 43113F2652414D452D41503F491418160E435050005C
    # Problematic Thread: prio=1 tid=0x080a8eb0 nid=0x7954 runnable
    Heap at VM Abort:
    Heap
    def new generation   total 576K, used 156K [0x44770000, 0x44810000, 0x44c50000)
      eden space 512K,  30% used [0x44770000, 0x447971c0, 0x447f0000)
      from space 64K,   0% used [0x447f0000, 0x447f0000, 0x44800000)
      to   space 64K,   0% used [0x44800000, 0x44800000, 0x44810000)
    tenured generation   total 1408K, used 0K [0x44c50000, 0x44db0000, 0x48770000)
       the space 1408K,   0% used [0x44c50000, 0x44c50000, 0x44c50200, 0x44db0000)
    compacting perm gen  total 4096K, used 975K [0x48770000, 0x48b70000, 0x4c770000)
       the space 4096K,  23% used [0x48770000, 0x48863f80, 0x48864000, 0x48b70000)

    Thank you for the test case. I was able to reproduce this on solaris-i586, windows-i586, and on linux-i586. The crash is specific to the -client compiler and the i586 architecture. The expanded text of the Error-ID string is:
        43113F2652414D452D41503F491418160E435050005C
    Decodes to:
        c1_FrameMap_i486.cpp, 92The test case works fine using -server (or -Xint) on i586, and it works fine using both -client and -server on SPARC systems.
    I opened Bug-ID 6215242 on this issue. Look for is on the Bug-Parade in a day or two.

  • Missing fonts in 1.4.2_06 JRE?

    I was doing a file compare between 1.4.2_05 and 1.4.2_06
    and I noticed that the following TrueType fonts are missing from 1.4.2_06...
    LucidaBrightDemiBold.ttf
    LucidaBrightDemiItalic.ttf
    LucidaBrightItalic.ttf
    LucidaBrightRegular.ttf
    LucidaSansDemiBold.ttf
    LucidaTypewriterBold.ttf
    LucidaTypewriterRegular.ttf
    Was this done intentionally or is it a mistake. If it is intentional, why was it done?

    If there's no answer, asking a question doesn't mean that it'll get answered.
    Ask Sun the questions, they make the decisions about the changes in Java.
    Check out the functionality yourself, no one appears willing to do the research for you.
    hth

  • Signed java applet is very slow with 1.4.2_06

    We have an application which has a signed jar applets was working fine with Java Plug-in (JPI) version 1.4.1_02.
    Due to customer requirement they want to run the same applet with JPI version 1.4.2_06, After JPI upgrade the applet is running slow.
    I am not sure what sun has changed the security settings in 1.4.2_06. So, Can some one give there thoughts on why would it run slow because of JPI changes.
    Thanks in advance.
    Aj

    Hi,
    It is nothing to do with Signed applet.
    If URL Connection 's setDefaultCacheUses is set to false then this is causing to run the Applet slow. As it require to download complete jar(if any) everytime.
    From 1.4.1_02 (CachedJarURLConnection.class in jaws.jar):
    public void connect()
    throws IOException
    if(!connected)
    jarFile = JarCache.get(jarFileURL);
    if(jarFile != null)
    {�.
    From 1.4.2_06 (CachedJarURLConnection.class in plugin.jar):
    public void connect()
    throws IOException
    if(!connected)
    if(getUseCaches())
    jarFile = JarCache.get(jarFileURL);
    if(jarFile != null)
    {�                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

  • JSObject programming was not working when compiled in JSDK1.4.2_06

    JSObject programming was not working when compiled in JSDK1.4.2_06.
    But problem solved when i compiled with JSDK1.3.1_15 and tested with JVM 1.3.1_15.
    Still I could not run the class file generated in JSDK1.3.1_15 in JVM 1.4.2_06.
    What do you think happened across the SDK versions? Shouldn't the JSObject
    and other classes be part of the browser JVM.
    I want to know whether JSObject supports in JSDK1.4.2_06.
    It goes into the loop. It neither say error nor execute.

    Do not spam the site by posting to 4 forums

  • JSF 1.2_06 failed hard where MyFaces 1.2.1 issued a warning  0 : 1 for My F

    Using
    JSF 1.2_06 RI
    Facelets 1.1.14
    richfaces-ui-3.1.2.SP1.jar
    richfaces-impl-3.1.2.SP1.jar
    richfaces-api-3.1.2.SP1.jar
    Websphere 6.1.013 JDK 5 impl J2EE 1.4 spec
    before you say that it's not jsf 1.2, it's RichFaces, i already verified this and no it's not richFaces that cause this
    Error Rendering View[/quote/quote.xhtml]
                                     java.lang.NullPointerException
         at org.richfaces.renderkit.TabPanelRendererBase.encodeTabs(TabPanelRendererBase.java:327)
         at org.richfaces.renderkit.html.TabPanelRenderer.doEncodeBegin(TabPanelRenderer.java:227)
         at org.richfaces.renderkit.html.TabPanelRenderer.doEncodeBegin(TabPanelRenderer.java:180)
         at org.ajax4jsf.renderkit.RendererBase.encodeBegin(RendererBase.java:101)
         at javax.faces.component.UIComponentBase.encodeBegin(UIComponentBase.java:801)
         at javax.faces.component.UIComponent.encodeAll(UIComponent.java:934)
         at javax.faces.render.Renderer.encodeChildren(Renderer.java:148)
         at javax.faces.component.UIComponentBase.encodeChildren(UIComponentBase.java:825)
         at javax.faces.component.UIComponent.encodeAll(UIComponent.java:936)
         at javax.faces.component.UIComponent.encodeAll(UIComponent.java:942)
         at com.sun.facelets.FaceletViewHandler.renderView(FaceletViewHandler.java:592)
         at org.ajax4jsf.application.ViewHandlerWrapper.renderView(ViewHandlerWrapper.java:108)
         at org.ajax4jsf.application.AjaxViewHandler.renderView(AjaxViewHandler.java:216)
         at com.sun.faces.lifecycle.RenderResponsePhase.execute(RenderResponsePhase.java:110)
         at com.sun.faces.lifecycle.Phase.doPhase(Phase.java:100)
         at com.sun.faces.lifecycle.LifecycleImpl.render(LifecycleImpl.java:139)
         at javax.faces.webapp.FacesServlet.service(FacesServlet.java:266)
         at com.ibm.ws.webcontainer.servlet.ServletWrapper.service(ServletWrapper.java:989)
         at com.ibm.ws.webcontainer.servlet.ServletWrapper.service(ServletWrapper.java:930)
         at com.ibm.ws.webcontainer.filter.WebAppFilterChain.doFilter(WebAppFilterChain.java:145)
         at org.ajax4jsf.webapp.BaseXMLFilter.doXmlFilter(BaseXMLFilter.java:141)
         at org.ajax4jsf.webapp.BaseFilter.doFilter(BaseFilter.java:281)
         at com.ibm.ws.webcontainer.filter.FilterInstanceWrapper.doFilter(FilterInstanceWrapper.java:190)
         at com.ibm.ws.webcontainer.filter.WebAppFilterChain.doFilter(WebAppFilterChain.java:130)
         at com.bipt.tiva.interceptor.SessionFilter.doFilter(SessionFilter.java:45)
         at com.ibm.ws.webcontainer.filter.FilterInstanceWrapper.doFilter(FilterInstanceWrapper.java:190)
         at com.ibm.ws.webcontainer.filter.WebAppFilterChain.doFilter(WebAppFilterChain.java:130)
         at org.springframework.webflow.executor.jsf.FlowSystemCleanupFilter.doFilterInternal(FlowSystemClea
    nupFilter.java:40)
         at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:75)
         at com.ibm.ws.webcontainer.filter.FilterInstanceWrapper.doFilter(FilterInstanceWrapper.java:190)
         at com.ibm.ws.webcontainer.filter.WebAppFilterChain.doFilter(WebAppFilterChain.java:130)
         at com.ibm.ws.webcontainer.filter.WebAppFilterChain._doFilter(WebAppFilterChain.java:87)
         at com.ibm.ws.webcontainer.filter.WebAppFilterManager.doFilter(WebAppFilterManager.java:766)
         at com.ibm.ws.webcontainer.filter.WebAppFilterManager.doFilter(WebAppFilterManager.java:674)
         at com.ibm.ws.webcontainer.servlet.ServletWrapper.handleRequest(ServletWrapper.java:498)
         at com.ibm.ws.wswebcontainer.servlet.ServletWrapper.handleRequest(ServletWrapper.java:464)
         at com.ibm.ws.webcontainer.servlet.CacheServletWrapper.handleRequest(CacheServletWrapper.java:90)
         at com.ibm.ws.webcontainer.WebContainer.handleRequest(WebContainer.java:744)
         at com.ibm.ws.wswebcontainer.WebContainer.handleRequest(WebContainer.java:1455)
         at com.ibm.ws.webcontainer.channel.WCChannelLink.ready(WCChannelLink.java:113)
         at com.ibm.ws.http.channel.inbound.impl.HttpInboundLink.handleDiscrimination(HttpInboundLink.java:4
    54)
         at com.ibm.ws.http.channel.inbound.impl.HttpInboundLink.handleNewInformation(HttpInboundLink.java:3
    83)
         at com.ibm.ws.http.channel.inbound.impl.HttpICLReadCallback.complete(HttpICLReadCallback.java:102)
         at com.ibm.ws.tcp.channel.impl.AioReadCompletionListener.futureCompleted(AioReadCompletionListener.
    java:165)
         at com.ibm.io.async.AbstractAsyncFuture.invokeCallback(AbstractAsyncFuture.java:217)
         at com.ibm.io.async.AsyncChannelFuture.fireCompletionActions(AsyncChannelFuture.java:161)
         at com.ibm.io.async.AsyncFuture.completed(AsyncFuture.java:136)
         at com.ibm.io.async.ResultHandler.complete(ResultHandler.java:195)
         at com.ibm.io.async.ResultHandler.runEventProcessingLoop(ResultHandler.java:743)
         at com.ibm.io.async.ResultHandler$2.run(ResultHandler.java:873)
         at com.ibm.ws.util.ThreadPool$Worker.run(ThreadPool.java:1469)
         When i Replaced it with MyFaces 1.2.1-snapshot
    i got :
    UIComponentBa W javax.faces.component.UIComponentBase getClientId WARNING: Component j_id72 just got an automatic id, because there was no id a
    ssigned yet. If this component was created dynamically (i.e. not by a JSP tag) you should assign it an explicit static id or assign it the id you get from the createUniqueId from t
    he current UIViewRoot component right after creation! Path to Component: {Component-Path : [Class: org.ajax4jsf.component.AjaxViewRoot,ViewId: /policy/customer/view.xhtml][Class: j
    avax.faces.component.html.HtmlPanelGrid,Id: j_id25][Class: javax.faces.component.html.HtmlOutputText,Id: j_id72]}While it sure might be my fault for not knowing the JSF 1.2 spec from A to Z it does not help when the Implementation craps out with an ambiguous exceptions.
    MyFaces got my vote on this one...

    I could be really mean right now in my answer.
    I did not even have to post anything, i choose to use MyFaces 1.2.1 and scraped JSF 1.2_06 SUN RI out of my projects lib folder.
    Sorry dude that's the reality, the exceptions the SUN RI threw does not help me in trying to work on real life applications.
    You know i have read that Sun RI implementation is probably best out there since work began on the 1.2 spec way before Apache MyFaces started, hence potentially less buggy.
    I picked up the latest code from SUN RI and encountered at least 3 exceptions that are very low level and hard to mitigate.
    While without any JSF pages modifications i plugged in MyFaces 1.2.1-Snapshot and not a single NullPointerException or a failure.
    I just want to reflect here on this situation because i have been always defending SUN and it's work against other packages
    but my situation with upgrading from 1.1 to JSF 1.2 really puts a dent in my conviction
    specially where UI is such a risky business for us developers in the Web industry.
    this Forum probably is taking me longer then if i just logged the issue against RI.
    But my point is that when such frameworks are being developed they should be tested against real large applications under many industry problems.
    I am after getting this point across, because right now i don't care if you these exceptions are being fixed i dumped your packages anyway.
    Now i know MyFaces have their own problems, but at this moment they are not my issues, my project works using their implementation and that's the story .

  • Calendar Server Migration from iplanet5.2 to Sunjava messaging server

    Hi
    Can any one help me on Calendar server migration.
    How can i migrate the calendar server from iplanet 5.2 to sunjava messaging server
    Users
    Calendar resources
    Groups
    Attributes

    Hi,
    I assume you mean iplanet calendar server 5.1.1 to the latest calendar server (6.3). If so, I suggest you start by reading through the calendar server admin guide which goes through the steps involved and tools to use to migrate from 5.1.1 onto calendar server 6.3.
    http://www.sun.com/bigadmin/hubs/comms/library/manuals.calendar.jsp
    Regards,
    Shane.

  • JAVA Runtime version 1.4.2_06

    Hi,
    I need to download the Java Runtime Version 1.4.2_06 and I cannot seem to find a place to download the proper installation file. The Sun site was no help and I can't seem to find it on the Apple site. Any help in getting this exact version would be greatly appreciated.
    Dave

    Dave
    Welcome to Apple Discussions!!
    I need to download the Java Runtime Version 1.4.2_06I don't know if Java Update 1.4.2 will give you that exact version, since my java is now 1.5. Any files I have left over refer only to "1.4.2" with no suffix.

  • Java version 1.4.2_06 to 1.5.0_08 and 1.5.0_10     vs.   1.6.0_02

    Hello. I did a system check on my computer for an onlline course I'm taking and it stated that I am running java version 1.6.0_02 annd thhat I need to upgrade to 1.4.2_06 to 1.5.0_08 and/or 1.5.0_10. It seems to me thought that the numbbers are going backward - and this would bbe an error. Does 1.6.0_02 have thhe capabilities of the othher numbers? what does anyone recommend I do?
    thanks,
    szo

    They have a bug in their version check. They didn't make it future proof. A program that can execute on e.g. 1.5 should be able to execute on 1.6
    Kaj

  • Java version 1.4.2_06

    i wanted to download java version 1.4.2_06 but couldn't find this any were in sun site.
    why is it so difficult to get an already exisitng version?

    actually i wanted to copy my application to another system over the VPN.
    when i looked there it was having this version and mine is a higher one so i wanted to recompile mine in this to make it run over there since i don't have the privilage to upgrade their system.
    did i answer u?? curious handsome!!!

  • Error message on Java 1.4.2_06

    Hello everyone,
    I am really new to Java so bear with me.
    I am running an application that used java to display views on the web. this view used to be working fine in the beginning but now I always receive the following error message. Kindly find below...
    Java(TM) Plug-in: Version 1.4.2_06
    Using JRE version 1.4.2_06 Java HotSpot(TM) Client VM
    User home directory = C:\Documents and Settings\Administrator
    Proxy Configuration: No proxy
    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
    v: dump thread stack
    x: clear classloader cache
    0-5: set trace level to <n>
    Requesting URL: http://ov-nnm.otalgerie.com:7510/topology/communication.jar
    Warning: validation was turned on but an org.xml.sax.ErrorHandler was not
    set, which is probably not what is desired. Parser will use a default
    ErrorHandler to print the first 10 errors. Please call
    the 'setErrorHandler' method to fix this.
    Error: URI=null Line=2999: Attribute "thickness" is not declared for element "ShapeStyle".
    [rexView] (2-192.168.150.155-AWT-EventQueue-2)
    RECOVERABLE ERROR/WARNING:
    No action defined for actionId:f.ospfView
    [rexView] (2-192.168.150.155-AWT-EventQueue-2) [OVGUIClient] {Thread[AWT-EventQueue-2,4,http://ov-nnm.otalgerie.com:7510/topology/-threadGroup]} Runnable.run.processNotifyEvent() 159 byte message:
    <?xml version="1.0" encoding="UTF-8" ?>
    <OVMessage topic="customTabData" tab="IGP Routers" tooltip="A table of all known IGP routers.">
    <rexView>
    </OVMessage>
    Exception:
    org.xml.sax.SAXParseException: Expected "</rexView>" to terminate element starting on line 3.
         at org.apache.crimson.parser.Parser2.fatal(Unknown Source)
         at org.apache.crimson.parser.Parser2.fatal(Unknown Source)
         at org.apache.crimson.parser.Parser2.maybeElement(Unknown Source)
         at org.apache.crimson.parser.Parser2.content(Unknown Source)
         at org.apache.crimson.parser.Parser2.maybeElement(Unknown Source)
         at org.apache.crimson.parser.Parser2.parseInternal(Unknown Source)
         at org.apache.crimson.parser.Parser2.parse(Unknown Source)
         at org.apache.crimson.parser.XMLReaderImpl.parse(Unknown Source)
         at org.apache.crimson.jaxp.DocumentBuilderImpl.parse(Unknown Source)
         at com.hp.ov.console.client.OVGUIApplet.getDocumentFromString(OVGUIApplet.java:400)
         at com.hp.ov.console.client.OVGUIApplet.processNotifyEvent(OVGUIApplet.java:279)
         at com.hp.ov.console.client.ri.OVGUIClient$1.run(OVGUIClient.java:86)
         at java.awt.event.InvocationEvent.dispatch(Unknown Source)
         at java.awt.EventQueue.dispatchEvent(Unknown Source)
         at java.awt.EventDispatchThread.pumpOneEventForHierarchy(Unknown Source)
         at java.awt.EventDispatchThread.pumpEventsForHierarchy(Unknown Source)
         at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
         at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
         at java.awt.EventDispatchThread.run(Unknown Source)
    Any idea what is this error and how can I fix?

    where to continue from? What? Your typical compiled program has one entry point... there is no where/how to continue from.
    How are you running this thing? Have you got source code? Have you perchance been mofying the source code? Or maybe an XML congifuration file which came with?
    Are you trying to run a "boxed package" software, or are you a developer masquerading as a human?

  • Distinguish between 1.4.2_03 and 1.4.2_06

    Hi there, I was wondering if anyone could provide some advice:
    Our webstart app works fine on 1.4.2_03, but throws a CORBA marshalling error on 1.4.2_06. The class it fails to marshall is a MutableTreeNode, so it appears this class is incompatible between the JRE used on the server and the JRE used on the client.
    To prevent this, I was hoping there was some way to distinguish between the 2 JREs. From my understanding of the JNLP spec, I can have something like:
    <j2se version="1.4.2_03" href="localURL"/>But this would mean the localURL gets called each time, and a JRE repeatedly installed. Another idea I had was to create a small Main Proxy class that each JNLP invokes first, which would check the JRE version, then pass over to the real application.
    Any other ideas? Thanks, Neil

    hi neil..
    this might help u..
    <j2se version="1.4+"/>Thanks for the suggestion. Unfortunately I've already tried this :-(

  • JVM 1.4.2_06-b03 version has got a problem??

    Hi all,
    I am currently using the JVM version 1.4.2_06-b03 in Fedora Core 2.It gave me some problem in server socket program.The Problem is as follows ,
    I wrote a single threaded server program,which connects to database and does some insertion and selection from the database.
    While testing,i wrote a CLIENT program which which will PUMP the server socket with DATA,every two seconds.
    I ran the same program in JVM version 1.3.1_15-b01 and i was checking the logs.
    After three hours or four, the 1.4 version program got hung. The Socket was still listening, as i was able to telnet to the port.
    The socket was not taking any input and i was not able to KILL the JAVA PROCESS also.
    But the same PROGRAM was running fine in JDK 1.3.1_15 version.
    Is there any problem in that version of JVM?? If yes, which version was the bug solved and which is the stable version in JVM 1.4 ??
    There was no issues with the Database server as it was working fine for other programs.
    Please if any one could help me let me know as soon as possible
    Regards
    Vickraman V.P

    Thanks BIJO .i will try out with the version you have specified.and can u explain how to check in bug parade???
    Regards,
    Vickraman V.P

  • Upgrading from 1.4.2_04 to 1.4.2_06, 1.4.2_07 or 1.4.2_08 ?

    I am in need to upgrade my JMV from 1.4.2_04 due to known JVM issues solved in 1.4.2_06 and newer.
    I seek the most stable version and therefore need to pick between 06, 07 or the latest 08.
    Which version is considered the less risky more used and more stable atm?

    Note that 1.4.2_06 and 1.4.2_07 have
    "completed the Sun EOL process and are no longer supported under standard support contracts. These products are down-revision products that may have various bugs, Y2000, and possibly security issues associated with them. Sun in no way recommends these products be used in a live, production environment. Any use of product on this page is at the sole discretion of the developer and Sun assumes no responsiblity for any resulting problems."
    [url http://java.sun.com/products/archive/eol.policy.html]Java Technology EOL Policy

Maybe you are looking for

  • Web Service Response with Extra Data

    I am calling a vendor web service, using HTTP adapter, and get a "No data allowed here" error.  When looking at the payload coming back from my vendor (the service response), it looks like they are adding data before and after the xml portion of the

  • Strange pagination behaviour on detail report (BUG?)

    Hi I've the following situation: Form on a table and below an sql report based on value of one of form fields. Everything is fine as long, as I use form's primary key for the report, but when I use any other field, pagination breaks - going to the ne

  • Regarding listener on component in JFrame!!!!!

    I am making JFrame having a JPanel added to its North now in this JPanel i have JButton . Now i m adding key listener to the JPanel the problem is when i put focus on button and press any key the key pressed method is not called however i read that i

  • Clone stamp tool on a 3D object (CS5)

    I'm getting very odd color corruption, using the clone stamp tool on a 3D object. I'm using it for one of the main aspects of PS 3D, painting out UV seams on an object. And I'm getting a very odd artifact: an entirely brown texture is, when sampled w

  • Is cost available from REST?

    I see costs on order confirmation pages, but having trouble finding this data via REST.  The demo system I am using has $0.0 cost everywhere.  I assume it would still be available through API and returned as 0.0, but maybe I need to set actual costs