WebUtil Demo OLE test doesn't work

Hi
I have downloaded the WebUtil demo and all tabs/functionalities in the form WU_TEST_105 works except the OLE test. When I click on the button "Write to Word" the form just hangs/freezes adn nothing happens. I added the lines
webutillogging=console
and
webutilloggingdetail=detailed
to my formsweb.cfg and here are part of the java console output:
.Exception occurred during event dispatching:
java.lang.NoClassDefFoundError
at oracle.forms.webutil.ole.OleFunctions.create_obj(OleFunctions.java:398)
at oracle.forms.webutil.ole.OleFunctions.getProperty(OleFunctions.java:189)
at oracle.forms.handler.UICommon.onGet(Unknown Source)
at oracle.forms.engine.Runform.onGetHandler(Unknown Source)
at oracle.forms.engine.Runform.processMessage(Unknown Source)
at oracle.forms.engine.Runform.processSet(Unknown Source)
What does this mean? What shall I do?
regards // Frederic

My webutil is downloaded already.
Loading http://appsrv1.sarar.com.tr:7778/forms/java/frmall_jinit.jar from JAR cache
Loading http://appsrv1.sarar.com.tr:7778/forms/java/icons.jar from JAR cache
Loading http://appsrv1.sarar.com.tr:7778/forms/java/frmwebutil.jar from JAR cache
Loading http://appsrv1.sarar.com.tr:7778/forms/java/jacob.jar from JAR cache
proxyHost=null
proxyPort=0
connectMode=HTTP, native.
Forms Applet version is : 10.1.2.0
Exception occurred during event dispatching:
java.lang.ExceptionInInitializerError: java.security.AccessControlException: access denied (java.lang.RuntimePermission loadLibrary.jacob)
     at java.security.AccessControlContext.checkPermission(Unknown Source)
     at java.security.AccessController.checkPermission(Unknown Source)
     at java.lang.SecurityManager.checkPermission(Unknown Source)
     at java.lang.SecurityManager.checkLink(Unknown Source)
     at java.lang.Runtime.loadLibrary0(Unknown Source)
     at java.lang.System.loadLibrary(Unknown Source)
     at com.jacob.com.Dispatch.<clinit>(Dispatch.java)
     at oracle.forms.webutil.ole.OleFunctions.create_obj(Unknown Source)
     at oracle.forms.webutil.ole.OleFunctions.getProperty(Unknown Source)
     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.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)
proxyHost=null
proxyPort=0
connectMode=HTTP, native.
Forms Applet version is : 10.1.2.0
Exception occurred during event dispatching:
java.lang.NoClassDefFoundError
     at oracle.forms.webutil.ole.OleFunctions.create_obj(Unknown Source)
     at oracle.forms.webutil.ole.OleFunctions.getProperty(Unknown Source)
     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)
I have this, what can I do to fix this?

