Hello, i try do develop a python server who can use SOAP protocol to communicate with a SOAP Client C# but i have a problem with the return.
My python code is here : https://paste.pythondiscord.com/RR6Q
Also i have log : https://paste.pythondiscord.com/3VAQ
I have also the SOAP contract to respect :
public interface IPIEObjet
{
[OperationContract]
int openSession( string ClientId
, string Localization
, string SessionIdToRecover
, uint PIEOClientVersion
, out string SessionId
, out string VersionId
, out uint PIEOServerVersion );
}```
Actually, my C# console have this return :
*** EXCEPTION ***: The formatter generated an exception while attempting to deserialize the message: An error occurred while attempting to deserialize the parameter http://Services:openSessionResult.
The InnerException message was 'An error occurred while deserializing the object of type System.Int32. Cannot parse the value '' as type 'Int32'.' For more information, see InnerException.
Thanks if you can help me.