Application does not work correctly when I press a CommanButton

Hi all, I'm having a problem with weblogic 10.3.5.

It turns out that an application created with JDeveloper 11.1.5, I have test and all is well in that the JDeveloper integrated Weblogic.

But when to deploy on a stand-alone 10.3.5 weblogic server, the application does not work correctly when I press a CommanButton to go to another search page (the 'action' property is properly set), but nothing happens, remains in the same home page. Similarly when a link of commanButton to run a workflow, it does not work, however in the integrated JDeveloper to Weblogic it works correctly.

How can I solve these problems?
Thank you.

One thing you shouldn't do is add '.jspx' to your URL. This shows the page, but does not start the life cycle of faces that show not work button not working navigation.
Use

 http://:7001/myApp/faces/index

And it should work.

Timo

Tags: Java

Similar Questions

  • Wireless Mouse 5000 does not work correctly when moved away from the transmitter.

    I have the mouse as shown in the title with new batteries.
    Link: http://www.microsoft.com/hardware/en-us/p/wireless-mouse-5000/MGC-00017
    My installed OS Windows 7 x 64 SP1. A clean installed on the computer without additional software in the meantime.
    When I connect the transmitter (2.4 ghz v7.0 model 1423) the mouse to the computer, it identifies only, and the mouse works.
    In devices and printers, the transmitter is under indefinite and after installing IntelliPoint 8.2 64-bit for Windows 7, it remains the same.
    Sometimes the mouse does not react on the screen, as it got stuck and moving in parts rather than sequentially. Including the mouse buttons that do not meet at the moment.
    If I bring the mouse close to the transmitter, the problem goes away and it works fine.
    After the test, no relation to the load on the processor, the problem appears randomly.
    I tried to replace USB ports but no change, the problem goes away only if I put the mouse close to the transmitter.
     
    Original title: Wireless Mouse 5000

    Hello Tomer,.

    Thanks for the reply.

    You can check the following items and check if it helps to solve this problem:

    The wireless keyboard or mouse may not respond and may start and stop at irregular intervals
    Troubleshoot a wireless mouse that does not correctly
    Troubleshoot the incidents of the response to the mouse or wireless keyboard

    If the problem persists always, as mentioned above, contact Microsoft Hardware support for assistance. All material related to problems are treated by them.

    Email us if you have any other issues related to Windows.

  • mail application does not work correctly

    Hello

    I have a ZTE Open C, Firefox OS

    with an Orange SIM card that works well in the phone call and SMS

    I've added an account in the Mail application

    the list of received mail looks OK

    When I want to load a mail something from 10 minutes to over an hour

    a shipment, it took 12 hours without night lat success

    I guess that this bhahvior is not normal, what can be done

    This is the case with Wifi

    using data with the cellular network is simply impossible, the words as
    HTTP port for agent, host agent HTTP and authentication (in french MISTLETOE)
    seems to be almost unknown on the web

    Thank you

    Jean pierre aubry

    Hello

    careful Andrew

    I removed the battery as you suggest, after

    automatic configuration is rejected

    manual configuration is successful in a few seconds

    I am trying to load your own e-mail, about an hour ago?

    What does all this mean?

    Jean pierre aubry

  • Match pattern does not work correctly when you are looking for a null character

    I use the match pattern to retrieve a string NULL completed a response, I'm getting a device on a serial port. The VI is attached and here is a screenshot of the block diagram.

    It works very well with the index value 0, 1, or 2. When index is 3, I get the result below.

    Why model matching is not finding the null character?

    Thank you!

    I'm Datura, need to remove the cable from the shift control for the control of the match pattern.

    DUH!

  • Bug? : layers.add () does not work correctly when called from the menu (ID/CS6/Win7)

    Hello Devs,

    I am facing a mysterious problem with the layers.add () method.

    I am trying to create n number of layers for my document. So I decided to create a menu for that.

    I created two scripts

    1. for creating menu & menu action.

    2. real script that creates n number of layers.

    When I run the script #2 of ESTK directly it works fine.

    Now when I try to call the same script in the Menu it does work very well. Only the last layer is created.

    Script 1: LayerPopupMenuAction

    #target indesign
    #targetengine createLayerset
    var layerTemplateScript = File(File(getActiveScriptPath()).parent.fsName+"/IntializeTemplate.jsx"); 
    
    var initTemplateHandler = {
        'beforeDisplay' : function(ev)
            {
                ev.target.enabled = (app.documents.length>0);
            },
        'onInvoke' : function()
            {
                app.doScript(layerTemplateScript, ScriptLanguage.JAVASCRIPT, undefined, UndoModes.FAST_ENTIRE_SCRIPT, "Initialize Script");
            }
        };
    
    var layerMenuAction = app.scriptMenuActions.add("&Create Layer Set");
    
    for(var init_ev in initTemplateHandler) {
        layerMenuAction.eventListeners.add(init_ev, initTemplateHandler[init_ev]);
        }
    
    var refMenuItem = app.menus.item("$ID/LayerPanelPopup");
    refMenuItem.menuItems.add(layerMenuAction, LocationOptions.AFTER, refMenuItem.menuItems.item(2));
    
    function getActiveScriptPath() {
        // This function returns the path to the active script, even when running from ESTK
        try { 
            return app.activeScript; 
        } catch(e) { 
            return e.fileName; 
        }
    }
    

    Script 2: IntializeTemplate

    #target indesign
    if (app.documents.length == 0){
        alert("Please open a document and try again", "Document Error", true);
        exit();
        }
    
    var templateDoc = app.activeDocument;
    
    var layerNameArray = ["Fixed_Static_Assets", "Absolute_User_Assets", "Relative_User_Assets"];
    CreateLayers(layerNameArray);
    
    alert("Initialization Successful");
    
    
    //--------------------------------FUNCTIONS ARE DEFINED HERE--------------------------------
    function CreateLayers(LayerNameList){
        var layerListLength = LayerNameList.length;
        var layerObject;
        for (var ln=0; ln<layerListLength; ln++){
            layerObject = templateDoc.layers.itemByName(LayerNameList[ln]);
            if (layerObject.isValid==false){
                layerObject = templateDoc.layers.add({name:LayerNameList[ln]});
                //$.writeln('Layer Creation: ' + layerObject.isValid + ' for '+layerObject.name);
                }
            }
        //Merger Default Layer with the bottom layer:
        var defaultLayer = templateDoc.layers.itemByName("Layer 1");
        if(defaultLayer.isValid==true){
            //$.writeln('Default is Valid and will be merged with top most layer');
            layerObject.merge([defaultLayer]);
            }
        }
    

    Any help / advice on this topic will be useful.

    @Marijan Tompa [tomaxxi]: I googled for the solution and I noticed that you have already worked on the same type of script. Please help me if you can.

    Thank you

    Green4ever

    Hi Green4ever,

    I think at a first sight, UndoModes.FAST_ENTIRE_SCRIPT , who, as you may know, can scramble deeply the script steps, especially when one ... try statement catch is used.

    Try to replace FAST_ENTIRE_SCRIPT by ENTIRE_SCRIPT and tell us.

    @+

    Marc

  • Toshiba CANVIO 1 TB, its does not work correctly when I connected to my PC

    Eevery time I connect my HARD drive to the computer, not finished loading files and gets stuck. I was recommended to replace the cable, but I did, and he still has the same error.

    It's been a while since you posted this message in this forum.
    Have you ever mange to get access to the HARD drive?

    In my opinion the question looks a bit like a HARD drive hardware problem.
    I put t know if the data on that HARD disk is important to you, but if you have a backup of data, you can try to format the EXTERNAL HARD drive just to check if it would help to get the drive HARD working again.

  • Key board does not work correctly when you type. Can not get the system restore to work properly, either

    Tried to run the system restore, but it will not restore.

    Hey AnnEdelstein,

    Because you can't get the system restore to work, perform a clean boot on your Windows XP system. The guide to that is here. Which follow, and then try again to Outlook. If it works to the minimum, then boot in the boot, analyse the whole system with your Antivirus and other security you have.
    Also make sure you have the drivers for the keyboard. Search for the manufacturing of the keyboard, and they should have the drivers on their support site. I hope this has been helpful!
  • Apple TV 4 does not work correctly when it is connected to both wifi and Bluetooth speakers. Screen blurry when you try to play HD video Apple TV connection to Bluetooth speakers

    WiFi falls trying to read videos HD of Apple TV 4 after the connection to Bluetooth speakers.

    25Mbps of wifi speed. Router is placed very close to Apple TV box.

    signal weakens and show, stuck between the two

    Likely interference, try Ethernet connection

  • Control Panel does not work correctly.

    original title: salvation

    Hello

    My Control Panel in windows vista 64 bit does not work correctly, when I want to use functions such as catering or to uninstall a program or changing the State of account it just an error message like missing a file on each of them has its own error message, is it possible that I can restore the control panel to its previous state I tried windows restore, but it doesn't work.

    Hello

    Run the sfc/scannow command.

    http://support.Microsoft.com/kb/929833

    Use the (SFC.exe) System File Checker tool to determine which file is causing the problem and then replace the file. To do this, follow these steps:

    1. Open an elevated command prompt. To do this, click Start, click principally madeprograms,Accessories, right-clickguest, and then clickrun as administrator. If you are prompted for an administrator password or a confirmation, type the password, or clickallow.
    2. Type the following command and press ENTER:
      sfc/scannow

      The sfc/scannow command analyzes all protected system files and replaces incorrect versions with appropriate Microsoft versions

    If SFC detects the main problems it can't fix you may need to borrow a Microsoft dvd vista not an acer, HP etc. recovery disk and do a repair installation

    read the below tutorial on how to perform a repair installation

    http://www.Vistax64.com/tutorials/88236-repair-install-Vista.html

  • I have an Apple computer, use the browsers Firefox and Safari, use Comcast for my email. Lately, when the Firefox, my email does not work correctly. Why?

    I have an Apple computer, use the browsers Safari and Firefox. I use Apple mail and Comcast to my email. Lately, in the case of Firefox, my email does not work correctly. I get a message "your server license has expired. While usually, I can access my emails, I can't delete the unwanted emails. This problem will not occur when I use Safari and Apple mail. Is this a problem of Firefox or Comcast? Do you know what license is expired?

    Hello

    Many issues of the site can be caused by corrupted cookies or cache. To try to solve these problems, the first step is to clear cookies and cache.
    Note: This will be you temporarily disconnect all sites, you're connected to.
    To clear the cache and cookies to do the following:

    1. Go to Firefox > history > clear recent history or (if no Firefox button is displayed) go to tools > clear recent history.
    2. Under "Time range to clear", select "all".
    3. Now, click the arrow next to details to toggle the active details list.
    4. In the list of details, see the Cache and Cookies and uncheck everything.
    5. Now click the clear now button.

    More information can be found in article to clear your cache, history, and other personal information in Firefox .

    This solve your problems? Please report to us!

    Thank you.

  • Re: Satellite Pro L500-1VX-accessibility (FN key) does not work correctly

    I need your help to fix this problem on my Accessibility button does not work, when I press the FN key to turn my wireless on it does not work.
    When I go to program files > Toshiba > utilities > TACSPROP.exe a warning alert telling me it does not allow in this operating system.
    And for your information I have Windows 7 32 bit.

    If you are very popular to tell me what to do with this problem.

    Hello

    All the stuff for Win7 32 bit, you can find on the Toshiba support page in the download section > http://eu.computers.toshiba-europe.com > support & downloads.

    As Akuma written already install the most recent value package and check the functionality of the FN keys.
    Wireless network card is installed correctly?

  • I am now on iOS 9.2 Game Center still does not work. When I open the app it freezes on a blank page. When I open the Game Center in the settings, it freezes and then crashes. Please Apple can solve this problem of Game Center iOS 9.2.

    I am on iOS 9.2 and Game Center still does not work. When I open the app it freezes on a blank page. When I open the Game Center in the Middle it hangs just. For this reason, I can't back up my data on my games. Please Apple can solve this problem of iOS 9.2.

    Hello Vaishnav,

    Thank you for using communities of Apple Support.

    I see that you are having problems with Game Center on your iPhone. I have a number of things for you to try.

    First force quit Game Center.

    1. Press the Home button twice quickly. You will see small glimpses of your applications recently used.
    2. Swipe to the left to find the Game Center app to close.
    3. Swipe up on the preview of the Game Center to close.

    Force an app to close the iOS

    If this does not work, then the next step would be a restoration. I recommend restore like new, without backup restore and everything first. If it works there, you can restore the backup.

    Use iTunes to restore your iPhone, iPad or iPod to factory settings

    Best regards.

  • Satellite M30-113 does not work well when I use FreeBSD 6.2

    Hello

    My M30-113 does not work well when I use FreeBSD 6, 2-RELEASE http://www.FreeBSD.Org/

    I was told that Toshiba has release a new bios to correct the problem of cooling, because it does not allow me to fan passive cooling in FreeBSD.

    So could we have a new bios to solve this issue?

    Arabian salvation

    I am sure that mobile industry is focused on Windows operating system and hardware architecture together and preinstalled software are adapted and also configured to run well and stable.

    This operating system is supported and if something should be better portable manufacturers offer different updates to the BIOS. Of course, you can preinstall what you want but you can not expect support for everything you can find on the market and because of this I n t believe that you won't find any update especially for FreeBSD 6.2 - RELEASE BIOS.

  • Config Free - Connectivity Doctor does not work correctly

    Hi all

    yesterday, I've updated the driver for my WIFI, with the driver found on the Toshiba support page. After installation, the Config Free utility does not work correctly. Indeed, the diagnosis of the doctor of connectivity us window briefly, just to replace it with the classic error message: cfmain.exe has encountered a problem and needs to close...

    The details are
    AppName: cfmain.exe AppVer: 5.0.0.119 ModName: venapi.dll
    ModVer: 5.0.0.3 Offset: 000034df

    Thank you very much for your support

    I found this:
    cfmain.exe - this is a component of the Toshiba network device. Network device Toshiba is Toshiba network device selector. For starters, this application requires a common Module of Toshiba ACPI and hotkey wireless.

    Well, because of this description that I recommend you to reinstall the common modules and wireless keyboard shortcut utility

  • Signature "by the account" does not work correctly

    Features: iPhone 6 iOS available 9.2 41.1 GB

    I have configured and you can send from multiple e-mail accounts (6 including iCloud) on my iPhone.

    My problem: the signature "by the account" feature does not work correctly. I enable this feature, create distinct signatures, choose to send other than the default e-mail account. However, the default signature in the message, followed two copies of the signature on behalf of which I want to send the message below. I deleted and readded to each email account and of the signature, but find the same result.

    Having this problem as well, or very close.  I can't get the HTML signatures to work (IE, appear) when

    I sent mail from an account that has a.

    This question to a while back in older iOS and has been fixed, now it's back...

    I often crash parameters when you try to paste a HTML signature in place and when

    I have a y arrive, it does not show in the email project.  When I add a text character

    at the signing, he sometimes shows up.  Very erratic...

