Warning: file_get_contents(/data/phpspider/zhask/data//catemap/7/wcf/4.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
用于WCF webservice的Restlet客户端_Wcf_Restlet - Fatal编程技术网

用于WCF webservice的Restlet客户端

用于WCF webservice的Restlet客户端,wcf,restlet,Wcf,Restlet,我正在寻找示例代码restlet客户端,通过它我可以使WCF webservice(REST)托管在IIS上 谢谢 Adi来自“Restlet in action” 导入org.restlet.resource.ClientResource 公共类HelloClient{ 公共静态void main(字符串[]args)引发异常{ ClientResource helloClientResource=新ClientResource(“”; helloClientResource.get().wr

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

谢谢 Adi来自“Restlet in action”

导入org.restlet.resource.ClientResource

公共类HelloClient{
公共静态void main(字符串[]args)引发异常{
ClientResource helloClientResource=新ClientResource(“”;
helloClientResource.get().write(System.out);
}
}