Oracle BPEL 模式验证 - 在哪里查找模式定义
我有一个 11g 中的 BPEL 应用程序,其绑定的 schema-validate-input 属性设置为 true。当我向此应用程序发送请求时,出现错误:
输入违反架构:cvc-elt.1:找不到元素的声明
这告诉我它无法找到 xsd消息架构。
- BPEL 在哪里搜索这些模式定义以及
- 如何将必要的模式加载到环境中?
我正在使用 Oracle Fusion Middleware 11.1.1.5.0 版本。
I have a BPEL application in 11g with the schema-validate-input property of the binding set to true. When I send a request to this application I get the error:
Input Violates Schema : cvc-elt.1: Cannot find the declaration of element
What this tells me is that it is unable to locate the xsd for the message schema.
- Where does BPEL search for these schema definitions and
- how do the necessary schemas get loaded into the environment?
I am using Oracle Fusion Middleware 11.1.1.5.0 release.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
它能够找到您的架构,但找不到元素的声明。
每个 BPEL 流程都有一个 WSDL,在这个 WSDL 中,您会发现内联模式或从另一个文件导入的模式。
因此,请检查您的 BPEL 流程 WSDL 以了解所使用的模式。
It's able to find your schema,but couldn't find the declaration of element.
Every BPEL process has a WSDL and within this WSDL, you will find either inline schema or schema's imported from another file.
So, check your BPEL process WSDL for schemas used.