次の場所にある、新しくセットアップした RESTful WCF サービスを使用しようとしています。
[http://196.34.92.60/api/api/v1/public.svc/getoperators]
入手したサードパーティのツールを使用してアクセスしました
http://code.google.com/a/eclipselabs.org/p/restclient-tool/
https://addons.mozilla.org/en-US/firefox/addon/restclient/
そして私の結果は私が期待したように見えます:
{
"Results":
[
"golden arrow",
"jammie",
"myciti"
]
}
すべて順調です。Web ブラウザーに URL を入力するだけで、応答は次のようになります。
<ResultList xmlns="http://schemas.datacontract.org/2004/07/Developer_Portal"xmlns:i="http://www.w3.org/2001/XMLSchema-instance"><Results xmlns:a="http://schemas.microsoft.com/2003/10/Serialization/Arrays"><a:string>golden arrow</a:string><a:string>jammie</a:string><a:string>myciti</a:string></Results></ResultList>
私が期待したものではありませんでしたが、これは正常であると想定し、Javascript でサービスを利用しようとしました (ここにフィドルがあります)。
エラーで応答します。この時点で私は困惑しています: JavaScript で目的の応答を得るにはどうすればよいですか?