Dear friends,
I am having an issue with using custom activity which i built it in visual studio 2022. And successfully prepared nuget package and imported it into studio.
Custom activity is simple import dll file and use it’s functions as show down.
which is provided by third party company (no support).
public class PosAPI
{
[DllImport("PosAPI.dll", CharSet = CharSet.Unicode, CallingConvention = CallingConvention.Cdecl)]
[return: MarshalAs(UnmanagedType.BStr)]
public static extern string checkConnection(String message);
}
The issue is when using activity giving me an error at network. When using it in visual studio console app is perfectly fine.
{
"config": {
"success": true
},
"database": {
"success": true
},
"network": {
"message": "Unable to init SSL Context: ",
"success": false
},
"success": true
}