Parameter/Redirect

Hi, All
I have some code where I have something like this:
Search for: ___[textfield]______ [go button]
The problem I have is that I've got an href link on the picture with a dummy search of search.jsp?, where search=YYY, but when I click the button I want to call search.jsp with a search value defined in the textfield and not the dummy value so that I can read it as a parameter in the search.jsp program. How can I replace the value of YYY with the value of the textfield once I have clicked the button?
Please any help will help, I am lost.

Hello,
You could use JavaScript to do this. You can get the value in the textbox using document.yourformName.yourtextboxName.value and the href of the anchor using document.all.youranchorName.href
Create a (javascript)function to place the value into the href in the onClick method of the anchor.
http://javascript.internet.com/ to learn more about javascript.
Hope this helps.

Similar Messages

  • JSF - redirect with parameter

    Hi All,
    I have a JSF application that is consists of 5 pages. The first one is clear JSP page where the user have the possibility to logged in the application. After the user has been successfully authorized the JSF page redirects to JSF page that displays list of items.So far so good, but when the list of items contains only one item I want to redirect directly to the third page that displays the description of the selected item from the second page. The second page pass the item id with the following code:
         <h:commandLink action="ItemDescription" actionListener="#{itemDesc.processAction}">
              <f:param name="item_id" value="#{MyItem.id}"></f:param>
              <h:outputText value="#{MyItem.name}"></h:outputText>
         </h:commandLink> Currently I can redirect to the third page by using FacesContext.getCurrentInstance().getExternalContext().redirect("Third.faces") but I don't know how to set the parameter item_id.
    Do you have any suggestions?

    Pass it along as a query parameter:redirect("Third.faces?item_id=" + id);

  • OIM - Redirection URL in a Authentication Rule Action must not contain "?"?

    Hello,
    we run OAM to secure some APEX-Application. For one or two reasons we have to use a redirection URL to forward after successfull authentication with Form-Based-Authentication to the application. This works wonderfull with "normal" HTML-Pages. But as soon there is a parameter to be delivered, the Parameter Redirection URL isn't interpreted correct anymore.
    An Example:
    Redirection URL: https://test.net/test/index.htm
    works wonderful, after authentication user is forwarded to the specified URL.
    Redirection URL: https://test.net/pls/htmldb/f?p=300
    does not work, after authentication user is forwarded to https://test.net/pls/htmldb/f. Everything after the "?" (within ?) is being cut off.
    Is it possible to enter a URL for redirection with parameter identifiers like "?" ?
    Regards
    Hans

    Already found a solution,
    when entering only /pls/htmldb/f?p=300 it works...
    strange..

  • Issue upon upgrading from 10.1.2 to 10.1.3.3

    Hi,
    i am upgrading the AS from 10.1.2 to 10.1.3.3,
    i have deployed the same ear on oc4j 10.1.3.3 which i have deployed on 10.1.2
    the issue is, upon session time out on 10.1.3.3 it give error and doesn't redirect to session expire page(defined in web.xml) but the same ear works fine on 10.1.2 :
    error message is :
    java.lang.IllegalArgumentException: path must begin with a "/"     at com.evermind[Oracle Containers for J2EE 10g (10.1.3.3.0) ].server.http.HttpApplication.getRequestDispatcher(HttpApplication.java:1668)     at com.bidm.misc.service.bo.SessionExpireFilter.doFilter(SessionExpireFilter.java:99)     at com.evermind[Oracle Containers for J2EE 10g (10.1.3.3.0) ].server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:623)     at com.evermind[Oracle Containers for J2EE 10g (10.1.3.3.0) ].server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:370)     at com.evermind[Oracle Containers for J2EE 10g (10.1.3.3.0) ].server.http.HttpRequestHandler.doProcessRequest(HttpRequestHandler.java:871)     at com.evermind[Oracle Containers for J2EE 10g (10.1.3.3.0) ].server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:453)     at com.evermind[Oracle Containers for J2EE 10g (10.1.3.3.0) ].server.http.AJPRequestHandler.run(AJPRequestHandler.java:302)     at com.evermind[Oracle Containers for J2EE 10g (10.1.3.3.0) ].server.http.AJPRequestHandler.run(AJPRequestHandler.java:190)     at oracle.oc4j.network.ServerSocketReadHandler$SafeRunnable.run(ServerSocketReadHandler.java:260)     at com.evermind[Oracle Containers for J2EE 10g (10.1.3.3.0) ].util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:303)     at java.lang.Thread.run(Thread.java:595)
    Thanks,
    DJ

    hi steve,
    yes i am using a filter to handle the session timeout, here is the code in web.xml
    root context for the application is: /MyApp
    location for expire.jsp is : /MyApp/expire.jsp
         <filter>
              <filter-name>SessionExpireFilter</filter-name>
              <filter-class>com.myapp.SessionExpireFilter</filter-class>
              <init-param>
              <param-name>redirect</param-name>
              <param-value>expire.jsp</param-value>
              </init-param>
         </filter>
         <filter-mapping>
              <filter-name>SessionExpireFilter</filter-name>
              <url-pattern>*.jsp</url-pattern>
         </filter-mapping>
    code for SessionExpireFilter.java:
    public class SessionExpireFilter implements Filter {
    private static boolean no_init = true;
    private static Log log = LogFactory.getLog(SessionExpireFilter.class);
    private FilterConfig config;
    private String redirect;
    public SessionExpireFilter() {
    redirect = null;
    public void init(FilterConfig filterconfig) throws ServletException {
    config = filterconfig;
    no_init = false;
    initRoute();
    public void destroy() {
    config = null;
    public void doFilter(ServletRequest servletrequest,
    ServletResponse servletresponse, FilterChain filterchain)
    throws IOException, ServletException {
    HttpServletRequest httpservletrequest = (HttpServletRequest) servletrequest;
    HttpSession httpsession = httpservletrequest.getSession(true);
    if ((httpsession == null) ||
    (httpservletrequest.getRequestedSessionId() == null) ||
    (redirect == null)) {
    if ((httpservletrequest.getRequestURI().indexOf("login.jsp") != -1) ||
    ((httpservletrequest.getRequestURI().indexOf("bookingAdviceAction.do") != -1) &&
    (httpservletrequest.getParameterMap() != null) &&
    httpservletrequest.getParameterMap().containsKey("servletAction")) ) {
    filterchain.doFilter(servletrequest, servletresponse);
    } else {
    //session is expired
    RequestDispatcher requestdispatcher = config.getServletContext().getRequestDispatcher(redirect);
    requestdispatcher.forward(servletrequest, servletresponse);
    } else {
    // session is expired
    HttpServletResponse httpservletresponse = (HttpServletResponse) servletresponse;
    ServletContext servletcontext = config.getServletContext();
    // It won't happen so frequent
    if (getRedirect(redirect)) {
    httpservletresponse.sendRedirect(redirect);
    } else {
    // these jsp won't be filtered, login.jsp & index.jsp
    if ((httpservletrequest.getRequestURI().indexOf("login.jsp") != -1) ||
    (httpservletrequest.getRequestURI().indexOf("index.jsp") != -1)) {
    filterchain.doFilter(servletrequest, servletresponse);
    } else {
    RequestDispatcher requestdispatcher = servletcontext.getRequestDispatcher(redirect);
    requestdispatcher.forward(servletrequest, servletresponse);
    public void initRoute() {
    //log.debug("in initRoute");
    redirect = config.getInitParameter("redirect");
    if (redirect == null) {
    if (log.isDebugEnabled()) {
    log.debug(
    "Session Expire filter: could not get an initial parameter redirect");
    redirect = "expire.jsp";
    private boolean getRedirect(String s) {
    //log.debug("in getRedirect");
    int i = s.indexOf(":");
    if (i <= 0) {
    return false;
    } else {
    String s1 = s.substring(0, i).toUpperCase();
    return s1.startsWith("HTTP");
    Thanks,
    DJ

  • Can a servlet differentiate between links?

    Hello, I could you tell me please, if this can be done (and how, if it`s possible)?
    I have a html page A with two links, one to page B and the other to page C.
    I would like to put a servlet inbetween that receives information from A and send the user to B and C. (so A-->Servlet-->C or D)
    Can a servlet recognize between two links clicked, so it can send the user to the desired web page (or can something be done for that)?
    That`s using server side applications to make client side things. I know it`s weird, but any suggestion is welcomed.

    hi :)
    pass a parameter to the servlet.
    and based on that parameter, redirect the user to the desired url.
    Example:
    link 1
    http : // www.mysite.com/servlet/controller/myservlet?param=C
    link 2
    http : //www.mysite.com/servlet/controller/myservlet?param=D
    on your servlet create a condition
    foo = request.getParameter("param");
    if foo.equals("C") {
         // redirect to c
    }hope this could give you an idea :)
    regards and goodluck,

  • Cache Invalidation

    How/where do I need to invalidate the cache for the Access Manager when a user id is added to a uniqueMember attribute in the group?
    With Access Manager 7.0, patch 5:
    Here's the story:
    I have a policy with a rule that blocks access to URLs that match "edit" and "create," accept for anyone in "Group 1." Accounts that are in "Group 1" are permitted.
    When someone accesses the site and tries to access a URL that matches "edit" or "create" they are redirected to a CGI configured in the com.sun.am.policy.agents.accessDeniedURL property of the AMAgent.properties. The CGI collects the goto parameter, redirects to another CGI that will authenticate the browser. A brief form is submitted and from the HTTP_HEADER this CGI will insert the account in the "Group 1" in the Ldapv3 repository store necessary to make the edit.
    The browser is redirected back to the page that initially prompted the redirect for the accessDeniedURL, except the browser is redirected back and receives an access denied because the cache in the agent or Access Manager still has the session cached and the account not in "Group 1."
    I'm pretty sure the cache in the data store on the Access Manager server needs to be invalidated, but I have no idea where to start or how to do this. Can someone offer some assistance?

    Some advice from Sun Support, there doesn't appear to be a way to do this. Logout/Login does work.

  • Cisco ISE - Not use FQDN in url-redirect parameter

    Hi,
    I am using Cisco ISE Central Web Authentication for Guest Wireless. Clients are redirected for web authentication to: https://ip:port/guestportal/gateway?sessionId=SessionIdValue&action=cwa as it is specified by the url-redirect parameter in the Authorization Profile.
    The “ip” field in the url is now replaced by the FQDN of the Cisco ISE, but I want to use the IP address instead of the FQDN. Is there any way to do that?
    As far as I know in version 1.2 you can use the “ip host/no ip host” command to indicate what you want to use in the URL. However my Cisco ISE is running version 1.1.1.268.
    Thank you very much.
    Joana.

    Available in 1.2, and available as a "bit of a bodge" in 1.1.x  (read "a lot of a bodge")
    If you only have one PSN then you may be able to get it to work, but after that you lose the ability to get the session to be pointed automatically at whichever PSN they hit initially so it would break.
    Copy the settings that are applied when you use CWA, then create your own based on the same settings but using the ip address pasted in there instead.

  • Redirect & parameter passing

    Hi,
    I have two different pages personList and personDetail and two managed beans PersonList and PersonDetail. I have a problem to pass a personId parameter to PersonDetail bean when moving from personList to personDetail page. It works fine when I don't use <redirect/> tag in my faces-config.xml file. I suppose that the problem is that first request is created by clicking on commandLink and usage of <redirect/> tag causes creating of new request but I need to use redirect otherwise url don't change. Any ideas how to solve this problem???
    I can't use outputLink for passing parameters because there are two different detail pages and I resolve where to go in PersonList.personDetail method
    personList.jspx code example
    <h:commandLink action="#{PersonList.personDetail}"> 
         <f:param name="personId" value="#{person.id}"/> 
         <f:param name="type" value="#{person.personType.personType}"/> 
    </h:commandLink> 
    ... PersonList.personDetail()
    public String personDetail() { 
         FacesContext context = FacesContext.getCurrentInstance(); 
         Map requestParams = context.getExternalContext().getRequestParameterMap(); 
         String type = (String) requestParams.get("type"); 
         if (PersonType.NATURAL.getPersonType().equals(type)) { 
            return "detailNatural"; 
         } else { 
             return "detailLegal"; 
    }  navigation rules
    <navigation-rule> 
         <from-view-id>/personList.jspx</from-view-id> 
          <navigation-case> 
             <from-outcome>detailNatural</from-outcome> 
             <to-view-id>/person/naturalPersonDetail.jspx</to-view-id> 
             <redirect/> 
         </navigation-case> 
        <navigation-case> 
             <from-outcome>detailLegal</from-outcome> 
             <to-view-id>/person/legalPersonDetail.jspx</to-view-id> 
             <redirect/> 
         </navigation-case> 
    </navigation-rule> 
    <managed-bean> 
         <managed-bean-name>PersonDetail</managed-bean-name> 
         <managed-bean-class>cz.kiv.jet.managedbean.PersonDetail</managed-bean-class> 
         <managed-bean-scope>request</managed-bean-scope> 
         <managed-property> 
             <property-name>personId</property-name> 
             <value>#{param.personId}</value> 
         </managed-property> 
    </managed-bean> 
    ...

    A redirect indeed creates a new request. So you need to store it in something broader than the request scope, like session scope (which may have much more impact on the user experience), or just stick using forward.

  • How to redirect "-verbose" Java Runtime Parameter setting to text file

    Simple question: I am adding a "-verbose" Java Runtime Parameter in the Java Applet Runtime Settings of the Java Control Panel. When I run my applet, a Windows console opens which outputs all the method calls, classes, and jar file information. How can I redirect this output to a text file?
    I noticed Xloggc:+filename+ but there does not seem to be an equivalent for redirecting the '-verbose' output to a file.
    Thanks!
    Edited by: zillius on Dec 14, 2007 1:47 PM

    Thank you both for the reply, but unfortunately that is not quite what I am looking for. The console Window I am talking about is a DOS console screen, not the Java Console
    What I am really after here is the ability to redirect a thread dump of a running applet to a text file. When the applet is active, and the "-verbose" parameter is set in the Java Runtime Parameters", I can see all the classes, methods etc. being loaded in the DOS window. Hitting Ctrl-Break at that point will produce a thread dump in the DOS console screen. I would like to be able to redirect THAT output to a text file. It is not in the Java Console. To me it looks like tracing and logging are only for the Java Console, no?
    Thanks again for your help.
    Edited by: zillius on Dec 19, 2007 7:17 AM

  • CT5760 - virtual-host in parameter-map not used in webauth redirect

    Hi all.
    I'll try posting my issue here before I post a TAC on this:
    Cisco CT5760 wireless controller running IOS-XE version 3.6.0.
    This issue is related to web authentication on an SSID with external web portal. It seems that the statement "virtual-host" in "parameter-map type webauth global" is not used as intended. I'll try to explain:
    When a user connects to an SSID with external web authentication enabled and the user opens a web browser, the user will get redirected to the external web portal for authentication. In this redirect URL we see the parameter "switch_url=http://1.2.3.4/login.html". The IP address 1.2.3.4 is, in this example, our virtual IP. But we have also configured "virtual-host" to be webauth.example.com. And in my opinion the "switch_url" parameter should be "switch_url=http://webauth.example.com/login.html". This is how it works on our old Cisco WiSM1 implementation.
    The reason why this is a problem is that the clients web browser will not accept the certificate installed on "http://1.2.3.4" because it is not issued with that IP address, only the hostname webauth.example.com. I know that it is possible to get certificates issued with an IP address (as long as it's not an RFC1918 IP address), but rumors say that many Certificate Authorities will stop issuing these soon, even with "real IPs". Therefore it is important that the redirect URL gets corrected.
    Does anyone disagree with me that this is a bug?

    Hi and thank you for your response.
    I feel that I need to clarify a few things. Here is my parameter-map config (a bit edited):
    parameter-map type webauth global
    virtual-ip ipv4 1.1.1.1 virtual-host webauth.example.com
    intercept-https-enable
    parameter-map type webauth webauth_external
    type webauth
    redirect for-login https://webauth-external.example.com/v2/login.html
    redirect portal ipv4 x.x.x.x
    So the problem here is that a web browser of the client gets the following redirect URL:
    https://webauth-external.example.com/v2/login.html?switch_url=https://1.1.1.1/login.html&redirect=http://www.cnn.com
    Then after a successful login on the external portal, the user gets redirected back to https://1.1.1.1/login.html. Here is the core of my problem. I think that the parameter "switch_url" should be with the name webauth.example.com since I configured it as the "virtual-host". This is the behavior we see with our old Cisco WiSM1.
    When the redirect goes to https://1.1.1.1/login.html the client complains about the certificate, because it is not issued to that IP address but to the hostname.
    I can verify that the client does not complain about this if I manually edit the redirect URL on the client to the following:
    https://webauth-external.example.com/v2/login.html?switch_url=https://webauth.example.com/login.html&redirect=http://www.cnn.com
    Then the redirect after authentication goes to https://webauth.example.com/login.html and the client accepts the certificate and everything is peachy.
    Do you see my problem? And yes, the virtual IP resolves to the name in DNS.

  • When I add an opendocument login token, it wipes out my parameter/prompt response in the Redirect URL

    I am having this issue and I wonder if anyone has any pointers?
    When I send the URL with the single prompt response &lsSPrompt0=1234567 it works fine but I have to login to InfoView.
    So I created a login token .jsp and that took care of the login for InfoView, but it also killed my prompt value.
    The code that I got from another site that does the same thing I WANT to do seems to create a cookie to store the passed prompt value in, then it creates a login token, then it assembles it all in the redirect URL and sends it to the openDocument.jsp.
    The login token works like a champ, but the prompt value (initially passed in to the cookie as "Prompt0") ends up passing from the Redirect URL to the openDocument.jsp with a value of NULL (lsSPrompt0=NULL).
    In my lack of knowledge, I am thinking maybe it has something to do either with how the cookie is being created, how it is being passed, or how/if it is getting stored at the target.  The cookie/token.jsp and the openDocument.jsp are in different folders on the same domain.
    So, I pass this URL:
    http://server:8080/InfoViewApp/token.jsp?&lsSPrompt0=1234567
    The token.jsp that it hits looks like this:
    So, the redirect winds up hitting the target looking like this:
    http://server:8080/OpenDocument/opendoc/openDocument.jsp?token=logonToken&iDocID=45227708&sKind=FullClient&lsSPrompt0=NULL&NAII=N&buttonrefresh=hide&buttonexport=hide
    Obviously, my problem is this:  lsSPrompt0=NULL
    Any pointers or nuggets of wisdom are GREATLY appreciated?
    Also of note, I wasn't sure if I needed to publish this token.jsp as a Webapp to Tomcat.
    I just placed the .jsp file in the folderTomcat5.5/webapps/InfoViewApp (same location as the client who has it working).
    Do I need to publish it?  Is that part of the problem?
    I am a little out of my realm here but trying to learn!
    We are on BOXI R2, Tomcat 5.5, JAVA, and I am having the same behavior on my personal XI 3.0 server too
    Thanks in advance,
    Randy

    I believe it's storing the info in a cookie so that it can be used later.  You don't mention which version of BO you're using, but I've sometimes found that the logon tokens created in 4.x contain special characters and may need to be URL encoded.  Also, I've found that it helps to put the logon token at the end of the URL after any parameters instead of in the middle before the parameters.
    -Dell

  • Webapp_searchresults sort parameter not active when redirecting results to page?

    Good morning/evening,
    I am not sure if I missing something, but according to the documentation that I have found so far http://helpx.adobe.com/business-catalyst/kb/modules-quick-reference.html#Web-apps the syntax for the web apps sort module results is :
    {module_webappsresults,notUsed,targetFrame,useBackupTemplate,resultsPerPage,hideEmptyMessa ge,rowLength,sort}
    when the results are on the same page as the search form, the sort parameter works. in this case :
    {module_webappsresults,,,,18,true,,DATE}
    when I change the form action to direct the results to another page, replacing PageID={module_oid} with ID=/Painting/Select.html
    The page in question has the same {module_webappsresults,,,,18,true,,DATE} as above. The selection based on the search form is correct, however the sort order is no longer in effect. The order is alphabetical by name.
    Is this a known behaviour or am I missing something? Is there someting else I should be doing when directing results to another page ?

    Good morning/evening,
    I am not sure if I missing something, but according to the documentation that I have found so far http://helpx.adobe.com/business-catalyst/kb/modules-quick-reference.html#Web-apps the syntax for the web apps sort module results is :
    {module_webappsresults,notUsed,targetFrame,useBackupTemplate,resultsPerPage,hideEmptyMessa ge,rowLength,sort}
    when the results are on the same page as the search form, the sort parameter works. in this case :
    {module_webappsresults,,,,18,true,,DATE}
    when I change the form action to direct the results to another page, replacing PageID={module_oid} with ID=/Painting/Select.html
    The page in question has the same {module_webappsresults,,,,18,true,,DATE} as above. The selection based on the search form is correct, however the sort order is no longer in effect. The order is alphabetical by name.
    Is this a known behaviour or am I missing something? Is there someting else I should be doing when directing results to another page ?

  • Redirects if surtain parameter is true

    Hi experts!
    I'm trying to figure out how to redirect to a different page in oracle portal, if a surtain contition is met.
    The thing is, that we want our users to accept an "agreement" before they navgiate further into the "restricted" area of the site.
    Now of course this will need a table that links to the Protal OID user's name, which will query wether the users has or has not "accepted".
    If the user has accepted the aggreement, they can go on using it.
    Now I'm thinking to include some contition in PL/SQL in the HTML Template / Page skin, so that it will redirect if a database table query on the username returns NULL or 'N', and does nothing if it returns 'Y'.
    How would I do this. Any suggestions?
    Thanks,
    Botzy

    Hi ,
      Try the below condition. I am assuming 1 is Full and 2 is partial.
    Where
    Reporting.VW_LATEST_SUBMISSIONS.SubmissionTypeID not in (47,51)
    or
    @FullorPartial = 1
    Best Regards Sorna

  • Remote App can't print- Error: The parameter is incorrect

    good morning everyone!
    I have a server 2012R2 with RDS and I published remoteapp in RD Web also my users can access but...
    When they log in their sessions from their computers want to print (for example in notepad) it gives the next message: "The parameter is incorrect".
    They connect through a VPN SSL using a FG.
    have anyone have this issue?
    thanks for your time.

    1. You can try reinstalling Printer drivers.
    2. Reconfigure printer on client machine
       remove printer -> add printer -> local
    3. Check the RDS server, Whether Printer redirection is enabled or not,
    host machine: Computer configuration -> windows components -> remote desktop services -> remote desktop session host -> printer redirection
    set "use remote desktop easy print printer driver first" to disabled
    Restart client machine
    Regards,
    Manjunath Sullad

  • Web Redirect is not working

    Hello,
    We configured the web authentication in wlc 5508with ISE for the guest traffic. When client tries to connect it redirects to the different URL. That means the specified URL (that is default redirection page of ISE) 'https://<ISE IP>:8443/guestportal/portal.jsp'  but client is getting redirected to
    'https://<ISE>:8443/guestportal/login.action?switch_url=https://<virtual IP>/login.html&wlan...'. And finally page cannot be displayed now error message i am getting.
    Why it happens..? Any quick help would be really appreciated
    Moreover i have doubts on the below points.
    1) Should both the Anchor and the foriegn controllers be configured for web auth security or only anchor ..?
    2) When external web redirection, the client has to get the DNS resolved entry for the Specified URL or WLC knows to take it to the external web page..?
    3) Any special configuration has to be done on ISE?
    Thanks for your time
    KVS
    Message was edited by: Prasan Venky

    Hello,
    How to Make an External (Local) Web Authentication Work with an External Page
    As already briefly explained, the utilization of an external WebAuth       server is just an external repository for the login page. The user credentials       are still authenticated by the WLC. The external web server only allows you to       use a special or different login page. Here are the steps performed for an       external WebAuth:
    The client (end user) opens a web browser and enters a           URL.
    If the client is not authenticated and external web authentication is           used, the WLC redirects the user to the external web server URL. In other           words, the WLC sends an HTTP redirect to the client with the website's spoofed           IP address and points to the external server IP address. The external web           authentication login URL is appended with parameters such as the           AP_Mac_Address, the client_url (www.website.com), and the action_URL that the customer needs           to contact the switch web server.
    The external web server URL sends the user to a login page. Then the           user can use a pre-authentication access control list (ACL) in order to access           the server. The ACL is only needed for the Wireless LAN Controller 2000           series.
    The login page takes the user credentials input and sends the request           back to the action_URL, such as http://1.1.1.1/login.html, of           the WLC web server. This is provided as an input parameter to the customer           redirect URL, where 1.1.1.1 is the virtual interface address on the           switch.
    The WLC web server submits the username and password for           authentication.
    The WLC initiates the RADIUS server request or uses the local           database on the WLC, and then authenticates the user.
    If authentication is successful, the WLC web server either forwards           the user to the configured redirect URL or to the URL the client           entered.
    If authentication fails, then the WLC web server redirects the user           back to the customer login URL.
    Note: If the access points (APs) are in FlexConnect mode, a           preauth ACL is irrelevant. Flex ACLs can be used to allow           access to the web server for clients that have not been authenticated.
    For more details, please refer to the following:
    http://www.cisco.com/en/US/tech/tk722/tk809/technologies_tech_note09186a0080bf7d89.shtml#redirect

Maybe you are looking for

  • How can i go back to aussie version of iTunes store

    Im having a problem in iTunes, I switched to the american store by accident and now i cant go back to the australian version!! help me please I think I found it thanx anyway Message was edited by: ajs29

  • I have a MacBook Pro and I need a handheld GPS that is compatable.

    I have a MacBook Pro and I need a handheld GPS that is compatable.

  • TC wireless connection issue

    Hi all, I'm a long time reader, first time poster. I've recently had BT Infinity installed and purchased a Time Capsule which would provide backup for my Macbook but also replace the HH3 that inevitably everyone has forced upon them so the TC would e

  • Removal of Defects filter in Lightroom

    To whom it may interest: I own Lightroom now version 5.3.  Recently I found the following situation: une the Defects remeoval filter, I have 3 commands and not the original 2, and this exist in the latest version.  Further, the invert command suppose

  • Why is my Magic Trackpad sometimes very choppy?

    I have recently started having problems with my Magic Trackpad. I love the thing, but it is now jumping around so much that it makes it close to unusable. I may even have to switch back to a...gasp...regular mouse! Here is what I have done to try to