Verify identity not working

In all of the PC settings windows requires to verify your identity.
In some tabs sentence this just disappears after pressing "Verify" link (nothing else happens), in others verify link is not clickable.
So how can I change One Drive settings for example? (requires verifying)
edit: Windows 10 TP x86 build 9841 

Hi Tymur,
Which account we used on this machine? Could you please explain a bit for the Verify here?
If possible, please share us a screenshot.
If it is an Microsoft Account, there would be no need to verify the current account. We could access PC settings and change the settings there.
If the logon account is a local account, we need to switch to an Microsoft account, or connect to an Microsoft account under
PC settings -> Users and Accounts.
Best regards
Michael Shao
TechNet Community Support

Similar Messages

  • HT5312 my account alreday verify but not working in iphone ? kindly suggest please

    i have verify account of apple id but it's not working in my iphone so please i need your good support how i can enjoying with my iphone ?

    Go to Settings/iTunes & App Stores. Log out, then log in again.

  • IMessage - Blue/Green Identity Not Working!

    Successfully updated iPhone 4 to iOs5 and icloud.
    Want to use iMesage but it is not working. I have checked it is enabled.
    When I compose a new message, I have selected my friend who is an iPhone user who HAS also updated over night.
    The message is coloured green which I believe is normal SMS and it should be coloured blue if it is using iMessage.
    I have tried it with 3 other iPhone users (all updated to ios5) but none of messages are colouring blue!
    Any ideas?

    I had to turn on MMS. Go to /settings/general/network/Cellular Data Network/
    and enter here all the MMS data.
    Then make sure that under /settings/Messages/MMS Messages in on.
    When I did this "the blue bubble" appeared in the message app for contacts using imessage. Also the @ symbol appears next to the spacebar on the keybpard so that you can enter an email address.
    Hope this helps

  • Kodo.util.*Identity not working in 3.3.2?

    Hi, I have been trying to use one of the kodo identity classes for
    application identity:
    <class name="Person"
    identity-type="application"
    objectid-class="kodo.util.LongIdentity"
    unfortunately the enhancer fails on a missing constructor??
    [jdoc] kodo.util.FatalUserException: The objectid-class specified
    by type "class kodo.Person" does not have public a no-args constructor.
    2nd related question: I developed my own LongIdentity that has the missing
    constructor and was planning to use it for most of my object model. on
    some occasions, kodo seems to get confused about using the same
    object-id-class for more than 1 persistent class:
    <class name="Person"
    identity-type="application"
    objectid-class="kodo.AddressId" <!-- similar to
    kodo.util.LongIdentity, used as well by persistent class Address -->
    trying to load by id a Person:
    Person person = (Person) ((KodoPersistenceManager)
    pm).getObjectById(Person.class, ""+2000); // select
    6750 TRACE [main] kodo.jdbc.SQL - <t 31737213, conn 19287723> [0 ms]
    executing prepstmnt 26665270 SELECT t0.CITY, t0.STREET FROM ADDRESS t0
    WHERE t0.ID = ? [params=(long) 2000] [reused=0]
    kodo.util.ObjectNotFoundException: The instance "2000 [kodo.AddressId]"
    does not exist in the data store.[2000 [kodo.AddressId]]
         at
    kodo.runtime.PersistenceManagerImpl.getObjectById(PersistenceManagerImpl.java:2090)
         at
    kodo.runtime.PersistenceManagerImpl.getObjectById(PersistenceManagerImpl.java:2005)
         at
    kodo.runtime.PersistenceManagerImpl.getObjectById(PersistenceManagerImpl.java:2285)
    the problem is that a select on the address table gets executed??
    note: if I make a copy/paste of my AddressId and rename it PersonId, then
    this works fine.
    if all pk are of type long, are we expected to subclass
    kodo.util.LongIdentity and add the default constructor for each persistent
    class?
    thanks for the help,
    v.

    here you go:
    <?xml version="1.0" encoding="UTF-8"?>
    <jdo>
         <package name="kodo">
              <class name="Address" identity-type="application">
                   <extension vendor-name="kodo" key="jdbc-class-map"
    value="base"></extension>
                   <extension vendor-name="kodo" key="jdbc-class-map/table"
    value="ADDRESS"></extension>
                   <extension vendor-name="kodo" key="jdbc-version-ind"
    value="none"></extension>
                   <extension vendor-name="kodo" key="jdbc-class-ind-name"
    value="none"></extension>
                   <extension vendor-name="kodo" key="detachable"
    value="serialize"></extension>
                   <field name="id" primary-key="true">
                        <extension vendor-name="kodo" key="sequence-assigned"
    value="true"></extension>
                        <extension vendor-name="kodo" key="jdbc-field-map"
    value="value"></extension>
                        <extension vendor-name="kodo" key="jdbc-field-map/column"
    value="ID"></extension>
                   </field>
                   <field name="city">
                        <extension vendor-name="kodo" key="jdbc-field-map"
    value="value"></extension>
                        <extension vendor-name="kodo" key="jdbc-field-map/column"
    value="CITY"></extension>
                   </field>
                   <field name="street">
                        <extension vendor-name="kodo" key="jdbc-field-map"
    value="value"></extension>
                        <extension vendor-name="kodo" key="jdbc-field-map/column"
    value="STREET"></extension>
                   </field>
              </class>
              <class name="Person" identity-type="application">
                   <extension vendor-name="kodo" key="jdbc-class-map"
    value="base"></extension>
                   <extension vendor-name="kodo" key="jdbc-class-map/table"
    value="PERSON"></extension>
                   <extension vendor-name="kodo" key="jdbc-version-ind"
    value="none"></extension>
                   <extension vendor-name="kodo" key="jdbc-class-ind-name"
    value="none"></extension>
                   <extension vendor-name="kodo" key="detachable"
    value="serialize"></extension>
                   <field name="addresses" default-fetch-group="true">
                        <collection element-type="kodo.Address">
                        </collection>
                        <extension vendor-name="kodo" key="jdbc-field-map"
    value="one-many"></extension>
                        <extension vendor-name="kodo" key="jdbc-field-map/ref-column.ID"
    value="P_ID"></extension>
                        <extension vendor-name="kodo" key="jdbc-field-map/table"
    value="ADDRESS"></extension>
                   </field>
                   <field name="firstname">
                        <extension vendor-name="kodo" key="jdbc-field-map"
    value="value"></extension>
                        <extension vendor-name="kodo" key="jdbc-field-map/column"
    value="FIRSTNAME"></extension>
                   </field>
                   <field name="id" primary-key="true">
                        <extension vendor-name="kodo" key="sequence-assigned"
    value="true"></extension>
                        <extension vendor-name="kodo" key="jdbc-field-map"
    value="value"></extension>
                        <extension vendor-name="kodo" key="jdbc-field-map/column"
    value="ID"></extension>
                   </field>
                   <field name="lastname">
                        <extension vendor-name="kodo" key="jdbc-field-map"
    value="value"></extension>
                        <extension vendor-name="kodo" key="jdbc-field-map/column"
    value="LASTNAME"></extension>
                   </field>
              </class>
         </package>
         <!--
              To use additional vendor extensions, create a vendor-extensions.xml file
    that
              contains the additional extensions (in extension tags) and place it in
    your
              projects merge dir.
         -->
    </jdo>
    Patrick Linskey wrote:
    Hi Vincent,
    Can you post the .jdo file that XDoclet is creating please?
    -Patrick
    Vincent Sevel wrote:
    I tried that but run into another exception:
    * @jdo.persistence-capable identity-type="application"
    * @jdo.class-vendor-extension vendor-name="kodo" key="jdbc-class-map"
    value="base"
    * @jdo.class-vendor-extension vendor-name="kodo"
    key="jdbc-class-map/table" value="PERSON"
    * @jdo.class-vendor-extension vendor-name="kodo" key="jdbc-version-ind"
    value="none"
    * @jdo.class-vendor-extension vendor-name="kodo"
    key="jdbc-class-ind-name" value="none"
    * @jdo.class-vendor-extension vendor-name="kodo" key="detachable"
    value="serialize"
    public class Person implements Serializable {
    * @jdo.field primary-key="true"
    * @jdo.field-vendor-extension vendor-name="kodo"
    key="sequence-assigned" value="true"
    * @jdo.field-vendor-extension vendor-name="kodo" key="jdbc-field-map"
    value="value"
    * @jdo.field-vendor-extension vendor-name="kodo"
    key="jdbc-field-map/column" value="ID"
    private Long id;
    javax.jdo.JDOFatalInternalException
         at kodo.Person.jdoNewObjectIdInstance(Person.java)
         at kodo.util.ApplicationIds.create(ApplicationIds.java:280)
         at
    kodo.runtime.PersistenceManagerImpl.makePersistent(PersistenceManagerImpl.java:2424)
         at
    kodo.runtime.PersistenceManagerImpl.makePersistent(PersistenceManagerImpl.java:2371)
    >>
    Person p1 = new Person();
    p1.setFirstname("vince");
    p1.setLastname("sevel");
    Address adr1 = new Address();
    adr1.setStreet("1er mai");
    adr1.setCity("geneve");
    p1.getAddresses().add(adr1);
    pm.makePersistent(p1);
    I must be missing a flag or property somewhere??
    thanks,
    v.
    Abe White wrote:
    When using single field identity in JDO, you don't list an objectid-class
    at
    >>
    all
    in your metadata. Just set identity-type to "application".

  • Verify Database not working!

    Hello everyone,
    I have a requirement for a database to be verified everytime the report is run, because of the dynamic nature of the data behind the report.  However, the ReportClientDocument.verifyDatabase() is not behaving as I think it should.  I assume it should behave the same as using the 'Verfy Database' comand within CR2008. 
    NOTE:  The report works PERFECTLY without the verifyDatabase() command.  But because of the dynamic nature of the data you have to keep using 'Verify database' via the CR2008 designer!  This is not sustainable.
    Here is my JSP, I will post the error separately for readability:
      //SOME IMPORT DONE HERE
      CrystalReportViewer crystalReportViewer;
      ReportClientDocument reportClientDocument;
      Object reportSource;
      ParameterFieldController parameterFieldController;
      String reportType = request.getParameter("reporttype");
      if (reportType == null) {
        reportSource = session.getAttribute("reportSource");
      else {
       String reportPath = request.getParameter("report");
       String DB_USER_NAME = new String(Base64.base64ToByteArray(request.getParameter("dbusername")));
       String DB_PASSWORD = new String(Base64.base64ToByteArray(request.getParameter("dbpassword")));
       reportClientDocument = new ReportClientDocument();
       reportClientDocument.open(reportPath, OpenReportOptions._openAsReadOnly);
       reportClientDocument.getDatabaseController().logon(DB_USER_NAME, DB_PASSWORD);
       IStrings subreportNames = reportClientDocument.getSubreportController().getSubreportNames();
      for (int i = 0; i < subreportNames.size(); i++) {
        ISubreportClientDocument subreportClientDoc = reportClientDocument.getSubreportController().getSubreport(subreportNames.getString(i));
        subreportClientDoc.getDatabaseController().logon(DB_USER_NAME, DB_PASSWORD);
        reportClientDocument.verifyDatabase();
    // SOME PARAMETERS SET HERE
      reportSource = reportClientDocument.getReportSource();
      reportClientDocument.close();
    Does anyone have any examples of how to use the verifyDatabase, or can you see where I am going wrong?
    Best Regards
    Nick Hirst

    The error reads:
    com.crystaldecisions.sdk.occa.report.lib.ReportSDKException: java.lang.NullPointerException---- Error code:-2147467259 Error code name:failed
         com.businessobjects.reports.sdk.JRCCommunicationAdapter.if(Unknown Source)
         com.businessobjects.reports.sdk.JRCCommunicationAdapter.a(Unknown Source)
         com.businessobjects.reports.sdk.JRCCommunicationAdapter$2.a(Unknown Source)
         com.businessobjects.reports.sdk.JRCCommunicationAdapter$2.call(Unknown Source)
         com.crystaldecisions.reports.common.ThreadGuard.syncExecute(Unknown Source)
         com.businessobjects.reports.sdk.JRCCommunicationAdapter.for(Unknown Source)
         com.businessobjects.reports.sdk.JRCCommunicationAdapter.int(Unknown Source)
         com.businessobjects.reports.sdk.JRCCommunicationAdapter.request(Unknown Source)
         com.businessobjects.sdk.erom.jrc.a.a(Unknown Source)
         com.businessobjects.sdk.erom.jrc.a.execute(Unknown Source)
         com.crystaldecisions.proxy.remoteagent.RemoteAgent$a.execute(Unknown Source)
         com.crystaldecisions.proxy.remoteagent.CommunicationChannel.a(Unknown Source)
         com.crystaldecisions.proxy.remoteagent.RemoteAgent.a(Unknown Source)
         com.crystaldecisions.sdk.occa.report.application.ReportClientDocument.if(Unknown Source)
         com.crystaldecisions.sdk.occa.report.application.ReportClientDocument.a(Unknown Source)
         com.crystaldecisions.sdk.occa.report.application.ReportClientDocument.new(Unknown Source)
         com.crystaldecisions.sdk.occa.report.application.ReportClientDocument.verifyDatabase(Unknown Source)
         com.crystaldecisions.reports.sdk.ReportClientDocument.verifyDatabase(Unknown Source)
         org.apache.jsp.CrystalReportViewer_jsp._jspService(CrystalReportViewer_jsp.java:91)
         org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:70)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:717)
         org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:377)
         org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:313)
         org.apache.jasper.servlet.JspServlet.service(JspServlet.java:260)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:717)

  • DIsk verify/repair not working

    My computer seemed a bit slow and slightly erratic so it seemed time for a rerun of disk utility. Disk repair ran so far, then exited leaving an error message: 'The underlying task reported failure on exit'. I tried verify, then repair permissions, both stated "No valid packages". So I then started up with install disk and Disk Utility ran repair successfully - but verify or repair from the CD still gave 'No valid packages' Can anyone tell me what this means and what I should do?
    The machine still seems to start and run OK. My 60Mb disk has about 8.5 Mb free. Is this insufficient and has this affected anything.
    Thanks for your potential contributions all you experts out there.

    The machine still seems to start and run OK. My 60Mb disk has about 8.5 Mb free. Is this insufficient and has this affected anything.
    I assume you mean GB, not MB. 8.5GB is kind of getting down there for Tiger and could have contributed to this, especially if the disk has been in use for a long time with large files and files may have become highly fragmented.
    If Disk Utility won't repair a volume you have two options.
    One is to copy off what files you can (bearing in mind that your directory has errors so it may not 100% know where all the bits and pieces are to all the files). Then erase the drive, reinstall the operating system, copy files back on.
    Another is to buy a utility such as Diskwarrior and let it rebuild the directory. This will be a lot faster, but will, of course, cost about $100 for the software. Other software packages (TechToolPro, Drive Genius, etc.) may be able to do the same. DW is a one trick application but is probably the best at what it does.
    Many say keep 15% of your drive free at all times for OSX to have room to run. With a 60GB HD that's only 9GB (which is why I don't like that "15%" recommendation since on a 2TB drive that would be 300GB which is ridiculously large). I check my virtual memory use in Activity Monitor and see that for my computer this is usually 6GB. I figure maybe 3x that is good for wiggle room and try to leave 18GB free at all times.

  • TS3988 Apple id verified but not working

    I have set up apple id and verified email address but when I go to set up iCloud or try download off iTunes it says my email hasn't been verified, but it has according to email. Can anyone help?

    Apple ID security issues -
    Account security issues almost always require you to speak directly to an Apple representative to securely establish your identity as the account holder. You can set it up so that Apple calls you, either immediately or at a time convenient to you.
    1. Go to www.apple.com/support
    2. Choose Contact Support and click Contact Us
    3. Choose Other Apple ID Topics and choose the appropriate topic for your issue
    4. Follow the onscreen instructions

  • Identit-E / Education Verification still not working

    So I bought LR from Adobe website on March 30th, 2012 and it's May 1, 2012 so you can see why this is irritationg.  I have been passed back and forth between the chat pepople from Adobe and the Customer Service at Identit-E with no answers.  I have given screen shots, source codes, and emailed my proof directly to Adobe email address and nothing has happened.  This is by far the very worst custmer service situation I have ever been in.
    What no one seems to understand is when you sign in and click on your order and then submit proof, it brings up the Identit-E website where you fill in your State, City, and Name of Institution - You can drop down and fill in everything EXCEPT the Insitution.  You CAN NOT hit submit or proceed to obtain a product code because big red letters say "You must provide the name of your institution."  So every one of the customer serivce reps I talk to who keep asking for this from me - it will NOT generate for the 564898237 time.
    I have tried it from 6 different computers in different cities, Chrome, Google, IE - even from behind a public univeristy firewall and nothing happens.  Seems like now there is a house icon that spins in a circle and says loading.
    But I beg the question that since this is Student verification, do you not think people might need this for school?  I am irate plain and simple.  I don't know what is so hard to figure out that you relational database is not coded correctly nd obvioulsy the path to dropdown and pull SQL of somesort is not working.  It's been over a month and I would really like to get what I paid for. 
    I wonder how many people are failing a class because of this - how do we file a complaint to request reimbursement of tutition?

    I have tons and don't know where to start...
    I bought directly from the Adobe Website.  The then get an email to go to  http://www.adobe.com/go/my_orders_en_us  and I click on Submit proof.  It then takes me to the Identiti-E page.  My first and Last name are filled in, as well as the US.  The choose state, then city, and then when you try and choose your instutuion, it does not load - nothing ever drops down and a little house icon spins.  This means you are not able to select a School.  This means you can NOT hit submit and you can NOT get a product code.  You recieve the error you can not go on.
    The website you provided the very first step asks for a product code, which is the very thing no one from Adobe or Identit-E can seem to comprehend you can't get one of these!
    I have multiple tickets and chats with Adobe and Identiti as both have been sending me back and forth saying it's not their problem and to go here or there.
    I have sent Identiti-E screen shots as well as source code.
    Not to mention Adobe customer service said since I was having trouble to send my proof to - [email protected]  to manually approve and that customer service would get back to me a couple days...yeah that never happened and I tried that avenue 3 times.
    This has been going on since March 30th.  It is now May 4th.  The fact that this is student edition would imply that maybe the students might need it for class and projects and a wait time of over a month is just absolutely ridiculous - and by the looks of it, I know I'm not the only one with trouble.
    Adobe Customer Service Chat - 4/5/12: Sheik
    Identit-E Customer Service - 4/6/12: Veronica Drake - [email protected]
    Adobe Customer Service Chat - 4/6/12: Srinath S
    Email from Adobe saying they closed my case 4/6/12 : closed your case 0208088547
    Email from Adobe case update since I re-opened it 4/6/12:  Your customer identification number is: 0255468757.  This email is in response to support case #0208091603 submitted by Doug Spencer.
    Adobe Email - 4/7/12: Proof of Academic Status Recieved
    Email from Adobe case update since I re-opened it 4/7/12 :  Your customer identification number is: 0255468757.  This email is in response to support case #0208091603 submitted by Doug Spencer.
    Adobe Email - 4/9/12: Proof of Academic Status Recieved
    Email from Veronics Drake 4/13/12 : Ticket ID: OCU-498-58487 : Asked for source code on the webpage that isnt population the schools
    Adobe Customer Service Chat - 4/16/12: Ashish P
    Opened up another ticket with Identit-E since they sent me to Adobe saying it was Adobe's problem, then Adobe sent me back to them 4/16/12:  Ticket ID: RZA-278-62749
    Adobe Customer Service Chat - 4/16/12: Kausar
    Email from Veronics Drake 4/18/12 :  "Thanks so much for the source file. I forwarded it to my supervisor and he'll be able to figure out what's been going wrong. I'm sorry about that. I believe that we need to figure this out rather than Adobe. Again, I'm very sorry for all the inconvenience!"
    Email from Veronics Drake 4/18/12 : "As I said in my previous email, now that we have your page source file, we are trying to figure out what has been going wrong.
    We need to figure this out, because otherwise you won't be able to obtain the product code, without which we can't help you. So, we're trying to do everything we can here. I understand that this is frustrating, but we're doing everything we can, so please refrain from personal attacks in the future." 
    - Because I am mad since no one gives me answers, apparetly I am attacking people...very interesting...
    Email from Identit-E after I submitted a ticket once again after hearing nothing 5/1/12:  Ticket ID: SVE-476-63784
    This doesnt include some emails I sent with no response given.  Also in the midst of this, my password was mysterisouly re-set twice. 
    Here is my record from Adobe account :
    Recent activity
    4/30/12
    Case #0208091603: Edu order fulfillment.
    Open - Pending Adobe Response
    4/16/12
    Case #0208144676: Chat:EDU Orderfulfillment (CH53518995)
    Withdrawn
    4/16/12
    Case #0208144651: Chat:duplicate (CH53518995)
    Withdrawn
    4/10/12
    Case #0208088547: Chat:Submit POE (CH92768011)
    Withdrawn
    3/14/12
    Case #0207872980: PAU
    Withdrawn
    I dont know what else to give anyone at this point. 

  • I upgraded for Firefox 4 and now my simplePass identity protection (biometric scanner) on my laptop will not work. WHY? It still works with IE but I don't use IE.

    I upgraded for Firefox 4 and now my HP SimplePass Identity Protection (biometric scanner) on my laptop will not work. WHY? It still works with IE but I don't use IE. It worked with the previous Firefox version but now when I use the internet, it doesn't even acknowledge I have the scanner. When I run my finger over it, it opens the settings panel but does not allow use of the already saved information or allow new information to be entered. I need this corrected. Any suggestions?

    I asked this same question, and just received a response:
    "Thank you for contacting DigitalPersona. There will be no update releases
    for DigitalPersona Personal in the future. There will be no updates for
    Firefox 4 nor Internet Explorer 9. IF they work they work, if they do
    not work with DPPersonal, then you will have to decide to either keep
    DPPersonal and forgo Firefox 4 or IE 9, or vice versa. DigitalPersona
    is leaving the consumer market and is focusing on business applications.
    In fact, DigitalPersona Personal will not longer be supported after
    Mid-April of this year.
    We apologize for any inconvenience this might cause. Sincerely, Tech Team "
    In other words, there will be NO update.

  • I'm trying to create a new ichat Acc because for some reason the old one is not working, so I go to Create an Apple ID and start creating a new apple ID, when I submit the Acc it tells me that my Email address is already verified for another Apple ID and

    I'm trying to create a new ichat Acc because for some reason the old one is not working, so I go to Create an Apple ID and start creating a new apple ID, when I submit the Acc it tells me that my Email address is already verified for another Apple ID and thats the only email address I have... What can I do?

    There is no way to consolidate iTunes accounts.
    Setting up an iPhone has never required creation of a new Apple ID.
    You've apparently purchased content with both Apple ID's.  Sign into the device with the correct Apple ID and sync the content.

  • Not Working-central web-authentication with a switch and Identity Service Engine

    on the followup the document "Configuration example : central web-authentication with a switch and Identity Service Engine" by Nicolas Darchis, since the redirection on the switch is not working, i'm asking for your help...
    I'm using ISE Version : 1.0.4.573 and WS-C2960-24PC-L w/software 12.2(55)SE1 and image C2960-LANBASEK9-M for the access.
    The interface configuration looks like this:
    interface FastEthernet0/24
    switchport access vlan 6
    switchport mode access
    switchport voice vlan 20
    ip access-group webauth in
    authentication event fail action next-method
    authentication event server dead action authorize
    authentication event server alive action reinitialize
    authentication order mab
    authentication priority mab
    authentication port-control auto
    authentication periodic
    authentication timer reauthenticate server
    authentication violation restrict
    mab
    spanning-tree portfast
    end
    The ACL's
    Extended IP access list webauth
        10 permit ip any any
    Extended IP access list redirect
        10 deny ip any host 172.22.2.38
        20 permit tcp any any eq www
        30 permit tcp any any eq 443
    The ISE side configuration I follow it step by step...
    When I conect the XP client, e see the following Autenthication session...
    swlx0x0x#show authentication sessions interface fastEthernet 0/24
               Interface:  FastEthernet0/24
              MAC Address:  0015.c549.5c99
               IP Address:  172.22.3.184
                User-Name:  00-15-C5-49-5C-99
                   Status:  Authz Success
                   Domain:  DATA
           Oper host mode:  single-host
         Oper control dir:  both
            Authorized By:  Authentication Server
               Vlan Group:  N/A
         URL Redirect ACL:  redirect
             URL Redirect: https://ISE-ip:8443/guestportal/gateway?sessionId=AC16011F000000510B44FBD2&action=cwa
          Session timeout:  N/A
             Idle timeout:  N/A
        Common Session ID:  AC16011F000000490AC1A9E2
          Acct Session ID:  0x00000077
                   Handle:  0xB7000049
    Runnable methods list:
           Method   State
           mab      Authc Success
    But there is no redirection, and I get the the following message on switch console:
    756005: Mar 28 11:40:30: epm-redirect:IP=172.22.3.184: No redirection policy for this host
    756006: Mar 28 11:40:30: epm-redirect:IDB=FastEthernet0/24: In epm_host_ingress_traffic_qualify ...
    I have to mention I'm using an http proxy on port 8080...
    Any Ideas on what is going wrong?
    Regards
    Nuno

    OK, so I upgraded the IOS to version
    SW Version: 12.2(55)SE5, SW Image: C2960-LANBASEK9-M
    I tweak with ACL's to the following:
    Extended IP access list redirect
        10 permit ip any any (13 matches)
    and created a DACL that is downloaded along with the authentication
    Extended IP access list xACSACLx-IP-redirect-4f743d58 (per-user)
        10 permit ip any any
    I can see the epm session
    swlx0x0x#show epm session ip 172.22.3.74
         Admission feature:  DOT1X
         ACS ACL:  xACSACLx-IP-redirect-4f743d58
         URL Redirect ACL:  redirect
         URL Redirect:  https://ISE-ip:8443/guestportal/gateway?sessionId=AC16011F000000510B44FBD2&action=cwa
    And authentication
    swlx0x0x#show authentication sessions interface fastEthernet 0/24
         Interface:  FastEthernet0/24
         MAC Address:  0015.c549.5c99
         IP Address:  172.22.3.74
         User-Name:  00-15-C5-49-5C-99
         Status:  Authz Success
         Domain:  DATA
         Oper host mode:  multi-auth
         Oper control dir:  both
         Authorized By:  Authentication Server
         Vlan Group:  N/A
         ACS ACL:  xACSACLx-IP-redirect-4f743d58
         URL Redirect ACL:  redirect
         URL Redirect:  https://ISE-ip:8443/guestportal/gateway?sessionId=AC16011F000000510B44FBD2&action=cwa
         Session timeout:  N/A
         Idle timeout:  N/A
         Common Session ID:  AC16011F000000160042BD98
         Acct Session ID:  0x0000001B
         Handle:  0x90000016
         Runnable methods list:
         Method   State
         mab      Authc Success
    on the logging, I get the following messages...
    017857: Mar 29 11:27:04: epm-redirect:IDB=FastEthernet0/24: In epm_host_ingress_traffic_qualify ...
    017858: Mar 29 11:27:04: epm-redirect:epm_redirect_cache_gen_hash: IP=172.22.3.74 Hash=271
    017859: Mar 29 11:27:04: epm-redirect:IP=172.22.3.74: CacheEntryGet Success
    017860: Mar 29 11:27:04: epm-redirect:IP=172.22.3.74: Ingress packet on [idb= FastEthernet0/24] matched with [acl=redirect]
    017861: Mar 29 11:27:04: epm-redirect:IDB=FastEthernet0/24: Enqueue the packet with if_input=FastEthernet0/24
    017862: Mar 29 11:27:04: epm-redirect:IDB=FastEthernet0/24: In epm_host_ingress_traffic_process ...
    017863: Mar 29 11:27:04: epm-redirect:IDB=FastEthernet0/24: Not an HTTP(s) packet
    What I'm I missing?

  • HT4865 Have tried to verify my icloud account, but its not working the Verifying screen is just scrolling round, but not doing anything

    Have tried to verify my icloud account, but its not working, the Verifying screen has been scrolling for ages now, it seems stuck, but it wont let me do anything, please help

    " I ordered the Snow Leopard software and tried installing it, but it stopped and said to clean the disk."
    First off, your installation disc is in all likelihood faulty.
    This has been a known issue in the past:
    Faulty Snow Leopard install discs - Apple has no timeline on ...
    http://store.apple.com/us/help/returns_refund#policy:
    *You can return software, provided that it has not been installed on any computer. Software that contains a printed software license may not be returned if the seal or sticker on the software media packaging is broken.

  • HT201320 I have IOS 7 5S and using mail. Receiving works great. Sending mail will not work. Using Centurylink. On my IOS 6 Iphone 4 it works great. Compared settings and they are identical. Now what?

    I have IOS 7 5S and using mail. Receiving works great. Sending mail will not work. Using Centurylink. On my IOS 6 Iphone 4 it works great. Compared settings and they are identical. Now what?

    Well, this is a recurring issue for many users...a small percentage of users but still a bug.  Report the issue here to Apple:  www.apple.com/feedback
    iOS7.0.3 will be released next week, which as of now, I know is primarily for an iMessage but hopefully it will clear up some of these email issues some are also having.

  • Hi, my apple ID verification email does not contain the link for me to click in order to verify my account. Re-submitting has not worked, what can i do to verify/activate my account

    Hi, my apple ID verification email does not contain the link for me to click in order to verify my account. Re-submitting has not worked, what can i do to verify/activate my account in order to access Icloud?

    If you want to change your iCloud ID or password on your phone go to Settings>iCloud and tap Delete Account, then sign back in with your updated information.  Note: this only deletes the account and any synced data from your phone, not from iCloud.  Provided you are signing back into the same account and not changing accounts it will be synced back to your device when you sign back in.

  • HT5622 why after my verify apple id still not working my down load apps

    why after m verify id stil not working my down load apps

    Who knows?
    Settings>iTunes and App Stores>Tap your ID and sign out. Reboot your iPad.
    Reboot the iPad by holding down on the sleep and home buttons at the same time for about 10-15 seconds until the Apple Logo appears - ignore the red slider - let go of the buttons.
    Go back to the settings and sign back in again and see of it works now.
    If it doesn't work, post back with some information that might help us help you. Describe what you are doing in some detail and it might let us better understand why this is happening.

