Can not redirect to other page when using adfc-config.xml in standalone WL

Hi all,
I created a very simple fusion app, only have two jspx pages(view1 view2). I drag these two pages to adfc-config file and created a control flow(adfcView2) between these two pages.
+<?xml version="1.0" encoding="UTF-8" ?>+
+<adfc-config xmlns="http://xmlns.oracle.com/adf/controller" version="1.2">+
+<view id="view1">+
+<page>/view1.jspx</page>+
+</view>+
+<view id="view2">+
+<page>/view2.jspx</page>+
+</view>+
+<control-flow-rule>+
+<from-activity-id>view1</from-activity-id>+
+<control-flow-case>+
+<from-outcome>adfcView2</from-outcome>+
+<to-activity-id>view2</to-activity-id>+
+</control-flow-case>+
+</control-flow-rule>+
+</adfc-config>+
When I run the view1.jspx in the embeded WL, all go well, can navigate from view1 to view2.
But when I created an ear and deployed this ear to a standalone WL, view1 can be displayed successfully, but when I clicked one commandbutton in view1, want to navigator to view2, the page can not be redirected to view2(still show view1.jspx). there is no any error msg in WL Console.
Did I miss anything for deploying a taskflow app? If I change the view controller to faces-config.xml not adfc-config.xml, all work fine.
Any info is appreciated.
Edited by: harth on Oct 25, 2009 7:21 PM

Hi Harth,
I guess you are running the jspx page not view activity, check if your url contains .jspx page at the end. If so, run the url without .jspx page at end(which is view id name)
Eg:
Give http://<Host_Name>:<Port>/<ContextRoot>/faces/view1 instead of http://<Host_Name>:<Port>/<ContextRoot>/faces/view1.jspxSireesha
Edited by: Sireesha Pinninti on Oct 25, 2009 8:00 PM

