我目前正在使用以下语句从 wso2 esb 中的本地条目加载数据:
<property name="MAPPING" expression="get-property('mapping_id_ep_v1')" />
它使用名称 mapping_id_ep_v1 加载以下本地条目:
<mappings>
<mapping id="ep_1">http://localhost:8280/services/ep_1</mapping>
<mapping id="ep_2">http://localhost:8280/services/ep_2</mapping>
<mapping id="ep_3">http://localhost:8280/services/ep_3</mapping>
<mappings>
我想从注册表项加载数据。我认为以下方法会起作用:
但是,它会引发异常:
Evaluation of the XPath expression conf:/custom/inspectieview/routing.xml') resulted in an error {org.apache.synapse.util.xpath.SynapseXPath}
org.jaxen.UnresolvableException: Cannot resolve namespace prefix 'conf'
任何人都知道是否可以将注册表中的值加载到属性调解器中?
问候,尼德基尔