A redirect Problem

By a default XXXView1_View.uix we can search for a sigle
Row with a input.But I want to let the page display the whole table rows again after a search.How should I do it?
and another problem ,can I set the Row Rangsize for the table at runtime? how should I do it?
thanks.
best regard.
Yong

Hi,hier is a example code generated by wizard. We can search a single row here through selecting e.g. "CountryName" and inputing "Germany",then we can get the single row of "Germany" in the table.And then I want to let the table "refreshed"--> shown as before searching.But I found after searching there would be
ever the selected row in the table.So I want to set a eventhandler to refresh it,but no success.
Code:
<?xml version="1.0" encoding="windows-1252"?>
<page xmlns="http://xmlns.oracle.com/uix/controller"
      xmlns:ctrl="http://xmlns.oracle.com/uix/controller"
      xmlns:ui="http://xmlns.oracle.com/uix/ui"
                xmlns:data="http://xmlns.oracle.com/uix/ui"
      xmlns:bc4j="http://xmlns.oracle.com/uix/bc4j">
  <bc4j:registryDef>
    <bc4j:rootAppModuleDef name="CountriesView1AppModule"
                           definition="CountryUix.CoutrypackageModule"
                           releaseMode="stateful">
      <bc4j:viewObjectDef name="CountriesView1" rangeSize="10"/>
    </bc4j:rootAppModuleDef>
  </bc4j:registryDef>
  <content>
    <try xmlns="http://xmlns.oracle.com/uix/ui"
         xmlns:data="http://xmlns.oracle.com/uix/ui">
      <catch>
        <displayException/>
      </catch>
      <contents>
        <pageLayout xmlns="http://xmlns.oracle.com/uix/ui"
                    xmlns:data="http://xmlns.oracle.com/uix/ui"
                    title="CountriesView1 View">
          <!-- Start of common pageLayout section.  If you plan to expand this
                              example application, consider using a UIT template to specify the common
                              portions of your pageLayout -->
          <productBranding>
            <image source="tools_collage.gif"
                   shortDesc="JDeveloper Product Logo"/>
          </productBranding>
          <corporateBranding>
            <image source="oraclelogo.gif" shortDesc="Oracle Logo"/>
          </corporateBranding>
          <globalButtons>
            <globalButtonBar>
              <contents>
                <globalButton source="www_home.gif" text="Home"
                              destination="Main.uix"/>
                <globalButton source="www_contact.gif" text="Contact Us"
                              destination="http://www.oracle.com"/>
                <globalButton source="www_help.gif" text="Help"
                              destination="http://otn.oracle.com/products/jdev/content.html"/>
              </contents>
            </globalButtonBar>
          </globalButtons>
          <copyright>Copyright 2002 Oracle Corporation.  All Rights Reserved.</copyright>
          <privacy>
            <link text="Privacy Statement" destination="http://www.oracle.com"/>
          </privacy>
          <!-- End of common pageLayout section -->
          <contents>
            <!-- this will contain any validation errors after form
                                   submission -->
            <messageBox automatic="true"/>
            <bc4j:rootAppModuleScope name="CountriesView1AppModule">
              <contents>
                <header text="Search">
                  <contents>
                    <form name="search" method="POST">
                      <contents>
                        <inlineMessage prompt="Search" vAlign="middle">
                          <contents>
                            <flowLayout>
                              <contents>
                                <choice name="attrName"
                                        data:selectedValue="attrName@ctrl:page"
                                        shortDesc="Search Column">
                                  <contents>
                                    <option text="CountryId" value="CountryId"/>
                                    <option text="CountryName"
                                            value="CountryName"/>
                                    <option text="RegionId" value="RegionId"/>
                                  </contents>
                                </choice>
                                <textInput name="attrValue" columns="20"
                                           data:text="attrValue@ctrl:page"
                                           shortDesc="Search"/>
                              </contents>
                            </flowLayout>
                          </contents>
                          <end>
                            <submitButton text="Go" ctrl:event="search"/>
                          </end>
                        </inlineMessage>
                      </contents>
                    </form>
                  </contents>
                </header>
                <header text="Results">
                  <contents>
                    <form name="viewForm" method="POST">
                      <contents>
                        <tableLayout>
                          <contents>
                            <bc4j:viewObjectScope name="CountriesView1">
                              <contents>
                                <bc4j:table name="viewTable" width="80%"
                                            alternateText="No rows found">
                                  <tableSelection>
                                    <!-- single selection for each row in the table -->
                                    <singleSelection selectedIndex="0"
                                                     shortDesc="Select Row">
                                      <contents>
                                        <!-- the update button causes the currently selected
                                                                                                         row to be sent to the update page -->
                                        <submitButton text="Update"
                                                      ctrl:event="update"/>
                                        <!-- the delete button causes the currently selected
                                                                                                         row to be removed -->
                                        <submitButton text="Delete"
                                                      ctrl:event="delete"/>
                                      </contents>
                                    </singleSelection>
                                  </tableSelection>
                                  <!-- the key identifying the current row in the table -->
                                  <bc4j:keyStamp>
                                    <bc4j:rowKey name="key"/>
                                  </bc4j:keyStamp>
                                  <contents>
                                    <!-- A bc4j:column element is added for each attribute
                                                                                               in the ViewObject.  -->
                                    <bc4j:column attrName="CountryId">
                                      <columnHeader>
                                        <bc4j:sortableHeader/>
                                      </columnHeader>
                                      <contents>
                                        <bc4j:input readOnly="true"/>
                                      </contents>
                                    </bc4j:column>
                                    <bc4j:column attrName="CountryName">
                                      <columnHeader>
                                        <bc4j:sortableHeader/>
                                      </columnHeader>
                                      <contents>
                                        <bc4j:input readOnly="true"/>
                                      </contents>
                                    </bc4j:column>
                                    <bc4j:column attrName="RegionId">
                                      <columnHeader>
                                        <bc4j:sortableHeader/>
                                      </columnHeader>
                                      <contents>
                                        <bc4j:input readOnly="true"/>
                                      </contents>
                                    </bc4j:column>
                                  </contents>
                                </bc4j:table>
                              </contents>
                            </bc4j:viewObjectScope>
                          </contents>
                        </tableLayout>
                      </contents>
                    </form>
                  </contents>
                </header>
              </contents>
            </bc4j:rootAppModuleScope>
          </contents>
          <contentFooter>
            <!-- the create button redirects to the create page -->
            <flowLayout>
              <contents>
                <button text="Create" ctrl:event="create"/>
                <button text="reset" ctrl:event="reset"/>
              </contents>
            </flowLayout>
          </contentFooter>
        </pageLayout>
      </contents>
    </try>
  </content>
  <handlers>
    <event name="search">
      <!-- using the ApplicationModule causes it to be checked out from the
                    ApplicationPool.  It is released using stateful mode. -->
      <bc4j:findRootAppModule name="CountriesView1AppModule">
        <!-- establish the ViewObject scope -->
        <bc4j:findViewObject name="CountriesView1">
          <!-- search for the view criteria -->
          <bc4j:findByExample>
            <bc4j:exampleRow ignoreCase="true">
              <bc4j:exampleAttribute>
                <bc4j:nameBinding>
                  <bc4j:parameter name="attrName"/>
                </bc4j:nameBinding>
                <bc4j:valueBinding>
                  <bc4j:parameter name="attrValue"/>
                </bc4j:valueBinding>
              </bc4j:exampleAttribute>
            </bc4j:exampleRow>
          </bc4j:findByExample>
          <bc4j:executeQuery/>
          <!-- store the current search criteria as page properties -->
          <bc4j:setPageProperty name="attrName">
            <bc4j:parameter name="attrName"/>
          </bc4j:setPageProperty>
          <bc4j:setPageProperty name="attrValue">
            <bc4j:parameter name="attrValue"/>
          </bc4j:setPageProperty>
        </bc4j:findViewObject>
      </bc4j:findRootAppModule>
    </event>
    <event name="sort" source="viewTable">
      <!-- using the ApplicationModule causes it to be checked out from the
                    ApplicationPool.  It is released using stateful mode. -->
      <bc4j:findRootAppModule name="CountriesView1AppModule">
        <!-- establish the ViewObject scope -->
        <bc4j:findViewObject name="CountriesView1">
          <!-- sort by the submitted attribute name -->
          <bc4j:sort/>
        </bc4j:findViewObject>
      </bc4j:findRootAppModule>
    </event>
    <event name="goto" source="viewTable">
      <!-- using the ApplicationModule causes it to be checked out from the
                    ApplicationPool.  It is released using stateful mode. -->
      <bc4j:findRootAppModule name="CountriesView1AppModule">
        <!-- establish the ViewObject scope -->
        <bc4j:findViewObject name="CountriesView1">
          <!-- navigate to the submitted range -->
          <bc4j:goto/>
        </bc4j:findViewObject>
      </bc4j:findRootAppModule>
    </event>
    <event name="create">
      <!-- forward to the create page -->
      <ctrl:go name="CountriesView1_Create" redirect="true"/>
    </event>
    <event name="update">
      <!-- forward to the update page, passing the selected key
                    as a page property -->
      <ctrl:go name="CountriesView1_Update" redirect="true">
        <ctrl:property name="key">
          <ctrl:selection name="viewTable" key="key"/>
        </ctrl:property>
      </ctrl:go>
    </event>
    <event name="delete">
      <!-- using the ApplicationModule causes it to be checked out from the
                    ApplicationPool.  It is released using stateful mode. -->
      <bc4j:findRootAppModule name="CountriesView1AppModule">
        <!-- establish the ViewObject scope -->
        <bc4j:findViewObject name="CountriesView1">
          <!-- find the selected Row -->
          <bc4j:findRowByKey>
            <bc4j:keyBinding>
              <bc4j:selectionKey name="viewTable" key="key"/>
            </bc4j:keyBinding>
            <bc4j:handlers>
              <!-- remove the selected ViewObject row -->
              <bc4j:removeRow/>
              <!-- execute the query to eliminate dead row access -->
              <bc4j:executeQuery/>
            </bc4j:handlers>
          </bc4j:findRowByKey>
        </bc4j:findViewObject>
        <!-- commit the transaction, forwards to self automatically -->
        <bc4j:commit/>
      </bc4j:findRootAppModule></event>
      <event name="reset">
        <!-- using the ApplicationModule causes it to be checked out from the
                              ApplicationPool.  It is released using stateful mode. -->
        <bc4j:findRootAppModule name="CountriesView1AppModule">
          <!-- establish the ViewObject scope -->
          <bc4j:findViewObject name="CountriesView1">
            <method class="com.ge.med.medora.EventClass"
                    method="handleResetRangeSize">
            </method>
                              <bc4j:goto/>
          </bc4j:findViewObject>
        </bc4j:findRootAppModule>
      </event>
  </handlers>
