web-dev-qa-db-ja.com

axiosを使用してSOAP=エンドポイントにリクエストを行う

axiosアプリケーションでReactを使用してSOAPエンドポイントに要求する必要があります。したがって、要求でxmlデータを渡し、応答でxmlデータを受信する必要があります。

JSONデータでaxiosポストを使用しましたが、XMLでも同じように使用するにはどうすればよいですか?私は同じために使用しているコードをPFBですが、それは動作しません。

JSON投稿リクエスト:

var xmlData = <note>
<to>Tove</to>
<from>Jani</from>
<heading>Reminder</heading>
<body>Don't forget me this weekend!</body>
</note>

var config = {
  headers: {'Content-Type': 'text/xml'}
};

axios.post('/save', xmlData, config);

これについての経験がある場合は、TIAを共有してください。

7
Vishal Gulati
let xmls='<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"\
                            xmlns:web="http://www.webserviceX.NET/">\
            <soapenv:Header/>\
            <soapenv:Body>\
              <web:ConversionRate>\
                <web:FromCurrency>INR</web:FromCurrency>\
                <web:ToCurrency>USD</web:ToCurrency>\
              </web:ConversionRate>\
            </soapenv:Body>\
          </soapenv:Envelope>';

axios.post('http://www.webservicex.com/CurrencyConvertor.asmx?wsdl',
           xmls,
           {headers:
             {'Content-Type': 'text/xml'}
           }).then(res=>{
             console.log(res);
           }).catch(err=>{console.log(err)});

このコードは、石鹸要求を行うのに役立ちます

8
Anuragh KP

@Anuragh KPの回答を使用しましたが、SOAPActionヘッダーを使用しました

axios.post('https://wscredhomosocinalparceria.facilinformatica.com.br/WCF/Soap/Emprestimo.svc?wsdl',
           xmls,
  {headers:
  {
    'Content-Type': 'text/xml',
    SOAPAction: 'http://schemas.facilinformatica.com.br/Facil.Credito.WsCred/IEmprestimo/CalcularPrevisaoDeParcelas'}
  }).then(res => {
    console.log(res)
  }).catch(err => {
    console.log(err.response.data)
  })
3
Christian Saiki