Reputation: 624
Can a web service be so designed, that it inturns calls another web service? (Till date i dont know if we can do this!) If yes, then can I have an infinite looping of web services calling each other alternatively?
Upvotes: 2
Views: 262
Reputation: 31662
Can a web service be so designed, that it inturns calls another web service?
Yes
If yes, then can I have an infinite looping of web services calling each other alternatively?
You can't have an infinite anything in computers (unless it's computer science!)
Most likely your web servers would eventually start reaching their maximum # of connections limit, or the requests would start timing out from the first one on.
Upvotes: 2