</page>==========================
Best Regards.
Yong

Similar Messages

  • 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.

  • 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.

  • 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

  • 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! 

  • Redirect problem in IE 9

    Hi,
    i made a custom page sentry function to authorize via NTLM. It works fine with IE 8 and Firefox.
    With IE 9 (Windows 7) the redirect via <meta http-equiv="refresh" content="0; URL=' || vUrl || '" />'); doesn't work. The user sees the html code and has then manually press the refresh button for going on to the 1st page in the application.
    Here i have my Proof-of-Concept http://www.greenit.li/greenIT/Willkommen_files/Oracle_APEX_ProofOfConceptNTLMPLSQL.pdf
    Has somebody an idea how to solve this problem?
    Thanks in advance.
    Regards,
    Martin

    Hi Martin,
    I think you should use
    sys.owa_util.mime_header('text/html', FALSE);after the
    htp.init;so that the browser knows it's HTML code.
    BTW, the PL/SQL based NTML authentication approach isn't really secure because it's not verifying the user/pwd with an MS Active Directory server.
    Regards
    Patrick
    My Blog: http://www.inside-oracle-apex.com
    APEX 4.0 Plug-Ins: http://apex.oracle.com/plugins
    Twitter: http://www.twitter.com/patrickwolf

  • J_security_check redirection problems impossible to solve

    Hi!
    I've been searching and trying to solve this problem for a couple of days now. I'm new in JDeveloper development and defined ADF security. Authentication works fine, since after I try to go to protected (security-constraint) page, the login page appears and then after the login, if I type the address to the same page again, I can view it. The problem is that j_security_check doesn't redirect me to this page. I've tried everything, using different redirection pages, with faces, without, with /*, without, ... I always got 404 not found page.
    Then, with the help of File monitor we figured out that jawaw.exe process is looking for some css file in the subfolders of login page folder. When we put the folder with css file there, we don't get 404 page anymore, but j_security_check redirects us to this css file?!?!? If I then delete the session cookies and login again, 404 page appears again.
    What is wrong? PLEASE! I'm giving up here.
    I've searched files in entire application that include this css file but haven't found it anywhere that it shouldn't be.
    I would really appreciate any help on this since I don't know what to do any more.
    Cheers, BB!

    I am facing exactly the same issue, login page works fine with JAAS, but i get 404 page not found error. If i put the url of the page directly in url after authentication, then it works fine.my login page is not in WEB_INF folder
    --Mukul                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

  • Page redirection problem in Oracle EBS 11.5.10

    Hi All
    I did a fresh install of Oracle EBS 11.5.10 in centos 5.3 . After the install I am getting error while logging in to the application.
    " f7
    Found
    The document has moved here.
    0
    When I click the hiperlink <here> i get redirected to the application home page. I am not able to open any forms after that.
    Can anyone guess where is the problem and advise the solution.
    Thanks
    Ridhi Sundar

    I did a fresh install of Oracle EBS 11.5.10 in centos 5.3 . After the install I am getting error while logging in to the application.Are you trying to access the application from a Linux client? If yes, and even though your installation completed successfully please note that Linux is not certified as a client tier -- https://forums.oracle.com/forums/search.jspa?threadID=&q=Linux+AND+Client&objID=c3&dateRange=all&userID=&numResults=15&rankBy=10001
    Thanks,
    Hussein

  • Web service url redirecting problem

    I am working on a form developed by LC Designer that will call a web service from our web server.
    In the WSDL, the soap address location points to www.domain.com/webservice1,
    however our web server will perform load balance by directing all www.domain.com to a new url
    either www1.domain.com or www2.domain.com.
    The result is that nothing is returned after executing the webservice call, I can't catch any error
    after xfa.connectionSet.WebServiceDC.execute(false); just nothing returns after the call.
    I suppose it is the problem that the url has been redirected to a different one.
    However if the soap address location points directly to either www1 or www2, the call returns result alright.
    Is there way or script that I can handle by redirecting a web service to a different URL like that in Adobe Flex?
    That is what I found from the web for Adobe Flex :
    public function onLoginResult(event:ResultEvent):void {
    //Extract the new service endpoint from the login result. 
    var newServiceURL = event.result.serverUrl;
    // Redirect all service operations to the URL received in the login result. 
        serviceName.endpointURI=newServiceURL;
    Best Rgds.

    A helpful poster on the House of Fusion forums pointed me to
    a work-around:
    Apparently ColdFusion just uses the WSDL to create the sub
    objects for the web service call, so as long as there is a service
    port address secified in the WSDL it doesn't matter where the
    actual WSDL file sits. So I just downloaded the WSDL using CFHTTP
    (had to use this article to configure CFHTTP for HTTP Compression:
    http://www.talkingtree.com/blog/index.cfm/2004/7/28/20040729)
    and then I pointed my CF Administrator to the WSDL on my local
    machine. And Presto - I can connect to the web service no problem
    now.
    Only problem is that I have to download the WSDL every time
    there is a change to the webservice, but I can schedule a task that
    downloads the file once a week or so.

  • ISE CWA redirection problem for Apple devices

    Hi,
    I'm testing some guest scenarios (CWA) in my lab using ISE1.3 and WLC2504 (7.6.130).
    I have noticed that redirection to ISE portal doesn't work for apple devices (iOS 7 and later).All other devices like laptops,androids etc work fine.
    Seems that the workaround on WLC that bypasses the CNA on iDevices doesn't work in my case.The device tries to open the ISE portal and shows just a blank page (attached photo)
    The problem doesn't appear for devices with iOS 6 but only for newer versions.
    I've also tried with version 8.0 on WLC without success.
    Any advise?
    Regards. 

    Captive portal/wispr support for apple ios7
    CSCuj18674
    Description
    Symptom:
    When attempting to access the Guest Portal with an Apple iOS 7 device while the WLC "Captive Portal Bypass" feature is enabled, the web sheet on the device still appears, preventing the user from continuing the flow.
    Conditions:
    The Apple device is running Apple iOS 7.
    Workaround:
    In the ACL on the WLC used for captive portal redirection and exemption of special traffic for the Guest Portal, add exemptions for the IP resources that resolve from "www.appleiphonecell.com" and "captive.apple.com" FQDNs.
    IMPORTANT NOTE: These IP addresses are associated with the FQDNs of "www.appleiphonecell.com" and "captive.apple.com" and are subject to change by the entities hosting those domains. If the IP addresses do change, the ACL would need to reflect that.

  • ISE - AV Link remediation redirect problem

    Dears,
    Am working on ISE 1.1, and am facing a problem after the posture assessment for a machine, if the machine doesn't have the correct antivirus, the NAC Agent suggest the following link remediation: http://kaspersky.test.com, when the user tries to click on the link, the link is redirecting him to the client provisioning page instead of the right page of the antivirus installer. Even if I try to put the IP address instead of the link http://10.10.10.10 the problem persist.
    Any ideas what could be the problem?
    Thank you in advance
    Regards
    zahi

    Hi,
    If this is for a wired interface then you need to check the redirect acl and make sure that the entry is not redirecting remediation traffic.
    thanks,
    Tarik Admani
    *Please rate helpful posts*

  • The redirect problem in wap

    I have three pages:input.jsp save.go and list.jsp
    --------input.jsp.
    users input some thing in it,and there is a submit button on it. the button linked to "save.go"
    --------save.go
    save.go is a servlet in fact.it will save what the user submited and then redirect to "list.jsp".use:response.sendRedirect("list.jsp");
    ---------list.jsp
    list users' inputs.
    the problem is that in the web browser,I refresh "list.jsp", it won't resubmit user's input,but in the wap browser,it will resubmit user's input. I found that ,in the web browser ,the "list.jsp"'s address in the address bar is"........list.jsp",but in a wap browser or a cellphone, it will be ".......save.go",that's why in the wap browser it will resubmit .
    anybody knows the real reason of this problem??? how does the wap gateway deal with the http302 response?thanks!

    Hi Martin,
    I think you should use
    sys.owa_util.mime_header('text/html', FALSE);after the
    htp.init;so that the browser knows it's HTML code.
    BTW, the PL/SQL based NTML authentication approach isn't really secure because it's not verifying the user/pwd with an MS Active Directory server.
    Regards
    Patrick
    My Blog: http://www.inside-oracle-apex.com
    APEX 4.0 Plug-Ins: http://apex.oracle.com/plugins
    Twitter: http://www.twitter.com/patrickwolf

  • CSS Redirection problem

    Hello,
    I use a CSS 11500. I've problem of redirection HTTPS with Mozilla and Opera (it seems there are no problem with Internet Explorer).
    Mozilla use a URL http://www.example.com:443/blabla instead of https://www.example.com/blabla.
    Here my CSS configuration
    ssl-proxy-list SSL-PROXY
    ssl-server 20
    ssl-server 20 cipher rsa-with-rc4-128-md5 XXXXXXXXXXXXXX
    ssl-server 20 vip address X.X.X.X
    ssl-server 20 rsacert certXXXX
    ssl-server 20 rsakey keyXXXX
    ssl-server 21
    ssl-server 21 cipher rsa-with-rc4-128-md5 X.X.X.X 80
    ssl-server 21 rsacert certXXX
    ssl-server 21 rsakey keyXXX
    ssl-server 21 vip address X.X.X.X
    ssl-server 20 http-header prefix "SSL"
    ssl-server 20 urlrewrite 1 www.example.com sslport 443 clearport 80
    active
    Thank you in advance for your help
    Cedric

    Indeed, the problem isn't the web navigator after to deep with tcpdump.
    The problem is it misses the / at the end of the URL !
    https://xxx.example.com/blabla => the redirect doesn't work => http://www.example.com:443/blabla
    https://xxx.example.com/blabla/ => the redirect work !!
    Our customer don't wish modify their webserver apache. It's possible to find a solution with the CSS ? With a specifiq redirector rule ?
    Thank you in advance
    Best Regards
    Cédric

  • Argh. Please help. Copybook Auut Smartbizsearch redirect problem still!

    Hi,
    I would admit to being a bit of a MAC novice. It could also be said that I may have been a little bit naive in terms of internet security etc in the past. My bad.
    My computer seems to be infected with a DNS changer type bug. Any Google searches in Safari or Firefox come up with results that redirect me to Copybook/Auut/Smartbizsearch type sites. Also, the Google results page looks different to normal in that there are no sponsored links or GoogleAds (not necessarily a bad thing) and if I go back to the results and click on the link again it normally does go the selected page.
    I have found this problem explained in several forums and have followed the advice, as best I can, to get rid of it. I seemed to get some success by running Intego's VirusBarrier X5. The first time I searched in Google, after it had finished scanning and I deleted to 4 pieces of malware that it found, the results page was back to normal but after a little while the **** problem had reappeared. I then ran the scan again but it did not find any malware the second time around!
    Any help would be hugely appreciated as it is really starting to wind me up.
    Thanks in advance.

    Hello hatelodge and welcome to the forums!
    Firstly, you do not need to worry about viruses on a Mac. No virus in the wild has ever affected OS X.
    You do not therefore need to waste money on anti-virus programs. However, as a Mac can pass on Windows viruses to a Windows user, you should download and install the free utility ClamXav from
    http://www.clamxav.com/
    and this is all you need in respect of viruses.
    But as you correctly surmise, Trojans and some other forms of malware can affect even a Mac.
    One example is a Trojan such as the one called 'DNSChanger' or 'OSZ.RSPlug', which can alter the DNS settings of your network connection. This particular Trojan can be inadvertently installed if you have come across certain Quicktime movies where got a window stating that you have to download and install a particular codec in order to see the video.
    If you have agreed to that installation, your system can be infected and your DNS settings altered, which results in your system using the wrong DNS servers, which can slow web surfing to a crawl.
    This can be fixed by downloading and running a freeware utility called DNSChanger Removal Tool which you can download from here:
    http://www.versiontracker.com/dyn/moreinfo/macosx/33696
    Once you have run that utility you have to re-boot your Mac, then reset Safari, and re-enter your DNS settings in System Preferences/Network.

Maybe you are looking for