Want to share the AX 2012 Retail Technical Conference Recordings link, These recordings are available at partner source. You need partner source access to view the recordings -
Tuesday, August 7, 2012
Tuesday, March 13, 2012
AX 2012 Whitepapers for developers
Though this will be commanly searched,I am sharing it again - http://technet.microsoft.com/en-us/Library/hh272882.aspx
Thursday, April 21, 2011
Microsoft Dynamics AX 2012 Documentation Resource Whitepaper
Microsoft has released a documentation resources whitepapaer for Microsoft Dynamics AX 2012 which has overview of the resources available for Microsoft Dynamics AX 2012 at one single location. It is available to download from following link - Download Documentaton Resource Whitepaper
Tuesday, April 12, 2011
New private ERP cloud offering by Avanade
Avanade Inc has announced Avanade new Private Cloud Enterprise Resource Planning Offering on Microsoft Dynamics AX.
Microsoft Dynamics AX 2012
Microsoft Dynamics AX 2012 material is publically available at Microsoft link.
Friday, July 23, 2010
Get the current navigation pane area through program
Getting the current opened navigation pane area for the use through program might be useful where you want to perform an action depending upon in which module user is currently working. For ex: You might want to show the docuref comments depending upon the opened module or navigation pane.
static void GetCurrentNavPaneArea(Args _args)
{
xInfo objxInfo;
xNavPane objxNavPane;
Treenode objTreeNode;
xTaskPane xtask;
Treenode t;
;
objxInfo = new xInfo();
objxNavPane = new xNavPane();
objTreeNode = objxNavPane.getSelectedPlacesNode();
info(objTreeNode.AOTparent().treeNodeName());
}
static void GetCurrentNavPaneArea(Args _args)
{
xInfo objxInfo;
xNavPane objxNavPane;
Treenode objTreeNode;
xTaskPane xtask;
Treenode t;
;
objxInfo = new xInfo();
objxNavPane = new xNavPane();
objTreeNode = objxNavPane.getSelectedPlacesNode();
info(objTreeNode.AOTparent().treeNodeName());
}
Monday, June 7, 2010
AIF – Web service Configuration - Troubleshooting
I was working with AIF web services configuration on Win server 2008-r2, AX 2009, and IIS 7.0 machine and faced errors during configuration. I thought it might be useful for everyone to share with:
I was able to make the web service work after these troubleshooting steps. Hope these might be a help to anyone.
- If you get the 404 error while accessing the service URL, then it might be because WCF is not registered. Consider registering Windows Communication Foundation (WCF) with IIS. To register WCF If IIS has installed after .net framework then use below options
- Open command prompt and set the directory path to WCF directory, which is usually, C:\Windows\Microsoft.NET\Framework\v3.0\Windows Communication Foundation.
- Run the following command: ServiceModelReg.exe /i /x Refer tech-net link for more detailed information.
- If you face the error shown in below image after registering the WCF then check the below points to get rid of the error:
- Check that the windows authentication has enabled for AIF virtual directory.
- Following should be the binding section of web.config file available in virtual directory physical path:
- Enabled providers for virtual directory are NTLM and Negotiate both:
I was able to make the web service work after these troubleshooting steps. Hope these might be a help to anyone.
Subscribe to:
Comments (Atom)