Similar Messages

  • Toast is not redirecting to specific page when phone is locked in windows phone 8 application

    I subscribed to toast notifications to my windows phone 8 chat application..
    It is redirecting to specific page when i minimize the app and close the app.
    But in following scenario it is not redirecting..
    I opened app and then i locked the phone.
    I got notification then i clicked on toast.
    It is not redirecting to that page i specified.
    When i look into rootframe_navigating event in app.xaml.cs, i found that the notification uri is not coming when we lock the phone when app is opened.
    I hope you understand the scenario.
    Is that bug or should i do anything for redirecting when phone is locked also?
    Waiting for the reply.
    Thanks!
     

    I used fast app resume...
    That is the reason that it is behaving like that..
    I need fast app resume also..
    How can i overcome this?

  • How can I go to other page when click button??

    When I click button, the process of this button is be executed, then current page will go to other page.
    1.I setup this button's Optional URL Redirect to other page, but process is not be executed.
    2.I create a process and a branch(point: on-summit:after process...), not setup button's Optional URL. at this time, the process is be run, but not go to other page.
    please help me if you know it! Thanks a lot!

    Do you need the process to do something or do you just want to forward to the next page. In this case you just need the branch. In the configuration you can choose the button that forwards to the next page.
    Configuration in the branche:
    Target type: Page in Application
    Page: The Page you want to redirect to.
    On clicked Button: The Button you created on the page which redirects to the next page
    Hope i could help.
    Philipp

  • Mozila3.6 not load properly . it is not redirect my action page.When fill my enquiry form.

    Mozila3.6 not load properly . it is not redirect my action page.
    I am submiting my enquiry form that time mozila 3.6 is not work properly .it not load fully .it is not redirect my action page again .it is not load properly .always show done and loding is stope but it is not done .please help.
    This is my web URL and enquiry form: http://kormanmdorg.perfectyourself.net/consultation
    It is work fine in IE and chrome browser .Please check.

    Bad code on the page. The error console reveals:
    Error: document.frm1 is undefined
    Source File: http://kormanmdorg.perfectyourself.net/confirmation.php
    Line: 11

  • Can't navigate to a page when using a class method

    I am working on windows phone 8.1 universal app where I have created a class method and placed it in the NavigationHelper_LoadState method of one of the  pages in my app. My navigation is as follows, I click on a link on my Mainpage and that takes me
    to the page in question,  where I have placed the class method in LoadState.
    The class method checks the authentication state of the user. If the user is not logged in, it is supposed to take him to a separate login page (SHDSignIn from the snippet below).
    The problem I am running into is that when I hit that part of the code in my class method, it just steps through the redirect code but doesn't take me to the login page but rather takes me to the  page that was clicked from mainpage.
    From the troubleshooting I have done up to this point seems like an issue probably because I am calling the method from NavigationHelper_LoadState and the system doesn't like it?? Can someone please explain and also provide a workaround for this?
    Here is my code for the class function:
    public async void SHDAuthState(string errormessage, ProgressBar myprogressbar, TextBlock mytextblock, TextBlock myservernetworkerror)
    //Get the values for the userID and password from the settings....
    string shdLoggedInValue = (string)appRoamingSettings.Values["shdLoggedIn"];
    //If not logged in, redirect to the SHD sign in page...
    if (shdLoggedInValue != "Yes")
    this.rootFrame.Navigate(typeof(SHDSignIn));
    //Getting the cookie if it has expired..
    else
    //Get the cookie value...
    string myCookieValue = (string)appRoamingSettings.Values["MyCookie"];
    //Get the original cookie obtain time....
    long CookieObtainedTimeValue = (long)appRoamingSettings.Values["CookieObtainedTime"];
    //Convertig date/time back to DateTime object....
    origCookieObtainedTime = DateTime.FromBinary(CookieObtainedTimeValue);
    currentDateTime = DateTime.Now;
    //Check to see if cookie has expired....
    cookieTimeElasped = currentDateTime - origCookieObtainedTime;
    cookieTimeElapsedMins = cookieTimeElasped.TotalMinutes;
    // 2 days = 2880 mins but we give a margin of 1 minute
    //Get a new cookie if it has expired and save to settings
    if (cookieTimeElapsedMins >= 2879)
    // Start showing the progress bar...
    mycontrols.progressbarShow(myprogressbar, mytextblock);
    //Get the values for the userID and password from the settings....
    string UserIDValue = (string)appRoamingSettings.Values["UserID"];
    string PasswordValue = (string)appRoamingSettings.Values["Password"];
    //Update the requestData string before sending.....
    requestData = "{" + string.Format(RegisterRequestData, UserIDValue, PasswordValue) + "}";
    string registerResults = await SHDAPI(registerUrl, requestData, errormessage);
    if (registerResults != null)
    // Get the cookie and the time and save it to settings
    var shdCookie = JsonConvert.DeserializeObject<SHDHelper.SHDObject>(registerResults).RegistrationCookie;
    //Save cookie to the app settings
    appRoamingSettings.Values["MyCookie"] = shdCookie;
    // build the UI
    // Stop showing the progress bar...
    mycontrols.progressbarNoShow(myprogressbar, mytextblock);
    else
    // Stop showing the progress bar...
    mycontrols.progressbarNoShow(myprogressbar, mytextblock);
    //Show the error message...
    myservernetworkerror.Visibility = Windows.UI.Xaml.Visibility.Visible;
    Also, I have the rootFrame defined as follows in my class:
    Frame rootFrame = Window.Current.Content as Frame;
    I am calling the class method from the LoadState method as follows
    SHD_helper.SHDAuthState(errorMessage, pgbar, pgText, ServerNetworkError);
    thanks
    mujno

    that is correct.  I wanted to keep the login page redirect inside my class method so that I could do the check every time someone came to pages that require authentication. I wanted it in the LoadState method so I can do a check there, redirect
    them to login page or just get a cookie and then pass that cookie to page to build the UI for the page
    I can do what you are suggesting and have actually tried it but then I have to track which page to take the user to after they log in...
    I have multiple clicks in the appbar  and pages from where the user can come to these authentication-bound pages..
    Suggestions?
    Also, what am I doing wrong in my class method that it doesn't navigate to the login page in the LoadState method?
    Thanks 
    mujno

  • I can't see the other person when using facetime but they can see me just fine, how can i fix this?

    When I use facetime with my fiance on my brand new macbook air she can see me but I can't see her. Please help me remedy this problem, I have verified that I am logged into facetime and connected it with both my ipone5 and my email but haven't seen any changes.  It is a 1 week old macbook air and I'm assuming it has the latest iOS installed but don't know how to check as this is my first Macbook.  Thank you for your help

    Frogmanian wrote:
    It is a 1 week old macbook air and I'm assuming it has the latest iOS installed but don't know how to check as this is my first Macbook.
    MacBook Air does not run iOS.  It runs OS X (pronounced as in OS - ten).  You can check which version you have by clicking the Apple logo in the upper left of the menu bar, then "About This Mac".  The current version is OS X 10.8.4.  If you do not have that version, you can click "Software Update" just below the "About This Mac" entry under the Apple logo.
    Anyway, typically, the reason for the FaceTime behavior you're describing is a less-than-robust internet WiFi connection.

  • I can not see the other end when connecting Skype

    As I connect to Skype ,the other end see and hear me but I cannot see him .

    Frogmanian wrote:
    It is a 1 week old macbook air and I'm assuming it has the latest iOS installed but don't know how to check as this is my first Macbook.
    MacBook Air does not run iOS.  It runs OS X (pronounced as in OS - ten).  You can check which version you have by clicking the Apple logo in the upper left of the menu bar, then "About This Mac".  The current version is OS X 10.8.4.  If you do not have that version, you can click "Software Update" just below the "About This Mac" entry under the Apple logo.
    Anyway, typically, the reason for the FaceTime behavior you're describing is a less-than-robust internet WiFi connection.

  • TS4268 I can't hear the other person when using FaceTime

    I Am able to connect to them but all I hear is a crackling static sound. My iPad is unmuted and the volume is turned up, I am pretty sure it's not my Internet connection because I have never had a laggy connection. Any help would be appreciated.

    Using FaceTime http://support.apple.com/kb/ht4319
    Troubleshooting FaceTime http://support.apple.com/kb/TS3367
    The Complete Guide to FaceTime: Set-up, Use, and Troubleshooting Problems
    http://tinyurl.com/32drz3d
    Troubleshooting FaceTime and iMessage activation
    http://support.apple.com/kb/TS4268
    The other person could have dust in their Mic hole. Use a vacuum to remove the dust.
     Cheers, Tom

  • Why I can not open "open file" dialog when using FileNameGet?

    For my script, I tried to open file using FileNameGet, but it doesn't work,what's wrong with this script?
    Call WndShow("SHELL", "Normal")
    Call  SUDDefLoad("PSA")
    Do
      Call SUDDLGSHOW("Mainmenu")
      If DLGSTATE = "IDOk" Then
        If CUSTLASTCTRL="BtLoad" Then
           Call FileNameGet("DATA", "FileRead")
    '     If DlgState ="IDOk" Then
    '      Call DataLoad(FileDlgName) 
    '     Else DlgState = "IDOk"
    '     End If
        End If
      End If 
    Loop Until DLGSTATE = "IDCancel"
    Call WndShow("SHELL", "Normal")
    Call ApplicationExit()
    Attachments:
    sud.zip ‏3 KB

    @Andreas: You can but beginning with DIAdem 10 it isn't documented anymore -> you don't know in wich future version it is eliminated.
    Matthias
    Matthias Alleweldt
    Project Engineer / Projektingenieur
    Twigeater?  

  • IPhone 4 screen will not work...have to double tap icons to open...can not slide to other pages from main screen...any idea how to fix it? Have done a hard reset to no avail.

    The main screen on my Iphone 4 seems to be locked. I have to double tap icons to open. In the keypad screen I have to double tap numbers to dial. I have tried to reset using both the back button and the power button. Has anyone experienced this or know how to fix it? Any help is appreciated!

    You are a genius!!!! Thanks so very much! It seems my voice over was one...I have no idea how that happened! Thanks again! Have a great day!

  • When atemping to use wifi hotspots FireFox does not redirect to login page.

    when trying to use a hot spot like in a hotel or airport (tmoble for one) will not redirect to login page. Nor can it find the page when I enter the DNS name. If I enter the IP address of the long in page then it can find it but not the subsequent pages that it calls by DNS.
    == URL of affected sites ==
    http://

    I am a Hotspot ISP and I am having this issue with Firefox on Linux devices. We use Colubris MSC-3300 as access controllers tied to a RADIUS server. Have tested all other browsers on Windows and Linux and they seem to work correctly, problem seems to be tied to Firefox on Linux (testing with Ubuntu 11.04). When I open Firefox the redirect to captive portal page works correcty. I enter my username and password and when it tries to send this information back to the controller I get a "connection was interrupted" error. I have gone into Preferences and turned everything off and/or on and still can't get this device to log in.

  • Firefox not displaying buttons and boxes when allow other pages to use their fonts instead of my selection is selected

    Firefox not displaying buttons and boxes when allow other pages to use their fonts instead of my selection is not selected. The irritating thing is that Firefox used to display pages until FF 31. Please fix this
    Thanks
    Randy

    The missing icons are supplied by a font that is downloaded from the server (@font-face) as you can probably see by little boxes that show the hex code of the characters.
    You will have to make sure that you allow pages to choose their own fonts to see such an icon font.
    *Tools > Options > Content : Fonts & Colors > Advanced: [X] "Allow pages to choose their own fonts, instead of my selections above"

  • Drop down menus on iPad, the first selection in the drop down will not load as a selection when using safari, what can I do?

    Drop down menus on iPad, the first selection in the drop down will not load as a selection when using safari, what can I do?  I use this for my mobile, on-site auto repair business and not being able to call up repair and diagnostic info and reference for some cars is troublesome for sure. It works fine on the computer and I have installed a remote desktop app as a workaround but it is unreliable because the desktop is not business dedicated and may be off or in use at the time. So is there a known fix for this?
    Let me paint a more descriptive picture, visualize 4 drop down selection menus, first one is for year, next one is for make, 3rd one is model and the last one is for engine size/type. If I wanted to choose a 2012 vehicle it wont work because it is the top selection on the list. This can be forced by selecting any other year and then coming back to 2012. Ok fine, but then let's say I wanted to choose Acura as the make, well it won't take it because again it's the top selection. Again you work around it be selecting any other make and coming back to Acura. Ok now select the model, same trend follows. But now since most Acura vehicles come with dedicated engines and no optional engines I have only 1 selection in that final drop down menu and it will not take my selection and therefore never let me proceed to the info I need.
    This is also true when ordering parts from my wholesaler's website, they use drop downs and I can only get to that last drop down and then I'm stuck. This is blindingly frustrating, what options do I have. I'm not opposed to any avenue at this point.

    Did you ever figure this out? I bought my iPad last week to use in my business as well. I assume you are trying to use alldata? That is where I noticed this same issue. I had problems with identifix working with safari but downloaded a different browser and that works fine. Alldata does not work with either browser. The main difference is that on identifix if there is only one engine selection, it automatically selects the only option and continues to the home page. With alldata you have to make the selection manually even if there is only one option. Honestly if I can't get this to work I am going to return the iPad as it looses a significant amount of usefulness to men

  • How can I force mount a dvd that isn't even seen by Disk Utility? I can see it on the Mac when using my Windows 7 partition via Boot Camp, but not in Lion, which is how I would rather be running.

    How can I force mount a dvd that isn't even seen by Disk Utility? I can see it on the Mac when using my Windows 7 partition via Boot Camp, but not in Lion, which is how I would rather be running.

    Well if there is a EFI block, then running a program in OS X isn't going to do a lick of good.
    After all EFI was designed for Trusted Computing and Digital Rights Management, to act between the OS and hardware, can read drives, contact the Internet and everything.
    Windows doesn't use EFI, will have UEFI in Windows 8 though.

  • When ı update firefox 7 to 8 I can not enter the facebook site, when I try it, it says Uyumsuz bir internet tarayıcısı kullanıyorsun. ( it means in english : you are using an unsuportted web browser) how I can solve this problem?

    when ı update firefox 7 to 8 I can not enter the facebook site, when I try it, it says Uyumsuz bir internet tarayıcısı kullanıyorsun. ( it means in english : you are using an unsuportted web browser) how I can solve this problem?

    Step by step, how did you arrive at seeing this agreement?

Maybe you are looking for

  • Help in designing a Query

    Hello Everyone,    I want you help in designing a query that involve OACT,OJDT,JDT1,OBGT and BGT1 Actually I want a report that shows accounts Budget quarterly and its expenditure quarterly as well.. Like shown below Account Name Budget from Jan to M

  • Regarding outbound idoc into xml conversion

    Hello everyone can anyone let me kno all the procedure to make our idoc outbound and convert it into XML file,  is there any standard program or any other method if i am using we21 then what thing i have to do. is it neccesary for us to go to tc we60

  • Why can't I change the cost center in PA0001 using PA30?

    Hi Gurus, Please help.  I cannot seem to find the means to enter the cost center in the organizational assignment infotype PA0001.  It is showing as greyed out/display only.  As background, these personnel files were setup for time entry.  Other info

  • What is error 403 and how do I fix it

    hi tried to add an email so i can scan to my email  i hit something wrong now I cant scan

  • After opening up a second library my original content is missing.

    So my husband and my 10 year old daughter both have iPod nanos. My ultimate dilema is creating two files/playlits/libraries (whatever works) so that their content does not get transferred to the others iPod by accident etc. So I tried the multiple li