I'm using the below method to access my web service it's working fine if I'm accessing my web service from the Adobe reader but If i'm uisng it from Internet explorer it's give me the error
"Not Allowed Error Security Setting prevent to access this method". I have to use this from Internet explorer.
enter code here var cURL ="http://localhost:port/WebService.asmx?WSDL";
var oParam = "Location";
SOAP.wireDump = true;
var oAuthenticator = { UsePlatformAuth:"true"};
var ver = SOAPVersion.version_1_2;
var oRequest = { soapValue:"<Query xmlns='http://tempuri.org/'>" +
"<QueryName>" + oParam + "</QueryName>" +"</Query>"};
var cAction = "http://tempuri.org/Query";
var response = SOAP.request(
{
cURL: cURL,
oRequest: oRequest,
cAction: cAction,
oAuthenticate:oAuthenticator,
bEncoded:false,
cVersion:ver});
I have tried Soap. connect method and getting the same error.
I have added the WSDL site in IE as trued sites as well as added the site the adobe setting.