HessianD

授权协议 未知
开发语言 D语言
所属分类 Web应用开发、 WEB服务/SOAP/SOA
软件类型 开源软件
地区 不详
投 递 者 邢修明
操作系统 未知
开源组织
适用人群 未知
 软件概览

HessianD 是一个用 D 语言实现 Hessian 协议的库。

示例代码:

import hessian.HttpProxy :
HttpProxy;
import tango.io.Stdout;

void main ()
{

// create a Http proxy on the given Http endpoint so we can post our Hessian stream
scope service = new HttpProxy(" http://localhost:5667/test/hessiantest");

// create a proxy method that will do the Hessian serialization and deserialization
auto echo = &service.proxy!(api.echo);

// we'll perform the remote call and display the result
Stdout ("Remote result: ") ( echo("Hello World!") ).newline.flush;

}

相关阅读

相关文章

相关问答

相关文档