
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Naming Conflict Error While Consuming SAP Web Service in .NET
You can fix this issue by adding Global before all calls giving the error. This has happened cos of system namespace in BAPI and Windows.
Example
Another possible solution of this is by adding an alias for System.XML and change System.XML with SysXml as below:
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; } } }
Advertisements