Jump to: navigation, search

Difference between revisions of "HowTo:Install UBIK Web Service"


(Testing the new service)
Line 1: Line 1:
This page describes how to set up a {{UBIK}} web service on a [http://www.iis.net/ Microsoft Internet Information Server (IIS)] installed on [http://www.microsoft.com/oem/de/products/servers/ Microsoft Server 2012]. The web service is used to publish data from the {{UBIK}} database to a mobile device (eg mobile phone, tablet).
+
Prior setting up an {{UBIK}} Web Service make sure to have a [http://www.iis.net/ Microsoft Internet Information Server (IIS)] available and [[Installation_of_Microsoft_IIS|configured]] accordingly. Otherwise check the instructions below how to set up an proper IIS.
 +
# Creating a new directory in the ''wwwroot'' directory of the IIS installation (default: c:\inetpub\wwwroot)
 +
# Copying the components of the {{UBIK}} Web Service into the (new) directory
 +
# [[UBIK_Web_Service_Configuration|Configure]] the web service by changing parameters in the ''web.config'' file
 +
# Create a new web applicaton as described [[UBIK_Web_Service#Create_new_Web_Application|here]]
  
 
== Installation of Microsoft IIS ==
 
== Installation of Microsoft IIS ==

Revision as of 09:55, 5 June 2014

Prior setting up an UBIK® Web Service make sure to have a Microsoft Internet Information Server (IIS) available and configured accordingly. Otherwise check the instructions below how to set up an proper IIS.

  1. Creating a new directory in the wwwroot directory of the IIS installation (default: c:\inetpub\wwwroot)
  2. Copying the components of the UBIK® Web Service into the (new) directory
  3. Configure the web service by changing parameters in the web.config file
  4. Create a new web applicaton as described here

Installation of Microsoft IIS

Install server role

Start the server manager to install the Internet Information Services (IIS) on Windows Server 2012 by

  1. Clicking the Windows Start button, point to Administrative Tools and choose Server Manager
  2. Clicking on Roles Summary
  3. Clicking on Add Roles
  4. Use the Add Roles wizard to add the web server role

Required roles and features

The Add Roles wizard installs only the default set of role services, which do not contain all the necessary features required for UBIK® web services. Therefore, additional IIS role services and features, such as Application Development or Health and Diagnostics, needs to be selected in the Select Role Services page of the wizard.

UBIK® web service requires at least the following roles

  • Microsoft .NET Framework 4
  • Microsoft .NET Framework 3.5
  • Webserver Application Development

and features

  • HTTP Actication (WCF Services)

Using a virtual server

A physical server with Microsoft Server 2012 can be used as the host system as well as a virtual server. Use Hyper-V to install and operate serveral virtual servers and proceed with the web server installation similar as for a physical server.

Configuration of the Web Server

The web server can be configured using the Internet Information Services (IIS) Manager console, which gets installed automatically. The console provides a graphical user interface to manage and configure the web server accordingly to the UBIK® web service.

Add Application Pool

An application pool is a group of one or more URLs that are served by a worker process or a set of worker processes. Application pools set boundaries for the applications they contain, which means that any applications that are running outside a given application pool cannot affect the applications in the application pool.

Certificate

The web service communicates with the UBIK® client via an secured connection, which requires a SSL certificate on the server and client side. Use a public key certificate from a certificate authority or a self-signed certificate, both will work for UBIK®. A new self-signed certificate can be created in the Internet Information Server (IIS) Manager, exported using the export function and sent to the development team. As already mentioned, the client has to know this certificate as well, hence it need to be integrated it into the mobile application.

IC Attention.pngUBIK® requires a valid certificate for SSL encryption!

Bindings

Web sites and services have something called Server Bindings which represent the underlying address, port, and potentially a host header that the website is accessed using. The UBIK® client accesses the web service via a secured port (https), where it is necessary to configure the appropriate certificate.

For Android Clients

For Windows 8.1 Clients

Create new Web Application

In the IIS Manager expand the Default Web Site node and navigate through the folder structure to the folder containing the UBIK® web service components.

Optional: Local IIS User

Create and use a local user on the web server if no appropriate domain-user is available.

Additional prerequisites

  • Ensure that the service ports are not blocked by a firewall.
  • Ensure that port forwarding is established if needed (e.g. for Microsoft Azure Virtual Computers or servers behind a gateway)

Testing the Web Service

Test the web service by entering the following URL in a browser: https://<SERVER-IP>/<PATH-TO-UBIK-WEBSERVICE>/UBIKContent.svc/GetVersion

See also