c# - Windows Application in future to be controlled over browser -
i writing windows application using c#. planning on later allow controlled on intranet using browser also. in future should able control both using local interface or on intranet browser.
is there pre-defined architecture allow me this? methods of achieving this? new c#/.net.
edit:
the windows application needs access communication ports extensively, , needs pretty stable , run days together.
thanks...
i can't tell if specific package exists ease development. but, if attempt it, after googling , not finding available , meeting needs, make application wcf host. create service entry points accept control messages remotely. need well-know location register application remote system find it. should sure provide user way of disabling application remote control feature.
your host interface need run on own thread remain performant. since new c#, , presumably windows forms application development, need read on how talk gui controls non-gui thread.
alternatively, may want implement application 2 distinct units, 1 gui user interaction. form service requests send host portion (with no gui). app operate locally or controlled remotely.
Comments
Post a Comment