c# - Running LAN WCF service -


i'm trying create client-server app server runs on user's machine. i'm looking either using wcf or sockets have couple of questions.

i'd use wcf seems user needs admin rights in order launch service. user need admin rights if wcf service running within managed application (e.g. windows service)? sockets seems admin rights isn't required open relevant port.

how https security work in wcf? since lan program (user talking client own machine), need purchase certificate , install on machines? i'd rather avoid if possible data being transferred isn't sensitive. same if use sslstream sockets?

there lot of questions, :), short answer on part of them:

  1. you can host wcf in console application. windows services may not require admin properties installed on pc.

  2. for https - not have buy certificate, can crate own - there lot of examples in net. - if data not sensitive - can use simple http.


Comments

Popular posts from this blog

Why does Ruby on Rails generate add a blank line to the end of a file? -

keyboard - Smiles and long press feature in Android -

node.js - Bad Request - node js ajax post -