proxy

ruby gem install error on MAC pc due to behind corporate proxy

Hi, I am trying to install ruby gems on my MAC (OSX 10.5.1) behind corporate firewall proxy but i am getting error for connection refuse. kindly help me out to resolve this problem. Thanks & regards Ravi ...

Ruby gem installation problem on MAC which is behind firewall

Hi , Please provide me solution for the problem of, 1) How to install ruby gems on MAC PC(OSX 10.5.1) which is behind corporate firewall . Regards, Sun ...

Convert HTTP Proxy to HTTPS Proxy in Twisted

Hey, Recently I have been playing around with the HTTP Proxy in twisted. After much trial and error I think I finally I have something working. What I want to know though, is how, if it is possible, do I expand this proxy to also be able to handle HTTPS pages? Here is what I've got so far: from twisted.internet import reactor from twist...

Calling COM visible managed component from managed code through COM wrapper

Hi, I have a 3rd party component, lets say FIPreviewHandler to handle preview, which implements IPreviewHandler. FIPreviewHandler is implemented as a Managed Component, and uses the IPreviewHandler interface and related interfaces through means of an interop. FIPreviewHandler is registered using regasm.exe as COM. I have a client appli...

What to do with proxy class copy-assignment operator?

Consider the following proxy class: class VertexProxy { public: VertexProxy(double* x, double* y, double* z) : x_(x), y_(y), z_(z) {} VertexProxy(const VertexProxy& rhs) : x_(rhs.x_), y_(rhs.y_), z_(rhs.z_) {} // Coordinate getters double x() const {return *x_;} double y() const {return *y_;} double z()...

Overcoming limitations of firewalls

If a regular internet user wishes to contact a TCP service on their computer but without having to go through the hassle of firewall translation I think I'm right in saying that the 'best' way to do this is by having a 3rd party in the middle that will accept connections from both the user's home computer and their travelling computer an...

How to open socket thru proxy server in .Net C#?

How to open socket thru proxy server in .Net C#? So I opened up a socket on my machin. there are no nats between pe and proxy server. I connected to proxy server. How now to make Requests from global IP world that know that proxy server adrress be redirected or transfered by proxy server to me? Any libs blog articles? Please help ...

Using Flash/SWF applications to retrieve a user's "real" IP address

I'm almost certain this is possible, but am not sure how to go about it. Basic idea: User visits a website using a HTTP/socks proxy. Hidden .swf file is embedded on the site which, when loaded by the client, sends data back to the web server, and that allows the IP to be logged along with a corresponding session ID of some sort which ti...

Selenium: Can I tunnel through an *External* HTTP/SOCKS proxy over Firefox?

I know Selenium Server acts AS a proxy. But I want to know if I can instruct a test to connect through to either a SOCKS or plain http proxy, eg: Tuenneling through an external Proxy. (It's so hard to search for because the word proxy just shows how Selenium works, not if it supports this feature....) ...

C# webrequest sock4 proxy support

Ok i am really frustrated right now. I cant find a simple method to use socks4/5 proxy's in c#. Is there anyone that can help me? tried libCurl.net but that is never updated and in a very old useless state. Tried a 1000+ solutions so if anyone can help me that would be great or maybe tell me a different wrapper/lib to use. Cheers. ...

Publicly available Web proxy forward cache logs/data sets

I'm looking to do some analysis on HTTP requests that occur between clients and web servers. Are there any recent (at least within last 4 years) publicly available data sets of web proxy forward cache logs, such as those recorded by a Squid proxy? I'm most interested in forward cache HTTP log data - so coming from a cache that sits bet...

EndpointNotFoundException 'Could not connect' because 'the target machine actively refused it' Connecting through Fiddler

I am encountering an issue trying to route my WCF client requests through Fiddler. I have searched the web high and low, and found only two references to Fiddler having problems when WCF services are configured to listen on IPv4, but IPv6 is enabled. However, while my issue is similar, it does not seem to be my problem. I am encounterin...

Error 407 when calling WCF web service via a Windows-authenticated proxy

I have the following setup: Server machine running a WCF service exposed via an IIS application that requires Windows authentication. A proxy server (Squid) requiring Windows authentication. A client machine running a Windows service which tries to make a connection to the WCF service through the proxy server. The service is set with a...

What is my best option for submitting code to github from within an NTLM firewall?

Hi all, I'm thinking of using github to more nicely organise some of my code projects (i'm on a mission to implement all the major crypto algorithms in c, c#, js, golang, and ruby - but that's another story...). But i'm stuck behind an NTLM firewall. Any suggestions for how i'd check code in? Some kind of configuration of tortoisegit an...

System.Deployment.Application ApplicationDeployment with a Proxy in C#

Hi All I am using ClickOnce for a C# Windows Forms application, and want to allow people to update the software by clicking an Update button, which will check the server online to see if there are any updates. I am using the following method (not exact, but same principle): ApplicationDeployment ad = ApplicationDeployment.CurrentDeploy...

RubyGems behind a proxy: InvalidArgument

The other question (here: ) had solutions that I tried but they didn't work. I am behind a proxy at work, and can't figure out how to get RubyGems to work through it. Here's some output to help: josiah@BOX-OF-DOOOM:/etc$ export HTTP_PROXY=http://jkiehl:[email protected]:80/ josiah@BOX-OF-DOOOM:/etc$ sudo gem i c...

Is there .NET library for email sending via PROXY ?

I want to send email via SMTP via proxy on visual studio. Is there any email sending library which would support proxy ? ...

internal routing / proxy

I have 1 computer with 1 network card installed. The network card has 10 IP addresses assigned to it. I have a windows desktop application running there. The application is basically a webbrowser making a call to 1 specific website. What I want to achieve is for the webbrowser to change its source IP address (round-robin through the IP...

ClickOnce with a Proxy server (Corporate Firewall), significant delays in checking after .application loaded

Sometimes, when i click on my app link, it takes about 30 seconds before the app starts loading, while it's in the verifying stage. Other times, with the same install, one which i have loaded and used many times, it takes no time at all. Why? What can i change about the deployment to stop this? Please note that i have no admin access...

How to access dynamic proxies from eclipse network settings?

Hi I am working on a eclipse plugin which needs to connect to a remote server. I am trying to use the eclipse network settings to get the proxyHost and Port. I have been able to get the "Manual" settings proxy using the IProxyService and IProxyData classes and also "Native" proxy settings if set in the local machine. The problem occurs ...