Application Setup I have created a internal WCF service that calls a RESTful service on the net and gets JSON data back from it. I call the internal WCF once a day using a console application that I run using a scheduled job.
My question is since we will be moving to BizTalk 2010 in the future to do these sort of things, Is it better to keep the GET request code in the WCF service or eliminate the WCF service altogether and put the code directly in the console app? I was thinking in the future I could just have BizTalk call the WCF service instead of BizTalk running a console app.