Json 500通过curl发布错误

Json 500通过curl发布错误,json,curl,Json,Curl,我在通过curl发布结果时出错500次 curl -X PUT "http://xyz:8080/v1/test/086517a8-df1a-47a7-bcc7-056b08bd76d4/8911257e-7d7d-11e3-a26e-1e7184f6365b" -H Content-Type:application/json -d '{ "link":"http://xyz12.com/test.txt", "environment":"QA", "subtype":"ui",

我在通过curl发布结果时出错500次

curl -X PUT "http://xyz:8080/v1/test/086517a8-df1a-47a7-bcc7-056b08bd76d4/8911257e-7d7d-11e3-a26e-1e7184f6365b" -H Content-Type:application/json -d '{ "link":"http://xyz12.com/test.txt",    "environment":"QA",    "subtype":"ui",    "tests": [        {            "name": "lookup",            "passed": "17",            "failed": 0,            "skipped": 0        }    ],    "buildNumber":"7.0.0.1192",    "type":"functional"}'}'
我已经通过json验证器验证了json字符串。我得到的答复是:

<html>
<head>
<meta http-equiv="Content-Type" content="text/html;charset=ISO-8859-1"/>
<title>Error 500 Server Error</title>
</head>
<body>
<h2>HTTP ERROR: 500</h2>
<p>Problem accessing /v1/test/086517a8-df1a-47a7-bcc7-056b08bd76d4/8911257e-7d7d                                                                                                                                                             -11e3-a26e-1e7184f6365b. Reason:
<pre>    Server Error</pre></p>
<hr /><i><small>Powered by Jetty://</small></i>

</body>
</html>

错误500服务器错误
HTTP错误:500
访问/v1/test/086517a8-df1a-47a7-bcc7-056b08bd76d4/8911257e-7d7d-11e3-a26e-1e7184f6365b时出现问题。原因:
bind(Logic.class).to(LogicImpl.class)
服务器错误


由码头提供动力://
请建议如何修复此问题


提前感谢。

原因之一可能是您的绑定丢失


错误出现在服务器“xyz:8080”(读取标签中的内容)中,但我无法使用curl-X get“”成功地从服务器获得响应上面的结果是200 OK response这是因为服务器正确响应了get请求,但在处理PUT-check服务器日志时出现问题。