0

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.

6
  • Whether you are using some jquery plugin to call the SOAP web service? If you are using the Jquery plugin, please check the browser compatibility. And. can you post enough code to reproduce the problem? Here are some related links about using ajax to call the web service, you could refer to them: Link 1, Link 2 and Link 3 Commented Apr 22, 2020 at 11:33
  • thanks for your help. Adobe does not support Ajax Commented Apr 22, 2020 at 14:01
  • I did not get any answer yet. I still looking it Commented Apr 23, 2020 at 13:41
  • stackoverflow.com/questions/61369830/… Commented Apr 23, 2020 at 13:42
  • Please check the following threads: thread 1, thread 2 and thread 3, I found these threads from the Adobe Acrobat forum, it seems that this issue is related to Adobe Acrobat, please contact them. Besides, try to open IE browser IE Options, in the Security tab try to disable Protected mode. Commented Apr 24, 2020 at 12:59

0

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.