WebUtil AS_TO_CLIENT Problem

<9iDS 9.0.2 RedHat 8.>
I am running a procedure from a shared library, pretty much copied from Frank Nimphius' RUN_REPORT_OBJECT_PROC procedure. This library, and the WEBUTIL
library, as well as the WEBUTIL object group is attached to my form. If I comment out the call to XXXX.RUN_REPORT_OBJECT_PROC my WEBUTIL_FILE_TRANSFER.AS_TO_CLIENT function works fine, but as soon as I put the RUN_REPORT_OBJECT_PROC before the AS_TO_CLIENT call, it runs the report ok, then when it gets to AS_TO_CLIENT the form crashes and I get this in the Java Console:
oracle.forms.net.ConnectionException: Forms session <16> aborted: unable to communicate with runtime process.
     at oracle.forms.net.ConnectionException.createConnectionException(Unknown Source)
     at oracle.forms.net.HTTPNStream.getResponse(Unknown Source)
     at oracle.forms.net.HTTPNStream.doFlush(Unknown Source)
     at oracle.forms.net.HTTPNStream.flush(Unknown Source)
     at java.io.DataOutputStream.flush(Unknown Source)
     at oracle.forms.net.StreamMessageWriter.run(Unknown Source)
I tried switching the order of the attached libraries.

Francois Degrelle wrote:
- be sure that the first argument is the client machine file and the second the server file
FRancois
It is OK
Francois Degrelle wrote:
- at runtime, display the Java console to see if there is any error message
FRancois
No Errors
Francois Degrelle wrote:
- try another function in the Webutil_File_Transfert package
FRancois
I have tried client_to_db successfully

