Question
· Jun 22, 2020

CORS ORIGIN ERROR: Consumer an Soap services from xmlHttpRequest

Hi, 

call my web service (%SOAP from caché 2012 v) from XmlHttpRequest client generate  cors policy error, 

Any one help me how i can allow origin in headers requeste.

Thank you.

Discussion (12)1
Log in or sign up to continue

not work, 

I can use this in %Soap.WebService ? bellow my request from frontend client

=============================================================

function soapRequest(){
        var soapMessage = '<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:abon="http://namespace">'+
                            ' <soapenv:Header/>'+
                                   '<soapenv:Body>'+
                                      '<abon:ActivationContrat>'+
                                         '<abon:PUBLISH>'+
                                            '<abon:HEADER>'+
                                               '<abon:SENDER_ID>?</abon:SENDER_ID>'+
                                               '<abon:RECEIVER_ID>?</abon:RECEIVER_ID>'+
                                               '<abon:COMPANY>?</abon:COMPANY>'+
                                               '<abon:COUNTRY>?</abon:COUNTRY>'+
                                               '<abon:DATE>?</abon:DATE>'+
                                              ' <abon:MESSAGE_TYPE>?</abon:MESSAGE_TYPE>'+
                                           '</abon:HEADER>'+
                                           '<abon:CONTENT>'+
                                               <!--Zero or more repetitions:-->
                                               '<abon:CONTRAT>'+
                                                  '<abon:STORE>?</abon:STORE>'+
                                                  '<abon:CASH_DATE>?</abon:CASH_DATE>'+
                                                  '<abon:CASH_BOX>?</abon:CASH_BOX>'+
                                                  '<abon:CASH_TICKET>?</abon:CASH_TICKET>'+
                                                  '<abon:CASH_AMOUNT>?</abon:CASH_AMOUNT>'+
                                                  '<abon:EAN>fromtest</abon:EAN>'+
                                                  '<abon:ACTIVATION_CODE>3058030416</abon:ACTIVATION_CODE>'+
                                               '</abon:CONTRAT>'+
                                            '</abon:CONTENT>'+
                                         '</abon:PUBLISH>'+
                                      '</abon:ActivationContrat>'+
                                   '</soapenv:Body>'+
                                '</soapenv:Envelope>';
                                
            function createSoapRequest(method,url){
                var xhr = new XMLHttpRequest();
                if ("withCredentials" in xhr){
                    console.log("with crediential ok");
                    xhr.open(method,url,false);
                    console.log("opend");
                }/*else if (typeof XDomainRequest != "undefined"){
                    console.log("xDomaineRequest ok");7
                    
                }
                else{
                    console.log("CORS not supportes");
                    xhr=null;
                }*/
                
                
                return xhr;
            }
            
            var xhr = createSoapRequest("POST","http://vmw-app-dev:57772/csp/vdbcen/API.MSP.AbonContract.cls?wsdl");
            if (!xhr){
                console.log("XHR iccue");
                return;
            }
            
            xhr.onload =  function(){
                var result = xhr.responseText;
                console.log(result);
            }
            
            xhr.setRequestHeader("Content-Type","text/xml");
            xhr.send(soapMessage);

========================================================