.net remoting in Vista - Stack Overflow most recent 30 from stackoverflow.com 2009-12-09T04:32:38Z http://stackoverflow.com/feeds/question/884204 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/884204/net-remoting-in-vista 2 .net remoting in Vista Lachman 2009-05-19T17:57:05Z 2009-06-14T16:00:07Z <p>I've got an application that communicates with a wndows service via .net remoting.</p> <p>Under XP this is all fine but when I run the same code on Vista I get the exception </p> <pre><code>System.Net.Sockets.SocketException: No connection could be made because the target machine actively refused it 127.0.0.1:8969 Server stack trace: at System.Net.Sockets.Socket.Connect(IPAddress[] addresses, Int32 port) at System.Runtime.Remoting.Channels.RemoteConnection.CreateNewSocket(AddressFamily family) at System.Runtime.Remoting.Channels.RemoteConnection.CreateNewSocket() at System.Runtime.Remoting.Channels.RemoteConnection.GetSocket() at System.Runtime.Remoting.Channels.SocketCache.GetSocket(String machinePortAndSid, Boolean openNew) at System.Runtime.Remoting.Channels.Tcp.TcpClientTransportSink.SendRequestWithRetry(IMessage msg, ITransportHeaders requestHeaders, Stream requestStream) at System.Runtime.Remoting.Channels.Tcp.TcpClientTransportSink.ProcessMessage(IMessage msg, ITransportHeaders requestHeaders, Stream requestStream, ITransportHeaders&amp; responseHeaders, Stream&amp; responseStream) at System.Runtime.Remoting.Channels.BinaryClientFormatterSink.SyncProcessMessage(IMessage msg) Exception rethrown at [0]: at System.Runtime.Remoting.Proxies.RealProxy.HandleReturnMessage(IMessage reqMsg, IMessage retMsg) at System.Runtime.Remoting.Proxies.RealProxy.PrivateInvoke(MessageData&amp; msgData, Int32 type) </code></pre> <p>I've tried turning the firewall off, running the service in the same user context as the user that is logged in to no avail.</p> <p>Is there something about Vista that doesn't allow communication between services and user applications via .net remoting?</p> <p>Has anyone else seen this?</p> http://stackoverflow.com/questions/884204/net-remoting-in-vista/889377#889377 0 Answer by Lachman for .net remoting in Vista Lachman 2009-05-20T18:05:37Z 2009-05-20T18:05:37Z <p>I never came up with a resolution for this. But instead of using tcp for remoting, I used the ipc protocol that came with .net 2.0 (this was a converted project from 1.1). </p> <p>Specifying the authorized group got around this issue:</p> <pre><code> &lt;system.runtime.remoting&gt; &lt;application name="MyService"&gt; &lt;service&gt; &lt;wellknown type="MyAssembly.MyServiceProxy, MyService" objectUri="FrontdeskSyncService.rem" mode="Singleton" /&gt; &lt;/service&gt; &lt;channels&gt; &lt;channel ref="ipc" portName="server" authorizedGroup="Everyone"&gt; &lt;serverProviders&gt; &lt;formatter ref="binary" typeFilterLevel="Full" /&gt; &lt;/serverProviders&gt; &lt;/channel&gt; &lt;/channels&gt; &lt;/application&gt; &lt;/system.runtime.remoting&gt; </code></pre>