Hybrid for SharePoint Server BCS Reference Architecture

Size: px
Start display at page:

Download "Hybrid for SharePoint Server BCS Reference Architecture"

Transcription

1 Hybrid for SharePoint Server 2013 BCS Reference Architecture

2 Contents About this white paper... 4 Who this white paper is for... 4 Overview of hybrid computing... 4 Why hybrid SharePoint?... 4 Integrating SharePoint Online and SharePoint on-premises... 5 Business Connectivity Services... 6 Step 1: Creating an OData source... 8 Add ADO.NET Entity Data Model... 8 Add WCF Data Service Step 2: Creating External Content Types...11 Create new SharePoint app Step 3: Making ECT tenant-ready...15 Upload ECT to BDC model Step 4: Connecting to on-premises services...18 Validate external access to reverse proxy Prepare tenant environment Configure Secure Store Target Application Set permissions on your online BCS Connect Office 365 BCS to on-premises Import ECT file to SharePoint Online Step 5: Validating BCS hybrid environment...26 Troubleshoot hybrid configuration Appendix A: Hybrid infrastructure Configuring SharePoint on-premises...30 Meet basic SSO deployment requirements Configure SharePoint 2013 services Configure SharePoint 2013 for inbound requests Configuring SharePoint Online...32 Choose authentication topology Hybrid for SharePoint Server 2013 BCS Reference Architecture March 2015 Page 2

3 Appendix B: Secure Store Service Configuring Secure Store Service...35 Register managed account Start Secure Store Service Create target application Enable the audit log Additional information Microsoft Corporation. All rights reserved. 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. 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. Hybrid for SharePoint Server 2013 BCS Reference Architecture March 2015 Page 3

4 About this white paper Microsoft SharePoint implementations frequently span locally deployed and hosted servers to meet the business requirements of internal users, partners, and customers. This document specifies the procedures necessary for an experienced SharePoint administrator to configure Microsoft Business Connectivity Services in online, on-premises, and hybrid SharePoint environments. The procedures and prerequisites covered in this paper assume expert-level technical proficiency and experience with Microsoft SharePoint Server 2013 and Office 365 Online, as well as an existing properly configured infrastructure. Who this white paper is for This white paper is intended for system administrators who need detailed guidelines for setting up a hybrid SharePoint 2013 environment. To ensure a smooth setup process, this paper includes configuration steps, commands, and links to additional reference material. Overview of hybrid computing Today s organizations face significant challenges, including driving IT efficiency and business value in the face of increased pressure to comply with regulations. The goal of any hybridization or the combining of two related but dissimilar entities is to gain leverage from the strengths of both parts, while minimizing the components weaknesses. Hybrid computing is based on a computing model that allows organizations to use a combination of traditional and cloud computing environments to achieve a higher degree of flexibility, rather than forcing a choice between either an on-premises or cloud model. Why hybrid SharePoint? Organizations can use Microsoft SharePoint Online and SharePoint on-premises to achieve a hybrid computing model. With hybrid SharePoint, these organizations can start to realize the benefits associated with the use of cloud computing coupled with the flexibility to customize the environment and govern data as tightly as in an on-premises system while delivering a consistent experience to users. Hybrid for SharePoint Server 2013 BCS Reference Architecture March 2015 Page 4

5 Figure 1 shows some of the most immediate benefits, including the following: Maintain consistency across clouds with familiar tools and resources. Extend your data center with a consistent management toolset and familiar development and identity solutions. Provide enterprise-grade performance and security in the data center and in the cloud. Meet changing business needs with greater flexibility. Deliver capacity on demand. Figure 1: Maximizing user connectivity with a hybrid SharePoint environment Integrating SharePoint Online and SharePoint onpremises Hybrid environments can be helpful when it is not possible for an organization to migrate to the cloud immediately or in full due to business, technical, or other reasons. Cloud services such as SharePoint Online in Microsoft Office 365 can be an attractive alternative to on-premises SharePoint business solutions, but you might find that you need to deploy only specific solutions in the cloud while still maintaining your on-premises SharePoint farm. New functionality in Microsoft SharePoint Server 2013 and SharePoint Online Hybrid for SharePoint Server 2013 BCS Reference Architecture March 2015 Page 5

6 enables you to integrate services like Search, Business Connectivity Services (BCS), and Duet Enterprise Online across the on-premises and cloud boundary. This paper provides the information needed to configure security for a hybrid SharePoint environment. Business Connectivity Services Microsoft Business Connectivity Services (BCS) is a centralized infrastructure in SharePoint 2013 and Office 2013 that supports integrated data solutions. With Business Connectivity Services, you can use SharePoint 2013 and Office 2013 clients as interfaces to get data that doesn t live within SharePoint For example, this external data may be in a database and can be accessed using the Business Connectivity Services connector for that database. Business Connectivity Services also connects to data that is available through a web service, or published as an OData source or other data types. Business Connectivity Services does this through out-of--box or custom connectors, which bridge communications between SharePoint 2013 and the external data-hosting system. At the most fundamental level, every Business Connectivity Services configuration is driven by the location of both its own infrastructure and that of the external system hosting the data. The Business Connectivity Services infrastructure can relate to the external system in three ways, as an on-premises, cloud-only, or BCS hybrid solution: 1. An on-premises solution locates both the SharePoint 2013 farm and the external system behind a company s firewall to live in company-controlled data centers. Users gain access only through the company s network. 2. With a cloud-only configuration, Business Connectivity Services in a SharePoint Online tenancy can access data from various cloud services. For example, SharePoint Online can access data from a third-party stock quotes service or from the Windows Azure Marketplace Data Market by using the BCS web service connector. Because this type of solution consists of solely cloud-based services and no customer-maintained SharePoint 2013 farms or hardware,, it is called a cloud-only solution. 3. A BCS hybrid solution makes use of both SharePoint Online and SharePoint 2013 onpremises. It integrates data from an on-premises OData service endpoint into a SharePoint Online tenancy. Hybrid for SharePoint Server 2013 BCS Reference Architecture March 2015 Page 6

7 Figure 2 shows the data flow of the Business Connectivity Services hybrid solution. Figure 2: Integrating data in a Business Connectivity Services hybrid solution To set up your Hybrid BCS environment, follow these steps: 1. Create OData data source 2. Create External Content Type 3. Make your ECT tenant ready 4. Connect to on-premises services 5. Validate your BCS Hybrid environment Hybrid for SharePoint Server 2013 BCS Reference Architecture March 2015 Page 7

8 Step 1: Creating an OData source The BCS hybrid scenario supports connecting only to an Open Data Protocol (OData) source. If your external data already has an OData service endpoint, you can skip this step. Using Visual Studio 2013, create an empty ASP.NET web application named NorthwindWeb, and follow these steps: Add ADO.NET Entity Data Model 1. Right-click on the project and choose Add New Item. 2. Select Data under Visual C#. 3. Select ADO.NET Entity Data Model. 4. Call it NorthwindModel.edmx. 5. Click Add. 6. Select Generate from database in the Entity Data Model Wizard. Hybrid for SharePoint Server 2013 BCS Reference Architecture March 2015 Page 8

9 7. Click Next. 8. Choose New Connection if you do not have a connection, or connect to an existing one. 9. Click Next. 10. Select Entity Framework Select all of the tables. 12. Click Finish. 13. Compile the project. Hybrid for SharePoint Server 2013 BCS Reference Architecture March 2015 Page 9

10 Add WCF Data Service 1. Right-click on the project and choose Add New Item. 2. From the Web node, choose the WCF Data Service 5.6 item. 3. In the Name text box, enter Northwind. 4. Click Add. 5. Update the Northwind code, using the Code Editor to enter the new code below:: a. public class NorthwindCustomers : DataService<NorthwindEntities> b. config.setentitysetaccessrule("*", EntitySetRights.All); (insert in InitializeService event handler): 6. Compile the project. Hybrid for SharePoint Server 2013 BCS Reference Architecture March 2015 Page 10

11 Step 2: Creating External Content Types Next, create an External Content Type (ECT) based on the OData source. Again, note that Hybrid BCS implementation only works with OData-based External Content Types, which need to be created with Visual Studio (not SharePoint Designer). To create an ECT, you need the following: SharePoint Server 2013 Visual Studio 2013 Office Developer Tool for Visual Studio 2013 OData service that can be accessed from the Internet Create new SharePoint app Using Visual Studio 2013, create a new SharePoint app: 1. Under the Office/SharePoint templates, select App for SharePoint to create a new project. 2. Name your project and click OK. 3. Select your local on-premises SharePoint URL to debug your project. Hybrid for SharePoint Server 2013 BCS Reference Architecture March 2015 Page 11

