我需要在axios
应用程序中使用React
向SOAP端点发出请求。因此,我需要在请求中传递xml数据并接收响应中的xml数据。
我使用了带有json数据的axios post但是如何在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有任何经验,请分享。
答案 0 :(得分:7)
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)});
This code help to make soap request
答案 1 :(得分:3)
我使用了@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)
})