Access static content in CDN through custom domain returned 404.

Hello,
I'm testing out the CDN functionalities. I've setup CDN and accessing az609001.vo.msecnd.net/pub/1.txt from browser works fine.  I also registered custom domain cdn.woics.com to associate to this CDN.  but accessing cdn.woics.com/pub/1.txt returns
404.
looking through document I think I have done all that is needed, does anyone know what did I miss?
Thanks

Hi,
I'm glad to hear that you have solved your issue, thanks for your posting, please note: When you create or enable a CDN endpoint, it may take up to 60 minutes to propagate worldwide.
Best Regards,
Jambor
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.

Similar Messages

  • Unable to connect Power Query to Salesforce through custom domain

    If I try a straight login / connection through Power Query, I get "Your company's authentication service is currently down.  Please contact the administrator at your company for more information".
    If I try to connect via the Custom Domain, new box will pop up, opening up an IE window in Excel, where I can log in and it does connect me to my default page, but the Power Query connection does not connect.
    You can see the successful connection but the Salesforce connection in Power Query isn't made.  Is this a custom domain connection issue, a company security issue or a Saleforce connection bug?

    First off, I can never undestand how Microsoft can have these forums operate efficiently if just about ever response is entered as a duplicate entry.  Across many different forum channel, for years, I continue to see multiple entries, regardless of
    browser I'm using.  It just seems unprofessional and so counter productive to the image that Microsoft is trying to project, but that's a different rant.
    I'm in the process of getting some information on how our system is set up.  Working for a large company, local IT is good for somethings but when it comes down to system settings for global salesforce roll-outs, the team can only answer so much. 
    Until I discover the settings at my side, it's a bit early to have some mark a solution as answered if not all the facts are in.  Someone have some sort of strange forum quota for closures going on?
    Just curious.  There's this add-in that is supposed to let you connect to Saleforce, but may not connect to Production or Sandbox environment or custom domain because there's a choice?  I realize this is the first iteration and the video and description
    look good but how long before it becomes more versatile and open to more users whom might be in a similar situation?
    Don't get me wrong guys (and girls).  I love that this product and these various forums do exist to flush out problems of users and I sincerely appreciate the time and effort everyone puts into helping out where/when they can, but it is very much a
    sour grapes situation for me.  It's a bit like 1 step forward and 2 steps back.  It will be nice when we get to the final destination, I just hope it happens sooner, rather than later.

  • Accessing same Content Management Repository from Multiple Domains

    I'm attempting to point many different domains to a single content management repository to avoid the duplication of data.
    All the domains are able to read content correctly, but when trying to create content (whether programmatically or through the admin tool), most of the domains will get this error:
    java.sql.SQLException: ORA-00001: unique constraint (SCHEMA_NAME.PK_CM_NODE) violated
    Since there's no sequence generated in the database, it appears that the primary key is defined by something in the portal code. This seems to imply that you can't have multiple domains pointing to the same repository. Can someone confirm that they've seen this work? And if you've gotten it to work, what I am doing wrong?
    Thanks for any help,
    Dan Turkenkopf

    This particular issue is inherent to the OOTB repository in WLP. The repository uses a sequencer to generate id's for created content. The way these ID's are generated causes the possibility of two applications attempting to create items with the same ID. This is due to the fact that the WLP repository manages the ID's used when creating content and doesn't currently use a GUID strategy for content id's.
    You could configure another repository which does ID generation in a different fashion and avoid the persistence problem I've described.
    The VCR layer which provides the access to the OOTB repository really only has the cache issue I described. This can be worked around with some custom event listener implementations that can manage stales caches. These would need to be aware of the other applications sharing the underlying content repository.
    -Ryan

  • Error when accessing MIME-Content of emails through EWS

    Hello,
    i've a problem downloading the mime-content of some emails using exchange web services. Here is the code i'm using:
                exService = new ExchangeService();
                exService.Credentials = new NetworkCredential("user", "password", "domain");
                exService.Url = new Uri(@"https://server/ews/Exchange.asmx");
                fFolder = this.GetPublicFolder(exService, null, "Test");
                ivItem = new ItemView(int.MaxValue);
                ivItem.PropertySet = new PropertySet(BasePropertySet.FirstClassProperties, pdbProperties);
                ivItem.OrderBy.Add(ItemSchema.DateTimeReceived, SortDirection.Ascending);
                fiResults = fFolder.FindItems(ivItem);
                foreach (Item iItem in fiResults.Items)
                        psItem = new PropertySet(BasePropertySet.FirstClassProperties, ItemSchema.MimeContent);
                        iItem.Load(psItem);
    Calling the Load-method throws an Microsoft.Exchange.WebServices.Data.ServiceResponseException (Errorcode "Microsoft.Exchange.WebServices.Data.ServiceError.ErrorMimeContentConversionFailed") with errortext "Fehler beim Konvertieren des MIME-Inhalts." ("Error
    converting the MIME-content" in english). Both emails have an appointment-attachment, one of them a ICS-file, which is named as "not supported calendar message". I've tried to delete the attachments and access the emails again, but the exception still occures.
    With thousands of other mails, the code runs without problems.
    I also analysed the messages with Outlook Spy, but i found nothing special, except that the one with the ics-file contains the message class "IPM.Note.NotSupportedICal" (the other is "IPM.Note").
    My question is, what can be the reason for this exception, especially for the e-mail without the unsupported attachment? And what can i possibly do to avoid it/to get the mime-content anyway? I'm using the code to export the e-mails as EML-files.
    Thank you in advance for your answers.
    Regards
    DanielLW

    Not sure about the EWS Managed API but with the web services, if you remove the request for the body of the item (<t:FieldURI FieldURI="item:MimeContent"/>) it seems to resolve the issue, since it no longer needs to convert between the
    'IPM.Note.NotSupportedICal' (non-Exchange calendar entry?) and 'IPM.Note' classes (a normal email).

  • Accessing static content (javscript, css) from JSPs in portal component

    Hello,
    I have a portal component with some jsp files in the folder dist/PORTAL-INF/jsp . Within the jsps I want to access some css and javascript files which I've put in the folders dist/css and dist/scripts. Can anybody tell me how I can access them from the jsp?
    Thanks and best regards
    Dominik

    Hello,
    I finally solved it. To whom it may concern:
    The integration in the JSP should look like the following:
    <%
    IPortalComponentResponse componentResponse = (IPortalComponentResponse)pageContext.getAttribute(javax.servlet.jsp.PageContext.RESPONSE);
    IResource css = componentRequest.getResource(IResource.CSS, "css/style.css");
    IResource js = componentRequest.getResource(IResource.SCRIPT, "scripts/script.js");
    componentResponse.include(componentRequest, css);
    componentResponse.include(componentRequest, js);
    %>
    And make sure that the css file does NOT start with the tag
    <style type="text/css">
    Best regards,
    Dominik

  • Stopped recieving mail through Outlook using custom domain..

    I had a custom domain through Office small business addition, and have 5 mailboxes that I access through Outlook.com. All accounts have stopped receiving any mail for the last 10 days, though I'm able to send emails just fine. Nothing has changed
    on my end, e.g. domain name is active, and no changes to the e-mail client(s). I tried to send a message to one of the affected mailboxes, and here is what happens:
    Notification of delayed delivery with no action required
    In a couple of days, delivery failure "Unable to deliver message to the following recipients, due to being unable to connect successfully to the destination mail server."
    I have looked around the community, and found no helpful information, this is impacting our ability to manage daily communication needs.
    Thanks,
    P.S. I'm sure this question is better suited for another forum, but the support personal is in disagreement

    Thanks for the reply, I'm unable to receive mail through the web interface. I'm accessing this through Outlook.com and so far have found no helpful information to unblock these accounts. Here is a snippet from the bounce:
    x-store-info:D6taffyBScEUZsL+ZXbbDgLbVGSV1R4drFk9v1u13k2/tq+mYtmGMytxV5UYJXR/n7VUgSm2cyY2+/Z1UsuX4ibJs8KgaJB8BrKuwTJFXu4nrFoUZj1HkzQtfXbltnHM/o2MgYooOBIMuG8889K0Sw==
    Authentication-Results: hotmail.com; spf=none (sender IP is 65.55.116.103; identity alignment result is pass and alignment mode is relaxed) smtp.helo=BLU004-OMC3S28.hotmail.com; dkim=none (identity alignment result is pass and alignment mode is relaxed) header.d=mail.hotmail.com; x-hmca=none [email protected]
    X-SID-PRA: [email protected]
    X-AUTH-Result: NONE
    X-SID-Result: NONE
    X-Message-Delivery: Vj0xLjE7RD0wO0dEPTA7U0NMPTk7bD0xO3VzPTE=
    X-Message-Info: AuEzbeVr9u5fkDpn2vR5iCu5wb6HBeY4iruBjnutBzpStnUabbM/X3OHG1tkHI7a3kMiU15mwZkdItk0fkPUd26iJME4hbgAI/g6pso0Zyh7O0XVOq5g8hCf8Efy9J5lKkdwprP9EhP7RM0PyiUzXHkNE5r5dNzX
    Received: from BLU004-OMC3S28.hotmail.com ([65.55.116.103]) by SNT004-MC2F26.hotmail.com over TLS secured channel with Microsoft SMTPSVC(7.5.7601.22712);
    Sat, 8 Nov 2014 11:18:17 -0800
    From: [email protected]
    To: [email protected]
    Date: Sat, 8 Nov 2014 11:17:56 -0800
    MIME-Version: 1.0
    Content-Type: multipart/report; report-type=delivery-status;
    boundary="9B095B5ADSN=_01CFF3BDCD6A2C340008C947BLU004?OMC3S28.h"
    X-DSNContext: 7ce717b1 - 1386 - 00000002 - C00402D1
    Message-ID: <[email protected]>
    Subject: Delivery Status Notification (Failure)
    Return-Path: <>
    X-OriginalArrivalTime: 08 Nov 2014 19:18:17.0465 (UTC) FILETIME=[C0229690:01CFFB88]
    This is a MIME-formatted message.
    Portions of this message may be unreadable without a MIME-capable mail program.
    --9B095B5ADSN=_01CFF3BDCD6A2C340008C947BLU004?OMC3S28.h
    Content-Type: text/plain; charset=unicode-1-1-utf-7
    This is an automatically generated Delivery Status Notification.
    Unable to deliver message to the following recipients, due to being unable to connect successfully to the destination mail server.
    [email protected]
    --9B095B5ADSN=_01CFF3BDCD6A2C340008C947BLU004?OMC3S28.h
    Content-Type: message/delivery-status
    Reporting-MTA: dns;BLU004-OMC3S28.hotmail.com
    Received-From-MTA: dns;BLU202-W4
    Arrival-Date: Thu, 6 Nov 2014 11:14:39 -0800
    Final-Recipient: rfc822;[email protected]
    Action: failed
    Status: 4.4.7
    --9B095B5ADSN=_01CFF3BDCD6A2C340008C947BLU004?OMC3S28.h
    Content-Type: message/rfc822
    Received: from BLU202-W4 ([65.55.116.74]) by BLU004-OMC3S28.hotmail.com over TLS secured channel with Microsoft SMTPSVC(7.5.7601.22751);
    Thu, 6 Nov 2014 11:14:39 -0800
    X-TMN: [4iGQEvJDpRhS8BVNGwHgj/yrk4x7pbGkHgmdrcWWd5g=]
    X-Originating-Email: [[email protected]]
    Message-ID: <[email protected]>
    Return-Path: [email protected]
    Content-Type: multipart/alternative;
    boundary="_02feff9f-34cc-4fa8-9da4-4885f1209a8a_"
    From: "x .x .x" <[email protected]>
    To: xxx xxx <[email protected]>
    Subject: Blah
    Date: Thu, 6 Nov 2014 11:14:38 -0800
    Importance: Normal
    MIME-Version: 1.0
    X-OriginalArrivalTime: 06 Nov 2014 19:14:39.0771 (UTC) FILETIME=[E98D9EB0:01CFF9F5]
    --_02feff9f-34cc-4fa8-9da4-4885f1209a8a_
    Content-Type: text/plain; charset="iso-8859-1"
    Content-Transfer-Encoding: quoted-printable
    =
    --_02feff9f-34cc-4fa8-9da4-4885f1209a8a_
    Content-Type: text/html; charset="iso-8859-1"
    Content-Transfer-Encoding: quoted-printable
    <html>
    <head>
    <style><!--
    .hmmessage P
    margin:0px=3B
    padding:0px
    body.hmmessage
    font-size: 12pt=3B
    font-family:Calibri
    --></style></head>
    <body class=3D'hmmessage'><div dir=3D'ltr'> </div></body>
    </html>=
    --_02feff9f-34cc-4fa8-9da4-4885f1209a8a_--
    --9B095B5ADSN=_01CFF3BDCD6A2C340008C947BLU004?OMC3S28.h--

  • Access of undefined method/property through reference with a static type Class

    I get the following error: (it's not word for word but you get the idea)
    Error: Access of undefined method getStatus through reference with a static type Class.
    Here's what's happening in the code. I'm trying to create a User class that is instantiated at the start of my app. I want the User class to have properties like mainStatus, with helper methods like setStatus etc. Pretty simple.
    so on my HardDisk I have my flash_working folder with all my flash projects. I created my class file/package under the directory com.mypackage
    package com.mypackage
        import flash.display.*;
        public class User extends Sprite
            public var mainStatus:int;
            public function User()
                trace("User Created!");
                mainStatus = 0;
            public function setStatus(status:int):void
             mainStatus = status;
        public function getStatus():int
            return mainStatus;
    Ok, so far so good.
    now I created a new .fla file under the root of /flash_working/. The class file is in /com/mypackage/User.as
    in my .fla file I have:
    import com.mypackage.User;
    var myUser:User = new User();
    var i = User.getStatus();
    trace(i);
    That's all the code I have. Could someone please explain why it's giving me that error?
    If I try to access the public var mainStatus through user.mainStatus that gives a similar error saying:
    Error: Access of undefined property mainStatus through reference with a static type Class.
    Thanks for any help!
    jef3189

    the public getStatus() function that you created needs to be referred to through an instance of the class.
    So:
    import com.mypackage.User;
    var myUser:User = new User();
    var i = myUser.getStatus();
    trace(i);
    Also, an aside. You can create a getter/setter for status, to avoid having to do the function as such.
    package com.mypackage
        import flash.display.*;
        public class User extends Sprite
            public var mainStatus:int;
            public function get status():int
                return mainStatus;
            public function set status(value:int):void
                 mainStatus = value as int;
              public function User()
                trace("User Created!");
                mainStatus = 0;
    And then, you can call it as:
    import com.mypackage.User;
    var myUser:User = new User();
    trace(myUser.status);
    EDIT
    I just noticed that you made the variable public as well, which means you can access it without getter/setter or function.
    import com.mypackage.User;
    var myUser:User = new User();
    trace(myUser.mainStatus);

  • I have downloaded a book in iBooks and it shows that the purchase has gone through, but when I try to open the book it says it can't access the content.

    I have downloaded a book in iBooks and it shows that the purchase has gone through, but when I try to open the book it says it can't access the content.

    Downloading past purchases from the App Store, iBookstore, and iTunes Store

  • CDN URL returns 404, but custom domain is fine, so is blob origin domain

    i added a CDN to my Azure website today, with a custom domain pointing at it using a CNAME record. now the custom domain works, the original Blob URL works, but the CDN URL returns 404.
    Custom domain to CDN:
    http://int-assets-openyourcity.heineken.com/app/dest/js/main.min.js
    CDN: http://az621171.vo.msecnd.net/app/dest/js/main.min.js
    Blob URL: http://intopenyourcityheineken.blob.core.windows.net/app/dest/js/main.min.js
    any ideas? is this just down to DNS propagation?
    thanks,
    paul

    Hi,
    You could try this channel:
    Please contact support team by creating a support ticket at http://www.windowsazure.com/en-us/support/contact/
    Or if that doesn't work because you don't have an active subscription you will need to contact general customer support to have them create a support ticket for you
    http://support.microsoft.com/gp/customer-service-phone-numbers?wa=wsignin1.0
    Any questions, please let me know.
    Regards & Thanks,
    Will
    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.

  • Accessing Java static content ?

    Is there a way to access directly static methods&properties of Java classes from within JavaFX classes ? (Java libraries often rely on static factory methods.) Apart from writing a Java adapter classes that is...
    Edited by: Java.Artisan on Jan 3, 2009 3:45 PM

    I've got some code that accesses static methods and fields on a Java class exactly as you would in Java. Is it not working for you? What sort of error are you seeing?
    Cheers,
    Kevin

  • Host static content from Weblogic

    I have a need to host static content from my weblogic server in order to mimic the functionality of our old OHS server. In our case we used Apache rewrite rules in our old server that would catch someone trying to access the server directly by URL or trying to come in through HTTP instead of HTTPS and then pull the switch-a-roo on them and direct them directly to our APEX instance over a HTTPS connection. Is there a way to accomplish this same thing with weblogic without an Apache server acting as your front end?
    I found this article here http://blogs.oracle.com/middleware/2010/06/publish_static_content_to_weblogic.html about hosting static content but in my case I need the content actually at the root level (example http://domain.com/index.html) where I can throw in javascript redirect headers.
    The way I set this up was I have two servers on one box. The first server services standard HTTP requests on port 80. It will do nothing but redirect to the corresponding location on the same machine but over HTTPs on port 443.
    The server running on port 443 actually runs the APEX listener. I would like to deploy something similar to the first one that shows its content at https://server.domain.com to redirect to the Apex listener. I thought I might could repackage the apex listener to accomplish this but I would rather do it as a separate deployment rather than risk damaging our modified production copy of the APEX Listener.
    Anyone have any thoughts?

    What about using a virtual host? Create a virtual host and only target your application to that host.
    http://download.oracle.com/docs/cd/E17904_01/apirefs.1111/e13952/taskhelp/virtual_hosts/VirtualHosts.html
    Then within that virtual host, do something like this to force HTTPS:
    http://weblogicserver.blogspot.com/2009/11/force-confidentiality-for-web.html
    Then have an application that catches everything else deployed to the same server for other IP/hostnames and redirects to that virtual host. I haven't tried it, but I think that might do what you're asking about.

  • Unable to add account to Outlook 2010 for email address under custom domain

    I am unable to add a new account in Outlook 2010 for an email account set up under a custom domain.
    Can anyone explain why login credentials that work for outlook.com (successful access to email inbox) return an authentication failure (401 error) when used to test connectivity via https://testconnectivity.microsoft.com?
    Details:
    I set up a custom domain at https://domains.live.com and did the following DNS configuration steps at my web hosting company following instructions from domains.live.com:
    Created custom MX record
    Created CNAME record [name:] autodiscover.jrergonomics.com [value:] autodiscover.outlook.com.
    I created email addresses at domains.live.com > jrergonomics.com > Member accounts and tested by successfully logging in to outlook.com.
    When I try to add either account to Outlook 2010, I get a popup box with this information:
    Title: "Windows Security"
    Connecting to [email protected]
    [[email protected]]
    [ ] Remember my credentials
                                       [   OK   ]  [  Cancel 
    The credentials that I use successfully to log in to outlook.com don't work here; I get the popup box 3-4 times and then the Outlook 2010 Add New Account dialog displays an error:
    "An encrypted connection to your mail server is not available. Click Next to attempt using an unencrypted connection."
    Clicking Next results in an error message:
    "Problem Connecting to Server"
    I have tried verifying the connectivity using https://testconnectivity.microsoft.com:
    <?xml version="1.0" encoding="utf-8"?>
    <testresult status="FatalError" errorid="734044ef-11c2-4e30-9ee6-450d49e9d92c" contentUrl="" testdescription="The Microsoft Connectivity Analyzer is attempting to test Autodiscover for [email protected]." resultdescription="Testing Autodiscover failed." additionaldetails="" elapsedMilliseconds="40517">
    <children>
    <testresult status="FatalError" errorid="734044ef-11c2-4e30-9ee6-450d49e9d92c" contentUrl="" testdescription="Attempting each method of contacting the Autodiscover service." resultdescription="The Autodiscover service couldn't be contacted successfully by any method." additionaldetails="" elapsedMilliseconds="40517">
    <children>
    <testresult status="Error" errorid="734044ef-11c2-4e30-9ee6-450d49e9d92c" contentUrl="" testdescription="Attempting to test potential Autodiscover URL https://jrergonomics.com/AutoDiscover/AutoDiscover.xml" resultdescription="Testing of this potential Autodiscover URL failed." additionaldetails="" elapsedMilliseconds="21181">
    <children>
    <testresult status="Success" errorid="00000000-0000-0000-0000-000000000000" contentUrl="" testdescription="Attempting to resolve the host name jrergonomics.com in DNS." resultdescription="The host name resolved successfully." additionaldetails="IP addresses returned: 64.90.49.188" elapsedMilliseconds="146">
    <children />
    </testresult>
    <testresult status="Error" errorid="c716c7b4-a473-4ca4-8859-fc9c5bb12ad1" contentUrl="http://go.microsoft.com/fwlink/p/?LinkId=133210&amp;v=ExRCA.1&amp;id=B2E81FE1-5A94-4d07-9D58-AD483268A72A" testdescription="Testing TCP port 443 on host jrergonomics.com to ensure it's listening and open." resultdescription="The specified port is either blocked, not listening, or not producing the expected response." additionaldetails="A network error occurred while communicating with the remote host.&#xD;&#xA;" elapsedMilliseconds="21035">
    <children />
    </testresult>
    </children>
    </testresult>
    <testresult status="Error" errorid="734044ef-11c2-4e30-9ee6-450d49e9d92c" contentUrl="" testdescription="Attempting to test potential Autodiscover URL https://autodiscover.jrergonomics.com/AutoDiscover/AutoDiscover.xml" resultdescription="Testing of this potential Autodiscover URL failed." additionaldetails="" elapsedMilliseconds="4982">
    <children>
    <testresult status="Success" errorid="00000000-0000-0000-0000-000000000000" contentUrl="" testdescription="Attempting to resolve the host name autodiscover.jrergonomics.com in DNS." resultdescription="The host name resolved successfully." additionaldetails="IP addresses returned: 157.56.244.217, 157.56.234.137, 157.56.236.89, 157.56.240.137" elapsedMilliseconds="376">
    <children />
    </testresult>
    <testresult status="Error" errorid="c716c7b4-a473-4ca4-8859-fc9c5bb12ad1" contentUrl="http://go.microsoft.com/fwlink/p/?LinkId=133210&amp;v=ExRCA.1&amp;id=B2E81FE1-5A94-4d07-9D58-AD483268A72A" testdescription="Testing TCP port 443 on host autodiscover.jrergonomics.com to ensure it's listening and open." resultdescription="The specified port is either blocked, not listening, or not producing the expected response." additionaldetails="A network error occurred while communicating with the remote host.&#xD;&#xA;" elapsedMilliseconds="4605">
    <children />
    </testresult>
    </children>
    </testresult>
    <testresult status="FatalError" errorid="734044ef-11c2-4e30-9ee6-450d49e9d92c" contentUrl="" testdescription="Attempting to contact the Autodiscover service using the HTTP redirect method." resultdescription="The attempt to contact Autodiscover using the HTTP Redirect method failed." additionaldetails="" elapsedMilliseconds="14148">
    <children>
    <testresult status="Success" errorid="00000000-0000-0000-0000-000000000000" contentUrl="" testdescription="Attempting to resolve the host name autodiscover.jrergonomics.com in DNS." resultdescription="The host name resolved successfully." additionaldetails="IP addresses returned: 157.56.244.217, 157.56.234.137, 157.56.236.89, 157.56.240.137" elapsedMilliseconds="21">
    <children />
    </testresult>
    <testresult status="Success" errorid="00000000-0000-0000-0000-000000000000" contentUrl="" testdescription="Testing TCP port 80 on host autodiscover.jrergonomics.com to ensure it's listening and open." resultdescription="The port was opened successfully." additionaldetails="" elapsedMilliseconds="59">
    <children />
    </testresult>
    <testresult status="Success" errorid="00000000-0000-0000-0000-000000000000" contentUrl="" testdescription="The Microsoft Connectivity Analyzer is checking the host autodiscover.jrergonomics.com for an HTTP redirect to the Autodiscover service." resultdescription="The redirect (HTTP 301/302) response was received successfully." additionaldetails="Redirect URL: https://autodiscover-s.outlook.com/Autodiscover/Autodiscover.xml&#xD;&#xA;&#xD;&#xA;HTTP Response Headers:&#xD;&#xA;Connection: close&#xD;&#xA;Pragma: no-cache&#xD;&#xA;Cache-Control: no-cache&#xD;&#xA;Location: https://autodiscover-s.outlook.com/Autodiscover/Autodiscover.xml&#xD;&#xA;" elapsedMilliseconds="45">
    <children />
    </testresult>
    <testresult status="FatalError" errorid="734044ef-11c2-4e30-9ee6-450d49e9d92c" contentUrl="" testdescription="Attempting to test potential Autodiscover URL https://autodiscover-s.outlook.com/Autodiscover/Autodiscover.xml" resultdescription="Testing of this potential Autodiscover URL failed." additionaldetails="" elapsedMilliseconds="14021">
    <children>
    <testresult status="Success" errorid="00000000-0000-0000-0000-000000000000" contentUrl="" testdescription="Attempting to resolve the host name autodiscover-s.outlook.com in DNS." resultdescription="The host name resolved successfully." additionaldetails="IP addresses returned: 157.56.241.102, 157.56.232.166, 157.56.245.70, 157.56.245.166, 157.56.236.214, 157.56.236.6" elapsedMilliseconds="191">
    <children />
    </testresult>
    <testresult status="Success" errorid="00000000-0000-0000-0000-000000000000" contentUrl="" testdescription="Testing TCP port 443 on host autodiscover-s.outlook.com to ensure it's listening and open." resultdescription="The port was opened successfully." additionaldetails="" elapsedMilliseconds="84">
    <children />
    </testresult>
    <testresult status="SuccessWithWarnings" errorid="734044ef-11c2-4e30-9ee6-450d49e9d92c" contentUrl="" testdescription="Testing the SSL certificate to make sure it's valid." resultdescription="The certificate passed all validation requirements." additionaldetails="" elapsedMilliseconds="248">
    <children>
    <testresult status="Success" errorid="00000000-0000-0000-0000-000000000000" contentUrl="" testdescription="The Microsoft Connectivity Analyzer is attempting to obtain the SSL certificate from remote server autodiscover-s.outlook.com on port 443." resultdescription="The Microsoft Connectivity Analyzer successfully obtained the remote SSL certificate." additionaldetails="Remote Certificate Subject: CN=outlook.com, OU=Microsoft Corporation, O=Microsoft Corporation, L=Redmond, S=WA, C=US, Issuer: CN=Microsoft IT SSL SHA2, OU=Microsoft IT, O=Microsoft Corporation, L=Redmond, S=Washington, C=US." elapsedMilliseconds="163">
    <children />
    </testresult>
    <testresult status="Success" errorid="00000000-0000-0000-0000-000000000000" contentUrl="" testdescription="Validating the certificate name." resultdescription="The certificate name was validated successfully." additionaldetails="Host name autodiscover-s.outlook.com was found in the Certificate Subject Alternative Name entry." elapsedMilliseconds="1">
    <children />
    </testresult>
    <testresult status="SuccessWithWarnings" errorid="734044ef-11c2-4e30-9ee6-450d49e9d92c" contentUrl="" testdescription="Certificate trust is being validated." resultdescription="The certificate is trusted and all certificates are present in the chain." additionaldetails="">
    <children>
    <testresult status="Success" errorid="00000000-0000-0000-0000-000000000000" contentUrl="" testdescription="The Microsoft Connectivity Analyzer is attempting to build certificate chains for certificate CN=outlook.com, OU=Microsoft Corporation, O=Microsoft Corporation, L=Redmond, S=WA, C=US." resultdescription="One or more certificate chains were constructed successfully." additionaldetails="A total of 1 chains were built. The highest quality chain ends in root certificate CN=Baltimore CyberTrust Root, OU=CyberTrust, O=Baltimore, C=IE." elapsedMilliseconds="34">
    <children />
    </testresult>
    <testresult status="Warning" errorid="1339c33a-8f21-427b-a323-4cee1a13f517" contentUrl="" testdescription="Analyzing the certificate chains for compatibility problems with versions of Windows." resultdescription="Potential compatibility problems were identified with some versions of Windows." additionaldetails="The Microsoft Connectivity Analyzer can only validate the certificate chain using the Root Certificate Update functionality from Windows Update. Your certificate may not be trusted on Windows if the &quot;Update Root Certificates&quot; feature isn't enabled." elapsedMilliseconds="4">
    <children />
    </testresult>
    </children>
    </testresult>
    <testresult status="Success" errorid="00000000-0000-0000-0000-000000000000" contentUrl="" testdescription="Testing the certificate date to confirm the certificate is valid." resultdescription="Date validation passed. The certificate hasn't expired." additionaldetails="The certificate is valid. NotBefore = 2/18/2014 11:41:01 PM, NotAfter = 2/18/2016 11:41:01 PM" elapsedMilliseconds="0">
    <children />
    </testresult>
    </children>
    </testresult>
    <testresult status="Success" errorid="00000000-0000-0000-0000-000000000000" contentUrl="" testdescription="Checking the IIS configuration for client certificate authentication." resultdescription="Client certificate authentication wasn't detected." additionaldetails="Accept/Require Client Certificates isn't configured." elapsedMilliseconds="804">
    <children />
    </testresult>
    <testresult status="FatalError" errorid="734044ef-11c2-4e30-9ee6-450d49e9d92c" contentUrl="" testdescription="Attempting to send an Autodiscover POST request to potential Autodiscover URLs." resultdescription="Autodiscover settings weren't obtained when the Autodiscover POST request was sent." additionaldetails="" elapsedMilliseconds="12692">
    <children>
    <testresult status="FatalError" errorid="6c458392-3a8c-4bc2-942e-7ab533744106" contentUrl="" testdescription="The Microsoft Connectivity Analyzer is attempting to retrieve an XML Autodiscover response from URL https://autodiscover-s.outlook.com/Autodiscover/Autodiscover.xml for user [email protected]." resultdescription="The Microsoft Connectivity Analyzer failed to obtain an Autodiscover XML response." additionaldetails="An HTTP 401 Unauthorized response was received from the remote Unknown server. This is usually the result of an incorrect username or password. If you are attempting to log onto an Office 365 service, ensure you are using your full User Principal Name (UPN).&#xD;&#xA;Headers received:&#xD;&#xA;RequestId: 842d50d9-3e33-4627-8804-98fa0b02070c&#xD;&#xA;X-DiagInfo: CH1PRD0910CA013&#xD;&#xA;Content-Length: 0&#xD;&#xA;Cache-Control: private&#xD;&#xA;Date: Mon, 31 Mar 2014 04:57:26 GMT&#xD;&#xA;Server: Microsoft-IIS/7.5&#xD;&#xA;WWW-Authenticate: Basic Realm=&quot;&quot;&#xD;&#xA;X-AspNet-Version: 2.0.50727&#xD;&#xA;X-Powered-By: ASP.NET&#xD;&#xA;&#xD;&#xA;&#xD;&#xA;HTTP Response Headers:&#xD;&#xA;RequestId: 842d50d9-3e33-4627-8804-98fa0b02070c&#xD;&#xA;X-DiagInfo: CH1PRD0910CA013&#xD;&#xA;Content-Length: 0&#xD;&#xA;Cache-Control: private&#xD;&#xA;Date: Mon, 31 Mar 2014 04:57:26 GMT&#xD;&#xA;Server: Microsoft-IIS/7.5&#xD;&#xA;WWW-Authenticate: Basic Realm=&quot;&quot;&#xD;&#xA;X-AspNet-Version: 2.0.50727&#xD;&#xA;X-Powered-By: ASP.NET&#xD;&#xA;" elapsedMilliseconds="12691">
    <children />
    </testresult>
    </children>
    </testresult>
    </children>
    </testresult>
    </children>
    </testresult>
    </children>
    </testresult>
    </children>
    </testresult>

    Hi,
    Since this is an Exchange forum and your issue is related to domain.live.com, I recommend you contact with domain.live.com support to get quicker and more professional help:<cite class="_Vc">https://domains.live.com/support/
    </cite>
    Thanks for your understanding in advance.
    Best regards,
    Angela Shi
    TechNet Community Support

  • Oracle access manager - Policy domain - Return Type

    Hi,
    I have a requirement where I need to return few LDAP parameter values through Policy domain while redirecting. But the return type should be propertytype and not headervar or cookie. This is SSO integration with websphere using JAAS subject. We have inhouse TAI connector developed for integration between websphere and oracle access manager.
    Please help me to resolve this issue.
    Regards,
    Prashant

    Hi Prashant,
    OAM can return any type that you want, and OAM will set the name/value for that type - you can put "propertytype" in the type column, and the name and return attribute in the respective fields. "Cookie" and "HeaderVar" are the only types used by OAM WebGates, but your AccessGate (custom in-house connector) should be able to retrieve the values of propertytype that OAM sets.
    Regards,
    Colin

  • Reading values from lookup columns through custom workflow in SharePoint 2013

    We are able to read the values of text, number columns through custom workflow (via coding) in SharePoint 2013. However, we are not able to read values from lookup columns. So, request anyone to provide help on this.
    Thanks & regards,
    Aditya

    Hi,
    According to your post, my understanding is that you want to read values from lookup columns through custom workflow in SharePoint 2013.
    Since the workflow just doesn't get lookup fields, let's give it something static to work with instead. If we can capture the ID of the lookup field and store that as a static value in our list, the workflow can happily use that to look up our related.
    For more information, you can refer to:
    SharePoint 2013 Workflows and Lookup Columns
    Thanks,
    Linda Li                
    Forum Support
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact
    [email protected]
    Linda Li
    TechNet Community Support

  • How can i send email from a custom domain connected to gmail on iphone?

    Hi there,
    I am trying to add a gmail account to my iphone 5S which i have added a custom godaddy email to through pop3 but when i add the gmail account i cant send from the custom domain email.
    lets say the account is [email protected] with a [email protected] email attached to it, is there a way of sending emails from my iphone from this address?
    I have tried to find other guides but cannot seem to.
    thanks in advance

    Look in the JavaMail forum on how to create Mime format emails. This allows you to use HTML instead of plain text.
    Anthony

Maybe you are looking for

  • PDF does not display 300 dpi images in Safari only

    I have a dynamically generated PDF that contains a 300 dpi image. The image added can be one of several that the user selects. On all other browsers the pdf renders fine. On Safari only, seemingly in all modern flavors of OSx and Safari, the images b

  • Multifunction Printer/Scanner/FAX machines and FAXing from the desktop.

    I've got a Canon MP530 thanks to an Apple Bundle and after a lot of gyrations, it has come down to be that neither I, Canon, nor Apple can make this unit send or recieve FAXs from the desktop! Apple seems to be "stunned" (better word than "clueless")

  • Photoshop CS6 update to Camera Raw 7.4

    I'm trying to find the download mechanism that I apparently need to update camera raw to 7.4 in Photoshop CS6 which I just purchased.  Please help.  I don't know how to do this as I am new to the program and I've tried to find it through the help fun

  • Transaction-850.xml in B2B_IN_QUEUE has non http namespaces

    Hi Ramesh, When we are generating a Transaction-850 XML from B2B server ( it is writing to IP_IN_QUEUE) we are finding that it is generating the following XML. Now it is becoming impossible to transform this XML into an OAG XML because the namespace

  • We need new ios 7.0.1 or newest upgrade

    Hello, my phone is iphone 4s model. when i get a call with locked screen, ı can't turn down a call.just have answer button, it haven't turn down button ! another second problem my phone is working fast before with ios 6 versions, but now my phone is