Microsoft KB Archive/327071

From BetaArchive Wiki

Article ID: 327071

Article Last Modified on 2/12/2007



APPLIES TO

  • Microsoft .NET Framework 1.0 Service Pack 1



This article was previously published under Q327071

SYMPTOMS

Qualified attributes in an XML schema do not result in the correct declarations in the XSD or WSDL-generated code.

RESOLUTION

A supported hotfix is now available from Microsoft, but it is only intended to correct the problem that is described in this article. Only apply it to systems that are experiencing this specific problem. This hotfix may receive additional testing. Therefore, if you are not severely affected by this problem, we recommend that you wait for the next Microsoft .NET Framework Service Pack that contains this hotfix.

To resolve this problem immediately, contact Microsoft Product Support Services to obtain the fix. For a complete list of Microsoft Product Support Services phone numbers and information about support costs, visit the following Microsoft Web site:

NOTE: In special cases, charges that are ordinarily incurred for support calls may be canceled if a Microsoft Support Professional determines that a specific update will resolve your problem. The typical support costs will apply to additional support questions and issues that do not qualify for the specific update in question.

The English version of this fix has the file attributes (or later) that are listed in the following table. The dates and times for these files are listed in coordinated universal time (UTC). When you view the file information, it is converted to local time. To find the difference between UTC and local time, use the Time Zone tab in the Date and Time tool in Control Panel.

   Date          Time    Version        Size        File name        Platform
   --------------------------------------------------------------------------
   31-Jul-2002   11:27   1.0.3705.299   1,298,432   System.Xml.dll   i386
                



WORKAROUND

To work around this problem, manually add the XmlSchemaForm.Qualified declarations to the generated code.

STATUS

Microsoft has confirmed that this is a problem in the Microsoft products that are listed at the beginning of this article.

MORE INFORMATION

By default, the .NET Framework assumes that non-declared attributes are Unqualified. This can create errors when an attribute is not declared as a qualified attribute.

Steps to Reproduce the Behavior

To reproduce the problem, follow these steps:

  1. Create a file named Test.xsd that contains the following schema:

    <xs:schema elementFormDefault="unqualified"
        xmlns:xs="http://www.w3.org/2001/XMLSchema">
      <xs:element name="purchaseOrder" type="PurchaseOrderType" />
        <xs:complexType name="PurchaseOrderType">
        <xs:sequence>
          <xs:element minOccurs="0" maxOccurs="1" form="unqualified" name="shipTo"
              type="xs:string" />
        </xs:sequence>
        <xs:attribute form="unqualified" name="a1" type="xs:string" />
        <xs:attribute form="qualified"   name="a2" type="xs:string" />
        <xs:attribute                    name="a3" type="xs:string" />
      </xs:complexType>
    </xs:schema>
                        
  2. At a Visual Studio .NET or Microsoft .NET Framework command prompt, type xsd /c test.xsd, and then press ENTER.

This command creates a file named Test.cs that contains generated code. This code includes the following:

[System.Xml.Serialization.XmlElementAttribute
      (Form=System.Xml.Schema.XmlSchemaForm.Unqualified)]
    public string shipTo;
    
    /// <remarks/>
    [System.Xml.Serialization.XmlAttributeAttribute
          (Form=System.Xml.Schema.XmlSchemaForm.Unqualified)]
    public string a1;
    
    /// <remarks/>
    [System.Xml.Serialization.XmlAttributeAttribute()]
    public string a2;
    
    /// <remarks/>
    [System.Xml.Serialization.XmlAttributeAttribute()]
    public string a3;
                

After you apply the hotfix, the generated code is the following:

[System.Xml.Serialization.XmlElementAttribute
      (Form=System.Xml.Schema.XmlSchemaForm.Unqualified)]
    public string shipTo;
    
    /// <remarks/>
    [System.Xml.Serialization.XmlAttributeAttribute()]
    public string a1;
    
    /// <remarks/>
    [System.Xml.Serialization.XmlAttributeAttribute
          (Form=System.Xml.Schema.XmlSchemaForm.Qualified)]
    public string a2;
    
    /// <remarks/>
    [System.Xml.Serialization.XmlAttributeAttribute()]
    public string a3;
                

Keywords: kbbug kbfix kbqfe kbhotfixserver KB327071