我的目标是创建一个oDataModel并使用我的服务。我可以使用我的试用帐户查看此 url 下的所有实体: https ://s12hanaxs.hanatrial.ondemand.com/account_name/schema_name/service_name.xsodata/。我按照这些步骤创建了 oData 服务,但是当我单击运行按钮加载服务元数据时,在第 13 步时出现内部服务器错误。我所做的唯一区别是在创建目标时使用基本身份验证。这里是我的目标配置:
编辑 1: 我想为我的服务显示 my.xsaccess 文件:
{
"exposed": true,
"authentication": [{
"method": "Basic"
}],
"authorization" : [ "account_name.schema_name::Basic" ],
"mime_mapping": [{
"extension": "jpg",
"mimetype": "image/jpeg"
}],
"force_ssl": false,
"enable_etags": true,
"prevent_xsrf": true,
"anonymous_connection": null,
"cors": [{
"enabled": false
}],
"cache_control": "no-cache, no-store",
"default_file": "index.html"
}
我也无法通过Postman发送 http 请求。任何帮助,将不胜感激。