IDuplexSessionChannel

Questions about Wine on Linux
Locked
normanlo
Newbie
Newbie
Posts: 2
Joined: Thu May 16, 2019 11:12 am

IDuplexSessionChannel

Post by normanlo »

Hello,

I am running a windows program that uses IDuplexSessionChannel https://docs.microsoft.com/en-us/dotnet ... mework-4.8 and I am getting an exception that says "Channel type IDuplexSessionChannel is not supported".

Does wine support IDuplexSessionChanel ?

Thank you very much.
jkfloris
Level 12
Level 12
Posts: 3141
Joined: Thu Aug 14, 2014 10:10 am

Re: IDuplexSessionChannel

Post by jkfloris »

Wine uses Mono as .Net implementation. According to apisof.net, Mono does have IDuplexSessionChanel.

You could try to install .Net in Wine with Winetricks and try again.
(Sometimes, installing .Net can break other applications in your Wineprefix. Use a clean Wineprefix)
normanlo
Newbie
Newbie
Posts: 2
Joined: Thu May 16, 2019 11:12 am

Re: IDuplexSessionChannel

Post by normanlo »

Thank you for your suggestion.

I am using Ubuntu 18.10 and had already installed mono-complete

I am able to get passed that issue by
- sudo apt-get install winetricks
- winetricks dotnet45

Thanks again
Locked