Questions tagged [webproxy]
136 questions
0
votes
1 answer
How to access a page behind proxy
My code is working if I hardcode my credentials
string url;
string proxyAddress;
string user ;
string password;
Stream objStream;
WebProxy proxyObject = new WebProxy(proxyAddress, true);
proxyObject.Credentials = new NetworkCredential(user,…

bizimunda
- 819
- 2
- 9
- 26
0
votes
1 answer
vb.net multiple webproxy in httpwebrequest
I am currently working on a VB.net project where I need to get http responses from a certain URI but the requests needs to go through http proxy which I am perfectly fine with. The problem occurred when I realised sometimes our proxy servers are not…

Sabbir Hassan
- 175
- 14
0
votes
0 answers
Proxy asking for credentials
This is what I currently have
using (WebClient client = new WebClient()) {
WebProxy proxy = new WebProxy();
//proxy.Address = new Uri("http://" + proxyIP.Text + ":" + proxyPort.Text);
//proxy.Credentials = new…

Dgameman1
- 378
- 5
- 24
0
votes
2 answers
WebProxy URI is not valid
This is the code I currently have
using (WebClient client = new WebClient()) {
WebProxy proxy = new WebProxy();
proxy.Address = new Uri(96.44.147.138:6060);
proxy.Credentials = new NetworkCredential(proxyUsername.Text,…

Dgameman1
- 378
- 5
- 24
0
votes
0 answers
Accessing web-server in private network from arbitrary clients
I am looking for the best practice to allow accessing a web-server in a private network from a client running on an arbitrary machine (possibly on another private network). Here is the typical setup:
Web-server is running on a Linux machine behind…

samanca
- 153
- 3
- 11
0
votes
1 answer
Web Application Proxy + Azure WebRole
I am using Azure PAAS. All database servers, application servers and proxy servers are with in my virtual network.
How to setup web application proxy for azure web role?

Ramesh Bolla
- 372
- 1
- 3
- 21
0
votes
1 answer
publish Azure webrole without public URL
I setup my own network in Azure, all my data base servers, domain controllers and proxy servers are port of it.
I have web application, hosted to webrole which is part of my azure network by providing following config in service…

Ramesh Bolla
- 372
- 1
- 3
- 21
0
votes
1 answer
Proxy Authentication settings fail after AD password change to OrganizationService
I used to connect to this testing application, a week later I return and have now issues authenticating. Getting a System.InvalidOperationException details below
(Exception e) {
e.Message = "Metadata contains a reference that cannot be resolved:…

Shane_Yo
- 770
- 8
- 24
0
votes
1 answer
Android: How to view the entire content of httprequest and httpresponse
Are there any tools on mac (other than charlesproxy) or programming techniques to view the entire content of each httprequest and response originating from an android application.
I tried printing them but then the httpresponse gets consumed if I…

user1270175
- 243
- 3
- 8
0
votes
1 answer
java.net.ServerSocket does not catch all connections
I am trying to implement a web proxy server in java that would relay requests and responses between my browser and the web. In the current set up, I get my browser to send all of the page requests to localhost on a specified port and my proxy is…

kawaiinekochan
- 212
- 3
- 12
0
votes
1 answer
Internal implementation of proxy websites like kproxy
I want to implement the proxy website like kproxy.com, so that I can load any website in my site's iframe and proxy all the data of website from my server
I have checked their functionality and I found out that they replace all the script tags,…

Rushi Soni
- 1,088
- 1
- 13
- 21
0
votes
1 answer
Java Web Start and Web-proxy caching
I have a Rich Internet Application which is provided in the SaaS schema (cloud) via Internet. The application is deployed via Java Web Start: users click on a link pointing to a JNLP file to the provider site (http://somesite.com/myapp/myapp.jnlp);…

Diego Pascotto
- 329
- 2
- 13
0
votes
1 answer
Sun Java Web proxy - SSL transactions/sec?
I hope this is "close enough to programming" to pass the bar :)
Is there any way to monitor SSL transactions / sec on Sun Webproxy? Preferably with SNMP, but anything goes :)

Ace
- 4,443
- 6
- 38
- 46
0
votes
1 answer
Making an tornado proxy page
i want to make an tornado proxy page.
So when I visit proxypage, I will get the content from google.com.
I made a small simple proxy page in php only to find out tornado webserver dont support php.
Here is t he php code to explain better what i'm…
0
votes
2 answers
Trying to find out, how to skip paying MONTHLY to use PRIVATE PROXYS
And thanks for reading I will try my best to make it simple.
I pay monthly for 10 proxys on this website.
www. squidproxies.com/private-proxies/
Number of Proxies: 10 or 100
Monthly Price: 24$ or 160$
( Because I am a newbie on stackoverflow
…

user3251927
- 31
- 1
- 2
- 8