WCF Solution

G

Guest

Problem:

An External resource which I have no control over delivers data via TCP/IP.
In addition, there are files delivered to specific folder locations on the
network.

There is a very poorly written system ("server") that uses Sockets to
intercept the data that comes in via TCP/IP and I/O to pick up the files that
are delivered. The system that delivers the data via TCP/IP knows what IP
address and port to connect to in order to push the data down to the existing
"server" that is running. This "server" must be replaced by a more stable and
better system.

Ultimately what must happen is the data must be intercepted and delivered to
other processes (whatever processes that wish to subscribe to receiving the
data).

How could this be accomplished using WCF? To intercept the TCP/IP stream as
well as the physical files and publish them to subscribing processes?
 
A

Alvin Bruney [MVP]

hmmm, interesting. I'd go for a queue based implementation where the sender
sends to a queue and the queue has a trigger to route the messages
elsewhere. WCF supports MSMQ so the solution can use WCF.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top