我在两个不同的系统上有两个 OData 服务,为此我在 HCP 中添加了目的地并在neo-aap.json文件中添加了条目。
{
"path": "/sap/opu/odata",
"target": {
"type": "destination",
"name": "ABC",
"entryPath": "/sap/opu/odata"
},
"description": "ABC"
}, {
"path": "/sap/opu/odata",
"target": {
"type": "destination",
"name": "XYZ",
"entryPath": "/sap/opu/odata"
},
"description": "XYZ"
}
有了这个,我只能访问一个系统的服务,即打开的 OData 服务ABC
。当应用程序加载应用程序尝试加载第二个 OData 服务的命中元数据时,ABC
显然不存在,因此失败。
如何访问XYZ
系统上的 OData 服务?