Please note, this is a STATIC archive of website www.tutorialspoint.com from 11 May 2019, cach3.com does not collect or store any user information, there is no "phishing" involved.
Tutorialspoint

Upgrading SAP .NET Connector from .NET 2.0 to .NET 3.0


I have to perform an upgrade of SAP .NET Connector from 2.0 to 3.0. I know that there are lot many changes in 3.0 and I may need to rewrite entire application.

Is there any guide that can help me how to perform this upgrade?


1 Answer
SAP Expert

You are correct. NET Connector 2.0 uses proxy classes however .NET Connector 3.0 uses generic API. You need to rewrite all code that include NCo interaction.

.NET Connector 3.0 has many benefits over .NET 2.0:

  • NCo 3.0 Is more stable, robust and supports heavy load
  • >NET 3.0 provides better design of your application by decoupling the connection handling.
  • It consumes less memory
  • Allows dynamic programming without the need for proxy generation
  • Can dynamically look up metadata (so if something changes in the related ABAP system – e.g. if parameters in a function module signatures are added or the ABAP system is switched from Non-Unicode to Unicode, you no longer need to regenerate the proxies and recompile your solution)
  • Is no longer bound to a special Visual Studio version.

To know more about SAP NCo 3.0, you can refer this link:

SAP-NET-Connector


Advertisements

We use cookies to provide and improve our services. By using our site, you consent to our Cookies Policy.