Can't get mobile device to auto configure the active sync server

Hello
I am trying to get my costumer mobile devices to auto configure the active sync server name so they don't have to type it in. I believe I have everything in place Certificates are fine. I populated the external url on the active sync
object in Exchange.
DNS is set up correct. I ran the Exchange Connectivity Analyzer and it runs perfectly. The only test step if fails on is the first attempt to contact the autodiscover service using just the domain name and that is because we have a
record in DNS so our domain name points to our public web server but all the other tests run fine. At the end, it even displays the xml file contents and shows me the external url of the active sync object.
I get a successful run but it first shows SSL certifiate of our public Web site and then hangs on the server config and then prompts me to enter in the server name and domain. My external url in Exchange looks like this:
https://remote.domain.com/Microsoft-Server-ActiveSync
Any Help??
Eddie

Thank you for replaying but there is already internal A record that points to Exchange server. Firewall, DNS external and internal are setup like this:
Firewall:
Port 443 and 25 points to Internal IP of our Exchange 2013 (only mail server in company).
Port 80 not open.
External DNS records:
autodiscover.mydomain.com à points to our WAN IP
remote.mydomain.com à points to our WAN IP
mydomain.com à points to external online webhosting
Internal DNS records:
autodiscover.mydomain.com à points to ours Exchange 2013 internal IP
Remote.mydomain.com à points to ours Exchange 2013 internal IP
mydomain.com à points to external online webhosting
Test form "ExchangeConnectivityTest.com" is Successful but with warnings.
Warnings are about https://mydomain.com/AutoDiscover/AutoDiscover.XML
because
https://mydomain.com is
pointing to website, which is hosted externally.
Eddie

