Weird Redirection Problem

I've written a custom tag that manages its own state in the user's session. It is an interactive tag; if the user clicks on a tag element then a request is made to the same page with some special request parameters. These parameters are read by the tag handler and are used to update the tag's state in the session. The tag component then reads its state from the session and renders itself to pageContext.getOut( ).
This works great with one user. However, when there are multiple users I will occasionally be redirected to the JSP the other user is viewing at the time. I don't know how this could be happening other than the Request or PageContext objects being reused for multiple users. The tag builds the postback URL from pageContext.getRequestURI( ), so the only way the URI could be wrong is if pageContext was the one from the other user.
This problem has been duplicated in Tomcat 4.1 and Netscape Enterprise Server 6.1.
Has anyone else seen this happen? Any suggestions on troubleshooting it?
Thanks,
- Jesse

Different client PCs hitting the same webserver. I've tried it where both PCs use the same login credentials and where both PCs use different login credentials with the same results. Timing seems to be a factor; it happens pretty infrequently unless we're both clicking like mad men.
Another note: in my tests the other person has always been accessing a different portion of the site that does not use these custom tags. The custom tags are used on one and only one page (that I test) and sometimes I get redirected to other portions of the site (where the other user happens to be at the time).
It's really strange...it's like the same PageContext instance is being used and is simply refreshed with new values every time a new request comes in. I say that because the custom tag components (which are created by the tag handler and do not themselves extend TagSupport) store a reference to the PageContext in the tag handler class and use that to generate the links. Since I'm not updating this value (the components reside in the session) one can only assume that the same PageContext instance is being used elsewhere to service other requests.
That might have been confusing...so let me clarify with this. TreeTag is the tag handler that extends BodyTagSupport. Tree is a component class that I use to store state in the session. TreeTag has a field called "pageContext" that (supposedly) contains the PageContext for the request. If a Tree doesn't exist in the session, one is created and given a reference to the value of pageContext. After that, the Tree in the session is used, so it should be the same PageContext instance.
Hope I didn't muddle that too much...
- Jesse

