Notice: This website is an unofficial Microsoft Knowledge Base (hereinafter KB) archive and is intended to provide a reliable access to deleted content from Microsoft KB. All KB articles are owned by Microsoft Corporation. Read full disclaimer for more details.

When you use Microsoft Transporter Suite for Lotus Domino to migrate messages to Exchange Server 2007, some messages may be migrated without attachments


View products that this article applies to.

Symptoms

Consider the following scenario. You use Microsoft Transporter Suite for Lotus Domino to migrate an e-mail message from Lotus Domino to Microsoft Exchange Server 2007. This e-mail message includes an attachment that is greater than 28 MB. In this scenario, you receive the following error message:
The message was migrated without the attachments. This error might be due to configuration limitations on the server.
Error details: The request failed with HTTP status 404: Not Found.

↑ Back to the top


Cause

This problem occurs because Internet Information Services (IIS) version 7.0 includes a built-in security feature that limits the maximum amount of data in a request. By default, this limit is 30,000,000 bytes, or slightly less than 29 MB.

↑ Back to the top


Resolution

To resolve this problem, you must make a change in one of the Web.config files on the Exchange Server 2007 computer. To do this, follow these steps:
  1. Open Windows Explorer.
  2. Locate the following folder.
    Program Files\Microsoft\Exchange Server\ClientAccess\exchweb\ews
  3. Use Notepad to open the Web.config file.
  4. Locate the section that contains the following entries:
    <configuration>
    <runtime>
  5. In this section, add the following entries between the <configuration> entry and the <runtime> entry:

    <system.webServer>
    <security>
    <requestFiltering>
    <requestLimits maxAllowedContentLength="xxxxxxxx" />
    </requestFiltering>
    </security>
    </system.webServer>

    The xxxxxxxx placeholder in the MaxAllowedContentLength property indicates, in bytes, the size of the attachment that you want to enable. For example, if you want to enable a size of 40 MB, you can use the following entry:
    <RequestLimits maxAllowedContentLength=�41943040�
  6. In the Services snap-in, restart the World Wide Web Publishing Service.

The "executionTimeout" attribute

If you configure the MaxAllowedContentLength property to enable very large attachments, you may also have to configure the executionTimeout attribute. For more information, click the following article number to view the article in the Microsoft Knowledge Base:
953526 Error message when you try to migrate an e-mail message that is larger than 4 MB by using Microsoft Transporter Suite for Lotus Domino: "Maximum request length exceeded"

↑ Back to the top


References

For more information about the executionTimeout attribute and the maxRequestLength attribute, visit the following Microsoft Developer Network Web site:For more information about the MaxAllowedContentLength property, visit the following Microsoft Developer Network Web site:

↑ Back to the top


Keywords: KB959955, kbprb, kbsurveynew, kbexpertiseadvanced, kbtshoot, kberrmsg, kbmigrate

↑ Back to the top

Article Info
Article ID : 959955
Revision : 3
Created on : 7/7/2009
Published on : 7/7/2009
Exists online : False
Views : 314