New Self Service Portal Deployment Scenarios and Troubleshooting

 

Published: December 11, 2015

Updated: November 28, 2016

Applies To: System Center 2012 R2 Service Manager

The new Self Service Portal is an ASP.NET MVC Razor-based HTML5 Web app. During installation, the Web app is configured to connect directly to the SDK Service running on the Service Manager server browser. A basic, newly-configured Self-Service Portal setup works as shown in the following diagram.

sm-ssp-scenario-01

Data flows between different components in the following sequence.

  1. A users type the URL of the Web app in their browser to access the Self Service Portal.

  2. ASP.NET creates a new instance for the user and tries to content to SDK Service, provided during installation, in the user’s context.

  3. The SDK Service reads and writes data to the Service Manager database.

Important


If you are installing the new Portal on the same server as old SharePoint Portal: This release of the Self-Service Portal is not compatible with—nor is upgrade possible from—the old Self-Service Portal in System Center Service Manager 2010 or in System Center Service Manager 2010 Service Pack 1 (SP1) or Service Manager 2012 R2. You must uninstall older versions of the Self-Service Portal before you deploy the new Self-Service Portal in System Center 2012 – Service Manager.

Preparing for Deployment

Review the following section to help you prepare for deployment.

Note


It is not recommended to install the Self Service Portal on the same server as the primary Management Server.

Hardware Requirements

System Center 2012 R2 servers Processor (min) Processor (rec) RAM (min) RAM (rec) Hard drive space (min) Hard drive space (rec)
Self-Service Portal + Secondary Service Manager (Recommended*) 8-Core 2.66 GHz CPU 8-Core 2.66 GHz CPU 16 GB 32 GB 80 GB 80 GB
Self-Service Portal (Standalone) 4-Core 2.66 GHz CPU 8-Core 2.66 GHz CPU 8 GB 16 GB 80 GB 80 GB

*The requirements above provide access to 500 users in parallel within an acceptable response time, which includes average read operations with less than 3 seconds and write operations with less than 5 seconds, considering an 80:20 read-to-write ratio. For larger deployments, see the Deploying a Web Farm section below.

Software Requirements

Windows Server 2012 R2

Supported Web Browsers

The Self Service portal needs a screen resolution above 1024 X 768. It is supported on the following browsers.

  • Microsoft Edge

  • Microsoft Internet Explorer 10 and 11

  • Mozilla Firefox 42 and later

  • Google Chrome 46 and later

Deploy the New Self-Service Portal

See the Deploy the New Self-Service Portal topic for detailed steps about how to deploy the new Self Service Portal. The following sections summarize key deployment considerations.

Installing the Portal as the Default Website

If you want to install new Self Service Portal on port 80, you must first move the default website in IIS to a different port—for example, port 8080—and then move Self Service Portal to port 80.

Using SSL

SSL is recommend to ensure secure communication, especially when using basic authentication when a username and password are transferred across network in plain text.

Deployment Topologies

You can use the following deployment topologies for the Self Service portal.

In this topology, both the new Self Service Portal and the Management Server role are installed on the same server. This is the recommended topology because it avoids any network delay between the Portal and the SDK Service. Additionally, we recommend that you install the Self Service Portal on a secondary Service Management server to avoid any performance degradation due to workflows running on the primary server.

sm-ssp-scenario-02

In this topology, Windows Authentication (configured by default) is used to provide secure authentication without the overhead of using SSL.

Stand-Alone Self Service Portal Deployment

In this topology, the Self Service portal is installed a server that does not have the Service Manager management server role installed on it.

sm-ssp-scenario-03

In this configuration, the new Self Service Portal and the secondary Service Manager server are installed on different servers and a double-hop is required to create a connection to the SDK Service from the Web app. Windows Authentication can’t be used in this case and the Portal needs to be configured to use Basic Authentication. Because Basic Authentication is inherently insecure, using SSL is recommended to avoid any deployment security issues, like accessing resources beyond firewalls and proxy servers.

