Consuming Web Services
|
|
|
- Phyllis Cain
- 9 years ago
- Views:
Transcription
1 Microsoft Dynamics AX 2012 Consuming Web Services White Paper Microsoft Dynamics AX 2012 introduces a new model for how to consume external Web services. This white paper describes how to reference a Web service and provides example code that demonstrates how to use the service in X++. Date: January 2011 Author: Jim Travis, Senior Writer and Nima Kamoosi, Senior Developer, Application Integration Framework Send suggestions and comments about this document to [email protected]. Please include the title with your feedback.
2 Table of Contents Introduction... 3 Audience... 3 Prerequisites... 3 Using the Bing API... 3 Install the Visual Studio tools... 4 Create the service project... 4 Add the service reference... 5 Add the project to the AOT... 6 Specify the deployment properties... 6 Verify the service reference... 7 Using the Web service... 8 Creating and configuring a service client object... 8 Running the job
3 Introduction The previous version of Microsoft Dynamics AX enabled you to consume external Web services from X++ code and to consume Web services hosted by Microsoft Dynamics AX from.net Framework languages, such as Microsoft Visual C#. To use a Web service, you added a reference in the Web references form, as described in the Consume Web Services topic on MSDN ( Microsoft Dynamics AX 2012 continues to enable Web services scenarios. However, you now use Microsoft Visual Studio to create and add a reference to a Web service. This white paper walks you through creating a reference to the Bing API Web service and provides sample code for a job that consumes the service. Audience This white paper is intended for developers who integrate Web services with Microsoft Dynamics AX. Prerequisites To benefit from this white paper, you should have experience in the following areas: Writing code in.net Framework languages or X++ Using Microsoft Visual Studio Setting up Microsoft Dynamics AX You must have Microsoft Visual Studio 2010 installed on the computer that is running Microsoft Dynamics AX Using the Bing API To use the Bing API Web service, you must have the necessary resources and provision your application by getting an AppID. For more information about the Bing API and to create an AppID, see the Bing Developer Center ( 3
4 Install the Visual Studio tools Follow these steps to install the Visual Studio tools for Microsoft Dynamics AX: 1. Run Microsoft Dynamics AX 2012 setup. 2. Under Install, click Microsoft Dynamics AX components. 3. Click Next to go to the Add or modify components page. 4. Under Developer Tools, select Visual Studio Tools. 5. Click Next to step through the remaining setup pages. 6. Click Install to install the tools. 7. Click Finish to close the wizard. 8. Exit setup. Create the service project Microsoft Visual Studio 2010 can create a project that Microsoft Dynamics AX can use to build a.net assembly (and its configuration file) that exposes types from a Web service reference. Follow these steps to create a project with the Bing API Web service reference: 1. Open Microsoft Visual Studio Create a new Visual C# Class Library project. (You can use other.net Framework languages, but this walkthrough uses Visual C#.) 3. For the project name, type Contoso.ServiceReferences. 4
5 4. Click OK to create the project. Add the service reference Follow these steps to add a reference to the Bing API Web service to your project: 1. In Solution Explorer, right-click the project name, and then click Add Service Reference. 2. In the Add Service Reference dialog box, type the URL for the Web service in the Address box. The URL for the Bing API Web service is: Replace the YourAppId text in the URL with your AppID. 3. Click Go to locate the service. 5
6 4. Click OK. Add the project to the AOT Next, add the project to the Application Object Tree (AOT) in Microsoft Dynamics AX. In Solution Explorer, right-click the project name, and then click Add Contoso.ServiceReferences to AOT. Microsoft Dynamics AX imports the project and builds it. Specify the deployment properties Next, set the deployment properties in Visual Studio. In the Properties window, specify the following values for the deployment properties. 6
7 Name Deploy to client Deploy to EP Deploy to server Deploy to SSRS Value Yes No Yes No Verify the service reference Follow these steps to verify that the reference to the Bing API Web service appears in the AOT: 1. Restart the Microsoft Dynamics AX client. 2. Open the development workspace. 3. In the AOT, browse to Visual Studio Projects > C Sharp Projects. 4. Verify that Contoso.Servicereferences is listed as a project. 7
8 Using the Web service You can now use the Bing API Web service. In this section, you will create a job that performs a Bing search. Creating and configuring a service client object To consume a Web service in Microsoft Dynamics AX 2009, you added a service reference and then created and used the service client object by using code similar to the following example. WindowsLiveSearch.MSNSearchPortTypeClient searchservice; // declare the service object... searchservice = new WindowsLiveSearch.MSNSearchPortTypeClient(); // create the service object searchresponse = searchservice.search(searchrequest); // use the service to issue a request In Microsoft Dynamics AX 2012, you construct and configure an instance of a service client object by using code similar to the following example. // Retrieve the X++ type for the Bing service client object. clienttype = CLRInterop::getType("Contoso.ServiceReferences.BingV2ServiceReference.BingPortTypeClient"); // Use the AifUtil class to create an instance of the service client object. _client = AifUtil::CreateServiceClient(clientType); Running the job Jobs run on the client by default. If you use a Web service from an X++ class, remember to use the client or server method modifiers, or set the RunOn property on a specific class, to specify the location where the code is to be executed. Create a new job. In the Jobs Editor, enter the following X++ code. // Job to run a Bing search // Search for Dynamics AX static void CallBingService(Args _args) { #define.appid("your AppID goes here") // variable for service client ClrObject clienttype; // variable for service client type Contoso.ServiceReferences.BingV2ServiceReference.BingPortTypeClient _client; // variables for web query objects Contoso.ServiceReferences.BingV2ServiceReference.SearchRequest request; Contoso.ServiceReferences.BingV2ServiceReference.SourceType[] sourcetypes; Contoso.ServiceReferences.BingV2ServiceReference.SearchResponse response; Contoso.ServiceReferences.BingV2ServiceReference.WebResponse webresponse; Contoso.ServiceReferences.BingV2ServiceReference.WebResult[] webresults; Contoso.ServiceReferences.BingV2ServiceReference.WebResult webresult; int integer; str string; System.Exception ex; new InteropPermission(InteropKind::ClrInterop).assert(); 8
9 // Always try and catch errors as CLR exceptions try { // Retrieve the X++ type for the Bing service client object. clienttype = CLRInterop::getType("Contoso.ServiceReferences.BingV2ServiceReference.BingPortTypeClient"); // Use the AifUtil class to create an instance of the service client object. _client = AifUtil::CreateServiceClient(clientType); 0); // Create the request request = new Contoso.ServiceReferences.BingV2ServiceReference.SearchRequest(); request.set_appid(#appid); request.set_query("dynamics AX"); sourcetypes = new Contoso.ServiceReferences.BingV2ServiceReference.SourceType[1](); sourcetypes.setvalue(contoso.servicereferences.bingv2servicereference.sourcetype::web, request.set_sources(sourcetypes); // Configure the response response = _client.search(request); webresponse = response.get_web(); // Get the search results webresults = webresponse.get_results(); webresult = webresults.getvalue(0); } // Display the results in the Infolog integer = webresponse.get_total(); info(strfmt("%1 total web results.", integer)); integer = webresults.get_count(); info(strfmt("%1 results in response.", integer)); info(""); info("first result:"); string = webresult.get_title(); info(strfmt("title: %1", string)); string = webresult.get_description(); info(strfmt("description: %1", string)); string = webresult.get_url(); info(strfmt("url: %1", string)); } catch(exception::clrerror) { // handle the exception ex = CLRInterop::getLastException(); info(ex.tostring()); } 9
10 Note that after the job runs, the following Infolog is displayed. 10
11 Microsoft Dynamics is a line of integrated, adaptable business management solutions that enables you and your people to make business decisions with greater confidence. Microsoft Dynamics works like and with familiar Microsoft software, automating and streamlining financial, customer relationship and supply chain processes in a way that helps you drive business success. U.S. and Canada Toll Free Worldwide This document is provided as-is. Information and views expressed in this document, including URL and other Internet Web site references, may change without notice. You bear the risk of using it. Some examples depicted herein are provided for illustration only and are fictitious. No real association or connection is intended or should be inferred. This document does not provide you with any legal rights to any intellectual property in any Microsoft product. You may copy and use this document for your internal, reference purposes. You may modify this document for your internal, reference purposes Microsoft Corporation. All rights reserved. Microsoft, the Microsoft Dynamics Logo, Microsoft Dynamics, Visual Studio, Visual C#, and Bing are trademarks of the Microsoft group of companies. All other trademarks are property of their respective owners. 11
Deploying the Workspace Application for Microsoft SharePoint Online
Microsoft Dynamics GP Deploying the Workspace Application for Microsoft SharePoint Online Microsoft Dynamics GP Workspace is a method to enable Microsoft Excel-based dashboards for SharePoint Online. This
Configuring a SQL Server Reporting Services scale-out deployment to run on a Network Load Balancing cluster
Microsoft Dynamics AX Configuring a SQL Server Reporting Services scale-out deployment to run on a Network Load Balancing cluster White Paper A SQL Server Reporting Services (SSRS) scale-out deployment
Developing Solutions for Microsoft Dynamics AX in a Shared AOS Development Environment
Microsoft Dynamics AX 2012 Developing Solutions for Microsoft Dynamics AX in a Shared AOS Development Environment White Paper This document provides guidance for developing solutions when multiple development
Accounting for stocked items on product receipts and vendor invoices
Microsoft Dynamics AX 2012 Accounting for stocked items on product receipts and vendor invoices White Paper This white paper describes the concepts of the two types of accounting that take place when an
Windows Event Tracing in Microsoft Dynamics AX 2012
Microsoft Dynamics AX 2012 Windows Event Tracing in Microsoft Dynamics AX 2012 White Paper This paper describes how to use the Windows Event Tracing infrastructure in Microsoft Dynamics AX 2012. Date:
Configure Microsoft Dynamics AX Connector for Mobile Applications
Microsoft Dynamics AX 2012 Configure Microsoft Dynamics AX Connector for Mobile Applications White Paper April 2013 www.microsoft.com/dynamics/ax Send suggestions and comments about this document to [email protected].
Management Reporter Integration Guide for Microsoft Dynamics GP
Microsoft Dynamics Management Reporter Integration Guide for Microsoft Dynamics GP July 2013 Find updates to this documentation at the following location: http://go.microsoft.com/fwlink/?linkid=162565
Configuring budget planning for Microsoft Dynamics AX 2012 R2
Microsoft Dynamics AX 2012 R2 Configuring budget planning for Microsoft Dynamics AX 2012 R2 White Paper This document describes configuration considerations for implementing budget planning. October 2012
Payment Processing Frequently Asked Questions. Microsoft Dynamics RMS
Payment Processing Frequently Asked Questions Microsoft Dynamics RMS Microsoft Dynamics is a line of integrated, adaptable business management solutions that enables you and your people to make business
Update and Installation Guide for Microsoft Management Reporter 2.0 Feature Pack 1
Update and Installation Guide for Microsoft Management Reporter 2.0 Feature Pack 1 Microsoft Corporation Published: December 2010 Microsoft Dynamics is a line of integrated, adaptable business management
Management Reporter Integration Guide for Microsoft Dynamics AX
Microsoft Dynamics Management Reporter Integration Guide for Microsoft Dynamics AX July 2013 Find updates to this documentation at the following location: http://go.microsoft.com/fwlink/?linkid=162565
Microsoft Dynamics AX 2012 Installation Guide. Microsoft Corporation Published: April 2011 This content is preliminary and is subject to change.
2012 Installation Guide Microsoft Corporation Published: April 2011 This content is preliminary and is subject to change. Microsoft Dynamics is a line of integrated, adaptable business management solutions
Deploy the client as an Azure RemoteApp program
Microsoft Dynamics AX 2012 R3 Deploy the client as an Azure RemoteApp program Microsoft Azure RemoteApp helps you provide secure, remote access to applications from many different user devices. This white
Microsoft Dynamics CRM Adapter for Microsoft Dynamics GP
Microsoft Dynamics Microsoft Dynamics CRM Adapter for Microsoft Dynamics GP May 2010 Find updates to this documentation at the following location. http://go.microsoft.com/fwlink/?linkid=162558&clcid=0x409
Retail Deployment Guide. Microsoft Dynamics AX 2012 Feature Pack
Retail Deployment Guide Microsoft Dynamics AX 2012 Feature Pack Microsoft Corporation February 2012 Microsoft Dynamics is a line of integrated, adaptable business management solutions that enables you
Performance data collection and analysis process
Microsoft Dynamics AX 2012 Performance data collection and analysis process White Paper This document outlines the core processes, techniques, and procedures that the Microsoft Dynamics AX product team
Timesheet audit trail and absence reporting for DCAA. Syed Ali May 2014
Timesheet audit trail and absence reporting for DCAA This document describes the timesheet audit trail and absence reporting features in Microsoft Dynamics AX 2012 R3 that help organization meet requirements
Credit Card Processing
Microsoft Dynamics AX 2009 Credit Card Processing Technical White Paper This white paper is intended for professionals who are involved in the implementation and support of the Credit Card Processing functionality
Connector for Microsoft Dynamics Configuration Guide for Microsoft Dynamics SL
Microsoft Dynamics Connector for Microsoft Dynamics Configuration Guide for Microsoft Dynamics SL Revised August, 2012 Find updates to this documentation at the following location: http://www.microsoft.com/download/en/details.aspx?id=10381
Workflow approval via email
Microsoft Dynamics AX Workflow approval via email White Paper This document highlights the functionality in Microsoft Dynamics AX 2012 R2 that allows workflow to be configured so that a user can take approval
Microsoft Dynamics GP. Business Analyzer
Microsoft Dynamics GP Business Analyzer April 5, 2013 Copyright Copyright 2013 Microsoft. All rights reserved. Limitation of liability This document is provided as-is. Information and views expressed in
Retail POS User s Guide. Microsoft Dynamics AX for Retail
Retail POS User s Guide Microsoft Dynamics AX for Retail January 2011 Microsoft Dynamics is a line of integrated, adaptable business management solutions that enables you and your people to make business
Microsoft Dynamics AX 2009 Installation Guide. Microsoft Corporation Published: November 2009
Microsoft Dynamics AX 2009 Installation Guide Microsoft Corporation Published: November 2009 Microsoft Dynamics is a line of integrated, adaptable business management solutions that enables you and your
Windows Server Update Services 3.0 SP2 Step By Step Guide
Windows Server Update Services 3.0 SP2 Step By Step Guide Microsoft Corporation Author: Anita Taylor Editor: Theresa Haynie Abstract This guide provides detailed instructions for installing Windows Server
MicrosoftDynam ics GP 2015. TenantServices Installation and Adm inistration Guide
MicrosoftDynam ics GP 2015 TenantServices Installation and Adm inistration Guide Copyright Copyright 2014 Microsoft Corporation. All rights reserved. Limitation of liability This document is provided as-is.
Microsoft Dynamics GP 2010. SQL Server Reporting Services Guide
Microsoft Dynamics GP 2010 SQL Server Reporting Services Guide April 4, 2012 Copyright Copyright 2012 Microsoft. All rights reserved. Limitation of liability This document is provided as-is. Information
Changes to credit card processing in Microsoft Dynamics AX 2012 R2
Microsoft Dynamics AX Changes to credit card processing in Microsoft Dynamics AX 2012 R2 Implementation Note This document explains what has changed in the implementation of credit card processing in Accounts
System Requirements for Microsoft Dynamics NAV 2013 R2
System Requirements for Microsoft Dynamics NAV 2013 R2 February 2014 Contents 3 System Requirements for the Microsoft Dynamics NAV Windows Client 3 Web Client 4 System Requirements for Microsoft Dynamics
Business Portal for Microsoft Dynamics GP 2010. Field Service Suite
Business Portal for Microsoft Dynamics GP 2010 Field Service Suite Copyright Copyright 2010 Microsoft. All rights reserved. Limitation of liability This document is provided as-is. Information and views
Credit Card Processing
Microsoft Dynamics AX 2009 Credit Card Processing Technical White Paper This white paper is intended for professionals who are involved in the implementation and support of the Credit Card Processing functionality
Features for France. Microsoft Corporation. Published: November 2006
Features for France Microsoft Corporation Published: November 2006 Microsoft Dynamics is a line of integrated, adaptable business management solutions that enables you and your people to make business
Entity store. Microsoft Dynamics AX 2012 R3
Microsoft Dynamics AX 2012 R3 Entity store This document describes the primary scenarios and features of Entity store. Entity store is a database that is used for analytical scenarios such as near-real-time
Microsoft Dynamics GP Release
Microsoft Dynamics GP Release Workflow Installation and Upgrade Guide February 17, 2011 Copyright Copyright 2011 Microsoft. All rights reserved. Limitation of liability This document is provided as-is.
Feature for India (Third-party invoice)
Microsoft Dynamics AX Feature for India (Third-party invoice) White Paper Date: December 2006 Table of Contents Introduction... 3 Third-party invoice... 3 Post a third-party invoice...3 Forms for this
Business Intelligence in Microsoft Dynamics AX 2012
Business Intelligence in Microsoft Dynamics AX 2012 Microsoft Dynamics AX 2012 provides a flexible pre-built business intelligence (BI) solution for midmarket organizations. The use of built-in content
Writers: Joanne Hodgins, Omri Bahat, Morgan Oslake, and Matt Hollingsworth
SQL Server Technical Article Writers: Joanne Hodgins, Omri Bahat, Morgan Oslake, and Matt Hollingsworth Technical Reviewer: Dan Jones Published: August 2009 Applies to: SQL Server 2008 R2, August CTP Summary:
K2 Designer for SharePoint Hands-On Exercise - Leave Request process
K2 Designer for SharePoint Hands-On Exercise - This hands-on learning module will guide process designers through creating a list-item based workflow using the K2 Designer for SharePoint Contents Module
Connector for Microsoft Dynamics Configuration Guide for Microsoft Dynamics AX
Microsoft Dynamics Connector for Microsoft Dynamics Configuration Guide for Microsoft Dynamics AX June 2014 Find updates to this documentation at the following location: http://go.microsoft.com/fwlink/?linkid=237506
Microsoft Dynamics AX 2012 System Requirements. Microsoft Corporation Published: August 2011
2012 System Requirements Microsoft Corporation Published: August 2011 Microsoft Dynamics is a line of integrated, adaptable business management solutions that enables you and your people to make business
Microsoft Dynamics NAV
Microsoft Dynamics NAV Requirements for Microsoft Dynamics NAV 2013 System Requirements for Microsoft Dynamics NAV 2013... 1 System Requirements for the Microsoft Dynamics NAV Windows Client... 1 System
Authoring for System Center 2012 Operations Manager
Authoring for System Center 2012 Operations Manager Microsoft Corporation Published: November 1, 2013 Authors Byron Ricks Applies To System Center 2012 Operations Manager System Center 2012 Service Pack
Microsoft Dynamics AX 2012 System Requirements. Microsoft Corporation Published: November 2011
2012 System Requirements Microsoft Corporation Published: November 2011 Microsoft Dynamics is a line of integrated, adaptable business management solutions that enables you and your people to make business
EventTracker: Support to Non English Systems
EventTracker: Support to Non English Systems Publication Date: April 25, 2012 EventTracker 8815 Centre Park Drive Columbia MD 21045 www.eventtracker.com Introduction This document has been prepared to
Lab Answer Key for Module 9: Active Directory Domain Services. Table of Contents Lab 1: Exploring Active Directory Domain Services 1
Lab Answer Key for Module 9: Active Directory Domain Services Table of Contents Lab 1: Exploring Active Directory Domain Services 1 Information in this document, including URL and other Internet Web site
Connector for Microsoft Dynamics Configuration Guide for Microsoft Dynamics NAV
Microsoft Dynamics Connector for Microsoft Dynamics Configuration Guide for Microsoft Dynamics NAV June 2014 Find updates to this documentation at the following location: http://go.microsoft.com/fwlink/?linkid=237508
Lab Answer Key for Module 11: Managing Transactions and Locks
Lab Answer Key for Module 11: Managing Transactions and Locks Table of Contents Lab 11: Managing Transactions and Locks 1 Exercise 1: Using Transactions 1 Exercise 2: Managing Locks 3 Information in this
Customizing Remote Desktop Web Access by Using Windows SharePoint Services Stepby-Step
Customizing Remote Desktop Web Access by Using Windows SharePoint Services Stepby-Step Guide Microsoft Corporation Published: July 2009 Updated: September 2009 Abstract Remote Desktop Web Access (RD Web
SQL Server 2005 Reporting Services (SSRS)
SQL Server 2005 Reporting Services (SSRS) Author: Alex Payne and Brian Welcker Published: May 2005 Summary: SQL Server 2005 Reporting Services is a key component of SQL Server 2005. Reporting Services
Installing Windows Rights Management Services with Service Pack 2 Step-by- Step Guide
Installing Windows Rights Management Services with Service Pack 2 Step-by- Step Guide Microsoft Corporation Published: October 2006 Author: Brian Lich Editor: Carolyn Eller Abstract This step-by-step guide
Step-by-Step Guide for Microsoft Advanced Group Policy Management 4.0
Step-by-Step Guide for Microsoft Advanced Group Policy Management 4.0 Microsoft Corporation Published: September 2009 Abstract This step-by-step guide describes a sample scenario for installing Microsoft
Exclaimer Email Alias Manager for Exchange Deployment Guide - Exclaimer Email Alias Manager for Exchange Outlook Add-In
Exclaimer Email Alias Manager for Exchange Deployment Guide - Exclaimer Email Alias Manager for Exchange Outlook Add-In www.exclaimer.com Contents About This Guide...3 System Requirements...4 Software...4
Stellar Phoenix Exchange Server Backup
Stellar Phoenix Exchange Server Backup Version 1.0 Installation Guide Introduction This is the first release of Stellar Phoenix Exchange Server Backup tool documentation. The contents will be updated periodically
Microsoft Dynamics GP. econnect Installation and Administration Guide Release 9.0
Microsoft Dynamics GP econnect Installation and Administration Guide Release 9.0 Copyright Copyright 2006 Microsoft Corporation. All rights reserved. Complying with all applicable copyright laws is the
How to Prepare for the Upgrade to Microsoft Dynamics CRM 2013 (On-premises)
How to Prepare for the Upgrade to Microsoft Dynamics CRM 2013 (On-premises) COMPANY: Microsoft Corporation RELEASED: September 2013 VERSION: 1.0 Copyright This document is provided "as-is". Information
Deploying Remote Desktop IP Virtualization Step-by-Step Guide
Deploying Remote Desktop IP Virtualization Step-by-Step Guide Microsoft Corporation Updated: April 2010 Published: July 2009 Abstract Remote Desktop IP Virtualization provides administrators the ability
How To Install Outlook Addin On A 32 Bit Computer
Deployment Guide - Outlook Add-In www.exclaimer.com Contents About This Guide... 3 System Requirements... 4 Software... 4 Installation Files... 5 Deployment Preparation... 6 Installing the Add-In Manually...
Creating and Deploying Active Directory Rights Management Services Templates Step-by-Step Guide
Creating and Deploying Active Directory Rights Management Services Templates Step-by-Step Guide Microsoft Corporation Published: January 2008 Author: Brian Lich Editor: Carolyn Eller Abstract This step-by-step
MICROSOFT STEP BY STEP INTERACTIVE VERSION 3.0 ADMINISTRATION GUIDE
MICROSOFT STEP BY STEP INTERACTIVE VERSION 3.0 ADMINISTRATION GUIDE Part 1: Network Installation Guide Introduction Part 1 of this document provides instructions for installing Microsoft Interactive Training
Using the vcenter Orchestrator Plug-In for vsphere Auto Deploy 1.0
Using the vcenter Orchestrator Plug-In for vsphere Auto Deploy 1.0 vcenter Orchestrator 4.2 This document supports the version of each product listed and supports all subsequent versions until the document
Business Portal for Microsoft Dynamics GP. Key Performance Indicators Release 10.0
Business Portal for Microsoft Dynamics GP Key Performance Indicators Release 10.0 Copyright Copyright 2007 Microsoft Corporation. All rights reserved. Complying with all applicable copyright laws is the
Programmabilty. Programmability in Microsoft Dynamics AX 2009. Microsoft Dynamics AX 2009. White Paper
Programmabilty Microsoft Dynamics AX 2009 Programmability in Microsoft Dynamics AX 2009 White Paper December 2008 Contents Introduction... 4 Scenarios... 4 The Presentation Layer... 4 Business Intelligence
Microsoft Dynamics GP 2013. econnect Installation and Administration Guide
Microsoft Dynamics GP 2013 econnect Installation and Administration Guide Copyright Copyright 2012 Microsoft Corporation. All rights reserved. Limitation of liability This document is provided as-is. Information
Integrate Cisco IronPort Web Security Appliance (WSA)
Integrate Cisco IronPort Web Security Appliance (WSA) EventTracker v7.x Publication Date: June 2, 2014 EventTracker 8815 Centre Park Drive Columbia MD 21045 www.eventtracker.com Abstract This guide provides
Integration with Active Directory
VMWARE TECHNICAL NOTE VMware ACE Integration with Active Directory This document explains how to set up Active Directory to use with VMware ACE. This document contains the following topics: About Active
Microsoft Dynamics AX 2012 System Requirements. Microsoft Corporation Published: March 2012
2012 System Requirements Microsoft Corporation Published: March 2012 Microsoft Dynamics is a line of integrated, adaptable business management solutions that enables you and your people to make business
Configuring Network Load Balancing with Cerberus FTP Server
Configuring Network Load Balancing with Cerberus FTP Server May 2016 Version 1.0 1 Introduction Purpose This guide will discuss how to install and configure Network Load Balancing on Windows Server 2012
Hyper-V Server 2008 Getting Started Guide
Hyper-V Server 2008 Getting Started Guide Microsoft Corporation Published: October 2008 Author: Cynthia Nottingham Abstract This guide helps you become familiar with Microsoft Hyper-V Server 2008 by providing
Microsoft Dynamics AX 2012 MorphX Enhancements
Microsoft Dynamics AX 2012 MorphX Enhancements Microsoft Dynamics AX 2012 enhances the developer experience by introducing a developer-centric workspace, a new and improved X++ editor, richer tools for
Code Review Installation Guide
A subsidiary of Code Review Installation Guide Code Review and Utilities Document updated: January 24, 2011 Document Version 1.0.0 2011 by ZOLL Data Systems. All rights reserved. Medical Corporation Code
Implementing and Supporting Windows Intune
Implementing and Supporting Windows Intune Lab 2: Installing the Windows Intune Client Lab Manual Information in this document, including URL and other Internet Web site references, is subject to change
AD RMS Step-by-Step Guide
AD RMS Step-by-Step Guide Microsoft Corporation Published: March 2008 Author: Brian Lich Editor: Carolyn Eller Abstract This step-by-step guide provides instructions for setting up a test environment to
Windows BitLocker Drive Encryption Step-by-Step Guide
Windows BitLocker Drive Encryption Step-by-Step Guide Microsoft Corporation Published: September 2006 Abstract Microsoft Windows BitLocker Drive Encryption is a new hardware-enhanced feature in the Microsoft
RES IT Store Integration Guide: MS System Center
1 Disclaimer Whilst every care has been taken by RES Software to ensure that the information contained in this document is correct and complete, it is possible that this is not the case. RES Software provides
ENHANCE. The Style Sheet Tool for Microsoft Dynamics NAV. Microsoft Dynamics NAV 5.0. User s Guide
ENHANCE Microsoft Dynamics NAV 5.0 The Style Sheet Tool for Microsoft Dynamics NAV User s Guide The Style Sheet feature in Microsoft Dynamics TM NAV 5.0 has been enhanced with a new tool that allows you
Connecting the RoleTailored Client over a Wide Area Network
Microsoft Dynamics NAV Connecting the RoleTailored Client over a Wide Area Network White Paper December 2010 Contents Connecting the RoleTailored Client over a Wide Area Network... 1 Using Certificates
A SharePoint Developer Introduction
A SharePoint Developer Introduction Hands-On Lab Lab Manual HOL7 - Developing a SharePoint 2010 Workflow with Initiation Form in Visual Studio 2010 C# Information in this document, including URL and other
Setup Guide: Server-side synchronization for CRM Online and Exchange Server
Setup Guide: Server-side synchronization for CRM Online and Exchange Server Version 8.0 Microsoft Dynamics CRM 2016 Authors: Elad Ben Yosef, Sumanta Batabyal This document is provided "as-is". Information
IBM Configuring Rational Insight 1.0.1.1 and later for Rational Asset Manager
IBM Configuring Rational Insight 1.0.1.1 and later for Rational Asset Manager Rational Insight and Rational Asset Manager...4 Prerequisites...5 Configuring the XML data configuration for Rational Asset
Administration Guide for the System Center Cloud Services Process Pack
Administration Guide for the System Center Cloud Services Process Pack Microsoft Corporation Published: May 7, 2012 Author Kathy Vinatieri Applies To System Center Cloud Services Process Pack This document
Creating and Issuing the Workstation Authentication Certificate Template on the Certification Authority
In this post we will see the steps for deploying the client certificate for windows computers. This post is a part of Deploy PKI Certificates for SCCM 2012 R2 Step by Step Guide. In the previous post we
Security Development Tool for Microsoft Dynamics AX 2012 WHITEPAPER
Security Development Tool for Microsoft Dynamics AX 2012 WHITEPAPER Junction Solutions documentation 2012 All material contained in this documentation is proprietary and confidential to Junction Solutions,
Interactive Timeline Visualization for Microsoft Dynamics NAV 2009 R2
Microsoft Dynamics NAV Interactive Timeline Visualization for Microsoft Dynamics NAV 2009 R2 White Paper The Interactive Timeline Business Data Visualization is a RoleTailored client control add-in that
Create a Balanced Scorecard
Create a Balanced Scorecard SharePoint Business Intelligence Content Team Summary: Learn how to create scorecards and strategy maps across various measurements and display them in one dashboard by using
Overview of Web Services API
1 CHAPTER The Cisco IP Interoperability and Collaboration System (IPICS) 4.5(x) application programming interface (API) provides a web services-based API that enables the management and control of various
SPHOL325: SharePoint Server 2013 Search Connectors and Using BCS
2013 SPHOL325: SharePoint Server 2013 Search Connectors and Using BCS Hands-On Lab Lab Manual This document is provided as-is. Information and views expressed in this document, including URL and other
Lab Answer Key for Module 1: Installing and Configuring Windows Server 2008. Table of Contents Lab 1: Configuring Windows Server 2008 1
Lab Answer Key for Module 1: Installing and Configuring Windows Server 2008 Table of Contents Lab 1: Configuring Windows Server 2008 1 Information in this document, including URL and other Internet Web
Administrator s Guide to deploying Engagement across multiple computers in a network using Microsoft Active Directory
Administrator s Guide to deploying Engagement across multiple computers in a network using Microsoft Active Directory Fall 2009 Copyright 2009, CCH INCORPORATED. A Wolters Kluwer Business. All rights reserved.
Microsoft Lync Server 2010
Microsoft Lync Server 2010 Scale to a Load Balanced Enterprise Edition Pool with WebMux Walkthrough Published: March. 2012 For the most up to date version of the Scale to a Load Balanced Enterprise Edition
Deploying Personal Virtual Desktops by Using RemoteApp and Desktop Connection Step-by-Step Guide
c623242f-20f0-40fe-b5c1-8412a094fdc7 Deploying Personal Virtual Desktops by Using RemoteApp and Desktop Connection Step-by-Step Guide Microsoft Corporation Published: June 2009 Updated: April 2010 Abstract
Business Portal for Microsoft Dynamics GP 2010. Project Time and Expense Administrator s Guide
Business Portal for Microsoft Dynamics GP 2010 Project Time and Expense Administrator s Guide Copyright Copyright 2010 Microsoft. All rights reserved. Limitation of liability This document is provided
Hyper-V Server 2008 Setup and Configuration Tool Guide
Hyper-V Server 2008 Setup and Configuration Tool Guide Microsoft Corporation Published: October 2008 Author: Cynthia Nottingham Abstract This guide will help you set up and configure Microsoft Hyper-V
Deploying Remote Desktop Web Access with Remote Desktop Connection Broker Step-by- Step Guide
Deploying Remote Desktop Web Access with Remote Desktop Connection Broker Step-by- Step Guide Microsoft Corporation Updated: April 2010 Published: May 2009 Abstract RemoteApp and Desktop Connection provides
DriveLock Quick Start Guide
Be secure in less than 4 hours CenterTools Software GmbH 2012 Copyright Information in this document, including URL and other Internet Web site references, is subject to change without notice. Unless otherwise
Use the Microsoft Office Word Add-In to Create a Source Document Template for Microsoft Dynamics AX 2012 WHITEPAPER
Use the Microsoft Office Word Add-In to Create a Source Document Template for Microsoft Dynamics AX 2012 WHITEPAPER Microsoft Office Word Add-Ins Whitepaper Junction Solutions documentation 2012 All material
IBM Operational Decision Manager Version 8 Release 5. Getting Started with Business Rules
IBM Operational Decision Manager Version 8 Release 5 Getting Started with Business Rules Note Before using this information and the product it supports, read the information in Notices on page 43. This
The 2007 R2 Version of Microsoft Office Communicator Mobile for Windows Mobile: Frequently Asked Questions
The 2007 R2 Version of Microsoft Office Communicator Mobile for Windows Mobile: Frequently Asked Questions Published: December 2008 Information in this document, including URL and other Internet Web site
StarWind iscsi SAN & NAS: Multipathing October 2012
StarWind iscsi SAN & NAS: Multipathing October 2012 TRADEMARKS StarWind, StarWind Software and the StarWind and the StarWind Software logos are trademarks of StarWind Software which may be registered in
