Client_Text_IO and errors WUC-12, WUC-14

I have some pretty basic code as shown below. I just want to pull records from a cursor and output them to a .xls file. However, when I run this code, after 10 seconds or so I get the following errors:
WUC-14 [getFromObjectCache] Object Cache Error: Specified object handle -1 not found in the cache
WUC-14 [getFromObjectCache] Object Cache Error: Specified object handle -1 not found in the cache
WUC-12 [FileFunctions.putf()] Object Cache Error: Object is not the expected BufferedWriter type
The cursor is fine, this code worked fine in the past (6i) until we recently tried upgrading to the web and changed Text_IO to Client_Text_IO. The output should be 3 columns of data and about 25,000 rows. However, since I added the Client_Text_IO's I only get around 6000 rows of data before I get the errors. Also, it seems like I'm getting the last 6000 rows, the first 19,000 rows of data and the header row never get written to the file. Has anyone seen these errors before? Is there any kind of timeout setting in the config files I need to worry about? Note that all our other webutil stuff and Client_Text_IO's work fine.
-- Code --
file_handle := Client_Text_IO.FOpen( file_name, 'w' );
Client_Text_IO.PutF( file_handle,'%s \n', 'Header Text' );
for one_rec in data_cursor loop
-- the columns are tab seperated
Client_Text_IO.PutF( file_handle, '%s \n', one_rec.Item_Name || '     ' || one_rec.Item_Number || '     ' || one_rec.Test_Name );
end loop;
Client_Text_IO.FClose( file_handle );

Sure, here is the code. Since I posted before, I tried a few other reports we have that output over 200k of data... when I did, some of the other reports gave me the same error message.
procedure Gen_Test_Rpt is
cursor data_cursor is
select cd.item_name, cd.item_number, cd.test_name
from compact_data cd
order by cd.item_name;
file_handle Client_Text_IO.File_Type;
File_Name varchar2(1000) := 'c:\test_report.xls';
-- there are tabs between "Item Name" and "Item #" and "Item #" and "Test Name"
Header varchar2(400) := 'Item Name     Item #     Test Name';
begin
file_handle := Client_Text_IO.FOpen( File_Name, 'w' );
Client_Text_IO.PutF( file_handle,'%s \n', Header );
for one_rec in data_cursor loop
-- tab seperated
Client_Text_IO.PutF( file_handle,'%s \n', one_rec.item_name || '     ' || to_char(one_rec.item_number) || '     ' || one_rec.test_name );
end loop;
Client_Text_IO.FClose( file_handle );
end;

