我想在 Meteorjs 中使用 node-soap。在 github 自述文件中,我看到了示例:
server = http.createServer(function(request,response) {
response.end("404: Not Found: "+request.url)
});
soap.listen(server, '/wsdl', myService, "xml");
但我不知道如何在流星中做到这一点,因为我无法创建服务器实例。有谁知道,我如何从 Meteor 获取服务器实例?