T
T
tuxx2015-05-27 14:37:41
Debugging
tuxx, 2015-05-27 14:37:41

How to make fiddler intercept requests from third party applications?

How to force fiddler (.net2) on Windows to log all requests over the network from applications that do not use WinINET. Specifically, you need to view all requests and responses from the 1C exchange with the site.
On one site I read that you need to enable the "Allow remote computers to connect" item in the settings, but this did not help me. The program is installed on Windows Server 2008 under administrator.

Answer the question

In order to leave comments, you need to log in

3 answer(s)
P
petervolkov, 2015-06-23
@petervolkov

I did it with the software https://www.proxifier.com/ it forces all http traffic to the specified proxy, including traffic that goes at the winsock level or lower.
Softina is trial, but without fish and cancer is a fish.

S
seven_dvm, 2016-10-25
@seven_dvm

At the level of settings - no,
a crutch in the code helped:
Proxy = New InternetProxy(True);
Proxy.Set("http", "127.0.0.1", "8888");
HTTPConnection = New HTTPConnection(HostName, , , , Proxy);

M
Magestro, 2017-12-21
@Magestro

I'll put in my five cents, a crutch in the code is not required.
You need to set a local proxy, as seven_dvm wrote , but not necessarily in the code, you can do it in the proxy settings.
Administration -> General settings -> Server infobase settings -> Internet access settings
Set there:
1) Server address: 127.0.0.1
2) Port: 8888
Username and password are empty.

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question