web-dev-qa-db-ja.com

node.js http.requestにXMLデータを投稿する方法

http.requestを使用してNode.js経由でxmlリクエストをWebサービスに送信しようとしています。

これが私のコードです。私の問題は、data=1の代わりに、サービスにxmlを投稿することです。

http.request({
   Host: 'service.x.yyy.x',
   port: 80,
   path: "/a.asmx?data=1",
   method: 'POST'
}, function(resp) {
   console.log(resp.statusCode);
   if(resp.statusCode) {
        resp.on('data', function (chunk) {
            console.log(chunk);
            str +=  chunk;                  
        });
        resp.on('end', function (chunk) {                           
            console.log(str);            
        });                   
  }
}).end();

これを行う方法は?

16
mithunsatheesh

_http.request_は、書き込み可能なストリームでもある ClientRequest オブジェクトを返します。 .end()の代わりにend(xmlbody)または.write(xmlbody).end()

8
Andrey Sidorov

実際、 Andrey Sidorov によって与えられたリンクは、それを機能させるのに役立ちました。これは機能します。

var body = '<?xml version="1.0" encoding="utf-8"?>' +
           '<soap12:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap12="http://www.w3.org/2003/05/soap-envelope">'+
            '<soap12:Body>......</soap12:Body></soap12:Envelope>';

var postRequest = {
    Host: "service.x.yyy.xa.asmx",
    path: "/a.asmx",
    port: 80,
    method: "POST",
    headers: {
        'Cookie': "cookie",
        'Content-Type': 'text/xml',
        'Content-Length': Buffer.byteLength(body)
    }
};

var buffer = "";

var req = http.request( postRequest, function( res )    {

   console.log( res.statusCode );
   var buffer = "";
   res.on( "data", function( data ) { buffer = buffer + data; } );
   res.on( "end", function( data ) { console.log( buffer ); } );

});

req.on('error', function(e) {
    console.log('problem with request: ' + e.message);
});

req.write( body );
req.end();
25
mithunsatheesh