Using SSL with network delays between the Portal and the SDK Service, makes this topology slower compared to a single-server deployment. However, this configuration can help deployment scenarios where a double-hop can’t be avoided.

Deploying a Web Farm

One of the key benefits of the new Self Service Portal is that the Web app does not have any local data storage, apart from the it’s caching. It reads and writes directly to the Service Manager database. This makes it easier to deploy multiple instances of the Web server, in parallel. For large deployments, greater than 1,000 users accessing portal in parallel, you can deploy the new Self Service Portal as a Web Farm similar to the following configuration.

sm-ssp-scenario-04

A WebFarm ensures high availability to the Self-Service Portal. Internally, the Web app creates a WCF connection to the SDK Service. Creating the initial connection takes time, so the ideal scenario is that the WebServer that the user connects to initially should service all subsequent requests for faster turnaround. To ensure this configuration in IIS, the ARR setting should be set to Client Affinity enabled.

Troubleshooting Setup Issues

The following troubleshooting sections can help you resolve common issues.

Unable to Install the New Self Service Portal After Uninstalling the Old Portal

You’ll need to clean the registry of the previous installation for the installation to work. Use the following steps.

  1. Open Register Editor to search for the SMPortalWebContentServer key and delete all the instances you find. You can also delete the parent property if only the portal is found.

  2. Navigate to HEKY_LOCAL_MACHINE\SOFTWARE\Microsoft\System Center\2010\Service Manager\Setup and delete the following properties.

    • PortalWebSiteName

    • PortalWebSitePort

    • SMServerName

  3. Manually delete the portal web site installation directory: <InstallationDrive>:\inetpub\wwwroot\SelfServicePortal

IIS is not Installed

The Configuration page shows an IIS role error, even when IIS is enabled on the server.

sm-ssp-scenario-05

This happens when the installer is started without Administrator credentials. As a result, the installer cannot not access IIS configuration settings.

Resolution: Run SetupWizard.exe as an Administrator. You can right-click SetupWizard.exe and then select Run as Administrator.

Troubleshooting the New Self-Service Portal

This section describes how to troubleshoot issues you might encounter after installing the new Self Service Portal.

IIS Settings

The following portal default settings are configured during installation.

App Pool

It is configured to run in .NET CLR version 4 in Classic mode.

sm-ssp-scenario-06

In Advanced settings, the appPool is configured to run with a Service Account that is provided during installation. The same user should have administrator privilege in Service Manager and the local machine that it runs on.

sm-ssp-scenario-07

Website Configuration

Only Impersonation and Windows Authentication should be enabled. Anything else should be disabled.

sm-ssp-scenario-08

For Impersonation, Authenticated user should be selected.

sm-ssp-scenario-09

Windows Authentication Settings:

sm-ssp-scenario-10

The Default Document for the Website should be index.cshtml.

sm-ssp-scenario-11

Basic Authentication

For a double-hop scenario, Windows Authentication won’t work so it must be disabled. Basic Authentication needs to be enabled and configured.

sm-ssp-scenario-12

Enable Tracing

Use the following steps to enable tracing.

Step 1 Add the following settings in the web.config file to enable event log generation.

<system.web>  
   …..  
   <trace enabled="true"/>  
   …  
</system.web>  
  

Step 2 Direct output to a file by adding the following sections in the web.config file.

<system.diagnostics>  
    <trace autoflush="true">  
      <listeners>  
        <add name="myListener" type="System.Diagnostics.TextWriterTraceListener" initializeData="c:\logs\SSPOutput.log" />    
      </listeners>  
    </trace>  
</system.diagnostics>  
  

Because the Web App runs in the logged-on user’s content, ensure you to provide write permissions to all users in the log folder. For example, c:\logs in the example above.

Debugging IIS

