Posted 3 February 2025, 12:15 pm EST
Hi There,
I’m using Active Reports 11 with .NET Framework and I started a pipeline process on GitHub Actions with the following commands to activate, show status, and deactivate the Active Reports:
# Step 5: Activate GrapeCity License
- name: Activate GrapeCity License
run: |
C:\ProgramData\GrapeCity\gclm\gclm.exe "GrapeCity.ActiveReports.Viewer.Win.v11" -a "MY_PRODUCT_KEY"
# Step 6: Check GrapeCity License Status
- name: Check GrapeCity License Status
run: |
C:\ProgramData\GrapeCity\gclm\gclm.exe "GrapeCity.ActiveReports.Viewer.Win.v11" -s
# Step 7: Build the solution
- name: Build the solution
run: |
msbuild "$env:Solution_Name" /t:Build /p:Configuration=Release /p:Platform=x64 /clp:ErrorsOnly
continue-on-error: false # This ensures the build stops if it fails
# Step 8: Deactivate GrapeCity License (in case of success or failure)
- name: Deactivate GrapeCity License
if: always() # This ensures the license is deactivated even if the build fails or succeeds
run: |
C:\ProgramData\GrapeCity\gclm\gclm.exe "GrapeCity.ActiveReports.Viewer.Win.v11" -d
However, I’m encountering the following errors:
Step 5: error: The [index] is invalid or out of range.
Step 6: error: The [index] is invalid or out of range.
Step 7: System.ComponentModel.LicenseException: License cannot be confirmed. Error code: 01-001
I checked the documentation and found that Active Reports 11 doesn’t support the commands used in modern Active Reports versions.
My Questions:
Did I make any mistakes in my commands?
If not, is there a way to perform this process with Active Reports 11 using GitHub Actions?
If not, what are the alternatives to achieve this operation?
Thanks in advance