“SAP Connector for .NET”:无需 Visual Studio 2003 即可生成代理

发布于 2024-08-29 00:34:58 字数 119 浏览 2 评论 0原文

是否有可能/方法在没有 Visual Studio 2003 的情况下生成“SAP Connector for .NET”代理,以便它们可以在 Visual Studio 2008 中使用?

Are there possibilities/ways to generate "SAP Connector for .NET"-proxies without Visual Studio 2003, so that they can be used in Visual Studio 2008 ?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

羁绊已千年 2024-09-05 00:34:58

您可以使用 NC0 3.0

适用于 Microsoft .NET 的 SAP 连接器3.0 发布。
NCo 3.0 可以从 SAP 服务市场,包括随附文档。

You can use NC0 3.0

SAP Connector for Microsoft .NET 3.0 released.
The NCo 3.0 can be downloaded from SAP Service Marketplace, including accompanying documentation.

若能看破又如何 2024-09-05 00:34:58

NCo 3.0 与 NCo 2.0 有很大不同:

使用 .NET Connector 2.0,NCo 设计时将生成“代理方法”
对于要调用的每个 ABAP 功能模块,以及每个模块的一个特定类
该功能模块引用的结构或表类型。你必须创建
来自这些结构/表类的对象并将它们传递给代理方法
对应功能模块。
现在使用 .NET Connector 3.0,不再有任何类型的生成代码。
不是为每个功能模块生成一个代理方法,而是一个单一的代理方法
IRfcFunction 类,其 Invoke() 方法动态执行每个给定的
ABAP功能模块。而不是为每个
结构和表,有一个通用的 IRfcStructure 类代表所有
可能的结构,以及类似地所有表的通用 IRfcTable 类。所以
现在 NCo 3.0 基本上不再是在设计时静态地对所有内容进行硬连线
在运行时动态处理一切。另一个区别是你不再
需要自己创建结构和表的对象。你只创建一个
IRfcFunction 对象,它在内部负责所有包含的结构和
表(使用延迟初始化)。

NCo 3.0 differs substantially from NCo 2.0:

With the .NET Connector 2.0, the NCo design time would generate a “proxy method”
for each ABAP function module you want to call, and one specific class for each
structure or table type that this function module is referencing. You had to create
objects from these structure/table classes and pass them into the proxy method
corresponding to the function module.
Now with the .NET Connector 3.0, there is no longer any kind of generated code.
Instead of one generated proxy method for each function module, there is one single
IRfcFunction class, whose Invoke() method dynamically executes every given
ABAP function module. And instead of a dedicated generated class for every
structure and table, there is one generic IRfcStructure class representing all
possible structures, and analogously one generic IRfcTable class for all tables. So
basically instead of hard-wiring everything statically at design time, NCo 3.0 now
handles everything dynamically at runtime. Another difference is that you no longer
need to create the objects for structures and tables yourself. You only create one
IRfcFunction object, and it internally takes care of all contained structures and
tables (using lazy initialization).

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文