Hi Team,
We are trying to integrate an application for account provisioning using its REST interface. The webservice connectior is being used for this integration. The target application has to be reached from the VA, via a proxy which requires authentication. our VA is a proxy VA.
So, just to test the connectivity, we configured the proxy.yaml with proxy username and password. and invoked the Curl command to generate the Oauth token from that target application. this is working absolutely fine.
But, when we configure the source in the IDN connections, and doing a test connection. its returning error 407 Which is unauthorized proxy.
The web service connection to the target application is NOT considering the proxy configuration in proxy.yaml.
is there anyway, we can enable the webcervice connector to use the proxy conf in teh proxy.yaml?
here is the working proxy.yaml
Uncomment the lines below and enter URL values, with port for both the http and https proxy
Note: You must reboot the VA for these settings to take effect (‘sudo restart’)
http_proxy: http://:@:8080/
http_proxy: https://:@:8080/
error from webservice connector Test connection call:
Error Received:
Exception occurred in Test Connection. Error: Exception occurred while generating access token: Unable to generate access token. Response returned: <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html> <!-- FileName: index.html Language: [en] --> <!--Head--> <head> <meta content="text/html; charset=UTF-8" http-equiv="Content-Type"> <meta http-equiv="X-UA-Compatible" content="IE=7" /> <title>McAfee Web Gateway - Notification</title> <script src="/mwg-internal/de5fs23hu73ds/files/javascript/sw.js" type="text/javascript" ></script> <link rel="stylesheet" href="/mwg-internal/de5fs23hu73ds/files/default/stylesheet.css" /> </head> <!--/Head--> <!--Body--> <body onload="swOnLoad();"> <table class='bodyTable'> <tr> <td class='bodyData' background='/mwg-internal/de5fs23hu73ds/files/default/img/bg_body.gif'> <!--Logo--> <table class='logoTable'> <tr> <td class='logoData'> <!--<a href='http://www.mcafee.com'>--> <!--<img src='/mwg-internal/de5fs23hu73ds/files/default/img/logo_mwg.png'>--> <img src='/mwg-internal/de5fs23hu73ds/files/default/img/denner_logo_de.gif'> <!--</a>--> </td> </tr> </table> <!--/Logo--> <!--Contents--> <!-- FileName: authenticationrequired.html Language: [en] --> <!--Title--> <table class='titleTable' background='/mwg-internal/de5fs23hu73ds/files/default/img/bg_navbar.jpg'> <tr> <td class='titleData'> Authentication Required </td> </tr> </table> <!--/Title--> <!--Content--> <table class="contentTable"> <tr> <td class="contentData"> You must be authenticated to access this URL. </td> </tr> </table> <script language="javascript" type="text/javascript"> urlprotocol = "https"; statuscode=407; if(statuscode==401 && urlprotocol == "ftp"){ document.write("<form name=\"ftpform\" method=\"get\" action=\"\">"); document.write("<table class=\"contentData\">"); document.write("<tr><td class=\"contentData\" colspan=2>Please enter your credentials in the form below and click \"Access FTP\" button if your browser doesn't present authentication promt for FTP sites.</td></tr>"); document.write("<tr><td class=\"contentData\">Username:</td><td><input type=\"text\" id=\"ftpUsername\" name=\"ftpUsername\" size=40 /></td></tr>"); document.write("<tr><td class=\"contentData\">Password:</td><td><input type=\"password\" id=\"ftpPassword\" name=\"ftpPassword\" size=40 /></td></tr>"); document.write("<tr><td class=\"contentData\" colspan=2 align=center><input type=\"button\" onclick=\"redirectToFTP();\" value=\"Access FTP\" /></td></tr>"); document.write("</table>"); document.write("</form>"); } function redirectToFTP(){ var username=escape(document.getElementById("ftpUsername").value); var password=escape(document.getElementById("ftpPassword").value); location.href = "ftp://"+username+":"+password+"@svps00707.zh-denner.net.swiss:50000" } </script> <!--/Content--> <!--Info--> <table class="infoTable"> <tr> <td class="infoData"> <b>URL: </b><script type="text/javascript">break_line("https://svps00707.zh-denner.net.swiss:50000");</script><br /> </td> </tr> </table> <!--/Info--> <!--/Contents--> <!--Policy--> <table class='policyTable'> <tr> <td class='policyHeading'> <hr> <a href="http://wpad.zh-denner.net.swiss/DennerAG_AllgemeineBenutzungsordnung.pdf" target="_blank">Denner AG - Allgemeine Benutzungsordnung</a> </td> </tr> </table> <!--/Policy--> <!--Foot--> <table class='footTable'> <tr> <td class='footData'> generated <span id="time">2023-10-11 11:54:04</span> by McAfee Web Gateway (Proxy IP: 10.134.9.116, SVID00820) <br /> Apache-HttpClient/4.5.13 (Java/11.0.20.1) </td> </tr> </table> <!--/Foot--> </td> </tr> </table> </body> <!--/Body--> </html>