just wanna know how to connect SAP through "asp.net core" , I got to use the asp.net core to modified the old asp.net site, however, it is required to connect SAP (I knew it is possible to connect SAP by asp.net)
Asked
Active
Viewed 1,093 times
0
-
This is the first response in Google. Have you tried anything here? If you have a specific problem, post it. Otherwise please try something first. https://www.c-sharpcorner.com/article/integrating-sap-system-with-net-application/ – Nick.McDermaid Feb 08 '19 at 04:51
-
thanks for your response, asp.net can connect SAP that I know, however, I just have to use "aps.net core" instead – Joe Lin Feb 08 '19 at 04:53
-
I added "Core" to my google search and got this https://stackoverflow.com/questions/49627008/sap-net-connector-sapnco-net-core Are you trying to connect directly to the database or just to an API (i.e. REST API) – Nick.McDermaid Feb 08 '19 at 05:06
-
2SAP NCo ist either Net 2.0 or Net 4.0. To use an "old" .Net library in .Net Core you need it to be compatible to .Net Standard, which would require at least .Net 4.5. So NCo would be incompatible. See SAP note 2486663 for more information. There is however the SAP Business Connector, a small server that translates traditional BAPI calls into XML based web services. Afaik it is free of charge for SAP customers, so it might be worth looking into that. – Dirk Trilsbeek Feb 08 '19 at 10:04
-
thanks for Dirk's replay , let me check it – Joe Lin Feb 11 '19 at 02:27