cancel
Showing results for 
Search instead for 
Did you mean: 

Office Mail App - initialization failed

CConsult
Moderator
Moderator
Partner    VIP   

Hi,

I cannot connect to OWA via Office Mail App.

The bar within OWA is there but I will always get a failure "initialization failed". I have created a Mail App for one user.

Exchange DAG 2016

2x Enteprise Vault 12.3

any ideas what this could be?

1 REPLY 1

ChrisLangevin
Level 6
Employee

There are lots of things it *could* be. One of the most common is a failure to obtain the hidden message for the mailbox via EWS. You can see this request in a network trace in your browser (F12 developer tools) or using a web debugger like Fiddler. You're looking for a request from the client machine to the CAS with the parameter "ExecuteEwsProxy" in the URL. This is the client asking the CAS to proxy its request to EWS and retrieve the hidden message. The tricky part is that it when it fails, it does not show in the logging as a failed request; the result code is HTTP 200 because the CAS successfully answered the client's proxy request. However, if you examine the body of the response, you will see what response the EWS server gave for the proxied request, and that will usually contain the error that points you in the right direction. (In my experience it's more often than not a problem with SSL and certificates on the EWS server.)

I hope that helps.

--Chris