🎄 Happy Holidays! 🥳
Most of Solace is closed December 24–January 1 so our employees can spend time with their families. We will re-open Thursday, January 2, 2024. Please expect slower response times during this period and open a support ticket for anything needing immediate assistance.
Happy Holidays!
Please note: most of Solace is closed December 25–January 2, and will re-open Tuesday, January 3, 2023.
How can I resolve the error BinaryFormatter serialization and deserialization are disabled within th
I'm using Solace version 10.5 and we are migrating to dotnet core 8
In the following line :
ContextFactory.Instance.CreateContext(new ContextProperties(), null);
I get the exception : Exception thrown: 'System.NotSupportedException' in System.Runtime.Serialization.Formatters.dll
An exception of type 'System.NotSupportedException' occurred in System.Runtime.Serialization.Formatters.dll but was not handled in user code
BinaryFormatter serialization and deserialization are disabled within this application.
I have to mention this is the higher I can go with solace version by the way, in case the answer is to updated my version. Still I would like to know what version would resolve this.
For now I'm using the suggested fix
<PropertyGroup> <TargetFramework>net8.0</TargetFramework> <!-- Warning: Setting the following switch is *NOT* recommended in web apps. --> <EnableUnsafeBinaryFormatterSerialization>true</EnableUnsafeBinaryFormatterSerialization> </PropertyGroup>
Best Answer
-
As per the solace supported release the oldest version of cscsmp that is supported is 10.7.0. So I recommend migrating from 10.5.0. See,
.
From the solace release notes there is:Support New Major Version of .Net 5.0 Added support for major version upgrade of .NET to 5.x. Removed BinaryFormatter.Serialize() as this was deprecated and marked as "unsafe" by .NET.10.15.0
from https://products.solace.com/download/DOTNET_API_RN.
So version 10.15.0 would be the next version that should support this without the workaround.The latest version of cscsmp that officially supports net8.0 is 10.26.0.
0
Answers
-
As per the solace supported release the oldest version of cscsmp that is supported is 10.7.0. So I recommend migrating from 10.5.0. See,
.
From the solace release notes there is:Support New Major Version of .Net 5.0 Added support for major version upgrade of .NET to 5.x. Removed BinaryFormatter.Serialize() as this was deprecated and marked as "unsafe" by .NET.10.15.0
from https://products.solace.com/download/DOTNET_API_RN.
So version 10.15.0 would be the next version that should support this without the workaround.The latest version of cscsmp that officially supports net8.0 is 10.26.0.
0