12 4. Select SharePoint-hosted. Note SharePoint-hosted apps support all components on either an on-premises or Office 365 SharePoint farm. These apps are installed on a SharePoint 2013 website, or host web. 5. Click Finish. Hybrid for SharePoint Server 2013 BCS Reference Architecture March 2015 Page 12

13 6. In the Solution Explorer, click Add Content Types for an External Data Source. Hybrid for SharePoint Server 2013 BCS Reference Architecture March 2015 Page 13

14 7. Enter the URL of your OData service published in the previous section and name it. 8. Click Next. Hybrid for SharePoint Server 2013 BCS Reference Architecture March 2015 Page 14

15 9. Select one or more data entity. 10. Click Finish. This process will create the External Content Type for each of the entities you have selected. Step 3: Making ECT tenant-ready After creating an External Content Type, add it to your Business Data Catalog (BDC) to use in your site collections. In the previous section, you learned how to create an ECT, in which each entity in the OData source represents a single ECT. However, the entities use a shared name in the ECT file, which prevents you from uploading more than one entity to the BDC. To fix this and be able to use all entities in SharePoint, follow these steps: 1. From Visual Studio, right-click on the ECT file, and select Open with. Each entity will have its own.ect file, located under External Content Types\<folder name>. 2. Select XML Editor and click OK. Hybrid for SharePoint Server 2013 BCS Reference Architecture March 2015 Page 15

16 3. In the top of the document, within the Model element, you will see a Name attribute. This Name attribute is the name you selected when you connected to the OData source, such as NorthwindCustomersModel. The value of this name is the same in all of the ECT files created from the entities, but it has to be unique in order to use it in SharePoint. You will need to change the name based on the ECT you are using (for example, Categories Table, Employees Table, etc.). 4. Change the name in each ECT file. 5. Change the name of the Namespace in the Entity element (optional). 6. Save the ECT file. Upload ECT to BDC model After making these changes to your ECT files, you can upload all of your entities to your BDC model. To do so: 1. Go to your SharePoint Central Administration. 2. Navigate to Application Management Manage service applications. 3. Click on your BDC model. 4. Click Import. Hybrid for SharePoint Server 2013 BCS Reference Architecture March 2015 Page 16

17 5. Navigate to your ECT file locations and import each ECT file As an alternative solution, you can develop a PowerShell script to import all of the files. 6. Click OK. 7. Repeat the above steps for all of your models. 8. After importing the BDC models, grant permissions for users to access them. 9. On each of the models, click the dropdown menu and select Set Permissions. Hybrid for SharePoint Server 2013 BCS Reference Architecture March 2015 Page 17

18 10. Select the appropriate permission for each group. Step 4: Connecting to on-premises services Setting a hybrid connection between your SharePoint Online and on-premises requires communication trusts between the two farms. Refer to Appendix A: Hybrid infrastructure for more details. Validate external access to reverse proxy At this point in deploying the BCS hybrid scenario, confirm that you can access your onpremises SharePoint 2013 farm (now configured to receive hybrid calls from SharePoint Online). To confirm access to external URL: 1. Copy the certificate to your extranet computer, and then click the certificate. You will be prompted to enter the certificate password. This adds the certificate to your personal certificate store. 2. Open a web browser and browse to the externally published URL of your on-premises farm. You should be prompted for credentials. If not, check your browser settings to ensure that your logged-on credentials are not being automatically passed. 3. Provide the credentials of the federated user. If you don't see the published site, contact the administrators who set up your hybrid infrastructure. Do not continue with the BCS hybrid scenario until this issue is resolved. Hybrid for SharePoint Server 2013 BCS Reference Architecture March 2015 Page 18

19 Prepare tenant environment In order for your SharePoint Online tenant to connect to your on-premises tenant, you will need to configure your security to accept connections to your services. To establish a trust between your online and on-premises tenants, do the following. 1. Click a service account that will access the OData service endpoint that you configured previously; this procedure will be called ODataAccount. 2. Create a global security group for your OData service endpoint; this procedure will be called ODataGroup. 3. Add the service account to the global security group. Configure Secure Store Target Application 1. Go to SharePoint Central Administration in your on-premises tenant. 2. Navigate to Application Management Manage service applications. 3. Click Secure Store. 4. If you have never used Secure Store, you will need to generate a new key first. 5. Click Generate New Key. Hybrid for SharePoint Server 2013 BCS Reference Architecture March 2015 Page 19

20 6. Enter Passphrase, and then click OK. 7. Click New under Manage Target Applications. 8. Enter your application name, display name, and address. 9. Select Group in the Target Application Type. Hybrid for SharePoint Server 2013 BCS Reference Architecture March 2015 Page 20

21 10. Click Next. 11. Accept the default values in the Create New Secure Store Target Application page. 12. Click Next. 13. Enter the Farm Administrator account in the Target Application Administrators, and enter the group name you created for your OData Service Endpoint in the Members section. 14. Click OK. Tip A pass phrase string must be a minimum of eight characters and contain at least three of the following four elements: Uppercase characters Lowercase characters Numerals Any of the following special characters:! " # $ % & ' ( ) * +, -. / : ; < = [ \ ] ^ _ ` { } ~ Note The pass phrase that you entered is not stored: make sure to record and store it in a safe place. You must have it to refresh the key, such as when you add a new application server to the server farm. For security precautions, or as part of regular maintenance, you may decide to generate a new encryption key and force the Secure Store Service to be re-encrypted based on the new key. You can use the same procedure detailed above to do this. Important: first back up the database of the Secure Store Service application before generating a new key. Set permissions on your online BCS Setting permissions on your SharePoint Online BDC Metadata Store is different than on the on-premises tenant. 1. Open your SharePoint Online administration page. 2. Click bcs. Hybrid for SharePoint Server 2013 BCS Reference Architecture March 2015 Page 21

22 3. Click Manage BDC models and External Content Types. 4. Under Permissions, click Set Metadata Store Permissions. 5. Select All users, and then set the Execute. 6. Select the check box to Propagate permissions to all BDC Models. 7. Click OK. Hybrid for SharePoint Server 2013 BCS Reference Architecture March 2015 Page 22

23 Connect Office 365 BCS to on-premises Unlike BCS in SharePoint 2013, BCS in SharePoint Online requires that you configure a connection settings object (CSO), which contains additional information to establish the connection to the external system and the OData source you created. When you create a CSO in your SharePoint Online tenant, you must provide a URL for your on-premises farm (the external URL you have configured in your reverse proxy to connect to your internal SharePoint services). Your SharePoint Online tenant will try to reach out to that endpoint in order to invoke your on-premises BCS and connect to your data source. Whichever URL you may choose to publish, your CSO must have /_vti_bin/client.svc at the end of the URL to work properly. Before you begin this procedure, make sure you have the following: Configuration tools installed on an on-premises web server. ID of the Secure Store Target Application that you configured. Internet-facing URL that Office 365 uses to connect to the service address (published by the reverse proxy). ID of the Secure Store Target Application for the Secure Channel certificate in Office 365. To create a CSO to your on-premises tenant: 1. Open your SharePoint Online administration page. 2. Click bcs. 3. Click Manage connections to on-premises services. 4. Click Add. 5. Enter the Title and the OData Service Address URL. 6. Under Authentication, select Use credentials stored in SharePoint on-premises. 7. Enter the Secure Store Target Application ID. Hybrid for SharePoint Server 2013 BCS Reference Architecture March 2015 Page 23

24 8. Under Authentication Mode, select Impersonate Window s Identity. 9. Enter the Internet-facing URL you have configured under the reverse proxy, making sure to include /_vti_bin/client.svc at the end of the URL. 10. Click Create. Hybrid for SharePoint Server 2013 BCS Reference Architecture March 2015 Page 24

