Link to home
Start Free TrialLog in
Avatar of Imran Khunt
Imran Khunt

asked on

Tried reading the outlook email attachment in c#. Getting error as Microsoft.Exchange.WebServices.Data.ServiceResponseException: Id is malformed.

Hello everyone,

I am trying to read the email attachment for the outlook email in asp.net c# but i am new to this can anyone help me, i have the below code which select the new email with specific title.

String MailboxToAccess = "myemailaddress";
ExchangeService service = new Microsoft.Exchange.WebServices.Data.ExchangeService(ExchangeVersion.Exchange2007_SP1);
List<SearchFilter> searchFilterCollection = new List<SearchFilter>();
            searchFilterCollection.Add(new SearchFilter.ContainsSubstring(ItemSchema.Subject, "EDI"));
            searchFilterCollection.Add(new SearchFilter.IsEqualTo(EmailMessageSchema.IsRead, false));
            SearchFilter searchFilter = new SearchFilter.SearchFilterCollection(LogicalOperator.Or, searchFilterCollection.ToArray());
            service.Credentials = new NetworkCredential("myemail", "pwd");
            service.AutodiscoverUrl(MailboxToAccess, adAutoDiscoCallBack);
            FolderId FolderToAccess = new FolderId(WellKnownFolderName.Inbox, MailboxToAccess);
            ItemView ivItemView = new ItemView(50);
            FindItemsResults<Item> FindItemResults = service.FindItems(FolderToAccess, searchFilter, ivItemView);
            PropertySet ItemPropertySet = new PropertySet(BasePropertySet.IdOnly);
            ItemPropertySet.Add(ItemSchema.Body);
            ItemPropertySet.RequestedBodyType = BodyType.Text;
///error here??????
                EmailMessage message = EmailMessage.Bind(service, new ItemId("AAMkA"), new PropertySet(BasePropertySet.IdOnly, ItemSchema.Attachments));

                // Iterate through the attachments collection and load each attachment.
                foreach (Attachment attachment in message.Attachments)
                {
                    if (attachment is FileAttachment)
                    {
                        FileAttachment fileAttachment = attachment as FileAttachment;

                        // Load the file attachment into memory and print out its file name.
                        fileAttachment.Load();
                        Console.WriteLine("Attachment name: " + fileAttachment.Name);

                        // Load attachment contents into a file.
                        fileAttachment.Load("C:\\temp\\" + fileAttachment.Name);

                        // Stream attachment contents into a file.
                        FileStream theStream = new FileStream("C:\\temp\\Stream_" + fileAttachment.Name, FileMode.OpenOrCreate, FileAccess.ReadWrite);
                        fileAttachment.Load(theStream);
                        theStream.Close();
                        theStream.Dispose();
                    }
                    else // Attachment is an item attachment.
                    {
                        // Load attachment into memory and write out the subject.
                        ItemAttachment itemAttachment = attachment as ItemAttachment;
                        itemAttachment.Load();
                        Console.WriteLine("Subject: " + itemAttachment.Item.Subject);
                    }
              //  }
               
            }
           
        }
        internal static bool adAutoDiscoCallBack(string redirectionUrl)
        {
            // The default for the validation callback is to reject the URL.
            bool result = false;

            Uri redirectionUri = new Uri(redirectionUrl);

            // Validate the contents of the redirection URL. In this simple validation
            // callback, the redirection URL is considered valid if it is using HTTPS
            // to encrypt the authentication credentials.
            if (redirectionUri.Scheme == "https")
            {
                result = true;
            }

            return result;

        }
ASKER CERTIFIED SOLUTION
Avatar of Douglas Suyemoto
Douglas Suyemoto
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
No comment has been added to this question in more than 21 days, so it is now classified as abandoned.

I have recommended this question be closed as follows:

Accept: dsuyemoto (https:#a42048896)

If you feel this question should be closed differently, post an objection and the moderators will review all objections and close it as they feel fit. If no one objects, this question will be closed automatically the way described above.

frankhelk
Experts-Exchange Cleanup Volunteer