During asynchronous method call, Firefox doesn't allow to navigate elsewhere

Hi,
I am using Jdeveloper 11.1.1.5.0 and my application is based on ADF and Webcenter Portal.
Here is the scenario: My application has a home page which contains different regions. The page loads all the regions instead of one which is running with separate thread and taking long time. Now during the execution of long running task, if user wants to navigate to another page by clicking on a command link or goLink then it works on google chrome and IE but doesn't work with Firefox. In case of firefox once it seems to redirecting to desired url for a while but then it redirects back to same page. Surprisingly, It works perfectly once the execution of long running task is finished. So it seems problem with firefox's handling of asynchronous requests. I tried FacesContext.getCurrentInstance().getExternalContext().redirect(url) and setting the URL as destination for goLink to navigate. Below is the code for goLink and commandLink:
<af:goLink id="pt_g22" text="#{node.title}" destination="#{contextroot}/faces/test.jsp" styleClass="#{node.selected ? 'ln_active' : ''}"/>
<af:commandLink id="pt_c21" text="#{node.title}" action="pprnav" clientComponent="#{node.attributes['Target'] == '_popup' ? true : false}" styleClass="#{node.selected ? 'ln_active' : ''}" actionListener="#{MyBean.navigateToHere}" partialSubmit="true">
in commandLink's actionListener method i am just having : FacesContext.getCurrentInstance().getExternalContext().redirect(url)
Also, if i use navigationContext.processAction and action="pprnav" with commandLink then it works in FF as well but i want full page redirection instead of PPR
Any help or suggestion is appreciated.
Many Thanks,
Jeetu

Jose, your fix to problem 1 allows all access from the outside, assuming you applied the extended list to the outside interface.  Try to be more restrictive than an '...ip any any' rule for outside_in connections.  For instance, this is what I have for incoming VOIP (access list and nat rules):
access list rule:
access-list outside_access_in extended permit udp any object server range 9000 9049 log errors
nat rule:
nat (inside,outside) source static server interface service voip-range voip-range
- 'server' is a network object *
- 'voip-range' is a service group range
I'd assume you can do something similar here in combination with my earlier comment:
access-list incoming extended permit tcp any any eq 5900
Can you explain your forwarding methodology a little more?  I'm by no means an expert on forwarding, but the way I read what you're trying to do is that you have an inbound VNC request coming in on 5900 and you want the firewall to figure out which host the request should go to.  Or is it vice-versa, the inbound VNC request can be on port 6001-6004 ?