25 Your model will use your Connection Settings object from SharePoint Online to connect to the on-premises data. Before you can connect to the on-premises data source, you will need to make the following edits: 1. Copy the ECT file you'll be importing, in order to maintain the version set up with your OData project. 2. Delete the ODataServiceMetadataUrl and ODataServiceMetadataAuthenticationMode properties from the LobSystem property list in the ECT file. 3. Delete the ODataServiceUrl and ODataServiceAuthenticationMode properties from the LobSystemInstance property list in the ECT file. 4. Add this property to the list of properties for both the LobSystem and LobSystemInstance: <Property Name="ODataConnectionSettingsId" Type="System.String">yourConnectionSettingsObjectName</Property>. Import ECT file to SharePoint Online As with the on-premises tenant, next import your new ECT file (modified in the previous section) to your SharePoint Online BCS tenant. 1. Open your SharePoint Online administration page. 2. Click bcs. 3. Select Manage your BDC models and External Content Types. 4. Click Import. 5. Navigate to your ECT file locations and import each ECT file; as an alternative solution, you can develop a PowerShell script to import all the files. Hybrid for SharePoint Server 2013 BCS Reference Architecture March 2015 Page 25

26 6. Click OK After your model uploads successfully, create a new external list in SharePoint Online and use that to work with your on-premises LOB data. Follow this article to create an external list. Step 5: Validating BCS hybrid environment Now that you have created an external list, or deployed an app for SharePoint in SharePoint Online, test the security you put in place. Every account that will access and manipulate external data must have three properties: Contain user or greater permissions to the SharePoint Online site and the external list or app for SharePoint. Be a federated account. Be a member of the on-premises global security group that you are using to control access to the OData service endpoint. For example, it must be a member of ODataGroup. In this procedure, you will open the SharePoint Online site and the external list or app for SharePoint with four different accounts. Hybrid for SharePoint Server 2013 BCS Reference Architecture March 2015 Page 26

27 To validate security on the BCS hybrid: 1. Identify or create one account for each of the account types listed in the following table. Account Expected outcome Troubleshooting step Account A Has site/list/app permissions. Is federated. Is a member of the onpremises global security group (ODataGroup). External data displayed and editable. If the external data does not display or you cannot edit it, check the site permissions, your federation setup, and the membership of your on-premises global security group (for example, the ODataGroup). Account B Does not have site/list/app permissions. Is federated. Is a member of the onpremises global security group (ODataGroup). External data does not display. If the external data does display and you can edit it, check the site/list/app permissions. Account C Has site/list/app permissions. Is not federated (is an Office 365 account only). Can't be added to the on-premises global security group (ODataGroup). External data does not display. If the external data does display and you can edit it, check your federation setup and membership of your onpremises global security group (OData Group). Hybrid for SharePoint Server 2013 BCS Reference Architecture March 2015 Page 27

28 Account Expected outcome Troubleshooting step Account D Has site/list/app permissions. Is federated. Is not a member of your on-premises global security group (ODataGroup). External data does not display. If the external data does display and you can edit it, check the membership of your on-premises global security group (ODataGroup) and the permissions that you set on the OData service endpoint that you configure in Prepare the SharePoint Online environment for the Business Connectivity Services hybrid scenario. 2. Open (via In-Private browsing if possible) the SharePoint Online site that contains the external list or app for SharePoint by using each account in turn. Be sure to log out completely and close your browser in between tests. 3. If you don t see the expected outcome, refer to the troubleshooting steps in the previous table, fix the issue, and repeat all four tests until you achieve the expected outcome. If you see the error message: ResourceBudgetExceeded, sending throttled status code. Exception=Microsoft.SharePoint.SPResourceBudgetExceededException: ResourceBudgetExceeded at Microsoft.SharePoint.SPResourceTally.Check(Int32 value) at Microsoft.SharePoint.SPAggregateResourceTally.Check(SPResourceKind kind, Int32 value) at Microsoft.SharePoint.Client.SPClientServiceHost.OnBeginRequest() You can either remove the throttling: $webapp = Get-SPWebApplication -Identity of your on-premises farm> $rule = $webapp.appresourcetrackingsettings.rules.get([microsoft.sharep oint.spresourcekind]::clientservicerequestduration) $rule.remove() Hybrid for SharePoint Server 2013 BCS Reference Architecture March 2015 Page 28

29 Or change the throttling value: $webapp = Get-SPWebApplication -Identity of your on-premises farm> $webapp. AppResourceTrackingSettings.Rules.Add([Microsoft.SharePoint.SPR esourcekind]::clientservicerequestduration, , ) $webapp.appresourcetrackingsettings.windowcount = 10 $webapp.appresourcetrackingsettings.windowsize = [System.TimeSpan]::FromSeconds(30) $webapp.update() Note Keep in mind that (above) indicates time in milliseconds, equivalent to 150 seconds. Troubleshoot hybrid configuration If you encounter further issues with data display, also try the following: 1. Verify that the external data source is running and accessible. 2. Verify that one-way outbound or two-way authentication is working. 3. Verify configuration steps presented earlier. 4. Check logs written by the Unified Logging Service (ULS logs or trace logs). Hybrid for SharePoint Server 2013 BCS Reference Architecture March 2015 Page 29

30 Appendix A: Hybrid infrastructure This section describes how to configure the hybrid SharePoint infrastructure. It starts with configuring SharePoint on-premises, and then moves to configuring SharePoint Online. Configuring SharePoint on-premises Setting up SharePoint on-premises requires that you meet basic Single Sign-On (SSO) deployment requirements first, before configuring SharePoint 2013 services and inbound requests. Meet basic SSO deployment requirements When you set up and enable SSO, users in your organization are able to use their corporate credentials to access the Office 365 service offerings. This removes the burden of managing multiple logon identities and passwords. Without SSO, an Office 365 user would have to maintain separate user names and passwords. For an even better end-user experience, you can create and deploy smart links, which can help speed user sign-in requests by reducing the number of redirects necessary for authentication. In addition to user advantages, administrators and the organization can also benefit from SSO. For example, configuring SSO helps to enforce the organization s password policies and account restrictions in both the on-premises directory and the Office 365 directory. To prepare, confirm that the environment meets SSO requirements. Next, verify that the Active Directory and Azure Active Directory tenant are set up to be compatible with Single Sign-On requirements. Also, Active Directory must be deployed and running in Windows Server 2003 R2, Windows Server 2008, Windows Server 2008 R2, Windows Server 2012, or Windows Server 2012 R2 with a functional level of mixed or native mode. If you plan to use Active Directory Federation Services (AD FS) as your Security Token Service (STS), you will need to do one of the following: Download, install, and deploy AD FS 2.0 on a Windows Server 2008 or Windows Server 2008 R2 server. Deploy an AD FS 2.0 proxy, if users will be connecting from outside the company network. Install the AD FS role service on a Windows Server 2012 or Windows Server 2012 R2 server. Hybrid for SharePoint Server 2013 BCS Reference Architecture March 2015 Page 30

31 In addition, Active Directory must have certain settings configured to work properly with Single Sign-On. In particular, the UPN, or user logon name, must be set up in a specific way for each user. Configure SharePoint 2013 services You need to configure the User Profile Service to synchronize user and group profiles from the on-premises Active Directory domain. When federated users access resources in a hybrid environment, the STS makes calls to the User Profile Service to obtain user account metadata, such as the UPN and property values. This metadata is used by the STS to construct security tokens during the authentication process. SharePoint Online presents claims to the on-premises SharePoint farm by using the Simple Mail Transfer Protocol (SMTP). To support this, ensure that the SharePoint user profiles for all federated users are populated with the user s address by using the correct UPN. This means that the work field in the on-premises SharePoint User Profile Store needs to contain the user s federated address. For example, if a federated user logs on to the on-premises domain as contoso\karenb and the public domain for the hybrid environment is contoso.com, her federated address is karenb@contoso.com. Verify that the App Management and Microsoft SharePoint Foundation Subscription Settings services are started and configured. These services should be enabled to support certain configuration procedures, and to help register SharePoint Online as a high-trust application in SharePoint Configure SharePoint 2013 for inbound requests If the hybrid environment is configured for an inbound authentication topology, ensure that a single on-premises web application is configured to receive requests from SharePoint Online. This web application is referred to as the primary web application for the hybrid environment, and it accepts requests from the external endpoint URL. No specific web application configuration is required to support a one-way, outbound authentication topology. In a SharePoint Server 2013 hybrid environment, outbound connections can be made from any on-premises web application. A single SharePoint Server 2013 web application must be configured for inbound connections; it is used as the primary web application for accepting inbound connections, and configuring services and connection objects for the Hybrid for SharePoint Server 2013 BCS Reference Architecture March 2015 Page 31

