- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
Physics
Chemistry
Biology
Mathematics
English
Economics
Psychology
Social Studies
Fashion Studies
Legal Studies
- 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; } } }
- Related Articles
- Error Message: Unsupported xstream found: (“HTTP Code 200:OK”)” while consuming SAP Web Service
- Consuming Web Service in C# application (SAP)
- Error while connection SAP HANA with .NET
- Error while calling Web Service using SRT_UTIL Transaction
- Error while posting a sales order in SAP from .net application
- Error while creating a PO in SAP system from a .NET application
- Getting error while running SAP oData service “HTTP Open failed: PLUGIN_NOT_ACTIVE”
- Using SAP Gateway service in SAP Web project
- Integrating JSession in a Web-Service in SAP
- Using SAP Web Service from WSDL file
- SAP BI retrieving PDF from Web Service
- Using SAP Web Service from SAP by PHP with parameters
- Invoke a Web service from AJAX in SAP application
- How to host a web-service using IIS (windows) and .net
- Calling SAP Web Service to get data in Flash dashboard

Advertisements