Authentication issue for Fedrated in Windows Phone mdm

Hi group , i am implementing Windows phone MDM using Federated authentication mode. I succeeded in  OnPremise authentication mode. But if use  Federated authentication mode i am seeing following errors in logs. I am using windows phone
8.1 device. I added EnrollmentPolicyServiceUrl,EnrollmentServiceUrl,AuthenticationServiceUrl
in xml.
GetEndpointsFromResponse() uses authentication mode (NULL). , 1, 45.574597604
 Unknown authentication mode (NULL) is used.
 Data transmission attempt (1) failed with (2149056518). , 1, 45.575081406
 [MDM Enroll End] Error HRESULT: 0x8018000
Any advise would be greatly appreciated.

This error suggests that the AuthPolicy node of your discovery response is either empty or could not be found. 
Can you post the payload of your discovery response in this case?
Eric Fleck, Windows Store and Windows Phone Developer Support. If you would like to provide feedback or suggestions for future improvements to the Windows Phone SDK please go to http://wpdev.uservoice.com/ where you can post your suggestions and/or cast
your votes for existing suggestions.

Similar Messages

  • Is there a timeline for availability on Windows Phone of W10?

    The vision of Microsoft is to have one integrated OS for workstation and phone.
    As part of the technical preview of W10 we would like to plan the W10 phone trials.
    Is there a timeline for availability on Windows Phone of W10 operating system?
    appreciate your answer,
    regards,
    Frank

    You may follow Window Blog:
    http://blogs.windows.com/
    And all information and announcements will be posted there.
    If you are looking for Universal Apps (which they could run both in Windows and Windows Phone), take a look at:
    http://msdn.microsoft.com/en-us/library/windows/apps/dn609832.aspx

  • ActiveSync autodiscover not working for iPhone but for Android and Windows Phone

    Hi
    We have setup an Exchange 2013 hosted environment, where different mail domains are running on it.
    The main domain is mydomain.com. One of the client domains is customer.com.
    Autodiscover for customer.com has a cname which points to autodiscover.mydomain.com, on our firewall this url is redirected to autodiscover-s.mydomain.com, where our public certificate for mydomain.com is applied. Autodiscover for all
    our customers finally ends at autodiscover-s.mydomain.com.
    Outlook WebApp, Outlook Anywhere and ActiveSync for all customers is reachable through mail.mydomain.com.
    Everything works fine, except of autodiscover for iPhones. I always have to enter the server name mail.mydomain.com manually. After that ActiveSync works on iPhones as well.
    The Problem doesn’t exist on Androids and Windows Phones.
    Any suggestion?
    Regards
    Peter

    Yes, Interestingly same configuration is working in my home lab, but not working at customer. The version is 10.5
    Cannot say wireless issue as jabber for windows is working from wireless

  • Issue sideloading app on windows phone.

    I have a windows phone 8.1 running windows phone 8.1 update preview.
    Prompts me for "Add Workplace account?" instead of the 'install company app' when I download and install the AET.aetx certificate.
    The app never appears in the applist. 
    Please advise where i'm going wrong. 
    Thank you,
    Lou

    Hello,
    same issue with my app.
    After generating the app I received e-mail with instructions and links how to install it.
    Steps:
    1) click install certificate link - asks if I want to install Microsoft Corporation workplace account. Accepted and installed.
    2) click install app link - download the app and then asks if I want to Search the Store.
    My App is not installed. What I'm doing wrong? Some time ago I installed other app with no issues, but after some updates to App Studio I'm not able to do it anymore.
    Maybe there are some conflict with previous certificates? How can I check/remove them?
    Regards,
    Roman

  • ActiveSync and Personal Contact Groups for Mobile (incl Windows Phone)

    Hello,
    As more MDM's (including BES10, Airwatch, native Windows Phone etc - besides Good For Enterprise) are moving towards EAS for enterprise e-mail sync, and I myself have 2 devices which have forced me to use EAS, I noticed that the various personal contact
    groups that I've created in Outlook are no longer available from these devices. Only on my BES 7 blackberry torch can I still find the personal distribution lists a.k.a. contact groups (not from GAL, but created in outlook) to appear, probably since it doesn't
    use EAS.Is there a way to enable syncing personal distribution lists? It seems to be a real productivity killer to not have this ability and to try and remember the group's members or select them especially for larger lists each time.
    Thank you

    Thanks for the reply (although the link you provided is referencing using Outlook 2013 for Outlook.com type hosted accounts). My situation is Outlook in an on-prem enterprise Exchange environment but with mobile devices that connect to exchange via EAS.
    If the response is still the same, then my follow up question is - why not? And what is the alternative to "contact groups" in the EAS world?

  • How to open standard New Contact Dialog and set phone for it on WIndows Phone 8.1

    It is not possible to add contact to strandard collection. You can add contact only to your application collection. But if your application will be removed you will lost all it contacs.
    That's why I want to open standard windows phone 8.1 dialog for adding new contact user and set Phone in it.
    Is it possible to open standard dialog for adding contact with specifi info from C# ?
    My .NET Blog with projects and feedback.
    Since May 30, 2014 I am waiting for Microsoft fix
    these 2 bug. If you know how to speed them up, please help

    I guess another option is to have the users log in with there Microsoft account and add contacts to there Microsoft account with the live sdk

  • Transitions for page navigation windows phone 8 VS3013

    Hi. I installed the WPtoolkit and the
    Microsoft.Phone.Controls.Toolkit is under the references in References folder and I still can't use thenamespace
    Microsoft.Phone.Controls.Toolkit.dll in code-behind file? How do I add transition effects between page navigation? Thank you in advance.
    I also tried to add this line in the XAML:
    xmlns:toolkit="clr-namespace:Microsoft.Phone.Controls;assembly=Microsoft.Phone.Controls.Toolkit"

    Here's an example.
    Open a new project and select the Windows Phone Silverlight Databound App template (using this as an example because it has multiple pages already set up).
    Install WPToolkit using Nuget.
    In App.xaml.cs, search for this line:
            RootFrame = new PhoneApplicationFrame();
    and replace it with this:
            RootFrame = new TransitionFrame();
    In both MainPage.xaml and DetailsPage.xaml, add the xmlns:
        xmlns:toolkit="clr-namespace:Microsoft.Phone.Controls;assembly=Microsoft.Phone.Controls.Toolkit"
    and add this xaml before the LayoutRoot:
    <toolkit:TransitionService.NavigationInTransition>
    <toolkit:NavigationInTransition>
    <toolkit:NavigationInTransition.Backward>
    <toolkit:TurnstileTransition Mode="BackwardIn" />
    </toolkit:NavigationInTransition.Backward>
    <toolkit:NavigationInTransition.Forward>
    <toolkit:TurnstileTransition Mode="ForwardIn" />
    </toolkit:NavigationInTransition.Forward>
    </toolkit:NavigationInTransition>
    </toolkit:TransitionService.NavigationInTransition>
    <toolkit:TransitionService.NavigationOutTransition>
    <toolkit:NavigationOutTransition>
    <toolkit:NavigationOutTransition.Backward>
    <toolkit:TurnstileTransition Mode="BackwardOut" />
    </toolkit:NavigationOutTransition.Backward>
    <toolkit:NavigationOutTransition.Forward>
    <toolkit:TurnstileTransition Mode="ForwardOut" />
    </toolkit:NavigationOutTransition.Forward>
    </toolkit:NavigationOutTransition>
    </toolkit:TransitionService.NavigationOutTransition>
    /li>

  • When is the release date for Firefox on Windows Phone? (Specifically the 'phone of the year' - the Lumia1020). Thank you.

    New to the Windows Phone environment (former Apple fanboy/big Android fan)... the Lumia1020 had such an amazing camera, I had to switch. And it's incredible. No regrets so far...I really am surprised how much I like the WP interface... the live tiles/customization is incredible... and they are starting to get all the major apps now (obviously no where near the selection as the competition, but enough of the big ones where I can still function as I did). Sadly though they are still severely lacking in this browser category. Internet Explorer is too slow. Whoever comes to market first - Firefox or Chrome is going to have a monopoly on their hands going forward... I'd highly suggest you get a team of developers and start working on an app as soon as possible. It's a win-win for everyone!
    Thank you

    Currently there are no plans for a version of Firefox for Windows Mobile.

  • Realtime API for http server Windows Phone 8

    Hi. I'm trying to create a realtime connection and I'm trying the figure out how to create consistent realtime connection with the server over http. I achieved this with sockets when I had a VPS and now I need to do the same thing over http server. Is there
    a simple and easy way to achieve this? My aim is to create this
    realtime-consistent connection with Windows Phone 8 Silverlight SDK.
    Thanks in advance

    Take a look at SignalR
    http://channel9.msdn.com/posts/Building-real-time-connected-apps-with-Windows-Phone-8-and-SignalR

  • Hello ~ can anyone tell me if I can get flash player for HTC HD7 windows phone?

    HELLO IS THERE ANYONE OUT THERE THAT CAN TELL ME IF THERE IS A FLASH PLAYER AVAILABLE FOR THE T-MOBILE HTC HD7 WINDOWS MOBILE PHONE? I CANNOT GET ANY ANSWERS OUT OF T-MO & I CANNOT WATCH ALL THOSE FUN VIDEOS WITHOUT IT...I WOULD TRULY APPRECIATE IT....THANKS....JILL

    Apple does not have email support. If you're not getting the email verification from Apple, check your anti-spam filters, on your computer and with your email provider, to make sure that emails from Apple aren't being blocked. You can also try the Security Questions option rather than the email authentication. See:
    http://support.apple.com/kb/HE36
    Otherwise, you'll need to call Apple support:
    http://support.apple.com/kb/HE57
    Regards.

  • CIFS authentication process, for a novice "windows" guy

    i have a virtual network configured with a server2003AD, a NW6.5.8 server with CIFS and an xp pro sp3 with no novell client on it. The XP authenticates to the AD. The CIFS is configured to use the AD domain controller to authenticate.
    Am i to understand that there still needs to be a user in eDir of the same AD name to authenticate to the CIFS share? i have created one, but to get any connection i gave it admin rights to the nw server. I was under the impression, perhaps mistakenly, that by configuring CIFS to use the AD server, that as long as a user workstation was authenticated to the AD, the NW CIFS would check the AD for credentials and serve the share, no questions asked, without a user in eDir.
    I managed to get a mapped drive with my edir user name and password, however it isn't allowing access to the share. Have i missed a big boat here? Any direction would be appreciated.

    It seems that an eDir user with the same AD password is required for transparent login to the shares. Trustee rights need to be assigned to the users from whatever container they are in to access the shares. But it seems like its working. In my circumstances, i will be migrating 50 users to AD and pulling the client completely off novell gradually, so i was trying to establish that users could connect novell-clientlessly from an AD server to a netware file server until it gets mothballed and a win server goes in. Therefore, all 50 users are still in eDir, i just have to create an AD tree with matching passwords. Now my next concern is trying to re-map the cifs-based folders from the windows login scripts...

  • LDAP authentication issue for Admin Console 7.0U5

    Here is what I'm trying to do:
    In Unix LDAP Server, there are 2 identities already been created
    dn: cn=group1,     ou=group,ou=na,dc=XYZ,dc=com (gidNumber: 937)
    dn: uid=bai,     ou=People,ou=na,dc=XYZ,dc=com (gidNumber: 937)
    dn: cn=group1,ou=group,ou=na,dc=XYZ,dc=com+
    memberUid: user1+
    memberUid: bai+
    memberUid: user2+
    gidNumber: 937+
    objectClass: top+
    objectClass: posixgroup+
    objectClass: groupofuniquenames+
    dn: uid=bai,ou=People,ou=na,dc=XYZ,dc=com*
    loginShell: /bin/ksh*
    homeDirectory: /export/home/bai*
    gidNumber: 937*
    cn: Lastname, Firstname*
    sn:*
    uid: bai*
    uidNumber: 10091*
    objectClass: top*
    objectClass: inetOrgPerson*
    objectClass: posixAccount*
    objectClass: shadowaccount*
    objectClass: organizationalPerson*
    objectClass: person*
    ++shadowFlag: 0+
    User "bai" is a member of Group "group1" and will also be used as bind-dn (connection tested successfully)
    There are also other members (user1, user2) in the Group "group1".
    Goal: all individual users in "group1" will have access to Admin Console. (allow_group=group1)
    settings as follows
    --ldap-url=ldap://ldapsever.XYZ.com:389/dc=XYZ,dc=com*+
    --bind-dn=uid=bai,ou=People,ou=na,dc=XYZ,dc=com*+
    --bind-password=xxxx*+
    --group-search-filter=gidNumber*+
    --group-search-attr=cn*+
    --allow-group=group1*+
    --search-filter=uid*+
    It appears that I got authenticated by LDAP, please see messages from the ldap log
    +*[03/Nov/2009:10:00:54
    -0500] conn=10858 op=0 msgId=1 - BIND dn="uid=bai,ou=People,ou=na,dc=XYZ,dc=com"
    method=128 version=3*+
    +*[03/Nov/2009:10:00:54
    -0500] conn=10858 op=0 msgId=1 - RESULT err=0 tag=97 nentries=0 etime=0
    dn="uid=bai,ou=people,ou=na,dc=XYZ,dc=com"*+
    +*[03/Nov/2009:10:00:54
    -0500] conn=10858 op=1 msgId=2 - SRCH base="dc=XYZ,dc=com" scope=2
    filter="(uid=bai)" attrs="c"*+
    +*[03/Nov/2009:10:00:54
    -0500] conn=10858 op=1 msgId=2 - RESULT err=0 tag=101 nentries=1 etime=0*+
    +*[03/Nov/2009:10:00:54
    -0500] conn=10858 op=2 msgId=3 - BIND dn="uid=bai,ou=People,ou=na,dc=XYZ,dc=com"
    method=128 version=3*+
    +*[03/Nov/2009:10:00:54
    -0500] conn=10858 op=2 msgId=3 - RESULT err=0 tag=97 nentries=0 etime=0
    dn="uid=bai,ou=people,ou=na,dc=XYZ,dc=com"*+
    +*[03/Nov/2009:10:00:54
    -0500] conn=10858 op=3 msgId=4 - BIND dn="uid=bai,ou=People,ou=na,dc=XYZ,dc=com"
    method=128 version=3*+
    +*[03/Nov/2009:10:00:54
    -0500] conn=10858 op=3 msgId=4 - RESULT err=0 tag=97 nentries=0 etime=0
    dn="uid=bai,ou=people,ou=na,dc=XYZ,dc=com"*+
    +*[03/Nov/2009:10:00:54
    -0500] conn=10858 op=4 msgId=5 - SRCH base="dc=XYZ,dc=com" scope=2
    filter="(uid=bai)" attrs="c"*+
    +*[03/Nov/2009:10:00:54
    -0500] conn=10858 op=4 msgId=5 - RESULT err=0 tag=101 nentries=1 etime=0*+
    +*[03/Nov/2009:10:00:54
    -0500] conn=10858 op=5 msgId=6 - SRCH base="dc=XYZ,dc=com" scope=2 filter="(|(&(objectClass=groupofuniquenames)(|(gidNumber=uid=bai,ou=People,ou=na,dc=XYZ,dc=com)))(&(objectClass=group)(|(member=uid=bai,ou=People,ou=na,dc=XYZ,dc=com)))(&(objectClass=groupofnames)(|(member=uid=bai,ou=People,ou=na,dc=XYZ,dc=com))))"
    attrs="cn"*+
    +*[03/Nov/2009:10:00:54
    -0500] conn=10858 op=5 msgId=6 - RESULT err=0 tag=101 nentries=0 etime=0*+
    +*[03/Nov/2009:10:00:54
    -0500] conn=10858 op=6 msgId=7 - SRCH base="dc=XYZ,dc=com" scope=2
    filter="(&(objectClass=groupOfURLs)(memberURL=*))" attrs="cn
    memberURL"*+
    +*[03/Nov/2009:10:00:54
    -0500] conn=10858 op=6 msgId=7 - RESULT err=0 tag=101 nentries=0 etime=0*+
    +*[03/Nov/2009:10:00:54
    -0500] conn=10858 op=7 msgId=8 - SRCH base="dc=XYZ,dc=com" scope=2
    filter="(uid=bai)" attrs="c"*+
    +*[03/Nov/2009:10:00:54
    -0500] conn=10858 op=7 msgId=8 - RESULT err=0 tag=101 nentries=1 etime=0*+
    +*[03/Nov/2009:10:00:54
    -0500] conn=10858 op=8 msgId=9 - SRCH base="dc=XYZ,dc=com" scope=2
    filter="(|(&(objectClass=groupofuniquenames)(|(gidNumber=uid=bai,ou=People,ou=na,dc=XYZ,dc=com)))(&(objectClass=group)(|(member=uid=bai,ou=People,ou=na,dc=XYZ,dc=com)))(&(objectClass=groupofnames)(|(member=uid=bai,ou=People,ou=na,dc=XYZ,dc=com))))"
    attrs="cn"*+
    +*[03/Nov/2009:10:00:54
    -0500] conn=10858 op=8 msgId=9 - RESULT err=0 tag=101 nentries=0 etime=0*+
    +*[03/Nov/2009:10:00:54
    -0500] conn=10858 op=9 msgId=10 - SRCH base="dc=XYZ,dc=com" scope=2
    filter="(&(objectClass=groupOfURLs)(memberURL=*))" attrs="cn
    memberURL"*+
    +*[03/Nov/2009:10:00:54
    -0500] conn=10858 op=9 msgId=10 - RESULT err=0 tag=101 nentries=0 etime=0
    However, I'm still getting errors from Admin Console
    WarningAccess Denied+
    Access to the Administrative UI has been denied.+
    Your user permissions do not allow you to view or edit data in this area. If you need access, contact the system administrator.+
    Not sure where the problem is with? LDAP or ACL?
    Any help will be highly appreciated, Thanks a lot!
    - Langbaam
    Edited by: langbaam on Nov 3, 2009 7:58 AM
    Edited by: langbaam on Nov 3, 2009 8:29 AM
    Edited by: langbaam on Nov 3, 2009 8:33 AM

    Can you check if your admin-server's server.xml (admin-server/config/server.xml) has the following settings?
    <default-auth-db-name>ldap</default-auth-db-name>
    <auth-db>
        <name>ldap</name>
        <url>ldap://<hostname>:<port>/<base-dn></url>
        <property>
          <name>bindpw</name>
          <value><passwd></value>
          <encoded>true</encoded>
        </property>
        <property>
          <name>binddn</name>
          <value><binddn-value></value>
        </property>
      </auth-db>Can you also verify if the file under admin-server/config/default-sun-web.xml has the following settings?
    # cat default-sun-web.xml
    <?xml version="1.0" encoding="UTF-8"?>
    <!--
    Copyright 2004 Sun Microsystems, Inc. All rights reserved.
    SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
    -->
    <sun-web-app>
      <security-role-mapping>
        <role-name>admin</role-name>
        <group-name><your_group></group-name>
      </security-role-mapping>
    </sun-web-app>- Amit

  • Is JavaScript "enabled" in Adobe Reader for iOS, Android, Windows Phone, Playbook, ... ?

    I think it would be nice if Adobe Reader on mobile devices had JavaScript "enabled". I wonder, "does Adobe have any plans on 'enabling' JavaScript on mobile devices?". Thanks. - john

    Moving this discussion to the Reader iOS forum.

  • Issue with Sqlite for Windows Phone 8.1!

    Hello all,
    I was working on a Windows phone 8.1 silverlight project, which I thought of discontinuing, and transform that same project as a Windows Phone 8.1 runtime project. After reading through a lot of articles on the web, which says that Windows Phone runtime API
    would be the one that will be used to develop applications for a variety of devices, so I thought of thinking on the long run and decided to stick with the Windows Phone runtime 8.1. 
    I am not sure whether I made a strange decision, since I moved to Windows phone runtime I haven't made a single step ahead in my project. What I get is all exceptions. I am trying hard to make SQLite work with my project, I am not sure what I am missing, I
    went through all the tutorials on the web and I feel that everything is right in my code.
    Here is the link to the project, could somebody have a look into it and advise me on what I am doing wrong.
    Project Link
    Thanks all.
    Thanks, Sumesh

    Hello Sumesh,
    From your description, it seems that your issue is related with windows phone development, and after checking the project with your provided download link, it seems to not be related with LINQ to SQL item, if you are actually want to ask a windows phone
    issue, you could ask it
    here. And I suggest that you could share these exceptions message you encounter with us on this forum.
    Regards.
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Whatsapp for windows phone 8

    For Microsoft, Nokia and whatsapp developers
    please fix and update the current version of whatsapp for windows phone 8 devices as soon as possible
    there are a lot of things need to be improved:
    - screen shot images can't be sent
    - long messages can't be forwarded
    - profile picture of contact can't be saved
    - can't customize ringtone for group or individuals
    - couldn't find videos saved from whatsapp (where the videos saved??)
    these are some points I have noticed. Honestly speaking the what Sapp version in Nokia n8 is much more better than my Lumia 920 !!
    please respond

    Hi all,
    I have contact with WhatsApp developers team about many issues on windows phone 8 version
    Here is the points highlighted:
    there are a lot of things need to be improved:
    - screen shot images can't be sent
    - long messages can't be forwarded
    - profile picture of contact can't be saved
    - can't customize ringtone for group or individuals
    - couldn't find videos saved from WhatsApp (where the videos saved??)
    below you found WhatsApp team replay:
    The issues with sending screenshots and long messages are known bugs and we are working our best to fix them for a future update. Sorry for the inconvenience.
    Saving profile picture and customizable ringtones are currently not features for WhatsApp on Windows Phone.
    It is not possible to save videos or audio notes sent/received over WhatsApp to your Windows Phone media library. Unfortunately, this is a limitation of Windows Phone, so we have no way to work around this.
    You can however, view your saved photos in your media library.
    I just want to share with you these information
    thanks

Maybe you are looking for

  • Help with my Zx please.

    Hi, I have some problems with my Zx sound card I can't seem to find solutions for. I have searched the forums for answers or solutions and have seen a few threads that pretty much describe what is happening with my sound card, but in those threads th

  • How do I print a list of my events from one of my calendars for tax purposes?

    How do I print a list of my events from one of my calendars for tax purposes?

  • Download asset listing

    Hello friend.. Could anyone advice me what is the best way to download asset data with the acquisition value? I have tried to download from AR01 report generated but due to high volume, the data cant be viewed or downloaded fully. I have problems whe

  • How to insert Integer array in a MySql DataBase

    Now i am doing one swing application,in that i have List box,My doubt is ,How to insert the mutiple seleted value into database.

  • Battery Compatability between Vado and Vado HD

    Creative have been pushing battery and charger bundles here in the UK for January sales. I ordered one such bundle but have now discovered a reference on the US site to the Vado battery not being compatible with the Vado HD. There was no such warning