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

Similar Messages

  • 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

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

  • Link to Url properties problem

    Hello all,
    i am working on link to url UI element.
    the url that i have is larger than that i can put in reference property of link to url UI Element.
    How may i put whole of the url in reference properties of  link to url UI Element without length problem.
    Thanks & Regards.
    Vikash

    workaround:
    create an action and open the link via WINDOW API or with an exit plug
    http://help.sap.com/saphelp_nw04s/helpdata/en/45/1bc575ba064574e10000000a114a6b/content.htm
    regards
    stefan

  • DW CS3 Page Properties problem - I don't have font, repeat  options

    I have been following some online tutorials and they are also in CS3, DW but my page properties layout and options are different within the program.
    Is there something that needs updating/ downloading turning on in an advanced option? I have looked over the web and can find others with the same problem but not a solution.
    Hope you can help.
    The link below at the bottom of the page on the left has a thumb nail of the properties page which matches mine, note no repeat, font and other options are missing compared to others and I imagine yours.
    http://forums.macrumors.com/showthread.php?t=361918
    thanks

    I had the same problem although it was a previous update rather than this one that caused the problem. Just hadn't got round to doing something about it - was using Bing images instead.
    I searched for some answers this morning and seemed like most suggestions were a nuisance to try. Couldn't find 'Preferences button of HTTPS-Everywhere' as suggested above. Decided to check if No Script was blocking it. Sure enough. So problem is solved.
    Thought I'd put it out there in case it helps someone else. Appreciate that people are so helpful on here.

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

  • Properties problems

    Hi,
    I have a properties file inside my project (within the jar file).
    I can read the properties from this file without problem. However, when I try to write the changed properties, my application will create a new properties file in the same folder as the jar file (outside of the jar-file).
    I use the         props.store(new FileOutputStream("app.properties"),"someheader");Apparently this is not the way to go. Could anyone tell me what ?s the way to go?

    vampke wrote:
    Thank you Chicon. This is what I fearedNothing to fear. A common situation is to have a default properties file in the JAR, but allow it to be superceded by a properties file in the file system.
    Reading from the JAR is easy:
    public Properties load(String path) throws IOException {
        ClassLoader loader = Thread.currentThread().getContextClassLoader();
        InputStream in = loader.getResourceAsStream(path);
        try {
            Properties p = new Properties();
            p.load(in);
            return p;
        } finally {
            in.close();
    }

  • 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

  • Netbeans .properties problem

    Hi, like many users on this forum i see i am having a problem with Netbeans 6.8 and .properties files. All the solutions i have seen posted on this forum and others don't work when i try them i have the culprit file in the Source packages category and i have tried placing it in many categories in Netbeans and directories on my windows 7 computer and have no luck here is the code i have for this
    public static InputStream in;
    public static String servername;
    public static Connection con = null;
    public static String fullname1;
    public String setserver(){
    servername = server_entry.getText();
    String servername2 = servername;
    try {
         Properties prop = new Properties();
    in.getClass().getResourceAsStream("servernames.properties");
    prop.load(in);
    prop.put("database",servername2);
    in.close();
    any help would be appreciated and if you don't want to help or are going to say "figure it out your self" or "do a search someone already found a fix" Don't i searched high and low and found nothing that worked, thanks

    Having never had the problem you express nor seen before in the years I've been on the forum, all I can tell you is the general procedure I go through when I suspect an install problem, and I would definetely suspect an install problem in your case:
    1 - check your logs to see if there are any needed services that are not starting and resolve the problems to enable their loading
    2 - uninstall your software (IDE and Java)
    3 - delete the root folder of each
    4 - edit my environment variables to remove any mention of it or prior versions in my path
    5 - edit my environment variables remove my classpath entry alltogether.
    6 - run a regitry cleaner like CCleaner until no registry errors persist. you'll probably need to run this multiple times.
    (this is not an endorsement for that free product, but I do use it and it does work and it is free.)
    7 - reboot (cold boot)
    8 - download fresh copies of the software (IDE and Java)
    9 - install Java
    10 - reboot
    11 - install IDE
    12 - reboot
    13 - check path environment variable and make any nessisary changes
    14 - check path environment variable and make any nessisary changes
    I have to think your system is messed up some place and your install did not complete or register correctly.

  • Automatic Update - deployment.properties problems with JRE 1.6.0_05

    Hi!
    This is a Automatic Updated daisable problem.
    I have change the update policy values in the registry but still have one more problem:
    I want to deploy JRE 1.6.0_05, in earlier versions ie 1.4 there has been a windows\sun\java\deployment where the initian deployment.properties file is located. But in the 1.6.X ther is no such folder and the deployment.properies file is still "copied" when you start ie "javacpl.exe" . I would like to disable the
    choice "Download JRE automatically" in the javacpl.exe to "Never download..." but the initial choice when the file deployment.properties is created is "alway download..." .
    Am I still save only with the registry key changes, or do I have to change the value in the deployment.properies and if so, where is the "original" copy that copies the file into C:\Document and Settings\[user]\Application data\Sun\Java\Deployment\
    kindly,
    manekin...

    Hey lynchmob,
    Try these steps to correct the problem, you need to be logged in as an administrator:
    1. Go to the group policy editor. You can get they by typing gpedit.msc into the Run dialog.
    2. Navigate to computer configuration->administrative templates->windows components->internet explorer.
    3. Disable "make proxy settings per-machine (rather than per-user)".
    4. Login with the user account and go to Internet Options.
    5. Go to the Connection tab.
    6. Click on the Lan Settings button.
    7. You may notice that the proxy settings are not correct. Change the proxy settings to be whatever is required for your proxy.
    8. Configure Java to use browser proxy settings.
    9. Open the java console.
    10. Set debug level to 5.
    11. Press 'p' to reload proxy settings. Use the trace messages to verify correct proxy settings were loaded.

  • MSI display properties problem

    i have a ms star force geforcefx 5600 video card installed as well as the software which came with it ,MSI media centre deluxe 2,i noticed the other day when i click on display properties and click on msi information i get an error which reads (run dll as an app has encoutered a problem and will close),
    i aslo tried to uninstall msi media centre to see if this might be the cause as the problem was first noticed not long after it was installed but it come up with an error(msidrif.dll(0x001)problem loading dll. can anyone help me get rid of this program or fix the other problem
    thanks Dave

    Uninstall the MSI drivers and Install Drivers from nVidia
    http://www.nvidia.com/content/drivers/drivers.asp
    If you want to overclock see link below
    http://oc3dmark.octeams.com/tip02.html

  • Page Properties Problems

    DW CS4 OS X/10.5: I am having problems getting the correct MIME type and character encoding to "stick" when I edit old pages. Two things go wrong, the first of which is just an annoyance, the second of which is my problem-to-be-solved. Editing a page that says in the lower right corner of the window that the character encoding is ISO Latin 1. I want to tell DW that I am using UTF-8 so I can type things like curly quotes from the keyboard instead of using HTML character entities. I already have a PHP header that handles this properly depending on the browser's capabilities, so I don't need or want a meta tag added to the head of the document. In particular, my PHP code generates the correct MIME type for xhtml 1.1 files, depending on what the browser says it can accept (application/xhtml+xml for browsers that understand it; text/html for ones that cannot).
    When I go to Modify->Page Properties, the first problem is that when I click on Title/Encoding, I have to dismiss four dialogs that inform me that "auto" is not a standard value for this CSS property. Presumably this is a reference to the four auto settings for margins on the Appearance tab, which is irrelevant to the task at hand. As I said above, this is an annoyance, but I can click "Yes" four times to get rid of these pretty quickly. Still, it's a bug that the settings should default to invalid values.
    The real problem is that when I get to the Title/Encoding tag and select UTF-8 for the character encoding, DW adds a meta tag to the head of the document that tells what the character encoding is and what the mime type is. But I can't keep this meta tag because it tells all browsers that the MIME type is text/html, defeating the purpose of sending the correct MIME type depending on the browser's capabilities. But if I delete the meta tag, the next time I open the file in DW, it thinks it's an ISO-Latin-1 file again. Despite my global preference to treat files of unknown character encoding as UTF-8.
    Bottom line: is all this a bug in DW, or is there actually a way to get DW to interpret the character encodings of all legacy pages as UTF-8 instead of ISO-Latin-1?

    They do seem to match up in the bean and this is the line I use to set the Book as the bean ID in the JSP.
    <jsp:useBean id="Book" class="com.resBook" scope="request"/>
    Any other suggestions?

  • 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

  • 6.0sp5 Struts properties problem

    Testing with struts-blank - NO mods.
    ===== SUMMARY
    Struts demos will work with 6.0sp5 - but ONLY if you move message properties
    under the server config/ directory.
    6.0sp5 is prefixing the message resource with SERVER_ROOT/SERVER_ID/config/
    And, it does NOT search the classes directory.
    I've searched EVERYWHERE to try to find where to configure this path prefix.
    It looks like it picks it up from the command line start:
    ./$PRODUCT_BIN -d $PRODUCT_SUBDIR/config
    (obviously can't change that ;-)
    Please note, this is not a permissions problem, checked that already.
    ===== DETAILS
    Solaris 8 Unix, with 12/02 jumbo patch
    Installed from scratch just for testing Struts:
    - 6.0sp5
    - Struts 1.1-b3
    - J2SE 1.4.1.01
    NO errors upon itialization of the struts-config.xml, works fine.
    Getting error:
    at com.iplanet.server.http.servlet.NSServletRunner.ServiceWebApp(NSServletRunne
    r.java:981) , root cause: javax.servlet.jsp.JspException
    at org.apache.struts.taglib.bean.MessageTag.doStartTag(MessageTag.java:298)
    at jsps.pages._Welcome_jsp._jspService(_Welcome_jsp.java:142)
    deployed (correctly) in directory:
    /web/server/vs2/doc/struts-blank/
    message resource file as deployed:
    /web/server/vs2/doc/struts-blank/WEB-INF/classes/resources/application.propertie
    s
    ran truss on ns-httpd process:
    *** FAILS ***
    1531: stat64("/usr/iplanet/servers_tst/https-www/config/resources/application.
    properties", 0xFB8EDA10) Err#2 ENOENT
    (searches all language/country varients for local - failing)
    moved resource file to:
    /usr/iplanet/servers_tst/https-www/config/resources/application.properties
    ran truss on ns-httpd process:
    *** WORKS ***
    1623: open("/usr/iplanet/servers_tst/https-www/config/resources/application.pr
    operties", O_RDONLY|O_LARGEFILE) = 22
    Happy Struts WORKS! But, would prefer to handle message properties in
    the correct app directories. Is there a way to correct the path?
    Thanks,
    Dan

    Don't do so!
    Just add the path /web/server/vs2/doc/struts-blank/WEB-INF/classes/ to your IWS6 JVM classpath, it is OK forever!!
    As follow:
    Start administer web server-->Select a Server: your server, click manager-->Java-->Configure JVM Attributes-->Add your specifically path(such as ...../WEB-INF/classes/) to the Classpath-->Click OK-->restart webserver.

Maybe you are looking for

  • FCP to ProTools LE

    I am trying to export a Quicktime movie from FinalCut Pro v6.0.5 that contains 16-tracks of audio; I have set up the Sequence Settings in FCP to output to 16 different channels, but get errors code when doing so: "The current audio device does not su

  • Urgent: export table to Excel

    Hi, when button is pressed, needs to create a excel with the data from the table. i know how to create a excel for the version excel 2003. please send the procedure for creating the excel for the versions 2002 & below. Note: i came to know we can do

  • Account category reference

    Hello expert, In Valuation class definition, there is the account category reference. What is the use of account category reference? Thanks.

  • Ipad mini unable to enter code to unlock

    When I turn on my ipad mini I am unable to enter a code to unlock the ipad mini and it shows searching at top left of screen,  is it possible I have a virus and how do I get rid of it? Thanks

  • Install problem olite NoClassDefFoundError: javax/activation/DataSource

    Hello, I ran into an installation problem with the Oracle BPEL PM server. Though the installation completed successfully during startup of the server the following error occurs (part of log, complete log follows): XXXXXXXXXXXXXXX <2004-12-11 16:22:45