Similar Messages

  • Error WUC-14 after open a File with CLIENT_TEXT_IO.FOPEN (Oracle 10g)

    Hi,
    the error WUC-14 occurs during open a file with forms10g.
    F_VersandZahlen := CLIENT_TEXT_IO.FOPEN (F_Dateiname,'w');
    Afterwards the error message it ist possible to write into the file and close it correctyl (without am error message - also the Information is correkt).
    During debugging the error occurs in the function GETPROPERTY (Webutil).
    the error occurs only sometimes.
    Can anybody help me to solve the problem ?
    best regards,
    Alexandra Schermann

    Hi Alexandra,
    You can catch the exception in Exceptions part and close the file. Something like,
    DECLARE
    F_VersandZahlen CLIENT_TEXT_IO.FILE_TYPE;
    BEGIN
    F_VersandZahlen := CLIENT_TEXT_IO.FOPEN (F_Dateiname,'w');
    <do your processing>
    EXCEPTION
      WHEN OTHERS THEN
       CLIENT_TEXT_IO.FCLOSE(F_VersandZahlen);
    END;-Arun

  • Error WUC-14 after CLIENT_TEXT_IO.FOPEN

    Hi,
    the error WUC-14 occurs during open a file with forms10g.
    F_VersandZahlen := CLIENT_TEXT_IO.FOPEN (F_Dateiname,'w');
    Afterwards the error message it ist possible to write into the file and close it correctyl (without am error message - also the Information is correkt).
    During debugging the error occurs in the function GETPROPERTY (Webutil).
    the error occurs only sometimes.
    Can anybody help me to solve the problem ?
    best regards,
    Alexandra Schermann

    Sounds like an Oracle Forms question... there is a dedicated forum for Forms. Maybe answer your question there.
    Forms
    Edited by: Alex Nuijten on Oct 27, 2009 11:08 AM

  • Error WUC-5

    I configured my WebUtil Demo and now it has a problem. When I run the forms shows me an error WUC-5: No WebUtil Configuration File specified.
    Where can I configure this?

    Hi,
    you have to configure,
    webutil.cfg and formsweb.cfg
    In formsweb.cfg,
    Please change,
    basehtmljpi =C:\Webutil\webutil_105\server\webutiljpi.htm
    basehtml = C:\Webutil\webutil_105server\webutilbase.htm
    basehtmljinitiatior=c:\webutil\server\webutiljini.htm
    workingDirectory= C:\Webutil\webutil_105\server
    Please add,
    [webutil]
    buffer_records=NO
    debug_messages=YES
    array=YES
    query_only=NO
    quiet=NO
    RENDER=YES
    # Config parameters for Webutil
    webUtilArchive=/forms90/webutil/webutil.jar,/forms90/webutil/jacob.jar
    Additional Steps needed.
    1) Downloaded http://danadler.com/jacob/jacobBin_17.zip.
    This archive supplies the core OLE functionality provided by WebUtil
    2) Extracted in C:\Webutil\webutil_105\lib
    3) Change in
    C:\Webutil\webutil_105\util\signer.properties
    JDK_HOME=C:\Orant10g\jdk
    4) Go to command window
    go to C:\Webutil\webutil_105\util\
    give makecert and sign
    5) go to C:\Webutil\webutil_105\util\
    and give
    sign C:\Webutil\webutil_105\lib\webutil.jar
    sign C:\Webutil\webutil_105\lib\jacob.jar
    -- configuring hTTP SERVER FOR WEBUTIL
    --chnnged in
    1)orion-web.xml
    create a directory webutil under
    j2ee\Devsuites\application-deployment\forms\forms90web\webutil
    -- under,
    j2ee\Devsuites\application-deployment\forms\forms90web\orion-web.xml
    add,
    <virtual-directory virtual-path="/webutil" real-path="C:\Webutil\webutil_105\lib" />
    2) HAVE TO ADD in FORMS90.config (done)
    ################## Virtual path for webutil #############
    AliasMatch ^/forms90/webutil/(..*) "C:\Webutil/webutil_105/lib/$1"
    II) In forms,
    1) we have to replace all
    text_io with client_text_io
    get_file_name with client_get_file_name
    host with Client_host
    2) Have to create Attachedlibraries by attaching webutil.dll
    3) copy webutil.olb under object groups.
    http://
    <domain:portnumber>/forms90/f90servlet?config=webutil&form=C:\AMEX\UOB_PIFRM_webutil.fmx&userid=ccgro/ccgro@phoenix
    These are as per my settings. Please change it according to your settings.

  • Web Util Error WUC-23

    Hello All,
    I am using Client_Ole2 function in my form.
    When Button pressed is giving the following stated issue.
    I have been successful with the open dialog box functionality with client_get_filename
    Since I am using OLE2 for my Windows applications
    it is giving the following unresolved issues.
    Loading http://wi-3-3a.wipro.co.in:8888/forms90/java/webutil.jar from JAR cache
    Loading http://wi-3-3a.wipro.co.in:8888/forms90/java/jacob.jar; from JAR cache
    Loading http://wi-3-3a.wipro.co.in:8888/forms90/java/f90all_jinit.jar from JAR cache
    RegisterWebUtil - Loading Webutil Version 1.0.2 Beta
    Loading http://wi-3-3a.wipro.co.in:8888/forms90/java/rolloverbutton.jar from JAR cache
    connectMode=HTTP, native.
    Forms Applet version is : 90270
    2003-Oct-13 10:25:40.234 ERROR>WUC-23 [URLDownload.pullFile()] System library download failed due to incorrect install.syslib.location virtual directory definition in webutil.cfg
    2003-Oct-13 10:25:40.359 ERROR>WUC-23 [URLDownload.pullFile()] System library download failed due to incorrect install.syslib.location virtual directory definition in webutil.cfg
    2003-Oct-13 10:25:40.406 ERROR>WUC-23 [URLDownload.pullFile()] System library download failed due to incorrect install.syslib.location virtual directory definition in webutil.cfg
    Exception occurred during event dispatching:
    java.lang.UnsatisfiedLinkError: C:\Program Files\Oracle\JInitiator 1.3.1.9\bin\jacob.dll: %1 is not a valid Win32 application
         at java.lang.ClassLoader$NativeLibrary.load(Native Method)
         at java.lang.ClassLoader.loadLibrary0(Unknown Source)
         at java.lang.ClassLoader.loadLibrary(Unknown Source)
         at java.lang.Runtime.loadLibrary0(Unknown Source)
         at java.lang.System.loadLibrary(Unknown Source)
         at com.jacob.com.Dispatch.<clinit>(Dispatch.java)
         at oracle.forms.webutil.ole.OleFunctions.create_obj(OleFunctions.java:513)
         at oracle.forms.webutil.ole.OleFunctions.getProperty(OleFunctions.java:218)
         at oracle.forms.handler.UICommon.onGet(Unknown Source)
         at oracle.forms.engine.Runform.onGetHandler(Unknown Source)
         at oracle.forms.engine.Runform.processMessage(Unknown Source)
         at oracle.forms.engine.Runform.processSet(Unknown Source)
         at oracle.forms.engine.Runform.onMessageReal(Unknown Source)
         at oracle.forms.engine.Runform.onMessage(Unknown Source)
         at oracle.forms.engine.Runform.processEventEnd(Unknown Source)
         at oracle.ewt.lwAWT.LWComponent.redispatchEvent(Unknown Source)
         at oracle.ewt.lwAWT.LWComponent.processEvent(Unknown Source)
         at java.awt.Component.dispatchEventImpl(Unknown Source)
         at java.awt.Container.dispatchEventImpl(Unknown Source)
         at java.awt.Component.dispatchEvent(Unknown Source)
         at java.awt.LightweightDispatcher.retargetMouseEvent(Unknown Source)
         at java.awt.LightweightDispatcher.processMouseEvent(Unknown Source)
         at java.awt.LightweightDispatcher.dispatchEvent(Unknown Source)
         at java.awt.Container.dispatchEventImpl(Unknown Source)
         at java.awt.Window.dispatchEventImpl(Unknown Source)
         at java.awt.Component.dispatchEvent(Unknown Source)
         at java.awt.EventQueue.dispatchEvent(Unknown Source)
         at java.awt.EventDispatchThread.pumpOneEventForHierarchy(Unknown Source)
         at java.awt.EventDispatchThread.pumpEventsForHierarchy(Unknown Source)
         at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
         at java.awt.EventDispatchThread.run(Unknown Source)
    Please help...
    Regards,
    Kapil Uppal

    Andrew,
    I have got Jacob.dll in the forms90/Java which I have set in my configurations file.
    Now after implementing ur suggestions WUC-20 error is what I am getting now.
    Please look at the understated issues
    Oracle JInitiator: Version 1.3.1.8
    Using JRE version 1.3.1.9 Java HotSpot(TM) Client VM
    User home directory = C:\Documents and Settings\cwi1050.WIPRO
    Proxy Configuration: Manual Configuration
    Proxy: blrproxy.wipro.co.in:80
    Proxy Overrides: *.wipro.co.in,<local>
    JAR cache enabled
    Location: C:\Documents and Settings\cwi1050.WIPRO\Oracle Jar Cache
    Maximum size: unlimited
    Compression level: 0
    c: clear console window
    f: finalize objects on finalization queue
    g: garbage collect
    h: display this help message
    l: dump classloader list
    m: print memory usage
    q: hide console
    s: dump system properties
    t: dump thread list
    x: clear classloader cache
    0-5: set trace level to <n>
    Loading http://wi-3-3a.wipro.co.in:8888/forms90/java/webutil.jar from JAR cache
    Loading http://wi-3-3a.wipro.co.in:8888/forms90/java/jacob.jar; from JAR cache
    Loading http://wi-3-3a.wipro.co.in:8888/forms90/java/f90all_jinit.jar from JAR cache
    RegisterWebUtil - Loading Webutil Version 1.0.2 Beta
    Loading http://wi-3-3a.wipro.co.in:8888/forms90/java/rolloverbutton.jar from JAR cache
    connectMode=HTTP, native.
    Forms Applet version is : 90270
    2003-Oct-13 14:48:48.710 ERROR>WUC-20 [URLDownload.pullFile()] The stated size of the source file http://wi-3-3a.wipro.co.in:8888/forms90/D:\orahome\forms90\java/jacob.dll does not match that of the downloaded file C:\PROGRA~1\Oracle\JINITI~1.9\bin\jacob.dll
    2003-Oct-13 14:48:48.757 ERROR>WUC-20 [URLDownload.pullFile()] The stated size of the source file http://wi-3-3a.wipro.co.in:8888/forms90/D:\orahome\forms90\java/JNIsharedstubs.dll does not match that of the downloaded file C:\PROGRA~1\Oracle\JINITI~1.9\bin\JNIsharedstubs.dll
    2003-Oct-13 14:48:48.820 ERROR>WUC-20 [URLDownload.pullFile()] The stated size of the source file http://wi-3-3a.wipro.co.in:8888/forms90/D:\orahome\forms90\java/d2kwut60.dll does not match that of the downloaded file C:\PROGRA~1\Oracle\JINITI~1.9\bin\d2kwut60.dll
    Exception occurred during event dispatching:
    java.lang.UnsatisfiedLinkError: C:\Program Files\Oracle\JInitiator 1.3.1.9\bin\jacob.dll: %1 is not a valid Win32 application
         at java.lang.ClassLoader$NativeLibrary.load(Native Method)
         at java.lang.ClassLoader.loadLibrary0(Unknown Source)
         at java.lang.ClassLoader.loadLibrary(Unknown Source)
         at java.lang.Runtime.loadLibrary0(Unknown Source)
         at java.lang.System.loadLibrary(Unknown Source)
         at com.jacob.com.Dispatch.<clinit>(Dispatch.java)
         at oracle.forms.webutil.ole.OleFunctions.create_obj(OleFunctions.java:513)
         at oracle.forms.webutil.ole.OleFunctions.getProperty(OleFunctions.java:218)
         at oracle.forms.handler.UICommon.onGet(Unknown Source)
         at oracle.forms.engine.Runform.onGetHandler(Unknown Source)
         at oracle.forms.engine.Runform.processMessage(Unknown Source)
         at oracle.forms.engine.Runform.processSet(Unknown Source)
         at oracle.forms.engine.Runform.onMessageReal(Unknown Source)
         at oracle.forms.engine.Runform.onMessage(Unknown Source)
         at oracle.forms.engine.Runform.processEventEnd(Unknown Source)
         at oracle.ewt.lwAWT.LWComponent.redispatchEvent(Unknown Source)
         at oracle.ewt.lwAWT.LWComponent.processEvent(Unknown Source)
         at java.awt.Component.dispatchEventImpl(Unknown Source)
         at java.awt.Container.dispatchEventImpl(Unknown Source)
         at java.awt.Component.dispatchEvent(Unknown Source)
         at java.awt.LightweightDispatcher.retargetMouseEvent(Unknown Source)
         at java.awt.LightweightDispatcher.processMouseEvent(Unknown Source)
         at java.awt.LightweightDispatcher.dispatchEvent(Unknown Source)
         at java.awt.Container.dispatchEventImpl(Unknown Source)
         at java.awt.Window.dispatchEventImpl(Unknown Source)
         at java.awt.Component.dispatchEvent(Unknown Source)
         at java.awt.EventQueue.dispatchEvent(Unknown Source)
         at java.awt.EventDispatchThread.pumpOneEventForHierarchy(Unknown Source)
         at java.awt.EventDispatchThread.pumpEventsForHierarchy(Unknown Source)
         at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
         at java.awt.EventDispatchThread.run(Unknown Source)
    What shall be the case now.
    I have J Initiator 1.3.1.8 with 1.3.1.9 Java runtime.
    Please revert,
    Kapil Uppal

  • ERROR WUC-24 [URLDownload.pullFile()]

    I am working on Oracle Application server 10g (9.0.4). I configured webutil for OLE functinality (to create excel). I am running the test form provided to test the webutil. It works fine but the folliowing error come in the java console when form loads
    2009-Jul-08 21:08:30.421 ERROR>WUC-24 [URLDownload.pullFile()] Error reading URL http://ecs-master:7778/forms90/webutil/jacob.dll
    2009-Jul-08 21:08:30.453 ERROR>WUC-24 [URLDownload.pullFile()] Error reading URL http://ecs-master:7778/forms90/webutil/JNIsharedstubs.dll
    2009-Jul-08 21:08:30.484 ERROR>WUC-24 [URLDownload.pullFile()] Error reading URL http://ecs-master:7778/forms90/webutil/d2kwut60.dll
    It does not end here. When i click on the ole tab in the form and try to create the word file it throws exception:
    Exception occurred during event dispatching:
    java.lang.UnsatisfiedLinkError: no jacob in java.library.path
         at java.lang.ClassLoader.loadLibrary(Unknown Source)
         at java.lang.Runtime.loadLibrary0(Unknown Source)
         at java.lang.System.loadLibrary(Unknown Source)
         at com.jacob.com.Dispatch.<clinit>(Dispatch.java:537)
         at oracle.forms.webutil.ole.OleFunctions.create_obj(OleFunctions.java:398)
         at oracle.forms.webutil.ole.OleFunctions.getProperty(OleFunctions.java:189)
         at oracle.forms.handler.UICommon.onGet(Unknown Source)
         at oracle.forms.engine.Runform.onGetHandler(Unknown Source)
         at oracle.forms.engine.Runform.processMessage(Unknown Source)
         at oracle.forms.engine.Runform.processSet(Unknown Source)
         at oracle.forms.engine.Runform.onMessageReal(Unknown Source)
         at oracle.forms.engine.Runform.onMessage(Unknown Source)
         at oracle.forms.engine.Runform.processEventEnd(Unknown Source)
         at oracle.ewt.lwAWT.LWComponent.redispatchEvent(Unknown Source)
         at oracle.ewt.lwAWT.LWComponent.processEvent(Unknown Source)
         at java.awt.Component.dispatchEventImpl(Unknown Source)
         at java.awt.Container.dispatchEventImpl(Unknown Source)
         at java.awt.Component.dispatchEvent(Unknown Source)
         at java.awt.LightweightDispatcher.retargetMouseEvent(Unknown Source)
         at java.awt.LightweightDispatcher.processMouseEvent(Unknown Source)
         at java.awt.LightweightDispatcher.dispatchEvent(Unknown Source)
         at java.awt.Container.dispatchEventImpl(Unknown Source)
         at java.awt.Component.dispatchEvent(Unknown Source)
         at java.awt.EventQueue.dispatchEvent(Unknown Source)
         at java.awt.EventDispatchThread.pumpOneEventForHierarchy(Unknown Source)
         at java.awt.EventDispatchThread.pumpEventsForHierarchy(Unknown Source)
         at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
         at java.awt.EventDispatchThread.run(Unknown Source)
    Please help me out.

    ok that was the mistake i was making in the path, i was using:
    AliasMatch ^/forms/webutil/(..*) c:\ora10gAS/forms90/webutil/$1" instead
    AliasMatch ^/forms90/webutil/(..*) c:\ora10gAS/forms90/webutil/$1"
    My XML file is
    <virtual-directory virtual-path="/webutil" real-path="c:\forms10g/forms90/webutil" />
    Now both these directories 'c:\ora10gAS/forms90/webutil' and 'c:\forms10g/forms90/webutil' contain only three things:
    d2kwut60.dll
    jacob.dll
    JNIsharedstubs.dll
    but you know what, it still showing the same error. My first thaught after changing 'forms' to 'forms90' was that i finally got the root cause of the error but then the console really made me angry when i saw the same error again. Here what console says:
    Oracle JInitiator: Version 1.3.1.17
    Using JRE version 1.3.1.17-internal Java HotSpot(TM) Client VM
    User home directory = C:\Documents and Settings\waqas.arshad
    Proxy Configuration: Manual Configuration
    Proxy: 192.168.100.16:8080
    Proxy Overrides: 192.168.100.41,<local>
    JAR cache enabled
    Location: C:\Documents and Settings\waqas.arshad\Oracle Jar Cache
    Maximum size: 50 MB
    Compression level: 0
    c: clear console window
    f: finalize objects on finalization queue
    g: garbage collect
    h: display this help message
    l: dump classloader list
    m: print memory usage
    q: hide console
    s: dump system properties
    t: dump thread list
    x: clear classloader cache
    0-5: set trace level to <n>
    Loading http://ecs-master:7778/forms90/java/frmwebutil.jar from JAR cache
    Loading http://ecs-master:7778/forms90/java/f90all_jinit.jar from JAR cache
    RegisterWebUtil - Loading WebUtil Version 1.0.6
    Loading http://ecs-master:7778/forms90/java/jacob.jar from JAR cache
    proxyHost=null
    proxyPort=0
    connectMode=HTTP, native.
    Forms Applet version is : 9.0.4.0
    2009-Jul-10 14:30:53.343 ERROR>WUC-24 [URLDownload.pullFile()] Error reading URL http://ecs-master:7778/forms90/webutil/jacob.dll
    2009-Jul-10 14:30:53.375 ERROR>WUC-24 [URLDownload.pullFile()] Error reading URL http://ecs-master:7778/forms90/webutil/JNIsharedstubs.dll
    2009-Jul-10 14:30:53.406 ERROR>WUC-24 [URLDownload.pullFile()] Error reading URL http://ecs-master:7778/forms90/webutil/d2kwut60.dll

  • Web Util error WUC-19

    Some of our users get the following error:
    WUC-19: Unable to write to local file
    C:\PROGRA~1\Oracle\JINITI~1.17\bin\JNIsharedstubs.dll. Failed to download URL
    http://oururl.com:7777/forms90/webutil/JNIsharedstubs.dll
    Has anyone seen this and know how to resolve?
    thank you.

    Oh yes .... In fact most of the end users dont have write privileges on
    C:\PROGRA~1\Oracle\JINITI~1.17\bin\JNIsharedstubs
    So if the end users are using any of the webutil features then it will try to download this to C:\PROGRA~1\Oracle\JINITI~1.17\bin .
    So in our network what we did was as part of the jinitator installation we copied all the required dlls to this particular location.
    This file is copied only once, so if some one with write privileges uses the system then this will get copied automatically.
    Rajesh Alex

  • Error WUC-5 No WebUtil configuration file specified

    hi all
    suddenly i got the following error in my java console i google and did not find the solution.
    Did someone face the same problem ever?
    please help me out thanks in advance.
    Loading http://xp:8889/forms90/java/frmwebutil.jar from JAR cache
    Loading http://xp:8889/forms90/java/f90all_jinit.jar from JAR cache
    RegisterWebUtil - Loading WebUtil Version 1.0.6
    Loading http://xp:8889/forms90/java/jacob.jar from JAR cache
    proxyHost=null
    proxyPort=0
    connectMode=HTTP, native.
    Forms Applet version is : 9.0.4.0
    2010-Apr-15  18:52:30.406 ERROR>WUC-5 [WebUtil_Core.PopulatePropertyBundle] No WebUtil configuration file specified
    Exception occurred during event dispatching:
    java.lang.UnsatisfiedLinkError: no jacob in java.library.path
         at java.lang.ClassLoader.loadLibrary(Unknown Source)
         at java.lang.Runtime.loadLibrary0(Unknown Source)
         at java.lang.System.loadLibrary(Unknown Source)
         at com.jacob.com.Dispatch.<clinit>(Dispatch.java:537)
         at oracle.forms.webutil.ole.OleFunctions.create_obj(OleFunctions.java:398)
         at oracle.forms.webutil.ole.OleFunctions.getProperty(OleFunctions.java:189)
         at oracle.forms.handler.UICommon.onGet(Unknown Source)
         at oracle.forms.engine.Runform.onGetHandler(Unknown Source)
         at oracle.forms.engine.Runform.processMessage(Unknown Source)
         at oracle.forms.engine.Runform.processSet(Unknown Source)
         at oracle.forms.engine.Runform.onMessageReal(Unknown Source)
         at oracle.forms.engine.Runform.onMessage(Unknown Source)
         at oracle.forms.engine.Runform.processEventEnd(Unknown Source)
         at oracle.ewt.lwAWT.LWComponent.redispatchEvent(Unknown Source)
         at oracle.ewt.lwAWT.LWComponent.processEvent(Unknown Source)
         at java.awt.Component.dispatchEventImpl(Unknown Source)
         at java.awt.Container.dispatchEventImpl(Unknown Source)
         at java.awt.Component.dispatchEvent(Unknown Source)
         at java.awt.LightweightDispatcher.retargetMouseEvent(Unknown Source)
         at java.awt.LightweightDispatcher.processMouseEvent(Unknown Source)
         at java.awt.LightweightDispatcher.dispatchEvent(Unknown Source)
         at java.awt.Container.dispatchEventImpl(Unknown Source)
         at java.awt.Component.dispatchEvent(Unknown Source)
         at java.awt.EventQueue.dispatchEvent(Unknown Source)
         at java.awt.EventDispatchThread.pumpOneEventForHierarchy(Unknown Source)
         at java.awt.EventDispatchThread.pumpEventsForHierarchy(Unknown Source)
         at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
         at java.awt.EventDispatchThread.run(Unknown Source)Form 10G R1.
    i found this.
    Re: WUC-5 error
    sarah

    done thank for everyone.
    i modified webutil.cfg and modified the class-path(default.env)

  • Web-util error WUC-6

    Hello All,
    I have a push button which should open a dialog box for selection of file.
    When Button pressed gives me an error WUC-6 which says that Unable to read Configuration file
    C:\Webutil\lib\webutil.jar;D\orahome\kdk\jre\lib\rt.jar
    Please suggest a solution...
    Thanks and Regards,
    Kapil Uppal

    Please look at the webutil manual - there is section on this error.
    http://otn.oracle.com/products/forms/htdocs/webutil/webutil_manual.pdf
    Regards
    Grant Ronald
    Forms Product Management

  • WebUtil error: WUC-6: Unable to read WebUtil configuration file

    Dear Colleague,
    I received the following error:
    WUC-6: Unable to read WebUtil configuration file
    c:\OraHome_BIForms\forms\server\webutil.cfg
    In the meantime, I have verified that my default.env file contains the following path definition:
    # webutil config file path
    WEBUTIL_CONFIG=C:\OraHome_BIForms\forms\server\webutil.cfg
    What is wrong here? Does "unable to read..." mean that the file security settings do not allow read access to the webutil.cfg file?
    I would appreciate any advice you can give me.
    Thank you and kind regards,
    Randy

    In the meantime, I have figured out the solution to my problem.
    The webutil.cfg file was not in the directory that was being pointed to in the path parameter.
    Regards,
    Randy

  • TS1368 I'm a PC user with an itunes account for several years. I updated my itunes and now it wont open and shows me 'missing file MSVCR80.dll,and error 7(Window error 126)' keep coming up even after re-installing itunes . What should i do?

    I'm a PC user with an itunes account for several years. I updated my itunes and now it wont open and shows me 'missing file MSVCR80.dll,and error 7(Window error 126)' keep coming up even after re-installing itunes . What should i do?

    Click here and follow the instructions.
    (98897)

  • Problem with DMGs and error: "No Mountable File Systems"

    Problem with DMGs and error: "No Mountable File Systems"
    The files are not corrupt. The problem is occurring with all DMGs that are apparently formatted in MS-DOS FAT16. No the file will not mount with Disk utility or any other disk mounter programs I have found.
    This is now the second time this occurred and now effects my MBP and my iMac. First time i spent days with Apple support and the only solution was ultimately back up the data, reformat the HD, start over from scratch and reload everything. That lasted about a month before the problem resurfaced and is now an issue on both iMac and MBP.
    I tried to identify all the programs I installed immediately before the error, as I am convinced it is the result of a software conflict.
    Recent programs includes:
    1) upgrading from Parallels 5.5 to 6.0 on both machines.
    2) using an HP secure II usb drive and setting up a secure disk.
    3) installing new itunes 10
    4) new update to Flip For Mac.
    The files affected are downloaded dmgs, including personal brain and google earth, both which are formatted in FAT16.
    Any help or thoughts? Apple has now spent hours trying and they say i now have to reformat and wipe and start over. That is unacceptable and based on pasted experience the problem is likely to repeat itself. having to wipe and rebuild a HD ever month is not an solution. i need to fid the root problem.
    In the meantime, anyone got a real solution on how to extract the data for a DMG using a different method?
    Message was edited by: remaia

    Where you able to find the solution, i am having the same problem, all was fine till i install some programs only same one i saw did we both did was flip4mac i uninstalled it but the problem is still there, i also restored and erased the hardrive but im not up to doing that all over again. If you found anything out let me know i would greatly appreciate it

  • I updated to iTunes 12 and didn't like it. Followed advice to revert to 11.1. Now my iphone won't sync and error message says I need iTunes 11.2 or higher. Apple Download choices didn't have anything between 11.1.5 and 12. What can I do?

    I updated to iTunes 12 and didn't like it. Followed advice to revert to 11.1. Now my iPhone 5 won't sync and error message says I need iTunes 11.2 or higher. Apple Download choices didn't have anything between 11.1.5 and 12. What can I do? Using iTunes 12 is not an option. Many features I used for audiobooks have disappeared.

    The version immediately prior to 12 was 11.4.0.18. Here are direct download links from Apple's servers:
    iTunes 11.4.0.18 for Windows (32-bit) - iTunesSetup.exe (2014-09-09)
    iTunes 11.4.0.18 for Windows (64-bit) - iTunes64Setup.exe (2014-09-09)
    tt2

  • Every time I try to open my safari it restarts my computer, or if it does open it is for only about a minute before it gets and error and closes.What should I do?

    Every time I try to open my safari it restarts my computer, or if it does open it is for only about a minute before it gets and error and closes.What should I do?

    gets and error and closes.What should I do?
    If Safari is crashing.. post a crash report so we can try and help...
    If Safari has just crashed, press the Report button on the CrashReporter dialog box to view the crash  information.
    Copy/paste the entire contents of the Crash Reporter window into your reply including the, "binary images" seection.
    If the crash report dialog does not appear or the crash is hard to reproduce, crash logs can be retrieved from the ~/Library/Logs/CrashReporter> folder.

  • When I try to update my apps on my MacBook Pro, Ipad, and Ipod it wont allow me. On the computer it says theres and error. (11111) But on the Ipod and Ipad it starts to update and completely stops. What should I do?

    When I try to update my apps on my MacBook Pro, Ipad, and Ipod it wont allow me. On the computer it says theres and error. (11111) But on the Ipod and Ipad it starts to update and completely stops. What should I do?

    Maybe this.
    Fix iPhone Apps Stuck "Waiting" During Installation
    Try update the apps one at a time

