基本信息
源码名称:C#调用Com组件,连接SAP并实现数据契约数据转换
源码大小:0.25M
文件格式:.rar
开发语言:C#
更新时间:2023-04-15
友情提示:(无需注册或充值,赞助后即可获取资源下载链接)
嘿,亲!知识可是无价之宝呢,但咱这精心整理的资料也耗费了不少心血呀。小小地破费一下,绝对物超所值哦!如有下载和支付问题,请联系我们QQ(微信同号):78630559
本次赞助数额为: 2 元×
微信扫码支付:2 元
×
请留下您的邮箱,我们将在2小时内将文件发到您的邮箱
源码介绍
C#调用Com组件,连接SAP并实现数据契约数据转换
自己调用COM组件连接SAP,并封装成自己的,写的一般,利用model的特性实现SAP的table自动转换成.net对象,并实现table转换成dataset
文件清单
└── Artlee.SAPConnection
├── ArtLee.ChintSAP
│ ├── app.config
│ ├── ArtLee.ChintSAP.csproj
│ ├── bin
│ │ └── Debug
│ │ ├── ArtLee.ChintSAP.dll
│ │ ├── ArtLee.ChintSAP.pdb
│ │ ├── Interop.SAPBAPIControlLib.dll
│ │ ├── Interop.SAPFunctionsOCX.dll
│ │ ├── Interop.SAPLogonCtrl.dll
│ │ └── Interop.SAPTableFactoryCtrl.dll
│ ├── obj
│ │ └── Debug
│ │ ├── ArtLee.ChintSAP.csproj.FileListAbsolute.txt
│ │ ├── ArtLee.ChintSAP.dll
│ │ ├── ArtLee.ChintSAP.pdb
│ │ ├── Refactor
│ │ │ └── ArtLee.ChintSAP.dll
│ │ ├── ResolveAssemblyReference.cache
│ │ └── TempPE
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ ├── SAPClient
│ │ ├── DoNetType.cs
│ │ ├── ParameterOption.cs
│ │ ├── SAPConnection.cs
│ │ ├── SAPConnectionState.cs
│ │ ├── SAPContractAttribute.cs
│ │ ├── SAPCredential.cs
│ │ ├── SAPEventArgs.cs
│ │ ├── SAPException.cs
│ │ ├── SAPFunction.cs
│ │ ├── SAPMemberAttribute.cs
│ │ ├── SAPParameterCollection.cs
│ │ ├── SAPParameter.cs
│ │ ├── SAPReferentHelper.cs
│ │ ├── SAPTables.cs
│ │ └── 代码说明.txt
│ └── SAPDLL
│ ├── Interop.SAPBAPIControlLib.dll
│ ├── Interop.SAPFunctionsOCX.dll
│ ├── Interop.SAPLogonCtrl.dll
│ └── Interop.SAPTableFactoryCtrl.dll
├── ArtLee.ChintSAP.Tests
│ ├── ArtLee.ChintSAP.Tests.csproj
│ ├── bin
│ │ └── Debug
│ │ ├── ArtLee.ChintSAP.dll
│ │ ├── ArtLee.ChintSAP.pdb
│ │ ├── ArtLee.ChintSAP.Tests.dll
│ │ ├── ArtLee.ChintSAP.Tests.pdb
│ │ ├── Interop.SAPFunctionsOCX.dll
│ │ ├── Interop.SAPLogonCtrl.dll
│ │ ├── Interop.SAPTableFactoryCtrl.dll
│ │ └── nunit.framework.dll
│ ├── DoNetTypeTest.cs
│ ├── obj
│ │ └── Debug
│ │ ├── ArtLee.ChintSAP.Tests.csproj.FileListAbsolute.txt
│ │ ├── ArtLee.ChintSAP.Tests.dll
│ │ ├── ArtLee.ChintSAP.Tests.pdb
│ │ ├── Refactor
│ │ ├── ResolveAssemblyReference.cache
│ │ └── TempPE
│ └── Properties
│ └── AssemblyInfo.cs
├── ConsoleApplication1
│ ├── bin
│ │ ├── ArtLee.ChintSAP.dll
│ │ ├── ConsoleApplication1.exe
│ │ └── Debug
│ │ ├── ArtLee.ChintSAP.dll
│ │ ├── ArtLee.ChintSAP.pdb
│ │ ├── ConsoleApplication1.exe
│ │ ├── ConsoleApplication1.pdb
│ │ ├── ConsoleApplication1.vshost.exe
│ │ ├── ConsoleApplication1.vshost.exe.manifest
│ │ ├── dev_rfc.trc
│ │ ├── Interop.SAPFunctionsOCX.dll
│ │ ├── Interop.SAPLogonCtrl.dll
│ │ └── Interop.SAPTableFactoryCtrl.dll
│ ├── ConsoleApplication1.csproj
│ ├── obj
│ │ └── Debug
│ │ ├── ConsoleApplication1.csproj.FileListAbsolute.txt
│ │ ├── ConsoleApplication1.exe
│ │ ├── ConsoleApplication1.pdb
│ │ ├── Refactor
│ │ ├── ResolveAssemblyReference.cache
│ │ └── TempPE
│ ├── Program.cs
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ └── UserInfo.cs
├── SAPRFC.sln
├── SAPRFC.suo
└── SAPRFCTest.suo
27 directories, 71 files
C#调用Com组件,连接SAP并实现数据契约数据转换
自己调用COM组件连接SAP,并封装成自己的,写的一般,利用model的特性实现SAP的table自动转换成.net对象,并实现table转换成dataset
文件清单
└── Artlee.SAPConnection
├── ArtLee.ChintSAP
│ ├── app.config
│ ├── ArtLee.ChintSAP.csproj
│ ├── bin
│ │ └── Debug
│ │ ├── ArtLee.ChintSAP.dll
│ │ ├── ArtLee.ChintSAP.pdb
│ │ ├── Interop.SAPBAPIControlLib.dll
│ │ ├── Interop.SAPFunctionsOCX.dll
│ │ ├── Interop.SAPLogonCtrl.dll
│ │ └── Interop.SAPTableFactoryCtrl.dll
│ ├── obj
│ │ └── Debug
│ │ ├── ArtLee.ChintSAP.csproj.FileListAbsolute.txt
│ │ ├── ArtLee.ChintSAP.dll
│ │ ├── ArtLee.ChintSAP.pdb
│ │ ├── Refactor
│ │ │ └── ArtLee.ChintSAP.dll
│ │ ├── ResolveAssemblyReference.cache
│ │ └── TempPE
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ ├── SAPClient
│ │ ├── DoNetType.cs
│ │ ├── ParameterOption.cs
│ │ ├── SAPConnection.cs
│ │ ├── SAPConnectionState.cs
│ │ ├── SAPContractAttribute.cs
│ │ ├── SAPCredential.cs
│ │ ├── SAPEventArgs.cs
│ │ ├── SAPException.cs
│ │ ├── SAPFunction.cs
│ │ ├── SAPMemberAttribute.cs
│ │ ├── SAPParameterCollection.cs
│ │ ├── SAPParameter.cs
│ │ ├── SAPReferentHelper.cs
│ │ ├── SAPTables.cs
│ │ └── 代码说明.txt
│ └── SAPDLL
│ ├── Interop.SAPBAPIControlLib.dll
│ ├── Interop.SAPFunctionsOCX.dll
│ ├── Interop.SAPLogonCtrl.dll
│ └── Interop.SAPTableFactoryCtrl.dll
├── ArtLee.ChintSAP.Tests
│ ├── ArtLee.ChintSAP.Tests.csproj
│ ├── bin
│ │ └── Debug
│ │ ├── ArtLee.ChintSAP.dll
│ │ ├── ArtLee.ChintSAP.pdb
│ │ ├── ArtLee.ChintSAP.Tests.dll
│ │ ├── ArtLee.ChintSAP.Tests.pdb
│ │ ├── Interop.SAPFunctionsOCX.dll
│ │ ├── Interop.SAPLogonCtrl.dll
│ │ ├── Interop.SAPTableFactoryCtrl.dll
│ │ └── nunit.framework.dll
│ ├── DoNetTypeTest.cs
│ ├── obj
│ │ └── Debug
│ │ ├── ArtLee.ChintSAP.Tests.csproj.FileListAbsolute.txt
│ │ ├── ArtLee.ChintSAP.Tests.dll
│ │ ├── ArtLee.ChintSAP.Tests.pdb
│ │ ├── Refactor
│ │ ├── ResolveAssemblyReference.cache
│ │ └── TempPE
│ └── Properties
│ └── AssemblyInfo.cs
├── ConsoleApplication1
│ ├── bin
│ │ ├── ArtLee.ChintSAP.dll
│ │ ├── ConsoleApplication1.exe
│ │ └── Debug
│ │ ├── ArtLee.ChintSAP.dll
│ │ ├── ArtLee.ChintSAP.pdb
│ │ ├── ConsoleApplication1.exe
│ │ ├── ConsoleApplication1.pdb
│ │ ├── ConsoleApplication1.vshost.exe
│ │ ├── ConsoleApplication1.vshost.exe.manifest
│ │ ├── dev_rfc.trc
│ │ ├── Interop.SAPFunctionsOCX.dll
│ │ ├── Interop.SAPLogonCtrl.dll
│ │ └── Interop.SAPTableFactoryCtrl.dll
│ ├── ConsoleApplication1.csproj
│ ├── obj
│ │ └── Debug
│ │ ├── ConsoleApplication1.csproj.FileListAbsolute.txt
│ │ ├── ConsoleApplication1.exe
│ │ ├── ConsoleApplication1.pdb
│ │ ├── Refactor
│ │ ├── ResolveAssemblyReference.cache
│ │ └── TempPE
│ ├── Program.cs
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ └── UserInfo.cs
├── SAPRFC.sln
├── SAPRFC.suo
└── SAPRFCTest.suo
27 directories, 71 files