Questions tagged [proxy]

A device or program that stands between two or more interconnected programs or devices. Use [dynamic-proxy] for the Java class, [proxy-pattern] for the design pattern, [es6-proxy] for the JavaScript Proxy object.

A proxy server is a server that acts as an intermediary for requests from clients seeking resources from other servers. A client connects to the proxy server, requesting some service, such as a file, connection or a web page available from a different server, and the proxy server evaluates the request as a way to simplify and control its complexity.


Purpose

Many users worry about what kind of information can be traced back to them. An Internet proxy server can be used as an intermediary so that the sites never directly connect to the host network. Some websites block certain Internet users by geography, so using a Web proxy located in the Web host's country will allow foreign users to use the website.


References

19642 questions
6
votes
1 answer

Nginx proxy with Google OAuth 2.0

I have an Ubuntu 14.04 server and I have a meteor application that runs at localhost:3000 on this server. The public FQDN of my server is sub.example.com. The meteor application uses Google OAuth 2.0, I have the following configured in the Google…
mthpvg
  • 3,789
  • 3
  • 26
  • 34
6
votes
2 answers

How to parse a raw HTTP response as HttpListenerResponse?

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:…
Edgar
  • 4,348
  • 4
  • 40
  • 59
6
votes
1 answer

Using a proxy for NSURLConnection

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…
SideSwipe
  • 61
  • 1
  • 2
6
votes
1 answer

Creating an MVC Controller Proxy for a Web API Controller

I have an MVC project that is exposed externally. I have an internal Web API project. For reasons beyond my control, I cannot expose the Web API project directly and I cannot add Web API Controllers to my MVC project. I need to create an MVC…
jkruer01
  • 2,175
  • 4
  • 32
  • 57
6
votes
1 answer

How to setup proxy in Swift?

I have just started using iOS technologies, and developing an iPhone application using Swift. I am trying to query server using following code: var url = NSURL(string: "http://someurl:8080/?type=Refresh") var request = NSURLRequest(URL: url!) var…
user2312896
  • 389
  • 3
  • 14
6
votes
3 answers

Transparent proxying - how to pass socket to local server without modification?

I have a program that listens on port 443 and then redirects to either an SSH or HTTPS local server depending on the detected protocol. The program does this by connecting to the local server and proxying all data back and forth through its own…
Luca Farber
  • 96
  • 1
  • 3
6
votes
1 answer

Grails: simulate a hibernate proxy for testing

When using grails with a domain class hierarchy similar to the following: abstract class Vehicle { ... } class Car extends Vehicle { ... } class Motorcycle extends Vehicle { ... } and a service as the following: class VehicleService { def…
Deigote
  • 1,721
  • 14
  • 15
6
votes
1 answer

How Proxifier works?

How does proxifier works ? Eg- My college doesn't allow students to connect to torrent sites.But when we put a specific i.p address in proxifier and set the "protocol type" to HTTPS in proxifier, torrent sites open.How does it happen.Just this one…
Android007
  • 81
  • 1
  • 5
6
votes
0 answers

Android Emulator - How to set bypass proxy

We have an application which need to connect to 2 server. One of those 2 only has pulbic ip address while other one only has private ip address. (Asking for both to have public or private now is impossible) To connect to public address, we need to…
mameo
  • 639
  • 8
  • 25
6
votes
3 answers

/signalr/hubs 404 not found after update to MVC5

SignalR was working while project was ASP.NET MVC3. Now i upgraded it to MVC5 (not so easy to do, I must tell you). Then I noticed that signalR was not working. I went by the book, reinstalled SignalR to version 2.1.0, installed OWIN (must-have for…
Milos Mijatovic
  • 955
  • 1
  • 17
  • 34
6
votes
2 answers

What is the server URL for Notepad++'s Plugin Manager?

I'm not able to use Notepad++'s update or plugin manager. I suspected it was a proxy problem, so I added my proxy to the plugin-manager settings but it still doesn't work. Then I contacted my network admin and he said that he needs the server's URL…
Razvan
  • 326
  • 4
  • 13
6
votes
1 answer

ember-cli http-proxy not working

I'm an ember beginner, using ember-cli v0.0.47 and struggling to get http-proxy to work. I am trying to make an ajax request to a remote OGC CSW server. The request is a normal HTTP GET request with some additional parameters and the expected…
6
votes
2 answers

Post request with body_stream and parameters

I'm building some kind of proxy. When I call some url in a rack application, I forward that request to an other url. The request I forward is a POST with a file and some parameters. I want to add more parameters. But the file can be quite big. So I…
Damien MATHIEU
  • 31,924
  • 13
  • 86
  • 94
6
votes
0 answers

How to send django email via proxy with authentication

I am trying to send an email from a work PC that is behind a proxy. In settings.py my code looks like this: #email setup EMAIL_USE_TLS = True EMAIL_HOST = 'smtp.gmail.com' EMAIL_HOST_USER = 'username@gmail.com' …
Jamneck
  • 443
  • 8
  • 14
6
votes
2 answers

rtsp over http over a proxy

I am trying to fetch an RTSP stream over HTTP using a proxy. The behavior of the Real client seems to be a bit hectic: it tries all the possible ports, methods and protocols at once. The only thing that should work is HTTP GET over port 80. Such a…
user29402
  • 123
  • 1
  • 3
  • 8
1 2 3
99
100