Book Image

Microsoft Dynamics AX 2009 Administration

By : Marco Carvalho , Marco Carvalho
Book Image

Microsoft Dynamics AX 2009 Administration

By: Marco Carvalho , Marco Carvalho

Overview of this book

Microsoft Dynamics AX 2009 is an advanced Enterprise Resource Planning system, essentially a comprehensive business management solution, designed for midsize and large organizations. Dynamics AX provides a centralized source for business data and enables you to consolidate and standardize your business processes, helping to improve productivity and provide visibility across your organization, for a variety of business needs.This book will enable you to successfully set up and configure Dynamics AX 2009 in your business with clear, practical, step-by-step demonstrations. You will learn how to plan and implement Dynamics AX 2009 efficiently, how to manage the Enterprise Portal, Role Centers, Kerberos Authentication, Workflow, Application Integration Framework (AIF), and much more! Each chapter of the book explores the different aspects of administring and configuring Dynamics AX 2009 to fit any company's needs.The book begins by introducing you to the important process of planning and implementing Dynamics AX 2009, providing the basic components to get you started with your Dynamics AX environment. It then dives deep into the installation of the multi component server of Dynamics AX and how to get it up and running efficiently, specifically the Base Server Components, Enterprise Portal, Role Centers, Kerberos Authentication, Workflow, and the Application Integration Framework (AIF).Other content includes the process of importing data into your Dynamics AX 2009 instance, common user administration functions, and Alerts and Notifications.Finally, the book considers how to enhance your Dynamics AX environment after it has been installed and it is being utilized, from tuning your system to work more efficiently to backing up and maintaining Dynamics AX to make sure you are prepared for worst-case scenarios, enabling you to keep Dynamics AX 2009 functioning at its best.By following the clear and practical steps found in the book, you will successfully master how to administer and configure Dynamics AX 2009 into your company.
Table of Contents (20 chapters)
Microsoft Dynamics AX 2009 Administration
Credits
About the Author
About the Reviewers
www.PacktPub.com
Preface

Enterprise Portal tips


The following section contains additional methods and techniques for setting up and configuring the Enterprise Portal.

Multiple instances of an Enterprise Portal in a web server

When there are multiple Dynamics AX environments set up, it would be convenient and sensible to also have a separate Enterprise Portal site for each environment. By default, this is not possible. Fortunately, with some minor modifications, you can achieve this. Prior knowledge on how to install and setup a single Enterprise Portal site is required. The following steps provide the process for setting up multiple Enterprise Portal environments on the same server. Each step must be repeated for each individual Enterprise Portal site.

  1. 1. Open the web.config file for the Enterprise Portal site in a text editor, such as Notepad. This is found in the root folder of the Enterprise Portal site.

  2. 2. After the <configSections> tag, add the following text:

    <sectionGroup name="Microsoft.Dynamics">
    <section name="Session" type="System.Configuration.SingleTagSectionHandler, System, Version=1.0.5000.0, Culture=neutral,PublicKeyToken=b77a5c561934e089" />
    </sectionGroup>
    
  3. 3. After the </system.web> tag, add the following text and replace the Configuration tag's location to point to the appropriate AOS client configuration file location. This configuration file will be used to determine what AOS to connect to:

    <Microsoft.Dynamics>
    <Session Timeout="15" Configuration="C:\ConfigFiles\DEV_AOS_Config.axc" />
    </Microsoft.Dynamics>
    
  4. 4. Restart the Internet Information Services (IIS) web server by running iisreset in the Windows Command Prompt to apply the changes.