Similar Messages

  • Have a company based itunes account, trying to share itunes on bank owned devices. can't get all devices to keep our shared password on them without requesting user to enter password (which i am not giving them)

    i am an IT manager for a bank.  we have several company owned iphones. WE have also implemented a mobile device management system to manage our iphones. 
    We setup acompany based itunes account, trying to share itunes on bank owned devices.  This way i can add bank approved apps to the devices through our itunes account and push out to the iphones, and no one can download any other non bank approved apps.
    it has been working ok. but recently i had one user who came in.  He went to enter in his itunes account on the phone and didn't work. So then came back and my staff and myself have (as much as we can see) removed his email account itunes login from all sections in settings. and entered in our itunes account information, but when you go to the app store, and hit upgrade, it still shows his email account for itunes.  I feel like i can't get all devices to keep our shared password on them without requesting user to enter password (which i am not giving them)
    How can i troubleshoot his device. i tried changing password 5 times today, rebooted device, and no change.
    Jenn McGlynn

    i have an MDM application, and i push out the apps i want them to have with our IT apple id account. for some reason when two approved apps needed updating last week, they prompted him for our password. (which i told him to bring phone in and i would enter password).
    but somehow he went to try to enter his personal to make it work (don't know why)
    somewhere it's keeping his personal email. i went into itunes/apps and our apple id is in there.
    there is nothing in icloud b/c we do not allow icloud, so that's clear.

  • TS4002 Can´t configure secondary e-mail. That is I have the icloud account and earlier bought an account för my wife. Now she can´t get it to work. Where the h--l do I configure this?

    Can´t configure secondary e-mail. That is I have the icloud account and earlier bought an account för my wife. Now she can´t get it to work. Where the h--l do I configure this?

    Welcome to the Apple community.
    If you are referring to adding a secondary account, to a single device, then you can do this at system preferences >mail, contacts & calendars.

  • Getting Mobile Device (Correct) Screen Size

    I have some confusion over getting the screen size of a mobile device. I measured the following:
    var hsa:AlertObject = new AlertObject();
    hsa.alertMessage = "screen w:" +  this.stage.fullScreenWidth + "  h:" + this.stage.fullScreenHeight + "\n" +
                        "capscreen w: " + capmc.width + " h:" + capmc.height + "\n" +                    
                        "capabilites w: " + Capabilities.screenResolutionX + " h: " + Capabilities.screenResolutionY;
    hsa.open(this, false);
    I ran this on an iPod touch 4 which has a resolution of 960 X 640. The above code gives me:
    screen = 480 X 320
    capscreen (a movie clip I load that is scaled to the full screen and is displaying properly) = 1548.85 X 677 (I presume the original dimensions my designer gave the SWF).
    Capabilities = 480 X 320
    Note that 480 X 320 is precisely half of the actual screen dimensions of an iPod Touch 4. Can someone please tell me why. And, given that capscreen is displaying (properly) at the time I take these measurements and display results, why is capscreen reporting larger than the actual dimensions of the device? Also, my app orrientation is landscape only and yet the dimensions I'm getting are that width is < height which means the device is reporting in portrait mode.
    If I just need to check for iOS and then double dimensions, that's fine. But, I don't want to do that for this iPod Touch test to find it works differently on other iOS devices.
    I know that all of my screens are on the stage, BTW. I know this because I get the AlertObject to show me alerts by pressing one of the buttons of a loaded screen I am measuring - and the button is not enabled until all SWF's are finished loading and being added to stage.

    <?xml version="1.0" encoding="utf-8"?>
    <s:View xmlns:fx="http://ns.adobe.com/mxml/2009"
            xmlns:s="library://ns.adobe.com/flex/spark" title="NewCappoCamera" actionBarVisible="false" xmlns:mx="library://ns.adobe.com/flex/mx">
        <fx:Declarations>
            <!-- Place non-visual elements (e.g., services, value objects) here -->
        </fx:Declarations>
        <fx:Script>
            <![CDATA[
    private function loadSWF():void {
    pictureButtons.load();
    pictureButtons.content.addEventListener(Event.ADDED, loadComplete);
    //initCamera();
    private var mc:MovieClip;
    private var hasBeenInit:Boolean = false;
    private function loadComplete(event:Event):void{
    event.target.removeEventListener(Event.ADDED, loadComplete);
    if(event.target is MovieClip && mc == null) {
    mc = MovieClip(event.target);
    mc.play();
    if(event.target.name == "acceptPicBtn") {
    acceptButton = SimpleButton(event.target);
    acceptButton.enabled = false;
    else if(event.target.name == "retakePicBtn") {
    retakeButton = SimpleButton(event.target);
    retakeButton.addEventListener(MouseEvent.CLICK, retakeClicked);
    retakeButton.enabled = false;
    else if(event.target.name == "takePicBtn") {
    cameraButton = SimpleButton(event.target);
    cameraButton.addEventListener(MouseEvent.CLICK, cameraButtonPressed);
    if(cameraButton != null && acceptButton != null
    && retakeButton != null && cameraButton != null && mc != null && !hasBeenInit) {
    mc.stop();
    pictureButtons.endEffectsStarted();
    hasBeenInit = true;
    initCamera();
    //private var numTimes:uint = 0;
    private function initCamera():void {
    cameraButton.visible = true;
    cameraButton.enabled = true;
    acceptButton.enabled = false;
    retakeButton.enabled = false;
    acceptButton.visible = false;
    retakeButton.visible = false;
    //front camera loads if they have one and it's an iOS device.
    var a:Array = Camera.names;
    var camName:String = "";
    var isAndroid:Boolean = false;
    for(var i:uint = 0; i < a.length; i++) {
    camName = a[i];
    if(camName.indexOf("Front") != -1) {
    break;
    //test if android as right now only the back camera
    ///works on that platform.
    if(Capabilities.version.indexOf('AND') != -1) {
    this.camera = Camera.getCamera();
    isAndroid = true;
    else if(camName.indexOf("Front") != -1 &&
    !isAndroid) {
    this.camera = Camera.getCamera("1");
    else {
    this.camera = Camera.getCamera();
    if(!Camera.isSupported) {
    //todo
    if(camera.muted) {
    //todo
    //following works on droid but is not working in iPod...
    //camera.setMode(
    //pictureButtons.contentWidth + this.width,
    //pictureButtons.contentHeight + this.height, 30, true);
    //the code below works on both platforms.
    var ch:Number = Capabilities.screenResolutionY;
    var cw:Number = Capabilities.screenResolutionX;
    var vidh:Number = ch;
    var vidw:Number = cw;
    if(ch > cw) {
    //in this case, the device must be registering in the portrait mode
    //multiply eveything by 2 and switch orrientation...
    vidw = ch * 2;
    vidh = cw * 2;
    camera.setMode(vidw, vidh, 30, false);
    //android dimensions have to be doubled no matter what
    else if(!(ch < cw) && isAndroid) {
    vidw = cw * 2;
    vidh = ch * 2;
    camera.setMode(vidw, vidh, 30, false);
    else {
    //otherwise, everything should already be double and there's no need to switch
    //width and height like there is above.
    //need to test that this remains the case with ipod but can't seem to get ipod
    //orientation to report other than "rotatedRight" no matter how the device is held.
    camera.setMode(vidw, vidh, 30);
    vidComponent.height = vidh;
    vidComponent.width = vidw;
    this.video = new Video();
    video.width = vidComponent.width;
    video.height = vidComponent.height;
    video.attachCamera(camera);
    vidComponent.addChild(video);
    vidComponent.visible = true;
    ]]>
    </fx:Script>
    <mx:UIComponent id="vidComponent" x="0" y="0" width="100%" height="100%"/>
        <s:Image id="capturedImage" x="0" y="0"
                 width="100%" height="100%"
                 visible="false"/>
        <s:SWFLoader
            id="pictureButtons"
            x="0" y="0"
            width="100%" height="100%"
            scaleContent="true"
            source="@Embed('assets/SignUpPicButtons.swf')"
            creationComplete="{loadSWF()}" autoLoad="false"
            />   
        <s:SWFLoader
            id="busyLoader"
            x="0" y="0"
            width="100%" height="100%"
            scaleContent="true"
            source="@Embed('assets/CheckingSWF.swf')"
            autoLoad="false"
            />
        <s:SWFLoader
            id="invisibleBusy"
            x="0" y="0"
            width="100%" height="100%"
            scaleContent="true"
            source="@Embed('assets/InvCheckingSWF.swf')"
            autoLoad="false"
            />
    </s:View>
    Let me know if you want the SWF's required to run this code.

  • Someone unknown used my Apple ID, can I get that device off of my account?

    I first received an email saying someone reset my Apple ID password. I then received an email saying that someone signed into iCloud on an  iPhone 3Gs. I did not reset my password and I do not own a 3Gs. I immediately changed my password and  security questions. I am worried about the integrity of my account.  Will the steps I took bump the unknown person off of my account? If not, how can I get that device removed? I have  found nothing regarding the management of devices linked to the  account.

    Same thing has happened to me, but I live in Iran and when I go to this Apple Support link, my country is not listed, so I cannot request to be called or helped, and I cannot delete this unknown device from my Apple ID. What can I do?

  • I currently have aT-Mobile sim, and therefore, a UK telephone number. Can I get a sim from EE with the same number to use in my iphone 5?

    I currently have aT-Mobile sim, and therefore, a UK telephone number. Can I get a sim from EE with the same number to use in my iphone 5?

    The easiest way to find out what carrier it's locked to would be to call the store where you purchased the phone.
    The phone can be unlocked from any location.  However, most carrier have restrictions about unlocking and you have to contact them for details.

  • Can't start mobile device service error 1503

    I'm using win7 ..
    I recently tried to sync my iphone4 with the itunes
    And a message poped up say " can't start mobile device" sth like that
    Then I followed some solution on the apple webiste..
    But when I try to restart the service..
    It said " Error 1503 "the service did not respond to the start request in a timely manner" "
    What can I do to slove that
    Thanks !

    See Troubleshooting issues with iTunes for Windows updates.
    tt2

  • Can´t get mobile internet function on ZTE OPEN C

    Wi-fi functions fine. But I can´t get mobile internet running. My provider gave me following settings:
    Internet
    APN: Click
    IP Address: assigned by the network
    DNS 1 Adresse: 213.055.128.001
    DNS 2 Adresse: 213.055.128.002
    Benutzername: -
    Passwort: -
    Proxy: deactivated
    But there are not such fields in data settings. There is only APN, Identifier, Password, HTTP proxy host/port and authentication.
    Thank you for your advice
    regards
    JL

    hi JL,
    I would try putting click in as the APN in Settings > Cellular & Data > Data Settings and also in A-GPS settings under APN. Then enable the Data connection. Otherwise I might also try gprs.swisscom.ch or internet as the APN.
    thanks!Michelle

  • IPhone, can not get it out of Auto-lock

    On occasions once my 3g Iphone has gone into autolock I am unable to use the phone again. I can not get it out of auto lock, I have tried restarting but it maskes no difference.
    I often have to ring it from another phone to bring the Iphone back to life, which is rather annoying and I am not always by another avaliable phone.
    Does anyone else have this problem, or know how to fix this? Thanks

    Have you tried reset (page 34 of the manual)?
    Restore - page 141?
    http://manuals.info.apple.com/enUS/iPhone_UserGuide.pdf

  • I go to start the "Apple Mobile Device" and it says the side-by-side configuration is incorrect. (Error 14001)  How do I fix this?

    I go to start the "Apple Mobile Device" and it says the side-by-side configuration is incorrect. (Error 14001)  How do I fix this?

    Delete them and then download them from the desired Apple ID. This may require repurchasing paid applications.
    (95675)

  • I bought 3 iPhone 4s and each should have 5gb of cloud. I want to only use my one iTunes ID. How can I get this storage space increased to the 15 GB?

    I bought 3 iPhone 4s and each should have 5gb of cloud. I want to only use my one iTunes ID. How can I get this storage space increased to the 15 GB?

    iCloud storage is not allocated by device. iCloud storage is allocated to your iCloud AppleID. You get 5GB of iCloud storage.

  • Hi I can not get my printer to connect to the internet.

    Hi
    I can not get my printer to connect to the internet. it is connected to my network according to wifi test printout but my computer can not find it.
    When I try to download apps directly from the printer it says that it is not connected to the internet.
    I have an airport extreme + 3 airport express a macbook pro and printer is an HP 7510e
    I see the printer on the first page in the airport utility when I click on my airport extreme.so it is online but nothing happens when I try to print.
    Please help me

    Hi all,
    Guess I understand what is going on as I'm also experiencing the problem.
    Basically the issue is about the iPhone 4's personal hotspot.
    I'm trying to hook on personal hotspot to my toshiba laptop but it couldnt work as the connection is limited to local only without Internet access.
    The hotspot works well on other laptop and I-devices, but not my toshiba...
    Hope to get assistance here. Thanks

  • I have several pdfs on my iPad in iBooks. My iPhone shows only the categories, none of the documents. How can I get my iPhone to also show the documents that are on my iPad?

    I have several pdfs on my iPad in iBooks. My iPhone shows only the categories, none of the documents. How can I get my iPhone to also show the documents that are on my iPad?

    You will need to connect your iPad to your computer's iTunes and do File > Devices > Transfer Purchases to copy them over to your computer (that will copy PDFs and epubs that are in the iBooks app, not just actual ibooks), and you can then sync them to your iPhone. Or you might be able to open each PDF in iBooks on your iPad and use the share icon to email them to yourself and then use 'open in' in the Mail app on your iPhone to copy them to its iBooks app (if the PDF is protected then you may not get the email option via the share icon).
    The Settings > iBooks > Sync Collections setting doesn't copy items between devices, it just means that it a bookor PDF is on both devices and you move it into a collection on one device then it will be moved into the same collection on the other device

  • How can I get help for ADE downloads from the public library.   I am suddenly getting error messages

    How can I get help for ADE downloads from the public library.  It worked for years and now I am getting error messages.   I cannot find any practical help

    If you are trying to open the book on a device, try using the latest DL Reader on Android and iOS
    https://play.google.com/store/apps/details?id=com.datalogics.dlreader&hl=en

  • I have a Iphone4s and just brought a new Iphone 6 when I pluged the the new phone all my data wastransfered exepet for my ring tones all other info photos,music and contacts all downloaded ok but no ring tone how can i get them to come across to the

    I have a Iphone4s and just brought a new Iphone 6 when I pluged the the new phone all my data wastransfered exepet for my ring tones all other info photos,music and contacts all downloaded ok but no ring tone how can i get them to come across to the new phone

    This covers all the process
    Transfer content from an iPhone, iPad, or iPod touch to a new device - Apple Support

Maybe you are looking for

  • TestStand won't load vi in runtime

    I'm runing LabVIEW 2011 version 11.0f2.  TestStand 2010 SP1. We tried deploying a packed library to a test system but the run-time will not load the VI.  Depending on the VI selected, we get a variety of different errors with the ! in teststand sayin

  • Is there any way of getting split screen function in firefox 4

    Being able to split screen was a very helpful feature in the previous version of firefox, however, it is not available in version 4. Is there any other way of getting this tool?

  • Aperture Sample Library and Wyoming files

    Disclaimer: Apple does not necessarily endorse any suggestions, solutions, or third-party software products that may be mentioned in the topic below. Apple encourages you to first seek a solution at Apple Support. The following links are provided as

  • Tally data to SAP B1

    Respected Sir, Anyone can tell me how we convert tally data into SAP B1? actually one of my client using tally for finance. Rightnow that client is ready to impliment sapb1 erp package. But he wants to convert 5 year data of tally into SAP B1. Sp tel

  • IPhoto won't import new photos from Photo Stream.

    Hello, iPhoto won't import new taken pictures from Photo Stream. When I disable and then re-enable Photo Stream, all pictures will be imported to iPhoto. But when I take some more pictures, these won't appear in Photo Stream (until disabling/enabling