Similar Messages

  • Data Driven Test doesn't work in coded UI

    Hi,
    I have written my first coded ui data driven test (Visual Studio 2012).  Although the test ran and was marked passed. I don't think it actually did anything.  
    I have 2 fields (Input and Output) on my csv file.
    n my app,  I want to enter the input field in a field called GoTo which is an UITbedit field, hit enter.  This should open another window where I want to validate the window title = to my Output 
    Here is my code
            [DataSource("Microsoft.VisualStudio.TestTools.DataSource.CSV", "|DataDirectory|\\Data/MainData.csv", "MainData#csv", DataAccessMethod.Sequential), DeploymentItem("MainData.csv"), TestMethod]
            public void DataDrivenTest()
                //string paramVal = TestContext.DataRow["Input"];
                this.UIMap.EnterGoToValueMainParams.TextInputEditText =
                    TestContext.DataRow["Input"].ToString();
        this.UIMap.EnterGoToValueMain();
                this.UIMap.PressEnter();
                this.UIMap.AssertWindowTitleExpectedValues.TextOutputEditText =
                    TestContext.DataRow["Output"].ToString();
    During playback, it appeared that the coded ui test had looped through the csv file, but it didn't actually write anything to the edit field that I was testing.

    It still doesn't work,
    I modified my code as follows:
                this.UIMap.EnterGoToValueMainParams.TextInputEditText =
                       TestContext.DataRow["Input"].ToString();
                this.UIMap.EnterGoToValueMain();
                this.UIMap.PressEnter();
                this.UIMap.AssertWindowTitleExpectedValues.TextOutputEditText =
                       TestContext.DataRow["Output"].ToString();
                this.UIMap.AssertWindowTitle();
    The application appears to loop through the file, but it is placing my original entered test "1" in the edit field during both iterations.  The playback is slow enough that I can see what is being entered. It doesn't seem to be replacing the
    "1" with a "5" from my input file.

  • Demo servlet IsItWorking doesn't work after fresh install

    Hello,
    We did a fresh install of Oracle 9iAS 1.0.2.2 on Hp-ux 11i
    The installation completed succesfully, but
    when trying to run the demo servlet IsItWorking, we get error 'The page cannot
    be displayed'
    The apache error_log file contains following lines:
    [Thu Apr 18 17:12:03 2002] [notice] FastCGI: process manager initialized (pid
    9809)
    [Thu Apr 18 17:12:03 2002] [warn] OPM: ADM: process 9810 created server process
    9811 (group group1, module JServ), and inserted in proctable as entry 0
    [Thu Apr 18 17:12:03 2002] [emerg] OPM: Watcher starts with an id=9810
    [Thu Apr 18 17:12:03 2002] [warn] OPM: ADM: process 9810 created server process
    9812 (group group2, module JServ), and inserted in proctable as entry 0
    [Thu Apr 18 17:12:04 2002] [notice] Oracle HTTP Server Powered by Apache/1.3.19
    (Unix) mod_fastcgi/2.2.10 mod_perl/1.25 mod_oprocmgr/1.0 configured -- resuming
    normal operations
    [Thu Apr 18 17:12:18 2002] [warn] OPM: EW process rp5400:0 (pid:9811) died,
    restarting.
    [Thu Apr 18 17:12:18 2002] [warn] OPM: ADM: process 9810 created server process
    9819 (group group1, module JServ), and inserted in proctable as entry 0
    [Thu Apr 18 17:12:18 2002] [warn] OPM: EW process rp5400:0 (pid:9812) died,
    restarting.
    [Thu Apr 18 17:12:18 2002] [warn] OPM: ADM: process 9810 created server process
    9820 (group group2, module JServ), and inserted in proctable as entry 0
    [Thu Apr 18 17:12:21 2002] [warn] OPM: EW process rp5400:0 (pid:9819) died,
    restarting.
    [Thu Apr 18 17:12:21 2002] [warn] OPM: ADM: process 9810 created server process
    9821 (group group1, module JServ), and inserted in proctable as entry 0
    [Thu Apr 18 17:12:21 2002] [warn] OPM: EW process rp5400:0 (pid:9820) died,
    restarting.
    [Thu Apr 18 17:12:21 2002] [warn] OPM: ADM: process 9810 created server process
    9822 (group group2, module JServ), and inserted in proctable as entry 0
    [Thu Apr 18 17:12:23 2002] [error] OPM:Can not find one alive process
    [Thu Apr 18 17:12:23 2002] [error] OPM:Can not find one alive process
    [Thu Apr 18 17:12:24 2002] [warn] OPM: EW process rp5400:0 (pid:9821) died,
    restarting.
    [Thu Apr 18 17:12:24 2002] [warn] OPM: ADM: process 9810 created server process
    9824 (group group1, module JServ), and inserted in proctable as entry 0
    Any idea?
    Thanks

    Hi -
    I was wondering if you solved this problem. I had the exact same issue on Win2K after I installed the Java Portlet Development Kit. Now my Apache JServ does not work.
    This is a sample of my error_log:
    [Fri Jun 07 10:48:01 2002] [notice] FastCGI: process manager initialized
    [Fri Jun 07 10:48:08 2002] [error] OPM:Can not find one alive process
    [Fri Jun 07 10:48:08 2002] [error] [client 127.0.0.1] File does not exist: /servlet/IsItWorking
    [Fri Jun 07 10:51:22 2002] [warn] OPM: ADM: Process 380 terminated using SIGTERM successfully
    I have re-checked my jserv.properties, jserv.conf, zone.properties several times and I can't see the problem. I tried to manually remove the entire PDK and go back to my original state (I saved a copy of all my config files) but it still doesn't work.
    Did you find a way to fix this?
    Thanks!!!
    Heather

  • How to trigger a MouseEvent from TLF, my test doesn't work

      Hi,
          I run into a problem while using the Listener of TLF,
          Inside  the  TextFlow,  I have several Paragraphs.
          What I wish to accomplish is to trigger a mouse Event, like ROLL_OVER, ROLL_OUT event , when  my mouse is over a on one of the Paragraphs.
          I used to experiment a while , but never seem to work, just the examples below
          _textFlow.addEventListener(FlowElementMouseEvent.ROLL_OUT,onMouseHandler);
          _textFlow.addEventListener(FlowElementMouseEvent.ROLL_OVER,onMouseHandler);
           ///   which doesn't work.         i need the event response ,so i can manipulate the paragraph
    private function onMouseHandler(e:FlowElementMouseEvent):void
         trace("onMouseHandler" +  e.type  );
         var para:ParagraphElement = e.flowElement.getParagraph();
         trace(para.textLength);
    Thanks  in   advance!!!

       this is the code
    <?xml version="1.0" encoding="utf-8"?>
    <mx:WindowedApplication
       xmlns:s="library://ns.adobe.com/flex/spark"
       xmlns:mx="http://www.adobe.com/2006/mxml"
       creationComplete="init()">
    <mx:Script>
    <![CDATA[
    import flash.display.Sprite;
    import flash.events.MouseEvent;
    import flashx.textLayout.container.ContainerController;
    import flashx.textLayout.conversion.TextConverter;
    import flashx.textLayout.elements.TextFlow;
    import flashx.textLayout.events.*;
    import flashx.textLayout.elements.SpanElement;
    import flashx.textLayout.elements.InlineGraphicElement;
    import flashx.textLayout.elements.ParagraphElement;
    import flashx.textLayout.elements.TextFlow;
    import flashx.textLayout.elements.FlowElement;
    import flashx.textLayout.tlf_internal;
    private var _textFlow:TextFlow;
    private var textSprite:Sprite;
    private var backgroundSprite:Sprite;
    var source:XML = <TextFlow xmlns="http://ns.adobe.com/textLayout/2008">
    <div></div>
    <p>
    <img source="air.png"/>
    <span>Flex is a highly productive, free open source framework for building and maintaining expressive web applications that deploy consistently on all major browsers, desktops, and operating systems. While Flex applications can be built using only the free Flex SDK, developers can use Adobe® Flex® Builder™ 3 software to dramatically accelerate development. Try Flex Builder 3 free for 60 days. Try ILOG Elixir to enhance data display in your Flex applications.</span>
    <br/>
    </p>
    <div></div>
    <p>
    <span>Adobe® Flex® 3 是用于构建和维护在所有主要浏览器、桌面和操作系统一致地部署的极具表现力的 Web 应用程序的高效率的开放源码框架。 可以使用免费的 Flex SDK 构建 Flex 应用程序, 开发人员可以使用 Adobe Flex Builder™ 3 软件来显著促进开发。 60 天内免费试用 Flex Builder 3</span>
    <br/>
    </p>
    <div></div>
    </TextFlow>;
    private function init():void
    backgroundSprite = new Sprite();
    canvas.rawChildren.addChild(backgroundSprite);
    textSprite = new Sprite();
    canvas.rawChildren.addChild(textSprite);
        _textFlow = TextConverter.importToFlow(source, TextConverter.TEXT_LAYOUT_FORMAT);
    _textFlow.fontFamily = "Georgia, Times";
    _textFlow.fontSize = 16;
    _textFlow.columnCount = 2;
    _textFlow.columnGap = 30;
    _textFlow.columnWidth = 320;
    setListenerOnParagraph(_textFlow);
    _textFlow.flowComposer.addController(new ContainerController(textSprite,canvas.width,canvas.height));
    _textFlow.flowComposer.updateAllControllers();
    import flashx.textLayout.tlf_internal;
    private function setListenerOnParagraph(textFlow:TextFlow):void
    use namespace  tlf_internal;
    for(var i:int =0;i < textFlow.numChildren;i++)
        var para2:FlowElement = textFlow.getChildAt(i);
       if(para2 is  ParagraphElement)
         para2 = para2 as ParagraphElement
         trace("paragraph:"+para2.textLength);
         para2.tlf_internal::getEventMirror().addEventListener(MouseEvent.CLICK, regionClickHandler);      //  wrong here
    public function regionClickHandler(evt:MouseEvent):void {
    trace("click");
    ]]>
    </mx:Script>
    <mx:Canvas width="614" height="321" x="30" backgroundColor="#FDFBFB" id="canvas">
    </mx:Canvas>
    </mx:WindowedApplication> 

  • Swf test doesn't work

    I've created an image carousel and tested it in Flash and all
    is fine, but when i try and view it as an swf it doesn't playback?
    Is there are coding i need or is there something I'm
    missing?

    I've created an image carousel and tested it in Flash and all
    is fine, but when i try and view it as an swf it doesn't playback?
    Is there are coding i need or is there something I'm
    missing?

  • Jdeveloper tester doesn't work

    I create my own app. module and deploy it as ejb on 8i from jdeveleoper, everything fine.
    but when i test it from jdeveloper from its tester, and have generated client jar file in classpath, i get unable to create app. module.
    I see that lots of people get this error. Can anyone please. let me know what special thing i have to do to get it working.
    Thanks,
    Punit

    Regarding the MacOSX install:
    I had to put together all hints including the faked rt.jar and core.jar from the upper post (thanks Frank)
    using -Dos.name=unix helped resolving the correct free diskspace but i got a heap space error in Java.
    Alltogether this would be:
    create the missing dir presuming you use java 1.6 (as root):
    mkdir -p /System/Library/Frameworks/JavaVM.framework/Versions/1.6/Home/1.6/jre/lib
    cd /System/Library/Frameworks/JavaVM.framework/Versions/1.6/Home/1.6/jre/lib
    echo "." > rt.jar
    echo "." > core.jar
    cd to the directory where you have your wlsVersion_generic.jar
    java -d64 -Dos.name=unix -Xms256m -Xmx512m -jar wls1033_generic.jar
    that worked for me...
    Michael

  • Gallery Demo doesn't work in IE

    I know i'm re-posting this but i can't belive this is so. So
    i'm hoping people just didn't see my second message rather than
    simply ignoring the fact that the gallery demo by Adobe doesn't
    work right in IE (at least in mine with SP2).
    If you notice when the main image changes there's a flicker
    where it shows the previous image and only then the chosen image.
    In the thumbnails the thumbnail that's being hovered over doesn't
    stay on top of both images on either side.
    Now my question is, does this problem have a solution or does
    it simply not work in IE and that's fine by all?!!
    Best,
    Sofia

    Hi Sofia,
    I answered your original post of this question
    here.
    Lets move the conversation back to that thread so we can have
    it all in one place.
    Thanks,
    --== Kin ==--

  • Webutil Demo form is not working !!!!

    Hi,
    I Download WebUtil Demo form, compiled it and tried to run the demo form using Forms 11g but at run time the following error alert appears:
    oracle.forms.webutil.clientinfo.GetClientInfo bean not found.
    WEBUTIL_CLIENTINFO.GET_SYSTEM_PROPERTY will not work
    My environment is Oracle Forms 11g on which Webutil is already installed as it is mentioned in Forms 11g FAQ. So I did not change or add anything for webutil.
    Any Help !!!!
    Regards,
    Yousuf.

    hi
    i am not sure for 11g but u can try this.........
    How to get up and running with WebUtil 1.06 included with Oracle Developer Suite 10.1.2.0.2 on a win32 platform
    Solution
    Assuming a fresh "Complete" install of Oracle Developer Suite 10.1.2.0.2,
    here are steps to get a small test form running, using WebUtil 1.06.
    Note: [OraHome] is used as an alias for your real oDS ORACLE_HOME.
    Feel free to copy this note to a text editor, and do a global find/replace on
    [OraHome] with your actual value (no trailing slash). Then it is easy to
    copy/paste actual commands to be executed from the note copy.
    1) Download http://prdownloads.sourceforge.net/jacob-project/jacob_18.zip
      and extract to a temporary staging area. Do not attempt to use 1.7 or 1.9.
    2) Copy or move jacob.jar and jacob.dll
      [JacobStage] is the folder where you extracted Jacob, and will end in ...\jacob_18
         cd [JacobStage]
         copy jacob.jar [OraHome]\forms\java\.
         copy jacob.dll [OraHome]\forms\webutil\.
      The Jacob staging area is no longer needed, and may be deleted.
    3) Sign frmwebutil.jar and jacob.jar
      Open a DOS command prompt.
      Add [OraHome]\jdk\bin to the PATH:
         set PATH=[OraHome]\jdk\bin;%PATH%
      Sign the files, and check the output for success:
         [OraHome]\forms\webutil\sign_webutil [OraHome]\forms\java\frmwebutil.jar
         [OraHome]\forms\webutil\sign_webutil [OraHome]\forms\java\jacob.jar
    4) If you already have a schema in your RDBMS which contains the WebUtil stored code,
      you may skip this step. Otherwise,
      Create a schema to hold the WebUtil stored code, and privileges needed to
      connect and create a stored package. Schema name "WEBUTIL" is recommended
      for no reason other than consistency over the user base.
      Open [OraHome]\forms\create_webutil_db.sql in a text editor, and delete or comment
      out the EXIT statement, to be able to see whether the objects were created witout
      errors.
      Start SQL*Plus as SYSTEM, and issue:
         CREATE USER webutil IDENTIFIED BY [password]
         DEFAULT TABLESPACE users
         TEMPORARY TABLESPACE temp;
         GRANT CONNECT, CREATE PROCEDURE, CREATE PUBLIC SYNONYM TO webutil;
         CONNECT webutil/[password]@[connectstring]
         @[OraHome]\forms\create_webutil_db.sql
         -- Inspect SQL*Plus output for errors, and then
         CREATE PUBLIC SYNONYM webutil_db FOR webutil.webutil_db;
      Reconnect as SYSTEM, and issue:
         grant execute on webutil_db to public;
    5) Modify [OraHome]\forms\server\default.env, and append [OraHome]\jdk\jre\lib\rt.jar
      to the CLASSPATH entry.
    6) Start the OC4J instance
    7) Start Forms Builder and connect to a schema in the RDBMS used in step (4).
      Open webutil.pll, do a "Compile ALL" (shift-Control-K), and generate to PLX (Control-T).
      It is important to generate the PLX, to avoid the FRM-40039 discussed in
      Note 303682.1
      If the PLX is not generated, the Webutil.pll library would have to be attached with
      full path information to all forms wishing to use WebUtil. This is NOT recommended.
    8) Create a new FMB.
      Open webutil.olb, and Subclass (not Copy) the Webutil object to the form.
      There is no need to Subclass the WebutilConfig object.
      Attach the Webutil.pll Library, and remove the path.
      Add an ON-LOGON trigger with the code
             NULL;
      to avoid having to connect to an RDBMS (optional).
      Create a new button on a new canvas, with the code
             show_webutil_information (TRUE);
      in a WHEN-BUTTON-PRESSED trigger.
      Compile the FMB to FMX, after doing a Compile-All (Shift-Control-K).
    9) Under Edit->Preferences->Runtime in Forms Builder, click on "Reset to Default" if
      the "Application Server URL" is empty.
      Then append "?config=webutil" at the end, so you end up with a URL of the form
          http://server:port/forms/frmservlet?config=webutil
    10) Run your form.sarah

  • Has anyone at apple ever heard of regression testing? ATV audio still doesn't work on 4.3.3

    I really don't think that there are any software validation principles in place at apple because my Apple TV has now been unusable for over a month due to all of these failed software updates.  Upgraded to 4.3.3 yesterday and it didn't resolve any of my audio issues.  I am using a DVI connection with optical audio out.  No audio on every 4.3 update.  I can get broken audio on the latest update (4.3.3) if I crank my receiver up to 50.  Used to get loud audio on my receiver set to 20.
    If anyone is actually testing this software using any known software validation principles, it would amaze me.  Someone needs to give me my money back for this black boat anchor.

    Alley_Cat wrote:
     this support note indirectly suggests it should work with HDCP enabled DVI adapters: 
    http://support.apple.com/kb/HT4428
    Specifically, the last section:
    Additional Information
    Even if your HDTV supports HDCP, you may still experience HDCP related issues when connecting your Apple TV (2nd generation) to your HDTV if:
    You have connected your Apple TV to a HDMI-to-DVI adapter that does not support HDCP
    You have connected your Apple TV to your TV using a HDMI cable that does not support HDCP
    You have connected your Apple TV to your TV via an AV receiver that does not support HDCP
    You have connected your Apple TV to a HDMI hub, switch, scaler, or extender that does not support HDCP
    None of that is surprising at all. It's what I meant when I said it would be "unfathomable" to assume DVI wouldn't work when HDCP is supported. It would actually require extreme negligence or malice to create a device where DVI doesn't work, hence "unfathomable".
    I don't even know where to buy an HDMI<->DVI adapter or cable that doesn't support HDCP. The straight-through $2 adapters and $5 cables from places like Monoprice.com work perfectly and "support" HDCP. I know this because I've used both. ETA: I put "support" in quotes because it's wrong to emphasize this as some special quality that might be hard to find or expensive. You'd have to actively seek out an adapter or cable that does not "support" HDCP.

  • Webutil demo not working ?

    Hello experts,
    recently i install and configure according to steps:
    1. Run create_webutil_db.sql
    a. CREATE USER webutil IDENTIFIED BY webutil
    b. Grant connect, resource to webutil
    c. Connect webutil/webutil
    d. @[ORACLE_HOME]/forms/create_webutil_db.sql
    e. Create public synonym webutil_db for webutil.webutil_db;
    f. Connect sys as sysdba
    g. Grant execute on webutil_db to public;
    2. Copy and download Jacob from
    http://sourceforge.net/projects/jacob-project/files/jacob-project/1.14.3/jacob-1.14.3.zip/download
    a. Unzip the jacob download and place jacob.jar in the
    ORACLE_HOME/forms/java directory
    b. backup sign_webuitl.bat script in [ORACLE_INSTANCE]/bin/sign_webutil.sh
    c. search for <Your KEYSTORE password> and replace it with welcome1 (or
    something like this)
    d. search for <Your private key password> and replace it with welcome1 (or
    something like this)
    e. Save the script and use it to sign jacob.jar as below
    f. [ORACLE_INSTANCE]/bin/sign_webutil.sh
    [ORACLE_HOME]/forms/java/jacob.jar
    3. Place jacob.dll in the ORACLE_HOME/forms/webutil/ directory
    4. Jacob.dll in r2 – file names must be verified against webutil.cfg file
    a. Place jacob-1.14.3-x86.dll in the ORACLE_HOME/forms/webutil/win32
    directory.
    b. Place jacob-1.14.3-x64.dll in the ORACLE_HOME/forms/webutil/win64
    directory
    5. Using weblogic EM console, Add ORACLE_HOME/forms/java/frmall.jar to the
    CLASSPATH in the default.env
    6. Update formsweb.cfg webutil section with the following if not already
    done:
    a. Add frmwebutil.jar and jacob.jar to the WebutilArchive parameter in the
    [webutil] configuration section. For some versions of 11g, this is already
    added.
    b. Specify webutil_demo as the form to be run in the [webutil]
    configuration section
    7. Download webutil demo from link below, extract and put the contents in
    a folder
    http://www.oracle.com/ocom/groups/public/@otn/documents/webcontent/196249.zip
    8. Copy ffisamp.dll to the <ORACLE_HOME>\forms\webutil directory.
    9. Open your webutil.cfg file and add the following line
    install.syslib.0.user.1=ffisamp.dll|40960|1.0|true
    10. If not already done do the following in webutil.cfg
    a. transfer.appsrv.workAreaRoot=c:\temp
    b. transfer.appsrv.accessControl=TRUE
    c. transfer.database.enabled=TRUE
    d. transfer.appsrv.enabled=TRUE
    11. Add the folder in FORMS_PATH in enterprise manager
    12. Replace db and run the following command:
    a. frmcmp.sh module=webutil_demo.fmb module_type=form
    userid=webutil/webutil@<db> compile_all=yes
    b. FORMS_PATH variable and make sure webutil.pll folder is available in the
    path or run the above command from command shell in the folder where webutil.pll
    is available
    13. Restart opmnctl and wls_forms weblogic instance
    14. Run the webutil
    running the url:
    http://server:port/forms/frmservlet?form=webutil_demo&config=webutil
    logon window appear, after login following mess comes:
    frm-40735: when-custom-item-event trigger raised
    unhendled exception ora: 06502
    thanks
    yash
    Edited by: yash_08031983 on Mar 8, 2013 12:12 AM

    There are a few things you did not mention or were unclear about.
    1. Exactly which Forms version are you using? In order to do what you described, you should be using 11.1.2.x. Forms 11.1.1 or older will not work using the instructions you referred to.
    2. I assume you just copied and pasted the instructions in your post because you included steps like this: "+ 3. Place jacob.dll in the ORACLE_HOME/forms/webutil/ directory+ ". If you downloaded the correct Jacob, you won't have a jacob.dll file.
    3. You said, " +b. FORMS_PATH variable and make sure webutil.pll folder is available + ". At runtime, FORMS_PATH will need access to webutil.plx and webutil_demo.fmx. The pll and fmb are for design time only. In the past, we permitted the use of ungenerated libraries (pll) at runtime, but this is no longer the case. You should always use the "X" file.
    4. You did not mention any of the client information. OS, browser and version, JRE and version, etc. If the client OS is 64bit and you are running Forms 11.1.2, you have the option of using either the 32bit or 64bit Internet Explorer versions. However, you must have a matching JRE. In other words, if you are using 32bit IE, you must also use the 32bit JRE. For 64bit IE you must use the 64bit JRE.
    5. If you are attempting to use Java 7 on the client, you must be running Forms 11.1.2.1.
    6. Someone asked if you compiled webutil.plx. Did you do this before or after you generated the form (webutil_demo.fmx)? If you generated the form before the library, I would recommend regenerating the form. Again, be sure to include the compile_all=yes option.

  • RC Components Hosted Demo doesn't work

    Hi,
    Question to Oracle people - why ADF Faces Rich Client Components Hosted Demo doesn't work ?
    Kuba

    Hello KUBA,
    It also happened in the Past
    Its still not up, if you need to use adf demo locally on your machine, please follow this thread
    you can find it here. JDev ADF Demo Site Not Working
    Thank you

  • Webutil: webutil_file.file_open_dialog with filter doesn't work as expected

    Hi
    I just tried to open files by using webutil_file.file_open_dialog. Since I only want to select files with the prefix "brp" (e.g. brp0001.txt, brp0002.lis), I fill the parameter file_filter with the value: brp*.*
    This doesn't work. The dialog only shows folders, but not the brp*.* files. I tried with switching to capitals, which doesn't solve anything. With the filter set to *.* the dialog shows all folders and files, so that seems to work ok.
    Is anyone aware of this problem and know a solution? I'm using webutil 1.0.2 (beta).

    K..here's some logging. As far as I can see it's all normal, but it doesn't work (no matter if I use a last | or not). Should be easy to reproduce.
    2003-okt-29 09:42:44.547 WUF[setProperty()] Setting property WUF_GFN_DIRNAME to y:\data\
    2003-okt-29 09:42:44.567 WUF[setProperty()] Setting property WUF_FILENAME to false
    2003-okt-29 09:42:44.567 WUF[setProperty()] Setting property WUF_FILTER to (brp_archief*.*)|brp_archief*.*
    2003-okt-29 09:42:44.587 WUF[setProperty()] Setting property WUF_GFN_MESSAGE to bestandsnaam selecteren
    2003-okt-29 09:42:44.597 WUF[setProperty()] Setting property WUF_GFN_MULTISELECT to FALSE
    2003-okt-29 09:42:44.608 WUF[getProperty()] Getting property WUF_GFN_OPENFILE
    2003-okt-29 09:42:45.679 WUF[gfnDialog()] Creating Custom File Filter : Mask=brp_archief*.*, Label=(brp_archief*.*)
    2003-okt-29 09:42:45.679 WUF[gfnDialog()] Open File mode
    2003-okt-29 09:45:27.203 WUF[getProperty()] Value of WUF_GFN_OPENFILE=

  • Test jdbc_javabasket in XCM doesn't work

    Hello,
    after Installation of ISA R/3 basket data in the b2b Application doesn't display (empty page).
    In the XCM Administartion of the application b2b I create a jdbc component "xyzjdbc". The Test jdbcping works fine but the test jdbc_javabasket doesn't work.
    Error:
    Error executing 'SELECT CREATE_MSECS, UPDATE_MSECS, REF_GUID, PARTNER_ID, PARTNER_ROLE, CLIENT, PARTNER_GUID FROM BUSINESSPARTNERS WHERE REF_GUID='1'' java.sql.SQLException: [WR3CRMT]Invalid object name 'BUSINESSPARTNERS'.
    I have create the jdbc-pool in the Visual administrator like in sap note 630753 (with database URL: jdbc:inetdae7:wr3crmt:1433?sql7=true&database=WHT).
    Database WHT was created during installation of the J2EE
    (see chapter 5.2 Installing the CRM Web Application with SAP Inst of
    documentation "Installation Guide CRM 4.0 SP06 -6.20 Web Application"). The database isales was created after chapter
    6.5 Install Database Tables on MS SQL Server of documentation "Installation Guide CRM 4.0 SP06 - 6.20 Java Components
    of E-Selling and Channel Management on a SAP J2EE Engine 6.20".
    Kind Regards,
    Mischa Gwinner

    Hi all!
    With a custom procedure or a sql query, we don't have this problem. It looks like for me, this problem is specific to the Oracle 'DBMS_*' procedures...
    Christian

  • Ipa-test-interpreter works; ipa-test doesn't

    I could use some help getting my #AS3 / #AIR application running on #iOS !
    Right now I have a .SWF (v11) that I'm converting to an .IPA using Adobe AIR (v3.7) on Windows (7).
    If I do the conversion with the -target of ipa-test-interpreter it works great.
    If I do the conversion with ipa-test, ipa-debug, ipa-ad-hoc, or ipa-appstore, the application seems to compile fine but upon execution of the app on my iPad it just shows a black screen.
    This means I can test and develop but I won't ever actually be able to deploy to the app-store. Anyone else run into this?

    The AIR SDK is 3.7, and I'm encountering this on the latest iOS version (as of May 10th, 2013) on iPad 2 and the new iPad. I'm compiling from a 64-bit version of Windows 7.
    Here's my ADT command:
    adt -package -target ipa-test  -storetype pkcs12 -keystore "cert/ios_development.p12" -storepass PASSWORD -provisioning-profile cert/cert.mobileprovision "dist\output.ipa" "buildConfig/ios/application.xml" -C bin . -C "icons" .

  • Test Mode doesn't work

    Has anyone run across a time when you put a host into testmode and testmode doesn't work like it is suppose to? I had to uninstall CSA from the host to get what I was trying to do to work. Just wondering....

    Try the BUG - CSCfx00032

Maybe you are looking for

  • Images are pasted as anchored text in a text frame.

    Whenever I paste an image I copied with ctrl+c from another software, its pasted into indesign as an anchored object inside a text frame. What should I do to have all images pasted with ctrl+v always be pasted as a graphics frame? ps: I have no objec

  • Message no. UDM_MSG000

    Hi all I am getting this message when creating dispute case through processing recivables. Error creating the dispute case Message no. UDM_MSG000 I think it may be because of incorrect record case model or sth. Thanks Nilk

  • Business Area default - F-53

    Hi guys, Let me know if there is any way that I can set up the "business area" field when I enter in F-53 transaction. I mean, the same way that we can see the posting date, company code, currency fields. I would like to set up an valeu in this scree

  • Dynamically Refresh Dropdown in JSF

    I wanna dynamically refresh dropdown values. Here is my requirement The user creates new record by selecting "New" value from the dropdown. Then user enters values on form fields and clicks the Submit button. The result is record gets created in the

  • Reg: MASS CHANGE

    Hi We have uploaded 250No.of Materials  through BAPI. At that time we didn't select the plant. Now we would like to extend the material to a plant.At present the materials are not assigned to any particular plant. now i would like to do the mass chan