I'm running service host with net pipe on one PC and I need to connect to this host from another PC in the network. Since net pipe doesn't have any port, I cannot find out what firewall exceptions must be implemented in on the PCs / network in order for these two PC successfully communicate. The service host is created following way
_host = new ServiceHost(_driverHandler,
new Uri(DriversConfiguration.NetPipeUri));
_host.AddServiceEndpoint(typeof(ISystemControl),
new NetNamedPipeBinding(),
DriversConfiguration.HostEndpoint);
_host.Open();
Where NetPipeUri is "net.pipe://localhost" and HostEndpoint is "MyFancyApplication". Any idea what firewall exceptions and network configuration (rules on routers) should I use in order to have it working ?