IISでホストされるWCFWebサービス(REST)を作成できるサンプルコードのRESTLETクライアントを探しています。
ありがとうアディ
「レストレット・イン・アクション」より
org.restlet.resource.ClientResource をインポートします。
public class HelloClient {
public static void main(String[] args) throws Exception {
ClientResource helloClientResource = new ClientResource(" http://example.com:8111/ ");
helloClientResource.get().write(System.out);
}
}