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)

Similar Messages

  • 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

  • ORA-00904 and packaged function in report

    Oracle 9.2.0.7
    APEX 2.0
    Is APEX not able to deal with SQL that calls a packaged function?
    I ask because I'm able to execute this query:
    SELECT s.doc_id,
    s.last_name || ', ' || s.first_name full_name,
    s.p_id,
    s.create_date
    , rwa_wfrole.get_role_list(s.proj_id, s.p_id) wfrole_label
    FROM signatures_vw s
    WHERE s.proj_id = 182
    AND s.status = 'APPROVED'
    ORDER BY s.create_date, s.last_name, s.first_name
    in SQL*Plus, but not in the SQL Workshop or in a report region. In the latter case I get "ORA-00904 invalid identifier" for "rwa_wfrole.get_role_list"... which is a packaged function. Actually, to be more precise, it's a package in a remote database. In the APEX instance, I have a synonym pointing to it.
    Thanks for insight.
    -John

    I can't reproduce this in 10g. I did find bug 4177810 (Fixed in 9.2.0.8 Server Patch Set) that looks a bit like this problem.
      Description
        An unexpected ORA-904 can occur for some internally generated SQL
        when the select list contains non-column constants and the select
        appears in the FROM clause. This can occur for SQL produced for
        parallel query or for remote / distributed queries.
        Workaround:
          Rewrite the query to avoid constant expressions in the FROM clause select lists.***************************
    There are also recommendations dating way back that you should include the schema name in the Create Synonym statement.
    Scott

  • ORA-22905 and Cast function

    I am running a query with following code:
    select d.acct_num, lib.fmt_money(a.amt) Total Amount
    from account d, table(report.lib.expense (d.acct_num)) a
    where clause.
    Here:
    1. Report is another schema containing packqges for reporting development.
    2. lib is package name created in the report schema. It contains function such as expense.
    3. expense is a function under Lib package as
    function expense (p_acct number) return number is
    acct_num number;
    begin select xxxx into acct_num from xxx_table); return nvl(acct_num, 0);
    end expense;
    Then when I run this select statement, it gave me ORA-22905 error. Cause: attempt to access rows of an item whose type is not known at parse time or that is not of a nested table type. Action: use CAST to cast the item to a nested table type.
    I used CAST like this:
    select d.acct_num, CAST(a.amt as number ) Total Amount
    from account d, table(report.lib.expense (d.acct_num)) a
    where clause.
    It gave me ORA-00923 From keyword not found where expected.
    Please help me to find where the problem is and thank you for your help a lot.

    citicbj wrote:
    I have checked function and found that function was defined as this:
    function expense (p_exp varchar2) return number
    is
    l_exp number;
    begin
    select xxx into l_exp from xxxx where clause;
    return nvl(l_exp, 0);
    end expense;
    So this is not defined as the table of array. So I take the table off from select statement as
    select d.acct_num,
    to_number(a.amt) Total Amount
    from account d,
    report.lib.expense (d.acct_num) a
    where d.acct_num = a.acct_num;
    Then it return ORA-00933 SQL command not ptoperly ended. However, I couldn't see any not properly ended SQL code here. Please advise your comments.Should just be ...
    select
       d.acct_num,
       report.lib.expense (d.acct_num) as "Total Amount"
       --to_number(a.amt) Total Amount
    from account dNotice that i enclosed the column alias (Total Amount) in " ... that is because you can't have a column alias with spaces as you tried without doing this (the parser gets sad).
    Also, you cannot use a function returning a single value like this as a nested table (at least not the way you are trying) and in your case there's no reason. You don't want to join to it, you are passing in ACCT_NUM which the function will presumably use to filter out not relevant data.
    Finally, there's no reason to TO_NUMBER the function result ... it's already defined to return a number :)

  • 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....

  • 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...

  • Webutil give me ora-06508

    Hi, i ran webutil demo and the screen show ok, but when i press the button GET_CLIENT_INFO appear the message
    when button pressed ORA-06508 and not read the procedure ....
    Regards

    hi
    try something like this.
    :item := webutil_clientinfo.get_time_zone;please can u provide us complete code?
    sarah

  • 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

  • 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.

  • 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-00911: invalid character - Calling a function from Java..

    Hi to all.. I have an issue when calling an oracle function from Java..
    This is my Java code:
    final StringBuffer strSql = new StringBuffer();
    strSql.append("SELECT GET_TBL('II_2_1_6_5') AS TABLA FROM DUAL;");
    st = conexion.createStatement();
    rs = st.executeQuery(strSql.toString());
    and in the executeQuery a SQLException is throwed:
    java.sql.SQLException: ORA-00911: invalid character
    I paste the query in TOAD and it works.. :S
    anybody knows how can I solve this?

    Remove the Semicolon after Dual.
    strSql.append("SELECT GET_TBL('II_2_1_6_5') AS TABLA FROM DUAL");
    Sushant

  • Strange ora-1403 and 6508 errors after compiling forms in 10.1.2.0.2

    Hi, today we migrated our Application Server to 10.1.2.0.2 and totally unexpected (it was not mentioned in the upgrade guide of 400 pages...) we had to recompile all 9.0.4-executables
    So we installed Developer Suite 10.1.2.0.2 and recompiled all libraries, forms and menus. There were no errors reported, so everything should be valid.
    Now we can run the forms again - that is, they start without problems - but on some forms (so not all), after doing Run Query, we immediately get ORA-1403, followed by ORA-6508.
    Could this perhaps be caused by "something" in the Headstart-libraries that can not be used in 10.1.2?
    A quick respons would be perfect, because many users have problems now.
    Regards, JW

    Hi Josef,
    indeed i recompiled them all and the errors are raised in development (running standalone oc4j) and production environment (application server 10.1.2).
    Currently i'm migrating the forms to Headstart 65401 and i will update this thread with the results. I guess/hope that the obsolete forms functions/procedures caused these errors.
    Thanks, JW

  • 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

  • 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.

  • 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?

Maybe you are looking for

  • Standard Report on Fleet Specific Data

    Hi gurus, I was trying to use Tcode IH08 to view equipment data. but i cannot view fleet specific data such as license plate number, VIN, Fuel card No. Engine Type, Capacity Engine serial No., etc. How can i view those fields? Thank you very much!

  • How ca i search a particular word in mail

    can anybody please tell me how to search a particular word in mail Please mention the coding

  • Structural Exception During Auto Imports In MDM

    Hi All, We are facing a problem while auto importing bulk data. System is throwing structural exception and preventing data from importing automatically. Is there any way that we could identify which segment in XML is causing this structural exceptio

  • Few HFM questions, What is XBRL tages? when we use it?  User defined1,2,3?

    Hi professionals, 1) What is XBRL tags? I never use it in HFM. I want to know it in a smile way with an example if possible 2) What is user Defined 1,2,3. HFM application run by many users. So how they share it and what it means exactly? Please rever

  • Flash to wmv

    can i convert from flash (swf) or raw files in captivate to wmv??? tnx in advance