Oracle 企业服务器 SOAP/Servlet/SoapRouter
有谁知道查询数据库的任何 Oracle SOAP XML 请求示例吗?
例如,网址: http://myoracle:7778/oracle/soap/soaprouter/
我想编写 xml 请求并获取返回 xml 数据库。 但我不知道 Oracle SOAP 格式。
请举个例子。
Does anyone know any sample Oracle SOAP XML requests that that queries the database?
For example, the url:
http://myoracle:7778/oracle/soap/soaprouter/
I'd like to program xml requests and get return xml database.
But I have no idea on the Oracle SOAP format.
Please provide an example.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
此处的文档详细介绍了 Oracle 应用服务器 SOAP 格式:
http://download-east.oracle.com/docs/cd/B15904_01/web.1012/b14027/oraclesoap.htm
看起来它是基于 Apache 2.3.1 SOAP 并带有一些小的增强功能。
您需要创建自己的服务(从数据库获取数据的代码),然后公开此 Web 服务,以便您可以向其发送 SOAP 请求并获取响应。文档中提到了一些示例服务,并且应该包含在应用程序服务器中。
The documentation here goes into detail about the Oracle Application Server SOAP format:
http://download-east.oracle.com/docs/cd/B15904_01/web.1012/b14027/oraclesoap.htm
It looks like it is based on Apache 2.3.1 SOAP with some minor enhancements.
You would need to create your own service (the code to fetch data from the database), then expose this web service so you can send SOAP requests to it and get responses back. Some sample services are mentioned in the docs and should be included with the application server.