Import and Export Formats

Fiddler Classic Import and Export Formats

Fiddler Classic supports the following formats by default:

Import

Export

  • HTTP Archive JSON v1.1 (*.har)

    This format does not support storage of non-textual response bodies.

  • HTTP Archive JSON v1.2 (*.har)

    This format supports storage of non-textual response bodies. Because these .har files are not compressed, Fiddler Classic will only store non-textual content smaller than 32kb by default. This limit can be increased by setting a Fiddler Classic Preference:

    fiddler.importexport.HTTPArchiveJSON.MaxBinaryBodyLength
    
  • Visual Studio Web Test XML

  • WCAT Load Test Script

  • Raw Files

    The Raw Files export format allows you to easily dump captured response files to a folder on disk. This allows you to easily collect (for example) audio, video, or image files.

  • Meddler Scripts

  • HTML5 AppCache Manifests

Custom Import and Export Classes

Beyond these default formats, developers can create their own Import and Export classes by implementing the ISessionImporter and ISessionExporter interfaces using any .NET language. There is no particular requirement that the classes store data in a file. You could build a class that saves or loads traffic from a local database or a data store in the cloud.

In this article