Similar Messages

  • Making an asynchronous method call in Oracle Weblogic Workshop 10.3.2

    Hi,
    Need to make a non blocking asynchronous method call from my application.
    There is an http url which i need to call but in asynchronous way.
    example:
    URL myPage = new URL("http://www.mypage.com/");
    URLConnection yc = myPage.openConnection();
    but the method to be invoked in non blocking or asynchronous way, so that the thread doesn't get stuck when the server of the target url ( http://www.mypage.com) is not working.
    regards
    pramod
    mumbai/India.

    Hi Pramod,
    Well in generally all the Synchronous call only if you want to achieve asynchronous method calls use Web-services method call.
    Here is link which help you to achieve your task.
    http://docs.oracle.com/cd/E11035_01/wls100/webserv_adv/asynch.html
    Regards,
    kal

  • Type conflict during dynamic method call.

    While executing the following program I get the error "Type conflict during dynamic method call.":
    DATA: container_r  TYPE REF TO object,
          grid_r       TYPE REF TO object,
          itab_saplane TYPE TABLE OF saplane.
    * IMPORTANT NOTE: class names must be in UPPER CASE
    DATA: str_cnt TYPE seoclsname VALUE 'CL_GUI_CUSTOM_CONTAINER',
          str_gui TYPE seoclsname VALUE 'CL_GUI_ALV_GRID',
          meth_name TYPE STRING VALUE 'SET_TABLE_FOR_FIRST_DISPLAY'.
    TYPE-POOLS abap.
    DATA: ptab    TYPE abap_parmbind_tab,
          wa_ptab LIKE LINE OF ptab,
          ref     TYPE REF TO data.
    CREATE OBJECT container_r TYPE (str_cnt)
      EXPORTING container_name = 'CUSTOM_CONTROL1'. " Name of the custom control area (UC!)
    * Construct parameter itab
    GET REFERENCE OF container_r INTO ref.
    wa_ptab-name  = 'I_PARENT'.  " Must be upper-case
    wa_ptab-value = ref.
    INSERT wa_ptab INTO TABLE ptab.
    *   EXPORTING i_parent = container_r.
    CREATE OBJECT grid_r TYPE (str_gui)
      PARAMETER-TABLE ptab.
    SELECT * FROM saplane INTO CORRESPONDING FIELDS OF TABLE itab_saplane.
    * Cannot call set_table_for_first_display directly...
    CALL METHOD grid_r->(meth_name)
      EXPORTING I_STRUCTURE_NAME = 'SAPLANE'  " Type of the rows in the internal table  (UC!)
      CHANGING  IT_OUTTAB = itab_saplane.     " The internal table itself
    CALL SCREEN 100.
    Any help would be appreciated!

    Hi ...
    Apologies ... for confusion ... actually both are required ...
    the type 'E' as well as CL_GUI_CONTAINER.
    The below code worked for me ...
    check out how I cast it to the parent class type ...
      DATA : lv_container   TYPE seoclsname VALUE 'CL_GUI_CUSTOM_CONTAINER',
             lv_control     TYPE seoclsname VALUE 'CL_GUI_ALV_GRID',
             lv_method      TYPE string VALUE 'SET_TABLE_FOR_FIRST_DISPLAY',
             lt_par_tab     TYPE abap_parmbind_tab,
             ls_param       LIKE LINE OF lt_par_tab,
             lref_cont      TYPE REF TO cl_gui_container,
             lv_data        TYPE REF TO data.
    CREATE OBJECT lref_container
          TYPE
            (lv_container)
          EXPORTING
            container_name = 'ALV_AREA'.
        ls_param-name = 'I_PARENT'.
        ls_param-kind = 'E'.
        lref_cont ?= lref_container.
        GET REFERENCE OF lref_cont INTO lv_data.
        ls_param-value = lv_data.
        INSERT ls_param INTO TABLE lt_par_tab.
    **  Now create ALV Control.
        CREATE OBJECT lref_alv_ctrl
          TYPE
            (lv_control)
          PARAMETER-TABLE
            lt_par_tab.
    **  Set table for 1st display
        DATA : lv.
        lv = lref_alv_ctrl->mc_fc_print.
        CALL METHOD lref_alv_ctrl->(lv_method)
          EXPORTING
            i_structure_name = 'T001'
          CHANGING
            it_outtab        = lt_company.
    Cheers
    Edited by: Varun Verma on Aug 12, 2008 4:19 PM

  • "asynchronous method call"

    Dear all,
    I am writing a program for which I would like to enable parallel processing. As the programm is designed in classes and methods, I thought it would be nice and consistent to use methods calls instead of asynchronous function calls. I found a class for remote method calls but this does not appear asynchronous.
    Any idea if it is possible?
    Thanks
    Christian

    Hi,
    Perhaps a way to accomplish this is to create an OO transaction in SE93. Take a look at http://help.sap.com/saphelp_nw04/helpdata/en/a8/485d60cf4611d4b2e90050dadfb92b/frameset.htm for further details.
    You can then issue the statement CALL TRANSACTION <tcode> UPDATE 'A' (for asynchronous), or as suggested in one of previous discussions, use
    CALL FUNCTION 'ABAP4_CALL_TRANSACTION' STARTING NEW TASK 'TEST'
      DESTINATION 'NONE'
      EXPORTING
          TCODE = <your_oo_tcode>
      EXCEPTIONS
        COMMUNICATION_FAILURE = 1 MESSAGE MSG_TEXT
        SYSTEM_FAILURE        = 2 MESSAGE MSG_TEXT.
    You can also look at ABAP Object Services, especially Transaction Service, at http://help.sap.com/saphelp_nw04/helpdata/en/ab/9d0a3ad259cd58e10000000a11402f/frameset.htm.
    Hope this helps.

  • How to refresh table column during button method call ?

    Hi,
    I have one table on my screen in which there are 5 rows.
    One of the column of this table is Status with initial value Not Completed.
    Now when I press submit button my 5 processes are started in for loop one by one.
    After completion of 1st process, I am updating 1st row status with Completed and vise a versa.
    But change is reflected on table after by method call over means if my submit action take 5 minutes to finish all 5 process than after 5 minutes, I can see all rows with status Completed while I want it to reflect as soon as I set its status.
    How can I do this ?
    regards,
    devang

    .. or break up the method in 5 methods (for each process a separate method) and with you button you call the first method. then when at the end of the method you call a javascript which updates the first column to completed and the js calls the second method (with queue of client event and serverListener) ... and so on and so on.
    Really not so cool idea but I think it's achievable:)

  • Facebook Zuma Blitz. The NEW Firefox doesn't allow gameplay

    Made sure everything is allowed for the game to load. It worked BEFORE I upgraded to the Firefox 8.0. Now it doesn't load completely for game play.

    You can uninstall (remove) the Java Console extensions and disable the Java Quick Starter extension, you do not need them to run Java applets.
    See http://kb.mozillazine.org/Java#Multiple_Java_Console_extensions
    See also "Hang at exit":
    * http://kb.mozillazine.org/Firefox_hangs
    * [[Firefox hangs]]

  • My Firefox doesn't allow me to choose to save passwords

    When I go into the "privacy" part of "Preferences", the check box and script which allows me to choose to save passwords is only in faint script and so is not functional. I am up to date with software downloads, at 33.02 and am using an Apple Mac of 2007 vintage.

    hello nickfork, firefox won't save your passwords when you've set it up to run in permanent private browsing mode ("never remember history" in the options > privacy panel).
    [[Settings for privacy, browsing history and do-not-track]]

  • Ignoring Optional parameter during OLE method calling

    Hi guys,
    I got a problem:
    Application.Workbooks.OpenXML(Filename, Stylesheets, LoadOption) here's a defination from Microsoft help.
    Stylesheets and LoadOption are optional parameters.
    ABAP calling:
      CALL METHOD OF workbooks 'OpenXML'
        EXPORTING #1 = filename
                           #2 = '3'
                           #3 = 2 .
    How can ignore parameter #2(Stylesheets) in the calling statement? I found no documentation about  calling functions ignoring some optional parameters. Normaly there's posibility to explicitely define passing parameter, for example:
        Application.Workbooks.OpenXML _
            Filename:="customers.xml", _
            LoadOption:=xlXmlLoadImportToList
    With kind regards
    Long.

    UP

  • Heavy load during web method call

    Hello everyone!
    I have a web service with couple web methods. Those methods are calling quite often (average is about one call of each method per 10 seconds) by .NET client application. After few days of working I checked in JBoss Web Console statistics of calling of those methods. One of them has got average time of call equals about *300 milliseconds* but maximum call time is over *70 minutes*! I also noticed that when call of this method is very long my CPU is almost 100% load for all call time.
    Maybe someone has got similar problem? My quest is that maybe garbage collector turn on when call was so long.
    I'm using:
    1) Java 1.5_0_15
    2) JBoss 4.2.3
    3) -XX:+UseConcMarkSweepGC -XX:+UseParNewGC options for garbage colletor
    Regards,
    Piter

    This web method is getting some data from database. Each of call gets from database more or less same amount of data and made some basic processing on this data. So each call should last more or less same long. This 70 minute call is the maximum. Couple times in logs I get call which last couple minutes (3-4 minutes).

  • Can't click on certain options like log-out, that are usually located at the top of a website. They are frozen, and firefox doesn't allow me to click on them. It works fine with other browsers.

    For example, if when I use hotmail, I cannot click on the options that appear in the upper portion of the page. Example, "menu" "help" "log-out". Same thing happens to facebook, so i can't see my notifications, or log out. When i try to click on them, nothing happens. I tried using facebook and hotmail with other browsers, and it works fine. I don't understand why i can't click on certain things with firefox. I haven't recently made any changes to firefox, and it is the lastest version. I also tried uninstalling, and installing again, but it didn't fix the problem.
    '''If I run firefox in safe mode, with all the add-ons turned of there are no problems. '''

    laderamacguy took a look at it and added a black shape over the tab. he suggested i use a different template next time, such as the black template.

  • I'm using Firefox Ver 3.6.10 with updated Java console ver 6.0.22. After the updating, firefox doesn't allow pop up window anymore. Please advise.

    I also face this problem in previous Firefox version but after updated to newer release, the problem disappeared until new Java console updates again.
    The Pop up does not come out at all.
    I have tried restart Firefox but when restarting, a message pop up and tell me that another Firefox is running and after I check into my Task Manager, the Task Manager shows that there is another Firefox is still running.

    You can uninstall (remove) the Java Console extensions and disable the Java Quick Starter extension, you do not need them to run Java applets.
    See http://kb.mozillazine.org/Java#Multiple_Java_Console_extensions
    See also "Hang at exit":
    * http://kb.mozillazine.org/Firefox_hangs
    * [[Firefox hangs]]

  • Firefox doesn't allow me to email a webpage by right-clicking anymore - Why?

    I used to be able to right-click on a webpage, and email the page. Then, something changed, and when I right-clicked, that option was not immediately available. Instead, I had to right-click, hover over a main category that then offered me two options, once of which was emailing the webpage through Yahoo. When I did that, the email would fill with the link, but a lot of junk about Yahoo, too.
    Now, when I right-click just two weeks later, option is completely gone. So, now, I cannot email a webpage just be right-clicking. I have to copy the link, open an email, and paste the link. What happened, and can I get back?

    hello cera78, mozilla does clean up its user interface from time to time. user interface studies have shown that this context menu entry is only used by <1% of the users.
    if you've liked the functionality you could use an addon to recover it: https://addons.mozilla.org/firefox/addon/send-link-in-context-menu/

  • Logon screen doesn't allow to navigate b/w fields.

    Hi,
    I have deployed successfully forms on web using Forms6.0 and
    OAS4.0.7 with 8i as the back-end.
    I have a strange problem with the Logon Screen. When I request
    for the URL it loads the applet and displays the forms Logon
    screen, here, I can't navigate between user, password and connect
    fields using tab.
    Also, the logon screen doesn't centre when request for the
    first time .. coz it depends upon resolution. Is there anyway to
    set autom resizing parameter? which resize the applet depending
    upon the resolution of the client system.
    If anybody has figured out how to make this navigation please let
    me know.
    Thanks,
    Raj
    null

    Hi,
    Try install patch3 for Developer6.
    Ruy Chicaco.
    Raj (guest) wrote:
    : Hi,
    : I have deployed successfully forms on web using Forms6.0 and
    : OAS4.0.7 with 8i as the back-end.
    : I have a strange problem with the Logon Screen. When I
    request
    : for the URL it loads the applet and displays the forms Logon
    : screen, here, I can't navigate between user, password and
    connect
    : fields using tab.
    : Also, the logon screen doesn't centre when request for the
    : first time .. coz it depends upon resolution. Is there anyway
    to
    : set autom resizing parameter? which resize the applet depending
    : upon the resolution of the client system.
    : If anybody has figured out how to make this navigation please
    let
    : me know.
    : Thanks,
    : Raj
    null

  • Asynchronous function calls in Java?

    I need to write a class whose functions i could call asynchronously. How do we do this? Is this part of the Java API or do i need something else?
    Thank you in advance.

    I am actually very surprised that this is not part of
    the regular API. I always thought this would be built
    into the languageLet's see...
    C, Objective-C, C++, C#, Perl, Basic, Pascal, Fortran, Cobol, Forth, Algol, Snobol, Lisp, Smalltalk, SQL, JavaScript, VBScript, PerlScript, Plato(sp?), a number of script languages on different OSes and a number of mini-languages as well...
    And not a single one that provides anything for doing asynchronous method calls.
    So it doesn't surprise me that Java doesn't have it.
    Now there might be some experimental language that does this but main stream languages do not.
    Of course most of those languages do provide a way to start a thread and add processing logic to it. Although some of the ones I used did not even do that.

  • Issue with a method call in a TaskFlow (works 2 times instead of 1)

    Hi guys,
    i'm using jdev11.1.1.1.2.0 and the integrated weblo or remote weblo 10.3.2.0.
    I'm encountering a problem with a method call which is invoked inside a Task Flow.
    Let me tell us the details of :
    I'm invoking a method call which is part of a Task Flow from the backingbean of the view which is placed before the method call in the taskFlow diagram.
    AN outcome String from the method of the backing bean allows to navigate to the method of the Task flow.
    The method call is called and works normally BUT MY PROBLEM IS THAT THE METHOD IS CALLED TWO TIMES SO THE RESULT IS FALSE.
    For information, the second time the method is called it takes care of the result when it is invoked the first time. So its parameters are updated and are a little different from the first time to the second time.
    NB : This method consists of inserting a row in the database. My result is 2 rows inserted instead of one.
    Thanks for help for this strange behaviour

    Hi
    create a temp calculated column
    =IF(ISBLANK([Duration]),"",[Item Start Date]+([Duration])
    and check if it's working OK
    Romeo Donca, Orange Romania (MCSE, MCITP, CCNA) Please Mark As Answer if my post solves your problem or Vote As Helpful if the post has been helpful for you.

Maybe you are looking for

  • How to copy a table with LONG and CLOB datatype over a dblink?

    Hi All, I need to copy a table from an external database into a local one. Note that this table has both LONG and CLOB datatypes included. I have taken 2 approaches to do this: 1. Use the CREATE TABLE AS.... SQL> create table XXXX_TEST as select * fr

  • BPC Mass User Management Tool in BPC 10.0 NW-Version Component Error

    Hi, We have a problem when importing request K900024.RBP and R900024.RBP. We changed the UJ_STRING in "DATA: lv_value TYPE uj_value" in the source code as recommended at BPC Mass User Management Tool in BPC 10.0 NW Unfortunately, when we try to impor

  • Purge command in cronjob not executed?

    Hello dear friends, I need to purge my RAM on my OS X Mavericks Late 2012 iMac every 5 minutes. I used to run this command in cronjob on Mountain Lion and it was working great: */5 * * * * purge It would seem that the cron job is indeed executed ever

  • "Waking out of sleep" mechanical noise made but display still off...

    Generally I put my Mac to sleep. For a while now, I would notice the Mac would make the mechanical "waking out of sleep" noise randomly (middle of the night lets say) as if it were coming out of sleep mode yet the screen wouldn't turn on. Any reason

  • Scenario:SAP-XI-AS/400; Ack not possible and DB insert issues.

    Hi, I have a SAP-XI-AS/400 scenario and I have two issues with the same. 1. When I trigger an IDoc to the XI system, I get ack status(in SXMB_MONI) as: "Acknowledgement not possible". The message is : "Unable to convert the sender service to an ALE l