0

コマンドラインでこれを試してみます:

curl --user admin:admin -XGET "http://localhost:2480/query/demo/sql/select from Profile/20/*:-1"

そしてこれを手に入れよう

from Profile/20/*:-1"
from 500 Internal Server Error
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Date: Wed Oct 17 10:25:57 CDT 2012
Content-Type: text/plain; charset=utf-8
Server: OrientDB Server v.1.2.0 (build 12659)
Connection: Keep-Alive
Content-Length: 72

java.lang.StringIndexOutOfBoundsException: String index out of range: -1

それから私はこれを試します:

curl --user admin:admin "http://localhost:2480/query/demo/sql/select from Profile/20/*:-1"

そしてこれを手に入れよう

java.lang.StringIndexOutOfBoundsException: String index out of range: -1

編集:

私はubuntu12.04で1.2.0バージョンを使用しています

編集2:

グーグルクロームからアクセスした場合:

http://localhost:2480/query/demo/sql/select%20from%20Profile/20/*:-1

できます。だから私はカールリクエストに何かがあると思います。

編集3:

このヘッダーを追加しようとすると、同じエラーが発生しました

Accept:text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Charset:ISO-8859-1,utf-8;q=0.7,*;q=0.3
Accept-Encoding:gzip,deflate,sdch
Accept-Language:en-US,en;q=0.8
Authorization:Basic YWRtaW46YWRtaW4=
Cache-Control:max-age=0
Connection:keep-alive
Cookie:OSESSIONID=-
Host:127.0.0.1:2480
User-Agent:Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/535.19 (KHTML, like Gecko) Ubuntu/12.04 Chromium/18.0.1025.168 Chrome/18.0.1025.168 Safari/535.19
4

1 に答える 1

2

空白は%20に置き換える必要があります

悪いクエリ:

curl --user admin:admin "http://localhost:2480/query/demo/sql/select from Profile/20/*:-1"

良いクエリ

curl --user admin:admin "http://localhost:2480/query/demo/sql/select%20from%20Profile/20/*:-1"
于 2012-10-18T14:40:26.723 に答える