The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
1answer
145 views

How can I hide a custom origin server from the public when using AWS CloudFront?

I am not sure if this exactly qualifies for StackOverflow, but since I need to do this programatically, and I figure lots of people on SO use CloudFront, I think it does... so here goes: I want to ...
0
votes
1answer
399 views

In java EE 6: When could I change properties on EntityManager?

I want to use proxy authentication to an Oracle Express database in a simple web app with java EE 6 on Glassfish. Eclipselink 2.3.0 doc here says: If a JEE and JTA managed EntityManager is used, ...
0
votes
1answer
226 views

WSDL2Objc code crash behind authentication HTTP proxy - Help to understand the crash log

I successfully invoke WS from my App with WSDL2Objc Generated code. I sent my application to colleagues for testing purpose and they reported me that the App crashes whenever try to connect to WS. The ...
0
votes
1answer
260 views

Proxy Authorization in actionscript to avoid OS prompt

I have an air app and I want to add proxy-authorization header whenever my client is behind a proxy. I am adding 'proxy-Authoriztion' header in urlRequest headers but still I am getting the OS prompt ...
3
votes
0answers
220 views

Chrome asks for proxy authentication every page I open, IE doesnt

Chrome used to run properly, when all of sudden it started asking for my proxy's username and password on every page I open. After I enter them, I see the page, but then I need to type them again ...
2
votes
0answers
1k views

Apache Reverse proxy with proxy authentication

I have the following setup Box A (192.168.8.180 - running apache reverse proxy) Box B (192.168.8.100:808 - Proxy server to connect to internet) Due to internal reasons, The IP of box A is ...
1
vote
0answers
64 views

Proxy authentication in CFSteam based connection (iOS)

I have implemented CFStream based connection according to CFNetwork programming guide. How do I get credentials for authenticated proxy servers? Is there a way where I can get shared username and ...
1
vote
0answers
73 views

How to run Apache ACE devserver using Proxy

I am trying to start Apache Ace devserver on my machine running on a corporate network that requires proxy authentication, but the server does not starts & it gives Connection timeout error. ...
0
votes
0answers
132 views

Getting Current User's Active Directory Credentials for Proxy Server Authentication in .NET

I have an object that allows for the specification of proxy credentials, which works fine for most proxy servers. However, one particular user needs to pass his Active Directory credentials for proxy ...
0
votes
0answers
52 views

Digest Auth Sceme in Perl

For proxy authentication to get a webpage, I currently use basic proxy auth as below my $request = new HTTP::Request('GET', $url); $request->proxy_authorization_basic( $USERNAME, $PASSWORD ); ...
0
votes
0answers
403 views

Consuming web service with proxy authentication using objective C?

I have built new iphone app where allow the user to consuming a web service. I follow all the instruction in the below site:- http://www.devx.com/wireless/Article/43209/1954 note: I using the SOAP ...