I have a server with an Event Service that resides at our Head Office, H/O Server
I then have a Server that is hosted at an external service provider. Ext Server
Connectivity between the two machines is via VPN and both servers are on different domains.
I need an application on the Ext Server to make a call to my Event Service on the H/O Server. The Event Service is a WCF service.
I am thinking of using WCF over MSMQ to guarantee any events raised by the Ext Server application are delivered to the WCF Event Service.
My Question is how do I go about doing this:- I have my WCF Service hosted inside IIS on the H/O server, do I then setup MSMQ on the Ext Server and have my application on Ext Server reference the WCF Service as per normal, just changing the binding to point to the local queue?
If this is the case, what security issues am I in for and how would I get around them.
Thanks in advance