Maybe you are looking for

  • How do I sync my non-apple email account settings (5 email addresses) with my ipad air using OS X Mavericks?

    I recently acquired a new iPad air (first time ipad user) and while I am quite happy with icloud, I seem to be unable to sync all of my remaining email account settings (automatically) with apple mail under OS X Mavericks. I simply want to use all of

  • On my 4th Macbook Pro this year

    I just wanted to see if anyone else has had similar problems with their Macbook Pro.  Without going into great detail; I am currently on my 4th Macbook Pro since late Jan. 2011 early Feb.  My fourth one was just wiped clean 3 weeks ago due to problem

  • Usage of RSUPGRCHECK report in BW7 environment

    Hello folks, have you some experience with usage of RSUPGRCHECK report in BW7 environment? I'm trying to find some tool in BW to explore what objects went inactive after import of high volume of transport request. We are planning to go live recently

  • Price level in vendor evaluation

    Hi, I have created 1st PO with price 50 and checked the ME63, system showed score for price level as 40. Then I made another PO with price 55 and checked ME63, system displayed the same score 40, While there is change in price of 10 %, so I was expec

  • House bank for a vendor

    Hello, If I enter a payment term in the master data of a vendor it appears in every document I create in FB60 transaction, but if I enter a house bank in the master data of that vendor it does not appear in the documents I create in FB60. Is it corre