私たちのデータベース管理者が Marklogic サーバーでセットアップを行っており、データベース管理者はいくつかの xml ドキュメントをアップロードしています。
Oracle apex RESTFUL Web サービス pl/sql コードを介してこれらのドキュメントにアクセスしようとしています
declare
l_clob CLOB;
BEGIN
l_clob := apex_web_service.make_rest_request(
p_url => 'http://abcd.efg.com:8011/v1/documents?uri=/C/storage/data/temp.xml',
p_http_method => 'GET',
p_username => 'temp',
p_password => 'temp' );
dbms_output.put_line(l_clob);
END;
dbms_output は以下のエラー xml を出力しています
<rapi:error xmlns:rapi="http://marklogic.com/rest-api">
<rapi:status-code>401</rapi:status-code>
<rapi:status>Failed Auth</rapi:status> <rapi:message-code/>
<rapi:message>Unauthenticated</rapi:message></rapi:error>
問題の原因は何ですか??