With Server deployment (Gold) licensing, regardless of which scenario you choose, you need to provide your ImageGear-based application with a Solution Name and a Solution Key obtained using the Vendor Licensing Utility. You do this using the ImageGear licensing API:
 |
When you are ready to deploy your ImageGear-based application, you need to replace the generic solution name that you have used with the ImageGear evaluation and development licenses with the unique solution name assigned to your application by Accusoft Corporation. You also need to replace the SetSolutionKey values with those provided. The code samples below are for example purposes only. |
C# |
Copy Code |
ImGearLicense.SetSolutionName("YourSolutionName");
ImGearLicense.SetSolutionKey(12345, 12345, 12345, 12345); |
VB .NET |
Copy Code |
ImGearLicense.SetSolutionName("YourSolutionName")
ImGearLicense.SetSolutionKey(12345, 12345, 12345, 12345) |
Once you have added the licensing calls to your application, depending on the licensing scenario you choose, refer to one of the following sections for further information:
See Also