Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

This might be a simple question, but is it possible to use a windows service as a tier between my code and a webservice?

I have a rather large project, and a webservice. Instead of calling the WS directly, I need a tier inbetween. (There are reasons to why that's a good idea...)

Since a windows service is all ready present, can I call that service, and get that same service to call the webservice?

share|improve this question
You might need to explain more about exact requirements, because this looks a bit weird. – L-Three Mar 13 at 11:51
Just to be clear, you want to make a call to a windows service, which makes a call to a webservice, which returns data to your windows service, which returns data to your original app. – Mike C. Mar 13 at 12:08
Correct Mike. Sorry if the explanation was a bit off – Hanne Smith Mar 13 at 14:04

1 Answer

up vote 0 down vote accepted

You could use wcf to communicate with a windows service, that than communicates with a webservice.

Or you could host a web service in the windows service, that communicates with the original webservice.

That are just two examples, so it es technical possible to match you requirements.

share|improve this answer
About the first solution / example; Use WCF like creating a wcf service? So; Primary code -> wcf ws -> end ws? – Hanne Smith Mar 13 at 14:06
Yes, your primary code will communicate to the windows service via wcf. The windows service then will communicate with the webservice. May be yout want to do it with the proxy pattern, so you can change your implementation to use the webservice directly if needed. – Chris Mar 14 at 8:55
Think I got it. Thanks Chris :) – Hanne Smith Mar 14 at 9:57

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.