Axis2:AxisServlet 如何调用骨架部分?
我正在使用 Apache Axis2 (1.5) 版本开发 Web 服务。
我为网络服务客户端开发了一个war文件。 并将我的 Web 服务以 (.aar) 格式部署到 axis2.war 服务目录中。
这工作正常,但我无法理解我的 servlet(客户端)如何调用存根并依次调用骨架的流程。
我已经看到 AxisServlet 负责这个。 有人可以告诉我这个调用是如何发生的吗
I am developing webservices using Apache Axis2 (1.5) version .
I have developed a war file for webservice client .
And Deployed my Webservice in (.aar) format into axis2.war services directory.
This is working fine , but i could not understand the flow how my servlet (client ) is invoking the stub and in turn calling the skelton .
I have seen AxisServlet is responsible for this .
Could anybody please tell me , how this invoking happens
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这是一个有点复杂的问题。 Axis2servlet 被视为传输接收器,此图显示了抽象中的流程[1]。本文 [2] 和引用的链接也提供了一些相关信息。
您可以阅读这些文章并自行调试以理解
正确地说。
[1] https://i.sstatic.net/C7t54.png
[2] http://wso2.org/library/articles/extending-axis2
It is a bit complicated one. Axis2servlet is considered as the transport receiver and this picture shows flow in abstract[1]. This article[2] and the referenced links also provides some information about that.
You can read those articles and have some debugging your selves to understand
that properly.
[1] https://i.sstatic.net/C7t54.png
[2] http://wso2.org/library/articles/extending-axis2