方法不允许

时间:2015-12-09 20:05:27

标签: marklogic

尝试上传REST分机号。到ML8。错误消息是“Method not allowed”,此错误来自cURL。这是405错误。

错误对我来说不够明确。不知道在哪里寻找解决方案。这应该是直截了当的,大多数代码都是从ML网站或我的模板中复制/粘贴..

cURL

curl --anyauth --user 'thijs':'password' -X PUT -i -H "Content-type: application/vnd.marklogic-javascript" -d@"./plantinfo-ext.sjs" $URL'http://uien:8017/v1/config/resources/plantinfo?method=get'  

cURL响应

HTTP/1.1 401 Unauthorized
Server: MarkLogic
WWW-Authenticate: Digest realm="public", qop="auth", nonce="fb8b383b56b4dba52dc", opaque="20e91abaf1b"
Content-Type: text/html; charset=utf-8
Content-Length: 209
Connection: Keep-Alive
Keep-Alive: timeout=5

HTTP/1.1 405 Method Not Allowed
Content-Type: text/html; charset=utf-8
Server: MarkLogic
Allow: DELETE, GET, HEAD, OPTIONS
Content-Length: 221
Connection: Keep-Alive
Keep-Alive: timeout=5

<html xmlns="http://www.w3.org/1999/xhtml">
  <head>
    <title>405 Method Not Allowed</title>
    <meta name="robots" content="noindex,nofollow"/>
  </head>
  <body>
    <h1>405 Method Not Allowed</h1>
  </body>
</html>

REST分机

/**
 * @name plantinfo
 * This REST extentsion provides SOAP service for the shipment data
 */

function get() {

    doc = {'test': 'yes'};

    return doc;
}

// Main
exports.GET = get;

ML错误

10.8.0.6 - thijs [09/Dec/2015:14:58:23 -0500] "PUT /v1/config/resources/plantinfo?method=get HTTP/1.1" 405 221 - "curl/7.35.0"

2 个答案:

答案 0 :(得分:2)

我刚刚使用了您的示例javascript文件并使用以下命令加载它:

curl --anyauth --user admin:admin -X PUT -i \
-H "Content-type: application/vnd.marklogic-javascript"\
--data-binary @"./test.sjs"   \
'http://localhost:8000/v1/config/resources/example'

此示例来自文档并且工作正常 - 即使使用ML 8.0也是如此。为此,我得到了204:Created

我建议你在这里使用sample curl命令,如果有效,只需重新计算它。

答案 1 :(得分:1)

我不确定是什么原因造成了这个错误,但是你的cURL命令看起来有点奇怪:具体来说,你的凭据周围的引号,以及实际目标网址之前的$ URL变量。

尝试此命令:

curl --anyauth --user thijs:password -X PUT -i \
  -H "Content-type: application/vnd.marklogic-javascript" \
  -d@"./plantinfo-ext.sjs" \
  'http://uien:8017/v1/config/resources/plantinfo?method=get'