一个Web服务来调用一个Web服务
一个 Web 服务是否可以这样设计,使其依次调用另一个 Web 服务? (到目前为止我不知道我们是否可以做到这一点!) 如果是,那么我可以无限循环地互相调用 Web 服务吗?
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?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的
你不可能在计算机中拥有无限的任何东西(除非它是计算机科学!)
很可能你的网络服务器最终会开始达到最大连接数限制,或者请求将从第一个请求开始超时。
Yes
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.