c# - How to run business logic on one computer of the local network and GUI on another? -
i have wpf application running on computer connected local network , there special device connected computer controlled application. there easy way migrate gui (wpf xaml) computer connected same network gui , bl stay coupled?
i have been looking wcf there quite limitations make time consuming adapt wcf situation. wcf work if handle both properties (not supported @ all) , events in 1 servicecontract.
no, there no simple way that.
if gui , bl running on different machines, have implement special code perform network communications between apps (i.e. gui , bl 2 different apps), , if gui , bl tightly coupled, it's impossible , pointless (network-related code contain service contracts tremendous in size , remoting consume large amount of time, making ui interaction slow , painful) - should refactored.
there is, however, workaround problem - can run app on machine both bl , gui, show gui on different machine: remotedesktop or remoteapp (https://technet.microsoft.com/en-us/library/cc755055.aspx) that.
Comments
Post a Comment