Hey everyone, I'm trying to access an XML file download from a government website https://nfs.nacta.gov.pk,
but the site is built with Blazor, and the download link isn't exposed directly in the HTML.
When I select the XML file format, it triggers a background request to a URL like this:
https://nfs.nacta.gov.pk/blazor?id=It_9YDUL-MF28bTPMznA9A&=1744890260107
It looks like the file is being sent through a Blazor SignalR/WebSocket connection, or maybe a dynamically triggered download via JavaScript. I’ve tried inspecting the Network tab and filtering by XHR, Fetch, and looking for anything with "xml", but I can’t find a direct downloadable link or a response with the file.
Has anyone dealt with file downloads in Blazor (especially server-side Blazor) or cracked how to capture these kinds of requests? Any tips for intercepting the actual XML payload or replaying the request manually?
Appreciate any help!