Dynamics AX 2012-使用C#演练进行AIF访问
本文关键字:AIF 访问 演练 AX 2012- 使用 Dynamics | 更新日期: 2023-09-27 18:22:20
我可能错过了一些简单的东西,但我已经厌倦了与之斗争。似乎有很多连接到现有AIF服务的例子,但我还没有找到一个连接到自定义服务的简洁、有效的例子。
假设如下:
Service reference configured in the project with a namespace of MyService
That service has two methods exposed from Dynamics AX that we'll call:
helloWorld() and helloWorld2(str yourName)
Each method returns a simple string
你会用什么C#代码来调用每个方法并将结果写入标签?
谢谢你的帮助。
using [MyProjectName].MyService;
MyServiceClient client = new MyServiceClient();
CallContext context = new CallContext();
label1.Text = client.helloWorld(context);
MyServiceClient client = new MyServiceClient();
CallContext context = new CallContext();
label1.Text = client.helloWorld2(context, "test");