When the Response.Charset property is set to NULL on an ASP.NET Web page, the source code of the Web page is returned instead of the Response content body if you try to open a form in Office InfoPath 2003 (892951)



The information in this article applies to:

  • Microsoft Office InfoPath 2003
  • Microsoft Office InfoPath 2003, Service Pack 1 (SP1)

SYMPTOMS

You visit a Microsoft ASP.NET Web page that contains the Response.Charset property set to NULL. When you try to open a form in Microsoft Office InfoPath 2003 from the Web page, you receive an error message that is similar to the following:
InfoPath cannot open the following file: YourWebForm.aspx.
The file is not a valid XML file.
When you click Show Details, you receive an error message that is similar to the following:
The form contains XML that cannot be parsed:
A name was started with an invalid character.

Line 1, Position 2
<%@ Page language="c#" Codebehind="YourWebForm1.aspx.cs" AutoEventWireup="false" Inherits="YourWebApp.YourWebForm" %>
-^
Note In this error message, YourWebForm.aspx is the name of the Web form that you are trying to open. YourWebApp is the name of the ASP.NET Web application.

Note In the Show Details box, you notice that this is the source code of the ASP.NET Web page.

CAUSE

This problem occurs when you have read and write permissions to the file on the computer that is running the ASP.NET Web application. Typically, this problem occurs when you have administrator rights or if you are a member of the VS Developers group on the computer that is running the ASP.NET Web application. When you try to open the form in InfoPath 2003, the actual source code of the ASP.NET Web page is returned.

Note Only users who are developing the application will experience this behavior. Users who are not developing the application and are just opening the .aspx page will not experience this behavior.

WORKAROUND

To work around this problem and to load the InfoPath 2003 form correctly, you must access the ASP.NET Web application by using an account that does not have read and write permissions to the ASP.NET Web page.

STATUS

Microsoft has confirmed that this is a problem in the Microsoft products that are listed in the "Applies to" section.

MORE INFORMATION

Steps to reproduce the problem

  1. Start Microsoft Visual Studio .NET 2003.
  2. On the File menu, click New, click Visual C# Projects, and then click ASP.NET Web Application.
  3. In the Location box, type InfoPathTest, and then click OK.
  4. In the Solution Explorer pane, right-click WebForm1.aspx, and then click View Code.
  5. Add the following Visual C# code to the Page_load method:
    Response.Charset = "";
    Response.ContentType = "text/xml";
    Response.Write("<?xml version=\"1.0\" encoding=\"UTF-8\"?><?mso-infoPathSolution solutionVersion=\"1.0.0.1\" href=\"<path to Manifest.xsf or to a .xsn file>\"  PIVersion=\"1.0.0.0\" productVersion=\"11.0.5120\" ?><?mso-application progid=\"InfoPath.Document\"?><my:myFields xmlns:my=\"http://schemas.microsoft.com/office/infopath/2003/myXSD/2003-03-25T19:43:06\" xml:lang=\"en-us\"><my:field1>some text</my:field1></my:myFields>");
    
  6. On the Debug menu, click Start.
  7. When you click Open, you receive the error message that is mentioned in the "Symptoms" section.

Modification Type:MajorLast Reviewed:3/7/2005
Keywords:kberrmsg kbASPNET kbBug kbnofix kbtshoot kbprb KB892951 kbAudDeveloper