The big thing is the past week or so has been the release of the Exchange 2013 preview and in the cloud world the Office365 (Exchange Online 2013) preview. One of the new things in the Auto-discover response if your using one of these is the EXHTTP node that gets returned eg
I haven't quite found where this node is documented yet but if your creating Outlook Anywhere Profiles programmatically against the Office365 preview then the Server info from this node is important for building a Outlook Anywhere profile. If your using your own POX based Auto-discover client you won't get access to this new information unless you set the UserAgent so the request looks likes its coming from Outlook.
eg
I haven't quite found where this node is documented yet but if your creating Outlook Anywhere Profiles programmatically against the Office365 preview then the Server info from this node is important for building a Outlook Anywhere profile. If your using your own POX based Auto-discover client you won't get access to this new information unless you set the UserAgent so the request looks likes its coming from Outlook.
eg
- String snServerName = @"https://autodiscover-s.outlook.com/autodiscover/autodiscover.xml";
- String OAProxy = "";
- String OAProxy1 = "";
- String ProxyCertName = "";
- String ProxyCertName1 = "";
- String ProfileName = "";
- String InternalServerName = "";
- //Do AutoDiscover
- String auDisXML = "<?xml version=\"1.0\" encoding=\"utf-8\"?><Autodiscover xmlns=\"http://schemas.microsoft.com/exchange/autodiscover/outlook/requestschema/2006\"><Request>" +
- "<EMailAddress>" + emEmailAddress + "</EMailAddress>" +
- "<AcceptableResponseSchema>http://schemas.microsoft.com/exchange/autodiscover/outlook/responseschema/2006a</AcceptableResponseSchema>" +
- "</Request>" +
- "</Autodiscover>";
- System.Net.HttpWebRequest adAutoDiscoRequest = (System.Net.HttpWebRequest)System.Net.HttpWebRequest.Create(snServerName);
- adAutoDiscoRequest.CookieContainer = new CookieContainer();
- NetworkCredential ncCred = Credential;
- byte[] bytes = Encoding.UTF8.GetBytes(auDisXML);
- adAutoDiscoRequest.ContentLength = bytes.Length;
- adAutoDiscoRequest.ContentType = "text/xml";
- adAutoDiscoRequest.UserAgent = "Microsoft Office/14.0 (Windows NT 0.0; Microsoft Outlook 14.0.6112; Pro)";
- adAutoDiscoRequest.Method = "POST";
- adAutoDiscoRequest.Credentials = ncCred;
- CookieContainer svccook = adAutoDiscoRequest.CookieContainer;
- System.IO.Stream rsRequestStream = adAutoDiscoRequest.GetRequestStream();
- rsRequestStream.Write(bytes, 0, bytes.Length);
- rsRequestStream.Close();
- adAutoDiscoRequest.AllowAutoRedirect = false;
- WebResponse adResponse = adAutoDiscoRequest.GetResponse();
- String Redirect = adResponse.Headers.Get("Location");
- if (Redirect != null)
- {
- adAutoDiscoRequest = (System.Net.HttpWebRequest)System.Net.HttpWebRequest.Create(Redirect);
- adAutoDiscoRequest.ContentType = "text/xml";
- adAutoDiscoRequest.ContentLength = bytes.Length;
- adAutoDiscoRequest.Headers.Add("Depth", "0");
- adAutoDiscoRequest.UserAgent = "Microsoft Office/14.0 (Windows NT 6.1; Microsoft Outlook 14.0.6112; Pro)";
- adAutoDiscoRequest.Method = "POST";
- adAutoDiscoRequest.Credentials = ncCred;
- rsRequestStream = adAutoDiscoRequest.GetRequestStream();
- rsRequestStream.Write(bytes, 0, bytes.Length);
- rsRequestStream.Close();
- }
- adResponse = adAutoDiscoRequest.GetResponse();
- System.IO.Stream rsResponseStream = adResponse.GetResponseStream();
- XmlDocument reResponseDoc = new XmlDocument();
- reResponseDoc.Load(rsResponseStream);