ORA-06508 in Forms Debugger

Windows 2000
Forms 6i Patch 5a
9i Database
I have a form that generates a ORA-06508 when in the debugger only. It runs fine else (running in the builder, client-server or web.)
I have detached the library. Shift+Ctrl+K'd the form. Saved the form. Closed the form. Recompiled the attached library using the forms compiler. Opened the form, reattached the library, SHIFT+Ctrl+K'd the form, and the same thing occurs. I want to stress this occurs only when running in the debugger.
Any ideas or suggestions?
Thanks
-Chris

In that case you probably have two copies of a library around. In normal runtime a PLX file will always be used in preference to a PLL. In Debug mode PLX files will be ignored and the PLL only used.

Similar Messages

  • FRM-40735: WHEN-NEW-FORM-INSTANCE trigger raised unhandled except ORA-06508

    Dear Colleague,
    I am migrating a Forms application from Forms 9i to Forms 10g. Most of my forms were originally created using the Oracle Designer Forms generator. I am also using the Webutil plugin. I just finished configuring Webutil, tested it and it seems to be working fine.
    I am able to compile all code and generate a Form executable. However at runtime, I get an error as soon as the first line of code in the WHEN-NEW-FORM-INSTANCE trigger.
    The error is:
    FRM-40735: WHEN-NEW-FORM-INSTANCE trigger raised unhandled exception ORA-06508
    and the beginning of the code is as follows. Using the debugger, I found out that the line:
    CGBS2$.SET_COORD_STYLE( 'P' );
    initiates an error.
    /* CGLY$INIT_CANVASES */
    /* Call procedure to ensure correct canvases are visible */
    BEGIN
    CGBS2$.SET_COORD_STYLE( 'P' );
    CGBS2$.SET_QRY_ON_ENTRY( 'Y' );
    CGBS2$.SET_NAV_FROM_BLOCK( 'PROJ_BLOCK' );
    CGLY$CANVAS_MANAGEMENT;
    END;
    Is the error telling me that this procedure was not found? How can I proceed to find the cause and solution of my problem? Are one of the Oracle Designer Forms Generator libraries missing?
    I would appreciate a tip to help me begin seeing the light at the end of the tunnel.
    Thanks and regards,
    Randy

    Randy,
    Glad I could help and you've got your Form running.
    @user9230833
    It is consider "bad form" to usurp another's post. Please create your own Forum post and include a link or links to any relevant posts. As to Randy's situation, he simply compiled the Forms 9i Library module (.pll) with Forms 10g's compiler. This may not be the cause of your error. When you post your own question, please include your Forms version (full version [eg; 10.1.2.0.2] not the release [6i, 9i, 10g, etc]). Also include any sample code that might help us help you! ;-)
    Craig....

  • Calling Report from Form Error ORA-06508

    Dear all,
    I want migrate from Fom6i to Oracle Developer Suite 10g (10.1).
    Folder Form = C:\APLIORA\IRS\FORM
    Folder Report = C:\APLIORA\IRS\REPORT
    I have modified file DEFAULT.ENV
    FORMS_PATH=C:\APLIORA\IRS\FORM;C:\APLIORA\IRS\REPORT
    i do not have problem call a form from form.
    but when i call report from form show error ORA-06508 : PL/SQL : could not find program unit being called ; -6508
    my procedure is
    PROCEDURE Call_Report IS
         list_id ParamList;
    BEGIN
    list_id := Get_Parameter_List('input_params');
    IF NOT Id_Null(list_id) THEN
    Destroy_Parameter_List(list_id);
    END IF;
    list_id := Create_Parameter_List('input_params');
    Add_Parameter(list_id,'MAXIMIZE',TEXT_PARAMETER,'YES');
    Add_Parameter(list_id,'ORACLE_SHUTDOWN',TEXT_PARAMETER,'YES');
    RP2RRO.RP2RRO_RUN_PRODUCT(REPORTS,'TESTREPORT.REP',SYNCHRONOUS,RUNTIME,FILESYSTEM,list_id,null);
    END ;
    Do I miss something ?
    Can any one help ?
    Thanks

    Hi,
    Thank you for your replay.
    The problem have solved.
    This my step :
    1. Install Windows XP SP2 and Form 10.1.2.0.2 on new pc.
    2. Install Jinit version 1.3.1.28.
    3. Create report server
    3. Compile form, report and pll
    4. call report from from with this procedure :
    PROCEDURE Call_Report (vFILENAME varchar2) IS
    report_id                Report_Object;
    ReportServerJob VARCHAR2(100);
    vc_rep_status      VARCHAR2(100);
    repsvr                          varchar2(21) := 'myserv';
    userid                         VARCHAR2(100);
    pass                          VARCHAR2(100);
    Host                    VARCHAR2(100);
    BEGIN
    userid          := Get_Application_Property(USERNAME) ;
    pass          := Get_Application_Property(PASSWORD) ;
    Host          := Get_Application_Property(CONNECT_STRING) ;
    report_id:= find_report_object('REPORT');
    SET_REPORT_OBJECT_PROPERTY(report_id,REPORT_FILENAME,vFILENAME||'.jsp');
    SET_REPORT_OBJECT_PROPERTY(report_id,REPORT_COMM_MODE,SYNCHRONOUS);
    SET_REPORT_OBJECT_PROPERTY(report_id,REPORT_SERVER,repsvr);
    ReportServerJob:=run_report_object(report_id);
    vc_rep_status := REPORT_OBJECT_STATUS(ReportServerJob);
    WHILE vc_rep_status in ('RUNNING','OPENING_REPORT','ENQUEUED', null)
    LOOP
    vc_rep_status:=REPORT_OBJECT_STATUS(ReportServerJob);
    END LOOP;
    IF vc_rep_status='FINISHED' THEN
    WEB.SHOW_DOCUMENT('/reports/rwservlet?report='||vFILENAME||'.jsp'||'&userid='||userid||'/'||pass||'@'||Host||'&destype=CACHE&desformat=PDF&paramform=yes','_blank');
    ELSE
    message ('Report failed with error message '|| vc_rep_status);
    END IF;
    END;
    Ok, but i have another strange error. I will post new thread.
    Thank you and regards
    Teguh S

  • Forms 6i, ORA-06508, and Character Functions

    Hi,
    We have an installation of Forms 6i, and when we run our form(s), an ORA-06508 error is received. The problem has been drilled down to pl/sql usage of built-in character functions such as SUBSTR, INSTR, etc.
    For example:
    myvar := substr(myothervar,1,10);
    If these functions are used within sql only, they work fine.
    For example:
    select substr(myothervar,1,10)
    into myvar
    from dual;
    We are only having this problem on one PC. The same forms work fine on all others.
    When I open the Forms Designer, I can see the character functions under the built-ins in the navigator.
    I'm thinking we have a .dll or .pll that is missing from our install on this particular PC.
    Does anyone know where the built-in functions are stored, like in a .pll or .dll for instance?
    Thank you,
    Bret Goldstein

    I would suggest 2 things:
    1) Make sure that if there are libraries (PLX) you have the right versions on the questionable worstation.
    2) Recompile the failing form (using compile all option) but make sure that the compiling environment is using the righ version of the libraries (PLL)

  • Getting ORA-06508 when running 6i form in 10g

    hi,
    I am upgrading my forms from 6i to 10g. I have created the following directory structure on my system.
    c:\old_system\<module_name>\<forms60> --- All FMBs and FMXs
    c:\old_system\<module_name>\<lib> --- All libraries
    c:\old_system\<module_name>\<reports60> ---All Reports
    c:\10g_upgrade\<module_name>\<forms60> --- All FMBs and FMXs
    c:\10g_upgrade\<module_name>\<lib> --- All libraries
    c:\10g_upgrade\<module_name>\<reports60> ---All Reports
    i have edited the registery entry for
    for forms6i
    Forms60_PATH --- c:\old_system\<module_name>\<lib>
    for forms10g
    Forms_PATH -- c:\10g_upgrade\<module_name>\<lib>
    I have two template forms:
    1. TMXSTAND.FMB
    2. PPSSTAND.FMB inherits TMXSTAND.FMB
    when i run the FPPS003.FMB then it gives this error.
    ON-ERROR raised an unhandled exception ORA-06508.
    Please suggest where is the problem.
    Thanks.
    null

    I have given the proper path of the library folder in Forms_Path. Still I am getting this error...
    Is this error because of having both the versions of forms (6i and 10g)?
    Message was edited by:
    gammit

  • WebUtil gives FRM-40735 When-Custom-Item-Event ORA-06508 when starting form

    I have downloaded and installed/configured webutil on RH Linux AS2.1 per the manual and readme file.
    ( jacob.jar and webutil.jar signed on NT machine per instruction then loaded on LINUX server webutil/lib )
    I have incorporated webutil with an existing form as follows:
    1. linked webutil.pll
    2. subclassed webutil from webutil.olb
    3. compiled all
    4. compiled module
    Form was deployed on 9iAS.
    When the applet loads the following is displayed in the java console:
    Downloading http://myserver.mydomain.com:7779/forms90/webutil/webutil.jar to JAR cache
    Loading http://myserver.mydomain.com:7779/forms90/java/f90all_jinit.jar from JAR cache
    Loading http://myserver.mydomain.com:7779/forms90/java/pfs.jar from JAR cache
    Downloading http://myserver.mydomain.com:7779/forms90/webutil/jacob.jar to JAR cache
    Loading http://myserver.mydomain.com:7779/forms90/java/f90all_jinit.jar from JAR cache
    Loading http://myserver.mydomain.com:7779/forms90/java/pfs.jar from JAR cache
    RegisterWebUtil - Loading Webutil Version 1.0.2 Beta
    connectMode=HTTP, native.
    Forms Applet version is : 90270
    When the form containing webutil is called, the following is displayed in the java console and the error mentioned in this topic's subject is given:
    2003-Jul-10 16:53:32.607 WUI[VBeanCommon.findLocalHost()] obtaining LocalHost info from InetAddress
    2003-Jul-10 16:53:32.707 WUF[VBeanCommon.findLocalHost()] obtaining LocalHost info from InetAddress
    2003-Jul-10 16:53:32.738 WUH[VBeanCommon.findLocalHost()] obtaining LocalHost info from InetAddress
    2003-Jul-10 16:53:32.758 WUS[VBeanCommon.findLocalHost()] obtaining LocalHost info from InetAddress
    2003-Jul-10 16:53:32.798 WUT[VBeanCommon.findLocalHost()] obtaining LocalHost info from InetAddress
    2003-Jul-10 16:53:32.998 WUO[VBeanCommon.findLocalHost()] obtaining LocalHost info from InetAddress
    2003-Jul-10 16:53:33.38 WUL[VBeanCommon.findLocalHost()] obtaining LocalHost info from InetAddress
    2003-Jul-10 16:53:33.58 WUB[VBeanCommon.findLocalHost()] obtaining LocalHost info from InetAddress
    Why can't webutil find the bean method/function?

    Per a previous suggestion, I have created a simple form module with one block containing a single push_button.
    The when-button-pressed trigger contains a simple call to client_get_file_name.
    I then:
    1. Attached the webutil.pll
    2. subclassed webutil from webutil.olb
    3. compiled all plsql
    4. created then deployed fmx
    The same errors are generated when this simple form loads without any calls to webtuil.
    I added the following debug code to the when-custom-item-event triggers of each bean area item in the webutil block:
    declare
    dataType pls_integer;
    dataPayload varchar2(32000 char);
    begin
    WEBUTIL_CORE.CustomEventHandler(:SYSTEM.CUSTOM_ITEM_EVENT,:SYSTEM.CUSTOM_ITEM_EVENT_PARAMETERS);
    exception
         when others then
         get_parameter_attr(:system.custom_item_event_parameters,'WUC_DATA',dataType, dataPayload);
         pfsutil.dbug(get_application_property(current_form_name)||'-WebUtil: '||'Item: '||:system.trigger_item||' Event: '||:system.custom_item_event||' :'
         ||'Data: '||dataPayload||' Error: '||sqlerrm);
    end;
    The following information is captured in the log:
    17:07:59 WEBUTILTEST-WebUtil: Item: WEBUTIL.WEBUTIL_CLIENTINFO_FUNCTIONS Event: WUC_REGISTER :Data: WUI|192.168.111.2|Windows NT|Administrator|;|\|en Error: ORA-06508: PL/SQL: could not find program unit being called
    17:08:55 WEBUTILTEST-WebUtil: Item: WEBUTIL.WEBUTIL_FILE_FUNCTIONS Event: WUC_REGISTER :Data: WUF|192.168.111.2|Windows NT|Administrator|;|\|en Error: ORA-06508: PL/SQL: could not find program unit being called
    17:08:58 WEBUTILTEST-WebUtil: Item: WEBUTIL.WEBUTIL_HOST_FUNCTIONS Event: WUC_REGISTER :Data: WUH|192.168.111.2|Windows NT|Administrator|;|\|en Error: ORA-06508: PL/SQL: could not find program unit being called
    17:08:59 WEBUTILTEST-WebUtil: Item: WEBUTIL.WEBUTIL_SESSION_FUNCTIONS Event: WUC_REGISTER :Data: WUS|192.168.111.2|Windows NT|Administrator|;|\|en Error: ORA-06508: PL/SQL: could not find program unit being called
    17:09:00 WEBUTILTEST-WebUtil: Item: WEBUTIL.WEBUTIL_FILETRANSFER_FUNCTIONS Event: WUC_REGISTER :Data: WUT|192.168.111.2|Windows NT|Administrator|;|\|en Error: ORA-06508: PL/SQL: could not find program unit being called
    17:09:01 WEBUTILTEST-WebUtil: Item: WEBUTIL.WEBUTIL_OLE_FUNCTIONS Event: WUC_REGISTER :Data: WUO|192.168.111.2|Windows NT|Administrator|;|\|en Error: ORA-06508: PL/SQL: could not find program unit being called
    17:09:03 WEBUTILTEST-WebUtil: Item: WEBUTIL.WEBUTIL_C_API_FUNCTIONS Event: WUC_REGISTER :Data: WUL|192.168.111.2|Windows NT|Administrator|;|\|en Error: ORA-06508: PL/SQL: could not find program unit being called
    17:09:04 WEBUTILTEST-WebUtil: Item: WEBUTIL.WEBUTIL_BROWSER_FUNCTIONS Event: WUC_REGISTER :Data: WUB|192.168.111.2|Windows NT|Administrator|;|\|en Error: ORA-06508: PL/SQL: could not find program unit being called
    This may be initiated by Webutil_core.initWebUtil and the result of Webutil_core.registerBean?
    This following error information is captured when the push button is pressed:
    17:09:08 WEBUTILTEST-WebUtil: Item: MAIN_BLK.TEST_BUT Event: WUC_REGISTER :Data: WUB|192.168.111.2|Windows NT|Administrator|;|\|en Error: ORA-06508: PL/SQL: could not find program unit being called
    Hope this helps.
    Thank you for the quick responses.

  • Forms Migration 9i to 10g.............ORA-06508

    Hi All,
    i have a form to call report using RP2RRO library, now i am migrating forms 9i to 10g form compiled successfully but when i click button "Run Report" it is giving error FRM-40735 ON-ERROR trigger raised unhandled excption ORA-06508.
    Same problem occurred when i was migrating master and transaction forms, i renamed all plsql units of library and library name as well. now these forms are working fine, i do the same thing with report calling forms but i am unable to resolve the issue.
    is there any other method to rectify this problem?
    Rgds,
    RHA

    is there any solution?

  • FRM-40735:PRE-FORM trigger raised unhandled expception ORA-06508-SATYAM

    Hi,
    This is Sateesh, presently working on Designer migration project from Designer 2000 V1.3.2 to Designer 10g with headstart.I successfully completed the migration of repository from 1.3.2 to 6i and also migrated the headstart to 6i using simple upgrade method.After this i successfully migrated the repository from 6i to 10g and I compiled all the libraries using forms10g and then i generated all the 10g forms through designer.then 10g forms and libraries are deployed in Oracle Application Server and then we are trying to access the application then we are getting the messsage for most of the forms, i.e FRM-40735:PRE-FORM trigger raised unhandled expception ORA-06508. Can you please help me out in this regard.
    Regards
    K.Sateesh Kumar

    Yes,
    that's right. FRM-40735 is a generic error message generated in case of form failure.
    This may be as a result of failure while calling sub-programs in a form or any other problem.
    For my case I had a call to a built in Package for which the user didnt have the privileges to execute that package.
    So how did I find out?
    EXCEPTION
    WHEN OTHERS THEN
    MESSAGE('SQLERRM: ' || SQLERRM);
    exception handling does the trick. I got the real error that was causing the problem.
    Error was: SQLERRM: xxx package does not exist. This made me think in the lines of either privileges or synonym problem. I found out that the user in the db doent have the execution privileges.
    GRANT ALL ON xxxpackage TO xxxuser;
    This is a nice forum. I love it and thanks to everyone.

  • CLIENT_TEXT_IO on forms 11g gives ORA-06508 after closing the form and open

    Hello all
    I have a form (FORMA) with the following Code
         PROCEDURE     P_WRITE_ARRAY(P_Detination_File     VARCHAR2,P_Mode     VARCHAR2) IS
              V_File_ID CLIENT_TEXT_IO.FILE_TYPE;
         BEGIN
              V_File_ID := CLIENT_TEXT_IO.FOPEN(P_Detination_File,P_Mode);
              IF NOT FORM_SUCCESS THEN
                   P_DISPLAY_MSG(50);
                   RAISE Form_Trigger_Failure;
              END IF;
              ORG_PK_CL_PROGRESS_BAR.P_SET_STEP_SIZE(1, V_Arr_Index);
              For i in 1 .. V_Arr_Index loop
                   ORG_PK_CL_PROGRESS_BAR.P_STEP_PROEGRESS(i);
                   CLIENT_text_io.put(V_File_ID,V_WRITE_ARRAY(i));
              end loop;          
              CLIENT_TEXT_IO.FCLOSE(V_File_ID);
              Synchronize;
         IF FORM_SUCCESS     THEN
              P_DISPLAY_MSG(17);
         END IF;
         END;
    where this procedure is called in a WHEN-BUTTON-PRESSED trigger
    The Form is called from another form (FORMB)
    both forms work well and I get The required results but after I close FORMB using exit_form then I call the form again from formB I get the error Message ORA-06508
    Any Help please

    Hi here is the full console starting from the loading
    basic: Added progress listener: sun.plugin.util.ProgressMonitorAdapter@7d29df
    basic: Plugin2ClassLoader.addURL parent called for http://192.168.0.39:9001/forms/java/frmall.jar
    basic: Plugin2ClassLoader.addURL parent called for http://192.168.0.39:9001/forms/java/onewareicons.jar
    basic: Plugin2ClassLoader.addURL parent called for http://192.168.0.39:9001/forms/java/frmwebutil.jar
    basic: Plugin2ClassLoader.addURL parent called for http://192.168.0.39:9001/forms/java/jacob.jar
    security: Validate the certificate chain using CertPath API
    security: The certificate hasnt been expired, no need to check timestamping info
    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
    basic: Applet loaded.
    basic: Applet resized and added to parent container
    basic: PERF: AppletExecutionRunnable - applet.init() BEGIN ; jvmLaunch dt 134964 us, pluginInit dt 3437061322 us, TotalTime: 3437196286 us
    basic: Applet initialized
    basic: Starting applet
    basic: completed perf rollup
    basic: Loaded image: jar:http://192.168.0.39:9001/forms/java/frmall.jar!/oracle/forms/icons/splash.gif
    basic: Loaded image: jar:http://192.168.0.39:9001/forms/java/frmall.jar!/oracle/forms/icons/oracle_logo.gif
    network: Connecting http://192.168.0.39:9001/forms/java/http://192.168.0.39:9001/forms/java/oneware.gif with proxy=DIRECT
    network: Connecting http://192.168.0.39:9001/ with proxy=DIRECT
    basic: Loaded image: http://192.168.0.39:9001/forms/java/http://192.168.0.39:9001/forms/java/oneware.gif
    Forms Session ID is formsapp.176
    network: Cache entry not found [url: http://192.168.0.39:9001/forms/registry/oracle/forms/registry/default.dat, version: null]
    network: Connecting http://192.168.0.39:9001/forms/registry/oracle/forms/registry/default.dat with proxy=DIRECT
    The proxy host is null, and the proxy port is 0.
    Native HTTP implementation is being used for the connection.
    The connection mode is HTTP.
    network: Connecting http://192.168.0.39:9001/forms/frmservlet?config=Oneware&ifsessid=formsapp.176&acceptLanguage=en-US&ifcmd=startsession&iflocale=en-US with proxy=DIRECT
    network: Connecting http://192.168.0.39:9001/forms/lservlet;jsessionid=YnxlQNZS9n2hTnh3MlL2B76lLcxhhH6vvFV1h6WL1yLthPDdbppr!861797866?ifcmd=getinfo&ifhost=usert-PC&ifip=192.168.0.5 with proxy=DIRECT
    network: Connecting http://192.168.0.39:9001/forms/lservlet;jsessionid=YnxlQNZS9n2hTnh3MlL2B76lLcxhhH6vvFV1h6WL1yLthPDdbppr!861797866 with proxy=DIRECT
    Forms Applet version is 11.1.1.3
    network: Connecting http://192.168.0.39:9001/forms/lservlet;jsessionid=YnxlQNZS9n2hTnh3MlL2B76lLcxhhH6vvFV1h6WL1yLthPDdbppr!861797866 with proxy=DIRECT
    network: Connecting http://192.168.0.39:9001/forms/java/system.jpg with proxy=DIRECT
    basic: Loaded image: http://192.168.0.39:9001/forms/java/system.jpg
    network: Connecting http://192.168.0.39:9001/forms/java/system.jpg with proxy=DIRECT
    basic: Loaded image: http://192.168.0.39:9001/forms/java/system.jpg
    network: Connecting http://192.168.0.39:9001/forms/java/system.jpg with proxy=DIRECT
    basic: Loaded image: http://192.168.0.39:9001/forms/java/system.jpg
    network: Connecting http://192.168.0.39:9001/forms/java/systembg.jpg with proxy=DIRECT
    basic: Loaded image: http://192.168.0.39:9001/forms/java/systembg.jpg
    network: Connecting http://192.168.0.39:9001/forms/java/systembg.jpg with proxy=DIRECT
    basic: Loaded image: http://192.168.0.39:9001/forms/java/systembg.jpg
    network: Connecting http://192.168.0.39:9001/forms/java/systembg.jpg with proxy=DIRECT
    basic: Loaded image: http://192.168.0.39:9001/forms/java/systembg.jpg
    network: Connecting http://192.168.0.39:9001/forms/java/systembg.jpg with proxy=DIRECT
    basic: Loaded image: http://192.168.0.39:9001/forms/java/systembg.jpg
    network: Connecting http://192.168.0.39:9001/forms/java/systembg.jpg with proxy=DIRECT
    basic: Loaded image: http://192.168.0.39:9001/forms/java/systembg.jpg
    network: Connecting http://192.168.0.39:9001/forms/java/systembg.jpg with proxy=DIRECT
    basic: Loaded image: http://192.168.0.39:9001/forms/java/systembg.jpg
    network: Connecting http://192.168.0.39:9001/forms/lservlet;jsessionid=YnxlQNZS9n2hTnh3MlL2B76lLcxhhH6vvFV1h6WL1yLthPDdbppr!861797866 with proxy=DIRECT
    network: Connecting http://192.168.0.39:9001/forms/java/SYSTEM.jpg with proxy=DIRECT
    basic: Loaded image: http://192.168.0.39:9001/forms/java/SYSTEM.jpg
    network: Connecting http://192.168.0.39:9001/forms/java/SYSTEM.jpg with proxy=DIRECT
    basic: Loaded image: http://192.168.0.39:9001/forms/java/SYSTEM.jpg
    network: Connecting http://192.168.0.39:9001/forms/lservlet;jsessionid=YnxlQNZS9n2hTnh3MlL2B76lLcxhhH6vvFV1h6WL1yLthPDdbppr!861797866 with proxy=DIRECT
    basic: Applet made visible
    basic: Applet started
    basic: Told clients applet is started
    network: Connecting http://192.168.0.39:9001/forms/lservlet;jsessionid=YnxlQNZS9n2hTnh3MlL2B76lLcxhhH6vvFV1h6WL1yLthPDdbppr!861797866 with proxy=DIRECT
    network: Connecting http://192.168.0.39:9001/forms/lservlet;jsessionid=YnxlQNZS9n2hTnh3MlL2B76lLcxhhH6vvFV1h6WL1yLthPDdbppr!861797866 with proxy=DIRECT
    network: Connecting http://192.168.0.39:9001/forms/java/systembg.jpg with proxy=DIRECT
    basic: Loaded image: http://192.168.0.39:9001/forms/java/systembg.jpg
    network: Connecting http://192.168.0.39:9001/forms/java/systembg.jpg with proxy=DIRECT
    basic: Loaded image: http://192.168.0.39:9001/forms/java/systembg.jpg
    network: Connecting http://192.168.0.39:9001/forms/lservlet;jsessionid=YnxlQNZS9n2hTnh3MlL2B76lLcxhhH6vvFV1h6WL1yLthPDdbppr!861797866 with proxy=DIRECT
    network: Connecting http://192.168.0.39:9001/forms/lservlet;jsessionid=YnxlQNZS9n2hTnh3MlL2B76lLcxhhH6vvFV1h6WL1yLthPDdbppr!861797866 with proxy=DIRECT
    network: Connecting http://192.168.0.39:9001/forms/lservlet;jsessionid=YnxlQNZS9n2hTnh3MlL2B76lLcxhhH6vvFV1h6WL1yLthPDdbppr!861797866 with proxy=DIRECT
    network: Connecting http://192.168.0.39:9001/forms/java/formdsk.jpg with proxy=DIRECT
    basic: Loaded image: http://192.168.0.39:9001/forms/java/formdsk.jpg
    network: Connecting http://192.168.0.39:9001/forms/java/formdsk.jpg with proxy=DIRECT
    basic: Loaded image: http://192.168.0.39:9001/forms/java/formdsk.jpg
    network: Connecting http://192.168.0.39:9001/forms/java/formdsk.jpg with proxy=DIRECT
    basic: Loaded image: http://192.168.0.39:9001/forms/java/formdsk.jpg
    network: Connecting http://192.168.0.39:9001/forms/java/formdsk.jpg with proxy=DIRECT
    basic: Loaded image: http://192.168.0.39:9001/forms/java/formdsk.jpg
    network: Connecting http://192.168.0.39:9001/forms/java/formdsk.jpg with proxy=DIRECT
    basic: Loaded image: http://192.168.0.39:9001/forms/java/formdsk.jpg
    network: Connecting http://192.168.0.39:9001/forms/java/formdsk.jpg with proxy=DIRECT
    basic: Loaded image: http://192.168.0.39:9001/forms/java/formdsk.jpg
    network: Connecting http://192.168.0.39:9001/forms/java/formdsk.jpg with proxy=DIRECT
    basic: Loaded image: http://192.168.0.39:9001/forms/java/formdsk.jpg
    network: Connecting http://192.168.0.39:9001/forms/lservlet;jsessionid=YnxlQNZS9n2hTnh3MlL2B76lLcxhhH6vvFV1h6WL1yLthPDdbppr!861797866 with proxy=DIRECT
    network: Connecting http://192.168.0.39:9001/forms/lservlet;jsessionid=YnxlQNZS9n2hTnh3MlL2B76lLcxhhH6vvFV1h6WL1yLthPDdbppr!861797866 with proxy=DIRECT
    network: Connecting http://192.168.0.39:9001/forms/lservlet;jsessionid=YnxlQNZS9n2hTnh3MlL2B76lLcxhhH6vvFV1h6WL1yLthPDdbppr!861797866 with proxy=DIRECT
    cache: Reading Signers from 4088 http://192.168.0.39:9001/forms/java/frmwebutil.jar | C:\Users\usert\AppData\LocalLow\Sun\Java\Deployment\cache\6.0\25\77204f59-753bdf91.idx
    cache: Done readSigners(http://192.168.0.39:9001/forms/java/frmwebutil.jar)
    network: Connecting http://192.168.0.39:9001/forms/java/oneware001.jpg with proxy=DIRECT
    network: Cache entry not found [url: http://192.168.0.39:9001/forms/java/oneware001.jpg, version: null]
    network: Connecting http://192.168.0.39:9001/forms/java/oneware001.jpg with proxy=DIRECT
    basic: Loaded image: http://192.168.0.39:9001/forms/java/oneware001.jpg
    network: Connecting http://192.168.0.39:9001/forms/java/oneware002.jpg with proxy=DIRECT
    network: Cache entry not found [url: http://192.168.0.39:9001/forms/java/oneware002.jpg, version: null]
    network: Connecting http://192.168.0.39:9001/forms/java/oneware002.jpg with proxy=DIRECT
    basic: Loaded image: http://192.168.0.39:9001/forms/java/oneware002.jpg
    network: Connecting http://192.168.0.39:9001/forms/java/oneware003.jpg with proxy=DIRECT
    network: Cache entry not found [url: http://192.168.0.39:9001/forms/java/oneware003.jpg, version: null]
    network: Connecting http://192.168.0.39:9001/forms/java/oneware003.jpg with proxy=DIRECT
    basic: Loaded image: http://192.168.0.39:9001/forms/java/oneware003.jpg
    network: Connecting http://192.168.0.39:9001/forms/java/oneware004.jpg with proxy=DIRECT
    network: Cache entry not found [url: http://192.168.0.39:9001/forms/java/oneware004.jpg, version: null]
    network: Connecting http://192.168.0.39:9001/forms/java/oneware004.jpg with proxy=DIRECT
    basic: Loaded image: http://192.168.0.39:9001/forms/java/oneware004.jpg
    network: Connecting http://192.168.0.39:9001/forms/java/oneware005.jpg with proxy=DIRECT
    network: Cache entry not found [url: http://192.168.0.39:9001/forms/java/oneware005.jpg, version: null]
    network: Connecting http://192.168.0.39:9001/forms/java/oneware005.jpg with proxy=DIRECT
    basic: Loaded image: http://192.168.0.39:9001/forms/java/oneware005.jpg
    network: Connecting http://192.168.0.39:9001/forms/java/oneware006.jpg with proxy=DIRECT
    network: Cache entry not found [url: http://192.168.0.39:9001/forms/java/oneware006.jpg, version: null]
    network: Connecting http://192.168.0.39:9001/forms/java/oneware006.jpg with proxy=DIRECT
    basic: Loaded image: http://192.168.0.39:9001/forms/java/oneware006.jpg
    network: Connecting http://192.168.0.39:9001/forms/java/oneware007.jpg with proxy=DIRECT
    network: Cache entry not found [url: http://192.168.0.39:9001/forms/java/oneware007.jpg, version: null]
    network: Connecting http://192.168.0.39:9001/forms/java/oneware007.jpg with proxy=DIRECT
    basic: Loaded image: http://192.168.0.39:9001/forms/java/oneware007.jpg
    network: Connecting http://192.168.0.39:9001/forms/java/oneware009.jpg with proxy=DIRECT
    basic: Loaded image: http://192.168.0.39:9001/forms/java/oneware009.jpg
    network: Connecting http://192.168.0.39:9001/forms/java/oneware008.jpg with proxy=DIRECT
    network: Cache entry not found [url: http://192.168.0.39:9001/forms/java/oneware008.jpg, version: null]
    network: Connecting http://192.168.0.39:9001/forms/java/oneware008.jpg with proxy=DIRECT
    basic: Loaded image: http://192.168.0.39:9001/forms/java/oneware008.jpg
    network: Connecting http://192.168.0.39:9001/forms/java/oneware010.jpg with proxy=DIRECT
    basic: Loaded image: http://192.168.0.39:9001/forms/java/oneware010.jpg
    network: Connecting http://192.168.0.39:9001/forms/java/oneware012.jpg with proxy=DIRECT
    basic: Loaded image: http://192.168.0.39:9001/forms/java/oneware012.jpg
    network: Connecting http://192.168.0.39:9001/forms/lservlet;jsessionid=YnxlQNZS9n2hTnh3MlL2B76lLcxhhH6vvFV1h6WL1yLthPDdbppr!861797866 with proxy=DIRECT
    network: Connecting http://192.168.0.39:9001/forms/java/open.jpg with proxy=DIRECT
    network: Cache entry not found [url: http://192.168.0.39:9001/forms/java/open.jpg, version: null]
    network: Connecting http://192.168.0.39:9001/forms/java/open.jpg with proxy=DIRECT
    basic: Loaded image: http://192.168.0.39:9001/forms/java/open.jpg
    network: Connecting http://192.168.0.39:9001/forms/lservlet;jsessionid=YnxlQNZS9n2hTnh3MlL2B76lLcxhhH6vvFV1h6WL1yLthPDdbppr!861797866 with proxy=DIRECT
    network: Cache entry not found [url: http://192.168.0.39:9001/forms/java/oneware008.jpg, version: null]
    network: Connecting http://192.168.0.39:9001/forms/java/oneware008.jpg with proxy=DIRECT
    network: Cache entry not found [url: http://192.168.0.39:9001/forms/java/oneware007.jpg, version: null]
    network: Connecting http://192.168.0.39:9001/forms/java/oneware007.jpg with proxy=DIRECT
    network: Cache entry not found [url: http://192.168.0.39:9001/forms/java/oneware006.jpg, version: null]
    network: Connecting http://192.168.0.39:9001/forms/java/oneware006.jpg with proxy=DIRECT
    network: Cache entry not found [url: http://192.168.0.39:9001/forms/java/oneware005.jpg, version: null]
    network: Connecting http://192.168.0.39:9001/forms/java/oneware005.jpg with proxy=DIRECT
    network: Cache entry not found [url: http://192.168.0.39:9001/forms/java/oneware004.jpg, version: null]
    network: Connecting http://192.168.0.39:9001/forms/java/oneware004.jpg with proxy=DIRECT
    network: Cache entry not found [url: http://192.168.0.39:9001/forms/java/oneware003.jpg, version: null]
    network: Connecting http://192.168.0.39:9001/forms/java/oneware003.jpg with proxy=DIRECT
    network: Cache entry not found [url: http://192.168.0.39:9001/forms/java/oneware002.jpg, version: null]
    network: Connecting http://192.168.0.39:9001/forms/java/oneware002.jpg with proxy=DIRECT
    network: Cache entry not found [url: http://192.168.0.39:9001/forms/java/oneware001.jpg, version: null]
    network: Connecting http://192.168.0.39:9001/forms/java/oneware001.jpg with proxy=DIRECT
    network: Connecting http://192.168.0.39:9001/forms/lservlet;jsessionid=YnxlQNZS9n2hTnh3MlL2B76lLcxhhH6vvFV1h6WL1yLthPDdbppr!861797866 with proxy=DIRECT
    network: Connecting http://192.168.0.39:9001/forms/lservlet;jsessionid=YnxlQNZS9n2hTnh3MlL2B76lLcxhhH6vvFV1h6WL1yLthPDdbppr!861797866 with proxy=DIRECT
    network: Connecting http://192.168.0.39:9001/forms/lservlet;jsessionid=YnxlQNZS9n2hTnh3MlL2B76lLcxhhH6vvFV1h6WL1yLthPDdbppr!861797866 with proxy=DIRECT
    network: Connecting http://192.168.0.39:9001/forms/lservlet;jsessionid=YnxlQNZS9n2hTnh3MlL2B76lLcxhhH6vvFV1h6WL1yLthPDdbppr!861797866 with proxy=DIRECT
    network: Connecting http://192.168.0.39:9001/forms/lservlet;jsessionid=YnxlQNZS9n2hTnh3MlL2B76lLcxhhH6vvFV1h6WL1yLthPDdbppr!861797866 with proxy=DIRECT
    network: Connecting http://192.168.0.39:9001/forms/lservlet;jsessionid=YnxlQNZS9n2hTnh3MlL2B76lLcxhhH6vvFV1h6WL1yLthPDdbppr!861797866 with proxy=DIRECT
    network: Connecting http://192.168.0.39:9001/forms/lservlet;jsessionid=YnxlQNZS9n2hTnh3MlL2B76lLcxhhH6vvFV1h6WL1yLthPDdbppr!861797866 with proxy=DIRECT
    network: Cache entry not found [url: http://192.168.0.39:9001/forms/java/open.jpg, version: null]
    network: Connecting http://192.168.0.39:9001/forms/java/open.jpg with proxy=DIRECT
    network: Connecting http://192.168.0.39:9001/forms/lservlet;jsessionid=YnxlQNZS9n2hTnh3MlL2B76lLcxhhH6vvFV1h6WL1yLthPDdbppr!861797866 with proxy=DIRECT
    network: Connecting http://192.168.0.39:9001/forms/lservlet;jsessionid=YnxlQNZS9n2hTnh3MlL2B76lLcxhhH6vvFV1h6WL1yLthPDdbppr!861797866 with proxy=DIRECT
    network: Connecting http://192.168.0.39:9001/forms/lservlet;jsessionid=YnxlQNZS9n2hTnh3MlL2B76lLcxhhH6vvFV1h6WL1yLthPDdbppr!861797866 with proxy=DIRECT
    network: Connecting http://192.168.0.39:9001/forms/lservlet;jsessionid=YnxlQNZS9n2hTnh3MlL2B76lLcxhhH6vvFV1h6WL1yLthPDdbppr!861797866 with proxy=DIRECT
    network: Connecting http://192.168.0.39:9001/forms/lservlet;jsessionid=YnxlQNZS9n2hTnh3MlL2B76lLcxhhH6vvFV1h6WL1yLthPDdbppr!861797866 with proxy=DIRECT
    network: Connecting http://192.168.0.39:9001/forms/lservlet;jsessionid=YnxlQNZS9n2hTnh3MlL2B76lLcxhhH6vvFV1h6WL1yLthPDdbppr!861797866 with proxy=DIRECT
    network: Connecting http://192.168.0.39:9001/forms/lservlet;jsessionid=YnxlQNZS9n2hTnh3MlL2B76lLcxhhH6vvFV1h6WL1yLthPDdbppr!861797866 with proxy=DIRECT
    network: Connecting http://192.168.0.39:9001/forms/lservlet;jsessionid=YnxlQNZS9n2hTnh3MlL2B76lLcxhhH6vvFV1h6WL1yLthPDdbppr!861797866 with proxy=DIRECT
    network: Connecting http://192.168.0.39:9001/forms/lservlet;jsessionid=YnxlQNZS9n2hTnh3MlL2B76lLcxhhH6vvFV1h6WL1yLthPDdbppr!861797866 with proxy=DIRECT
    network: Connecting http://192.168.0.39:9001/forms/lservlet;jsessionid=YnxlQNZS9n2hTnh3MlL2B76lLcxhhH6vvFV1h6WL1yLthPDdbppr!861797866 with proxy=DIRECT
    network: Connecting http://192.168.0.39:9001/forms/lservlet;jsessionid=YnxlQNZS9n2hTnh3MlL2B76lLcxhhH6vvFV1h6WL1yLthPDdbppr!861797866 with proxy=DIRECT
    network: Connecting http://192.168.0.39:9001/forms/lservlet;jsessionid=YnxlQNZS9n2hTnh3MlL2B76lLcxhhH6vvFV1h6WL1yLthPDdbppr!861797866 with proxy=DIRECT
    network: Connecting http://192.168.0.39:9001/forms/lservlet;jsessionid=YnxlQNZS9n2hTnh3MlL2B76lLcxhhH6vvFV1h6WL1yLthPDdbppr!861797866 with proxy=DIRECT
    network: Connecting http://192.168.0.39:9001/forms/lservlet;jsessionid=YnxlQNZS9n2hTnh3MlL2B76lLcxhhH6vvFV1h6WL1yLthPDdbppr!861797866 with proxy=DIRECT
    network: Connecting http://192.168.0.39:9001/forms/lservlet;jsessionid=YnxlQNZS9n2hTnh3MlL2B76lLcxhhH6vvFV1h6WL1yLthPDdbppr!861797866 with proxy=DIRECT
    network: Connecting http://192.168.0.39:9001/forms/java/OneWare003.jpg with proxy=DIRECT
    network: Cache entry not found [url: http://192.168.0.39:9001/forms/java/OneWare003.jpg, version: null]
    network: Connecting http://192.168.0.39:9001/forms/java/OneWare003.jpg with proxy=DIRECT
    basic: Loaded image: http://192.168.0.39:9001/forms/java/OneWare003.jpg
    network: Connecting http://192.168.0.39:9001/forms/java/OneWare013.jpg with proxy=DIRECT
    network: Cache entry not found [url: http://192.168.0.39:9001/forms/java/OneWare013.jpg, version: null]
    network: Connecting http://192.168.0.39:9001/forms/java/OneWare013.jpg with proxy=DIRECT
    basic: Loaded image: http://192.168.0.39:9001/forms/java/OneWare013.jpg
    network: Connecting http://192.168.0.39:9001/forms/java/OPEN.jpg with proxy=DIRECT
    network: Cache entry not found [url: http://192.168.0.39:9001/forms/java/OPEN.jpg, version: null]
    network: Connecting http://192.168.0.39:9001/forms/java/OPEN.jpg with proxy=DIRECT
    basic: Loaded image: http://192.168.0.39:9001/forms/java/OPEN.jpg
    network: Connecting http://192.168.0.39:9001/forms/java/select_all.jpg with proxy=DIRECT
    basic: Loaded image: http://192.168.0.39:9001/forms/java/select_all.jpg
    network: Connecting http://192.168.0.39:9001/forms/java/Deselect.jpg with proxy=DIRECT
    basic: Loaded image: http://192.168.0.39:9001/forms/java/Deselect.jpg
    network: Connecting http://192.168.0.39:9001/forms/java/select_inverse.jpg with proxy=DIRECT
    basic: Loaded image: http://192.168.0.39:9001/forms/java/select_inverse.jpg
    network: Connecting http://192.168.0.39:9001/forms/java/oneware014.jpg with proxy=DIRECT
    basic: Loaded image: http://192.168.0.39:9001/forms/java/oneware014.jpg
    network: Connecting http://192.168.0.39:9001/forms/java/OneWare012.jpg with proxy=DIRECT
    network: Cache entry not found [url: http://192.168.0.39:9001/forms/java/OneWare012.jpg, version: null]
    network: Connecting http://192.168.0.39:9001/forms/java/OneWare012.jpg with proxy=DIRECT
    basic: Loaded image: http://192.168.0.39:9001/forms/java/OneWare012.jpg
    network: Connecting http://192.168.0.39:9001/forms/java/OneWare012.jpg with proxy=DIRECT
    basic: Loaded image: http://192.168.0.39:9001/forms/java/OneWare012.jpg
    network: Connecting http://192.168.0.39:9001/forms/lservlet;jsessionid=YnxlQNZS9n2hTnh3MlL2B76lLcxhhH6vvFV1h6WL1yLthPDdbppr!861797866 with proxy=DIRECT
    network: Cache entry not found [url: http://192.168.0.39:9001/forms/java/open.jpg, version: null]
    network: Connecting http://192.168.0.39:9001/forms/java/open.jpg with proxy=DIRECT
    network: Cache entry not found [url: http://192.168.0.39:9001/forms/java/oneware008.jpg, version: null]
    network: Connecting http://192.168.0.39:9001/forms/java/oneware008.jpg with proxy=DIRECT
    network: Cache entry not found [url: http://192.168.0.39:9001/forms/java/oneware007.jpg, version: null]
    network: Connecting http://192.168.0.39:9001/forms/java/oneware007.jpg with proxy=DIRECT
    network: Cache entry not found [url: http://192.168.0.39:9001/forms/java/oneware006.jpg, version: null]
    network: Connecting http://192.168.0.39:9001/forms/java/oneware006.jpg with proxy=DIRECT
    network: Connecting http://192.168.0.39:9001/ with proxy=DIRECT
    network: Connecting http://192.168.0.39:9001/ with proxy=DIRECT
    network: Cache entry not found [url: http://192.168.0.39:9001/forms/java/oneware005.jpg, version: null]
    network: Connecting http://192.168.0.39:9001/forms/java/oneware005.jpg with proxy=DIRECT
    network: Cache entry not found [url: http://192.168.0.39:9001/forms/java/oneware004.jpg, version: null]
    network: Connecting http://192.168.0.39:9001/forms/java/oneware004.jpg with proxy=DIRECT
    network: Connecting http://192.168.0.39:9001/ with proxy=DIRECT
    network: Cache entry not found [url: http://192.168.0.39:9001/forms/java/oneware001.jpg, version: null]
    network: Connecting http://192.168.0.39:9001/forms/java/oneware001.jpg with proxy=DIRECT
    network: Cache entry not found [url: http://192.168.0.39:9001/forms/java/oneware002.jpg, version: null]
    network: Connecting http://192.168.0.39:9001/forms/java/oneware002.jpg with proxy=DIRECT
    network: Cache entry not found [url: http://192.168.0.39:9001/forms/java/oneware003.jpg, version: null]
    network: Connecting http://192.168.0.39:9001/forms/java/oneware003.jpg with proxy=DIRECT
    network: Cache entry not found [url: http://192.168.0.39:9001/forms/java/OneWare012.jpg, version: null]
    network: Connecting http://192.168.0.39:9001/forms/java/OneWare012.jpg with proxy=DIRECT
    network: Cache entry not found [url: http://192.168.0.39:9001/forms/java/OPEN.jpg, version: null]
    network: Connecting http://192.168.0.39:9001/forms/java/OPEN.jpg with proxy=DIRECT
    network: Cache entry not found [url: http://192.168.0.39:9001/forms/java/OneWare013.jpg, version: null]
    network: Connecting http://192.168.0.39:9001/forms/java/OneWare013.jpg with proxy=DIRECT
    network: Cache entry not found [url: http://192.168.0.39:9001/forms/java/OneWare003.jpg, version: null]
    network: Connecting http://192.168.0.39:9001/forms/java/OneWare003.jpg with proxy=DIRECT
    network: Connecting http://192.168.0.39:9001/forms/lservlet;jsessionid=YnxlQNZS9n2hTnh3MlL2B76lLcxhhH6vvFV1h6WL1yLthPDdbppr!861797866 with proxy=DIRECT
    network: Connecting http://192.168.0.39:9001/forms/lservlet;jsessionid=YnxlQNZS9n2hTnh3MlL2B76lLcxhhH6vvFV1h6WL1yLthPDdbppr!861797866 with proxy=DIRECT
    network: Connecting http://192.168.0.39:9001/forms/lservlet;jsessionid=YnxlQNZS9n2hTnh3MlL2B76lLcxhhH6vvFV1h6WL1yLthPDdbppr!861797866 with proxy=DIRECT
    network: Connecting http://192.168.0.39:9001/forms/lservlet;jsessionid=YnxlQNZS9n2hTnh3MlL2B76lLcxhhH6vvFV1h6WL1yLthPDdbppr!861797866 with proxy=DIRECT
    network: Connecting http://192.168.0.39:9001/forms/lservlet;jsessionid=YnxlQNZS9n2hTnh3MlL2B76lLcxhhH6vvFV1h6WL1yLthPDdbppr!861797866 with proxy=DIRECT
    network: Connecting http://192.168.0.39:9001/ with proxy=DIRECT
    network: Connecting http://192.168.0.39:9001/forms/lservlet;jsessionid=YnxlQNZS9n2hTnh3MlL2B76lLcxhhH6vvFV1h6WL1yLthPDdbppr!861797866 with proxy=DIRECT
    network: Connecting http://192.168.0.39:9001/forms/lservlet;jsessionid=YnxlQNZS9n2hTnh3MlL2B76lLcxhhH6vvFV1h6WL1yLthPDdbppr!861797866 with proxy=DIRECT
    network: Connecting http://192.168.0.39:9001/forms/lservlet;jsessionid=YnxlQNZS9n2hTnh3MlL2B76lLcxhhH6vvFV1h6WL1yLthPDdbppr!861797866 with proxy=DIRECT
    network: Connecting http://192.168.0.39:9001/forms/lservlet;jsessionid=YnxlQNZS9n2hTnh3MlL2B76lLcxhhH6vvFV1h6WL1yLthPDdbppr!861797866 with proxy=DIRECT
    network: Connecting http://192.168.0.39:9001/forms/lservlet;jsessionid=YnxlQNZS9n2hTnh3MlL2B76lLcxhhH6vvFV1h6WL1yLthPDdbppr!861797866 with proxy=DIRECT
    network: Connecting http://192.168.0.39:9001/forms/lservlet;jsessionid=YnxlQNZS9n2hTnh3MlL2B76lLcxhhH6vvFV1h6WL1yLthPDdbppr!861797866 with proxy=DIRECT
    network: Connecting http://192.168.0.39:9001/forms/lservlet;jsessionid=YnxlQNZS9n2hTnh3MlL2B76lLcxhhH6vvFV1h6WL1yLthPDdbppr!861797866 with proxy=DIRECT
    network: Connecting http://192.168.0.39:9001/forms/lservlet;jsessionid=YnxlQNZS9n2hTnh3MlL2B76lLcxhhH6vvFV1h6WL1yLthPDdbppr!861797866 with proxy=DIRECT
    network: Connecting http://192.168.0.39:9001/forms/lservlet;jsessionid=YnxlQNZS9n2hTnh3MlL2B76lLcxhhH6vvFV1h6WL1yLthPDdbppr!861797866 with proxy=DIRECT
    network: Connecting http://192.168.0.39:9001/forms/lservlet;jsessionid=YnxlQNZS9n2hTnh3MlL2B76lLcxhhH6vvFV1h6WL1yLthPDdbppr!861797866 with proxy=DIRECT
    network: Connecting http://192.168.0.39:9001/forms/lservlet;jsessionid=YnxlQNZS9n2hTnh3MlL2B76lLcxhhH6vvFV1h6WL1yLthPDdbppr!861797866 with proxy=DIRECT
    network: Connecting http://192.168.0.39:9001/forms/lservlet;jsessionid=YnxlQNZS9n2hTnh3MlL2B76lLcxhhH6vvFV1h6WL1yLthPDdbppr!861797866 with proxy=DIRECT
    network: Connecting http://192.168.0.39:9001/forms/java/copy.jpg with proxy=DIRECT
    network: Cache entry not found [url: http://192.168.0.39:9001/forms/java/copy.jpg, version: null]
    network: Connecting http://192.168.0.39:9001/forms/java/copy.jpg with proxy=DIRECT
    basic: Loaded image: http://192.168.0.39:9001/forms/java/copy.jpg
    network: Cache entry not found [url: http://192.168.0.39:9001/forms/java/copy.jpg, version: null]
    network: Connecting http://192.168.0.39:9001/forms/java/copy.jpg with proxy=DIRECT
    network: Connecting http://192.168.0.39:9001/forms/lservlet;jsessionid=YnxlQNZS9n2hTnh3MlL2B76lLcxhhH6vvFV1h6WL1yLthPDdbppr!861797866 with proxy=DIRECT
    network: Connecting http://192.168.0.39:9001/forms/lservlet;jsessionid=YnxlQNZS9n2hTnh3MlL2B76lLcxhhH6vvFV1h6WL1yLthPDdbppr!861797866 with proxy=DIRECT
    network: Connecting http://192.168.0.39:9001/forms/lservlet;jsessionid=YnxlQNZS9n2hTnh3MlL2B76lLcxhhH6vvFV1h6WL1yLthPDdbppr!861797866 with proxy=DIRECT
    network: Connecting http://192.168.0.39:9001/forms/lservlet;jsessionid=YnxlQNZS9n2hTnh3MlL2B76lLcxhhH6vvFV1h6WL1yLthPDdbppr!861797866 with proxy=DIRECT
    network: Connecting http://192.168.0.39:9001/forms/lservlet;jsessionid=YnxlQNZS9n2hTnh3MlL2B76lLcxhhH6vvFV1h6WL1yLthPDdbppr!861797866 with proxy=DIRECT
    network: Connecting http://192.168.0.39:9001/forms/lservlet;jsessionid=YnxlQNZS9n2hTnh3MlL2B76lLcxhhH6vvFV1h6WL1yLthPDdbppr!861797866 with proxy=DIRECT
    network: Connecting http://192.168.0.39:9001/forms/java/OneWare003.jpg with proxy=DIRECT
    basic: Loaded image: http://192.168.0.39:9001/forms/java/OneWare003.jpg
    network: Connecting http://192.168.0.39:9001/forms/java/OneWare013.jpg with proxy=DIRECT
    basic: Loaded image: http://192.168.0.39:9001/forms/java/OneWare013.jpg
    network: Connecting http://192.168.0.39:9001/forms/java/OPEN.jpg with proxy=DIRECT
    basic: Loaded image: http://192.168.0.39:9001/forms/java/OPEN.jpg
    network: Connecting http://192.168.0.39:9001/forms/java/select_all.jpg with proxy=DIRECT
    basic: Loaded image: http://192.168.0.39:9001/forms/java/select_all.jpg
    network: Connecting http://192.168.0.39:9001/forms/java/Deselect.jpg with proxy=DIRECT
    basic: Loaded image: http://192.168.0.39:9001/forms/java/Deselect.jpg
    network: Connecting http://192.168.0.39:9001/forms/java/select_inverse.jpg with proxy=DIRECT
    basic: Loaded image: http://192.168.0.39:9001/forms/java/select_inverse.jpg
    network: Connecting http://192.168.0.39:9001/forms/java/oneware014.jpg with proxy=DIRECT
    basic: Loaded image: http://192.168.0.39:9001/forms/java/oneware014.jpg
    network: Connecting http://192.168.0.39:9001/forms/java/OneWare012.jpg with proxy=DIRECT
    basic: Loaded image: http://192.168.0.39:9001/forms/java/OneWare012.jpg
    network: Connecting http://192.168.0.39:9001/forms/java/OneWare012.jpg with proxy=DIRECT
    basic: Loaded image: http://192.168.0.39:9001/forms/java/OneWare012.jpg
    network: Connecting http://192.168.0.39:9001/forms/lservlet;jsessionid=YnxlQNZS9n2hTnh3MlL2B76lLcxhhH6vvFV1h6WL1yLthPDdbppr!861797866 with proxy=DIRECT
    network: Connecting http://192.168.0.39:9001/forms/lservlet;jsessionid=YnxlQNZS9n2hTnh3MlL2B76lLcxhhH6vvFV1h6WL1yLthPDdbppr!861797866 with proxy=DIRECT
    network: Connecting http://192.168.0.39:9001/forms/lservlet;jsessionid=YnxlQNZS9n2hTnh3MlL2B76lLcxhhH6vvFV1h6WL1yLthPDdbppr!861797866 with proxy=DIRECT
    network: Connecting http://192.168.0.39:9001/forms/lservlet;jsessionid=YnxlQNZS9n2hTnh3MlL2B76lLcxhhH6vvFV1h6WL1yLthPDdbppr!861797866 with proxy=DIRECT
    network: Connecting http://192.168.0.39:9001/forms/lservlet;jsessionid=YnxlQNZS9n2hTnh3MlL2B76lLcxhhH6vvFV1h6WL1yLthPDdbppr!861797866 with proxy=DIRECT
    network: Connecting http://192.168.0.39:9001/forms/lservlet;jsessionid=YnxlQNZS9n2hTnh3MlL2B76lLcxhhH6vvFV1h6WL1yLthPDdbppr!861797866 with proxy=DIRECT
    network: Connecting http://192.168.0.39:9001/forms/lservlet;jsessionid=YnxlQNZS9n2hTnh3MlL2B76lLcxhhH6vvFV1h6WL1yLthPDdbppr!861797866 with proxy=DIRECT
    network: Connecting http://192.168.0.39:9001/forms/lservlet;jsessionid=YnxlQNZS9n2hTnh3MlL2B76lLcxhhH6vvFV1h6WL1yLthPDdbppr!861797866 with proxy=DIRECT
    network: Connecting http://192.168.0.39:9001/forms/lservlet;jsessionid=YnxlQNZS9n2hTnh3MlL2B76lLcxhhH6vvFV1h6WL1yLthPDdbppr!861797866 with proxy=DIRECT
    network: Connecting http://192.168.0.39:9001/forms/lservlet;jsessionid=YnxlQNZS9n2hTnh3MlL2B76lLcxhhH6vvFV1h6WL1yLthPDdbppr!861797866 with proxy=DIRECT
    network: Connecting http://192.168.0.39:9001/forms/lservlet;jsessionid=YnxlQNZS9n2hTnh3MlL2B76lLcxhhH6vvFV1h6WL1yLthPDdbppr!861797866 with proxy=DIRECT
    network: Connecting http://192.168.0.39:9001/forms/lservlet;jsessionid=YnxlQNZS9n2hTnh3MlL2B76lLcxhhH6vvFV1h6WL1yLthPDdbppr!861797866 with proxy=DIRECT
    network: Connecting http://192.168.0.39:9001/forms/lservlet;jsessionid=YnxlQNZS9n2hTnh3MlL2B76lLcxhhH6vvFV1h6WL1yLthPDdbppr!861797866 with proxy=DIRECT

  • ORA-06508 cannot create excel file

    Hi,
    I have forms 6i and windows 7. We have few forms which should create excel files but all of them fail with ORA-06508 and it happens only on my PC. Other colleagues don't have any problem with it. Forms path on my PC is the same as ones on other PC's.
    Also weird, when I run problematic forms through debugger, they work correctly and create excel files.
    How to solve this?
    Tnx in advance,
    Nati

    Nati,
    Recompiling libraries is not an option because of dependencies on too many forms. The number of Forms in your application and their dependencies is irrelevant if you follow one simple rule: Always compile PL/SQL Libraries first; compile Menu Modules second and lastly, compile your Forms. This will eliminate the dependency issues.
    Anyway, mass recompiling is not allowed because of company rules. I disagree with this rule, but I don't work for your company! ;) Perhaps it is time for your company to re-evaluate this rule. :)
    I tried with replacing ";" with ";" in particular form and the result was non-oracle exception 304500 which unfortunately doesn't say anything detailed. If this produced an error, I recommend you close all Forms related applications; re-open Forms builder and try again. This method should never produce an error.
    I have forms 6i and windows 7.Forms 6i is not supported with Windows 7. More importantly, they are not compatible with each other. Forms 6i was designed to run on Windows 95/98. The differences between the Windows versions is tremendous. If you are unable to upgrade your Forms version, then at the very least, I recommend you run your application in Windows XP mode. This is not just setting the "Compatibility" to Windows XP. Take a look at Windows XP Mode - Windows 7 features, Install and Use Windows XP Mode in Windows 7 and Download Windows XP Mode.
    Running Forms 6i on Windows 7 is like mixing Pickles with Ice Cream. Somethings are just not meant to go together. :)
    Craig...

  • FRM-40735: ON-ERROR triggers raised unhandled exception ORA-06508

    I get the following error message: FRM-40735: ON-ERROR triggers raised unhandled exception ORA-06508
    after login in a Web forms application.
    I tried the solution as described in the Headstart Manual, e.g. recompiling the libraries in the specified order.
    All the libraries are in the working directory and has been included in FORMS60_PATH.
    All the involved stored procedures and packages are valid.
    the same application works fine as C/S.
    Any clue?
    Used configuration:
    Forms 6i
    Designer 6i r 4.11
    Headstart 6.5
    Oracle 8.1.7.4
    Oracle 9ias r 1 running on Sun Solaris 64bit version 5.8

    This is actually a pretty generic error and I would suggest running through the debugger to see the line of code it is actually failing at - that may make it easier to track.
    Regards
    Grant Ronald
    Forms Product Management

  • Webutil and ORA-06508

    Sometimes, but not always I am getting ORA-06508 when using Webutil. But I am only getting this error when calling webutil_file_transfer.client_to_as_with_progress
    I aslo use webutil_clientinfo, and that works just fine.
    /Vidar

    You don't find what ?
    Open the webutil.pll in the Forms Builder, then compile it then generate the executable with Ctrl+T
    Francois

  • ORA-06508 during nested execution

    There are 3 packages in database:
    - package_A with package_A.proc_AA that calls package_B.porc_BB form package B
    - package_B.proc_DD with procedure that calls procedure from package_C
    - I change table that is using only in package_C
    - I recompile all invalid objects. All package are VALID. My weblogic server is running. I check objects timestamp with this query (in result: no rows selected):
    select do.obj# d_obj,do.name d_name, u.name owner, po.obj# p_obj,po.name p_name,
    to_char(p_timestamp,'DD-MON-YYYY HH24:MI:SS') "P_Timestamp",
    to_char(po.stime ,'DD-MON-YYYY HH24:MI:SS') "STIME",
    decode(sign(po.stime-p_timestamp),0,'SAME','*DIFFER*') X
    from sys.obj$ do, sys.dependency$ d, sys.obj$ po, user$ u
    where P_OBJ#=po.obj#(+)
    and D_OBJ#=do.obj#
    and po.stime!=p_timestamp /*parent timestamp not match*/
    and do.owner#=u.user#
    order by 2,1;
    Then I start using my applications. I call package_A.proc_AA via WLS and I get only one error: ORA-06508: PL/SQL: could not find program unit being called
    This error comes from package_A.proc_AA when database try to execute package_B.porc_BB.
    There are two way to resolve problem: WLS restart or recompile package_A.
    Do you have any idea why this errors occurs and why WLS restart helps while errors comes from nested execution of package_B.porc_BB?
    Are there any methods to prevent this error?
    Do you have any ideas?
    Thanks.

    Your applications are probably using cached prepared statements, which have been
    corrupted/invalidated by your changing the DBMS out from under your pooled
    connections. If you are going to be doing that a lot, turn the WLS pool statement
    cache off. Otherwise, you can clear the pool's statement cache from the console
    when you do this.

  • QMSLIB50 causes ORA-06508

    The following error occured while querying a data block in Forms.
    QMS-00100: Error ORA-06508 PL/SQL: could not find program unit being called in pl/sql unit
    Unhandled exception in qms$block.set_mav_items_exg_record.
    I found set_mav_items_exg_record in qms$record but NOT in qms$block !
    I work with Forms 6 and Headstart 6.0

    First, (and totally unimportant) there is a typo in the error message. The actually name of the procedure is
    set_nav_items_exg_record, and you are correct it is in qms$record.
    It looks like at one time this procedure was in qms$block and was moved. It might be that you have
    mismatched versions of Headstart files. This change occurred between 5.0.3 and 5.0.3.1. It might
    be that your version of qmsevh50.pll is older.
    Of course, the simple solution is to change the calling code to call it in its actual location in qms$record.
    But you should also investigate if you have mismatched versions. Also, you might have a customization
    of qms$event_data_block from an older version of qmsevh50.pll. If you have customized it, you might
    have missed the change when the procedure was moved.
    Regards,
    Lauri

  • Webutil demo error ORA-06508

    hi
    i have installed DevSuit10g(rel2) i downloanded demo for webutil i have configured every thing as described in the example but after run when i click the button GET CLIENT INFO i get the following error message.
    FRM-40375: WHEN-BUTTON-PRESSED trigger raised.....ORA-06508
    what can be the problem

    chk if u have followed following steps...
    1)     Login with user name under which u want to use webutil
    2)     Create package and package body webutil_db using file
    C:\DevSuiteHome_1\forms\create_webutil_db.sql
    Compile both of above things
    3)     Compile the file webutil.pll using Oracle Forms Compiler so webutil.plx gets created
    4)     In C:\DevSuiteHome_1\forms\server\forms.cfg , add line
    AliasMatch ^/forms/webutil/(..*) $ORACLE_HOME/forms/webutil/$1"
    5)     In C:\DevSuiteHome_1\j2ee\DevSuite\application-deployments\forms\formsweb\ orion-web.xml
    Add line
    <virtual-directory virtual-path="/webutil" real-path="C:\DevSuiteHome_1/forms/webutil" />
    6)     In C:\DevSuiteHome_1\forms\server\formsweb.cfg file add line
    WebUtilArchive=frmwebutil.jar,jacob.jar
    baseHTMLjinitiator=webutiljini.htm
    baseHTMLjpi=webutiljpi.htm.
    baseHTML=webutilbase.htm.
    7)     In C:\DevSuiteHome_1\forms\server\default.env file
    In FORMS_PATH variable add path of webutil.pll as
    FORMS_PATH=C:\DevSuiteHome_1\forms;D:\Projects\DBF
    (by default webutil.pll is under forms, but if we use in our own folder then path of that should also be appended as shown above.
    WEBUTIL_CONFIG=C:\DevSuiteHome_1\forms\server\webutil.cfg
    CLASSPATH=C:\DevSuiteHome_1\forms\java\frmwebutil.jar;C:\DevSuiteHome_1\jdk\jre\lib\rt.jar
    Note: The JACOB can be downloaded from libraries from http://prdownloads.sourceforge.net/jacob-project/jacob_18.zip
    8)     Copy Jacob.dll and paste into C:\DevSuiteHome_1\forms\webutil
    9)     Copy Jacob.jar and paste into C:\DevSuiteHome_1\forms\java
    10)     Sign frmwebutil.jar and Jacob.jar files from command prompt
    Go to C:\DevSuiteHome_1\forms\webutil directory give command
    Sign_webutil C:\DevSuiteHome_1\forms\java\frmwebutil.jar
    After siging 1 file insign_webutil.bat file change SET JAR_KEY=webutil2 to SET JAR_KEY=webutil3. Then sigh the following file.
    Sign_webutil C:\DevSuiteHome_1\forms\java\jacob.jar
    11)     In webutil.cfg file add lines
    transfer.appsrv.enabled=TRUE
    transfer.appsrv.accessControl=FALSE
    transfer.appsrv.read.1=c:\temp
    transfer.appsrv.write.1=c:\temp
    12)     In FORMS_BUILDER_CLASSPATH REGISTRY entry append following if not there
    C:\DevSuiteHome_1\forms\java\frmwebutil.jar;C:\DevSuiteHome_1\forms\java\frmall.jar;C:\DevSuiteHome_1\forms\webutil.pll;C:\DevSuiteHome_1\forms\webutil.pll; C:\DevSuiteHome_1\forms\webutil.olb; C:\DevSuiteHome_1\forms\webutil\jacob.dll;C:\DevSuiteHome_1\forms\java\jacob.jar;C:\DevSuiteHome_1\jdk\jre\lib\rt.jar
    13)     Copy ffisamp.dll file into C:\DevSuiteHome_1\forms\webutil\ directory (thie file is supplied with webutil demo)
    14)     In C:\DevSuiteHome_1\forms\server\formsweb.cfg file see if the following line is present if not then add/append the line archive_jini=frmall_jinit.jar,frmwebutil.jar,jacob.jar
    15)     Add line install.syslib.0.user.1=ffisamp.dll|40960|1.0|true into wenutil.cfg file

Maybe you are looking for