1

I've got a windows application that is multi threaded and processes jobs for me. I want to call this application from asp.net / c# in the code behind and wait for a response. Could you advise what the best approach would be to do this? I've been reading about WCF, WF and .net remoting but I'm a bit confused as to which to use. I'm happy to change the windows application to something else as long as it can still be multi threaded.

Thanks, Colin

Colin
  • 11
  • 1

1 Answers1

1

.NET Remoting under performs compared to WCF, WF is for other things...

you could use probably any kind of IPC system, WCF is a good alternative, see here:

IPC Mechanisms in C# - Usage and Best Practices

Community
  • 1
  • 1
Davide Piras
  • 42,120
  • 10
  • 86
  • 140