0

IISでホストされるWCFWebサービス(REST)を作成できるサンプルコードのRESTLETクライアントを探しています。

ありがとうアディ

4

1 に答える 1

0

「レストレット・イン・アクション」より

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);
}
}

于 2013-03-05T08:07:29.243 に答える