Maybe you are looking for

  • New T61 TP running very slow

    New to this board, so patience please! 3 weeks ago purchased a new T61 w/2.0GHz Intel duo core, 2 GB RAM and a 150GB HDD.  Running XP Pro.  Like the weight and feel but the performance is very, very slow.  Takes 3-5 minutes to boot and when toggling

  • Iphone 3GS 8GB reborn?

    Hi everyone, I have heard that Iphone 3GS 8Gb is reborn. Is it true or it's just a rumor? Thanks

  • How to ignore the popup message in TCD mode

    Hi All, I'm relatively new to all this. Could anyone kindly show me how to ignore those pop up message (which requires click 'yes' 'no') during the TCD recording and replay? The trouble I'm having at the moment is that depending on the effective star

  • Wrong Page Displaying as 1st Page in Generated Help

    I have designated the following topic as the start page for the WebHelp I'm generating: C:\12.1\CoreDevelopment\Main\src\MResources\Help\WebHelp\Help_Landing_Page.htm However, after the WebHelp is generated, it's actually showing some other file as t

  • Java Preferences

    Hi, first of all i apologize for my english. I need configure Java from Mac, and The Java Preferences windows not save the change. I write the next argument -Dfile.encoding=ISO-8859-1, but when i run one applet not use this encoding. And if i open ja