using Fiddler2

  • Thread starter Thread starter Bhavin Parekh
  • Start date Start date
B

Bhavin Parekh

Hi Guys
I want to download same content using httpweb request using fiddler request
header and body. I did so many experiements but no luck so far.

POST: http://con-www.oddspark.com/info/TanFukuOdds.do?ajaxFlg=true

Request header:

Referer: http://con-www.oddspark.com/info/TanFukuOdds.do?ajaxFlg=true
Content-Type: application/x-www-form-urlencoded
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR
1.1.4322; .NET CLR 2.0.50727)
Host: con-www.oddspark.com
Cookie: JSESSIONID=26B62B75DE671635138799C8E651FA53;
AlteonP=343774b852f9faa6baeebaa6
Content-Length: 64


Request Body:
method=odds&race_DY=20080506&OP_Track_CD=04&race_NB=1&order=1&_=


Can someone help me to write code? I tested so many different criteria but
no luck..

Anyhelp would be appreciated...I will really appreciate if someone help to
supply c sharp code.
 
Bhavin Parekh said:
Hi Guys
I want to download same content using httpweb request using fiddler request
header and body. I did so many experiements but no luck so far.

POST: http://con-www.oddspark.com/info/TanFukuOdds.do?ajaxFlg=true

Request header:

Referer: http://con-www.oddspark.com/info/TanFukuOdds.do?ajaxFlg=true
Content-Type: application/x-www-form-urlencoded
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR
1.1.4322; .NET CLR 2.0.50727)
Host: con-www.oddspark.com
Cookie: JSESSIONID=26B62B75DE671635138799C8E651FA53;
AlteonP=343774b852f9faa6baeebaa6
Content-Length: 64


Request Body:
method=odds&race_DY=20080506&OP_Track_CD=04&race_NB=1&order=1&_=


Can someone help me to write code? I tested so many different criteria but
no luck..

Anyhelp would be appreciated...I will really appreciate if someone help to
supply c sharp code.

The cookies in the request may indicate that the server is expecting to have
configured some server side state for a session. Do you have reason to
believe that you can simply repeat them in a HttpWebRequest and it work? Or
have you created the session on the destination server appropriately?
 
Back
Top