Hi all, I'm running SOAP requests to get design IDs for assets to help with an upcoming project launch.
I've set up the SOAP server, got the lookups services all enabled and plugged in, regenerated the SOAP server, and I'm not having any trouble with other functions like creating assets, etc.
I've also included design_lookup_service_requests.js
I know my SOAP config is OK, but every request returns 'Null,' so I'd like to ask any Squiz sages if there's a problem with my request:
function getDesignandLayout(url){ if(!url){ }else{ url = url.replace('http://','').replace('https://',''); var wsdl = xo+'?wsdl', // xo is predefined url to SOAP spBody = GetDesignFromURL(url,'Frontend'), sReque = constructSOAPRequest(spBody, xo);send(wsdl,sReque,function(response){
console.log(response);
});
}
}