Link to home
Start Free TrialLog in
Avatar of kenny_klbn
kenny_klbnFlag for Brunei Darussalam

asked on

ISA 2006 Web proxy error

hi Experts,

Error:
Internet access via ISA2006 yielded proxy error - Temp blocking content-type: text/html
for certain websites (especially for http://www.yahoo.co.jp/)

Log attached Web Proxy Log Fields.xls

Observation from Web proxy log:
HTTP Status Code - 5
Action - Failed
Error information includes – 0x480, 0x400, 0xd00, 0x402, 0xd80, 0xd82, 0x482

Appreciate your help to guide me in the troubleshooting process and identify the cause of error

-EE-Web-Proxy-Log-Fields.xls
Avatar of infoplateform
infoplateform
Flag of Pakistan image

Hope this works ...................................

proxy="http://server:port/"
proxy_username=username
proxy_password=password

worked for me in FC7

...

I resolved the problem using percent encoding. As my FULL email address is my username, the above format would expand as below, with two '@'s, so yum would treat abcd.com as password, which would fail.

http_proxy=http://user@abcd.com:userpasswd@proxy.foo.com:portnumber

I encoded the first '@' as '%40', which worked. I specified the http_proxy and ftp_proxy variables in /etc/bashrc and exported them as follows:

http_proxy=http://user%40abcd.com:userpasswd@proxy.foo.com:portnumbe r

Yum works fine. But Yumex doesnt, as it relies on /etc/yum.conf, which does NOT have the proxy information. If proxy is mentioned in /etc/yum.conf, it gives non-numeric port error. And Yumex probably doesnt handle either two '@'s or percent encoding in URL, when declared in it's own configuration.

If someone's proxy username or password contains any special characters, percent encoding might work.



http://forums.fedoraforum.org/archive/index.php/t-742.html
Avatar of kenny_klbn

ASKER

hi infoplateform,

I did not understand your explanation and was not able to correlate this to ISA 2006.
ASKER CERTIFIED SOLUTION
Avatar of elawad
elawad
Flag of Lebanon image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
hi elawad,

I will try as suggested and revert back once i have results.