Using JNLP to load a Java Plugin FrameWork based Applications.

I have a simple application which pull up with different number JPF plugins along with it. I could pull them up easily as normal desktop application but can't with webstart.
Is there a possibility please guide me.
Thanks

I have no experience with JPF, are you referring to this?
http://jpf.sourceforge.net/
If that is the case, you might try consulting
the experts on it, via the forum link..
http://sourceforge.net/forum/forum.php?forum_id=378299
In fact, second from top (at this moment) is
a relevant post with this reply
http://sourceforge.net/forum/forum.php?thread_id=1656695&forum_id=378299

Similar Messages

  • Load testing tool for FMS based application

    Is there any tool which can be used for Load testing of
    FMS?Our Flash based application uses FMS for streaming LIVE
    audio/video and data and we need to test the sceanrio that what
    happens to remote server and FMS when 1000 users get connected.

    quote:
    Originally posted by:
    dineshawasthi
    Is there any tool which can be used for Load testing of
    FMS?Our Flash based application uses FMS for streaming LIVE
    audio/video and data and we need to test the sceanrio that what
    happens to remote server and FMS when 1000 users get connected.
    No standard tool will be able to test your own application
    the way you describe here.
    The answer however is pretty simple ; write a simple swf that
    can connect (automatically) to a random available instance and let
    it play a stream.
    Since you probably developed your application yourself this
    shouldn't be a problem.
    Next open 20-50 swf's (in 20-50 browsers) on your desktop.
    Repeat on the desktops of your collegues. Open as many swf's
    as possible. (if your FMS server is in your LAN otherwise you'll
    probably will hit your bandwidth-limit soon)
    This will give a very good impression of load, bandwidth and
    stability of your application.

  • Virus attack on page load thru Java plugin, which won't take "Disable" - re-enables itself - like a virus.

    As a page loaded, there were Java update popups. The virus went right past updated Avast & AdAware and immediately took over my PC. Spoofed an anti-virus app that needed "activation" (with my Credit card of course). After 3 days of scans & scrubbing that showed a dozen of so viruses & trojens (inc. in my restore pts), I want to disable Java until I need it on a trusted site.

    Does the ext directory have the php_oci8.dll? In the original steps the PHP dir is renamed. In the given php.in the extension_dir looks like it has been updated correctly. Since PHP distributes php_oci8.dll by default I reckon there would be a very good chance that the problem was somewhere else. Since this is an old thread I don't think we'll get much value from speculation.
    -- cj

  • I am using os x 10.9 java plugin is missing

    formally for my banking sites i could use safari no i cannot use safari as well as firefox
    as my bank requires java and jre 6 iam using os x 10.9

    http://www.java.com is where to download the latest Java update.

  • Using AJAX to load city, state, metro area based on zip code

    I'm new to getting APEX to work with AJAX properly. I've been reading some tutorials and trying to apply what they do to my situation, but I'm running into a problem. I have a text field item for zip code. What I want to happen is that when someone enters in a zip code, I want to use AJAX to populate 3 different select lists (1 each for state, city, and metro area) and to populate a checkbox (of neighborhoods based on the zip code as well). I'm looking at the examples in:
    http://www.oraclealchemist.com/wp-content/uploads/2006/11/s281946.pdf
    and
    http://apex.oracle.com/pls/otn/f?p=11933:63
    But they all use examples where the value of a text field item is used to populate 1 select list. I can't figure out how to apply that methodology to populate 3 select lists and 1 checkbox item. I've got all my SELECT statements written to populate these fields based on the value of the zip code text field item, but don't know how to convert what I already have to use AJAX.
    Here are my SELECT statements:
    P2805_STATE lov:
    ===========================================================================================
    SELECT INITCAP(GEO_DATA_STATE.STATEFULLNAME) d,GEO_DATA_STATE.STATE v
    FROM GEO_DATA_STATE, GEO_DATA_ZIP
    WHERE isPrimary = 'P' and
    trim(upper(GEO_DATA_ZIP.STATE)) = trim(upper(GEO_DATA_STATE.STATE)) and
    GEO_DATA_ZIP.ZIPCODE = :P2805_ZIPCODE
    ORDER BY STATEFULLNAME
    P2805_CITY lov:
    ===========================================================================================
    SELECT UNIQUE (INITCAP(GEO_DATA_CITY.CITY)) d,GEO_DATA_CITY.CITY v
    FROM GEO_DATA_STATE, GEO_DATA_ZIP, GEO_DATA_CITY
    WHERE
    trim(upper(GEO_DATA_ZIP.STATE)) = trim(upper(GEO_DATA_STATE.STATE)) and
    trim(upper(GEO_DATA_ZIP.CITY)) = trim(upper(GEO_DATA_CITY.CITY)) and
    GEO_DATA_ZIP.ZIPCODE = :P2805_ZIPCODE
    ORDER BY GEO_DATA_CITY.CITY
    P2805_METRO_AREA lov:
    ===========================================================================================
    SELECT UNIQUE (INITCAP(GEO_DATA_METRO.METRO_AREA)) d,GEO_DATA_METRO.CODE v
    FROM GEO_DATA_STATE, GEO_DATA_ZIP, GEO_DATA_METRO
    WHERE
    trim(upper(GEO_DATA_ZIP.STATE)) = trim(upper(GEO_DATA_STATE.STATE)) and
    trim(upper(GEO_DATA_ZIP.METROCODE)) = trim(upper(GEO_DATA_METRO.CODE)) and
    GEO_DATA_ZIP.ZIPCODE = :P2805_ZIPCODE
    ORDER BY 1
    P2805_NEIGHBORHOOD lov:
    ===========================================================================================
    SELECT UNIQUE (INITCAP(GEO_DATA_HOOD.HOOD)) d,GEO_DATA_HOOD.HOOD v
    FROM GEO_DATA_STATE, GEO_DATA_ZIP, GEO_DATA_METRO, GEO_DATA_HOOD
    WHERE
    trim(upper(GEO_DATA_ZIP.STATE)) = trim(upper(GEO_DATA_STATE.STATE)) and
    trim(upper(GEO_DATA_ZIP.METROCODE)) = trim(upper(GEO_DATA_METRO.CODE)) and
    GEO_DATA_HOOD.METRO_CODE = GEO_DATA_METRO.CODE and
    GEO_DATA_ZIP.ZIPCODE = :P2805_ZIPCODE
    ORDER BY 1Do all these statements need to go in 1 on-demand process? Where do I go from here?

    Andy, cool. This is starting to make more sense. THANKS A BUNCH! OK. I've gone ahead and modified the on demand process to suit my needs, so I have:
    begin
      owa_util.mime_header('text/xml', FALSE );
      htp.p('Cache-Control: no-cache');
      htp.p('Pragma: no-cache');
      owa_util.http_header_close;
      -- Building States list
      htp.prn('<SELECT>');
      FOR i in (
        SELECT INITCAP(GEO_DATA_STATE.STATEFULLNAME) d, GEO_DATA_STATE.STATE v
        FROM GEO_DATA_STATE, GEO_DATA_ZIP
        WHERE isPrimary = 'P' and
        trim(upper(GEO_DATA_ZIP.STATE)) = trim(upper(GEO_DATA_STATE.STATE)) and
        GEO_DATA_ZIP.ZIPCODE = :P2805_ZIPCODE
        ORDER BY STATEFULLNAME
      LOOP
        htp.prn('<OPTION VALUE=''' || i.v || '''>' || i.d || '</OPTION>');
      END LOOP;
      htp.prn('</SELECT>');
      -- Building Cities list
      htp.prn('<SELECT>');
      FOR i in (
        SELECT UNIQUE (INITCAP(GEO_DATA_CITY.CITY)) d, GEO_DATA_CITY.CITY v
        FROM GEO_DATA_STATE, GEO_DATA_ZIP, GEO_DATA_CITY
        WHERE
        trim(upper(GEO_DATA_ZIP.STATE)) = trim(upper(GEO_DATA_STATE.STATE)) and
        trim(upper(GEO_DATA_ZIP.CITY)) = trim(upper(GEO_DATA_CITY.CITY)) and
        GEO_DATA_ZIP.ZIPCODE = :P2805_ZIPCODE
        ORDER BY GEO_DATA_CITY.CITY
      LOOP
        htp.prn('<OPTION VALUE=''' || i.v || '''>' || i.d || '</OPTION>');
      END LOOP;
      htp.prn('</SELECT>');
      -- Building Metro Area list
      htp.prn('<SELECT>');
      FOR i in (
        SELECT UNIQUE (INITCAP(GEO_DATA_METRO.METRO_AREA)) d, GEO_DATA_METRO.CODE v
        FROM GEO_DATA_STATE, GEO_DATA_ZIP, GEO_DATA_METRO
        WHERE
        trim(upper(GEO_DATA_ZIP.STATE)) = trim(upper(GEO_DATA_STATE.STATE)) and
        trim(upper(GEO_DATA_ZIP.METROCODE)) = trim(upper(GEO_DATA_METRO.CODE)) and
        GEO_DATA_ZIP.ZIPCODE = :P2805_ZIPCODE
        ORDER BY 1
      LOOP
        htp.prn('<OPTION VALUE=''' || i.v || '''>' || i.d || '</OPTION>');
      END LOOP;
      htp.prn('</SELECT>');
      -- Building Neighborhood list
      htp.prn('<SELECT>');
      FOR i in (
        SELECT UNIQUE (INITCAP(GEO_DATA_HOOD.HOOD)) d, GEO_DATA_HOOD.HOOD v
        FROM GEO_DATA_STATE, GEO_DATA_ZIP, GEO_DATA_METRO, GEO_DATA_HOOD
        WHERE
        trim(upper(GEO_DATA_ZIP.STATE)) = trim(upper(GEO_DATA_STATE.STATE)) and
        trim(upper(GEO_DATA_ZIP.METROCODE)) = trim(upper(GEO_DATA_METRO.CODE)) and
        GEO_DATA_HOOD.METRO_CODE = GEO_DATA_METRO.CODE and
        GEO_DATA_ZIP.ZIPCODE = :P2805_ZIPCODE
        ORDER BY 1
      LOOP
        htp.prn('<OPTION VALUE=''' || i.v || '''>' || i.d || '</OPTION>');
      END LOOP;
      htp.prn('</SELECT>');
    end;It doesn't look like I would have to modify the appendToSelect function at all, correct? Is the checkbox that I need to populate handled the same way as these select lists? And it seems like I only need to make the 2 changes that you mentioned to get_AJAX_SELECT_XML function, right? So my javascript function should be like:
    <script language="JavaScript1.1" type="text/javascript">
    function get_AJAX_SELECT_XML(pThis,pSelect1,pSelect2,pSelect3,pSelect4){
    if  (document.getElementById('P2805_ZIPCODE').value.length == 5)
         var l_Return = null;
         var l_Select1 = $x(pSelect1);
         var l_Select2 = $x(pSelect2);
         var l_Select3 = $x(pSelect3);
         var l_Select4 = $x(pSelect4);
         var get = new htmldb_Get(null,$x('pFlowId').value,'APPLICATION_PROCESS=otn_Select_XML',0);
         get.add('TEMPORARY_ITEM',pThis.value);
         gReturn = get.get('XML');
         var sels = gReturn.getElementsByTagName("select");
         if(gReturn && l_Select1){
              var l_Count = sels[0].getElementsByTagName("option").length;
              l_Select1.length = 0;
              for(var i=0;i<l_Count;i++){
                   var l_Opt_Xml = sels[0].getElementsByTagName("option");
                   appendToSelect(l_Select1, l_Opt_Xml.getAttribute('value'), l_Opt_Xml.firstChild.nodeValue)
         if(gReturn && l_Select2){
              var l_Count = sels[1].getElementsByTagName("option").length;
              l_Select2.length = 0;
              for(var i=0;i<l_Count;i++){
                   var l_Opt_Xml = sels[1].getElementsByTagName("option")[i];
                   appendToSelect(l_Select2, l_Opt_Xml.getAttribute('value'), l_Opt_Xml.firstChild.nodeValue)
         if(gReturn && l_Select3){
              var l_Count = sels[2].getElementsByTagName("option").length;
              l_Select3.length = 0;
              for(var i=0;i<l_Count;i++){
                   var l_Opt_Xml = sels[2].getElementsByTagName("option")[i];
                   appendToSelect(l_Select3, l_Opt_Xml.getAttribute('value'), l_Opt_Xml.firstChild.nodeValue)
         if(gReturn && l_Select4){
              var l_Count = sels[3].getElementsByTagName("option").length;
              l_Select4.length = 0;
              for(var i=0;i<l_Count;i++){
                   var l_Opt_Xml = sels[3].getElementsByTagName("option")[i];
                   appendToSelect(l_Select4, l_Opt_Xml.getAttribute('value'), l_Opt_Xml.firstChild.nodeValue)
         get = null;
    &lt;/script&gt;
    And then since all 4 items (3 select lists and 1 checkbox item) are populated based on the value inputted in the text field item, I would only need to add the following to the html form element attribute of my text field item, right?
    onKeyUp="javascript:get_AJAX_SELECT_XML(this,'P2805_STATE','P2805_CITY','P2805_METRO_AREA','P2805_NEIGHBORHOOD');"Denes, thanks for the example. It seems like what I need to do is somewhere inbetween what you have and what's in the example on http://apex.oracle.com/pls/otn/f?p=11933:37. I have 3 select lists and 1 checkbox item that should all be populate depending on the value entered for the text item. Do I still need to split everything up then into a function and an on demand process for each select list and checkbox?

  • I've seen many posts with different answers about Safari crashing when using Flash 10.4-10.5 PlugIn. Based on the following info, what should I do to stop this from happening on my computer?  Thanks!

    Process:         Safari [60337]
    Path:            /Applications/Safari.app/Contents/MacOS/Safari
    Identifier:      com.apple.Safari
    Version:         5.0.5 (5533.21.1)
    Build Info:      WebBrowser-75332101~2
    Code Type:       X86 (Native)
    Parent Process:  launchd [405]
    Interval Since Last Report:          998 sec
    Crashes Since Last Report:           1
    Per-App Interval Since Last Report:  973 sec
    Per-App Crashes Since Last Report:   1
    Date/Time:       2011-05-29 22:44:13.955 -0700
    OS Version:      Mac OS X 10.5.8 (9L31a)
    Report Version:  6
    Anonymous UUID:  3FCC9F35-58DC-491C-A2D7-DE9E2331A623
    Exception Type:  EXC_BAD_ACCESS (SIGBUS)
    Exception Codes: KERN_PROTECTION_FAILURE at 0x0000000000000004
    Crashed Thread:  25
    Thread 0:
    0   libSystem.B.dylib                       0xffff0292 __spin_lock + 50 (cpu_capabilities.h:234)
    1   com.apple.CFNetwork                     0x96c6da33 HostLookup_Master::getAddrInfoCallback(int, addrinfo*) + 307
    2   com.apple.CFNetwork                     0x96c79a10 CacheEntry::callbackLookup(Lookupable*) + 118
    3   com.apple.CFNetwork                     0x96c79a3a CacheEntry::_runLoopPerform(void*) + 24
    4   com.apple.CoreFoundation                0x957dc3c5 CFRunLoopRunSpecific + 3141
    5   com.apple.CoreFoundation                0x957dcaa8 CFRunLoopRunInMode + 88
    6   com.apple.HIToolbox                     0x943fe2ac RunCurrentEventLoopInMode + 283
    7   com.apple.HIToolbox                     0x943fe0c5 ReceiveNextEventCommon + 374
    8   com.apple.HIToolbox                     0x943fdf39 BlockUntilNextEventMatchingListInMode + 106
    9   com.apple.AppKit                        0x971816d5 _DPSNextEvent + 657
    10  com.apple.AppKit                        0x97180f88 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 128
    11  com.apple.Safari                        0x00015d97 0x1000 + 85399
    12  com.apple.AppKit                        0x97179f9f -[NSApplication run] + 795
    13  com.apple.AppKit                        0x971471d8 NSApplicationMain + 574
    14  com.apple.Safari                        0x0000a38e 0x1000 + 37774
    Thread 1:
    0   libSystem.B.dylib                       0x917ab44e __semwait_signal + 10
    1   libSystem.B.dylib                       0x917d5dcd pthread_cond_wait$UNIX2003 + 73
    2   com.apple.JavaScriptCore                0x95bc17ff ***::TCMalloc_PageHeap::scavengerThread() + 175
    3   com.apple.JavaScriptCore                0x95bc1b1f ***::TCMalloc_PageHeap::runScavengerThread(void*) + 15
    4   libSystem.B.dylib                       0x917d5155 _pthread_start + 321
    5   libSystem.B.dylib                       0x917d5012 thread_start + 34
    Thread 2:
    0   libSystem.B.dylib                       0x917ab44e __semwait_signal + 10
    1   libSystem.B.dylib                       0x917d5dcd pthread_cond_wait$UNIX2003 + 73
    2   com.apple.WebCore                       0x91fb5824 WebCore::IconDatabase::syncThreadMainLoop() + 260
    3   com.apple.WebCore                       0x91fb1b2c WebCore::IconDatabase::iconDatabaseSyncThread() + 188
    4   libSystem.B.dylib                       0x917d5155 _pthread_start + 321
    5   libSystem.B.dylib                       0x917d5012 thread_start + 34
    Thread 3:
    0   libSystem.B.dylib                       0x917a4266 mach_msg_trap + 10
    1   libSystem.B.dylib                       0x917aba5c mach_msg + 72
    2   com.apple.CoreFoundation                0x957dbe7e CFRunLoopRunSpecific + 1790
    3   com.apple.CoreFoundation                0x957dcaa8 CFRunLoopRunInMode + 88
    4   com.apple.CFNetwork                     0x96bf118c CFURLCacheWorkerThread(void*) + 388
    5   libSystem.B.dylib                       0x917d5155 _pthread_start + 321
    6   libSystem.B.dylib                       0x917d5012 thread_start + 34
    Thread 4:
    0   libSystem.B.dylib                       0x917a4266 mach_msg_trap + 10
    1   libSystem.B.dylib                       0x917aba5c mach_msg + 72
    2   com.apple.CoreFoundation                0x957dbe7e CFRunLoopRunSpecific + 1790
    3   com.apple.CoreFoundation                0x957dcaa8 CFRunLoopRunInMode + 88
    4   com.apple.Safari                        0x0002eacf 0x1000 + 187087
    5   com.apple.Safari                        0x0002e818 0x1000 + 186392
    6   com.apple.Safari                        0x0002e7b1 0x1000 + 186289
    7   libSystem.B.dylib                       0x917d5155 _pthread_start + 321
    8   libSystem.B.dylib                       0x917d5012 thread_start + 34
    Thread 5:
    0   libSystem.B.dylib                       0x917a4266 mach_msg_trap + 10
    1   libSystem.B.dylib                       0x917aba5c mach_msg + 72
    2   com.apple.CoreFoundation                0x957dbe7e CFRunLoopRunSpecific + 1790
    3   com.apple.CoreFoundation                0x957dcaa8 CFRunLoopRunInMode + 88
    4   com.apple.Foundation                    0x90532520 +[NSURLConnection(NSURLConnectionReallyInternal) _resourceLoadLoop:] + 320
    5   com.apple.Foundation                    0x904cedfd -[NSThread main] + 45
    6   com.apple.Foundation                    0x904ce9a4 __NSThread__main__ + 308
    7   libSystem.B.dylib                       0x917d5155 _pthread_start + 321
    8   libSystem.B.dylib                       0x917d5012 thread_start + 34
    Thread 6:
    0   libSystem.B.dylib                       0x917f36fa select$DARWIN_EXTSN + 10
    1   libSystem.B.dylib                       0x917d5155 _pthread_start + 321
    2   libSystem.B.dylib                       0x917d5012 thread_start + 34
    Thread 7:
    0   libSystem.B.dylib                       0x917a4266 mach_msg_trap + 10
    1   libSystem.B.dylib                       0x917aba5c mach_msg + 72
    2   com.apple.CoreFoundation                0x957dbe7e CFRunLoopRunSpecific + 1790
    3   com.apple.CoreFoundation                0x957dcaa8 CFRunLoopRunInMode + 88
    4   com.apple.audio.CoreAudio               0x970365f8 HALRunLoop::OwnThread(void*) + 160
    5   com.apple.audio.CoreAudio               0x97036480 CAPThread::Entry(CAPThread*) + 96
    6   libSystem.B.dylib                       0x917d5155 _pthread_start + 321
    7   libSystem.B.dylib                       0x917d5012 thread_start + 34
    Thread 8:
    0   libSystem.B.dylib                       0x917ab44e __semwait_signal + 10
    1   libSystem.B.dylib                       0x917d5dcd pthread_cond_wait$UNIX2003 + 73
    2   com.apple.JavaScriptCore                0x95a64151 ***::ThreadCondition::timedWait(***::Mutex&, double) + 81
    3   com.apple.Safari                        0x001ad898 0x1000 + 1755288
    4   com.apple.Safari                        0x00044981 0x1000 + 276865
    5   com.apple.Safari                        0x000448d1 0x1000 + 276689
    6   libSystem.B.dylib                       0x917d5155 _pthread_start + 321
    7   libSystem.B.dylib                       0x917d5012 thread_start + 34
    Thread 9:
    0   libSystem.B.dylib                       0x917ab44e __semwait_signal + 10
    1   libSystem.B.dylib                       0x917d5dcd pthread_cond_wait$UNIX2003 + 73
    2   com.apple.JavaScriptCore                0x95a64151 ***::ThreadCondition::timedWait(***::Mutex&, double) + 81
    3   com.apple.WebCore                       0x9230573c WebCore::LocalStorageThread::threadEntryPoint() + 188
    4   libSystem.B.dylib                       0x917d5155 _pthread_start + 321
    5   libSystem.B.dylib                       0x917d5012 thread_start + 34
    Thread 10:
    0   libSystem.B.dylib                       0x917ab44e __semwait_signal + 10
    1   libSystem.B.dylib                       0x917d5dcd pthread_cond_wait$UNIX2003 + 73
    2   libGLProgrammability.dylib              0x93dbab32 glvmDoWork + 162
    3   libSystem.B.dylib                       0x917d5155 _pthread_start + 321
    4   libSystem.B.dylib                       0x917d5012 thread_start + 34
    Thread 11:
    0   libSystem.B.dylib                       0x917a42ae semaphore_wait_signal_trap + 10
    1   libSystem.B.dylib                       0x917d62c6 _pthread_cond_wait + 1267
    2   libSystem.B.dylib                       0x9181b539 pthread_cond_wait + 48
    3   ...lashPlayer-10.4-10.5.plugin          0x18f9443f unregister_ShockwaveFlash + 47247
    4   ...lashPlayer-10.4-10.5.plugin          0x18b66eff 0x18b4d000 + 106239
    5   ...lashPlayer-10.4-10.5.plugin          0x18f9452c unregister_ShockwaveFlash + 47484
    6   ...lashPlayer-10.4-10.5.plugin          0x18f94570 unregister_ShockwaveFlash + 47552
    7   ...lashPlayer-10.4-10.5.plugin          0x18f94696 unregister_ShockwaveFlash + 47846
    8   libSystem.B.dylib                       0x917d5155 _pthread_start + 321
    9   libSystem.B.dylib                       0x917d5012 thread_start + 34
    Thread 12:
    0   libSystem.B.dylib                       0x917a42ae semaphore_wait_signal_trap + 10
    1   libSystem.B.dylib                       0x917d62c6 _pthread_cond_wait + 1267
    2   libSystem.B.dylib                       0x9181b539 pthread_cond_wait + 48
    3   ...lashPlayer-10.4-10.5.plugin          0x18f9443f unregister_ShockwaveFlash + 47247
    4   ...lashPlayer-10.4-10.5.plugin          0x18b66eff 0x18b4d000 + 106239
    5   ...lashPlayer-10.4-10.5.plugin          0x18f9452c unregister_ShockwaveFlash + 47484
    6   ...lashPlayer-10.4-10.5.plugin          0x18f94570 unregister_ShockwaveFlash + 47552
    7   ...lashPlayer-10.4-10.5.plugin          0x18f94696 unregister_ShockwaveFlash + 47846
    8   libSystem.B.dylib                       0x917d5155 _pthread_start + 321
    9   libSystem.B.dylib                       0x917d5012 thread_start + 34
    Thread 13:
    0   libSystem.B.dylib                       0x917a42c6 semaphore_timedwait_signal_trap + 10
    1   libSystem.B.dylib                       0x917d62af _pthread_cond_wait + 1244
    2   libSystem.B.dylib                       0x917d7b33 pthread_cond_timedwait_relative_np + 47
    3   ...lashPlayer-10.4-10.5.plugin          0x18f94407 unregister_ShockwaveFlash + 47191
    4   ...lashPlayer-10.4-10.5.plugin          0x18d2cafe 0x18b4d000 + 1964798
    5   ...lashPlayer-10.4-10.5.plugin          0x18f9452c unregister_ShockwaveFlash + 47484
    6   ...lashPlayer-10.4-10.5.plugin          0x18f94570 unregister_ShockwaveFlash + 47552
    7   ...lashPlayer-10.4-10.5.plugin          0x18f94696 unregister_ShockwaveFlash + 47846
    8   libSystem.B.dylib                       0x917d5155 _pthread_start + 321
    9   libSystem.B.dylib                       0x917d5012 thread_start + 34
    Thread 14:
    0   libSystem.B.dylib                       0x917a42c6 semaphore_timedwait_signal_trap + 10
    1   libSystem.B.dylib                       0x917d62af _pthread_cond_wait + 1244
    2   libSystem.B.dylib                       0x917d7b33 pthread_cond_timedwait_relative_np + 47
    3   ...lashPlayer-10.4-10.5.plugin          0x18f94407 unregister_ShockwaveFlash + 47191
    4   ...lashPlayer-10.4-10.5.plugin          0x18e7e905 0x18b4d000 + 3348741
    5   ...lashPlayer-10.4-10.5.plugin          0x18f9452c unregister_ShockwaveFlash + 47484
    6   ...lashPlayer-10.4-10.5.plugin          0x18f94570 unregister_ShockwaveFlash + 47552
    7   ...lashPlayer-10.4-10.5.plugin          0x18f94696 unregister_ShockwaveFlash + 47846
    8   libSystem.B.dylib                       0x917d5155 _pthread_start + 321
    9   libSystem.B.dylib                       0x917d5012 thread_start + 34
    Thread 15:
    0   libSystem.B.dylib                       0x917a42c6 semaphore_timedwait_signal_trap + 10
    1   libSystem.B.dylib                       0x917d62af _pthread_cond_wait + 1244
    2   libSystem.B.dylib                       0x917d7b33 pthread_cond_timedwait_relative_np + 47
    3   ...lashPlayer-10.4-10.5.plugin          0x18f94407 unregister_ShockwaveFlash + 47191
    4   ...lashPlayer-10.4-10.5.plugin          0x18d2cafe 0x18b4d000 + 1964798
    5   ...lashPlayer-10.4-10.5.plugin          0x18f9452c unregister_ShockwaveFlash + 47484
    6   ...lashPlayer-10.4-10.5.plugin          0x18f94570 unregister_ShockwaveFlash + 47552
    7   ...lashPlayer-10.4-10.5.plugin          0x18f94696 unregister_ShockwaveFlash + 47846
    8   libSystem.B.dylib                       0x917d5155 _pthread_start + 321
    9   libSystem.B.dylib                       0x917d5012 thread_start + 34
    Thread 16:
    0   libSystem.B.dylib                       0x917a42c6 semaphore_timedwait_signal_trap + 10
    1   libSystem.B.dylib                       0x917d62af _pthread_cond_wait + 1244
    2   libSystem.B.dylib                       0x917d7b33 pthread_cond_timedwait_relative_np + 47
    3   ...lashPlayer-10.4-10.5.plugin          0x18f94407 unregister_ShockwaveFlash + 47191
    4   ...lashPlayer-10.4-10.5.plugin          0x18e7e905 0x18b4d000 + 3348741
    5   ...lashPlayer-10.4-10.5.plugin          0x18f9452c unregister_ShockwaveFlash + 47484
    6   ...lashPlayer-10.4-10.5.plugin          0x18f94570 unregister_ShockwaveFlash + 47552
    7   ...lashPlayer-10.4-10.5.plugin          0x18f94696 unregister_ShockwaveFlash + 47846
    8   libSystem.B.dylib                       0x917d5155 _pthread_start + 321
    9   libSystem.B.dylib                       0x917d5012 thread_start + 34
    Thread 17:
    0   libSystem.B.dylib                       0x917a42c6 semaphore_timedwait_signal_trap + 10
    1   libSystem.B.dylib                       0x917d62af _pthread_cond_wait + 1244
    2   libSystem.B.dylib                       0x917d7b33 pthread_cond_timedwait_relative_np + 47
    3   ...lashPlayer-10.4-10.5.plugin          0x18f94407 unregister_ShockwaveFlash + 47191
    4   ...lashPlayer-10.4-10.5.plugin          0x18d2cafe 0x18b4d000 + 1964798
    5   ...lashPlayer-10.4-10.5.plugin          0x18f9452c unregister_ShockwaveFlash + 47484
    6   ...lashPlayer-10.4-10.5.plugin          0x18f94570 unregister_ShockwaveFlash + 47552
    7   ...lashPlayer-10.4-10.5.plugin          0x18f94696 unregister_ShockwaveFlash + 47846
    8   libSystem.B.dylib                       0x917d5155 _pthread_start + 321
    9   libSystem.B.dylib                       0x917d5012 thread_start + 34
    Thread 18:
    0   libSystem.B.dylib                       0x917a42c6 semaphore_timedwait_signal_trap + 10
    1   libSystem.B.dylib                       0x917d62af _pthread_cond_wait + 1244
    2   libSystem.B.dylib                       0x917d7b33 pthread_cond_timedwait_relative_np + 47
    3   ...lashPlayer-10.4-10.5.plugin          0x18f94407 unregister_ShockwaveFlash + 47191
    4   ...lashPlayer-10.4-10.5.plugin          0x18e7e905 0x18b4d000 + 3348741
    5   ...lashPlayer-10.4-10.5.plugin          0x18f9452c unregister_ShockwaveFlash + 47484
    6   ...lashPlayer-10.4-10.5.plugin          0x18f94570 unregister_ShockwaveFlash + 47552
    7   ...lashPlayer-10.4-10.5.plugin          0x18f94696 unregister_ShockwaveFlash + 47846
    8   libSystem.B.dylib                       0x917d5155 _pthread_start + 321
    9   libSystem.B.dylib                       0x917d5012 thread_start + 34
    Thread 19:
    0   libSystem.B.dylib                       0x917a4266 mach_msg_trap + 10
    1   libSystem.B.dylib                       0x917aba5c mach_msg + 72
    2   com.apple.CoreFoundation                0x957dbe7e CFRunLoopRunSpecific + 1790
    3   com.apple.CoreFoundation                0x957dcb04 CFRunLoopRun + 84
    4   com.apple.DesktopServices               0x94e76d0f TSystemNotificationTask::SystemNotificationTaskProc(void*) + 123
    5   ...ple.CoreServices.CarbonCore          0x95dd0fbb PrivateMPEntryPoint + 56
    6   libSystem.B.dylib                       0x917d5155 _pthread_start + 321
    7   libSystem.B.dylib                       0x917d5012 thread_start + 34
    Thread 20:
    0   libSystem.B.dylib                       0x917a4266 mach_msg_trap + 10
    1   libSystem.B.dylib                       0x917aba5c mach_msg + 72
    2   com.apple.CoreFoundation                0x957dbe7e CFRunLoopRunSpecific + 1790
    3   com.apple.CoreFoundation                0x957dcb04 CFRunLoopRun + 84
    4   com.apple.DesktopServices               0x94e76e88 TFSEventsNotificationTask::FSEventsNotificationTaskProc(void*) + 216
    5   ...ple.CoreServices.CarbonCore          0x95dd0fbb PrivateMPEntryPoint + 56
    6   libSystem.B.dylib                       0x917d5155 _pthread_start + 321
    7   libSystem.B.dylib                       0x917d5012 thread_start + 34
    Thread 21:
    0   libSystem.B.dylib                       0x917ab44e __semwait_signal + 10
    1   libSystem.B.dylib                       0x917d5dcd pthread_cond_wait$UNIX2003 + 73
    2   ...ple.CoreServices.CarbonCore          0x95dd2de3 TSWaitOnCondition + 126
    3   ...ple.CoreServices.CarbonCore          0x95db1c36 TSWaitOnConditionTimedRelative + 202
    4   ...ple.CoreServices.CarbonCore          0x95dd2a60 MPWaitOnQueue + 208
    5   com.apple.DesktopServices               0x94e81e6a TNodeSyncTask::SyncTaskProc(void*) + 84
    6   ...ple.CoreServices.CarbonCore          0x95dd0fbb PrivateMPEntryPoint + 56
    7   libSystem.B.dylib                       0x917d5155 _pthread_start + 321
    8   libSystem.B.dylib                       0x917d5012 thread_start + 34
    Thread 22:
    0   libSystem.B.dylib                       0x917d49c6 kevent + 10
    1   libSystem.B.dylib                       0x917d5155 _pthread_start + 321
    2   libSystem.B.dylib                       0x917d5012 thread_start + 34
    Thread 23:
    0   libSystem.B.dylib                       0x917a42c6 semaphore_timedwait_signal_trap + 10
    1   libSystem.B.dylib                       0x917d62af _pthread_cond_wait + 1244
    2   libSystem.B.dylib                       0x917d7b33 pthread_cond_timedwait_relative_np + 47
    3   ...ple.CoreServices.CarbonCore          0x95db1c62 TSWaitOnConditionTimedRelative + 246
    4   ...ple.CoreServices.CarbonCore          0x95dd2a60 MPWaitOnQueue + 208
    5   com.apple.DesktopServices               0x94e83db4 TFolderSizeTask::FolderSizeTaskProc(void*) + 104
    6   ...ple.CoreServices.CarbonCore          0x95dd0fbb PrivateMPEntryPoint + 56
    7   libSystem.B.dylib                       0x917d5155 _pthread_start + 321
    8   libSystem.B.dylib                       0x917d5012 thread_start + 34
    Thread 24:
    0   libSystem.B.dylib                       0x917a42c6 semaphore_timedwait_signal_trap + 10
    1   libSystem.B.dylib                       0x917d62af _pthread_cond_wait + 1244
    2   libSystem.B.dylib                       0x917d7b33 pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation                    0x90514dbc -[NSCondition waitUntilDate:] + 236
    4   com.apple.Foundation                    0x90514bd0 -[NSConditionLock lockWhenCondition:beforeDate:] + 144
    5   com.apple.Foundation                    0x90514b35 -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.AppKit                        0x971e76e8 -[NSUIHeartBeat _heartBeatThread:] + 753
    7   com.apple.Foundation                    0x904cedfd -[NSThread main] + 45
    8   com.apple.Foundation                    0x904ce9a4 __NSThread__main__ + 308
    9   libSystem.B.dylib                       0x917d5155 _pthread_start + 321
    10  libSystem.B.dylib                       0x917d5012 thread_start + 34
    Thread 25 Crashed:
    0   libSystem.B.dylib                       0xffff0269 __spin_lock + 9 (cpu_capabilities.h:234)
    1   com.apple.CFNetwork                     0x96c79998 CacheEntry::_runLoopSchedule(void*, __CFRunLoop*, __CFString const*) + 38
    2   com.apple.CoreFoundation                0x957d95e4 CFRunLoopAddSource + 532
    3   com.apple.CFNetwork                     0x96bef868 _CFTypeScheduleOnRunLoop + 388
    4   com.apple.CFNetwork                     0x96c6c1b4 Host::scheduleWithRunLoop(__CFRunLoop*, __CFString const*) + 86
    5   com.apple.CFNetwork                     0x96c55809 Schedulables::_SchedulablesScheduleApplierFunction(void const*, void*) + 33
    6   com.apple.CoreFoundation                0x9576b676 CFArrayApplyFunction + 198
    7   com.apple.CFNetwork                     0x96c558e7 Schedulables::schedule(__CFRunLoop*, __CFString const*) + 77
    8   com.apple.CFNetwork                     0x96c4f33f SocketStream::schedule_NoLock(void const*, __CFRunLoop*, __CFString const*) + 211
    9   com.apple.CFNetwork                     0x96c51476 SocketStream::open(void const*, CFStreamError*, unsigned char*) + 338
    10  com.apple.CFNetwork                     0x96c544b8 WriteStreamCallbacks::_open(__CFWriteStream*, CFStreamError*, unsigned char*, void*) + 52
    11  com.apple.CoreFoundation                0x957f0a9c _CFStreamOpen + 316
    12  com.apple.CoreFoundation                0x957f0bd8 CFWriteStreamOpen + 152
    13  com.apple.CFNetwork                     0x96c4ae79 HTTPWriteFilter::streamOpen(__CFWriteStream*, CFStreamError*, unsigned char*) + 135
    14  com.apple.CFNetwork                     0x96c4771e CFNetworkWriteStream::httpStreamOpen(__CFWriteStream*, CFStreamError*, unsigned char*, void*) + 38
    15  com.apple.CoreFoundation                0x957f0a9c _CFStreamOpen + 316
    16  com.apple.CoreFoundation                0x957f0bd8 CFWriteStreamOpen + 152
    17  com.apple.CFNetwork                     0x96c40c7d NetConnection::openConnectionStreams() + 25
    18  com.apple.CFNetwork                     0x96c41556 NetConnection::scheduleNewRequest(_CFNetRequest*, _CFNetRequest*, unsigned char) + 122
    19  com.apple.CFNetwork                     0x96c4187a NetConnection::enqueue(void*, unsigned char) + 290
    20  com.apple.CFNetwork                     0x96bf350c _CFNetConnectionEnqueue + 40
    21  com.apple.CFNetwork                     0x96c45ffe HTTPNetStreamInfo::streamOpen(__CFReadStream*, CFStreamError*, unsigned char*) + 46
    22  com.apple.CFNetwork                     0x96c47136 CFNetworkReadStream::httpStreamOpen(__CFReadStream*, CFStreamError*, unsigned char*, void*) + 38
    23  com.apple.CoreFoundation                0x957f0a9c _CFStreamOpen + 316
    24  com.apple.CoreFoundation                0x957f0c98 CFReadStreamOpen + 152
    25  com.apple.CFNetwork                     0x96c4c92e HTTPReadStream::startRequest(CFStreamError*) + 538
    26  com.apple.CFNetwork                     0x96c4d185 HTTPReadStream::streamOpen(__CFReadStream*, CFStreamError*, unsigned char*) + 109
    27  com.apple.CFNetwork                     0x96c47136 CFNetworkReadStream::httpStreamOpen(__CFReadStream*, CFStreamError*, unsigned char*, void*) + 38
    28  com.apple.CoreFoundation                0x957f0a9c _CFStreamOpen + 316
    29  com.apple.CoreFoundation                0x957f0c98 CFReadStreamOpen + 152
    30  ...lashPlayer-10.4-10.5.plugin          0x18fb0493 unregister_ShockwaveFlash + 162019
    31  ...lashPlayer-10.4-10.5.plugin          0x18fa7122 unregister_ShockwaveFlash + 124274
    32  ...lashPlayer-10.4-10.5.plugin

    First, don't post these long crash logs.  Hardly anyone here knows how to interpret them so they just take up space.
    You have two choices: 1. uninstall Flash; 2. Install Flash 10.3.181 and hope for the best.

  • 1.6.0_23 JNLP2ClassLoader.findClass try again . slow jnlp applet loading

    Hello everyone,
    I am using jnlp to load applet. using jre1.6.0_23. (next generation plugin).
    While loading the applet I am getting following messages,
    security: The root CA hasnt been replaced
    security: No timestamping info available
    security: Found jurisdiction list file
    security: No need to checking trusted extension for this certificate
    security: The CRL support is disabled
    security: The OCSP support is disabled
    security: This OCSP End Entity validation is disabled
    security: Checking if certificate is in Deployment denied certificate store
    security: Checking if certificate is in Deployment permanent certificate store
    network: Cache entry not found [url: http://package/mic/ri/lib/japllet.jar, version: null]
    basic: Plugin2ClassLoader.getPermissions CeilingPolicy allPerms
    security: JAVAWS AppPolicy Permission requested for: http://testurl/test/ri/lib/jpllet.jar
    basic: JNLP2ClassLoader.getPermissions() X
    basic: JNLP2ClassLoader.findClass: com.pack.MyApplet: try again ..
    basic: JNLP2ClassLoader.findClass: com.pack.DefaultMICLookAndFeel: try again ..
    basic: JNLP2ClassLoader.findClass: com.pack.XMLScreen: try again ..
    basic: JNLP2ClassLoader.findClass: com.pack.JRenderer$1: try again ..
    basic: JNLP2ClassLoader.findClass: com.pack.TimeoutPopup: try again ..
    basic: JNLP2ClassLoader.findClass: com.pack.TransparentContainer: try again ..
    basic: JNLP2ClassLoader.findClass: com.pack.SwingWorker: try again ..
    basic: JNLP2ClassLoader.findClass: com.pack.JRenderer$10: try again ..
    basic: JNLP2ClassLoader.findClass: com.pack.StatusPanel: try again ..
    Let me know if anyone want to look at entire messages in java console.
    for all the classes in jar which is signed.
    JNLP I am using.
    *<?xml version="1.0" encoding="UTF-8" ?>*
    *<jnlp spec="1.0+">*
    *<information>*
    *<title>TestApp</title>*
    *<vendor>TestApp</vendor>*
    *</information>*
    *<security>*
    *<all-permissions/>*
    *<j2ee-application-client-permissions/>*
    *</security>*
    *<resources>*
    *<j2se version="1.6+"/>*
    *<jar href="japllet.jar" main="true" version="0007.0000.0012.0000"/>*
    *<property name="jnlp.versionEnabled" value="true"/>*
    *</resources>*
    *<applet-desc*
    name="TestApplet"
    main-class="com.pack.MyApplet"
    width="300"
    height="300">
    *</applet-desc>*
    *</jnlp>*
    and am using the deployJava.js in html.. find below the snippet from html,
    *+<script src=\"http://www.java.com/js/deployJava.js\"></script>+*
    *+<script type="text/javascript">+*
    +var attributes = {width:'100%', height:'100%'};+*
    +var parameters = {jnlp_href:'mttest.jnlp'}+*
    deployJava.runApplet(attributes, parameters, version);*
    *+</script>+*
    In the above script I have tried various combinations like codebase, code, type, archive. finally i kept the minimal attributes and parameters.
    Kindly note my applet is working fine in the browser. But I think because of the try again messages in java console it is taking time to load the applet ?
    Any help on this highly appreciated. I have almost spent my week trying to remove these messages.

    837182 wrote:
    ..the last message of fetching resources japllet.jar is there as i changed the location. .. How? To what? I now note the applet Jar uses a version number, which JaNeLA fails to take into account.
    ..but how about rest of the messages, How to get rid of those ? ..Although I wrote the software, in conjunction with others, we did not configure it to send us an email when someone runs the software. Because of that (and hopefully unsurprisingly) I will state that I do not know what JaNeLA reported. OTOH I will make a WAG that there was an 'invalid content' message somewhere in the report.
    Have you checked the JaNeLA Help page? It is the first place to check the error messages.
    Some notes:
    <li> Most of the errors are produced by J2SE inbuilt tools, and are messages common to XML validation. Search the net for them and you should find many hits.
    <li> You can 'ignore' the warnings and optimizations. They are intended to identify things that might or might not be relevant. JaNeLA is unable to tell, and prompts you to make an informed decision.
    As to whether it matters, consider this. I dealt with a failed JNLP launch that came down to illegal characters in the application title field. That is not something that JaNeLA even checks. But the simple principle is: Garbage In, Garbage Out. Before even considering why a JWS based launch is failing (or not working as you expect), it pays to ensure the input files are as logical and valid as we can make them. Otherwise 'all bets are off' as to how JWS clients will parse and act (or not) on the JNLP.
    Reviewing the original problem now that you have at least run the JaNeLA tool. Just as an 'out there' suggestion, try adding a codebase_lookup='false' parameter into the applet code (JNLP launch file(1)). That attribute is only relevant to applets that can use loose class files & JWS should not need that, but it might indicate a JRE bug if it speeds things up.
    1) ..Oh heck, throw it into the deployJava.js script as well. It will probably not help, but cannot hurt.
    BTW: How big is apllet.jar in bytes? How 'slow' in seconds/minutes is slow? What is the network bandwidth of the testing machine(s)?
    And now I remember to mention:
    1) 'apllet' -> 'applet'.
    2) Please use the code tags when posting Java or JavaScript code or snippets, XML/HTML/JNLP or input/output. For details see the 'sticky post' on the top of the forum thread listing. It is still possible to edit your original post to add the code tags.

  • Firefox 32 loading firefox 64 plugins..

    I followed the guide on archwiki how to install a 32 chroot and then I installed Firefox, and jre. The whole reason I did this is so I could have the java web browser plugin. Now I load up Firefox32 (I'm in it right now..)
    and go to about:plugins..and theres no java plugin. But it did load my flash 10 plugin from Firefox 64..
    After browsing for a bit I saw this output in konsole
    /home/lib/i386/libjavaplugin_nscp.so: cannot open shared object file: No such file or directory/home/lib/i386/libjavaplugin_nscp.so
    ..Any ideas?

    I have Icedtea installed for 64, problem is the website I'm trying to use doesn't work correctly with it.
    I went though the wiki again, I forgot to do "xhost +local:" and I also installed and used dchroot and it ran Firefox and Opera fine (before opera wouldn't start), and they both loaded the java plugin..but they both crash on the site
    Ah well..at least I got half of it to work.

  • Firefox ( =1.0.5) + Java Plugin (1.4.2_08) can't run applets

    Hi
    I'm using gentoo linux and i've been using firefox with the sun java plugin for some time without any problems. however, in the last few weeks there suddenly appeared the following problem with the java plugin:
    Whenever I try to open a page with an applet, there is the java logo, and after some time, there's a red "X" in the place of the applet. When I subsequently open the java console, I always get the same error message (Encyclo.class contains the applet):
    java.lang.ClassNotFoundException: Encyclo.class
         at sun.applet.AppletClassLoader.findClass(AppletClassLoader.java:162)
         at java.lang.ClassLoader.loadClass(ClassLoader.java:289)
         at sun.applet.AppletClassLoader.loadClass(AppletClassLoader.java:123)
         at java.lang.ClassLoader.loadClass(ClassLoader.java:235)
         at sun.applet.AppletClassLoader.loadCode(AppletClassLoader.java:566)
         at sun.applet.AppletPanel.createApplet(AppletPanel.java:619)
         at sun.plugin.AppletViewer.createApplet(AppletViewer.java:1879)
         at sun.applet.AppletPanel.runLoader(AppletPanel.java:548)
         at sun.applet.AppletPanel.run(AppletPanel.java:299)
         at java.lang.Thread.run(Thread.java:534)
    Caused by: java.net.ConnectException: Invalid argument
         at java.net.PlainSocketImpl.socketConnect(Native Method)
         at java.net.PlainSocketImpl.doConnect(PlainSocketImpl.java:305)
         at java.net.PlainSocketImpl.connectToAddress(PlainSocketImpl.java:171)
         at java.net.PlainSocketImpl.connect(PlainSocketImpl.java:158)
         at java.net.Socket.connect(Socket.java:452)
         at sun.net.NetworkClient.doConnect(NetworkClient.java:137)
         at sun.plugin.net.protocol.http.HttpClient.doConnect(HttpClient.java:106)
         at sun.net.www.http.HttpClient.openServer(HttpClient.java:402)
         at sun.net.www.http.HttpClient.openServer(HttpClient.java:618)
         at sun.net.www.http.HttpClient.<init>(HttpClient.java:306)
         at sun.net.www.http.HttpClient.<init>(HttpClient.java:267)
         at sun.plugin.net.protocol.http.HttpClient.<init>(HttpClient.java:41)
         at sun.plugin.net.protocol.http.HttpClient.New(HttpClient.java:62)
         at sun.plugin.net.protocol.http.HttpURLConnection.createConnection(HttpURLConnection.java:101)
         at sun.plugin.net.protocol.http.HttpURLConnection.connect(HttpURLConnection.java:158)
         at sun.plugin.net.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:393)
         at java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:272)
         at sun.applet.AppletClassLoader.getBytes(AppletClassLoader.java:263)
         at sun.applet.AppletClassLoader.access$100(AppletClassLoader.java:43)
         at sun.applet.AppletClassLoader$1.run(AppletClassLoader.java:152)
         at java.security.AccessController.doPrivileged(Native Method)
         at sun.applet.AppletClassLoader.findClass(AppletClassLoader.java:149)
         ... 9 more
    I have no Idea what could be wrong. Please help.

    One of my colleagues found a workaround.
    This problem is maybe related to selinux.
    If you disable selinux, applets will work well.
    [ To disable selinux find the line beginning with "SELINUX="
    in your /etc/sysconfig/selinux file and change it to "SELINUX=disabled".
    And then you perhaps have to reboot. ]
    HTH:
    B�lint

  • Problem when loading simple java class in Oracle

    Hi,
    I am using loadjava to load the java class in the oracle database. But it is failing. Can some one please help me out with this.
    Command.
    loadjava -thin -user username/password@zrtph0ja:1521:database -resolve firstProcedure.class
    Errors:
    Error while computing shortname of firstProcedure
    ORA-06550: line 1, column 13:
    PLS-00201: identifier 'DBMS_JAVA.SHORTNAME' must be declared
    ORA-06550: line 1, column 7:
    PL/SQL: Statement ignored
    Error while computing shortname of firstProcedure
    ORA-06550: line 1, column 13:
    PLS-00201: identifier 'DBMS_JAVA.SHORTNAME' must be declared
    ORA-06550: line 1, column 7:
    PL/SQL: Statement ignored
    ORA-29521: referenced name java/io/PrintStream could not be found
    ORA-29521: referenced name java/lang/Object could not be found
    ORA-29521: referenced name java/lang/String could not be found
    ORA-29521: referenced name java/lang/StringBuffer could not be found
    ORA-29521: referenced name java/lang/System could not be found
    loadjava: 7 errors
    Please help.
    Regards
    Sudhir
    null

    U havent installed JServer in ur DBMS.
    Read the Oracle 8i JServer Manual for
    manually installing the Oracle JVM.

  • Oracle.apps.fnd.framework.OAException: Application: FND, Message Name: SEC*

    Hi,
    I am trying to create my first OA Project..
    I am getting the following error ..
    (Will this be related to the permission assigned to the username which i am using ???)
    oracle.apps.fnd.framework.OAException: Application: FND, Message Name: SECURITY_APPL_LOGIN_FAILED.
         at oracle.apps.fnd.framework.server.OAExceptionUtils.processAOLJErrorStack(Unknown Source)
         at oracle.apps.fnd.framework.OACommonUtils.processAOLJErrorStack(Unknown Source)
         at oracle.apps.fnd.framework.CreateIcxSession.getEncryptedSessId(Unknown Source)
         at oracle.apps.fnd.framework.CreateIcxSession.createSession(Unknown Source)
         at runregion.jspService(_runregion.java:132)
         at com.orionserver.http.OrionHttpJspPage.service(OrionHttpJspPage.java:59)
         at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:453)
         at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:591)
         at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:515)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
         at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:711)
         at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:368)
         at com.evermind.server.http.HttpRequestHandler.doProcessRequest(HttpRequestHandler.java:866)
         at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:448)
         at com.evermind.server.http.HttpRequestHandler.serveOneRequest(HttpRequestHandler.java:216)
         at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:117)
         at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:110)
         at oracle.oc4j.network.ServerSocketReadHandler$SafeRunnable.run(ServerSocketReadHandler.java:260)
         at oracle.oc4j.network.ServerSocketAcceptHandler.procClientSocket(ServerSocketAcceptHandler.java:239)
         at oracle.oc4j.network.ServerSocketAcceptHandler.access$700(ServerSocketAcceptHandler.java:34)
         at oracle.oc4j.network.ServerSocketAcceptHandler$AcceptHandlerHorse.run(ServerSocketAcceptHandler.java:880)
         at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:298)
         at java.lang.Thread.run(Thread.java:595)
    Thanks in advance..
    regards
    (Gagsy)

    I found the probem.
    Its because of the wrong username/password of the application.
    Thank you.

  • How to pass parameters from a dashboard or report to any OA Framework-based

    In Metalink Note:276708.1, about Oracle E-Business Intelligence Minipack L (4.0.9).
    Common Features for Dashboards and Reports section say:
    You can now pass parameters from a dashboard or report to any OA Framework-based application page.
    How to do pass?
    Regards,
    Arone

    Nobody help me?

  • Swing applet does not work in IE using java plugin

    I am using applet-servlet communication in my Applet and also using java plugin 1.3 to open that applet in browser.It is working fine in Netscape 4.7 but not in IE 5.0.
    Problem is It could not get any data from the database.
    If you have any solutions it will be appriciated.
    thanks

    did you find your problem with the IE 6.0
    Java problem.Java(TM) Plug-in: Version 1.4.2_01
    Using JRE version 1.4.2_01 Java HotSpot(TM) Client VM
    I have something simular and was looking for a fix.
    .yavs: Yet Another Vertical Scroller, version 1.2
    (c) 1998 Steve Bassler http://www.westol.com/~bassmstr
    yavs: Yet Another Vertical Scroller, version 1.2
    (c) 1998 Steve Bassler http://www.westol.com/~bassmstr
    yavs: Yet Another Vertical Scroller, version 1.2
    (c) 1998 Steve Bassler http://www.westol.com/~bassmstr
    load: class xms.EntryApplet.class not found.
    java.lang.ClassNotFoundException: xms.EntryApplet.class
         at sun.applet.AppletClassLoader.findClass(Unknown Source)
         at java.lang.ClassLoader.loadClass(Unknown Source)
         at sun.applet.AppletClassLoader.loadClass(Unknown Source)
         at java.lang.ClassLoader.loadClass(Unknown Source)
         at sun.applet.AppletClassLoader.loadCode(Unknown Source)
         at sun.applet.AppletPanel.createApplet(Unknown Source)
         at sun.plugin.AppletViewer.createApplet(Unknown Source)
         at sun.applet.AppletPanel.runLoader(Unknown Source)
         at sun.applet.AppletPanel.run(Unknown Source)
         at java.lang.Thread.run(Unknown Source)
    Caused by: java.io.IOException: open HTTP connection failed.
         at sun.applet.AppletClassLoader.getBytes(Unknown Source)
         at sun.applet.AppletClassLoader.access$100(Unknown Source)
         at sun.applet.AppletClassLoader$1.run(Unknown Source)
         at java.security.AccessController.doPrivileged(Native Method)
         ... 10 more

  • Force a particular ver. of Java plugin to load for a particular app on XP

    Hi all,
    We have installed 2 versions of Java PlugIns on the XP build. The versions are 1.2.2 and 1.3.1_06. Some applications require 1.2.2 while some other applications require 1.3.1. If 1.3.1 is loaded for the apps that require 1.2.2, some problems will occur, and vice versa. Is there a way to force 1.2.2 be loaded when the app that requires it is launched? Is there a way to indicate a particular version of Java PlugIn for a particular application so that the correct version of PlugIn will be used for the apps?
    Thanks!
    Tam

    If you can be sure only 1.3.1_06 and 1.2.2 are on the PC, I think you will be ok if you install 1.3.1_06 first and then 1.2.2. Then 1.2.2 will be set as the default JVM and your applet that uses 1.3.1_06 will have to use the CAFEEFAC-0013-0001-0006-ABCDEFFEDCBA tag for object id.
    Unfortunately, this CAFE... convention only works in 1.3.1+ so you can't use it to specify 1.2.2. FYI - you can tell the default Java Plug-in version by looking in the registry at this key: HKEY_CLASSES_ROOT\CLSID\{8AD9C840-044E-11D1-B3E9-00805F499D3}\InprocServer32
    Hope this helps!

  • How can i change font used by the java plugin?

    im running j2se 1.4.0 on win2k, and the java plugin is using a font that is not readable because sized way too small (also, the font is not a 'standard' font).
    the font is also applied do class loading or exception messages in java applets (in IE5.5, but i don't think that this is browser-related).
    is there a possibility to change to font (or the font size)?

    thanks for the tip, but this problem seems not to be tightened to the font.properties file:
    the wrong font is only used with the j2sdk1.4.0 plugin, not with that from j2re1.4.0 (actually, i had installed jre first, and afterwards j2sdk without removing j2re before). changing the plugin used back to j2re made the java console display the correct font (though the font.properties files were identically in both cases).

Maybe you are looking for