32 hybrid features you deploy. You can either create a new web application and site collection, or configure an existing web application for this purpose. Configuring SharePoint Online Setting up SharePoint Online requires that you choose an application authentication topology and make additional configuration choices for the service. Choose authentication topology As shown in Figure 3, your choice of an authentication topology determines how certificates are configured and what capabilities are present in the hybrid solution. Figure 3: Setting up SharePoint Online with an application authentication topology One-way outbound topology Both one-way inbound and two-way (bidirectional) topologies are supported with hybrid BCS, but not one-way outbound topology. One-way inbound topology A one-way inbound hybrid topology enables SharePoint Online to connect to SharePoint Server 2013 through a reverse proxy device (Figure 4). For example, users of a SharePoint Online Search portal can see both local and remote search results, but only local results are available in the SharePoint Server 2013 Search portal. Hybrid for SharePoint Server 2013 BCS Reference Architecture March 2015 Page 32

33 Figure 4: Configuring one-way inbound topology A one-way inbound topology can be configured to let users access on-premises SharePoint search results from the Internet, as long as they have access to the intranet through a virtual private network or DirectAccess. On-premises SharePoint Server 2013 Enterprise Search portal: Local search results are available. SharePoint Online search portal: Local and remote search results are available. Two-way (bidirectional) topology A two-way topology enables bidirectional hybrid service integration between the onpremises SharePoint Server 2013 farm environment and the Office 365 tenant (Figure 5). For example, search can be configured to allow federated users to see both local and remote search results in either SharePoint Server 2013 or SharePoint Online search portals. Hybrid for SharePoint Server 2013 BCS Reference Architecture March 2015 Page 33

34 Figure 5: Configuring two-way (bidirectional) topology Configuring a two-way topology lets users access on-premises SharePoint Internet search results, as long as access to the intranet is with a virtual private network or DirectAccess: On-premises SharePoint Server 2013 Enterprise search portal and SharePoint Online search portal: Local and remote search results are available. If extranet authentication services are configured, extranet users can log on remotely through an on-premises Active Directory account and use all available hybrid functionality. Refer to these articles for more on how to configure your reverse proxy server and establish a secure connection between your SharePoint Online and on-premises tenants. Link to procedure Description of procedure Configure a one-way inbound hybrid topology Configure a two-way bidirectional hybrid topology Learn how to configure the infrastructure for SharePoint 2013 hybrid environments that use a one-way inbound authentication topology. Learn how to configure the infrastructure for SharePoint 2013 hybrid environments using a two-way authentication topology. Hybrid for SharePoint Server 2013 BCS Reference Architecture March 2015 Page 34

35 Appendix B: Secure Store Service This section describes how to configure the Secure Store Service on a SharePoint Server 2013 farm. Secure Store has important planning considerations associated with it. Be sure to read Plan the Secure Store Service in SharePoint Server 2013 before you begin the procedures in this section. Configuring Secure Store Service To configure Secure Store, perform the following steps: 1. Register a managed account in SharePoint Server 2013 to run the Secure Store application pool. 2. Start the Secure Store Service on an application server in the farm. 3. Create a Secure Store Service application. Video demonstration (configuration) To run the application pool, you must have a standard domain account. No specific permissions are required for this account. After the account is created in Active Directory, follow these steps to register it with SharePoint Server Register managed account 1. On the SharePoint Central Administration website home page, in the left navigation pane, click Security. 2. On the Security page, in the General Security section, click Configure managed accounts. 3. On the Managed Accounts page, click Register Managed Account. 4. In the User name box, type the name of the account. 5. In the Password box, type the password for the account. 6. If you want SharePoint Server 2013 to handle changing the password for the account, select the Enable automatic password change box and specify the password change parameters that you want to use. 7. Click OK. Hybrid for SharePoint Server 2013 BCS Reference Architecture March 2015 Page 35

36 After configuring the registered account, start the Secure Store Service on an application server in the farm. Because Secure Store deals with sensitive information, be sure to use a separate application server just for the Secure Store Service for better security. Start Secure Store Service 1. On the Central Administration home page, in the System Settings section, click Manage services on server. 2. Above the Service list, click the Server drop-down list, and then click Change Server. 3. Select the application server where you want to run the Secure Store Service. 4. In the Service list, click Start next to Secure Store Service. After starting the service, it is important to create a Secure Store Service application. Use the following procedure to create the service application. Create target application Target applications are configured on the Secure Store Service Application page in Central Administration. To create a target application: 1. On the Central Administration home page, in the Application Management section, click Manage service applications. 2. Click the Secure Store service application. 3. In the Manage Target Applications group, click New. 4. In the Target Application ID box, type a text string. This is the unique string that you will use externally to identify this target application. 5. In the Display Name box, type a text string that will be used to display the identifier of the target application in the user interface. 6. In the Contact box, type the address of the primary contact for this target application. This can be any legitimate address and does not have to be the identity of an administrator of the Secure Store Service application. 7. When you create a target application of type Individual (see below), you can implement a custom webpage that lets users add individual credentials for the destination data source. This requires custom code to pass the credentials to the Hybrid for SharePoint Server 2013 BCS Reference Architecture March 2015 Page 36

37 target application. If you did this, type the full URL of this page in the Target Application Page URL field. There are three options: a. Use default page: Any websites that use the target application to access external data will have an individual sign-up page that was added automatically. b. The URL of this page will be <TargetApplicationID>, where <TargetApplicationID> is the string typed in the Target Application ID box. c. By publicizing the location of this page, you can enable users to add their credentials for the external data source. d. Use custom page: You provide a custom webpage that lets users provide individual credentials. Type the URL of the custom page in this field. e. None: There is no sign-up page. Individual credentials are added only by a Secure Store Service administrator who is using the Secure Store Service application. 8. In the Target Application Type drop-down list, choose: Group, for group credentials, or Individual, if each user is to be mapped to a unique set of credentials on the external data source. Note You can use two primary types to create a target application: Group: for mapping all the members of one or more groups to a single set of credentials on the external data source. Individual: for mapping each user to a unique set of credentials on the external data source. 9. Click Next. 10. Use the Specify the credential fields for your Secure Store Target Application page to configure the various fields which may be required to provide credentials to the external data source. By default, two fields are listed: Windows User Name and Windows Password. To add an additional field for supplying credentials to the external data source, on the Specify the credential fields for your Secure Store Target Application page, click Add Field. Hybrid for SharePoint Server 2013 BCS Reference Architecture March 2015 Page 37

38 By default, the type of the new field is Generic. The following field types are available: Field Generic User Name Password PIN Key Windows User Name Windows Password Certificate Certificate Password Description Values that do not fit in any of the other categories. A user account that identifies the user. A secret word or phrase. A personal identification number. A parameter that determines the functional output of a cryptographic algorithm or cipher. A Windows user account that identifies the user. A secret word or phrase for a Windows account. A certificate. The password for the certificate. To change the type of a new or existing field, click the arrow that appears next to the type of the field, and then select the new type of field. Note Every field that you add needs to contain data when you set the credentials for this target application. a. You can change the name that a user sees when interacting with a field. In the Field Name column of the Specify the credential fields for your Secure Store Target Application page, change a field name by selecting the current text and typing new text. b. When a field is masked, each character that a user types is not displayed but is replaced with a mask character such as the asterisk "*". To mask a field, click the check box for that field in the Masked column of the page. c. To delete a field, click the delete icon for that field in the Delete column of the page. Hybrid for SharePoint Server 2013 BCS Reference Architecture March 2015 Page 38

39 d. When you have finished editing the credential fields, click Next. 11. In the Specify the membership settings page, in the Target Application Administrators Field, list all users who have access to manage the target application settings. 12. If the Target Application Type is group, in the Members field, list the user groups to map to a set of credentials for this target application. 13. Click OK to complete configuring the target application. Target application credentials After creating a target application, an administrator of that target application can set credentials for it. These credentials are used by the calling application to provide access to an external data source. If the target application is of type Individual, you can also enable users to supply their own credentials. To set credentials for a target application: 1. On the Central Administration home page, in the Application Management section, click Manage service applications. 2. Click the Secure Store service application. 3. In the Target Application Type drop-down list, select the application for which you want to set credentials, click the arrow that appears and, in the menu, Set credentials. a. If the target application is of type Group, type the credentials for the external data source. Depending on the information that is required by the external data source, the fields for setting credentials will vary. b. If the target application is of type Individual, type the user name of the individual who will be mapped to this set of credentials on the external data source, and type the credentials for the external data source. Depending on the information that is required by the external data source, the fields for setting credentials will vary. 4. Click OK. After setting the credentials for the target application, it is ready to be used by a SharePoint Server 2013 service such as Business Connectivity Services or Excel Services. Hybrid for SharePoint Server 2013 BCS Reference Architecture March 2015 Page 39

