cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
804
Views
0
Helpful
2
Replies

Microsoft Report Builder not working via S160

broekman001
Level 1
Level 1

Hello all,

My company uses a external website, that's using Microsoft Report Builder.

Problem is I don't get this website working via our proxy (S160), when I disable the PAC file and I give the user direct access it's working well (but this is not a option).

So I made a exclusion in our firewall that this website is allowed to go directly to the internet, and in the PAC file I also made a exclusion.

This are the rules, I've added:

if (shExpMatch(url, "http://*.rblablae.nl")) { return proxy_no; }

if (shExpMatch(url, "https://*.rblablae.nl")) { return proxy_no; }

After I made the changes it still wasn't working, so I looked at "Web Tracking" in the S160.

I figured out the IronPort still was used, even when I made a proxy exception.

In the log I found, that the following is used:

tunnel://secure.rblablae.nl:443

I think it uses SSH over HTTPS for authentication, and there it fails.

So now I also added:

if (shExpMatch(url, "tunnel://*.rblablae.nl")) { return proxy_no; }

Even not sure if this is possible to add in the PAC file, but it's not working.

So my question is, anybody knows what I'm doing wrong or what I can try?

Thanks in advance!

Best regards,

Danny

2 Replies 2

Chris Illsley
Level 3
Level 3

Can't you leave out the http from the PAC file entry?

if (shExpMatch(url, "*.rblablae.nl")) { return proxy_no; }

Thanks

Chris

Alternativley do a grep from the CLI and see if you can see what application is blocking.  Feel free to paste the line here if you need.

Cheers

Have tried adding rblablae.nl to the Bypass List (Web Security/Bypass Settings)?

That will tell the WSA to just pass the traffic, and not mess with it.

Ken