I have to write an application that is essentially a proxy server to handle all HTTP and HTTPS requests from our server (web browsing, etc). I know very little C++ and am very comfortable writing the application features in C#.
I have experimented with the proxy from Mentalis (C# socket proxy) which seems to work fine for small webpages...
How can i detect an elite proxy?
it's ok if i don't get them all, since it won't be possible
but atleast most of them?
...
I'm having difficulty loading an image from a URL, when the request goes through a proxy. I have a url that will generate an image which I use to load a BitmapImage ( code below ).
This works great for any of my users that connect directly to the internet, however, if the user is behind a proxy, it will not work. Any ideas would be gr...
Is there any way to get the content of a webfile (namely a .html Document) using a proxy, which is not defined in the system settings? I know that NSURLConnection is the right way to download a web file into a variable and not into a file (for which we should use NSURLDownload), but I don't find a way to use a proxy for it.
Are there som...
hi, i'd like to use TOR/polipo behind a proxy like below
ME --> POLIPO --> TOR --> PROXY SQUID --> WEB
Couldn't find how to do that. When specifying a parent proxy for polipo, it goes straight for it without using TOR so my IP Adress doesn't change.
Please any idea is welcome.
...
I'm researching how to code an iPhone app that needs to connect to an online service to get data. The online service only provides access to specified IP addresses or ranges, so iPhones won't be able to connect directly, and the request will have to go through a server. I looked into setting up my own forward proxy server (which the ser...
There's another question that answers this though it doesn't specify anything regarding proxy authentication.
Its solution is
(setq url-proxy-services '(("no_proxy" . "work\\.com")
("http" . "proxy.work.com:911")))
...
I have a complicated set up involving an F5 Load Balancer and a server running 3 applications on tomcat 6. For reasons I won't go too deep into, I had to set up my applications like this:
The Load Balancer has the certificates for the domains:
appA.mydomain.com
appB.mydomain.com
appC.mydomain.com
Between the load balancer and the appl...
Here's the scenario:
I'm setting up a site where I need to do cross-domain XMLHttpRequests, and the external feed is XML.
Because of some restrictions on the web server, I need the proxy to be written in ColdFusion. The URI that needs to be proxied is dynamic, but a set URI is good for now.
I've never written a single line in ColdFusi...
Is there a convenient way to transmit an object including its code (the class) over a network (not just the instance data)?
Don't ask me why I want to do this. It's in an assignment. I asked several times if that is really what they meant and the didn't rephrase their answer so I guess they really want us to transmit code (not just the ...
So I wrote this program to send a group of my friends a text message.
It works fine at home when I try to use it at work it doesn't work. I get an error message "Failure Sending Mail".
We are using a intercepting proxy at work. I though/hoped that everything would just work, clearly not.
So what do I need to do, I've never programme...
Hi,
I have a setup with a .NET WCF Service hosted on IIS.
The client apps are connecting to the service through a set of ISA proxy's. I don't know how many and don't know about their configuration etc.
In the client apps I open a client to the service and make several calls via the same client.
It works great in my office, but when I d...
Hi,
I'm looking for an HTTP Proxy/GUI combination that should be installed locally on my Windows PC. The UI should display something similar to Firebugs "Network" tab, showing request/response headers and content as plaintext.
It would be cool if I could attach requests to different 'nodes' for later comparison, similar to what you can...
This is a followup for this question.
When I used the proxy flag with mod_rewrite, I did not know all of its effects. Now I have two more problems, which need to be fixed!
The main problem is with user IP addresses, everyone appears to use the server IP. I can't trust http-x-forwarded-for because it is easy to forge headers, and the RE...
I have a WordPress blog running on lighttpd-1.4.19, listening at www00:81. On the same host, apache-2.2.11 listens on port 80, which creates a proxy connection from http://blog.mydomain.org:80 to http://blog.mydomain.org:81 (both being the same physical machine).
The Apache virtualhost looks as follows:
<VirtualHost *:80>
ServerNam...
I want to download few HTML pages from http://abc.com/view_page.aspx?ID= The ID is from an array of different numbers.
I would be interested in visiting multiple instances of this URL and saving the file as [ID].HTML using different proxy IP/ports.
I want to use different user-agents and I want to randomize the wait times before each...
Suppose you have a generic interface and an implementation:
public interface MyInterface<T> {
void foo(T param);
}
public class MyImplementation<T> implements MyInterface<T> {
void foo(T param) {
}
}
These two types are framework types I provide. In the next step I want allow users to extend that interface as well as redecla...
I need to allow the user to change members of two data structures of the same type at the same time. For example:
struct Foo { int a, b; }
Foo a1 = {1,2}, a2 = {3,4};
dual(a1,a2)->a = 5;
// Now a1 = {5,2} and a2 = {5,2}
I have a class that works and that change first a1 and then copy a1 into a2. This is fine as long as:
the class ...
If I have a raw HTTP response as a string:
HTTP/1.1 200 OK
Date: Tue, 11 May 2010 07:28:30 GMT
Expires: -1
Cache-Control: private, max-age=0
Content-Type: text/html; charset=UTF-8
Server: gws
X-XSS-Protection: 1; mode=block
Connection: close
<!doctype html><html>...</html>
Is there an easy way I can parse it into an...
Hi guys,
I'm wondering if it's possible to load assets through proxy in flex,
for example to load image.
As far as I discovered there isn't such way, but I thought it wouldn't be any harm to examine your huge knowledge also :).
Thanks,
Royee
...