Skip to content

Instantly share code, notes, and snippets.

@pspill
pspill / maven-fiddler.md
Last active May 11, 2023 14:26
How do I capture Maven's HTTP traffic through Fiddler?
  1. In your Maven settings.xml file located at \conf, add the following XML snippet under the tag. 8888 is the port Fiddler listens to, which can be located in Fiddler under Tools | Options | Connections > in the textbox labeled "Fiddler listens on port".
<proxy>
  <id>Fiddler</id>
  <active>true</active>
  <protocol>https</protocol>
  <host>127.0.0.1</host>
 8888