Skip to main content

AIF (Endpoint) Error : The user is not authorized to perform this action.


"The user is not authorized to perform this action." 
We started getting this error message in our AX 2009 System, when ever we try to consume an XML file using an Endpoint  thru a File System Channel to create a Sales Order.
We did not made any code changes / setup changes, but all of the sudden started getting this error.

Solutions :
1. Validate the "SourceEndpointUser". in inbound XML 
The User ID should be a valid user Id in DAX, in GNS Active Directory and the "\" should be back slash in the XML file or where you use this combination in entire process or setup. ex : Domain \ User Id.
In our case when we had the above error, the SourceEndPointUser user id was deleted from the Active Directory in GNS, so we added it back to Active Directory then it solved the problem.
NOTE : If nothing wrong with the User ID, try to add the user id in "Users" tab in Endpoints form for that End Point used by the process.
2. Verify the field "Parallel processing" in File System Channel is unchecked.
Basic --> Setup --> AIF --> Channels
We may get the above error if the "Parallel processing" field is set to TRUE(Checked).
3. Try to modify the code in C \ AifInboundParallelMsgProcess\Methods\run ( ).

The code is valid "inboundMsgProcess = new AifInboundMsgProcess(gatewayQueue.data(),
resourceLockId);"
Change From :
"inboundMsgProcess = new AifInboundMsgProcess(gatewayQueue.data(),
resourceLockId);"
Change to :
"inboundMsgProcess = new AifInboundMsgProcess(gatewayQueue,
resourceLockId);"
Hope one of the solutions might work for your issue.
DISCLAIMER This is only an advice to fix this issue, but try this at your own risk.
Happy DAXing
Sai

Comments

  1. Great post, thanks! By the way, I'd like to share a very informative article with you regarding digital transformation - it's reaching modern business, so let's get really prepared for it :) More at https://ax-dynamics.com/digital-transformation.

    ReplyDelete

Post a Comment

Popular posts from this blog

Using File path on a form getting Error in Axapta

Hi Folks, After a long time am coming  back to posting few new things here for AX Developer... When we want to select the file path in form level. Normally what we will do create one EDT and extends with filepath (EDT), but that time when you are trying to select the path we will get error like stack-trace/Error message .Don’t worry there is no problem with your ax application. Simple we need to provide the method to the form like filepathLookUpTitle (). Below method we need to add it into form level methods, i.e. str filePathLookupTitle() {     return "Select document folder"; } Thanks Happy Daxing....

How to add Filter functionality to Display method in dynamics AXAPTA

Hi Friends, Normally filters will work only in table fields but we can't do filters to display method. This below code will work for filters to display method also. Step 1: Go to the form design right click on particular control properties Auto Declaration No to Yes. Step 2: Override the context() method on the display method  . public void context() {     int             selectedMenu;     formrun         fr;     Args            ag;     Name            strtext;     querybuilddataSource qb1;     queryrun    qr;     query       q;     PopupMenu menu = new PopupMenu(element.hWnd());     int a = menu.insertItem('Filter By Field');     int b = menu.insertItem('Filter By Selection');     i...

Split string useing List in AX2009

static void Job277(Args _args) {     List _list = new List(Types::String);     Container packedList;     ListIterator iterator;     str cade = "Jhon*,smt*,and*,caro*";     ;     _list = Global::strSplit(cade,",");     iterator = new ListIterator(_list);     while(iterator.more())     {         packedList += iterator.value();         iterator.next();     }     info(conpeek(packedList,2));     info(strfmt("%1",conlen(packedList)));   }