Maybe you are looking for

  • Re: Screen full of fingerprints on laptop brand new

    Hello I bought a new laptop in a shop well known when I opened the screen was full of fingerprints, so I exchanged it for the same model and 1 was the same and it looked like it had been wiped down with a damp cloth and 1 other had this problem is th

  • Satellite Pro A10 (PSA15E) - no card after replacing HARD drive wireless network

    Hello just a spare hard drive was fitted by an expert, all drivers and update of the BIOS installed on the site of Toshiba, but my wireless network card does not work.When I try to connect via a router it says that the card is disconnected? I went in

  • Advice from rMBP to Mac Mini

    Hello Looking for reviews, I hope other people who have some experience. I will try to keep things simple. I am a photographer who bought a 2104 13.3 "rMBP refurbished Apple 5 months ago. It was a nice affair. Although I realize that I'm not happy wi

  • LAPTOP HP PAVILION SERIES: TURN ON THE PASSWORD

    AFTER THE 3RD TRY TO ENTER A POWER ON PASSWORD, THE SCREEN DISPLAYS SYSTEM DISANLED (85906025) WE DO NOT KNOW THE PASSWORD ENTERED BY A CHILD ACCIDENTALLY. PLEASE GIVE US THE POWER RESET YOU PASSWORD.

  • Grand Wega kdf-50e2000 has pink and green bars in the upper part of the screen

    Does anyone know why my projection LCD KDF-50E2000 has pink and green horizontal bars at the top of the screen? I replaced the bulb and now I have pink and green bars. In fact before changing the bulb, there was just a pink bar at the top of the scre