IIS supports efficient logging to help you debug IIS issues. For more information, see IIS Logging Overview.

Troubleshooting Deployment Issues

Use the following sections to help you troubleshoot deployment issues that might affect you.

Definition Changes (Announcements/Request Offerings/Service Offerings/Knowledge Articles) are not Shown

The new Self Service Portal uses a caching mechanism to store static data to provide fast response times. The cache timeout is set to 30 minutes by default, which is configurable. For more information, see Deploy the New Self-Service Portal in the Basic Customization section. Any changes to definitions of announcements, request offerings, service offerings, and knowledge articles are not shown until the cache is cleared.

Memory caching used is based on .NET Framework MemoryCache. Cached content remains in memory until the IIS Worker process is terminated. Restarting IIS does not help, because IIS does not remove an old process and then start a new one. Instead, it reuses an existing one. To enforce fresh reading and to remove cache data, identify the IIS Worker process that is associated with the instance and select End task before you restart IIS.

IIS worker process

My Requests and My Activities Sections are Empty

New type projections are included in the Portal.mpb file, which is part of the installer, and needs to be imported into Service Manager. To import, use the following steps.

  1. Import the Portal.mpb file on your management server.

  2. On the Management Server where your Portal connects to, restart the SDK Service.

If the Enhanced Security Configuration setting for Internet Explorer is enabled, the user receives the following pop-up on each page while browsing the portal.

pop-up in Internet Explorer

The pop-up above appears for the App Insights JavaScript SDK, which is integrated in the Self Service Portal to gather telemetry data. You can disable sending telemetry data by changing the value of the EnableTelemetry configuration parameter, which will remove the pop-up. For more information, see Deploy the New Self-Service Portal in the Basic Customization section.

You can access Portal on the computer that hosts IIS, but you can’t access it from a remote computer

This issue may occur if Portal and SDK Service are located on different computers (Stand-Alone Self Service Portal Deployment). This causes a double hop scenario when you try to access the portal from a remote computer. Therefore, the default portal configuration that is described under “Windows Authentication” won’t work. To resolve this issue, use the “Basic Authentication” configuration instead.

You can’t see some Service Offerings or published Service Offerings on Portal

This is because Service Offerings are displayed only if they that meet one of the following conditions:

  • The Service Offering matches the browser language or language selected through Portal Language selector matches.

  • The Service Offering has no language selected.

image2 for 762cd06f-cd61-49ad-a757-8c7d45330125

image1 for 762cd06f-cd61-49ad-a757-8c7d45330125

Here is list of languages with language codes which are supported by Portal:

  • en-US : English

  • fr-FR : français

  • de-DE : Deutsch

  • cs-CZ : čeština

  • da-DK : Dansk

  • el-GR : Ελληνικά

  • es-ES : español

  • fi-FI : suomi

  • hu-HU : magyar

  • it-IT : italiano

  • ja-JP : 日本語

  • ko-KR : 한국어

  • nb-NO : norsk

  • nl-NL : Nederlands

  • pl-PL : polski

  • pt-BR : português (Brasil)

  • pt-PT : português (Portugal)

  • ru-RU : русский

  • sv-SE : svenska

  • tr-TR : Türkçe

  • zh-CHS : 中文(简体)

  • zh-TW : 中文(简体)

  • zh-HK : 中文 (香港特別行政區)

The time display for my items always indicates "AM" (for example, the time display for an 11:00 P.M. event appears as 11:00 A.M.)

To resolve this issue, find the "utc-date" tag and replace DateTime.Parse(xyz).ToString("yyyy,M,d,h,m,s") with DateTime.Parse(xyzToString("yyyy,M,d,H,m,s") in the following files:

  • Views\KnowledgeBase\Article.cshtml

  • Views\MyActivities\ActivityDetails.cshtml

  • Views\MyRequests\RequestDetails.cshtml

  • Views\Shared\_Layout.cshtml