I am attempting to host a TCP client connection in a wcf service that communicates with a 3rd party app. The WCF service will wrap the tcp calls to the third party app so that any application connecting to the WCF service will have no knowledge of the TCP connection. Due to the protocol that the 3rd party app requires, the tcp connection must be kept alive. I have implemented the logic to handle errors and reconnecting, but the issue I'm running into is how to open and close this connection. Is there a way for me to override the host Open and Close calls so that I can do the same with my CommunicationService?
My Code:
public partial class HostService : ServiceBase
{
private ServiceHost _host;
public HostService()
{
InitializeComponent();
}
protected override void OnStart(string[] args)
{
Type serviceType = typeof(MessageProcessor);
var serviceUri = new Uri("http://localhost:9091/");
_host = new ServiceHost(serviceType, serviceUri);
_host.Open();
}
protected override void OnStop()
{
_host.Close();
}
}
[ServiceContract]
public interface IMessageProcessor
{
[OperationContract]
void ProcessMessage(string message);
}
public class MessageProcessor : IMessageProcessor
{
//This is handling my TCP connection.
private CommunicationService _communicationService;
public MessageProcessor()
{
_communicationService = new CommunicationService();
}
public void ProcessMessage(string message)
{
if(_communicationService.Connected)
{
var request = new QueryMessage();
var result = _communicationService.TransmitMessage(request);
}
else
{
//Error handling, not necessary for now
}
}
//I want to do this
public override Open()
{
_communicationService.Open();
}
public override Close()
{
_communicationService.Close();
}
}
ProcessMessagemethod (and in principle therefore your TCP connection) simultaneously? – Kirk Woll Mar 27 '12 at 14:42