Send comments on this topic. | Back to Introduction - All Topics | Help Version 16.5.9.25
How to Host LEADTOOLS Services on IIS 5 and 6

Host LEADTOOLS services on IIS 5 and 6

The LEADTOOLS installation program will automatically configure your version of IIS to host the LEADTOOLS WCF Services. If you wish to host the LEADTOOLS WCF Services on another computer then you should follow these steps. Also, for more information about hosting WCF services, refer to: MSDN Hosting Services

When using LEADTOOLS WCF services, it is recommended to put the LEADTOOLS assemblies in the Global Assembly Cache for the following reasons:

  • Loading assemblies from GAC mean less overhead and security since your application will always load the correct version of the .NET library.
  • Performance gain - since the assemblies are already in the GAC, the verification and checking for integrity and code access of the LEADTOOLS assemblies will be skipped. This is especially true when your application is hosted in Windows Internet Information Services (IIS).

For more information, refer to the Global Assembly Cache topic in MSDN online here.

  1. Make sure IIS is installed and running on the machine. [ See details:MSDN Hosting Services , WebWizGuide - Installing IIS on Windows XP Pro ]

    Tip: In Windows XP OS for example check to see if the IIS is providing services. Go to Internet Explorer and enter the local URL http://localhost/ to load a confirmation default page.

  2. Create a virtual directory and map the Services directory. Here are the steps:
    • Create a Host directory: C:\Program Files (x86)\LEAD Technologies\LEADTOOLS 16.5\LEADTOOLS_WCF_HOST
    • Create a Bin directory: C:\Program Files (x86)\LEAD Technologies\LEADTOOLS 16.5\LEADTOOLS_WCF_HOST\Bin
    • Copy the Leadtools.Services.* from C:\Program Files (x86)\LEAD Technologies\LEADTOOLS 16.5\Binto C:\Program Files (x86)\LEAD Technologies\LEADTOOLS 16.5\LEADTOOLS_WCF_HOST\Bin
    • Files to copy include:
      1. Leadtools.Services.*.config files
      2. Redistributable files needed by the hosted service. For example: If you are hosting our IOcrService you need all redistributables for our OCR toolkit. Refer to Redistributables for more information on files installed by the LEADTOOLS setup.
  3. Create a web.config at C:\Program Files (x86)\LEAD Technologies\LEADTOOLS 16.5\LEADTOOLS_WCF_HOST[ See details:MSDN - Configuring Services Using Configuration Files ]
  4. Create a .svc file in C:\Program Files (x86)\LEAD Technologies\LEADTOOLS 16.5\LEADTOOLS_WCF_HOST[ See details:MSDN - Create an .svc File for the WCF Service ]
  5. For example if you want to host the IOcrService, create OcrService.svc file and add the following line to it (Add to this line the percent sign after < and before >):

    				< @ServiceHost Language=C# Debug="true" Service="Leadtools.Services.Forms.ServiceImplementations.OcrService" >

  6. Go to Start > Control Panel > Administrative Tools > Internet Information Services (IIS) Manager [See details:MSDN - How to: Host a WCF Service in IIS ]
  7. Expand the following node: Internet Information Services > local computer > Web Sites > Default Web Site.
  8. Right click Default Web Site and select New > Virtual Directory to create a new virtual directory. Enter the following parameters:
    Alias:LEADTOOLSWCFServices
    Directory:C:\Program Files (x86)\LEAD Technologies\LEADTOOLS 16.5\LEADTOOLS_WCF_HOST
  9. Right-click on the LEADTOOLSWCFServices node you just created in the IIS manager. Go to Properties to view the resulting settings. The dialog will look like this:

Special notes for OCR service

Hosting our IOCRService requires the following:

  1. Engine type setting: Set the value for the EngineType in Leadtools.Services.Forms.ServiceImplementations.dll.config
  2. Modify the security for the ltthunkserver.exe:
    • Go to Start > Run, type DCOMCNFG, and then click OK.
    • Expand Component Services > Computers > My Computer > DCOM Config
    • Scroll down and find ltthunkserver.
    • Right-Click > Properties and select the Security tab.
    • In Launch and Activation Permissions select customize radio button.
    • Click Edit and Add the Service account with launch and activate permissions.
    • If the engine type is professional and you are hosting IOcrService on IIS 5, you need to give the ASPNET user administrative privileges.

IIS Hosting Services Resources

MSDN - Building Clients

MSDN - Data Contracts

MSDN - Service Contracts

MSDN - Configuring Services

MSDN - Hosting Services

MSDN - Configuring Services Using Configuration Files

MSDN - Create an .svc File for the WCF Service

MSDN - How to: Host a WCF Service in IIS

IIS .Net - Installing IIS 7.0

WebWizGuide - Installing IIS on Windows XP Pro