40 Enable the audit log Audit entries for the Secure Store service are stored in the Secure Store Service database. By default, the audit log file is disabled. An audit log entry stores information about a Secure Store Service action, such as when it was performed, whether it succeeded, why it failed, the Secure Store Service user who performed it, and, optionally, the Secure Store Service user on whose behalf it was performed. Therefore, a valid reason to enable an audit log file is to troubleshoot an authentication issue. To enable the audit log by using Central Administration: 1. On the Central Administration home page, in the Application Management section, click Manage service applications. 2. Select the Secure Store service application. (That is, select the service application, but do not click the link to go to the Secure Store Service application settings page.) 3. On the ribbon, click Properties. 4. From the Enable Audit section, click to select the Audit log enabled box. 5. To change the number of days that entries will be purged from the audit log file, specify a number in days in the Days Until Purge field. The default value is 30 days. 6. Click OK. Hybrid for SharePoint Server 2013 BCS Reference Architecture March 2015 Page 40

41 Additional information These links to articles and guides relate directly to SharePoint configuration and migration: Learn about SharePoint Server 2013 hybrid environments and the hybrid solutions available for SharePoint Server 2013 and SharePoint Online: Learn how to plan, prepare, and perform an upgrade to SharePoint 2013: Explore links on this page to find out more about how to implement SharePoint 2013: Review technical diagrams for SharePoint 2013: Learn how to upgrade to SharePoint 2013 in advanced scenarios, such as from Office SharePoint Server 2007 or Windows SharePoint Services 3.0, from FAST Search Server, or when using content type syndication: Hybrid for SharePoint Server 2013 BCS Reference Architecture March 2015 Page 41

Hybrid for SharePoint Server 2013. Search Reference Architecture

Hybrid for SharePoint Server 2013. Search Reference Architecture Hybrid for SharePoint Server 2013 Search Reference Architecture 2014 Microsoft Corporation. All rights reserved. This document is provided as-is. Information and views expressed in this document, including

More information

SharePoint 2013 Business Connectivity Services Hybrid Overview

SharePoint 2013 Business Connectivity Services Hybrid Overview SharePoint 2013 Business Connectivity Services Hybrid Overview Christopher J Fox Microsoft Corporation November 2012 Applies to: SharePoint 2013, SharePoint Online Summary: A hybrid SharePoint environment

More information

Get started with cloud hybrid search for SharePoint

Get started with cloud hybrid search for SharePoint Get started with cloud hybrid search for SharePoint This document supports a preliminary release of the cloud hybrid search feature for SharePoint 2013 with August 2015 PU and for SharePoint 2016 Preview,

More information

Configure Microsoft Dynamics AX Connector for Mobile Applications

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 adocs@microsoft.com.

More information

Cloud-Accelerated Hybrid Scenarios with SharePoint and Office 365

Cloud-Accelerated Hybrid Scenarios with SharePoint and Office 365 Cloud-Accelerated Hybrid Scenarios with SharePoint and Office 365 Contents Contents 1 About this guide 3 Overview 9 Authentication and authorization 10 Getting started with identity integration 26 Getting

More information

Integration Guide. SafeNet Authentication Service. SAS Using RADIUS Protocol with Microsoft DirectAccess

Integration Guide. SafeNet Authentication Service. SAS Using RADIUS Protocol with Microsoft DirectAccess SafeNet Authentication Service Integration Guide SAS Using RADIUS Protocol with Microsoft DirectAccess Technical Manual Template Release 1.0, PN: 000-000000-000, Rev. A, March 2013, Copyright 2013 SafeNet,

More information

Windows Server Update Services 3.0 SP2 Step By Step Guide

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

More information

Microsoft Corporation. Project Server 2010 Installation Guide

Microsoft Corporation. Project Server 2010 Installation Guide Microsoft Corporation Project Server 2010 Installation Guide Office Asia Team 11/4/2010 Table of Contents 1. Prepare the Server... 2 1.1 Install KB979917 on Windows Server... 2 1.2 Creating users and groups

More information

AvePoint Meetings 3.2.2 for SharePoint On-Premises. Installation and Configuration Guide

AvePoint Meetings 3.2.2 for SharePoint On-Premises. Installation and Configuration Guide AvePoint Meetings 3.2.2 for SharePoint On-Premises Installation and Configuration Guide Issued August 2015 Table of Contents About AvePoint Meetings for SharePoint... 4 System Requirements... 5 2 System

More information

ICONICS Using the Azure Cloud Connector

ICONICS Using the Azure Cloud Connector Description: Guide to use the Azure Cloud Connector General Requirement: Valid account for Azure, including Cloud Service, SQL Azure and Azure Storage. Introduction Cloud Connector is a FrameWorX Server

More information

Deploy the client as an Azure RemoteApp program

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

More information

How to set up a multifunction device or application to send email using Office 365

How to set up a multifunction device or application to send email using Office 365 How to set up a multifunction device or application to send email using Office 365 Exchange Online 232 out of 424 rated this helpful Applies to: Exchange Online Topic Last Modified: 2015 10 14 You can

More information

Configuring Single Sign-On from the VMware Identity Manager Service to Office 365

Configuring Single Sign-On from the VMware Identity Manager Service to Office 365 Configuring Single Sign-On from the VMware Identity Manager Service to Office 365 VMware Identity Manager JULY 2015 V1 Table of Contents Overview... 2 Passive and Active Authentication Profiles... 2 Adding

More information

Introduction to Mobile Access Gateway Installation

Introduction to Mobile Access Gateway Installation Introduction to Mobile Access Gateway Installation This document describes the installation process for the Mobile Access Gateway (MAG), which is an enterprise integration component that provides a secure

More information

Before you begin with an Exchange 2010 hybrid deployment... 3. Sign up for Office 365 for an Exchange 2010 hybrid deployment... 10

Before you begin with an Exchange 2010 hybrid deployment... 3. Sign up for Office 365 for an Exchange 2010 hybrid deployment... 10 Contents Before you begin with an Exchange 2010 hybrid deployment... 3 Sign up for Office 365 for an Exchange 2010 hybrid deployment... 10 Verify prerequisites with an Exchange 2010 hybrid deployment...

More information

Introduction to the EIS Guide

Introduction to the EIS Guide Introduction to the EIS Guide The AirWatch Enterprise Integration Service (EIS) provides organizations the ability to securely integrate with back-end enterprise systems from either the AirWatch SaaS environment

More information

HarePoint Workflow Extensions for Office 365. Quick Start Guide

HarePoint Workflow Extensions for Office 365. Quick Start Guide HarePoint Workflow Extensions for Office 365 Quick Start Guide Product version 0.91 November 09, 2015 ( This Page Intentionally Left Blank ) HarePoint.Com Table of Contents 2 Table of Contents Table of

More information

Protecting Juniper SA using Certificate-Based Authentication. Quick Start Guide

Protecting Juniper SA using Certificate-Based Authentication. Quick Start Guide Protecting Juniper SA using Certificate-Based Authentication Copyright 2013 SafeNet, Inc. All rights reserved. All attempts have been made to make the information in this document complete and accurate.

More information

Windows Azure Pack Installation and Initial Configuration

Windows Azure Pack Installation and Initial Configuration Windows Azure Pack Installation and Initial Configuration Windows Server 2012 R2 Hands-on lab In this lab, you will learn how to install and configure the components of the Windows Azure Pack. To complete

More information

Before you begin with an Exchange 2010 hybrid deployment... 3. Sign up for Office 365 for an Exchange 2010 hybrid deployment... 10

Before you begin with an Exchange 2010 hybrid deployment... 3. Sign up for Office 365 for an Exchange 2010 hybrid deployment... 10 Contents Before you begin with an Exchange 2010 hybrid deployment... 3 Sign up for Office 365 for an Exchange 2010 hybrid deployment... 10 Verify prerequisites with an Exchange 2010 hybrid deployment...

More information

ADFS Integration Guidelines

ADFS Integration Guidelines ADFS Integration Guidelines Version 1.6 updated March 13 th 2014 Table of contents About This Guide 3 Requirements 3 Part 1 Configure Marcombox in the ADFS Environment 4 Part 2 Add Relying Party in ADFS

