- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我有一个 SOAP Web 服务,需要从 node.js 应用程序读取该服务,并决定使用 vpulim/node-soap
当我使用 SOAP 客户端时,Web 服务可以工作,但无法让它在 Node.js 应用程序上工作。我收到以下错误消息:
Error: getaddrinfo ENOTFOUND www.xxxxxxx.intra.com.mt www.xxxxxxx.intra.gov.mt:9011
at errnoException (dns.js:26:10)
at GetAddrInfoReqWrap.onlookup [as oncomplete] (dns.js:77:26)
奇怪的是,实际的 URL 是 www.xxxxxx.com.mt,没有内部部分。我不明白为什么它在这里显示不同。
下面是我正在使用的代码。
var url = 'https://www.xxxxxxxx.gov.mt/wsRPS.asmx?WSDL';
soap.createClient(url, function(err, client){
//client.addSoapHeader(soapHeader);
//
var args = {
from: "2016-03-01T11:00:00",
to: "2016-03-03T11:00:00"
};
client.GetInformation(args, function(err, result){
if(err){
throw err;
}
console.log(result);
});
});
对发生的事情有什么想法吗?谢谢
最佳答案
您需要提供客户端端点:
const url = 'https://www.xxxxxxxx.gov.mt/wsRPS.asmx';
soap.createClient(`${url}?wsdl`, (err, client) => {
// here
client.setEndpoint(url);
const args = {
from: "2016-03-01T11:00:00",
to: "2016-03-03T11:00:00"
};
client.GetInformation(args, (err, result) => {
if(err){
throw err;
}
console.log(result);
});
});
关于node.js - 出现错误 : getaddrinfo ENOTFOUND when using node-soap,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37196791/
对于我来说,Bower 安装对于多个软件包似乎一直失败。我尝试删除以下(可嵌套的)包提及,然后对其他人失败。 我试过设置 git 设置 - git config --global url."https
我刚刚安装了 heroku,我正在使用 powershell 登录,但我不断收到此消息: enotfound: getaddrinfoo enotfound api.heroku.com api.he
我的步骤如下: 下载heroku-osx.pkg,并安装它。 $ heroku login 使用我的账号和密码 克隆了 ruby-getting-started:$ git clone https
有没有人遇到这个错误: ENOTFOUND: getaddrinfo ENOTFOUND rendezvous.runtime.heroku.com rendezvous.runtime.heroku
我是新手,正在学习使用 API。我在使用 axios 时收到 POST 请求错误。 在docs我想交互的 API,他们给出了 curl 示例。 curl -X POST https://ssuploa
我已经初始化了一个 nuxt 项目,当我尝试使用 npm run dev 或 yarn dev 命令运行它时,它返回了这个错误: build [================== ] 91
我正在尝试安装https://github.com/catarse/catarse VPS 上的脚本(在我的本地计算机上工作正常),当我输入命令 bower install 时出现错误: bower
使用Node.js尝试获取以下网页的html内容时: eternagame.wikia.com/wiki/EteRNA_Dictionary 我收到以下错误: events.js:72 thr
我的 meteor 目前正在我的本地主机上运行。 我添加了 meteor 电子邮件包 meteor add email 在 server/server.js 我添加了(我的密码有很多特殊字符(@#$%
我有请求功能并尝试集成 Firebase 的宽度云功能。 var http = require("https"); function addUserToMailchimpList(email)
我收到此错误: getaddrinfo ENOTFOUND localhost Error: getaddrinfo ENOTFOUND localhost at errnoException
什么会导致下面屏幕截图中出现的错误? 最佳答案 在/etc/hosts 中添加 127.0.0.1 localhost 解决了问题 谢谢 关于android - 错误 : getaddrinfo EN
我安装了 bower npm install -g Bower bower --version 1.3.9 bower 搜索 jquery bower ENOTFOUND 请求 https://bow
我有一个与服务器通信的 bluemix Node js 应用程序。我有测试和生产环境。在开发环境中,我们与测试服务器通信,我收到一个 Node js 错误。 当我将服务器 URL 更改为生产服务器时,
我一直在我的日志中得到这个: problem with request: getaddrinfo ENOTFOUND api.paypal.com api.paypal.com:443 { [Erro
我是 firebird 数据库的新手。 我已经创建了一个数据库“a”和一个表“STUDENT”。 我正在尝试使用这个 npm 包连接到数据库 https://www.npmjs.com/package
我有一个简单的 Node.js 机器人,它每秒向 rest API 发出一个 HTTP 请求。 如果返回的数据是正确的,那么我将构建一个 URL,并在其中进行 HTTP POST。 一切正常,但在运行
我有一个链接列表,在处理一些数据之前我需要检查这些链接。使用 http.get 检查 header 返回错误: events.js:72 throw er; // Unhandle
我正在尝试执行 API.AI 教程来为 Google Assistant 构建天气机器人(这里的那个:https://dialogflow.com/docs/getting-started/basic
我在 cli Node 脚本中使用 axios。我注意到有时在控制台内会记录此错误: Error: getaddrinfo ENOTFOUND www.foobar.com at GetAdd
我是一名优秀的程序员,十分优秀!