We have a WCF service hosted as a windows service with tcp bindings on our application server. We have a ASP.NET web application hosted on a separate web server that is attempting to connect to it. Both servers are Windows 2008 R2 machines.
The ASP.NET web application's application pool is set to use the ApplicationPoolIdentity as it's user. When we attempt to connect to the WCF service from the windows machine the following error occurs:
Source Exception: System.Web.HttpUnhandledException (0x80004005): Exception of type 'System.Web.HttpUnhandledException' was thrown. ---> System.ServiceModel.CommunicationException: The socket connection was aborted. This could be caused by an error processing your message or a receive timeout being exceeded by the remote host, or an underlying network resource issue. Local socket timeout was '00:00:09.9980000'. ---> System.IO.IOException: The read operation failed, see inner exception. ---> System.ServiceModel.CommunicationException: The socket connection was aborted. This could be caused by an error processing your message or a receive timeout being exceeded by the remote host, or an underlying network resource issue. Local socket timeout was '00:00:09.9980000'. ---> System.Net.Sockets.SocketException: An existing connection was forcibly closed by the remote host
at System.ServiceModel.Channels.SocketConnection.ReadCore(Byte[] buffer, Int32 offset, Int32 size, TimeSpan timeout, Boolean closing)
However, when we change the Application Pool's user over to Network Service it connects without error.
My question is two fold. Does anyone know why using the ApplicationPoolIdentity does not work, is it some sort of configuration issue? And, what would be downside of running the application pool under the network service account? I know the ApplicationPoolIdentity has less rights, making more secure, and is considered best practice.