-1
私はlibを使用して、nodejsアプリからwcfサービスを休止するためのデータを投稿しました。私はxmlデータ型でこれを行いますが、xmlの代わりにjsonデータを使用します:Nodejs - JsonでRest Wcfサービスを呼び出す
"jsonデータでxmlnsプロパティを書き込む方法は?"あなたが
xmlbuilder
を使用している場合
request(
{
method: 'POST',
url: 'http://localhost:8590/Service1.svc/auth',
body: '<RequestData xmlns="http://localhost:8590/mPlayer">\n' +
' <details>Ashu|29|7 Years|.NET</details>\n' +
'</RequestData>',
headers: {'Content-Type': 'text/xml'},
},
function (error, response, body) {
if (!error && response.statusCode == 200) {
console.log(body)
}
}
);