AquaLogic User Interaction Development Guide

     Previous Next  Open TOC in new window   View as PDF - New Window  Get Adobe Reader - New Window
Content starts here

Deploying a .NET Profile Service

To deploy an authentication service to IIS and .NET, follow these steps.


  • The IDK must be installed on the server to which you intend to deploy.
  • You must have implemented IProfileProvider and IUser. For details, see Implementing a Profile Service.

This topic describes how to deploy an Authentication Service implemented in Java to a Java application server.

To deploy an authentication service to IIS and .NET:
  1. Ensure that you have built your project with the ProfileProviderSoapBinding.asmx SOAP endpoint.

    If this service uses SCI, also include SCIProviderBinding.asmx. These files can be found in your IDK installation.

    The IDK installation is typically installed to C:\Program Files\plumtree\ptedk\5.3\devkit\

  2. Update Web.config for profile services.

    Add the following nodes to <appSettings>:


    • <add key="ProfileProviderAssembly" value="assembly name" />

      Where assembly name is the name of the assembly containing your IProfileProvider implementation.

    • <add key="ProfileProviderImpl" value="fully qualified path" />

      Where fully qualified path is the fully qualified path to the class implementing IProfileProvider.

    For example:

    <appSettings>
    
        <add key="ProfileProviderAssembly" value="HelloWorldProf_CS" />
    
        <add key="ProfileProviderImpl" value="HelloWorldProf_CS.Profile" />
    
    ...
  3. Update Web.config for services that use SCI.

    If this service uses SCI, add the following nodes to <appSettings>:


    • <add key="AdminEditorAssembly" value="assembly name" />

      Where assembly name is the name of the assembly containing your IAdminEditor implementation.

    • <add key="AdminEditorImpl" value="fully qualified path" />

      Where fully qualified path is the fully qualified path to the class implementing IAdminEditor.


  Back to Top      Previous Next