Similar Messages

  • Webutil Invoke_String problem

    I've the following c function:
    extern "C" __declspec( dllexport ) char cGreeting(char* value1, char* value2);
    And follow PL/SQL code:
    PACKAGE BODY SAMPLE IS
         FUNCTION greeting(value1 IN OUT VARCHAR2, value2 IN OUT VARCHAR2) RETURN VARCHAR2 IS
              greeting_func webutil_c_api.FunctionHandle;
              greeting_params webutil_c_api.ParameterList;
              greeting_param1 webutil_c_api.ParameterHandle;
              greeting_param2 webutil_c_api.ParameterHandle;
              greeting_return VARCHAR2(1000);          
              BEGIN               
                   greeting_func := webutil_c_api.register_function('cClient.dll', 'cGreeting');
                   greeting_params := webutil_c_api.create_parameter_list;
                   greeting_param1 := webutil_c_api.add_parameter(greeting_params, webutil_c_api.C_CHAR_PTR, webutil_c_api.PARAM_INOUT, value1, 1000);
                   greeting_param2 := webutil_c_api.add_parameter(greeting_params, webutil_c_api.C_CHAR_PTR, webutil_c_api.PARAM_INOUT, value2, 1000);
                   greeting_return := webutil_c_api.Invoke_char('cClient.dll', 'cGreeting', greeting_params);
                   webutil_c_api.destroy_parameter_list(greeting_params);
                   webutil_c_api.deregister_function(greeting_func);
                   return greeting_return;
         END greeting;
    END SAMPLE;
    When I invoke this function appears this error:
    ERROR>WUL-911 [CApiFunctions.invokeCApi()] Unsupported return type for C DLL function
    Does anyone know where is the problem?
    Thank you.

    I've tried your sample. I´ve a forms and, when I push a button, throw the following code:
    declare
              myValue1 varchar2(20);
              myValue2 varchar2(20);
         greeting_func webutil_c_api.FunctionHandle;
         greeting_params webutil_c_api.ParameterList;
         greeting_param1 webutil_c_api.ParameterHandle;
         greeting_param2 webutil_c_api.ParameterHandle;
         greeting_return varchar2(1000);
         file_type text_io.file_type;
         BEGIN
         greeting_func := webutil_c_api.register_function('cClient.dll', 'myGreeting');
         greeting_params := webutil_c_api.create_parameter_list;
         greeting_param1 := webutil_c_api.add_parameter(greeting_params, webutil_c_api.C_CHAR_PTR, webutil_c_api.PARAM_INOUT, myValue1, 20);
         greeting_param2 := webutil_c_api.add_parameter(greeting_params, webutil_c_api.C_CHAR_PTR, webutil_c_api.PARAM_INOUT, myValue2, 20);
         greeting_return := webutil_c_api.Invoke_String(greeting_func, greeting_params);
         message(greeting_return);
         webutil_c_api.destroy_parameter_list(greeting_params);
         webutil_c_api.deregister_function(greeting_func);     
    EXCEPTION
              WHEN OTHERS THEN
                   file_type := text_IO.Fopen('c:\Sign\DAP\samples\logs\log.txt', 'w');
                   text_io.put( file_type, tool_err.message);
                   text_io.fclose(file_type);
    But the browser crash and print a file with the follow message:
    An unexpected exception has been detected in native code outside the VM.
    Unexpected Signal : EXCEPTION_ACCESS_VIOLATION occurred at PC=0x102c233f
    Function name=(N/A)
    Library=C:\Program Files\Oracle\JInitiator 1.3.1.9\bin\JNIsharedstubs.dll
    NOTE: We are unable to locate the function name symbol for the error
    just occurred. Please refer to release documentation for possible
    reason and solutions.
    Current Java thread:
         at oracle.forms.webutil.cApi.CPtr.getString(Native Method)
         at oracle.forms.webutil.cApi.CApiFunctions.invokeCApi(CApiFunctions.java:827)
         at oracle.forms.webutil.cApi.CApiFunctions.getProperty(CApiFunctions.java:131)
         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)
    ..... [a list of libraries]
    I've a windows XP and IE6. Do you know what can be wrong?
    Thank you.

  • WebUtil Config problem

    Hello Forms, WebUtil and Java Gurus,
    I have installed and configured WebUtil on the Windows 2003 server on the 10gDS following instructions in WebUtil document and release notes including jacob, makecert and signing of the jar files. Everything went smoothly.
    But when I compile my (menu)form I get the following error
    FRM-92050: Failed to connect to the Server:/forms90/|90servlet;
    (Note: The "|" in |90servlet above is either lower case L or upper case I but both look the same on the screen)
    jesssionid=c0a9.......... :-1
    Details...
    Java Exception:
    java.io.IOException: Connection failure withh 500
    at sun.plugin.protocol.jdk12.http.HttpURLConnection.getInputStream(Unknown Source)
    at oracle.forms.netHTTPNStream.doGet(Unknown Source)
    at oracle.forms.netHTTPNStream.getInfoFromServlet(Unknown Source)
    at oracle.forms.netHTTPNStream.<init>(Unknown Source)
    at oracle.forms.netHTTPNConnection.connect(Unknown Source)
    at oracle.forms.engine.FormsDispatcher.initConnection(Unknown Source)
    at oracle.forms.engine.FormsDispatcher.init(Unknown Source)
    at oracle.forms.engine.RunForm.initConnection(Unknown Source)
    at oracle.forms.engine.RunForm.startRunform(Unknown Source)
    at oracle.forms.engine.Main.createRunform(Unknown Source)
    at oracle.forms.engine.Main.start(Unknown Source)
    at sun.applet.AppletPanel.run(Unknown Source)
    at java.lang.Thread.run(Unknown Source)
    I am very anxious to use WebUtil because it has some neat features that I can use in my probject.
    I need help.
    Thanks.
    Suresh

    Hi Duncan,
    Yes, Menuform and all the forms that are being called by Menuform have been working for last 6 months. Even now the old version of menuform where I do not use webutil.pll or webutil.olb works fine and Users are using it.
    I got intrigued by WebUtil because of many features it has and I am trying to configure and test it.
    Also, in the menuform where I use webutil.pll and webutil.olb, if I go in the layout editor and look at webutil_canvas, I get the following message:
    FRM-13008: Cannot find JavaBean with name
    oracle.forms.webutil.ole.oleFunctions.
    and the 6th line on the canvas is blank.
    Further, when I go to the Java Console for the menuform with WebUtil, I see the following messages which looks like it is OK:
    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\Administrator.BIGDADDY
    Proxy Configuration: no proxy
    JAR cache enabled
    Location: C:\Documents and Settings\Administrator.BIGDADDY\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://bigdaddy:8889/forms90/java/f90all_jinit.jar from JAR cache Loading http://bigdaddy:8889/forms90/webutil/webutil.jar from JAR cache RegisterWebUtil - Loading WebUtil Version 1.0.5 Production Loading http://bigdaddy:8889/forms90/webutil/jacob.jar from JAR cache proxyHost=null proxyPort=0 connectMode=HTTP, native.
    I hope I have given here enough information to pinpoint the problem and solve this issue, so that I can start using WebUtil.
    Thanks.
    Suresh

  • Pb de lenteur avec WEBUTIL / Slow problem with WEBUTIL

    Bonjour,
    J'ai implémenté l'objet WEBUTIL afin de charger les données d'un fichier Excel dans un Forms (10G). Cela fonctionne correctement mais je rencontre de gros problèmes de lenteur pour extraire ces données.
    Avez-vous rencontré le même cas ? Comment l'avez-vous résolu ?
    Merci pour votre aide.
    Hi,
    I use the Webutil object to import data, stored in Excel file, to a Forms in version 10G. It works but I have huge slow problems to extract the data.
    Do you have this kind of problems ? How do you solve them ?
    Thanks for helping.
    Séverine

    Yes, of course.
    This is an extract of the code :
    app     CLIENT_OLE2.OBJ_TYPE;
    wbooks     CLIENT_OLE2.OBJ_TYPE;
    wbook     CLIENT_OLE2.OBJ_TYPE;
    wsheet     CLIENT_OLE2.OBJ_TYPE;
    wsheets     CLIENT_OLE2.OBJ_TYPE;
    args     CLIENT_OLE2.LIST_TYPE;          
    app := CLIENT_OLE2.create_obj('Excel.Application');
    CLIENT_OLE2.SET_PROPERTY(app,'Visible',0);
    wbooks := CLIENT_OLE2.GET_OBJ_PROPERTY(app, 'Workbooks');     
    args := CLIENT_OLE2.CREATE_ARGLIST;
    CLIENT_OLE2.add_arg(args, filename);
    wbook := CLIENT_OLE2.INVOKE_obj(wbooks, 'Open', args);
    CLIENT_OLE2.DESTROY_ARGLIST(args);
    wsheets := CLIENT_OLE2.GET_OBJ_PROPERTY(wbook, 'Worksheets');     
    args := CLIENT_OLE2.CREATE_ARGLIST;
    CLIENT_OLE2.add_arg(args, 'Instructions');
    wsheet := CLIENT_OLE2.GET_OBJ_PROPERTY(wsheets, 'Item', args);
    CLIENT_OLE2.DESTROY_ARGLIST(args);
    args := CLIENT_OLE2.CREATE_ARGLIST;
    CLIENT_OLE2.add_arg(args, 1);
    CLIENT_OLE2.add_arg(args, 1);
    cell := CLIENT_OLE2.INVOKE_obj(wsheet, 'Cells', args);
    CLIENT_OLE2.DESTROY_ARGLIST(args);
    Tampon1 := TRIM(CLIENT_OLE2.get_char_property(cell, 'Value'));
    CLIENT_OLE2.release_obj(cell);
    args := CLIENT_OLE2.CREATE_ARGLIST;
    CLIENT_OLE2.add_arg(args, 1);
    CLIENT_OLE2.add_arg(args, 3);
    cell := CLIENT_OLE2.INVOKE_obj(wsheet, 'Cells', args);
    CLIENT_OLE2.DESTROY_ARGLIST(args);
    Tampon2 := TRIM(CLIENT_OLE2.get_char_property(cell, 'Value'));
    CLIENT_OLE2.release_obj(cell);
    I get about a hundred cells in my Excel File and it takes more than 1 minute.
    Thanks.
    Séverine

  • Webutil.olb Problem

    Hi,
    When I want to load forms. It gives me error like
    FRM-18108: Failed to load following object.
    Source Module: webutil.olb
    Source Object: webutilconfig
    I have some other forms. those are work fine. when I try to find subclass information. it shows not found. Please aslo check attachment file.
    Please help me to sove this issue. Is there any way to see reference object link either webutil.olb/ any forms ?
    Thanks
    Biswajit

    Apologies for mentioning your name as I used one of your example to do it myself.
    Just thought that you will be right person to understand my problem.
    Apologies again from you and everyone on forum

  • Webutil demo problems - WHEN-TIMER-EXPIRED error

    Hi there,
    I have just installed the 10.1.2 forms no problems. I then downloaded the demo of webutil from OTN and cannot get it to run properly. Can anyone help.
    I initially had to rename the webutil.pll (i renamed to webutil_lib.pll as recommended in an earlier forum) file to overcome an initial error and now I can at least see the runtime canvas. I dropped and re-attached the attached libraray for this pll file (Is this all I have to do?)
    The problem is I immediately get the error FRM-40735:WHEN-TIMER-EXPIRED trigger raised unhandled exception ORA-06508 in the console. This error continues for every event I do that has a trigger associated, ie changing tabs or pressing buttons, the only difference in the error message is the trigger name.
    I can see the canvas and various items on the tab sheet but none of the triggers that refernce webutil appear to work.
    I presume I have missed something simple, possibly when I renamed the .pll file.
    Any ideas.
    Doug

    Dougo,
    I checked our bug database for this topic and couldn't find anything reported. Can you file a TAR with support to have them analyzing your problem. (metalink.oracle.com)
    Frank

  • Webutil client_host problem executing pkzip pkunzip commands

    Hi,
    I configured webutil with Developer 10g (9.0.4).
    I used webutil_106.zip and jacob_18.zip.
    The execution of this statements (example) are successfully:
    CLIENT_HOST('notepad');
    CLIENT_HOST('tnsping db');
    However, when I issue this ones (in order to zip/unzip files):
    CLIENT_HOST('pkunzip d:\arch.zip d:\tmp');
    or
    CLIENT_HOST('pkzip....');
    I got this error:
    100501 non-OracleException
    What do I have to configure in order to execute this commands????
    Regards, Santiago

    I find the solution in metalink.
    Execute the commands like this:
    client_host('cmd /c start c:\pkzip .....');

  • Webutil strange problem

    Hi all,
    I´m trying to use Webutil library methods to create excel documents on the fly, when i execute this code:
         aplicacion     := CLIENT_OLE2.CREATE_OBJ('Excel.Application');
         CLIENT_OLE2.SET_PROPERTY(aplicacion, 'Visible',1);
    I get this trace in the java console:
    JInitiator: Versión 1.3.1.18
    Usar versión JRE 1.3.1.18-internal Java HotSpot(TM) Client VM
    JAR cache enabled
    Loading http://another_server/forms90/webutil/webutil.jar from JAR cache
    Loading http://another_server/forms90/java/f90all_jinit.jar from JAR cache
    RegisterWebUtil - Loading WebUtil Version 1.0.5 Production
    Loading http://another_server/forms90/webutil/jacob.jar from JAR cache
    proxyHost=null
    proxyPort=0
    connectMode=HTTP, native.
    La versión del applet Forms es: 9.0.4.1
    RegisterWebUtil - Loading WebUtil Version 1.0.5 Production
    proxyHost=null
    proxyPort=0
    connectMode=HTTP, native.
    La versión del applet Forms es: 9.0.4.1
    java.lang.NoSuchMethodError
         at oracle.forms.webutil.ole.OleFunctions.set_obj_property(OleFunctions.java:1209)
         at oracle.forms.webutil.ole.OleFunctions.setProperty(OleFunctions.java:333)
         at oracle.forms.handler.ComponentItem.setCustomProperty(Unknown Source)
         at oracle.forms.handler.ComponentItem.onUpdate(Unknown Source)
         at oracle.forms.handler.JavaContainer.onUpdate(Unknown Source)
         at oracle.forms.handler.UICommon.onUpdate(Unknown Source)
         at oracle.forms.engine.Runform.onUpdateHandler(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.sendDeferredMessages(Unknown Source)
         at oracle.forms.engine.Runform.onMessage(Unknown Source)
         at oracle.forms.engine.FlushQueue.run(Unknown Source)
         at java.lang.Thread.run(Unknown Source)
    If i comment the line CLIENT_OLE2.SET_PROPERTY(aplicacion, 'Visible',1);, the exception dissapears. All the other features of the Webutil library like file transfers works properly...
    Anyone could help me please,
    Thanks in advance.

    Hi Grant Ronald,
    This is the trace (level 5) in the java console, when i try to generate a word document using the webutil demo form. It doesn´t work too... i hope it will be usefull for you.
    Thanks a lot.
    JInitiator: Versión 1.3.1.18
    Usar versión JRE 1.3.1.18-internal Java HotSpot(TM) Client VM
    Directorio local del usuario = C:\Documents and Settings\<user>
    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>
    Trace level set to 5: basic, net, security, ext, liveconnect ... completed.
    Registered modality listener
    Referencing classloader: sun.plugin.ClassLoaderInfo@9f0d, refcount=2
    Receptor de rastreo agregado: sun.plugin.navig.win32.AppletPluginPanel[oracle.forms.webutil.common.RegisterWebUtil,0,0,1x1,invalid,layout=java.awt.BorderLayout]
    Sending events to applet. LOAD
    Sending events to applet. INIT
    Sending events to applet. START
    Registered modality listener
    Referencing classloader: sun.plugin.ClassLoaderInfo@7124af, refcount=1
    RegisterWebUtil - Loading WebUtil Version 1.0.5 Production
    Receptor de rastreo agregado: sun.plugin.navig.win32.AppletPluginPanel[oracle.forms.engine.Main,0,0,750x600,invalid,layout=java.awt.BorderLayout]
    Sending events to applet. LOAD
    Sending events to applet. INIT
    Sending events to applet. START
    Loaded image: jar:http://<app_server>:<port>/forms90/java/f90all_jinit.jar!/oracle/forms/icons/splash.gif
    Loaded image: jar:http://<app_server>:<port>/forms90/java/f90all_jinit.jar!/oracle/forms/icons/bgnd.gif
    Abriendo http://<app_server>:<port>/forms90/java/oracle/forms/registry/Registry.dat
    Connecting http://<app_server>:<port>/forms90/java/oracle/forms/registry/Registry.dat with delegado=<gateway>:<port>
    Connecting http://<app_server>:<port>/forms90/java/oracle/forms/registry/Registry.dat with cookie "OHS-<app_server>-<port>=3007D61265EA2F6E28F684F3D1E07620972C7944F7C1DC09A50972B9F9394DAD7F5814566382DD0DA3E3443A45D28375FDAFC049F358D08592CC129A6EBFAB22A75651E7B8ABC6BD70BA621DEE3FB4D73C1A750B7AD0305434370CC72B616095BFB0A65FA8C73A2956D067CD57D93A57978EBA31B75DA8F9AD33CF17B691C52B4C4F641DF754C733BA3C7221A15907989371B7EDCE525F0FB3730E1509B5ECA6BD34806035446CCCCEAA49833D74B3AE7F23E36534FF616D9591719A9BAF4F47A7FF5295A11C9051F043B1D8FA96CE053239E9E57F8884ED75737A5885BB89BCA30BAE8351CED5F3"
    Abriendo http://<app_server>:<port>/forms90/java/oracle/forms/registry/default.dat
    Connecting http://<app_server>:<port>/forms90/java/oracle/forms/registry/default.dat with delegado=<gateway>:<port>
    Connecting http://<app_server>:<port>/forms90/java/oracle/forms/registry/default.dat with cookie "OHS-<app_server>-<port>=3007D61265EA2F6E28F684F3D1E07620972C7944F7C1DC09A50972B9F9394DAD7F5814566382DD0DA3E3443A45D28375FDAFC049F358D08592CC129A6EBFAB22A75651E7B8ABC6BD70BA621DEE3FB4D73C1A750B7AD0305434370CC72B616095BFB0A65FA8C73A2956D067CD57D93A57978EBA31B75DA8F9AD33CF17B691C52B4C4F641DF754C733BA3C7221A15907989371B7EDCE525F0FB3730E1509B5ECA6BD34806035446CCCCEAA49833D74B3AE7F23E36534FF616D9591719A9BAF4F47A7FF5295A11C9051F043B1D8FA96CE053239E9E57F8884ED75737A5885BB89BCA30BAE8351CED5F3"
    proxyHost=null
    proxyPort=0
    connectMode=HTTP, native.
    Abriendo http://<app_server>:<port>/forms90/f90servlet?config=oracle_oid&form=wutest.fmx&acceptLanguage=es-es,es;q=0.5&ifcmd=startsession
    Connecting http://<app_server>:<port>/forms90/f90servlet?config=oracle_oid&form=wutest.fmx&acceptLanguage=es-es,es;q=0.5&ifcmd=startsession with delegado=<gateway>:<port>
    Connecting http://<app_server>:<port>/forms90/f90servlet?config=oracle_oid&form=wutest.fmx&acceptLanguage=es-es,es;q=0.5&ifcmd=startsession with cookie "OHS-<app_server>-<port>=3007D61265EA2F6E28F684F3D1E07620972C7944F7C1DC09A50972B9F9394DAD7F5814566382DD0DA3E3443A45D28375FDAFC049F358D08592CC129A6EBFAB22A75651E7B8ABC6BD70BA621DEE3FB4D73C1A750B7AD0305434370CC72B616095BFB0A65FA8C73A2956D067CD57D93A57978EBA31B75DA8F9AD33CF17B691C52B4C4F641DF754C733BA3C7221A15907989371B7EDCE525F0FB3730E1509B5ECA6BD34806035446CCCCEAA49833D74B3AE7F23E36534FF616D9591719A9BAF4F47A7FF5295A11C9051F043B1D8FA96CE053239E9E57F8884ED75737A5885BB89BCA30BAE8351CED5F3"
    Abriendo http://<app_server>:<port>/forms90/l90servlet;jsessionid=c0a80205ce6e8cae975354f481f85c0abce8767f645.ok5N-BDzpAzOo6Pzn6zv-AjNcxaNa38UePWLch8IahmS-x8IbgSLbkiSaQmT-x4KaNrAax8Nmkby-wOSa30K8QzvqPXApR9HqNyKb2TDmlaIsAjIolfCpkjyok4Inlaxax0MbhqSaNeMb2b48OX3b4DteyztfAXMplaxn6jAmljGr5XDqQLvpAe_?ifcmd=getinfo&ifhost=<user>&ifip=<user_ip>
    Connecting http://<app_server>:<port>/forms90/l90servlet;jsessionid=c0a80205ce6e8cae975354f481f85c0abce8767f645.ok5N-BDzpAzOo6Pzn6zv-AjNcxaNa38UePWLch8IahmS-x8IbgSLbkiSaQmT-x4KaNrAax8Nmkby-wOSa30K8QzvqPXApR9HqNyKb2TDmlaIsAjIolfCpkjyok4Inlaxax0MbhqSaNeMb2b48OX3b4DteyztfAXMplaxn6jAmljGr5XDqQLvpAe_?ifcmd=getinfo&ifhost=<user>&ifip=<user_ip> with delegado=<gateway>:<port>
    Connecting http://<app_server>:<port>/forms90/l90servlet;jsessionid=c0a80205ce6e8cae975354f481f85c0abce8767f645.ok5N-BDzpAzOo6Pzn6zv-AjNcxaNa38UePWLch8IahmS-x8IbgSLbkiSaQmT-x4KaNrAax8Nmkby-wOSa30K8QzvqPXApR9HqNyKb2TDmlaIsAjIolfCpkjyok4Inlaxax0MbhqSaNeMb2b48OX3b4DteyztfAXMplaxn6jAmljGr5XDqQLvpAe_?ifcmd=getinfo&ifhost=<user>&ifip=<user_ip> with cookie "OHS-<app_server>-<port>=3007D61265EA2F6E28F684F3D1E07620972C7944F7C1DC09A50972B9F9394DAD7F5814566382DD0DA3E3443A45D28375FDAFC049F358D08592CC129A6EBFAB22A75651E7B8ABC6BD70BA621DEE3FB4D73C1A750B7AD0305434370CC72B616095BFB0A65FA8C73A2956D067CD57D93A57978EBA31B75DA8F9AD33CF17B691C52B4C4F641DF754C733BA3C7221A15907989371B7EDCE525F0FB3730E1509B5ECA6BD34806035446CCCCEAA49833D74B3AE7F23E36534FF616D9591719A9BAF4F47A7FF5295A11C9051F043B1D8FA96CE053239E9E57F8884ED75737A5885BB89BCA30BAE8351CED5F3"
    Abriendo http://<app_server>:<port>/forms90/l90servlet;jsessionid=c0a80205ce6e8cae975354f481f85c0abce8767f645.ok5N-BDzpAzOo6Pzn6zv-AjNcxaNa38UePWLch8IahmS-x8IbgSLbkiSaQmT-x4KaNrAax8Nmkby-wOSa30K8QzvqPXApR9HqNyKb2TDmlaIsAjIolfCpkjyok4Inlaxax0MbhqSaNeMb2b48OX3b4DteyztfAXMplaxn6jAmljGr5XDqQLvpAe_
    Connecting http://<app_server>:<port>/forms90/l90servlet;jsessionid=c0a80205ce6e8cae975354f481f85c0abce8767f645.ok5N-BDzpAzOo6Pzn6zv-AjNcxaNa38UePWLch8IahmS-x8IbgSLbkiSaQmT-x4KaNrAax8Nmkby-wOSa30K8QzvqPXApR9HqNyKb2TDmlaIsAjIolfCpkjyok4Inlaxax0MbhqSaNeMb2b48OX3b4DteyztfAXMplaxn6jAmljGr5XDqQLvpAe_ with delegado=<gateway>:<port>
    Connecting http://<app_server>:<port>/forms90/l90servlet;jsessionid=c0a80205ce6e8cae975354f481f85c0abce8767f645.ok5N-BDzpAzOo6Pzn6zv-AjNcxaNa38UePWLch8IahmS-x8IbgSLbkiSaQmT-x4KaNrAax8Nmkby-wOSa30K8QzvqPXApR9HqNyKb2TDmlaIsAjIolfCpkjyok4Inlaxax0MbhqSaNeMb2b48OX3b4DteyztfAXMplaxn6jAmljGr5XDqQLvpAe_ with cookie "OHS-<app_server>-<port>=3007D61265EA2F6E28F684F3D1E07620972C7944F7C1DC09A50972B9F9394DAD7F5814566382DD0DA3E3443A45D28375FDAFC049F358D08592CC129A6EBFAB22A75651E7B8ABC6BD70BA621DEE3FB4D73C1A750B7AD0305434370CC72B616095BFB0A65FA8C73A2956D067CD57D93A57978EBA31B75DA8F9AD33CF17B691C52B4C4F641DF754C733BA3C7221A15907989371B7EDCE525F0FB3730E1509B5ECA6BD34806035446CCCCEAA49833D74B3AE7F23E36534FF616D9591719A9BAF4F47A7FF5295A11C9051F043B1D8FA96CE053239E9E57F8884ED75737A5885BB89BCA30BAE8351CED5F3"
    La versión del applet Forms es: 9.0.4.1
    Abriendo http://<app_server>:<port>/forms90/l90servlet;jsessionid=c0a80205ce6e8cae975354f481f85c0abce8767f645.ok5N-BDzpAzOo6Pzn6zv-AjNcxaNa38UePWLch8IahmS-x8IbgSLbkiSaQmT-x4KaNrAax8Nmkby-wOSa30K8QzvqPXApR9HqNyKb2TDmlaIsAjIolfCpkjyok4Inlaxax0MbhqSaNeMb2b48OX3b4DteyztfAXMplaxn6jAmljGr5XDqQLvpAe_
    Connecting http://<app_server>:<port>/forms90/l90servlet;jsessionid=c0a80205ce6e8cae975354f481f85c0abce8767f645.ok5N-BDzpAzOo6Pzn6zv-AjNcxaNa38UePWLch8IahmS-x8IbgSLbkiSaQmT-x4KaNrAax8Nmkby-wOSa30K8QzvqPXApR9HqNyKb2TDmlaIsAjIolfCpkjyok4Inlaxax0MbhqSaNeMb2b48OX3b4DteyztfAXMplaxn6jAmljGr5XDqQLvpAe_ with delegado=<gateway>:<port>
    Connecting http://<app_server>:<port>/forms90/l90servlet;jsessionid=c0a80205ce6e8cae975354f481f85c0abce8767f645.ok5N-BDzpAzOo6Pzn6zv-AjNcxaNa38UePWLch8IahmS-x8IbgSLbkiSaQmT-x4KaNrAax8Nmkby-wOSa30K8QzvqPXApR9HqNyKb2TDmlaIsAjIolfCpkjyok4Inlaxax0MbhqSaNeMb2b48OX3b4DteyztfAXMplaxn6jAmljGr5XDqQLvpAe_ with cookie "OHS-<app_server>-<port>=3007D61265EA2F6E28F684F3D1E07620972C7944F7C1DC09A50972B9F9394DAD7F5814566382DD0DA3E3443A45D28375FDAFC049F358D08592CC129A6EBFAB22A75651E7B8ABC6BD70BA621DEE3FB4D73C1A750B7AD0305434370CC72B616095BFB0A65FA8C73A2956D067CD57D93A57978EBA31B75DA8F9AD33CF17B691C52B4C4F641DF754C733BA3C7221A15907989371B7EDCE525F0FB3730E1509B5ECA6BD34806035446CCCCEAA49833D74B3AE7F23E36534FF616D9591719A9BAF4F47A7FF5295A11C9051F043B1D8FA96CE053239E9E57F8884ED75737A5885BB89BCA30BAE8351CED5F3"
    Abriendo http://<app_server>:<port>/forms90/l90servlet;jsessionid=c0a80205ce6e8cae975354f481f85c0abce8767f645.ok5N-BDzpAzOo6Pzn6zv-AjNcxaNa38UePWLch8IahmS-x8IbgSLbkiSaQmT-x4KaNrAax8Nmkby-wOSa30K8QzvqPXApR9HqNyKb2TDmlaIsAjIolfCpkjyok4Inlaxax0MbhqSaNeMb2b48OX3b4DteyztfAXMplaxn6jAmljGr5XDqQLvpAe_
    Connecting http://<app_server>:<port>/forms90/l90servlet;jsessionid=c0a80205ce6e8cae975354f481f85c0abce8767f645.ok5N-BDzpAzOo6Pzn6zv-AjNcxaNa38UePWLch8IahmS-x8IbgSLbkiSaQmT-x4KaNrAax8Nmkby-wOSa30K8QzvqPXApR9HqNyKb2TDmlaIsAjIolfCpkjyok4Inlaxax0MbhqSaNeMb2b48OX3b4DteyztfAXMplaxn6jAmljGr5XDqQLvpAe_ with delegado=<gateway>:<port>
    Connecting http://<app_server>:<port>/forms90/l90servlet;jsessionid=c0a80205ce6e8cae975354f481f85c0abce8767f645.ok5N-BDzpAzOo6Pzn6zv-AjNcxaNa38UePWLch8IahmS-x8IbgSLbkiSaQmT-x4KaNrAax8Nmkby-wOSa30K8QzvqPXApR9HqNyKb2TDmlaIsAjIolfCpkjyok4Inlaxax0MbhqSaNeMb2b48OX3b4DteyztfAXMplaxn6jAmljGr5XDqQLvpAe_ with cookie "OHS-<app_server>-<port>=3007D61265EA2F6E28F684F3D1E07620972C7944F7C1DC09A50972B9F9394DAD7F5814566382DD0DA3E3443A45D28375FDAFC049F358D08592CC129A6EBFAB22A75651E7B8ABC6BD70BA621DEE3FB4D73C1A750B7AD0305434370CC72B616095BFB0A65FA8C73A2956D067CD57D93A57978EBA31B75DA8F9AD33CF17B691C52B4C4F641DF754C733BA3C7221A15907989371B7EDCE525F0FB3730E1509B5ECA6BD34806035446CCCCEAA49833D74B3AE7F23E36534FF616D9591719A9BAF4F47A7FF5295A11C9051F043B1D8FA96CE053239E9E57F8884ED75737A5885BB89BCA30BAE8351CED5F3"
    Abriendo http://<app_server>:<port>/forms90/l90servlet;jsessionid=c0a80205ce6e8cae975354f481f85c0abce8767f645.ok5N-BDzpAzOo6Pzn6zv-AjNcxaNa38UePWLch8IahmS-x8IbgSLbkiSaQmT-x4KaNrAax8Nmkby-wOSa30K8QzvqPXApR9HqNyKb2TDmlaIsAjIolfCpkjyok4Inlaxax0MbhqSaNeMb2b48OX3b4DteyztfAXMplaxn6jAmljGr5XDqQLvpAe_
    Abriendo http://<app_server>:<port>/forms90/l90servlet;jsessionid=c0a80205ce6e8cae975354f481f85c0abce8767f645.ok5N-BDzpAzOo6Pzn6zv-AjNcxaNa38UePWLch8IahmS-x8IbgSLbkiSaQmT-x4KaNrAax8Nmkby-wOSa30K8QzvqPXApR9HqNyKb2TDmlaIsAjIolfCpkjyok4Inlaxax0MbhqSaNeMb2b48OX3b4DteyztfAXMplaxn6jAmljGr5XDqQLvpAe_
    Connecting http://<app_server>:<port>/forms90/l90servlet;jsessionid=c0a80205ce6e8cae975354f481f85c0abce8767f645.ok5N-BDzpAzOo6Pzn6zv-AjNcxaNa38UePWLch8IahmS-x8IbgSLbkiSaQmT-x4KaNrAax8Nmkby-wOSa30K8QzvqPXApR9HqNyKb2TDmlaIsAjIolfCpkjyok4Inlaxax0MbhqSaNeMb2b48OX3b4DteyztfAXMplaxn6jAmljGr5XDqQLvpAe_ with delegado=<gateway>:<port>
    Connecting http://<app_server>:<port>/forms90/l90servlet;jsessionid=c0a80205ce6e8cae975354f481f85c0abce8767f645.ok5N-BDzpAzOo6Pzn6zv-AjNcxaNa38UePWLch8IahmS-x8IbgSLbkiSaQmT-x4KaNrAax8Nmkby-wOSa30K8QzvqPXApR9HqNyKb2TDmlaIsAjIolfCpkjyok4Inlaxax0MbhqSaNeMb2b48OX3b4DteyztfAXMplaxn6jAmljGr5XDqQLvpAe_ with cookie "OHS-<app_server>-<port>=3007D61265EA2F6E28F684F3D1E07620972C7944F7C1DC09A50972B9F9394DAD7F5814566382DD0DA3E3443A45D28375FDAFC049F358D08592CC129A6EBFAB22A75651E7B8ABC6BD70BA621DEE3FB4D73C1A750B7AD0305434370CC72B616095BFB0A65FA8C73A2956D067CD57D93A57978EBA31B75DA8F9AD33CF17B691C52B4C4F641DF754C733BA3C7221A15907989371B7EDCE525F0FB3730E1509B5ECA6BD34806035446CCCCEAA49833D74B3AE7F23E36534FF616D9591719A9BAF4F47A7FF5295A11C9051F043B1D8FA96CE053239E9E57F8884ED75737A5885BB89BCA30BAE8351CED5F3"
    Connecting http://<app_server>:<port>/forms90/l90servlet;jsessionid=c0a80205ce61370790d6e3f444f9e14a57bdf0751f6.ok5N-BDzpAzOo6Pzn6zv-AjNcxaNa38UePWLch8IahmS-x8IbgSLbkiSaQmT-x4KaNrAax8Nmkby-wOSa30K8QzvqPXApR9HqNyKb2TDmlaIsAjIolfCpkjyok4Inlaxax0MbhqSaNeMb2b48OX3b4DteyztfAXMplaxn6jAmljGr5XDqQLvpAe_ with delegado=<gateway>:<port>
    Abriendo http://<app_server>:<port>/forms90/l90servlet;jsessionid=c0a80205ce6e8cae975354f481f85c0abce8767f645.ok5N-BDzpAzOo6Pzn6zv-AjNcxaNa38UePWLch8IahmS-x8IbgSLbkiSaQmT-x4KaNrAax8Nmkby-wOSa30K8QzvqPXApR9HqNyKb2TDmlaIsAjIolfCpkjyok4Inlaxax0MbhqSaNeMb2b48OX3b4DteyztfAXMplaxn6jAmljGr5XDqQLvpAe_
    Connecting http://<app_server>:<port>/forms90/l90servlet;jsessionid=c0a80205ce6e8cae975354f481f85c0abce8767f645.ok5N-BDzpAzOo6Pzn6zv-AjNcxaNa38UePWLch8IahmS-x8IbgSLbkiSaQmT-x4KaNrAax8Nmkby-wOSa30K8QzvqPXApR9HqNyKb2TDmlaIsAjIolfCpkjyok4Inlaxax0MbhqSaNeMb2b48OX3b4DteyztfAXMplaxn6jAmljGr5XDqQLvpAe_ with delegado=<gateway>:<port>
    Connecting http://<app_server>:<port>/forms90/l90servlet;jsessionid=c0a80205ce6e8cae975354f481f85c0abce8767f645.ok5N-BDzpAzOo6Pzn6zv-AjNcxaNa38UePWLch8IahmS-x8IbgSLbkiSaQmT-x4KaNrAax8Nmkby-wOSa30K8QzvqPXApR9HqNyKb2TDmlaIsAjIolfCpkjyok4Inlaxax0MbhqSaNeMb2b48OX3b4DteyztfAXMplaxn6jAmljGr5XDqQLvpAe_ with cookie "OHS-<app_server>-<port>=3007D61265EA2F6E28F684F3D1E07620972C7944F7C1DC09A50972B9F9394DAD7F5814566382DD0DA3E3443A45D28375FDAFC049F358D08592CC129A6EBFAB22A75651E7B8ABC6BD70BA621DEE3FB4D73C1A750B7AD0305434370CC72B616095BFB0A65FA8C73A2956D067CD57D93A57978EBA31B75DA8F9AD33CF17B691C52B4C4F641DF754C733BA3C7221A15907989371B7EDCE525F0FB3730E1509B5ECA6BD34806035446CCCCEAA49833D74B3AE7F23E36534FF616D9591719A9BAF4F47A7FF5295A11C9051F043B1D8FA96CE053239E9E57F8884ED75737A5885BB89BCA30BAE8351CED5F3"
    Connecting http://<app_server>:<port>/forms90/l90servlet;jsessionid=c0a80205ce61370790d6e3f444f9e14a57bdf0751f6.ok5N-BDzpAzOo6Pzn6zv-AjNcxaNa38UePWLch8IahmS-x8IbgSLbkiSaQmT-x4KaNrAax8Nmkby-wOSa30K8QzvqPXApR9HqNyKb2TDmlaIsAjIolfCpkjyok4Inlaxax0MbhqSaNeMb2b48OX3b4DteyztfAXMplaxn6jAmljGr5XDqQLvpAe_ with cookie "OHS-<app_server>-<port>=3007D61265EA2F6E28F684F3D1E07620972C7944F7C1DC09A50972B9F9394DAD7F5814566382DD0DA3E3443A45D28375FDAFC049F358D08592CC129A6EBFAB22A75651E7B8ABC6BD70BA621DEE3FB4D73C1A750B7AD0305434370CC72B616095BFB0A65FA8C73A2956D067CD57D93A57978EBA31B75DA8F9AD33CF17B691C52B4C4F641DF754C733BA3C7221A15907989371B7EDCE525F0FB3730E1509B5ECA6BD34806035446CCCCEAA49833D74B3AE7F23E36534FF616D9591719A9BAF4F47A7FF5295A11C9051F043B1D8FA96CE053239E9E57F8884ED75737A5885BB89BCA30BAE8351CED5F3"
    Abriendo http://<app_server>:<port>/forms90/l90servlet;jsessionid=c0a80205ce6e8cae975354f481f85c0abce8767f645.ok5N-BDzpAzOo6Pzn6zv-AjNcxaNa38UePWLch8IahmS-x8IbgSLbkiSaQmT-x4KaNrAax8Nmkby-wOSa30K8QzvqPXApR9HqNyKb2TDmlaIsAjIolfCpkjyok4Inlaxax0MbhqSaNeMb2b48OX3b4DteyztfAXMplaxn6jAmljGr5XDqQLvpAe_
    Connecting http://<app_server>:<port>/forms90/l90servlet;jsessionid=c0a80205ce6e8cae975354f481f85c0abce8767f645.ok5N-BDzpAzOo6Pzn6zv-AjNcxaNa38UePWLch8IahmS-x8IbgSLbkiSaQmT-x4KaNrAax8Nmkby-wOSa30K8QzvqPXApR9HqNyKb2TDmlaIsAjIolfCpkjyok4Inlaxax0MbhqSaNeMb2b48OX3b4DteyztfAXMplaxn6jAmljGr5XDqQLvpAe_ with delegado=<gateway>:<port>
    Connecting http://<app_server>:<port>/forms90/l90servlet;jsessionid=c0a80205ce6e8cae975354f481f85c0abce8767f645.ok5N-BDzpAzOo6Pzn6zv-AjNcxaNa38UePWLch8IahmS-x8IbgSLbkiSaQmT-x4KaNrAax8Nmkby-wOSa30K8QzvqPXApR9HqNyKb2TDmlaIsAjIolfCpkjyok4Inlaxax0MbhqSaNeMb2b48OX3b4DteyztfAXMplaxn6jAmljGr5XDqQLvpAe_ with cookie "OHS-<app_server>-<port>=3007D61265EA2F6E28F684F3D1E07620972C7944F7C1DC09A50972B9F9394DAD7F5814566382DD0DA3E3443A45D28375FDAFC049F358D08592CC129A6EBFAB22A75651E7B8ABC6BD70BA621DEE3FB4D73C1A750B7AD0305434370CC72B616095BFB0A65FA8C73A2956D067CD57D93A57978EBA31B75DA8F9AD33CF17B691C52B4C4F641DF754C733BA3C7221A15907989371B7EDCE525F0FB3730E1509B5ECA6BD34806035446CCCCEAA49833D74B3AE7F23E36534FF616D9591719A9BAF4F47A7FF5295A11C9051F043B1D8FA96CE053239E9E57F8884ED75737A5885BB89BCA30BAE8351CED5F3"
    Exception occurred during event dispatching:
    java.lang.NoSuchMethodError
         at oracle.forms.webutil.ole.OleFunctions.set_obj_property(OleFunctions.java:1209)
         at oracle.forms.webutil.ole.OleFunctions.setProperty(OleFunctions.java:333)
         at oracle.forms.handler.ComponentItem.setCustomProperty(Unknown Source)
         at oracle.forms.handler.ComponentItem.onUpdate(Unknown Source)
         at oracle.forms.handler.JavaContainer.onUpdate(Unknown Source)
         at oracle.forms.handler.UICommon.onUpdate(Unknown Source)
         at oracle.forms.engine.Runform.onUpdateHandler(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)

  • Webutil .dll problem

    Hello,
    Using Java 6u32 and FireFox 12.0 on XP.
    See below, I don't understand where 'null' is coming from. As I understand it should point to the JRE directory (or the \bin inside the JRE dir)?
    (I think a solution is placing the .dll files manually in WINDOWS\System32 (java.library.path))
    RegisterWebUtil - Loading Webutil Version 1.0.2 Beta
    proxyHost=null
    proxyPort=0
    connectMode=HTTP, native.
    Versie van Forms-applet is: 10.1.2.0
    2012-mei-18 11:11:14.922 ERROR>WUC-19 [URLDownload.pullFile()] Unable to write to local file null\bin\jacob.dll,java.io.FileNotFoundException: null\bin\jacob.dll (system cannot find path specified)
    2012-mei-18 11:11:15.499 ERROR>WUC-19 [URLDownload.pullFile()] Unable to write to local file null\bin\JNIsharedstubs.dll,java.io.FileNotFoundException: null\bin\JNIsharedstubs.dll (system cannot find path specified)
    2012-mei-18 11:11:16.108 ERROR>WUC-19 [URLDownload.pullFile()] Unable to write to local file null\bin\d2kwut60.dll,java.io.FileNotFoundException: null\bin\d2kwut60.dll (system cannot find path specified)
    --

    Hi Stephan,
    The webutil-related DLLs (jacob.dll, JNIsharedstubs.dll, d2kwut60.dll) are automatically downloaded to the Jinitiator\bin folder on the client machine.
    The error "Unable to write to local file ...Jinitiator\bin..." indicates that the attempt to make a local copy of a server side file failed. This could happen if there is no sufficient space on the client side disk and/or the user does not have permissions to the specified directory.
    Please follow the metalink note for the same.
    *How To Change The Default Download Directory For Forms WebUtil Client Files [ID 783937.1]*
    Regards
    Fabian

  • Webutil deployment problem on Solaris

    I am using webutil.pll and webutil.olb for forms developed in Forms9i. I followed the two documents that come with webutil package and successfully deployed webutil in Oracle9iDS on Windows 2000. But when I deployed webutil in Oracle9iAS on Solaris and tried to load the form that uses webutil from a client (Jinitiator 1.3.1.9) on Windows XP, I got the following error message: "FRM-40735: WHEN-CUSTOM-ITEM-EVENT trigger raised unhandled exception ORA-06508".
    Please, note I did recompiled the forms without error Also, these jar files were successfully downloaded to the client machine from the server machine.
    I converted webutil.cfg from dos to unix format with dos2unix.
    Kind regards,
    Damjan

    Well 6508 is a can't find the program unit being called - which means that the When-Custom-Item-Event triggers on the Webutil beans can't find the Webutil.PLL or the code in the PLL is uncompiled.
    So it's either that the FORMS90_PATH is not set up correctly on the Solaris box or you need to have another go at compiling the PLL and the Form (Use Control-Shift-K in the solaris builder to so a full PL/SQL re-compile)

  • Webutil.properties problems

    Greetings,
    OAS version: 10.1.2.3.2
    Client: Windows XP SP3
    We just upgraded to 10.1.2.3.2 on the OAS server and also changed the webutil.properties to download to c:\documents_and settings\<user>
    When launching the application for the first time, the .DLLs from the server are downloaded to c:\documents_and settings\<user>\webutil\syslib. If the user selects an option in the app the .DLL files are downloaded again but this time it errors out on the vclapi.dll, JNIsharedstubs.dll and d2kwut60.dll files. At this point, the user logs out and the webutil.properties file is written to c:\documents_and settings\<user> directory.
    However, the three files listed above are not listed in the webutil.properities file but are in the syslib directory. When the user logs in again the file downloads are started again with the same result.
    But if the user logs in, lets the DLL files download, closes the app and logs in again, all is well. Is there anything that can be done so that it functions the way it is supposed to like it did before we applied the patch?
    Regards,
    Bill Chadbourne

    Greetings,
    Has anyone encountered this?
    Regards,
    Bill Chadbourne

  • Webutil sign problem

    Hi all,
    I am sing oracel as forms and reports services ver. 9.0.4, I am trying to sign the frmwebutil.jar and jacob.jar files but getting following error..
    D:\OracleAS\forms90\webutil>sign_webutil.bat d:oracleas\forms90\java\frmwebutil.
    bat
    The given jar file d:oracleas\forms90\java\frmwebutil.bat does not exist.
    D:\OracleAS\forms90\webutil>sign_webutil.bat d:\oracleas\forms90\java\frmwebutil
    .jar
    Generating a self signing certificate for key=webutil2...
    keytool error: java.lang.Exception: Key pair not generated, alias <webutil2> alr
    eady exists
    There were warnings or errors while generating a self signing certificate. Pleas
    e review them.
    Backing up d:\oracleas\forms90\java\frmwebutil.jar as d:\oracleas\forms90\java\f
    rmwebutil.jar.old...
    1 file(s) copied.
    Signing d:\oracleas\forms90\java\frmwebutil.jar using key=webutil2...
    ...successfully done.
    before that I have managed to work out the webutil on developer suite stand alone installation...but while working with application server its not able sign the webutil.
    I am pretty confident that I have followed the steps as mentioned in the guide, but will check again you point me too..as I am totally lost what went wrong.
    If I access the form attached webutil on this machine from my standalone installation it work find...but not with AS.
    Any clue please? Best regards

    well I manage to sing the jar files by setting the JDK_HOME to Oracle_home\jdk\bin
    but I still not able to display the dialog box...still getting error
    WEBUTIL_FILE.FILE_SELECTION_DIALOG_INT will not work

  • Webutil CLIENT_HOST problem

    Hi,
    I am trying to use Webutil_host.NonBlocking_With_Callback.
    When I invoke a txt document via notepad, it works fine but not for doc file
    This is for Notepad:
    V_PROCESS_ID := WebUtil_Host.NonBlocking_With_Callback('NOTEPAD '||C:\Test.txt, 'CALL_BACK');
    This works absolutely fine,it opens the txt file and my code in Call_Back trigger gets fired when I close the 'Notepad Application'
    But when I want to open word doc I cannot use above code. so I have to use
    v_cmd := 'cmd /c C:\Test.doc';
    V_PROCESS_ID := WebUtil_Host.NonBlocking_With_Callback(v_cmd , 'CALL_BACK');
    This works fine upto opening the document, but also immediately fires the code in Call_Back trigger not waiting for the 'Word Application' to be closed.
    Is there a way to get around this???

    Hi Manohar.
    Could you please post the text of the metalink note 290130.1 for someone that has not access to metalink???
    Thanks,
    Fabrizio

  • Webutil bean not found when using call_form with no_share_library_data

    Hi,
    I have two Forms modules and i navigate from Form A to Form B using a call_form.
    If i call Form B with NO_SHARE_LIBRARY_DATA param, i get a webutil error: "oracle.forms.webutil.file.filefunctions bean not found"
    If i call it with SHARE_LIBRARY_DATA, there no error and my webutil function works as expected.
    Webutil is used in our application are works well so i don't think that it's webutil config problem.
    Any idea?
    Tx

    Thanks for your answer.
    Now I'am a little bit further with my debugging but it's more strange! forget the share_library_data...
    I start a common form with webutil.pll attached and i will use the Webutil_File.File_Exists function for example
    if i call it in the WNFI or WNBI, i get the error
    if i call it via a push-button WBP for example, it works!
    below the java console ouput when i get the error and after pushing ok on the error
    Loading http://sdp6:7778/sdp-jar_dev/frmwebutil.jar from JAR cache
    Loading http://sdp6:7778/forms/java/frmall_jinit.jar from JAR cache
    RegisterWebUtil - Loading WebUtil Version 10.1.2.2
    Loading http://sdp6:7778/sdp-jar_dev/hst65.jar from JAR cache
    Loading http://sdp6:7778/sdp-jar_dev/sdpimage.jar from JAR cache
    Loading http://sdp6:7778/sdp-jar_dev/host.jar from JAR cache
    Loading http://sdp6:7778/sdp-jar_dev/jacob.jar from JAR cache
    proxyHost=null
    proxyPort=0
    connectMode=HTTP, native.
    La version Forms Applet est : 10.1.2.2
    2008-janv.-10 18:02:24.711 WUI[VBeanCommon.findLocalHost()] obtaining LocalHost info from InetAddress
    2008-janv.-10 18:02:24.727 WUI[VBeanCommon.getIPAddress()] 172.22.35.17
    2008-janv.-10 18:02:24.727 WUF[VBeanCommon.findLocalHost()] obtaining LocalHost info from InetAddress
    2008-janv.-10 18:02:24.727 WUF[VBeanCommon.getIPAddress()] 172.22.35.17
    2008-janv.-10 18:02:24.743 WUH[VBeanCommon.findLocalHost()] obtaining LocalHost info from InetAddress
    2008-janv.-10 18:02:24.743 WUH[VBeanCommon.getIPAddress()] 172.22.35.17
    2008-janv.-10 18:02:24.743 WUS[VBeanCommon.findLocalHost()] obtaining LocalHost info from InetAddress
    2008-janv.-10 18:02:24.743 WUS[VBeanCommon.getIPAddress()] 172.22.35.17
    2008-janv.-10 18:02:24.758 WUT[VBeanCommon.findLocalHost()] obtaining LocalHost info from InetAddress
    2008-janv.-10 18:02:24.758 WUT[SessionFunctions.init()] Max Transfer chunk size set to 4048
    2008-janv.-10 18:02:24.758 WUT[VBeanCommon.getIPAddress()] 172.22.35.17
    2008-janv.-10 18:02:24.977 WUO[VBeanCommon.findLocalHost()] obtaining LocalHost info from InetAddress
    2008-janv.-10 18:02:24.977 WUO[VBeanCommon.getIPAddress()] 172.22.35.17
    2008-janv.-10 18:02:24.977 WUL[VBeanCommon.findLocalHost()] obtaining LocalHost info from InetAddress
    2008-janv.-10 18:02:24.977 WUL[VBeanCommon.getIPAddress()] 172.22.35.17
    2008-janv.-10 18:02:24.977 WUB[VBeanCommon.findLocalHost()] obtaining LocalHost info from InetAddress
    2008-janv.-10 18:02:24.977 WUB[VBeanCommon.getIPAddress()] 172.22.35.17
    AFTER PUSH OK on the error
    2008-janv.-10 18:07:12.977 WUI[getProperty()] Getting property WUC_BEAN_VERSION
    2008-janv.-10 18:07:12.977 WUI[getProperty()] Value of WUC_BEAN_VERSION=10.1.2.2
    2008-janv.-10 18:07:12.993 WUT[setProperty()] Setting property WUC_SRV_LOGGING to 0
    2008-janv.-10 18:07:12.993 WUT[setProperty()] Setting property WUC_GET_LOCAL_PROPERTY to syslib.jacob.dll
    2008-janv.-10 18:07:12.993 WUT[getProperty()] Getting property WUC_GET_LOCAL_PROPERTY
    2008-janv.-10 18:07:13.08 WUT[loadSettings()] Local properties file loaded
    2008-janv.-10 18:07:13.08 WUT[getProperty()] Value of WUC_GET_LOCAL_PROPERTY=1.0
    2008-janv.-10 18:07:13.08 WUT[setProperty()] Setting property WUC_GET_LOCAL_PROPERTY to syslib.JNIsharedstubs.dll
    2008-janv.-10 18:07:13.08 WUT[getProperty()] Getting property WUC_GET_LOCAL_PROPERTY
    2008-janv.-10 18:07:13.08 WUT[getProperty()] Value of WUC_GET_LOCAL_PROPERTY=1.0
    2008-janv.-10 18:07:13.08 WUT[setProperty()] Setting property WUC_GET_LOCAL_PROPERTY to syslib.d2kwut60.dll
    2008-janv.-10 18:07:13.08 WUT[getProperty()] Getting property WUC_GET_LOCAL_PROPERTY
    2008-janv.-10 18:07:13.08 WUT[getProperty()] Value of WUC_GET_LOCAL_PROPERTY=1.0
    2008-janv.-10 18:07:13.24 WUB[setProperty()] Setting property WUC_SRV_LOGGING to 0
    AFTER PUSH ON THE BUTTON THAT CALL THE SAME FUNCTION
    2008-janv.-10 18:07:34.758 WUF[setProperty()] Setting property WUF_FILENAME to c:\temp\1.txt
    2008-janv.-10 18:07:34.758 WUF[setProperty()] Setting property WUF_FILE_ATTRIBUTE to 1
    2008-janv.-10 18:07:34.758 WUF[getProperty()] Getting property WUF_FILE_ATTRIBUTE
    2008-janv.-10 18:07:34.758 WUF[getProperty()] Value of WUF_FILE_ATTRIBUTE=TRUE

  • Patching only forms on app-server from 10.1.2.2 to 10.1.2.3 possible?

    Hello!
    We have an application-server 10gR2 with the full patchset 2 running on an aix-machine for some years now.
    This has the forms-server 10.1.2.2 running.
    Our forms applications run on the client with JRE (1.5, 1.6) and use webutil without problems.
    To support IE8 and Windows7 for our forms-clients we need Forms-Version 10.1.2.3 as stated in the certification-matrix.
    As installing the Full Patchset3 on the AIX application-server seems to bee a pain, I would like to know, if it is possible - an supported - to ONLY patch the forms-component on the application-server and leave all other components untouched?
    For Patching the app-serv I've found:
    Oracle Application Server 10g Release 2 (10.1.2) Support Status and Alerts [ID 329361.1]
    Note 415222.1 Steps to Maintain Oracle Application Server 10g Release 2 (10.1.2)
    and Forms Servlet (frmsrv.jar) Not Updated After Patching to 10.1.2.3 [ID 1058514.1]
    and there seems to bee an "Forms-Patch Bundle"
    and Note 1188127.1 Oracle Forms 10.1.2.3 Bundle Patch Frequently Asked Questions (FAQ)
    and ...
    Any ideas or hints, if patching only forms is possible?
    BTW: There was no real test-environment set up :-( . So I can only clone the prod-env. And with that I have to change the ip and hostname of the app-serv which is another story...
    Thanks for any hints - charly

    No, you have to apply the full patch.
    As installing the Full Patchset3 on the AIX application-server seems to bee a painThis is not a good reason to avoid applying a patch. This is common in all infrastructures, not just Oracle.
    Craig...

Maybe you are looking for