EssSharp.Abstractions 0.2.0

dotnet add package EssSharp.Abstractions --version 0.2.0
                    
NuGet\Install-Package EssSharp.Abstractions -Version 0.2.0
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="EssSharp.Abstractions" Version="0.2.0" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="EssSharp.Abstractions" Version="0.2.0" />
                    
Directory.Packages.props
<PackageReference Include="EssSharp.Abstractions" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add EssSharp.Abstractions --version 0.2.0
                    
#r "nuget: EssSharp.Abstractions, 0.2.0"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package EssSharp.Abstractions@0.2.0
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=EssSharp.Abstractions&version=0.2.0
                    
Install as a Cake Addin
#tool nuget:?package=EssSharp.Abstractions&version=0.2.0
                    
Install as a Cake Tool

EssSharp

A (partly) auto-generated C# REST client for Essbase.

The EssSharp C# REST client is an open source, .NET Standard 2.0 library created by Applied OLAP for working with an Essbase server using its REST API. This is intended to be used with Essbase 21+ but may also work, to an extent, with Essbase 19. This library cannot be used with older Essbase/EPM versions such as EPM 11.1.2.4.

This library is a very functional but does not implement everything available in the Essbase REST API. Contributions and pull requests are welcome. We will be filling in methods as they are needed.

Why Use This Library?

The Essbase Java API has been the gold standard for connectivity and interaction with Essbase over the years. With the introduction of the Essbase REST API in Essbase 19 and higher, it becomes possible to consume Essbase services directly from .NET code. Additionally, this library provides access to some functionality that is only available via the REST API, is less sensitive to version changes (sometimes the Essbase Java JARs would receive binary incompatible changes), and it may be easier to access your Essbase server using its normal HTTPS port instead of the APS port.

Including EssSharp in a C# Project

You can easily pull this library into an existing .NET project using the latest NuGet packages: EssSharp, EssSharp.Abstractions. The abstractions library provides shared classes and interfaces implemented by EssSharp.

example.csproj:
  <ItemGroup>
    <PackageReference Include="EssSharp" Version="*.*" />
    <PackageReference Include="EssSharp.Abstractions" Version="*.*" />
  </ItemGroup>

Using EssSharp

The library can be consumed as simply as doing the following:

example.cs
// Create a new server factory..
EssServerFactory factory = new EssServerFactory();

// Create and return a connected server.
// Note: Replace "example" with your Essbase server hostname.
IEssServer server = await factory.CreateEssServerAsync(server: "http://example:9000/essbase", username: "admin", password: "welcome1");

// Get the list of applications from the server.
List<IEssApplication> applications = await server.GetApplicationsAsync();

// Print the name of each application to the console.
foreach (IEssApplication application in applications)
{
    Console.WriteLine("App: " + application.Name);
}

The above code prints out the list of applications on the server. If you want to get an Essbase 21 server up and running using Docker, you might want to look at the Essbase Docker project (also by Applied OLAP).

Technical Details

The Essbase REST API Swagger/OpenAPI definition document is used as the basis of the auto-generated classes in this library, although a series of changes are applied to it in order to 'fix' things that the OpenAPI generator would otherwise struggle with. These adjustments can be found in the process.sh script. Generally these changes are to fix return types that would otherwise not deserialize properly. Once the document has been processed/fixed, the Open API code generator is run. The code is generated directly into the /src/EssSharp/Api, /src/EssSharp/Client, and /src/EssSharp/Model folders.

License

This library is licensed under the Apache License 2.0.

Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  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 was computed.  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.  net9.0 was computed.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  net10.0 was computed.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.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 was computed.  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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (1)

Showing the top 1 NuGet packages that depend on EssSharp.Abstractions:

Package Downloads
EssSharp

A (partly) auto-generated C# REST client for Essbase.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
0.2.0 330 7/26/2023
0.1.0 326 6/15/2023