Questions tagged [webproxy]
136 questions
1
vote
2 answers
Trying to see Http requests in Fiddler using WPF Application
How to use Fiddler to debug traffic from any app (eg. C#/WPF app).
Basically my WPF Application makes webrequests to a REST server that exists on another server.
I try and set up my proxy to communicate with Fiddler as follows.
HttpWebRequest req…

TheWommies
- 4,922
- 11
- 61
- 79
1
vote
0 answers
Field not found, node: passthrough in traefik for tcp
I have written this dynamic config for Apache2 which is hosting my personal website with its own SSL certs.
My personal website is hosted from home and gets picked up via proxy running on the remote server in the private cloud. And this is separate…

Ciasto piekarz
- 7,853
- 18
- 101
- 197
1
vote
0 answers
.Net trying to load 'System.Net.WebProxy' from wrong assembly 'Microsoft.Extensions.Options'
My application in AspNetCore 3.1, runs locally without any issues with dotnet run. But when running the application in Docker i'm getting the following exception:
System.TypeLoadException: Could not load type 'System.Net.WebProxy' from assembly…

i_s_a_c
- 11
- 2
1
vote
1 answer
how to set autoconfig.url python selenium
In Java i am able to set AutoConfigUrl like mentioned below,
how to do the same in python ?
Proxy proxy = new Proxy();
proxy.setProxyAutoconfigUrl("http://wpad/wpad.dat");

PSR
- 249
- 1
- 10
1
vote
0 answers
Is WebRequest.DefaultWebProxy common to all applications running in the browser?
Due to some reasons (mentioned in this post), To handle the proxy in our web application, I have assigned the user-defined proxy values to WebRequest.DefaultWebProxy.
Code:
var proxy = new WebProxy(data.ProxyUri);
proxy.Credentials = new…

Sandhiya
- 57
- 1
- 8
1
vote
5 answers
Connect over company proxy with user name
I am trying to connect to external IP address but I am behind company firewall, so I need to connect over the proxy.
I run a test with curl:
curl -v https://IP_ADDRESS_OF_EXTERNAL_CLIENT:6125 -x http://MyComparyProxyAddress.com:8080 -U…

Jack
- 350
- 2
- 15
1
vote
1 answer
WKwebView give error intermittently with WebPageProxy error code 1003 in iOS app
I have iOS app in which I have WKWebview. Used for loading HTML from remote URL. I get the error in log
[Process] 0x1550bfe18 - [pageProxyID=42, webPageID=43, PID=1902] WebPageProxy::didFailProvisionalLoadForFrame: frameID = 3, domain =…

RohitK
- 1,444
- 1
- 14
- 37
1
vote
0 answers
WebProxy Test Connection Strange Behaviour
I am writing a function to test proxy server connection. User need to fill a web form and need to provide following:
Proxy Server Ip Address
Proxy Server Port
Check a chekbox if authentication is required
If authentication checkbox checked then…

Rummy
- 31
- 3
1
vote
0 answers
CopySystemProxySettings Equivalent in Monotouch
What's the equivalent api to copy phone's system settings to my app in Monotouch?
can i use webproxy instead? how to do that? can the monotouch team give some example?
Thank you.

sharif y
- 513
- 4
- 11
1
vote
1 answer
C# RestSharp Return Empty String
I have this code both in my console app and webapi app
static void TestHitOtp()
{
try
{
string urlPOST = ConfigurationManager.AppSettings["OtpUrl"];
string userid =…

Wildan Nugraha
- 53
- 9
1
vote
1 answer
Powershell to execute WCF service with Proxy
I am trying to execute a WCF service / WSDL using Powershell, and I found I can use "New-WebServiceProxy" cmdlet to do the job.
Unfortunately it appears that if I execute directly on my environment, it will not work because it is blocked by our…

PlayKid
- 871
- 2
- 10
- 21
1
vote
0 answers
Know original IP address of user when request coming from a web proxy
Context
I am working on an application which detects the user's IP address from the request and restricts them from doing certain actions on a page based on the country they are in.
Problem
When a user makes a request to our application via some Web…

Jagdeep Singh
- 4,880
- 2
- 17
- 22
1
vote
1 answer
IntelliJ IDEA Browse JetBrains Plugins dialog box is empty
I'm using Intellij IDEA Ultimate 2016.3.4.
File / Settings / Plugins / Install JetBrains plugin... opens up a window named Browse JetBrains Plugins, but the main area of the window, which should AFAIK list the plugins available on the JetBrains…

Attila Csipak
- 927
- 2
- 14
- 34
1
vote
2 answers
Weird behaviour of HttpWebRequest while using WebProxy
I have an HttpWebRequest with a StreamReader that works very fine without using a WebProxy. When I use WebProxy, the StreamReader reads strange character instead of the actual html. Here is the code.
HttpWebRequest req =…

dlock
- 9,447
- 9
- 47
- 67
1
vote
0 answers
WebProxy.IsBypassed and Proxy.pac
I am currently developing a .net component for the corporate environment. It needed to talk to a 3rd-party company that uses SSH to transfer file. The same component also supports FTP to communicate with different parties.
Everything works fine…

user8935907
- 11
- 4