More information

F-Secure Messaging Security Gateway. Deployment Guide

F-Secure Messaging Security Gateway. Deployment Guide F-Secure Messaging Security Gateway Deployment Guide TOC F-Secure Messaging Security Gateway Contents Chapter 1: Deploying F-Secure Messaging Security Gateway...3 1.1 The typical product deployment model...4

More information

Configuration Guide. SafeNet Authentication Service AD FS Agent

Configuration Guide. SafeNet Authentication Service AD FS Agent SafeNet Authentication Service AD FS Agent Configuration Guide Technical Manual Template Release 1.0, PN: 000-000000-000, Rev. A, March 2013, Copyright 2013 SafeNet, Inc. All rights reserved. 1 Document

More information

Lab 1: Windows Azure Virtual Machines

Lab 1: Windows Azure Virtual Machines Lab 1: Windows Azure Virtual Machines Overview In this hands-on Lab, you will learn how to deploy a simple web page to a Web server hosted in Windows Azure and configure load balancing. Objectives In this

More information

Configuration Guide. BES12 Cloud

Configuration Guide. BES12 Cloud Configuration Guide BES12 Cloud Published: 2016-04-08 SWD-20160408113328879 Contents About this guide... 6 Getting started... 7 Configuring BES12 for the first time...7 Administrator permissions you need

More information

HOTPin Integration Guide: DirectAccess

HOTPin Integration Guide: DirectAccess 1 HOTPin Integration Guide: DirectAccess Disclaimer Disclaimer of Warranties and Limitation of Liabilities All information contained in this document is provided 'as is'; Celestix assumes no responsibility

More information

Setting Up Resources in VMware Identity Manager

Setting Up Resources in VMware Identity Manager Setting Up Resources in VMware Identity Manager VMware Identity Manager 2.4 This document supports the version of each product listed and supports all subsequent versions until the document is replaced

More information

Microsoft Dynamics GP Release

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.

More information

NYSeMail Office 365 Administration Guide for Agencies

NYSeMail Office 365 Administration Guide for Agencies NYSeMail Office 365 Administration Guide for Agencies Office 365 Overview... 34 What is included... 34 Software Requirements... 34 Message Limits... 34 Provisioning... 34 Archive and Retention Policy...

More information

To install Multifront you need to have familiarity with Internet Information Services (IIS), Microsoft.NET Framework and SQL Server 2008.

To install Multifront you need to have familiarity with Internet Information Services (IIS), Microsoft.NET Framework and SQL Server 2008. Znode Multifront - Installation Guide Version 6.2 1 System Requirements To install Multifront you need to have familiarity with Internet Information Services (IIS), Microsoft.NET Framework and SQL Server

More information

The Great Office 365 Adventure

The Great Office 365 Adventure COURSE OVERVIEW The Great Office 365 Adventure Duration: 5 days It's no secret that Microsoft has been shifting its development strategy away from the SharePoint on-premises environment to focus on the

More information

System Center 2012 R2 SP1 Configuration Manager & Microsoft Intune

System Center 2012 R2 SP1 Configuration Manager & Microsoft Intune 2015 System Center 2012 R2 SP1 Configuration Manager & Microsoft Intune DEPLOYING MICROSOFT OFFICE 365 PROFESSIONAL PLUS RONNI PEDERSEN & HANS CHRISTIAN ANDERSEN RONNIPEDERSEN.COM Microsoft MVP: Enterprise

More information

Microsoft Dynamics AX 2012 Installation Guide. Microsoft Corporation Published: April 2011 This content is preliminary and is subject to change.

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

More information

GOA365: The Great Office 365 Adventure

GOA365: The Great Office 365 Adventure BEST PRACTICES IN OFFICE 365 DEVELOPMENT 5 DAYS GOA365: The Great Office 365 Adventure AUDIENCE FORMAT COURSE DESCRIPTION STUDENT PREREQUISITES Professional Developers Instructor-led training with hands-on

More information

Lync Online Deployment Guide. Version 1.0

Lync Online Deployment Guide. Version 1.0 Date 28/07/2014 Table of Contents 1. Provisioning Lync Online... 1 1.1 Operating System Requirements... 1 1.2 Browser Requirements Administrative Centre... 1 2. Obtaining your login Credentials & Logging

More information

NetWrix Password Manager. Quick Start Guide

NetWrix Password Manager. Quick Start Guide NetWrix Password Manager Quick Start Guide Contents Overview... 3 Setup... 3 Deploying the Core Components... 3 System Requirements... 3 Installation... 4 Windows Server 2008 Notes... 4 Upgrade Path...

More information

MicrosoftDynam ics GP 2015. TenantServices Installation and Adm inistration Guide

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.

More information

User Guide. Version R91. English

User Guide. Version R91. English AuthAnvil User Guide Version R91 English August 25, 2015 Agreement The purchase and use of all Software and Services is subject to the Agreement as defined in Kaseya s Click-Accept EULATOS as updated from

More information

MICROSOFT 70-346 EXAM QUESTIONS & ANSWERS

MICROSOFT 70-346 EXAM QUESTIONS & ANSWERS MICROSOFT 70-346 EXAM QUESTIONS & ANSWERS Number: 70-346 Passing Score: 800 Time Limit: 120 min File Version: 58.5 http://www.gratisexam.com/ MICROSOFT 70-346 EXAM QUESTIONS & ANSWERS Exam Name:Managing

More information

Using Microsoft Visual Studio 2010. API Reference

Using Microsoft Visual Studio 2010. API Reference 2010 API Reference Published: 2014-02-19 SWD-20140219103929387 Contents 1... 4 Key features of the Visual Studio plug-in... 4 Get started...5 Request a vendor account... 5 Get code signing and debug token

More information

SharePoint Server 2016. Quick Start Guide for Single Server Farms

SharePoint Server 2016. Quick Start Guide for Single Server Farms 1 SharePoint Server 2016 Quick Start Guide for Single Server Farms 2016 Microsoft Corporation. All rights reserved. This document is provided as-is. Information and views expressed in this document, including

More information

Office 365 deploym. ployment checklists. Chapter 27

Office 365 deploym. ployment checklists. Chapter 27 Chapter 27 Office 365 deploym ployment checklists This document provides some checklists to help you make sure that you install and configure your Office 365 deployment correctly and with a minimum of

More information

Hybrid Architecture. Office 365. On-premises Exchange org (Exchange 2007+) Provisioned via DirSync. Secure Mail flow

Hybrid Architecture. Office 365. On-premises Exchange org (Exchange 2007+) Provisioned via DirSync. Secure Mail flow Hybrid Deployment Hybrid Architecture Provisioned via DirSync Exchange 2010 (HUB/CAS) Exchange 2013 CAS & MBX Secure Mail flow Exchange Federation (Free/Busy, Mail Tips, Archive, etc.) Mailbox data via

More information

Administration Guide for the System Center Cloud Services Process Pack

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

More information

HOTPin Integration Guide: Salesforce SSO with Active Directory Federated Services

HOTPin Integration Guide: Salesforce SSO with Active Directory Federated Services 1 HOTPin Integration Guide: Salesforce SSO with Active Directory Federated Services Disclaimer Disclaimer of Warranties and Limitation of Liabilities All information contained in this document is provided

More information

Dell One Identity Cloud Access Manager 8.0.1 - How to Configure Microsoft Office 365

Dell One Identity Cloud Access Manager 8.0.1 - How to Configure Microsoft Office 365 Dell One Identity Cloud Access Manager 8.0.1 - How to Configure Microsoft Office 365 May 2015 This guide describes how to configure Microsoft Office 365 for use with Dell One Identity Cloud Access Manager

More information

CA Nimsoft Service Desk

