I have a process that uses EWS Managed API to save email messages as eml files. Like this:
var propertySet = new PropertySet(BasePropertySet.FirstClassProperties, ItemSchema.MimeContent, EmailMessageSchema.IsRead);
message.Load(propertySet);
File.WriteAllBytes(fullPath, message.MimeContent.Content);
After the file is saved, I add a record to the database. The problem is, when the application is done saving the eml for particularly large emails, I cannot connect to SQL Server. I get "Login failed. The login is from an untrusted domain and cannot be used with Windows authentication" when this code gets to here:
using (SqlConnection conn = new SqlConnection(connString))
{
conn.Open();
None of the other posts with this error message seem to fit my situation. I can connect to SQL Server with no problems until I run across a large email message.