Similar Messages

  • Weird internet problem / ssl connection error, site loads in safari not in firefox or other way around

    I really can't figure out this problem. Search the internet tried all kinds of things, nothing help so far.
    I have a Macbook Pro (Lion originally installed) running on Mavericks (all latest updates). SSD installed and the DVD tray is replaced by the original HDD.
    The laptop wasn't running very smooth anymore so decided to give it a fresh Mavericks install (even though I know it's not really necessary for mac, it helped, everything is much faster except a weird internet problem came up).
    After freshly installing Mavericks I couldn't get into my google account anymore, just wouldn't load. Tried Safari (use this normally) and Firefox and Chrome, this last was gave a SSL connection error, both Safari and FF said the website couldn't be loaded because the server didn't respond. For Gmail I use Mailplane which is just stuck on a white page. I tried repairing the keychain, repaired disk and disk permissions, cleaned browsers, turned off firewall and antivirus (Shopos) started in safe mode, checked time settings which were all good. Nothing of this helped. I even ended up creating a usb bootdisk for Mavericks, formatted the disk and reinstalled from the start just Mavericks and nothing else, started Safari, still the same problem. As even this didn't help I figured it's not worth reinstalling all software so put back my backup.
    Now I ended up somehow only being able to use Gmail normally in Firefox, Chrome still gives SSL error and Safari can load the inbox, but I can't open any messages. I get the error there is a problem with the connection. If I try in Basic HTML mode it surprisingly does work.
    You would say, just use Firefox, finished...but the thing is that sometimes random websites won't load in Firefox, when I load the same site in Safari it works perfectly.
    O yes, I also tried the connect to my iPhone and use the Cellular data network, then it's no problem using Gmail in Safari normally. You would say it's a router problem, but I have another Macbook Pro (just one model later running Mountain Lion) this one works perfectly with every browser. Also my iPhone does everyting logged into the WiFi network.
    You can understand I really have no clue what's going on here, I don't see any logic. I can only think of a hardware problem in my Macbook, but don't see how that could cause these problems.
    I hope someone is ably to help me ?

    Please read this whole message before doing anything.
    This procedure is a test, not a solution. Don’t be disappointed when you find that nothing has changed after you complete it.
    Step 1
    The purpose of this step is to determine whether the problem is localized to your user account.
    Enable guest logins* and log in as Guest. Don't use the Safari-only “Guest User” login created by “Find My Mac.”
    While logged in as Guest, you won’t have access to any of your documents or settings. Applications will behave as if you were running them for the first time. Don’t be alarmed by this behavior; it’s normal. If you need any passwords or other personal data in order to complete the test, memorize, print, or write them down before you begin.
    Test while logged in as Guest. Same problem?
    After testing, log out of the guest account and, in your own account, disable it if you wish. Any files you created in the guest account will be deleted automatically when you log out of it.
    *Note: If you’ve activated “Find My Mac” or FileVault, then you can’t enable the Guest account. The “Guest User” login created by “Find My Mac” is not the same. Create a new account in which to test, and delete it, including its home folder, after testing.
    Step 2
    The purpose of this step is to determine whether the problem is caused by third-party system modifications that load automatically at startup or login, by a peripheral device, by a font conflict, or by corruption of the file system or of certain system caches.
    Please take this step regardless of the results of Step 1.
    Disconnect all wired peripherals except those needed for the test, and remove all aftermarket expansion cards, if applicable. Start up in safe mode and log in to the account with the problem. You must hold down the shift key twice: once when you turn on the computer, and again when you log in.
    Note: If FileVault is enabled, or if a firmware password is set, or if the startup volume is a software RAID, you can’t do this. Ask for further instructions.
    Safe mode is much slower to start up and run than normal, with limited graphics performance, and some things won’t work at all, including sound output and Wi-Fi on certain models. The next normal startup may also be somewhat slow.
    The login screen appears even if you usually log in automatically. You must know your login password in order to log in. If you’ve forgotten the password, you will need to reset it before you begin.
    Test while in safe mode. Same problem?
    After testing, restart as usual (not in safe mode) and verify that you still have the problem. Post the results of Steps 1 and 2.

  • Dynamic form "Cancel" redirect  problem in frames - bugfix?

    My question: Is there a "long run" down side to my implementing this modification to style.js?
    The below post by Ionut:MX Division Support Specialist worked for me as a solution to a current form "click cancel" redirect navigation problem:
    When a DWtoolbox dynamic form wizard form is placed on a page within frames, clinking on cancel does not return a user to the list that sent them to the form. The user is sent somewhere else.
    Begin Ionut post-------------
    If you don't need to add extra parameters to the "Edit" button, you can solve the redirect problem by editing the "/includes/skins/style.js" file and replace:
    nxt_list_edit_link_form(this, myinput.previousSibling.href);
    with:
    nxt_list_edit_link_form(this, a.href);
    End----------------------
    Thanks Ionut for the tip and anyone in support for letting me know if this is a safe mod for the long run,
    Steve M

    Hi Marny,
    Hello Steve. I am new to Adobe & very confused. You seem to grasp the program very nicely, please help Me?
    I´m not not Steve, however -- what problem do you have exactly, and is this problem related to the "Adobe Dreamweaver Developer Toolbox" extension or related to Dreamweaver ?
    If it´s related to ADDT, please describe your problem by starting a new thread -- if it´s related to Dreamweaver, please post your questions in the general Dreamweaver forums.
    Cheers,
    Günter Schenk
    Adobe Community Expert, Dreamweaver

  • Proxy redirect problem

    I'm having a redirect problem going through a weblogic proxy. An app I was using appears to be redirecting the browser always to localhost:7121 which won't work with access via the my domain.
    To explain fully I set up a test JSP page which outputs request.getRequestURL().toString() so I could trace what was happening. The weblogic configuration is explained below:
    I'm using Weblogic 8.1 sp5. I've setup a 4 instances: a proxy (port 7120), redirector (port 7121) and cluster (two instances running on 7131, 7132)
    If I navigate to:
    http://localhost:7120/myapp/test.jsp my test page outputs: request.getRequestURL().toString() : http://localhost:7121/myapp/test.jsp
    and again to:
    http://localhost:7131/myapp/test.jsp my test page outputs: request.getRequestURL().toString() : http://localhost:7121/myapp/test.jsp
    or
    http://localhost:7132/myapp/test.jsp my test page outputs: request.getRequestURL().toString() : http://localhost:7121/myapp/test.jsp
    The output is always the same ... it always says the requestURL is from localhost:7121 the redirector?
    Can anyone help explain why I always get the same output? It is completely baffling me.
    Thanks,
    Matt
    Edited by: user5673380 on Oct 15, 2008 3:52 PM

    The problem was caused by incorrect configuration of FrontEndHttpPort and FrontEndListener and FrontEndHost in the cluster configuration. These values were incorrectly during config wizard install.

  • Weird audio problem during calls

    I have a weird audio problem and was wondering if anyone else has had a similar problem or could help...
    My wife and I both have iPhone 5's and sometimes (not all the time) when she calls me (or I call her), it connects, but no matter which audio input I choose (phone, bluetooth, speaker, headphones), I cannot hear her, but she can hear me... I hang up, call back (and when I call, there is no dialing sound, nor any other phone sounds) and it's the same thing. Sometimes restarting the phone works, other times I have to restart it 3-4 times before it'll work again.  I try different things during these calls, like turning on/off bluetooth and/or wifi (pretty much anything I can think of that would make a difference), but nothing seems to help.
    The (other) weird part is that after the last time of this happening, I tried calling my iPhone with my office phone and it worked fine, so then I immediately call my wife back with my iPhone and it was doing the same thing again. I called her back using my office phone and could talk to her fine...
    This problem has been going on for a few months now and I have tried restoring the phone a couple times (and I am on the latest iOS) and sadly, that hasn't done anything to help... Does anyone have any ideas what is going on? I'd make an appointment for the problem, but since it doesn't do it all the time, I don't know what good it would do... But it is getting very frustrating!
    Thanks for any help!
    -Jason

    Thanks for the response!  It happened again yesterday...  It seems to be happening more frequently in the past few weeks now.
    I checked the link and have tried all of the things listed at one point or another over the past few months.  I did just check my Carrier settings and it said it had updated (it's on 14.1), but I am not sure when that happened (could have been today, could have been after my last restore last week, not sure).  I'll keep my fingers crossed that maybe that fixed it...
    If it continues to act up, would you recommend that I bring the phone in to an Apple store or an AT&T store?  I bought the phone through Apple, but my carrier is AT&T (and if you suspect that the problem may be with the cellular conection), maybe the AT&T store would be the better choice?
    I really wish the problem would be more consistant or go away, cause trying to get the problem solved is driving me crazy!

  • I want to downgrade from ios7 on my ipad mini-it seems to have affected certain websites which I now can't access due to 'redirect' problem

    I want to downgrade from ios7 on my ipad mini-it seems to have affected certain websites which I now can't access due to 'redirect' problem....

    Google is your friend. You have to move very quickly on this. It can't be discussed how to do it on this site and is not supported.

  • Slooow internet and weird mouse problems?

    I recently upgraded my iMac to Leopard (10.5.4) and started having weird mouse problems. At start up, mouse would be frozen in upper left corner. I'd restart, switch mice, restart, over and over. I use a Wacom tablet w cordless mouse plus Apples alum cordless keyboard. Eventually I tried switching USB ports for my Wacom tablet and the mouse was OK. I have learned that when this problem occurs, I need to shut down and unplug everything. That seems to solve it. Anyone know why? ALSO, ever since upgrading I have found the Internet to be appallingly slow. I have 2 GB memory and just upped my internet speed (supposedly) through Embarq.

    hmm, what is a mouse usb or a keyboard usb?
    arent all the usb ports same?
    I really wish to show you how this happens it is really fun, but also annoying. especially when I am playing a game. it is interesting to watch the screen when suddenly all the world starts rotating when you are playing a first person shot'm up.

  • KT6V Weird boot problems

    Hi..
    I'm having this weird boot problem (and no it doesn't seem to be the standard one)
    OK..
    I have the following :
    AMD Athlon 2000+
    KT6V LSR mainboard
    2x 256 Crucial PC2700 memory
    IDE Hard Disk (120gb segate)
    Creative 5700ultra Graphics card (AGP)
    Cd Rom
    Chieftec 400w PSU
    WinXP Pro
    If I set my CPU FSB to 100mhz (everything else on auto).. win Xp pro boots fine and all is pretty good except that my chip is now seen as a lowly 1.25ghz..
    If I then set my CPU FSB to 133 or 166 then the machine boots (ie it beeps etc..).. starts to load windows xp (I get the logo and that's when the problem happens)  and either black screens (ie.. nothing and the monitor turns off) or blue screens with the windows message saying that windows has detected a hardware fault and has halted the system..
    I know my memory, chip, heatsink etc all work because just over an hour ago they all worked fine in my KT3 ultra.
    What is going on as I've tried almost everything to try and solve this, with the only option to set the FSb to 100mhz which is incorrect for my CPU.
    How do I fix this.
    I've looked through the forum but this is not the same problem as simple reboots.. this is weird.
    If I can't fix this then I guess it'll be send it back.. which is a shame because I like MSi motherboards.
    Thanks
    Slippery

    Hi..
    I've checked the CPU heatsink.. and nothings wrong !
    (Can't check the voltage but I know the PSU is Ok as I did run it in a custom case with 4 Cd writters, 4 HDs, loads of lights etc.. before I moved to this new plain case tonight)
    What's weird is that set at 100FSb it's fine but at 133 or 166 it just crashes after the loading XP logo is displayed. Up until that point it's all fine.
    But why does it run Ok at 100mhz and not 133mhz ?
    Please help..  before I end up fixing this with a hammer !
    Thanks
    Slippery

  • "Too Many Redirects" problem when linking to the iTunes App Store... weird

    I've done a decent amount of searching on this issue and I haven't really found anything that addresses this problem... basically, whenever I (using my iPhone/Safari) try to click a link to the App store; I get:
    *Cannot Open Page*
    +Safari cannot open the page because too many redirects occurred.+
    I'm actually developing a site right now for an iPhone game; and I was using the link to Shazam as placeholder until we have our app approved. I generated the link using the iTunes App Generator - http://ax.phobos.apple.com.edgesuite.net/WebObjects/MZStoreServices.woa/wa/itmsL inkMaker - which gave me the code I pasted at the bottom if anyone is interested.
    This did not work; but I figured the issue was on my side so I started to trouble shoot things. So the first thing I did was search "Shazam" using my iPhone's Safari browser - and the 3rd result is the App Store link:
    http://www.google.com/search?q=shazam&ie=utf-8&oe=utf-8&aq=t&rls=org.mozilla:en- US:official&client=firefox-a
    I've used both my iPhone and the iPhone simulator (part of the SDK) to test this, and I've used different ISPs just in case there was something in between. *Same error.*
    So thinking Shazam might also have problems; I tried a few more well known app name searches. *Everything is having this problem, it seems.*
    This is my first support discussion post so sorry if it's too rambly or if I'm asking about a well known issue - but I really looked into this one and I'm wondering if it's pandemic or rare.
    Thanks!

    Hello mollusk,
    Welcome to the Discussions Boards.
    Just to let you know, this is primarily and end user to end user forum for the iPhone.
    When you're working with the SDK, you will most likely get better information and feedback via the Developer's resources:
    http://discussions.apple.com/category.jspa?categoryID=164
    http://developer.apple.com/iphone/
    Good Luck with that APP.
    Charles H.

  • Strange redirect problem

    I've googled this one for weeks now and, although this problem is discussed on other boards as long ago as 2002, no one has talked about a solution yet.
    whenever i go to http://downloads.openngo.org, i end up getting redirected to 0.0.0.0. it used to send me to some digimedia.com domain (they own com.org domain apparently) but now it's just 0.0.0.0. if i try going to http://lists.objectledge.net, same thing.
    now, here's the weird thing. on my G5, this happens whether i try Safar, Firefox or IE. on my PC, which is sharing the same network (logged into the same wireless network), i get there fine. in fact, on my other Powerbook, i can also get there fine. just this G5 i'm having problems.
    now here's the weirder thing: i was actually able to get to it late last night (i was writing up this post last night but thought i would check one more time so as not to waste people's time). so i though, oh, ok, i guess it was an ISP problem (i use Comcast) and they must have flushed their DNS servers or something. but now, this everning, it's not working again. aarrrghhh!!
    I think it must be some combination of a Mac thing and a domain server/ISP thing, although it's weird that my Powerbook works fine but the G5 doesn't. they use the same OS version, same Safari version, etc. i'm thinking maybe there is some sort of local DNS cache on the G5 that is not getting flushed or something. although i've tried rebooting and that didn't seem to help.
    I connect to the Net using DHCP.
    anyone have any ideas or have had the same problem?
    h

    I got that part, but if you or someone else had already modified your host file from the standard, then this could have been the reason why you were going to 0.0.0.0.
    Obviously you haven't, so this is not the reason for your redirect.

  • Crystal Report in an iFrame redirect problem

    Hi!
    I have built a page with a only Crystal Report on it, which I display in an iFrame on another page.
    I have a hyperlink on the page that is used to redirect the iFrame by assigning the iFrame a name and setting the target of the hyperlink to the iFrame. When the user clicks the hyperlink, it will redirect the iFrame.
    This all works fine up until the point at which you generate the actual Crystal report. After the report has generated, attempting to redirect the iFrame via the hyperlink causes a new browser tab/window to open. A few tests that I have run using Javascript or codebehind circumvent this issue, but as it stands I cannot use this method.
    This issue has only just arisen with the VS2010 version of Crystal Reports. The older versions do not have this problem.
    Research I have done into the issue have been fruitless and have tinkered with the Report Viewer itself a bit to no avail.
    Is there an explanation for this issue and/or a means of getting past this?
    Any help or nudge in a new direction is very much appreciated!
    Regards,
    Frank.

    Hello Frank:
    This issue has been reported to R&D for a fix (ADAPT01554950). At this time, the fix is targeted (not guaranteed) for Service Pack 3. ETA; mid 2012.
    For a possible work-around, see the following thread:
    Crystal Reports Viewer VS2010 FRAME target issue
    Ludek
    Follow us on Twitter http://twitter.com/SAPCRNetSup
    Got Enhancement ideas? Try the [SAP Idea Place|https://ideas.sap.com/community/products_and_solutions/crystalreports]
    Edited by: Ludek Uher on Nov 28, 2011 7:48 AM

  • Weird Javascript problem on Safari and other web browsers

    Hello,
    this is actually pretty weird. For the past several weeks I have been dealing with a very strange problem which I believe relates to JavaScript. To be more specific I have an issue with two websites: Macuser.gr and Facebook.com.
    As far as Macuser.gr is concerned this is how it's supposed to look:
    http://f.cl.ly/items/0j1J123Y2D0t1C2U3b1f/Screen%20Shot%202013-02-06%20at%202.25 .04%20PM.jpg
    and this is how Safari renders it:
    http://f.cl.ly/items/3N0V3I1c0Q0a1r0K0e1C/Screen%20Shot%202013-02-06%20at%202.25 .40%20PM.jpg
    The problem is with the preview images as you can see.
    Now, in Facebook there's this annoying white line where it isn't supposed to be:
    http://f.cl.ly/items/0k0i2c0T0q1h3t2j2s3e/Screen%20Shot%202013-02-06%20at%202.25 .52%20PM.jpg
    I have tried and tested everything (Guest user, different browsers etc) and all it comes down to is JavaScript. Disabling Javascript seems to fix everything immediately. Enabling it again and this mess occurs. Also, this happens with the latest versions of Safari, Chrome and Firefox BUT not with Camino 2.1.2 although it has JavaScript enabled in it.
    This is really frustrating and it appeared out of the blue one day. I did not have this problem from day 1. Any ideas?

    Boot into Recovery by holding down the key combination command-R at the startup chime. Release the keys when you see a gray screen with a spinning dial.
    Note: You need an always-on Ethernet or Wi-Fi connection to the Internet to use Recovery. It won’t work with USB or PPPoE modems, or with proxy servers, or with networks that require a certificate for authentication.
    From the OS X Utilities screen, select Get Help Online. A clean copy of Safari will launch. No plugins, such as Flash, will be available. While in Recovery, you'll have no access to your saved bookmarks or passwords, so make a note of those before you begin, if they're needed for the test.
    Test. After testing, reboot as usual and post the results.

  • Weird mouse problem (clicks not being performed, -)

    Recently I am suffering from a really weird problem.
    The middle mouse button shows a really strange behaviour:
    I'm using KDE from [extra], and middle clicking e.g. a link in a webbrowser (no matter which toolkit it uses) instead of opening one tab, opens the link in several tabs.
    Also middle clicking on a tab, normally should close *one* tab, while here it often closes more than one tab. Since this happens in every application I use, no matter which toolkit is used, this cannot be a KDE/Qt problem, since e.g. Firefox is affected by it too. I also doubt that GTK is the cause of this problem…
    [The middle clicking problem has been solved, by cleaning the mouse wheel]
    [The problem below, still persists]
    Furthermore, sometimes my laptop looks like it enters a "state", where my clicks are not "performed" the normal way:
    E.g. I had a media player running, when my laptop got into this "state". No matter where I clicked on this app, the clicking action was performed on the Play button. Using Alt+Tab to focus another window/bring it to the front, and clicking in this window anywhere again resulted in the Play button getting clicked.
    After quitting the media player app (through a keyboard shortcut) my clicks still did not work normal. They still simply were not performed. In order to "re-gain" the ability to click, I had to log out first.
    Since I've setup my Arch Linux not to automatically start X/KDM after logging out, I found myself in the terminal, where I ran startx, in order to run KDE.
    The terminal still had some output of my X session, but it wasn't displayed with normal characters, but rather with some weird characters, looking all scrambled and stuff, as you can see on the screenshot. http://imagebin.org/100067
    I currently use the packages from the testing repo, but IIRC this behaviour was there even before installing the testing repo packages.
    Extra information:
    kernel26 2.6.34-1
    xorg-server 1.8.1-1
    nvidia 195.36.24-2
    xf86-input-evdev 2.4.0-1
    I run Arch Linux x86_64 on an Acer 5741G Laptop, with a NVidia Geforce GT 320M.
    Interestingly, another user who suffers from the same bug is running a computer with intel graphics, so it probably is not the nvidia driver causing the problem either.
    Originally the bug was reported as a rekonq bug: https://bugs.kde.org/show_bug.cgi?id=238987
    Thank you
    Last edited by pano (2010-06-09 11:43:21)

    Hello,
    I seem to suffer from the same problem. Sometimes (perhaps triggered by amarok, but I have to investigate this further before blaming this app) the left mouse button stops working. I can not perform left-klicks anymore. Everything is fine with the right button. If I log out and in again the mouse if fully back. In this loop X has not been restarted.
    My setup:
    KDE 4.4.5 (official packages)
    X: X.Org X Server 1.8.1.902 (1.8.2 RC 2)
    kernel: 2.6.34-ARCH #1 SMP PREEMPT
    architecture: x86_64
    mouse: Logitech MX1000 Laser (Logitech, Inc. MX-1000 Cordless Mouse Receiver)
    If s.o. will ever work in this I will be happy to provide any information I can come up with.
    Cheers and good night.

  • GPO (as a whole) problem or Folder Redirection Problem?

    Hello everyone,
    After a couple hours of looking at different TN articles on folder redirection I just can't get it to work properly. I had some major system errors and had to perform a clean install of the OS. My folder redirections from the old install seem to be in place
    and are about the same size despite me backing up all the content before the reinstall on each terminal (4 of them) to a usb drive.
    I enabled folder redirection through the dashboard and performed a gpupdate /force I see the GPO in the Group Policy editor but none of my machines seem to be accepting any group policies now that I look at it and write this I have firefox set to update
    to the latest .msi and it isn't doing that either could this be a bigger problem than just folder redirection?
    Any tips or links to articles I may have not seen would be much appreciated.
    Thank you in advance everyone.

    Hi James,
    Based on your description, I understand that you enable folder redirection (click Implement Group Policy on
    Dashboard) on a Windows Server 2012 Essentials (or a Windows Server 2012 R2 Essentials?).
    On current situation, please refer to following and check.
    1. Would you please let me know edition information of this client computer?
    2. On the server essentials, please open Group Policy Management. Then navigate to WSE Group Policy Folder Redirection and click it. In right panel, navigate to WMI Filtering
    and select WSE Group Policy WMI Filter, then click Open button. Please check
    Queries in the WMI Filter. You can psot complete queries here (include Namespace and Query).
    3. On the client computer, please run the command in a command prompt:
    gpresult /z > c:\policy.txt. Then check this policy.txt in C drive or post the result here.
    If any update, please feel free to let me know.
    Hope this helps.
    Best regards,
    Justin Gu

  • Web Redirection Problem on Cisco ISE 1.2 and WLC 7.5

    Hello,
    We are at initial phase of deploying ISE 1.2 in our environment for Wireless Guest Users.
    I have configured ISE and WLC to talk to each other which is working fine. An SSID with MAC-Filtering is also configured on WLC and ACL only allowing ISE and DNS traffice.
    I have configured proper authentication and authorization policies on ISE. Now, when I try to connect my device (laptop and android mobile), I see my device gets associated with the SSID (Demo) and gets the right IP Address from DHCP and right VLAN from WLC. The log process on ISE is as follows.
    11001
    Received RADIUS Access-Request
    11017
    RADIUS created a new session
    11027
    Detected Host Lookup UseCase (Service-Type = Call Check (10))
    15049
    Evaluating Policy Group
    15008
    Evaluating Service Selection Policy
    15048
    Queried PIP
    15048
    Queried PIP
    15004
    Matched rule
    15041
    Evaluating Identity Policy
    15006
    Matched Default Rule
    15013
    Selected Identity Source - Internal Endpoints
    24210
    Looking up User in Internal Users IDStore - B8:B4:2E:A6:7D:75
    24216
    The user is not found in the internal users identity store
    24209
    Looking up Endpoint in Internal Endpoints IDStore - B8:B4:2E:A6:7D:75
    24211
    Found Endpoint in Internal Endpoints IDStore
    22037
    Authentication Passed
    15036
    Evaluating Authorization Policy
    15048
    Queried PIP
    15048
    Queried PIP
    15048
    Queried PIP
    15004
    Matched rule - Guest Redirection
    15016
    Selected Authorization Profile - Test_Profile
    11002
    Returned RADIUS Access-Accept
    I also see a redirect url in the detailed authentication logs. But the problem is that when I open my browser on my device, it doesn't get redirected to the guest portal url. Now since I can't get there, I can't continue with the rest of the process of authentication, COA and final ACL for internet access.
    Can some one please either guide me the correct steps that I need to follow, if I have mis configured something or advise if this is a bug.
    Thanks in advance.
    Jay

    The ACL is definitely used to define what traffic is re-directed to ISE and what traffic is not redirected. Having the permit-all statement at the end will break redirection. If you are using flex-connect then you will need to use flex-connect ACLs and apply those to the flex-connect APs. The links below should give you an idea of what needs to be done:
    http://www.cisco.com/c/en/us/support/docs/wireless/5500-series-wireless-controllers/113606-byod-flexconnect-dg-000.html
    http://www.cisco.com/c/en/us/support/docs/security/identity-services-engine/116087-configure-cwa-wlc-ise-00.html
    Thank you for rating helpful posts! 

Maybe you are looking for