CA Nimsoft Service Desk CA Nimsoft Service Desk Single Sign-On Configuration Guide 6.2.6 This Documentation, which includes embedded help systems and electronically distributed materials, (hereinafter referred to as the Documentation

More information

OneLogin Integration User Guide

OneLogin Integration User Guide OneLogin Integration User Guide Table of Contents OneLogin Account Setup... 2 Create Account with OneLogin... 2 Setup Application with OneLogin... 2 Setup Required in OneLogin: SSO and AD Connector...

More information

Navigate your checklist... 3. Before you begin with Exchange 2007... 4. Sign up for Office 365... 11

Navigate your checklist... 3. Before you begin with Exchange 2007... 4. Sign up for Office 365... 11 Contents Navigate your checklist... 3 Before you begin with Exchange 2007... 4 Sign up for Office 365... 11 Verify coexistence prerequisites when deploying AD FS with Exchange 2007... 11 Collect needed

More information

10174 - SharePoint 2010

10174 - SharePoint 2010 Configuring and Managing Microsoft SharePoint 2010 Introduction The course teaches students how to install, configure and administer SharePoint, and also manage and monitor sites and users by using SharePoint

More information

Office 365 deployment checklists

Office 365 deployment checklists Chapter 128 Office 365 deployment checklists This document provides some checklists to help you make sure that you install and configure your Office 365 deployment correctly and with a minimum of issues.

More information

Metalogix Replicator. Quick Start Guide. Publication Date: May 14, 2015

Metalogix Replicator. Quick Start Guide. Publication Date: May 14, 2015 Metalogix Replicator Quick Start Guide Publication Date: May 14, 2015 Copyright Metalogix International GmbH, 2002-2015. All Rights Reserved. This software is protected by copyright law and international

More information

BlackBerry Enterprise Service 10. Universal Device Service Version: 10.2. Administration Guide

BlackBerry Enterprise Service 10. Universal Device Service Version: 10.2. Administration Guide BlackBerry Enterprise Service 10 Universal Service Version: 10.2 Administration Guide Published: 2015-02-24 SWD-20150223125016631 Contents 1 Introduction...9 About this guide...10 What is BlackBerry

More information

Test Lab Guide: Creating a Windows Azure AD and Windows Server AD Environment using Azure AD Sync

Test Lab Guide: Creating a Windows Azure AD and Windows Server AD Environment using Azure AD Sync Test Lab Guide: Creating a Windows Azure AD and Windows Server AD Environment using Azure AD Sync Microsoft Corporation Published: December 2014 Author: Mark Grimes Acknowledgements Special thanks to the

More information

MacroLan Azure cloud tutorial.

MacroLan Azure cloud tutorial. MacroLan Azure cloud tutorial. Create a Virtual Machine running Windows This tutorial shows you how easy it is to create an Azure virtual machine (VM) running Windows, using as an example a Windows Server

More information

Using RD Gateway with Azure Multifactor Authentication

Using RD Gateway with Azure Multifactor Authentication Using RD Gateway with Azure Multifactor Authentication We have a client that uses RD Gateway to allow users to access their RDS deployment from outside their corporate network. They have about 1000+ users.

More information

Microsoft SharePoint Architectural Models

Microsoft SharePoint Architectural Models Microsoft SharePoint This topic is 1 of 5 in a series Introduction to Fundamental SharePoint This series is intended to raise awareness of the different fundamental architectural models through which SharePoint

More information

Active Directory Management. Agent Deployment Guide

Active Directory Management. Agent Deployment Guide Active Directory Management Agent Deployment Guide Document Revision Date: June 12, 2014 Active Directory Management Deployment Guide i Contents System Requirements...1 Hardware Requirements...1 Installation...3

More information

SAM Context-Based Authentication Using Juniper SA Integration Guide

SAM Context-Based Authentication Using Juniper SA Integration Guide SAM Context-Based Authentication Using Juniper SA Integration Guide Revision A Copyright 2012 SafeNet, Inc. All rights reserved. All attempts have been made to make the information in this document complete

More information

Installing and Configuring vcloud Connector

Installing and Configuring vcloud Connector Installing and Configuring vcloud Connector vcloud Connector 2.0.0 This document supports the version of each product listed and supports all subsequent versions until the document is replaced by a new

More information

Contents Release Notes... ... 3 System Requirements... ... 4 Administering Jive for Office... ... 5

Contents Release Notes... ... 3 System Requirements... ... 4 Administering Jive for Office... ... 5 Jive for Office TOC 2 Contents Release Notes...3 System Requirements... 4 Administering Jive for Office... 5 Getting Set Up...5 Installing the Extended API JAR File... 5 Updating Client Binaries...5 Client

More information

T his feature is add-on service available to Enterprise accounts.

T his feature is add-on service available to Enterprise accounts. SAML Single Sign-On T his feature is add-on service available to Enterprise accounts. Are you already using an Identity Provider (IdP) to manage logins and access to the various systems your users need

More information

Dell SupportAssist Version 2.0 for Dell OpenManage Essentials Quick Start Guide

Dell SupportAssist Version 2.0 for Dell OpenManage Essentials Quick Start Guide Dell SupportAssist Version 2.0 for Dell OpenManage Essentials Quick Start Guide Notes, Cautions, and Warnings NOTE: A NOTE indicates important information that helps you make better use of your computer.

More information

DEPLOYMENT GUIDE Version 2.1. Deploying F5 with Microsoft SharePoint 2010

DEPLOYMENT GUIDE Version 2.1. Deploying F5 with Microsoft SharePoint 2010 DEPLOYMENT GUIDE Version 2.1 Deploying F5 with Microsoft SharePoint 2010 Table of Contents Table of Contents Introducing the F5 Deployment Guide for Microsoft SharePoint 2010 Prerequisites and configuration

More information

Microsoft Office 365 Using SAML Integration Guide

Microsoft Office 365 Using SAML Integration Guide Microsoft Office 365 Using SAML Integration Guide Revision A Copyright 2013 SafeNet, Inc. All rights reserved. All attempts have been made to make the information in this document complete and accurate.

More information

Customer admin guide. UC Management Centre

Customer admin guide. UC Management Centre Customer admin guide UC Management Centre June 2013 Contents 1. Introduction 1.1 Logging into the UC Management Centre 1.2 Language Options 1.3 Navigating Around the UC Management Centre 4 4 5 5 2. Customers

More information

SPHOL325: SharePoint Server 2013 Search Connectors and Using BCS

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

More information

Colligo Engage Windows App 7.0. Administrator s Guide

Colligo Engage Windows App 7.0. Administrator s Guide Colligo Engage Windows App 7.0 Administrator s Guide Contents Introduction... 3 Target Audience... 3 Overview... 3 Localization... 3 SharePoint Security & Privileges... 3 System Requirements... 4 Software

More information

Kentico CMS 7.0 Windows Azure Deployment Guide

Kentico CMS 7.0 Windows Azure Deployment Guide Kentico CMS 7.0 Windows Azure Deployment Guide 2 Kentico CMS 7.0 Windows Azure Deployment Guide Table of Contents Introduction 4... 4 About this guide Installation and deployment 6... 6 Overview... 6 Architecture...

More information

SAP NetWeaver AS Java

SAP NetWeaver AS Java Chapter 75 Configuring SAP NetWeaver AS Java SAP NetWeaver Application Server ("AS") Java (Stack) is one of the two installation options of SAP NetWeaver AS. The other option is the ABAP Stack, which is

More information

File Share Navigator Online 1

File Share Navigator Online 1 File Share Navigator Online 1 User Guide Service Pack 3 Issued November 2015 Table of Contents What s New in this Guide... 4 About File Share Navigator Online... 5 Components of File Share Navigator Online...

More information

VMware Identity Manager Administration

VMware Identity Manager Administration VMware Identity Manager Administration VMware Identity Manager 2.6 This document supports the version of each product listed and supports all subsequent versions until the document is replaced by a new

More information

Hands-On Lab: WSUS. Lab Manual Expediting WSUS Service for XP Embedded OS

Hands-On Lab: WSUS. Lab Manual Expediting WSUS Service for XP Embedded OS Lab Manual Expediting WSUS Service for XP Embedded OS Summary In this lab, you will learn how to deploy the security update to your XP Pro or XP embedded images. You will also learn how to prepare the

More information

360 Online authentication

360 Online authentication 360 Online authentication Version October 2015 This document will help you set up a trust for authentication of 360 Online users between Azure Access Control Service and either Office 365 or Active Directory

More information

System Administration Training Guide. S100 Installation and Site Management

System Administration Training Guide. S100 Installation and Site Management System Administration Training Guide S100 Installation and Site Management Table of contents System Requirements for Acumatica ERP 4.2... 5 Learning Objects:... 5 Web Browser... 5 Server Software... 5

More information

SecureAware on IIS8 on Windows Server 2008/- 12 R2-64bit

SecureAware on IIS8 on Windows Server 2008/- 12 R2-64bit SecureAware on IIS8 on Windows Server 2008/- 12 R2-64bit Note: SecureAware version 3.7 and above contains all files and setup configuration needed to use Microsoft IIS as a front end web server. Installing

More information

HOTPin Integration Guide: Microsoft Office 365 with Active Directory Federated Services

HOTPin Integration Guide: Microsoft Office 365 with Active Directory Federated Services HOTPin Integration Guide: Microsoft Office 365 with Active Directory Federated Services Disclaimer Disclaimer of Warranties and Limitation of Liabilities All information contained in this document is provided

More information

LAB 1: Installing Active Directory Federation Services

LAB 1: Installing Active Directory Federation Services LAB 1: Installing Active Directory Federation Services Contents Lab: Installing and Configuring Active Directory Federation Services... 2 Exercise 1: installing and configuring Active Directory Federation

More information

Setup Guide for AD FS 3.0 on the Apprenda Platform

Setup Guide for AD FS 3.0 on the Apprenda Platform Setup Guide for AD FS 3.0 on the Apprenda Platform Last Updated for Apprenda 6.0.3 The Apprenda Platform leverages Active Directory Federation Services (AD FS) to support identity federation. AD FS and

More information

Licensing Guide BES12. Version 12.1

Licensing Guide BES12. Version 12.1 Licensing Guide BES12 Version 12.1 Published: 2015-04-02 SWD-20150402115554403 Contents Introduction... 5 About this guide...5 What is BES12?...5 Key features of BES12... 5 About licensing...7 Steps to

More information

BlackBerry Enterprise Service 10. Version: 10.2. Configuration Guide

BlackBerry Enterprise Service 10. Version: 10.2. Configuration Guide BlackBerry Enterprise Service 10 Version: 10.2 Configuration Guide Published: 2015-02-27 SWD-20150227164548686 Contents 1 Introduction...7 About this guide...8 What is BlackBerry Enterprise Service 10?...9

More information

Introduction to Unified Device Management with Intune and System Center Configuration Manager

Introduction to Unified Device Management with Intune and System Center Configuration Manager Introduction to Unified Device Management with Intune and System Center Configuration Manager Most IT pros and the IT organizations they work for have the challenge of supporting a wide diversity of apps,

More information

INSTALL AND CONFIGURATION GUIDE. Atlas 5.1 for Microsoft Dynamics AX

INSTALL AND CONFIGURATION GUIDE. Atlas 5.1 for Microsoft Dynamics AX INSTALL AND CONFIGURATION GUIDE Atlas 5.1 for Microsoft Dynamics AX COPYRIGHT NOTICE Copyright 2012, Globe Software Pty Ltd, All rights reserved. Trademarks Dynamics AX, IntelliMorph, and X++ have been

More information

126 SW 148 th Street Suite C-100, #105 Seattle, WA 98166 Tel: 877-795-9372 Fax: 866-417-6192 www.seattlepro.com

126 SW 148 th Street Suite C-100, #105 Seattle, WA 98166 Tel: 877-795-9372 Fax: 866-417-6192 www.seattlepro.com SharePoint 2010 Bootcamp This five-day course is designed to equip Systems Administrators, Integrators and Developers with a strong foundation for implementing solutions on Microsoft SharePoint 2010. Attendees

More information

Configuration Information

Configuration Information This chapter describes some basic Email Security Gateway configuration settings, some of which can be set in the first-time Configuration Wizard. Other topics covered include Email Security interface navigation,

More information

An overview of configuring WebEx for single sign-on. To configure the WebEx application for single-sign on from the cloud service (an overview)

An overview of configuring WebEx for single sign-on. To configure the WebEx application for single-sign on from the cloud service (an overview) Chapter 190 WebEx This chapter includes the following sections: "An overview of configuring WebEx for single sign-on" on page 190-1600 "Configuring WebEx for SSO" on page 190-1601 "Configuring WebEx in

More information

OMU350 Operations Manager 9.x on UNIX/Linux Advanced Administration

OMU350 Operations Manager 9.x on UNIX/Linux Advanced Administration OMU350 Operations Manager 9.x on UNIX/Linux Advanced Administration Instructor-Led Training For versions 9.0, 9.01, & 9.10 OVERVIEW This 5-day instructor-led course focuses on advanced administration topics

More information

Introduction to Google Apps for Business Integration

Introduction to Google Apps for Business Integration Introduction to Google Apps for Business Integration Overview Providing employees with mobile email access can introduce a number of security concerns not addressed by most standard email security infrastructures.

More information

Kaseya 2. Installation guide. Version 7.0. English

Kaseya 2. Installation guide. Version 7.0. English Kaseya 2 Kaseya Server Setup Installation guide Version 7.0 English September 4, 2014 Agreement The purchase and use of all Software and Services is subject to the Agreement as defined in Kaseya s Click-Accept

More information

Cloud Services ADM. Agent Deployment Guide

Cloud Services ADM. Agent Deployment Guide Cloud Services ADM Agent Deployment Guide 10/15/2014 CONTENTS System Requirements... 1 Hardware Requirements... 1 Installation... 2 SQL Connection... 4 AD Mgmt Agent... 5 MMC... 7 Service... 8 License

More information

Integration Guide. SafeNet Authentication Service. Using SAS with Web Application Proxy. Technical Manual Template

Integration Guide. SafeNet Authentication Service. Using SAS with Web Application Proxy. Technical Manual Template SafeNet Authentication Service Integration Guide Technical Manual Template Release 1.0, PN: 000-000000-000, Rev. A, March 2013, Copyright 2013 SafeNet, Inc. All rights reserved. 1 Document Information

More information

DocAve Online 3. User Guide. Service Pack 6 Cumulative Update 1

DocAve Online 3. User Guide. Service Pack 6 Cumulative Update 1 DocAve Online 3 User Guide Service Pack 6 Cumulative Update 1 Revision B Issued November 2014 Table of Contents What s New in the Guide... 5 About... 6 Submitting Documentation Feedback to AvePoint...

More information

Administration Guide. BlackBerry Enterprise Service 12. Version 12.0

Administration Guide. BlackBerry Enterprise Service 12. Version 12.0 Administration Guide BlackBerry Enterprise Service 12 Version 12.0 Published: 2015-01-16 SWD-20150116150104141 Contents Introduction... 9 About this guide...10 What is BES12?...11 Key features of BES12...

More information

Installation Guide for Pulse on Windows Server 2008R2

Installation Guide for Pulse on Windows Server 2008R2 MadCap Software Installation Guide for Pulse on Windows Server 2008R2 Pulse Copyright 2014 MadCap Software. All rights reserved. Information in this document is subject to change without notice. The software

More information

BlackBerry Enterprise Service 10. Secure Work Space for ios and Android Version: 10.1.1. Security Note

BlackBerry Enterprise Service 10. Secure Work Space for ios and Android Version: 10.1.1. Security Note BlackBerry Enterprise Service 10 Secure Work Space for ios and Android Version: 10.1.1 Security Note Published: 2013-06-21 SWD-20130621110651069 Contents 1 About this guide...4 2 What is BlackBerry Enterprise

More information

ITMC 2079 MCTS Configuring and Administering Microsoft SharePoint 2010

ITMC 2079 MCTS Configuring and Administering Microsoft SharePoint 2010 ITMC 2079 MCTS Configuring and Administering Microsoft SharePoint 2010 Length: 48 Hours Delivery Method: Instructor-led (classroom); MOC 10174 Course Description The course teaches students how to install,

More information

NovaBACKUP xsp Version 12.2 Upgrade Guide

NovaBACKUP xsp Version 12.2 Upgrade Guide NovaBACKUP xsp Version 12.2 Upgrade Guide NovaStor / August 2011 Rev 20110815 2011 NovaStor, all rights reserved. All trademarks are the property of their respective owners. Features and specifications

More information

LAB 2: Identity Management

LAB 2: Identity Management LAB 2: Identity Management Contents Lab 2: Identity Management... 2 Exercise 1: install and configure prerequisites for configuring AD FS... 3 Tasks... 3 Exercise 2: adding and verifying a standard domain

More information

Introduction to Directory Services

Introduction to Directory Services Introduction to Directory Services Overview This document explains how AirWatch integrates with your organization's existing directory service such as Active Directory, Lotus Domino and Novell e-directory

More information

Migrating Exchange Server to Office 365

Migrating Exchange Server to Office 365 Migrating Exchange Server to Office 365 By: Brien M. Posey CONTENTS Domain Verification... 3 IMAP Migration... 4 Cut Over and Staged Migration Prep Work... 5 Cut Over Migrations... 6 Staged Migration...

More information