WCF Web服务的Restlet客户端

时间:2013-03-03 10:12:27

标签: wcf restlet

我正在寻找示例代码restlet客户端,通过它我可以在IIS上托管WCF Web服务(REST)。

感谢 阿迪

1 个答案:

答案 0 :(得分:0)

来自“Restlet in action”

import org.restlet.resource.ClientResource;

公共类HelloClient {
    public static void main(String [] args)抛出异常{
        ClientResource helloClientResource = new ClientResource(“http://example.com:8111/”);
    。helloClientResource.get()写(的System.out);
    }
}