Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

System.NotSupportedException: BinaryFormatter serialization and deserialization are disabled within this application #2335

Open
LiuxinABC opened this issue Mar 6, 2024 · 0 comments

Comments

@LiuxinABC
Copy link

Environment

  • Pythonnet version:3.0.3
  • Python version:381
  • Operating System:win11
  • .NET Runtime:.NET8

Details

  • In my .NET 8 console environment, I executed a simple operation to call a Python method that returns a string. However, I encountered an error when executing PythonEngine.Shutdown().

    TODO

  • python&code:
    import json
    def return_json_string():
    data = {"message": "这是从Python返回的字符串"}
    return "{"name":"Michael"}" # 这将会是一个字符串

  • .net&code
    public static void GetStr()
    {
    Runtime.PythonDLL = @"D:\Program Files\Python312\python312.dll"; // 根据需要更改Python版本和路径
    PythonEngine.Initialize(); // 初始化Python引擎

    using (Py.GIL()) // 确保我们在Python全局解释锁(GIL)的上下文中
    {
    dynamic pyModule = Py.Import("ReturnJson"); // 导入Python方法所在文件名
    string result = pyModule.return_json_string(); // 调用函数并获取返回值

    Console.WriteLine(result);
    

    }

    PythonEngine.Shutdown(); // 关闭Python引擎
    }

    System.NotSupportedException: BinaryFormatter serialization and deserialization are disabled within this application. See https://aka.ms/binaryformatter for more information.
   at System.Runtime.Serialization.Formatters.Binary.BinaryFormatter.Serialize(Stream serializationStream, Object graph)
   at Python.Runtime.RuntimeData.Stash()
   at Python.Runtime.Runtime.Shutdown()
   at Python.Runtime.PythonEngine.Shutdown()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant