Home
»
Microsoft Dynamics AX
»
AX WONDERS
»
Test AIF Service with X++
Test AIF Service with X++
About
About AX WONDERS
Microsoft Dynamics AX, Sharepoint and .NET (C#, ASP.NET) development blog.
Options
RSS for posts
Related Posts
ax 2009: How to process only certain jobs from Queue Manager?
by
Michael_Land
on
15 Feb 2013
Not Answered
Top 5 AIF Development Tips and Tricks
by
agarwal AX
on
26 Jul 2012
0
comments
The AIF processing services used by each of the AIF adapters in AX 2009
by
AX In the Field
on
26 May 2011
0
comments
View More
Test AIF Service with X++
Eduardo Arias
27 Jan 2012 2:13 PM
Comments
0
The following code will allow you to make sure the AIF service is running in our server. In addition, you can use this code to run the AIF service at any moment instead of using a batch process.
static void TEST_AIF(Args _args)
{
AifGatewayReceiveService agrs = new AifGatewayReceiveService();
AifInboundProcessingService aip = new AifInboundProcessingService();
AifGatewaySendService agss = new AifGatewaySendService();
AifOutboundProcessingService aop = new AifOutboundProcessingService();
;
That's all folks!
}
$core_v2_language.FormatString($core_v2_language.GetResource('Blog_PostQuestionAnswerView_CommentsCountFormatString'), $post.CommentCount)
Read the complete post at
axwonders.blogspot.com/.../test-aif-service-with-x.html
AX 2012
,
X++
,
AIF