Node.js客户端无法调用.NET发布的服务接口
Closed this issue · 1 comments
luokailuo commented
你好,Node客户端,通过别名的方式,无法调用.NET发布的服务接口。
代码如下:
var hprose = require("hprose");
var functions = {
ISecurityRightService: ['GetSecurityRightClasses']
};
//使用构造器函数创建http客户端
var client = new hprose.HttpClient("http://localhost:8833/",functions);
var result = client.ISecurityRightService.GetSecurityRightClasses('');
console.log(result);
输出:
{ state: 'pending' }
luokailuo commented
已QQ咨询作者本人,已解决没问题,自己理解错误了。