Questions tagged [webproxy]

136 questions
0
votes
1 answer

Use fiddler to monitor C# requests sent through proxy

Issue: Consider the following working code. System.Net.WebProxy proxy = new System.Net.WebProxy(proxyServer[i]); System.Net.HttpWebRequest objRequest = (System.Net.HttpWebRequest)System.Net.WebRequest.Create(https_url); objRequest.Method =…
kona
  • 139
  • 8
0
votes
1 answer

Fiddler to replay HTTPS requests

Can HTTPS request be replayed using Fiddler/TamperData, probably due to poor handling of login process? Once I logout of my system (https), I am able to login back using replay. Simon Buchan has already mentioned that HTTPS cannot be replayed. Ref:…
linoox
  • 97
  • 3
  • 10
0
votes
0 answers

What API does iOS have to write Web proxy?

Does IOS provide API to write a proxy program for IPad /IPhone to process web requests from Safari, Chrome, Firefox and also apps that work with UIWebView? Can this proxy also work as a daemon? I need this proxy to periodically create web usage…
Anton Ashanin
  • 1,817
  • 5
  • 30
  • 43
0
votes
1 answer

can we set our ip address to be used in Perl SSLeay request?

I'm modifying CGIProxy to be enable to pass client IP address to remote/target, so remote will identify that the request is from client (not proxy server). Is it possible to do this thing? CGIProxy uses SSLeay for sending request to SSL server. But…
sigeje
  • 328
  • 3
  • 8
0
votes
2 answers

How can I simplify my codeblock?

I have some code that seems kinda bulky. Is there a way of instead of having two try statements, have only one with if statements inside? private bool Method1() { _responseValue = null; { if (_httpProxy != null) { //start…
Ben Scotch
  • 343
  • 9
  • 19
0
votes
1 answer

HttpWebRequest not authenticating against proxy server using kerberos

I am using the following code to get load xml from a webpage however I keep receiving the error "The remote server returned an error: (407) Proxy Authentication Required." I've looked at a large number of posts on both stackoverflow and other sites…
0
votes
1 answer

Proxy / gateway behaviour if HTTP response data exceeds content length

How should proxies / gateways behave when http servers send HTTP response where the data size exceeds content-length? Dropping it as a RFC non-compliance is one way to go but looks like there are quite a few implementations/deployments with this…
0
votes
1 answer

Creating a Web Proxy for Mobile Clients (HTML5 Web App)

I'm currently developing an HTML5 mobile web app for Blackberry using WebWorks that interacts with a 3rd party API. Unfortunately i can't use the API directly from the mobile app due to the cross domain requests constraints, so i'm considering the…
Carlos Ferreira
  • 432
  • 5
  • 15
0
votes
3 answers

error "java.lang.NoSuchMethodError" after deploying web app using a web service

Kindly I am facing a strange problem and I need your help. I am using oc4j 1013 as a java container. I had a simple web service "GetDates" and I deployed it successfuly on the oc4j and tested it by invoking the method inside it and it returns values…
0
votes
1 answer

Creating facebook webproxy with python

I'm trying to create webproxy for personal use to access facebook (it is often blocked from a few locations where I happen to spend some time). Started from this code:…
Moonwalker
  • 2,180
  • 1
  • 29
  • 48
0
votes
1 answer

WebClient DownloadString gives error when using Webproxy C#

Im trying to use WebClient.DownloadString() but using proxy. Im doing this: WebProxy wp = new WebProxy("http://000.000.000.000:80"); (here goes real proxy ip) WebClient wb = new WebClient(); wb.Proxy = wp; try { …
0
votes
0 answers

Is there a graceful way to determine if I am behind a proxy when using WebClient?

Right now I am using a try-catch to handle a WebException in order to determine whether or not I need to use a proxy - it's ugly. Rather than use try-catch to control program execution, I'd like to know up front if I need to use a proxy. Here is…
Ian R. O'Brien
  • 6,682
  • 9
  • 45
  • 73
0
votes
2 answers

SMTP mail sending in C# (internet connection + WebProxy)

The goal is to send an email from a C# application. The code snippet below works for me, but when I run it at work (internet connection with a script configuration proxi.pac) it crashes. Can someone help me? string SendersAddress =…
-1
votes
2 answers

How to read an HTTP response from a server (as a web proxy) and send response to client

I am writing a web proxy and so far I can read a GET request from a client, format it, and send it to the server, I believe that I have been able to get the response back from the server, but am unsure of how to send the response to the client.…
AndieM
  • 39
  • 8
-1
votes
1 answer

Can we use jQuery framework through an online web proxy

I include jQuery in my site with Google CDN: All works as expected, but when I try to access it with any web proxy online such as Zend2…
Dominique
  • 4,272
  • 1
  • 16
  • 21
1 2 3
9
10