我有一个带有 XSD 导入的 WSDL 文档。
<xsd:import namespace="http://site.com" schemaLocation="schema.xsd"/>
WSDL 工具假定模式位于同一目录中,但在 rails 中加载失败并出现错误
<RuntimeError: Unable to find schema for "http://site.com">
我试过从 rails root 和 system root 写入路径,但没有成功。
我使用 Savon 3 来处理 Rails 中的 WSDL。SoapUI 正常使用此模式。
那么,写这条路径的正确方法是什么?