ImageGear for Silverlight
Development License
Send Feedback
ImageGear for Silverlight User Guide > Installing and Distributing ImageGear > Licensing and Distributing ImageGear for Silverlight > Licensing ImageGear for Silverlight Application > Development License

Glossary Item Box

If you bought the Development copy of ImageGear for Silverlight, please do the following:

  1. Select the ImageGear development license option from the initial screen of the License Manager utility.
  2. You will be prompted to log in using e-mail and password you have registered with on the Accusoft Web site.
  3. Upon login, you will be presented with the combo-box containing different access keys for the Accusoft products you have bought. Please select ImageGear access key and click “Get Key”. Your license key will be automatically obtained and stored on your computer.

If you had an Evaluation license previously, it will be overwritten with the new Development license. A Development license enables you to use the ImageGear features you've purchased. You need to run the License Manager utility for each server machine where you need to host the product.

The License Manager utility stores license key in the registry of the host machine. The ImageGear for Silverlight product is designed to communicate to the specified Licensing Web Service to obtain the license key from the host's registry. The product samples are configured to work with the preinstalled Licensing Web Service and set its URL using ImGearLicense.SetService Method API.

When you develop your application using ImageGear, you first have to call the ImGearLicense.SetService Method that is provided by the ImageGear.Core namespace. This method takes one parameter pointing to the Licensing Web Service URL.

The next call should be the SetSolutionName Method of the same ImGearLicense Class. While you are developing, you should specify the value "AccuSoft 5-44-20" on the SetSolutionName Method call.

C# Copy Code
string webServiceUrl = string.Format("http://{0}/{1}",
    App.Current.Host.Source.DnsSafeHost,
    "ImageGearSilverlight20_WebService/SilverlightWebService.svc");
ImGearLicense.SetService(webServiceUrl);
ImGearLicense.SetSolutionName("AccuSoft 5-44-20");

 

VB .NET Copy Code
Dim webServiceUrl As String = String.Format("http://{0}/{1}", _
              App.Current.Host.Source.DnsSafeHost, _
              "ImageGearSilverlight20_WebService/SilverlightWebService.svc")
ImGearLicense.SetService(webServiceUrl)
ImGearLicense.SetSolutionName("AccuSoft 5-44-20")

You will also be provided with a deployment license key along with the unique solution name and solution key to be used for distributing your application. See the section Deployment License for details.

 

©2013. Accusoft Corporation. All Rights Reserved.