proxy

Where does Adobe AIR look for the proxy settings in Ubuntu Linux

I am building an AIR app that makes a call to a remote server within the company network The Adobe AIr runtime seems to be looking at the proxy settings of the OS.I have added the location to the No_proxy variable in bashrc under my user id. whenever i call adl to run the code it seems to be accessing the proxy server , causing time o...

Http get post guru help fiddler

I need help. I need log(safe full request) in iis 5(with headers etc) or look on it in proxy,fiddler etc I use fiddler/ I have web config Do you know HOW TO see ALL REQUEST,request from ALL PORTS and applications? Can y recommend me proxy or http debugger? I can not see request to my website in fiddler(((((( Maybe i need add property...

How does Java's Dynamic Proxy actually work?

I understand how to use Dynamic Proxies in Java but what I don't understand is how the VM actually creates a dynamic proxy. Does it generate bytecode and load it? Or something else? Thanks. ...

Getting git to work with a proxy server

How do I get git to use a proxy server? I need to check out code from a git server, it shows "Request timed out" every time. How do I get around this? Alternatively, how can I set a proxy server? ...

WCF Additional Proxy Classes

I have a WCF webservice that has the following service contract [ServiceContract(Namespace = "http://example.org")] public interface IEquinoxWebservice { [OperationContract] Guid Init(); [OperationContract] List<Message> Dequeue(Guid instanceId); [OperationContract] void Enqueue(Guid instanceId, Message message...

ClickOnce Not Obeying Installation Folder for Localhost

I'm testing a ClickOnce application deployment. I have setup a virtual directory on my machine (running IIS). I have specified http://localhost/SampleApplication as the Installation Folder URL in the Publish tab of Visual Studio. However, when I publish the application I get the following error: Warning: Files could not be downloade...

IE7 - proxy - Content-Length populated but no sign of any content !

hello, i am writing a web proxy in C#, and i have noticed a difference between firefox and IE. when my proxy catches requests from IE, i analyse the request - sometimes its a GET and sometimes its a POST. when it is a POST, i analyse the Content-Length field, and make sure this matches the actual content (the body), which is placed aft...

Extending an ActiveXObject in javascript

I want to add some functionality track certain calls to ActiveX object methods in javascript. I usually create my activeX object like this: var tconn = new ActiveXObject("Tconnector"); I need to log every time the open method is called on tconn and all other instances of that activeX control. I cant modify tconn's prototype because i...

How to use a proxy with Google Web Toolkit

I am writing an application using GWT on Windows that needs to do some network calls. I know that if these aren't to the same machine I'm developing on I need to setup a proxy, right? I was just wondering if anyone could help with what my GWT code would look like? What proxy should I use on Windows? Thanks! ...

What is the difference when connecting through a proxy?

I know what a proxy is, and the basics of how they work. What I was wondering is, what is different in a request that goes through a proxy? I know when I configure Firefox I simply configure the proxy in a dialog. When I program in python I can use an environment variable. If I am programming in an environment that doesn't already ha...

Reading https web page data behind proxy java

Hi, I want to read a secure webpage data say https://www.paypal.com, i am behind proxy. I tried with System.setProperty("java.net.useSystemProxies","true"); System.setProperty("htttps.proxyHost","myproxyhost"); System.setProperty("https.proxyPort","443"); URL u = new URL("https://www.paypal.com"); URLConnection uc = u.openConnection(...

Connecting to a .NET webservice via a SOCKS5 proxy

Hi All I'm attempting to connect through a SOCKS5 proxy to a webservice. Currently, my app.config is as follows: <system.net> <defaultProxy enabled="true" > <proxy proxyaddress="http://xxx.xxx.xxx.xxx:yyyy" bypassonlocal="True" /> </defaultProxy> </system.net> This works fine for http proxies, however it just doesn't connect to...

MySQL Proxy Alternatives for Database Sharding

Are there any alternatives for MySQL Proxy. I don't want to use it since it's still in alpha. I will have 10 MySQL servers with table_1 table_2 table_3 table_4 ... table_10 spread across the 10 servers. Each table is identical in their structure, their just shards with different data sets. Is there a alternative to MySQL Proxy, where...

Can you configure mod_proxy as a reverse proxy cache?

I can configure mod_proxy to be a forward proxy cache and I can configure it to be a reverse proxy. Is there any way to configure it to be a reverse proxy cache? I haven't had any luck with that yet. ...

Flex: Duplicating instance of an image

I have a drag and drop handler in my Flex application. The drag proxy, or the 'ghost' image to be displayed while dragging, must be loaded before I drag, and that takes some time. How can I make it load immediately or preload? One solution is to duplicate the image, but as far as I know, image objects can't be duplicated without creating...

C# webclient and proxy server

Hello, I am using a web client class in my source code for downloading a string using http. This was working fine. However, the clients in the company are all connected now to a proxy server. And the problem started from this. When I have tested my application I don't think it can pass through the proxy server, as the exception that k...

c# socket tcp proxy server

Hello, VS 2008 I am using the code below to detect if the client can connect to our sip server. This was working fine. However, the client has changed there network and now my application has to connect to the sip server from behind a proxy server. The error I get is the "A connection attempt failed because the connected party did not...

Is there a way to compute the ViewState MAC?

We are writing a proxy cache for a .NET application, and we are having problems with the ViewState MAC on the proxy. We have disabled the MAC Validation in order to get pass over this issue, but is not the best way to go (for security reasons). Is there a way to compute the ViewState MAC on the proxy in order to pass the validation? ...

How to change Proxy Server by code

Hi, To change Proxy server I have to go to IE->Internet Options->LAN Settings and click on "Use a proxy server for your LAN". I am sure there is some way of doing that by code. Does anybody has any idea how to do it (C#)? Thanks a lot. Sincerely, Vlad ...

Lazy One-to-One using Proxy not working

I've got a one-to-one relation between a dealer and a seller which should be lazy using a proxy. For the side on which the foreign key is defined (the seller, references the dealer), this works fine. But it doesn't work from the other side - the seller is always loaded eagerly. I set constrained="true" as described in "Some explanations ...