proxy

Obtaining the form data, the user input in a simple web form using Squid proxy

Hi, There is a web application server. I need to inspect the content of a form before it is processed on the server. I need to obtain the user's response using Squid Proxy server. Out of the box Squid does not supply access to the POST, PUT or GET of the response, only the GET request. I need the setup in which Squid can get this...

How does Skype manage to connect without setting the required proxy

The situation is as follows: I'm at college and we have to set manual TCP/IP V4 settings, and a proxy to be able to connect to the internet. however.. skype manages to connect and fully work even before i've entered the proxy settings my question is, how does the Skype application do this?. because i'd like to write a program that uses...

property and field are not equals when using nhibernate with lazy true

Hello, I'm having a strange issue when I put lazy true inside a hibernate xml. In my class I have a property like this "Name" and a field like this "name". When I retrive a single record against the database the I receive a classe like this: Property: "john doe" ; field: "null". Explaining, the property and fields are not equals. How t...

Fiddler: Can I redirect outgoing traffic from foreign console app to Fiddler instance (localhost:8888)?

I am looking for a way to forward traffic from an application which goes to the web over port 443 to an instance of Fiddler running on my computer. Fiddler does not see this traffic while a packet trace application verified that the traffic is going out. The application is foreign and I am not able to modify how it requests and it is n...

how to test proxy internet connection using java ?

i have some code to test if the proxy server and port is working ,some of the code like this: System.getProperties().put("proxySet", "true"); System.getProperties().put("https.proxyHost", "localhost"); System.getProperties().put("https.proxyPort", "1234"); System.getProperties().put("http.proxyHost", "localhost"); System.getProperties()...

Correctly setting headers so a file can be downloaded via a proxy using PHP

I'm finding it difficult to phrase this question correctly, let me try to explain our problem... We have an intranet running on Ubunutu box with Apache2/PHP 5.2.4. We have a bit of PHP code that reads a file from a directory that is not publically accessible and output it to the screen (code below): $file_path = '/home/path/to/filenam...

Http 502 Bad Gateway error when accessing a web service

I have a asp.net 4.0 web site and I'm using some external web services to retrieve some data that I display. I have created proxies for those web services using the wsdl tool. I'm setting an url and I'm setting PreAuthenticate = true and Credentials = new System.Net.NetworkCredentials(userName, password) on the web service. I get an e...

Find out the Proxies WPAD is returning

Hi All, our organization uses the WPAD method for setting proxies in IE . Is there a way to actually find out the actual proxy IE is using for a URL ? . i need this to manually set up the proxy and not use the WPAD option . Any help is appreciated . Thanks and Regards ...

Changing Firefox proxy settings?

How can I change Firefox's proxy settings from a script like a vb script or maybe .net? If someone could show me how to do this it would be great. ...

How to enable Map Local over https with Charles Proxy?

I'm using Charles Proxy's handy Map Local tool to develop CSS documents. This way I can immediately see my edits without having to redeploy the whole thing which in the wonderful world of enterprise-level webapps saves a considerable amount of time. I just discovered that Map Local doesn't work with the https protocol. I have no problem...

monitor network traffic and firewall in c#

hi, I'd like to do this application in this scenario 3 pc connected to a gateway server (win 2003 / 2008 server) well I'd like to put into server a program (better if c#) that tell me which sites are visited,(monitor?) if site is into black list I would add a rule to firewall (is possible to exclude site in win2003 server?) For examp...

Use URLLIB without system default proxy Python

I have a small script that needs to communicate with me, it is part of my proxy. The script needs to run before the proxy starts, but the system is set to use the proxy, so it does not go through. How would I use urllib, but not the default proxy? ...

Base64 decode from Buffer to Buffer efficiently in node (node.js)

I currently have a python and C version of wsproxy (WebSockets to plain TCP socket proxy) in noVNC. I would like to create a version of wsproxy using node.js. A key factor (and the reason I'm not just using existing node WebSocket code) is that until the WebSocket standard has binary encoding, all traffic between wsproxy and the browser/...

How to set up Charles proxy for standalone Flash player during FlexUnit integration tests?

I'd like to record the AMF traffic that happens during some of my Flex application unit tests. I am using Maven/flexmojos to compile the unit tests. I've installed Charles proxy and can get it to work from Firefox, but how can I get it to work from the standalone Flash player that flexmojos/FlexUnit invokes to run the integration tests...

Getting list of blocked websites in proxy server

I want to have a diagnostic to ensure that my application will not be blocked to access the remote server because of the proxy setting. Is there a way to get the list of a blocked websites in proxy server from the client (.NET)? I suppose I could use WebRequest and try to call simple echo method in the server and whether I get a 403 or ...

C#, WebProxy, multiple proxies

I have a pool of IP addresses which I have registered with a supplier (firewall access). The IP addressess are for live and test servers and I do development from remote-office. Previously I created a proxy on test server and was using it to access supplier's system. I cannot provide my IP as it is dynamic. The problem now is we instal...

how to you toggle on and off a web proxy in os x from the command line

In OS X, you turn on and off a web proxy from System Preferences > Network > Proxies, by checking Web Proxy (HTTP) and designating the Web Proxy Server etc. and by clicking OK and then "Apply". This is way too many steps. Is there a way to do this all from the command line and a shell script? ...

python semantic proxy/server, wich framework use?

Hello! This year me and a friend have to make a project for the final year of university. The plan is to make a proxy/sever that allows to store ontologies and RDF's, by this way this data is "chained" to a web, so you can make a request for that web and the proxy will send you the homepage with metadata. We have been thinking to use p...

Security Service as Proxy

I've been tasked with creating a Security Proxy service. The idea is that if the backend security provider changes there is no impact on the main application. This ideally is what the backend security provider is for, but I have been tasked with creating a seperate service which will affectively be a proxy to the backend security provide...

How to bundle install a git gem behind a proxy?

I am behind a proxy and I have a git gem in my Gemfile. How can I configure bundler to use git with the appropriate proxy parameters? I already have $http_proxy appropriatelly set, as well as my .gemrc . Still, it doesn't work. ...