Hi All,
I am doing a soap call on a button click in OLD UI its working fine but in NEW UI its getting failed checked that the request itself not adding while executing the request...
Request :{"url":"https://mingle-ionapi.inforcloudsuite.com/yyyyyyyyyyyyyyyyyyyyyyyy","method":"POST","data":"<?xml version="1.0" encoding="utf-8"?><s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Body xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><VertexEnvelope xmlns="urn:vertexinc:o-series:tps:7:0"><Login><TrustedId>xxxxxxxxx</TrustedId></Login><FindTaxAreasRequest><TaxAreaLookup><PostalAddress><StreetAddress1>xxxxxx</StreetAddress1><StreetAddress2></StreetAddress2><City>xxxxx</City><MainDivision>xx</MainDivision><PostalCode>xxxxxxxx</PostalCode><Country>xx</Country><SubDivision></SubDivision></PostalAddress></TaxAreaLookup></FindTaxAreasRequest></VertexEnvelope></s:Body></s:Envelope>","headers":{"Content-Type":"text/xml;charset=utf-8","SOAPAction":"","Cache-Control":"no-cache","Pragma":"no-cache","Expires":"-1"},"responseType":"xml"}
var ionAPiRequest = {
url: this.vertexUrl,
method: "POST",
data: strXml,
headers: {
'Content-Type': 'text/xml;charset=utf-8',
'SOAPAction': '',
'Cache-Control': 'no-cache',
'Pragma': 'no-cache',
'Expires': '-1',
// 'Accept': 'text/xml;charset=utf-8'
},
responseType: 'xml'
};

