Kaazing.Enterprise
4.1.2
See the version list below for details.
dotnet add package Kaazing.Enterprise --version 4.1.2
NuGet\Install-Package Kaazing.Enterprise -Version 4.1.2
<PackageReference Include="Kaazing.Enterprise" Version="4.1.2" />
paket add Kaazing.Enterprise --version 4.1.2
#r "nuget: Kaazing.Enterprise, 4.1.2"
// Install Kaazing.Enterprise as a Cake Addin #addin nuget:?package=Kaazing.Enterprise&version=4.1.2 // Install Kaazing.Enterprise as a Cake Tool #tool nuget:?package=Kaazing.Enterprise&version=4.1.2
The Kaazing Enterprise .NET package contains client libraries for the following:
* Creating and using secure robust native WebSocket connections from desktop, mobile, and Xamarin applications
* Communicating with a JMS-compliant messaging system or broker through Kaazing WebSocket Gateway using WebSocket connections from desktop, mobile, and Xamarin applications
* Communicating with a AMQP 0-9-1 messaging system or broker through Kaazing WebSocket Gateway using WebSocket connections from desktop, mobile, and Xamarin applications
This package is compatible with .NET applications for desktop and mobile devices, and Xamarin applications deployed to mobile devices.
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net6.0-android was computed. net7.0-android was computed. net8.0-android was computed. |
.NET Framework | net45 is compatible. net451 was computed. net452 was computed. net46 was computed. 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 is compatible. |
MonoTouch | monotouch is compatible. |
Universal Windows Platform | uap was computed. uap10.0 was computed. |
Windows Phone | wp81 is compatible. wpa81 is compatible. |
Xamarin.iOS | xamarinios is compatible. |
Xamarin.Mac | xamarinmac is compatible. |
This package has no dependencies.
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
What's New
* Updated to .NET Framework 4.5.2
This allows the client to directly use native Websocket APIs, if provided by the .NET runtime.
* Support for .NET Mobile RFC-6455 (WebSocket)
This provides native Websocket support when deployed to Windows mobile devices or when cross compiled to mobile devices via Xamarin. Without Kaazing’s libraries, these runtimes do not support native Websocket or have buggy implementations (https://bugzilla.xamarin.com/show_bug.cgi?id=37624).
* Nuget packaging and delivery for .NET
Known Issues
* tickets#303
The cipher suites enabled out-of-the-box in Kaazing Gateway are not compatible with WebSocket native connections for the Xamarin .NET client. TLS connections will fail with a warning stating "protocol is disabled or cipher suites are inappropriate" or "failure to negotiate cipher suites".
Workaround this issue by setting the cipher suites in the Kaazing gateway as follows:
<service-defaults>
<accept-options>
<ssl.ciphers>DEFAULT,!RC4</ssl.ciphers>
</accept-options>
</service-defaults>
* tickets#352
JMS MapMessage Maximum/Minimum values may be rounded during conversion between different .NET platforms and among other clients.
* tickets#286
Xamarin WebSocket client will not establish a connection on Android until the INTERNET permission flag is enabled in AndroidManifest.xml. See the folliwng for more information:
- http://stackoverflow.com/questions/35465102/httpwebrequest-access-denied-on-release-build-xamarin-android
- https://developer.xamarin.com/recipes/android/general/projects/add_permissions_to_android_manifest/