调用.net中的SAP Web服务时命名冲突错误


你可以通过在所有调用前添加 Global 修正该问题。这是因为 BAPI 中的系统命名空间和 Windows 发生的。

例如

另一个可能的解决方案是为 System.XML 添加一个别名,并将 System.XML 更改为 SysXml,如下所示

using SysXml = System.Xml;

/// <remarks/>
[System.Xml.Serialization.XmlElementAttribute(Form=SysXml.Schema.XmlSchemaForm.Unqualified)]
public string Type {
   get {
      return this.typeField;
      set {
         this.typeField = value;
      }
   }
}

更新于:18-Dec-2019

157 浏览量

开启你的职业

完成课程获得认证

开始
广告