API Installation Procedures

Section 0 - Install Genesis R&D

NOTE: Verify if Genesis has already been installed. If so, verify that the installation is NOT using LocalDB. You can determine what type of database connection any given installation of Genesis is using by launching Genesis and clicking the “About” button from the “Home” tab in the ribbon. You will see a dialog like this (but with a populated Customer number and Serial code):

The API is incompatible with the standalone (localdb)\v11.0 instance.

If the  “You are connected to server…” line shows “(localdb)\v11.0”

Please refer to the following to migrate the database to a shareable Full or Express SQL instance:
https://genesisrdfoods.zendesk.com/hc/en-us/articles/4415777273997-Move-your-database-and-program-to-a-new-computer-or-server-

If Genesis is configured to use a LocalDB connection, the process for switching from one install-type to another may depend on how many users are configured for the current install and other factors. A call to our Support staff would be the best approach to take for switching the Genesis installation over to a SQL Server instance.

If Genesis has not been installed, refer to the Custom install instructions below, to install with a shareable SQL Express instance:

If Genesis has been installed and is using a SQL Server instance of 2012 or higher, proceed to Section I.

SQL 2008 r2:

If you’re connecting to a SQL Server 2008 r2 instance, you’ll need to make sure you have the SQL Server 2012 Native Client installed. You can do this by going to “Add and Remove Programs” and searching for “native client.” If you see “Microsoft SQL Server 2012 Native Client” (or later) in your list of installed programs, you have the correct native client present. If not, you’ll need to download and install it. The 2012 Native Client can be obtained from here.

Once you have the 2012 Native Client installed, proceed to Section I.

  1. Launch the Genesis R&D installer.
  2. On the "Select Install Type" page, select "Custom Installation":
  3. Click "Next".
  4. On the "Select the features you would like to install" page, uncheck "SQL Server LocalDB 2012".
  5. If you are connecting to an existing SQL Server instance, click "Next". If you need to install a SQL Server instance locally to connect to, check "SQL Server Express 2014":

  6. Click "Next".
  7. Complete the installation.

Section I - Enable IIS on Windows

  1. Click the Start button.
  2. Type "Windows features".
  3. Select "Turn Windows features on or off" from the search results.
  4. Expand the "Internet Information Services Node".
  5. Ensure that the features selected match the screen shot:
  6. Click "OK".

Again, wait for the newly selected features to be enabled.  Assuming success, OK the confirmation.

Section II - Enable WCF on Windows

  1. Return to the "Turn Windows features on or off" dialog.
  2. Expand the ".NET Framework <version> Advanced Services" node.
    NOTE: Typically, this is .NET Framework 4.7.  If you have a more recent version of .NET installed, the ".NET Framework <version>..." will reflect that version number.
  3. Expand the "WCF Services" node.
  4. Select "HTTP Activation":
  5. Click "OK".

Again, wait for the newly selected features to be enabled.  Assuming success, close the confirmation.

Section III - Enable SQL Authentication

  1. Launch SQL Server Management Studio (SSMS).
    NOTE: If you installed Genesis per Section 0 using a local instance of SQL Server Express 2014, SSMS will not be installed. You will need to download and install SSMS from here.
  2. Connect to the database server that hosts your GENDATA database.
  3. Right-click on the server name:
  4. Select "Properties".
  5. The "Server Properties" dialog will appear.
  6. Select the "Security" node:
  7. Select the "SQL Server and Windows Authentication mode" radio button.
  8. Click "OK".
  9. Right-click on the server name again and select "Restart":
  10. Answer "Yes" when asked to confirm that you want to restart the server.

Section IV - Create an API User Login in the GENDATA  Database

  1. Launch SSMS.
  2. Connect to the database server that hosts your GENDATA database.
  3. Expand the "Security" node.
  4. Right-click the "Logins" node:
  5. Select "New Login".
  6. The "Login - New" dialog will appear:
  7. Enter "APIUser" or some other login name for the "Login name" field.
  8. Select the "SQL Server Authentication" radio button.
  9. Create a password for the new login and make a note of it for later reference.
  10. Deselect "Enforce password policy" checkbox.
  11. Select the "User Mapping" node:
  12. Select the "gendata" database from the "User mapped to this login" list.
  13. Select "FPRole" from the "Database role membership for: gendata" list.
  14. Click "OK".

Section V - Install the API

  1. Install the API via the installer by right-clicking on the installer file and selecting "Run as administrator".  Even if you are logged in as an admin, you will need to right-click and run as adminstrator.
  2. On the "System Validation" page, it will verify that all prerequisites have been completed. It will typically look as follows:
  3. If the "IIS 7.0or above and IIS roles" has a red "X", click the "Activate required Features and Roles" button that will appear.
  4. Click "Next".
  5. On the "SQL Server Connection" page, select the server you connected to with SSMS in the above steps in the "Server Name" drop down. If it's not in the list, manually enter it.
  6. Select the "Use SQL Authentication" radio button.
  7. Enter "APIUser" or the name you created in Section IV - Step 7 in the "User name" field.
  8. Enter the password you created in Section IV - Step 9 in the "Password" field.
  9. Select "gendata" from the "Select or enter a database" drop down.
  10. Click the "Test Connection" button. Assuming it succeeds, click the install button and allow the installation to complete.

Section VI - Final API Configuration

  1. Click the Start button.
  2. Type "IIS".
  3. Select "Internet Information Services (IIS) Manager" from the search results.
  4. The "Internet Information Services (IIS) Manager" window will appear.
  5. Expand the "Sites" node.
  6. Select the "GenesisAPI" node.
  7. Click the "Bindings..." link at the far right.
  8. The "Site Bindings" dialog will appear:
  9. Select the "http" row in the list.
  10. Click the "Edit..." button:
  11. The "Edit Site Binding" dialog will appear.
  12. Change the "Port" value to any available port (e.g. 8080), ensuring it does not conflict with any other sites in IIS, and make a note of the port number:
  13. Click "OK".
  14. Click "Close" from the "Site Bindings" dialog.
  15. Click the "Start" link, or "Restart" link (if already started/running) under the "Manage Website" section at the far right of the "Internet Information Services (IIS) Manager" window.
  16. Close the "Internet Information Services (IIS) Manager" window.

Section VII - Verify API Installation

  1. Open a browser and navigate to http://localhost:<portnumber>/ApiInfo.svc, where <portnumber> is the number you changed the GenesisApi site to in Section VI - Step 11. You should receive the "ApiInfo.svc" page:
  2. Follow the steps to test with Postman.
  3. If you have gotten the ApiInfo.svc page (Section VII: Step 1) AND a valid response via Postman (Section VII: Step 10) then the API has been successfully configured.

On this page: