I'm in a situation where another system in my domain is sending SOAP messages periodically to a given number of IP:Port addresses, and i went to be able to receive those. Now, I have experience with Web Services a bit, But this is different.
I thought that what i basically need is some kind of Listener service running and getting those SOAP messages. The service needs to be in .NET and probably written in C#.
I'm currently looking at anything from simple HttpListener implementation to WCF. How would you suggest to go about this?
Note: This is an existing interoperability interface, Which is why i'm not just doing a Web service or WCF Service and have the other system call it.