Utiliser le serveur proxy sauf pour les adresses qui commencent par...

25 views
Skip to first unread message

MMY

unread,
Jul 25, 2023, 12:28:49 PM7/25/23
to JMeter en français
Bonjour à tous,

Dans un projet, je dois configurer un proxy. Sauf que certaines requêtes http requièrent un proxy et d'autres non.
Le problème : j'ai une requête qui nécessite le proxy, et elle redirige vers des URL qui ne doivent pas être bloquées par le proxy.

En dehors de Jmeter, dans le navigateur le proxy est configuré manuellement avec une adresse et un port, et la zone de texte où est indiqué "Utiliser le serveur proxy sauf pour les adresses qui commencent par les entrées suivantes....",

Existe-t-il un moyen de faire cette exception dans Jmeter?

Merci.
Marie

Vincent Daburon

unread,
Jul 28, 2023, 4:41:04 AM7/28/23
to JMeter en français
Bonjour,

d'après la documentation :

2.1) HTTP

There are 3 properties you can set to specify the proxy that will be used by the http protocol handler:

  • http.proxyHost: the host name of the proxy server
  • http.proxyPort: the port number, the default value being 80.
  • http.nonProxyHosts: a list of hosts that should be reached directly, bypassing the proxy. This is a list of patterns separated by '|'. The patterns may start or end with a '*' for wildcards. Any host matching one of these patterns will be reached through a direct connection instead of through a proxy.

Let's look at a few examples assuming we're trying to execute the main method of the GetURL class:

$ java -Dhttp.proxyHost=webcache.mydomain.com GetURL

All http connections will go through the proxy server at webcache.mydomain.com listening on port 80 (we didn't specify any port, so the default one is used).

$ java -Dhttp.proxyHost=webcache.mydomain.com -Dhttp.proxyPort=8080 -Dhttp.noProxyHosts=”localhost|host.mydomain.com” GetURL


Je n'ai pas essayé mais cela me semble possible.

Cordialement
Vincent DAB.
Reply all
Reply to author
Forward
0 new messages