I'm trying to reverse engineer a web CLIENT that is sending header data that triggers a new window and displays a 'waiting... working...'
page before the real page arrives.
I can't capture the real page in Fiddler core; I only have a handle on the first page... the page that spins a 'working...' popup window in a new thread.
I need the session cookies and the form data the client has accumulated from the user. I'm using Fiddler core and I have the
beforeRequest deligate anonymous process. I'm pouring through the Fiddler.Session, looking at ClientChatter and ServerChatter.
I don't see any place for POST form data and cookies. On the first request (the one that returns waiting... there is no request body)
Where should I look for this? I have the code generator for the request too but that is too exotic to recompile a request at run time.
When I use the Fiddler application, there is a tab for cookies and forms. Looks good. I can re-transmit the request and get a good answer.
But from MY application thread I don't want this spawning off new browsers. I have the NewWindow and NewWindow2 and NewWindow3 session.
I have the COM BrowserExtension stuff compiled, thought it throws an exception somewhere and does not work.But the main component browser
is giving me the new browser window event and I can cancel it and re-issue an in thread request and hopefully keep this puppy from
jumping out of the thread.
I am getting the NewWindow fired after the beforeRequest. I just want to keep the request in my working thread and using my browser.
Where, oh Where are the cookies and forms in the Fiddler core?