Majorsilence.CrystalCmd.Client
1.0.28
See the version list below for details.
dotnet add package Majorsilence.CrystalCmd.Client --version 1.0.28
NuGet\Install-Package Majorsilence.CrystalCmd.Client -Version 1.0.28
<PackageReference Include="Majorsilence.CrystalCmd.Client" Version="1.0.28" />
paket add Majorsilence.CrystalCmd.Client --version 1.0.28
#r "nuget: Majorsilence.CrystalCmd.Client, 1.0.28"
// Install Majorsilence.CrystalCmd.Client as a Cake Addin #addin nuget:?package=Majorsilence.CrystalCmd.Client&version=1.0.28 // Install Majorsilence.CrystalCmd.Client as a Cake Tool #tool nuget:?package=Majorsilence.CrystalCmd.Client&version=1.0.28
CrystalCMD is a C#/dotnet program that loads JSON files into Crystal Reports to produce PDFs. Initially an experimental proof of concept, it demonstrates generating Crystal Reports on Linux using the .NET framework (wine).
Key Features:
- PDF Generation: Converts JSON (and embedded csv) data into PDF reports with Crystal Reports templates.
- Command Line & Server Modes: Supports both modes; server mode is recommended for better performance.
- Cross-Platform: Works on Linux and can run .NET implementations using Wine.
Client
Nuget package
dotnet add package Majorsilence.CrystalCmd.Client
Curl example
curl -u "username:password" -F "reportdata=@test.json" -F "reporttemplate=@the_dataset_report.rpt" http://127.0.0.1:4321/export --output testout.pdf
C# code example
DataTable dt = new DataTable();
// init reprt data
var reportData = new Majorsilence.CrystalCmd.Common.Data()
{
DataTables = new Dictionary<string, string>(),
MoveObjectPosition = new List<Majorsilence.CrystalCmd.Common.MoveObjects>(),
Parameters = new Dictionary<string, object>(),
SubReportDataTables = new List<Majorsilence.CrystalCmd.Common.SubReports>()
};
// add as many data tables as needed. The client library will do the necessary conversions to json/csv.
reportData.AddData("report name goes here", "table name goes here", dt);
// export to pdf
var crystalReport = System.IO.File.ReadAllBytes("The rpt template file path goes here");
using (var instream = new MemoryStream(crystalReport))
using (var outstream = new MemoryStream())
{
var rpt = new Majorsilence.CrystalCmd.Client.Report(serverUrl, username: "The server username goes here", password: "The server password goes here");
using (var stream = await rpt.GenerateAsync(reportData, instream, _httpClient))
{
stream.CopyTo(outstream);
return outstream.ToArray();
}
}
Postman Collection
Majorsilence.CrystalCMD.postman_collection.json
Server requirements
See Crystal Reports, Developer for Visual Studio Downloads
Download the Crystal Reports .net runtime from: https://origin.softwaredownloads.sap.com/public/site/index.html
- CR for Visual Studio SP35 CR Runtime 64-bit
- CR for Visual Studio SP35 CR Runtime 32-bit
Majorsilence.CrystalCmd.NetFrameworkServer
- net4.8 webapi project
Majorsilence.CrystalCmd.NetframeworkConsoleServer
- an embedio based console app/webserver
- can be run on Linux using wine
Server
docker run -p 44355:44355 -e OVERRIDE_WINEARCH_AS_X64='yes' majorsilence/dotnet_framework_wine_crystalcmd:1.0.25-alpine
Build docker images
See Dockerfile.wine, Dockerfile.crystalcmd, and build.sh.
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 was computed. net5.0-windows was computed. net6.0 is compatible. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 is compatible. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. |
.NET Core | netcoreapp2.0 was computed. netcoreapp2.1 was computed. netcoreapp2.2 was computed. netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
.NET Standard | netstandard2.0 is compatible. netstandard2.1 was computed. |
.NET Framework | net461 was computed. net462 was computed. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 is compatible. net481 was computed. |
MonoAndroid | monoandroid was computed. |
MonoMac | monomac was computed. |
MonoTouch | monotouch was computed. |
Tizen | tizen40 was computed. tizen60 was computed. |
Xamarin.iOS | xamarinios was computed. |
Xamarin.Mac | xamarinmac was computed. |
Xamarin.TVOS | xamarintvos was computed. |
Xamarin.WatchOS | xamarinwatchos was computed. |
-
.NETFramework 4.8
- Majorsilence.CrystalCmd.Common (>= 1.0.28)
- Newtonsoft.Json (>= 13.0.3)
-
.NETStandard 2.0
- Majorsilence.CrystalCmd.Common (>= 1.0.28)
- Newtonsoft.Json (>= 13.0.3)
-
net6.0
- Majorsilence.CrystalCmd.Common (>= 1.0.28)
- Newtonsoft.Json (>= 13.0.3)
-
net8.0
- Majorsilence.CrystalCmd.Common (>= 1.0.28)
- Newtonsoft.Json (>= 13.0.3)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
1.0.39 | 339 | 10/23/2024 |
1.0.38 | 71 | 10/22/2024 |
1.0.36 | 559 | 10/9/2024 |
1.0.29 | 722 | 8/21/2024 |
1.0.28 | 128 | 8/21/2024 |
1.0.25 | 96 | 6/20/2024 |
1.0.24 | 96 | 6/13/2024 |
1.0.23 | 121 | 4/22/2024 |
1.0.22 | 948 | 4/3/2024 |
1.0.21 | 165 | 3/22/2024 |
1.0.20 | 108 | 3/22/2024 |
1.0.19 | 176 | 2/29/2024 |
1.0.18 | 104 | 2/29/2024 |
1.0.17 | 105 | 2/28/2024 |
1.0.16 | 119 | 2/26/2024 |
1.0.14 | 174 | 8/23/2023 |
1.0.10 | 7,851 | 6/22/2022 |
1.0.9 | 10,624 | 3/2/2021 |
1.0.8 | 9,621 | 1/5/2021 |
1.0.7 | 1,539 | 12/30/2020 |
1.0.6 | 346 | 12/30/2020 |
1.0.5 | 333 | 12/30/2020 |
1.0.4 | 320 | 12/29/2020 |
1.0.3 | 406 | 12/27/2020 |
1.0.2 | 985 | 12/4/2020 |
1.0.1 | 415 | 12/3/2020 |
1.0.0 | 539 | 11/29/2020 |