I have server application writed in .net. To connect with this server I’m using net remoting interface. Is it possible to connect to this server application with QT library?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Unfortunately, .NET remoting uses an unpublished protocol. I believe it has been (at least mostly) reverse-engineered, but it would take quite a bit of work to write a Qt library to work with it.
If you want to make the API more accessible, change the .NET part to use WCF instead; WCF bindings starting with “net” should be avoided because they are also unpublished protocols. The others are defined by published standards, so it may be possible to find a Qt library to help speak a particular standardized protocol.
Alternatively, create a .NET client-side DLL to communicate with the .NET server. The DLL can then expose the needed functionality either through a C API or by acting as an inproc COM server.