私はRestlet開発に不慣れで、ヘッダーを追加してHTTPリクエストを実行しようとしています。以下のコードを試してみましたが、「400 bad request, the header is not valid」というエラーが出ました
String url = "http://xxxxx";
Client c = new Client(Protocol.HTTP);
Request request = new Request(Method.GET, url);
HashMap attributes = new HashMap();
attributes.put = ("DeviceID", "myDeviceID");
attributes.put = ("Centent-Type", "myCT");
attributes.put = ("User-Agent", "my user agent");
attributes.put = ("ClientID", "myCid");
request.setAttributes(attributes);
Response r =c.handle(request);
Restlet 2.0 を使用しています。助けてください。サンプルコードは非常に役立ちます。前もって感謝します。KC