Questions tagged [webproxy]

136 questions
5
votes
0 answers

How to cache and returning same response using web proxy (charles or any other tool)

Is there any option in charles proxy or some other tool, where I can save/cache all the request and next time when same request comes, it returns same response without forwarding request.
hridayesh
  • 1,123
  • 1
  • 14
  • 36
5
votes
2 answers

Charles is not capturing HTTP requests from a Java client (client is based on spring rest template) in my MAC pro

Environment: MAC Proc I have looked at HTTP Traffic monitoring issue when using MonoTouch, HttpClient and Charles Proxy. Although my question is similar to it, my application is using RestTemplate…
Coder
  • 51
  • 1
  • 4
4
votes
1 answer

SignalR issues with WebProxies or Accelerators?

Are there any known issues or incompatibilities with SignalR with a WebProxy or WAN Accelerators? I'm considering this technology for something that will be used across many different network topologies and devices
makerofthings7
  • 60,103
  • 53
  • 215
  • 448
4
votes
1 answer

Best practices for URL retrieval service? How to avoid being attack vector?

I'm tinkering with a web tool that, given a URL, will retrieve the text and give the user some statistics on the content. I'm worried that giving users a way to initiate a GET request from my box to any arbitrary URL on the net may serve as a vector…
Anirvan
  • 6,214
  • 5
  • 39
  • 53
4
votes
1 answer

How do I specify a web proxy when using RestEasy client proxy?

I am using a RestEasy ProxyFactory to connecting to a REST service. However I need to connect via a web proxy. How do I specify the proxy connection details? At the moment I am creating the instance using: MyInterface instance =…
Jeff James
  • 71
  • 1
  • 4
4
votes
2 answers

Consume restful webservice through web proxy

I'm trying to consume a restful webservice in java using the Apache Wink framework through my school web proxy requiring authentification ClientConfig clientConfig = new…
Michael Pereira
  • 1,263
  • 1
  • 17
  • 28
3
votes
1 answer

Problems setting proxy on HttpClient

In my C# application I'm trying to send an HTTP request to an external company outside of our firewall. When I use the below code, I'm getting back an error that the remote site has forcibly closed the connection. I'm assuming I'm doing something…
Gargoyle
  • 9,590
  • 16
  • 80
  • 145
3
votes
0 answers

SignalR behind web proxy for portable class library

I am developing a PCL Library that will be used for Xamarin/iOS to access a SignalR backend. Everything worked fine, until I tried to run the app behind a web proxy, which resulted in "Connection refused" exceptions. Normally, SignalR client…
ccgre
  • 75
  • 6
3
votes
2 answers

Use Proxy in C# Portable Class Library (Microsoft.Net.Http)

I would like to know how to use a Proxy in a HttpWebRequest within a Portable Class Library (PCL). I read here that the IWebProxy interface did not have any implementation within the Microsoft.Net.Http library. I need my HttpWebRequest to use a…
user2465083
  • 595
  • 3
  • 12
3
votes
1 answer

Limit on the number of simultaneous requests using SP.WebProxy

I've created a SharePoint hosted app and have just added a license check to the app. The license check is done by making a call to a REST endpoint using SP.WebProxy. The app is implemented as an App Part, and as such there can be many instances of…
3
votes
2 answers

C# HttpWebRequest request through proxy

I'm trying to make my program work through proxy but it doesn't want to (System.Net.WebException: The operation has timed out). Without proxy everything is fine Here is a code: string proxy = "154.46.33.157"; int port = 8080; …
Korbaned
  • 33
  • 1
  • 5
3
votes
1 answer

How to prompt the default windows credentials dialog form for internet proxy in .NET?

My .NET app uses a WebService and, in some clients, I am getting HTTP 407 (proxy authentication required). So I need to ask the user to input his user/password credentials. So, how to use the default Windows dialog? (see below) Is it possible in…
Daniel Silveira
  • 41,125
  • 36
  • 100
  • 121
3
votes
2 answers

why won't WebProxy BypassProxyOnLocal work for me?

I'm trying to get HTTP calls I'm making from C# .NET to a local address (localhost:3000) to use the proxy I set (so I can go through fiddler). Using the below WebProxy approach works if I point the target URL to a non-local address, however I need…
Greg
  • 34,042
  • 79
  • 253
  • 454
3
votes
3 answers

How to by pass network using WebProxy?

If I want to bypass a Network like 192.168.1.0/24 using webProxy is there any way? WebProxy proxy = new WebProxy(); proxy.ByPassList = ???
shahjapan
  • 13,637
  • 22
  • 74
  • 104
3
votes
1 answer

How do I setup a web proxy service in Mac OS X Mountain Lion Server?

I am trying to utilize the configuration files in Mac OS X Server instead of directly modifying Apache's site file to add a reverse proxy entry for the eXist XML database. The mapping should be from [http://example.com/exist] to…
Loren Cahlander
  • 1,257
  • 1
  • 10
  • 24
1
2
3
9 10