Webservice Question
-
I looked at the web development message board and my question seems to me to fit better here. There are three parts to my situation. 1) XML server that pushes XML streams as updates are available to a URL of my choice. 2) Here is the question lies. 3) Normal Service that wants to consume the XML streams from item 1. Currently I have an ASP.NET page that writes the xml streams to disk, my service has a file watcher that watches the directory that the ASP.net page is writing the files to. While this works, I find it far from ideal. I would like to have a webservice running that would "forward" the xml streams straight to my service and skip the write the files to disk altogether. I am not sure how to go about this. Should my service have some sort of listener that listens for input from the webservice? Ideas appreciated, Steve