License problem

Discussion of open issues, suggestions and bugs regarding ADO.NET provider for Oracle
Post Reply
vikstken
Posts: 1
Joined: Thu 23 Jun 2016 14:05

License problem

Post by vikstken » Mon 11 Jul 2016 08:44

Hi
I have a web based solution using dotConnect for Oracle. This has been working fine but a few days ago I upgraded the solution from Visual Studio 2010 and .Net Framework 4.0 to Visual Studio 2015 and .Net Framework 4.5.1 and now I have problems with the license.
It suddenly says:
"Assembly (PersonaHRe.Library) is not licensed to use dotConnect for Oracle. Please correct license information."
The Devart.Data.Oracle.dll version I use is 7.7.242.0

Pinturiccio
Devart Team
Posts: 2420
Joined: Wed 02 Nov 2011 09:44

Re: License problem

Post by Pinturiccio » Wed 13 Jul 2016 15:06

Visual Studio 2015 passes parameters to lc.exe differently than older Visual Studio versions. We have supported Visual Studio 2015 Release Candidate in dotConnect for Oracle 8.4.422. Starting from this version, we have taken these differences into account and correctly process parameters, passed by Visual Studio 2015. For more information, please refer to https://www.devart.com/dotconnect/oracl ... story.html

With Visual Studio 2015, you need to use dotConnect for Oracle 8.4.422 or higher. However, you can use Visual Studio 2015 even with dotConnect for Oracle of a version older than 8.4.422. In this case you have to compile license resources manually.

The license resource can be compiled in the following way:
1) Create a text file named licenses.licx and enter the following text inside the licenses.licx file:
Devart.Data.Oracle.OracleConnection, Devart.Data.Oracle

2) Generate the license resource file using the following command line:
"%Compiler Path%\lc.exe /target:MyApplication.exe /complist:licenses.licx /i:"%Assembly Path%\Devart.Data.Oracle.dll"
Where:

- %Compiler Path% is the path to the appropriate lc.exe file (for example, C:\Program Files\Microsoft.NET\SDK\v2.0\Bin);
- MyApplication.exe is the name of your target executable file. If you want to compile a license resource for a class library project, specify MyApplication.dll instead of MyApplication.exe, where MyApplication.dll is the name of the class library.
- licenses.licx is your licenses.licx file. Place licenses.config file in the same folder as the licenses.licx file for a class library project;
- %Assembly Path% is the Devart.Data.Oracle.dll assembly location.

3) The License compiler will generate the 'MyApplication.exe.licenses' ('MyApplication.dll.licenses' for class library project) resource file;

4) Add this file to your project as an embedded resource.

For more information, please refer to https://www.devart.com/dotconnect/oracl ... ml#compile

Post Reply