Dear Roland
I tried the same using MultipartRequestEntity with StringParts and an
appropriate charset, still i have the same problem,
i have pased the code and the wire log below,please go through it and
help me to resolve the problem.
SOURCE :
-------------------------------------------------------------------------------------------------------------------------------------------------------------
public class Search_Result {
public static void main(String[] args) throws IOException,
HeadlessException {
HttpClient client = new HttpClient();
try{
PostMethod method2 = new
PostMethod("http://www.airdeccan.net/air/search_result.asp");
NameValuePair nvp1 = new NameValuePair("txt_child","0");
NameValuePair nvp2 = new NameValuePair("year1","2006");
NameValuePair nvp3 = new NameValuePair("year0","2006");
NameValuePair nvp4 = new NameValuePair("search_days","365");
NameValuePair nvp5 = new
NameValuePair("DepartDate","29/01/2006");
NameValuePair nvp6 = new
NameValuePair("depart_date","01/29/2006");
NameValuePair nvp7 = new NameValuePair("mon_abbr.1","01");
NameValuePair nvp8 = new NameValuePair("mon_abbr.0","01");
NameValuePair nvp9 = new NameValuePair("flagfare","O");
NameValuePair nvp10 = new
NameValuePair("sector_diff","14400000");
NameValuePair nvp11 = new
NameValuePair("schedule_period","3888000000");
NameValuePair nvp12 = new NameValuePair("max_seats","180");
NameValuePair nvp13 = new NameValuePair("cmb_originCity","BOM");
NameValuePair nvp14 = new NameValuePair("return_date","");
NameValuePair nvp15 = new NameValuePair("txt_infant","0");
NameValuePair nvp16 = new NameValuePair("str_class","A");
NameValuePair nvp17 = new NameValuePair("txt_adult","1");
NameValuePair nvp18 = new NameValuePair("rd_trip"," O");
NameValuePair nvp19 = new NameValuePair("cmb_destCity","GOI");
NameValuePair nvp20 = new NameValuePair("date.1","12");
NameValuePair nvp21 = new NameValuePair("date.0","29");
NameValuePair nvp22 = new
NameValuePair("booking_period","31536000000");
NameValuePair nvp23 = new
NameValuePair("ReturnDate","17/01/2006");
NameValuePair nvp24 = new
NameValuePair("current_date","17/01/2006");
method2.setRequestBody(new
NameValuePair[]{nvp1,nvp2,nvp3,nvp4,nvp5,nvp6,nvp7,nvp8,nvp9,nvp10,
nvp11,nvp12,nvp13,nvp14,nvp15,nvp16,nvp17,nvp18,nvp19,nvp20,
nvp21,nvp22,nvp23,nvp24});
int statusCode2 = client.executeMethod(method2);
InputStream in = method2.getResponseBodyAsStream();
try {
InputStreamReader inR = new InputStreamReader( in );
BufferedReader buf = new BufferedReader( inR );
String line;
while ( ( line = buf.readLine() ) != null ) {
System.out.println( line );
}
} finally {
in.close();
}
method2.releaseConnection();
PostMethod method3 = new
PostMethod("http://www.airdeccan.net/air/Select_Flight.asp");
Part[] parts = { new
StringPart("hidFlightFrom","29-Jan-2006|05:25","iso-8859-1"),
new
StringPart("radFlightFrom","yttyww}ÉÔÎÎËtzx~w|Áy|w}Á|wxgÏgy|gxGwwÐÖÉÎÈààyËtzx~Ëtzx~txw|yy~wwyyxwww","iso-8859-1"),
new
StringPart("hidFlightFromFlag1","Y","iso-8859-1"),new
StringPart("hidFlightFromFlag0","Y","iso-8859-1")
};
method3.setRequestEntity(new
MultipartRequestEntity(parts,method3.getParams()));
method3.addRequestHeader("Content-Type","text/html");
method3.addRequestHeader("charset","iso-8859-1");
int statueCode3 = client.executeMethod(method3);
InputStream in1 = method3.getResponseBodyAsStream();
try {
InputStreamReader inR1 = new InputStreamReader( in1 );
BufferedReader buf1 = new BufferedReader( inR1 );
String line1;
while ( ( line1 = buf1.readLine() ) != null ) {
System.out.println( line1 );
}
} finally {
in1.close();
}
System.out.println("Status Line ::::::::::::
"+method3.getStatusLine());
method3.releaseConnection();
}
catch(IOException e) {
e.printStackTrace();
}
}
}
--------------------------------------------------------------------------------------------------------------------------------
WIRE LOG:
-----------------------------------------------------------------------------------------------------------------------------
DEBUG [httpclient.wire.header] >> "POST /air/search_result.asp
HTTP/1.1[\r][\n]"
DEBUG [httpclient.wire.header] >> "User-Agent: Jakarta
Commons-HttpClient/3.0[\r][\n]"
DEBUG [httpclient.wire.header] >> "Host: www.airdeccan.net[\r][\n]"
DEBUG [httpclient.wire.header] >> "Content-Length: 401[\r][\n]"
DEBUG [httpclient.wire.header] >> "Content-Type:
application/x-www-form-urlencoded[\r][\n]"
DEBUG [httpclient.wire.header] >> "[\r][\n]"
DEBUG [httpclient.wire.content] >>
"txt_child=0&year1=2006&year0=2006&search_days=365&DepartDate=29%2F01%2F2006&depart_date=01%2F29%2F2006&mon_abbr.1=01&mon_abbr.0=01&flagfare=O§or_diff=14400000&schedule_period=3888000000&max_seats=180&cmb_originCity=BOM&return_date=&txt_infant=0&str_class=A&txt_adult=1&rd_trip=+O&cmb_destCity=GOI&date.1=12&date.0=29&booking_period=31536000000&ReturnDate=17%2F01%2F2006¤t_date=17%2F01%2F2006"
DEBUG [httpclient.wire.header] << "HTTP/1.1 100 Continue[\r][\n]"
DEBUG [httpclient.wire.header] << "Date: Tue, 17 Jan 2006 09:03:54
GMT[\r][\n]"
DEBUG [httpclient.wire.header] << "Server: Microsoft-IIS/5.0[\r][\n]"
DEBUG [httpclient.wire.header] << "X-Powered-By: ASP.NET[\r][\n]"
DEBUG [httpclient.wire.header] << "Via: 1.1 mum-cac01 (NetCache
NetApp/6.0)[\r][\n]"
DEBUG [httpclient.wire.header] << "HTTP/1.1 200 OK[\r][\n]"
DEBUG [httpclient.wire.header] << "Date: Tue, 17 Jan 2006 09:04:58
GMT[\r][\n]"
DEBUG [httpclient.wire.header] << "Content-Length: 16780[\r][\n]"
DEBUG [httpclient.wire.header] << "Content-Type: text/html[\r][\n]"
DEBUG [httpclient.wire.header] << "Cache-Control: private[\r][\n]"
DEBUG [httpclient.wire.header] << "Server: Microsoft-IIS/5.0[\r][\n]"
DEBUG [httpclient.wire.header] << "X-Powered-By: ASP.NET[\r][\n]"
DEBUG [httpclient.wire.header] << "Set-Cookie:
igtsAirDeccan=pinfant=0&pchild=0&padus=1&pclass=A&preturndate=&pdepartdate=01%2F29%2F2006&pdestcity=GOI&flagfare=O&porigincity=BOM&cookie=enabled;
expires=Wed, 18-Jan-2006 09:04:42 GMT; path=/[\r][\n]"
DEBUG [httpclient.wire.header] << "Set-Cookie:
ASPSESSIONIDCQTCAQBD=IJLLFPKBDPKBFIIBFOBLJPFC; path=/[\r][\n]"
DEBUG [httpclient.wire.header] << "Via: 1.1 mum-cac01 (NetCache
NetApp/6.0)[\r][\n]"
DEBUG [httpclient.wire.content] << "<Script>[\r][\n]"
DEBUG [httpclient.wire.content] << "[\r][\n]"
DEBUG [httpclient.wire.content] << "if
(navigator.appName=='Netscape'){browser='NS';} [\r][\n]"
DEBUG [httpclient.wire.content] << "if (navigator.appName=='Microsoft
Internet Explorer'){browser='MSIE';} [\r][\n]"
DEBUG [httpclient.wire.content] << "[\r][\n]"
DEBUG [httpclient.wire.content] << "function StatusBar_Hide(obj){ [\r][\n]"
DEBUG [httpclient.wire.content] << " var loc , func;[\r][\n]"
DEBUG [httpclient.wire.content] << "
while(obj.tagName.toUpperCase()!="A") obj=obj.parentElement;[\r][\n]"
DEBUG [httpclient.wire.content] << " func =
obj.getAttribute("link");[\r][\n]"
DEBUG [httpclient.wire.content] << " loc = func.search("http://");[\r][\n]"
DEBUG [httpclient.wire.content] << " if(loc!=-1)[\r][\n]"
DEBUG [httpclient.wire.content] << " window.navigate(func);[\r][\n]"
DEBUG [httpclient.wire.content] << " else[\r][\n]"
DEBUG [httpclient.wire.content] << " eval(func);[\r][\n]"
DEBUG [httpclient.wire.content] << " return false;[\r][\n]"
DEBUG [httpclient.wire.content] << "}[\r][\n]"
DEBUG [httpclient.wire.content] << "</script>[\r][\n]"
DEBUG [httpclient.wire.content] << "[\r][\n]"
DEBUG [httpclient.wire.content] << "<script for="document"
event="onreadystatechange">[\r][\n]"
DEBUG [httpclient.wire.content] << "if(browser=='MSIE'){[\r][\n]"
DEBUG [httpclient.wire.content] << "var colanchor="";[\r][\n]"
DEBUG [httpclient.wire.content] << "if(readyState=="complete") {[\r][\n]"
DEBUG [httpclient.wire.content] << " colanchor =
document.getElementsByTagName("A");[\r][\n]"
DEBUG [httpclient.wire.content] << "
for(i=0;i<colanchor.length;i++){[\r][\n]"
DEBUG [httpclient.wire.content] << "[0x9]anc = colanchor[i];[\r][\n]"
DEBUG [httpclient.wire.content] <<
"[0x9]href=anc.getAttribute("href");[\r][\n]"
DEBUG [httpclient.wire.content] <<
"[0x9]anc.setAttribute("link",href);[\r][\n]"
DEBUG [httpclient.wire.content] <<
"[0x9]anc.setAttribute("href","javascript:void(0);");[\r][\n]"
DEBUG [httpclient.wire.content] <<
"[0x9]anc.attachEvent("onmouseover",function
hideit(){window.status="";return true;});[\r][\n]"
DEBUG [httpclient.wire.content] <<
"[0x9]anc.attachEvent("onmouseout",function
hideit(){window.status="";return true;});[\r][\n]"
DEBUG [httpclient.wire.content] <<
"//[0x9]anc.attachEvent("onclick",function
ctidy(){alert((window.event.srcElement).getAttribute("link"));return
true;});[\r][\n]"
DEBUG [httpclient.wire.content] <<
"[0x9]anc.attachEvent("onclick",function
tup(){return(StatusBar_Hide(window.event.srcElement));});[\r][\n]"
DEBUG [httpclient.wire.content] << " }[\r][\n]"
DEBUG [httpclient.wire.content] << " }[\r][\n]"
DEBUG [httpclient.wire.content] << "}[\r][\n]"
DEBUG [httpclient.wire.content] << "</script>[\r][\n]"
DEBUG [httpclient.wire.content] << "[\r][\n]"
DEBUG [httpclient.wire.content] << "[\r][\n]"
DEBUG [httpclient.wire.content] << "<Script>[\r][\n]"
DEBUG [httpclient.wire.content] << "if(browser=='NS'){[\r][\n]"
DEBUG [httpclient.wire.content] << "
document.captureEvents(Event.MOUSEOVER);[\r][\n]"
DEBUG [httpclient.wire.content] << "
document.onmouseover=function(event) {[\r][\n]"
DEBUG [httpclient.wire.content] << " window.status = "";[\r][\n]"
DEBUG [httpclient.wire.content] << " return(true);[\r][\n]"
DEBUG [httpclient.wire.content] << " }[\r][\n]"
DEBUG [httpclient.wire.content] << "}[\r][\n]"
DEBUG [httpclient.wire.content] << "</script>[\r][\n]"
DEBUG [httpclient.wire.content] << "<!--include
file="../includes/onError.inc"-->[\r][\n]"
DEBUG [httpclient.wire.content] << "[\r][\n]"
DEBUG [httpclient.wire.content] << "<html>[\r][\n]"
DEBUG [httpclient.wire.content] << "<head>[\r][\n]"
DEBUG [httpclient.wire.content] << "<title>Air Deccan - Flight
Reservation</title>[\r][\n]"
DEBUG [httpclient.wire.content] << "<meta http-equiv="Content-Type"
content="text/html; charset=iso-8859-1">[\r][\n]"
DEBUG [httpclient.wire.content] << "<meta http-equiv="pragma"
content="no-cache">[\r][\n]"
DEBUG [httpclient.wire.content] << "<LINK REL="STYLESHEET"
TYPE="text/css" HREF="../includes/style.css">[\r][\n]"
DEBUG [httpclient.wire.content] << "</head>[\r][\n]"
DEBUG [httpclient.wire.content] << "<script language=javascript
src="../includes/validate.js">[\r][\n]"
DEBUG [httpclient.wire.content] << "[0x9][\r][\n]"
DEBUG [httpclient.wire.content] << "</script>[\r][\n]"
DEBUG [httpclient.wire.content] << "<script language=javascript>[\r][\n]"
DEBUG [httpclient.wire.content] << "<!--[\r][\n]"
DEBUG [httpclient.wire.content] << "[0x9]function popup1(name)[\r][\n]"
DEBUG [httpclient.wire.content] << "[0x9]{[\r][\n]"
DEBUG [httpclient.wire.content] <<
"[0x9][0x9]window.open(name,'FlightInfo','width=550,height=400,top=100,left=100,scrollbars=yes')[\r][\n]"
DEBUG [httpclient.wire.content] << "[0x9]}[\r][\n]"
DEBUG [httpclient.wire.content] << "[0x9]function popup2(name)[\r][\n]"
DEBUG [httpclient.wire.content] <<
"[0x9]{[0x9][0x9]window.open(name,'FareInfo','width=550,height=300,top=110,left=150,scrollbars=yes')[0x9]}[\r][\n]"
DEBUG [httpclient.wire.content] << "[\r][\n]"
DEBUG [httpclient.wire.content] << "[0x9][0x9]function dateadd(per,n,d)
{[\r][\n]"
DEBUG [httpclient.wire.content] << "[0x9][0x9] switch(per) {[\r][\n]"
DEBUG [httpclient.wire.content] << "[0x9][0x9]"
DEBUG [httpclient.wire.content] << " case "yyyy":
d.setYear(d.getFullYear()+n); break[\r][\n]"
DEBUG [httpclient.wire.content] << "[0x9][0x9] case "m":
d.setMonth(d.getMonth()+n); break[\r][\n]"
DEBUG [httpclient.wire.content] << "[0x9][0x9] case "ww": n*=7[\r][\n]"
DEBUG [httpclient.wire.content] << "[0x9][0x9] case "d":
d.setDate(d.getDate()+n); break[\r][\n]"
DEBUG [httpclient.wire.content] << "[0x9][0x9] case "h":
d.setHours(d.getHours()+n); break[\r][\n]"
DEBUG [httpclient.wire.content] << "[0x9][0x9] case "n":
d.setMinutes(d.getMinutes()+n); break[\r][\n]"
DEBUG [httpclient.wire.content] << "[0x9][0x9] case "s": d.se"
DEBUG [httpclient.wire.content] << "tSeconds(d.getSeconds()+n)[\r][\n]"
DEBUG [httpclient.wire.content] << "[0x9][0x9] }[\r][\n]"
DEBUG [httpclient.wire.content] << "[0x9][0x9] return d[\r][\n]"
DEBUG [httpclient.wire.content] << "[0x9][0x9]}[\r][\n]"
DEBUG [httpclient.wire.content] << "[\r][\n]"
DEBUG [httpclient.wire.content] << "[0x9][\r][\n]"
DEBUG [httpclient.wire.content] << "[0x9]function onlogin()[\r][\n]"
DEBUG [httpclient.wire.content] << "[0x9]{[\r][\n]"
DEBUG [httpclient.wire.content] << "[0x9][0x9]// Code for splitting the
departdate and enddate and make javascript date[\r][\n]"
DEBUG [httpclient.wire.content] << "[0x9][0x9]var arrDepartDate =
'01/29/2006'.split("/");[\r][\n]"
DEBUG [httpclient.wire.content] << "[0x9][0x9]var arrCurrentDate =
'17/01/2006'.split("/");[\r][\n]"
DEBUG [httpclient.wire.content] << "[0x9][\r][\n]"
DEBUG [httpclient.wire.content] << "[0x9][0x9]var dtDepartDate = new
Date(arrDepartDate[2], arrDepartDate[0]-1, arrDepartDate[1])[\r][\n]"
DEBUG [httpclient.wire.content] << "[0x9][0x9]var dtCurrentDate = new
Date(arrCurrentDate[2], arrCurrentDate[1]-1, arrCurrentDate[0])[\r][\n]"
DEBUG [httpclient.wire.content] << "[0x9][0x9]CurrentDate[0x9][0x9][0x9]
= dtCurrentDate.getTime();[\r][\n]"
DEBUG [httpclient.wire.content] << "[\r][\n]"
DEBUG [httpclient.wire.content] << "[0x9][0x9]//Creating the bookable
date [\r][\n]"
DEBUG [httpclient.wire.content] << "[0x9][0x9]var date2 =
dateadd("d",31536000000,dtCurrentDate)[\r][\n]"
DEBUG [httpclient.wire.content] << "[0x9][0x9]var BookingPeriod[0x9] =
date2.getTime();[\r][\n]"
DEBUG [httpclient.wire.content] << "[0x9][0x9]var
Booking_Closing_Time='2'[\r][\n]"
DEBUG [httpclient.wire.content] << "[\r][\n]"
DEBUG [httpclient.wire.content] << "[0x9][0x9]// Code for checking
whether the flight from is bookable or not[\r][\n]"
DEBUG [httpclient.wire.content] << "[0x9][0x9]if(dtDepartDate.getTime()
> BookingPeriod)[0x9][\r][\n]"
DEBUG [httpclient.wire.content] << "[0x9][0x9]{[\r][\n]"
DEBUG [httpclient.wire.content] << "[0x9][0x9][0x9]alert("Please select
any other outward flight as this availibility is not bookable.");[\r][\n]"
DEBUG [httpclient.wire.content] << "[0x9][0x9][0x9]return ;[\r][\n]"
DEBUG [httpclient.wire.content] << "[0x9][0x9]}[\r][\n]"
DEBUG [httpclient.wire.content] << "[\r][\n]"
DEBUG [httpclient.wire.content] << "[0x9][0x9]//Code for checking
whether there are more than one search result[\r][\n]"
DEBUG [httpclient.wire.content] << "[0x9][0x9][\r][\n]"
DEBUG [httpclient.wire.content] << "[0x9][0x9][0x9][0x9]for(var i=0; i <
document.form1.radFlightFrom.length; i++)[\r][\n]"
DEBUG [httpclient.wire.content] << "[0x9][0x9][0x9][0x9]{[\r][\n]"
DEBUG [httpclient.wire.content] <<
"[0x9][0x9][0x9][0x9][0x9]if(document.form1.radFlightFrom[i].checked==true)[\r][\n]"
DEBUG [httpclient.wire.content] << "[0x9][0x9][0x9][0x9][0x9]{[\r][\n]"
DEBUG [httpclient.wire.content] << "[0x9][0x9][0x9][0x9][0x9][0x9]fltfr
= document.form1.hidFlightFrom[i].value.split("|")[\r][\n]"
DEBUG [httpclient.wire.content] <<
"[0x9][0x9][0x9][0x9][0x9][0x9]if(eval("document.form1.hidFlightFromFlag"+i+".value")!='Y')[\r][\n]"
DEBUG [httpclient.wire.content] << "[0x9][0x9][0x9][0x9][0x9][0x9]{[\r][\n]"
DEBUG [httpclient.wire.content] <<
"[0x9][0x9][0x9][0x9][0x9][0x9][0x9]alert("The Bookings Close " +
Booking_Closi"
DEBUG [httpclient.wire.content] << "ng_Time + " Hours Prior To
Scheduled Departure Time, However You Could Go To The Airport For
Booking On This Flight Subject To Availability.");[\r][\n]"
DEBUG [httpclient.wire.content] <<
"[0x9][0x9][0x9][0x9][0x9][0x9][0x9]return;[\r][\n]"
DEBUG [httpclient.wire.content] << "[0x9][0x9][0x9][0x9][0x9][0x9]}[\r][\n]"
DEBUG [httpclient.wire.content] << "[0x9][0x9][0x9][0x9][0x9]}[\r][\n]"
DEBUG [httpclient.wire.content] << "[0x9][0x9][0x9][0x9][0x9][\r][\n]"
DEBUG [httpclient.wire.content] << "[0x9][0x9][0x9][0x9]}[0x9][\r][\n]"
DEBUG [httpclient.wire.content] << "[0x9][0x9][0x9][\r][\n]"
DEBUG [httpclient.wire.content] << "[\r][\n]"
DEBUG [httpclient.wire.content] << "[0x9][0x9]flt_arr =
fltfr[0].split("-")[\r][\n]"
DEBUG [httpclient.wire.content] << "[0x9][0x9]fr_dd = flt_arr[0][\r][\n]"
DEBUG [httpclient.wire.content] << "[0x9][0x9]fr_mm =
month_num(flt_arr[1]) - 1[\r][\n]"
DEBUG [httpclient.wire.content] << "[0x9][0x9]fr_yr = flt_arr[2][\r][\n]"
DEBUG [httpclient.wire.content] << "[0x9][0x9]//fr_tm3 =
fltfr[1].substring(fltfr[1].length-2,fltfr[1].length)[\r][\n]"
DEBUG [httpclient.wire.content] << "[0x9][0x9]//time_str =
fltfr[1].substring(0,fltfr[1].length-3)[\r][\n]"
DEBUG [httpclient.wire.content] << "[0x9][0x9]time_str = fltfr[1][\r][\n]"
DEBUG [httpclient.wire.content] << "[0x9][0x9]time_arr =
time_str.split(":")[\r][\n]"
DEBUG [httpclient.wire.content] << "[0x9][0x9]//if ((fr_tm3 =="PM") &&
(time_arr[0] !="12"))[\r][\n]"
DEBUG [httpclient.wire.content] << "[0x9][0x9]//[0x9]fr_tm1 =
parseInt(time_arr[0]) + 12;[0x9][\r][\n]"
DEBUG [httpclient.wire.content] << "[0x9][0x9]//else[\r][\n]"
DEBUG [httpclient.wire.content] << "[0x9][0x9][0x9]fr_tm1 =
time_arr[0][\r][\n]"
DEBUG [httpclient.wire.content] << "[0x9][0x9]fr_tm2 =
time_arr[1][0x9][0x9][0x9][0x9][\r][\n]"
DEBUG [httpclient.wire.content] << "[0x9][0x9][0x9][\r][\n]"
DEBUG [httpclient.wire.content] << "[\r][\n]"
DEBUG [httpclient.wire.content] << "[0x9][\r][\n]"
DEBUG [httpclient.wire.content] << "[\r][\n]"
DEBUG [httpclient.wire.content] <<
"[0x9][0x9]document.form1.action="Select_Flight.asp";[0x9][0x9][\r][\n]"
DEBUG [httpclient.wire.content] <<
"[0x9][0x9]document.form1.submit();[0x9][\r][\n]"
DEBUG [httpclient.wire.content] << "[0x9]}[\r][\n]"
DEBUG [httpclient.wire.content] << "[0x9][\r][\n]"
DEBUG [httpclient.wire.content] << "[0x9]function month_num(str)[\r][\n]"
DEBUG [httpclient.wire.content] << "[0x9]{[\r][\n]"
DEBUG [httpclient.wire.content] << "[0x9][0x9]switch (str)[\r][\n]"
DEBUG [httpclient.wire.content] << "[0x9][0x9]{[\r][\n]"
DEBUG [httpclient.wire.content] << "[0x9][0x9][0x9]case "Jan":
{[0x9]return "01" ; };[\r][\n]"
DEBUG [httpclient.wire.content] << "[0x9][0x9][0x9]case "Feb":
{[0x9]return "02" ; };[\r][\n]"
DEBUG [httpclient.wire.content] << "[0x9][0x9][0x9]case
"Mar":[0x9]{[0x9]return "03" ; };[\r][\n]"
DEBUG [httpclient.wire.content] << "[0x9][0x9][0x9]case
"Apr":[0x9]{[0x9]return "04" ; };[\r][\n]"
DEBUG [httpclient.wire.content] << "[0x9][0x9][0x9]case
"May":[0x9]{[0x9]return "05" ; }; [\r][\n]"
DEBUG [httpclient.wire.content] << "[0x9][0x9][0x9]case
"Jun":[0x9]{[0x9]return "06" ; }; [\r][\n]"
DEBUG [httpclient.wire.content] << "[0x9][0x9][0x9]case
"Jul":[0x9]{[0x9]return "07" ; }; [\r][\n]"
DEBUG [httpclient.wire.content] << "[0x9][0x9][0x9]case
"Aug":[0x9]{[0x9]return "08" ; }; [\r][\n]"
DEBUG [httpclient.wire.content] << "[0x9][0x9][0x9]case
"Sep":[0x9]{[0x9]return "09" ; }; [\r][\n]"
DEBUG [httpclient.wire.content] << "[0x9][0x9][0x9]case
"Oct":[0x9]{[0x9]return "10" ; }; [\r][\n]"
DEBUG [httpclient.wire.content] << "[0x9][0x9][0x9]case
"Nov":[0x9]{[0x9]return "11" ; }; [\r][\n]"
DEBUG [httpclient.wire.content] << "[0x9][0x9][0x9]case
"Dec":[0x9]{[0x9]return "12" ; }; [\r][\n]"
DEBUG [httpclient.wire.content] << "[0x9][0x9]}[\r][\n]"
DEBUG [httpclient.wire.content] << "[0x9]}[\r][\n]"
DEBUG [httpclient.wire.content] << "[0x9][\r][\n]"
DEBUG [httpclient.wire.content] << "[0x9][\r][\n]"
DEBUG [httpclient.wire.content] << "[0x9][\r][\n]"
DEBUG [httpclient.wire.content] << "//-->[\r][\n]"
DEBUG [httpclient.wire.content] << "</script>[\r][\n]"
DEBUG [httpclient.wire.content] << "[\r][\n]"
DEBUG [httpclient.wire.content] << "<body bgcolor="#FFFFFF"
text="#000000" leftmargin="0" topmargin="0" marginwidth="0"
marginheight="0">[\r]"
DEBUG [httpclient.wire.content] << "[\n]"
DEBUG [httpclient.wire.content] << "<form name="form1" method="post"
action="">[\r][\n]"
DEBUG [httpclient.wire.content] << " [\r][\n]"
DEBUG [httpclient.wire.content] << "[0x9][0x9][0x9]<table width="100%"
border="0" cellspacing="0" cellpadding="0" height="100%">[\r][\n]"
DEBUG [httpclient.wire.content] << "[0x9][0x9][0x9][0x9]<tr> [\r][\n]"
DEBUG [httpclient.wire.content] << "[0x9][0x9][0x9][0x9][0x9]<td
valign="top" height="115"> [\r][\n]"
DEBUG [httpclient.wire.content] <<
"[0x9][0x9][0x9][0x9][0x9][0x9]<!--<table width="100%" border="0"
cellspacing="0" cellpadding="0">[\r][\n]"
DEBUG [httpclient.wire.content] <<
"[0x9][0x9][0x9][0x9][0x9][0x9][0x9]<tr> [\r][\n]"
DEBUG [httpclient.wire.content] <<
"[0x9][0x9][0x9][0x9][0x9][0x9][0x9][0x9]<td width="307"><img
src="../images/toppanel1.jpg" width="307" height="107"></td>[\r][\n]"
DEBUG [httpclient.wire.content] <<
"[0x9][0x9][0x9][0x9][0x9][0x9][0x9][0x9]<td
background="../images/toppanel_bg.jpg" align="right" width="71%"><img
src="../images/toppanel2.jpg" width="473" height="107" usemap="#MapMap"
border="0"></td>[\r][\n]"
DEBUG [httpclient.wire.content] <<
"[0x9][0x9][0x9][0x9][0x9][0x9][0x9]</tr>[\r][\n]"
DEBUG [httpclient.wire.content] <<
"[0x9][0x9][0x9][0x9][0x9][0x9]</table>[\r][\n]"
DEBUG [httpclient.wire.content] << "[0x9][0x9][0x9][0x9][0x9][0x9]<map
name="MapMap"> [\r][\n]"
DEBUG [httpclient.wire.content] <<
"[0x9][0x9][0x9][0x9][0x9][0x9][0x9]<area shape="rect"
coords="209,91,266,104" href="../air/User_Profile.htm" alt="My Profile"
title="My Profile">[\r][\n]"
DEBUG [httpclient.wire.content] <<
"[0x9][0x9][0x9][0x9][0x9][0x9][0x9]<area shape="rect"
coords="306,91,382,103" href="../air/Booking_Details.htm" alt="My
Bookings" title="My Bookings">[\r][\n]"
DEBUG [httpclient.wire.content] << "
[0x9][0x9][0x9][0x9][0x9][0x9][0x9]<area shape="rect"
coords="415,90,469,103" href="Index.htm" alt="Sign Out" title="Sign
Out">[\r][\n]"
DEBUG [httpclient.wire.content] <<
"[0x9][0x9][0x9][0x9][0x9][0x9][0x9]<area shape="rect"
coords="337,3,371,15" href="#" alt="Home" title="Home">[\r][\n]"
DEBUG [httpclient.wire.content] <<
"[0x9][0x9][0x9][0x9][0x9][0x9][0x9]<area shape="rect"
coords="406,4,467,16" href="#" alt="Contact Us" title="Contact Us">[\r][\n]"
DEBUG [httpclient.wire.content] <<
"[0x9][0x9][0x9][0x9][0x9][0x9]</map>[\r][\n]"
DEBUG [httpclient.wire.content] << "[0x9][0x9][0x9][0x9][0x9]-->[\r][\n]"
DEBUG [httpclient.wire.content] <<
"[0x9][0x9][0x9][0x9][0x9]<Script>[\r][\n]"
DEBUG [httpclient.wire.content] << "[\r][\n]"
DEBUG [httpclient.wire.content] << "if
(navigator.appName=='Netscape'){browser='NS';} [\r][\n]"
DEBUG [httpclient.wire.content] << "if (navigator.appName=='Microsoft
Internet Explorer'){browser='MSIE';} [\r][\n]"
DEBUG [httpclient.wire.content] << "[\r][\n]"
DEBUG [httpclient.wire.content] << "function StatusBar_Hide(obj){ [\r][\n]"
DEBUG [httpclient.wire.content] << " var loc , func;[\r][\n]"
DEBUG [httpclient.wire.content] << "
while(obj.tagName.toUpperCase()!="A") obj=obj.parentElement;[\r][\n]"
DEBUG [httpclient.wire.content] << " func =
obj.getAttribute("link");[\r][\n]"
DEBUG [httpclient.wire.content] << " loc = func.search("http://");[\r][\n]"
DEBUG [httpclient.wire.content] << " if(loc!=-1)[\r][\n]"
DEBUG [httpclient.wire.content] << " window.navigate(func);[\r][\n]"
DEBUG [httpclient.wire.content] << " else[\r][\n]"
DEBUG [httpclient.wire.content] << " eval(func);[\r][\n]"
DEBUG [httpclient.wire.content] << " return false;[\r][\n]"
DEBUG [httpclient.wire.content] << "}[\r][\n]"
DEBUG [httpclient.wire.content] << "</script>[\r][\n]"
DEBUG [httpclient.wire.content] << "[\r][\n]"
DEBUG [httpclient.wire.content] << "<script for="document"
event="onreadystatechange">[\r][\n]"
DEBUG [httpclient.wire.content] << "if(browser=='MSIE'){[\r][\n]"
DEBUG [httpclient.wire.content] << "var colanchor="";[\r][\n]"
DEBUG [httpclient.wire.content] << "if(readyState=="complete") {[\r][\n]"
DEBUG [httpclient.wire.content] << " colanchor =
document.getElementsByTagName("A");[\r][\n]"
DEBUG [httpclient.wire.content] << "
for(i=0;i<colanchor.length;i++){[\r][\n]"
DEBUG [httpclient.wire.content] << "[0x9]anc = colanchor[i];[\r][\n]"
DEBUG [httpclient.wire.content] <<
"[0x9]href=anc.getAttribute("href");[\r][\n]"
DEBUG [httpclient.wire.content] <<
"[0x9]anc.setAttribute("link",href);[\r][\n]"
DEBUG [httpclient.wire.content] <<
"[0x9]anc.setAttribute("href","javascript:void(0);");[\r][\n]"
DEBUG [httpclient.wire.content] <<
"[0x9]anc.attachEvent("onmouseover",function
hideit(){window.status="";return true;});[\r][\n]"
DEBUG [httpclient.wire.content] <<
"[0x9]anc.attachEvent("onmouseout",function hideit(){window.status="
DEBUG [httpclient.wire.content] << """;return true;});[\r][\n]"
DEBUG [httpclient.wire.content] <<
"//[0x9]anc.attachEvent("onclick",function
ctidy(){alert((window.event.srcElement).getAttribute("link"));return
true;});[\r][\n]"
DEBUG [httpclient.wire.content] <<
"[0x9]anc.attachEvent("onclick",function
tup(){return(StatusBar_Hide(window.event.srcElement));});[\r][\n]"
DEBUG [httpclient.wire.content] << " }[\r][\n]"
DEBUG [httpclient.wire.content] << " }[\r][\n]"
DEBUG [httpclient.wire.content] << "}[\r][\n]"
DEBUG [httpclient.wire.content] << "</script>[\r][\n]"
DEBUG [httpclient.wire.content] << "[\r][\n]"
DEBUG [httpclient.wire.content] << "[\r][\n]"
DEBUG [httpclient.wire.content] << "<Script>[\r][\n]"
DEBUG [httpclient.wire.content] << "if(browser=='NS'){[\r][\n]"
DEBUG [httpclient.wire.content] << "
document.captureEvents(Event.MOUSEOVER);[\r][\n]"
DEBUG [httpclient.wire.content] << "
document.onmouseover=function(event) {[\r][\n]"
DEBUG [httpclient.wire.content] << " window.status = "";[\r][\n]"
DEBUG [httpclient.wire.content] << " return(true);[\r][\n]"
DEBUG [httpclient.wire.content] << " }[\r][\n]"
DEBUG [httpclient.wire.content] << "}[\r][\n]"
DEBUG [httpclient.wire.content] << "</script>[\r][\n]"
DEBUG [httpclient.wire.content] << "<table width="100%" border="0"
cellspacing="0" cellpadding="0">[\r][\n]"
DEBUG [httpclient.wire.content] << "[0x9]<tr class=tpanel1> [\r][\n]"
DEBUG [httpclient.wire.content] << "[0x9][0x9]<td width="307"><img
src="../images/toppanel_1.jpg"></td>[\r][\n]"
DEBUG [httpclient.wire.content] << "[0x9][0x9]<td align="right"
valign="bottom"><img src="../images/toppanel_2.gif"
align="absmiddle"></td>[\r][\n]"
DEBUG [httpclient.wire.content] << "[0x9]</tr>[\r][\n]"
DEBUG [httpclient.wire.content] << "[0x9]<tr class=tpanel2> [\r][\n]"
DEBUG [httpclient.wire.content] << "[0x9][0x9]<td colspan="2"><img
src="../images/spacer.gif" height="2" width="1"></td>[\r][\n]"
DEBUG [httpclient.wire.content] << "[0x9]</tr>[\r][\n]"
DEBUG [httpclient.wire.content] << "[0x9]<tr align="right"> [\r][\n]"
DEBUG [httpclient.wire.content] << "[0x9][0x9]<td colspan="2"
background="../images/toppanel_menu_bg.jpg"> [\r][\n]"
DEBUG [httpclient.wire.content] << "[0x9][0x9][0x9]<table width="100%"
border="0" cellspacing="0" cellpadding="0">[\r][\n]"
DEBUG [httpclient.wire.content] << "[0x9][0x9][0x9][0x9]<tr> [\r][\n]"
DEBUG [httpclient.wire.content] << "[0x9][0x9][0x9][0x9][0x9]<td
class=welcome height="20">[\r][\n]"
DEBUG [httpclient.wire.content] << "[0x9][0x9][0x9][0x9][0x9][0x9]<img
src="../images/spacer.gif" width="1" height="4" align="absmiddle"
border=0>[\r][\n]"
DEBUG [httpclient.wire.content] << "[0x9][0x9][0x9][0x9][0x9][0x9]<font
class=base><B>Welcome<font class=welcome1><B> [\r][\n]"
DEBUG [httpclient.wire.content] <<
"[0x9][0x9][0x9][0x9][0x9][0x9][0x9][\r][\n]"
DEBUG [httpclient.wire.content] <<
"[0x9][0x9][0x9][0x9][0x9][0x9][0x9][0x9]Guest[0x9][0x9][0x9][0x9][0x9][0x9][0x9][0x9][\r][\n]"
DEBUG [httpclient.wire.content] <<
"[0x9][0x9][0x9][0x9][0x9][0x9][0x9]</b></font>[\r][\n]"
DEBUG [httpclient.wire.content] <<
"[0x9][0x9][0x9][0x9][0x9][0x9]</b></font>[\r][\n]"
DEBUG [httpclient.wire.content] << "[0x9][0x9][0x9][0x9][0x9]</td>[\r][\n]"
DEBUG [httpclient.wire.content] << "[0x9][0x9][0x9][0x9][0x9]<td
align="right" width="40%"> [\r][\n]"
DEBUG [httpclient.wire.content] << "[0x9][0x9][0x9][0x9][0x9][0x9]<table
width="100" border="0" cellspacing="0" cellpadding="0">[\r][\n]"
DEBUG [httpclient.wire.content] <<
"[0x9][0x9][0x9][0x9][0x9][0x9]<tr>[\r][\n]"
DEBUG [httpclient.wire.content] <<
"[0x9][0x9][0x9][0x9][0x9][0x9][0x9]<td>[\r][\n]"
DEBUG [httpclient.wire.content] <<
"[0x9][0x9][0x9][0x9][0x9][0x9][0x9][0x9]<img
src="../images/toppanel_menu1.jpg" usemap="#MapMap1Map"
border="0"></td>[\r][\n]"
DEBUG [httpclient.wire.content] <<
"[0x9][0x9][0x9][0x9][0x9][0x9]</tr>[\r][\n]"
DEBUG [httpclient.wire.content] <<
"[0x9][0x9][0x9][0x9][0x9][0x9]</table>[\r][\n]"
DEBUG [httpclient.wire.content] << "[0x9][0x9][0x9][0x9][0x9]</td>[\r][\n]"
DEBUG [httpclient.wire.content] << "[0x9][0x9][0x9][0x9]</tr>[\r][\n]"
DEBUG [httpclient.wire.content] << "[0x9][0x9][0x9]</table>[\r][\n]"
DEBUG [httpclient.wire.content] << "[0x9][0x9]</td>[\r][\n]"
DEBUG [httpclient.wire.content] << "[0x9]</tr>[\r][\n]"
DEBUG [httpclient.wire.content] << "</table>[\r][\n]"
DEBUG [httpclient.wire.content] << "<map name="MapMap1Map"> [0x9][\r][\n]"
DEBUG [httpclient.wire.content] << "[0x9]<area shape="rect"
coords="217,1,259,16" href="http://www.airdeccan.net" alt="Home"
title="Home">[\r][\n]"
DEBUG [httpclient.wire.content] << "[0x9]<area shape="rect"
coords="291,1,362,15" href="pnr_search.asp" alt="PNR Search" title="PNR
Search">[\r][\n]"
DEBUG [httpclient.wire.content] << "[0x9]<area shape="rect"
coords="392,1,435,16" href="Register.asp" alt="Register"
title="Register">[\r][\n]"
DEBUG [httpclient.wire.content] << "[0x9]<area shape="rect"
coords="461,2,502,15" href="Login.asp" alt="Sign In" title="Sign
In">[\r][\n]"
DEBUG [httpclient.wire.content] << "</map>[\r][\n]"
DEBUG [httpclient.wire.content] << "<map name ="Map1">[\r][\n]"
DEBUG [httpclient.wire.content] << "[0x9]<area shape="rect"
coords="124,2,164,16" href="http://www.airdeccan"
DEBUG [httpclient.wire.content] << ".net" alt="Home" title="Home">[\r][\n]"
DEBUG [httpclient.wire.content] << "[0x9]<area shape="rect"
coords="182,2,256,16" href="pnr_search.asp" alt="PNR Search" title="PNR
Search">[\r][\n]"
DEBUG [httpclient.wire.content] << "[0x9]<area shape="rect" coords="275,1,"
DEBUG [httpclient.wire.content] << "354,17" href="booking_Details.asp"
alt="My Bookings" title="My Bookings">[\r][\n]"
DEBUG [httpclient.wire.content] << "[0x9]<area shape="rect"
coords="368,1,430,16" href="myProfile.asp" alt="My Profile" title="My
Profile">[\r][\n]"
DEBUG [httpclient.wire.content] << "[0x9]<area shape="rect"
coords="450,2,504,17" href="../common/logout.asp" alt="Sign Out"
title="Sign Out">[\r][\n]"
DEBUG [httpclient.wire.content] << "</map>[\r][\n]"
DEBUG [httpclient.wire.content] << "[\r][\n]"
DEBUG [httpclient.wire.content] << "[\r][\n]"
DEBUG [httpclient.wire.content] << "[0x9][0x9][0x9][0x9][0x9]</td>[\r][\n]"
DEBUG [httpclient.wire.content] << "[0x9][0x9][0x9][0x9]</tr>[\r][\n]"
DEBUG [httpclient.wire.content] << "[0x9][0x9][0x9][0x9]<tr> [\r][\n]"
DEBUG [httpclient.wire.content] << "[0x9][0x9][0x9]<td valign="top">
[\r][\n]"
DEBUG [httpclient.wire.content] << "[0x9][0x9][0x9]<table width="635"
border="0" cellspacing="0" cellpadding="0" align="center">[\r][\n]"
DEBUG [httpclient.wire.content] << "[0x9][0x9][0x9]<tr>[\r][\n]"
DEBUG [httpclient.wire.content] << "[0x9][0x9][0x9]<td align="center"
height="25"><img src="../images/tg_select.gif"></td>[\r][\n]"
DEBUG [httpclient.wire.content] << "[0x9][0x9][0x9]</tr>[\r][\n]"
DEBUG [httpclient.wire.content] << "[0x9][0x9][0x9]</table>[\r][\n]"
DEBUG [httpclient.wire.content] << "[0x9][0x9][0x9][\r][\n]"
DEBUG [httpclient.wire.content] << "[0x9] <table width="635"
border="0" cellspacing="0" cellpadding="0" align="center">[\r][\n]"
DEBUG [httpclient.wire.content] << " <tr> [\r][\n]"
DEBUG [httpclient.wire.content] << " <td
colspan="2"> </td>[\r][\n]"
DEBUG [httpclient.wire.content] << " </tr>[\r][\n]"
DEBUG [httpclient.wire.content] << " <tr> [\r][\n]"
DEBUG [httpclient.wire.content] << " <td
background="../images/h_bg.gif" width="384"><img
src="../images/hsearch_result1.gif" width="229" height="22"></td>[\r][\n]"
DEBUG [httpclient.wire.content] << " <td
background="../images/h_bg.gif" width="251" align="right"><a
href="javascript:helppopup()"><img src="../images/icon_help.gif"
border="0"></a></td>[\r][\n]"
DEBUG [httpclient.wire.content] << " </tr>[\r][\n]"
DEBUG [httpclient.wire.content] << "[0x9][0x9]</table>[\r][\n]"
DEBUG [httpclient.wire.content] << "[0x9][0x9]<table width='635'
border='0' cellspacing='0' cellpadding='0' align='center'><tr
class=band1><td><table width='635' border='0' cellspacing='0'
cellpadding='3' al"
DEBUG [httpclient.wire.content] << "ign='center' class=band4><tr
class=base><td class=red><b><u>Terms and Conditions On
DYNAFares</u>:<br><br><li>Seats under the DYNAFares Scheme are subject
to availability and are on a First Come First Serve
basis.</li><br><li>Purchase of the ticket is in acceptance by you that
you have read & agreed to the Terms and Conditions on DYNAFares and of
Carriage of Air Deccan.</li><br><li>Schedules are subject to clearances
from relevant Government Authorities, Please check and confirm with our
Call Center atleast 24 Hours before
Departure.</li></b></td></tr></table></td></tr></table>[\r][\n]"
DEBUG [httpclient.wire.content] << "[0x9] <!--<table width="635"
border="1" cellspacing="0" cellpadding="0" align="center">[\r][\n]"
DEBUG [httpclient.wire.content] << "[0x9][0x9] <tr>[\r][\n]"
DEBUG [httpclient.wire.content] << "[0x9][0x9][0x9]<td> </td>[\r][\n]"
DEBUG [httpclient.wire.content] << "[0x9][0x9] </tr>[\r][\n]"
DEBUG [httpclient.wire.content] << "[0x9][0x9] <tr>[\r][\n]"
DEBUG [httpclient.wire.content] << "[0x9][0x9][0x9]<td><img
src="../images/hselect_flight.gif" width="635" height="22"></td>[\r][\n]"
DEBUG [httpclient.wire.content] << "[0x9][0x9] </tr>[0x9] [\r][\n]"
DEBUG [httpclient.wire.content] << " </table>--> [\r][\n]"
DEBUG [httpclient.wire.content] << " <table width="635"
border="0" cellspacing="0" cellpadding="0" align="center">[\r][\n]"
DEBUG [httpclient.wire.content] << "[0x9][0x9] <tr class=band7>[\r][\n]"
DEBUG [httpclient.wire.content] << "[0x9][0x9][0x9]<td>[\r][\n]"
DEBUG [httpclient.wire.content] << "[0x9][0x9][0x9] <table width="635"
border="0" cellspacing="1" cellpadding="2" align="center">[\r][\n]"
DEBUG [httpclient.wire.content] << "[0x9][0x9][0x9][0x9]<tr
class=band1><td class=base colspan='7'><b>Flights departing from
MUMBAI</b></td></tr><tr class=band2><td class=small width=35
align=center><b>Select</b></td><td class=small
width=90><b>Date</b></td><td class=small
width=118><b>Departure</b></td><td class=small
width=118><b>Arrival</b></td><td class=small width="
DEBUG [httpclient.wire.content] << "55><b>Flight#</b></td><td
class=small width=75><b>Duration</b></td><td class=small
width=75><b>Fare (INR)</b></td></tr><tr class=band3> <td class=base
width=35 align=center><input type=radio name='radFlightFrom'
value='y[0x80]t[0x91][0xa8][0xb5]tyww}[0xc3][0x89][0x96][0x94][0xc3][0x94][0x9c][0x94][0x89][0x88][0x90][0xc3][0x8e][0x96][0x90][0xc3][0x8e][0x96][0x88][0xc3][0x8b][0x95]tzx~[0xc3]w|[0x81]y|[0xc3]w}[0x81]|w[0xc3]xg[0x8f][0x99]gy|g[0x94][0x90][0x95][0xc3]xG[0xc3]w[0xc3]w[0xc3][0x90][0x95][0x99][0xc3][0x96][0xc3][0x89][0x96][0x94][0xc3][0x8e][0x96][0x90][0xc3][0x88][0xc3][0xa0][0xc3][0xa0][0xc3]y[0xc3][0x8b][0x95]tzx~[0xc3][0x8b][0x95]tzx~txw|[0xa5]yy~[0x80][0xc3]w[0xc3]w[0xc3]yyx[0xc3]w[0xc3]w[0xc3]w'
Checked> <input type=hidden name='hidFlightFrom'
value='29-Jan-2006|05:25'> </td><input type=hidden
name='hidFlightFromFlag0' value='Y'></td><td class=small
width=85>29-Jan-2006</td><td class=small width=116>BOM (MUMBAI)</td><td
class=small width=116>GOI (GOA)</td><td class=small width=64><a
href='javascript:popup1("Flight_Details.asp?FlightID%3DDN%2D317%26TDate%3D29%2DJan%2D2006")'
class=a1 >DN-317</a></td><td class=small width=75>1 HR 25 MIN</td><td
class=small width=64><a Title='Click for fare details'
href='javascript:popup2("Fare_Details.asp?2279%7C0%7C0%7C221%7C0%7C0%7C0%5E1%7C0%7C0%7C1")'
class=a1><b><p class=fares>2,279.00</b></p></a></td></tr><tr
class=band3><td class=small> </td><td class=small> </td><td
class=small >Time: 05:25</td><td class=small >Time: 06:50</td><td
class=small> </td><td class=small> </td><td
class=small><B><Font Color='Blue'>DYNAFare</Font><B></td></tr><tr
class=band3> <td class=base colspan=7> <table width=100% border=0
cellspacing=0 cellpadding=0><tr ba"
DEBUG [httpclient.wire.content] << "nd3> <td
background=../images/hline_bg.gif height=1><img
src=../images/hline_bg.gif width=4 height=1></td></tr></table></td><tr
class=band3> <td class=base width=35 align=center><input type=radio
name='radFlightFrom'
value='u|p[0x8d][0xa4][0xb1]pussy[0xbf][0x85][0x92][0x90][0xbf][0x90][0x98][0x90][0x85][0x84][0x8c][0xbf][0x8a][0x92][0x8c][0xbf][0x8a][0x92][0x84][0xbf][0x87][0x91]pvsz[0xbf]tv}wx[0xbf]tx}tx[0xbf]tc[0x8b][0x95]cvsc[0x90][0x8c][0x91][0xbf]tC[0xbf]s[0xbf]s[0xbf][0x8c][0x91][0x95][0xbf][0x92][0xbf][0x85][0x92][0x90][0xbf][0x8a][0x92][0x8c][0xbf][0x84][0xbf][0x9c][0xbf][0x9c][0xbf]u[0xbf][0x87][0x91]pvsz[0xbf][0x87][0x91]pvszptsx[0xa1]uuz|[0xbf]s[0xbf]s[0xbf]uut[0xbf]s[0xbf]s[0xbf]s'
> <input type=hidden name='hidFlightFrom' value='29-Jan-2006|13:45'>
</td><input type=hidden name='hidFlightFromFlag1' value='Y'></td><td
class=small width=85>29-Jan-2006</td><td class=small width=116>BOM
(MUMBAI)</td><td class=small width=116>GOI (GOA)</td><td class=small
width=64><a
href='javascript:popup1("Flight_Details.asp?FlightID%3DDN%2D307%26TDate%3D29%2DJan%2D2006")'
class=a1 >DN-307</a></td><td class=small width=75>1 HR 30 MIN</td><td
class=small width=64><a Title='Click for fare details'
href='javascript:popup2("Fare_Details.asp?2279%7C0%7C0%7C221%7C0%7C0%7C0%5E1%7C0%7C0%7C1")'
class=a1><b><p class=fares>2,279.00</b></p></a></td></tr><tr
class=band3><td class=small> </td><td class=small> </td><td
class=small >Time: 13:45</td><td class=small >Time: 15:15</td><td
class=small> </td><td class=small> </td><td
class=small><B><Font Color='Blue'>DYNAFare</Font><B></td></tr><tr
class=band3> <td class=base colspan=7> <table width=100% border=0
cellspacing=0 cellpadding=0><tr band"
DEBUG [httpclient.wire.content] << "3> <td
background=../images/hline_bg.gif height=1><img
src=../images/hline_bg.gif width=4
height=1></td></tr></table></td></tr></tr>[\r][\n]"
DEBUG [httpclient.wire.content] << "[0x9][0x9][0x9] </table>[\r][\n]"
DEBUG [httpclient.wire.content] << "[0x9][0x9][0x9]</td>[\r][\n]"
DEBUG [httpclient.wire.content] << "[0x9][0x9] </tr>[\r][\n]"
DEBUG [httpclient.wire.content] << "[0x9][0x9]</table>[\r][\n]"
DEBUG [httpclient.wire.content] << "[0x9][0x9]<table width="635"
border="0" cellspacing="0" cellpadding="0" align="center">[\r][\n]"
DEBUG [httpclient.wire.content] << "[0x9][0x9][0x9][0x9][\r][\n]"
DEBUG [httpclient.wire.content] << "[0x9][0x9]</table>[\r][\n]"
DEBUG [httpclient.wire.content] << " <table width="635"
border="0" cellspacing="0" cellpadding="0" align="center">[\r][\n]"
DEBUG [httpclient.wire.content] << "[0x9][0x9] <tr class=band6> [\r][\n]"
DEBUG [httpclient.wire.content] << "[0x9][0x9][0x9]<td height="13"
align="right"> </td>[\r][\n]"
DEBUG [httpclient.wire.content] << "[0x9][0x9] </tr>[\r][\n]"
DEBUG [httpclient.wire.content] << "[0x9][0x9] <tr class=band6> [\r][\n]"
DEBUG [httpclient.wire.content] << "[0x9][0x9][0x9]<td align="center">
[\r][\n]"
DEBUG [httpclient.wire.content] << "[0x9][0x9][0x9] <table width="298"
border="0" cellspacing="0" cellpadding="0" height="19">[\r][\n]"
DEBUG [httpclient.wire.content] << "[0x9][0x9][0x9][0x9]<tr> [\r][\n]"
DEBUG [httpclient.wire.content] << "[0x9][0x9][0x9][0x9] <td
width="22"><a href="javascript:window.history.back()"><img
src="../images/icon_larrow.gif" width="20" height="20" border="0"
align="absmiddle"></a></td>[\r][\n]"
DEBUG [httpclient.wire.content] << "[0x9][0x9][0x9][0x9] <td
width="54"><a
href="javascript:window.history.back()"><b>Back</b></a></td>[\r][\n]"
DEBUG [httpclient.wire.content] << "[0x9][0x9][0x9][0x9] <td
width="23"><img src="../images/icon_bsearch.gif" width="20" height="20"
align="absmiddle"></td>[\r][\n]"
DEBUG [httpclient.wire.content] << "[0x9][0x9][0x9][0x9] <td
width="91"><a href="../airdeccan/home.asp"><b>New [\r][\n]"
DEBUG [httpclient.wire.content] << "[0x9][0x9][0x9][0x9][0x9]Search
</b></a></td>[\r][\n]"
DEBUG [httpclient.wire.content] << "[0x9][0x9][0x9][0x9] <td
width="24"><a href="javascript:onlogin()"><img
src="../images/icon_rarrow.gif" width="20" height="20" border="0"
align="absmiddle"></a></td>[\r][\n]"
DEBUG [httpclient.wire.content] << "[0x9][0x9][0x9][0x9] <td
width="84"><a href="javascript:onlogin()"><b>Select [\r][\n]"
DEBUG [httpclient.wire.content] <<
"[0x9][0x9][0x9][0x9][0x9]Flight</b></a></td>[\r][\n]"
DEBUG [httpclient.wire.content] << "[0x9][0x9][0x9][0x9]</tr>[\r][\n]"
DEBUG [httpclient.wire.content] << "[0x9][0x9][0x9] </table>[\r][\n]"
DEBUG [httpclient.wire.content] << "[0x9][0x9][0x9]</td>[\r][\n]"
DEBUG [httpclient.wire.content] << "[0x9][0x9] </tr>[\r][\n]"
DEBUG [httpclient.wire.content] << "[0x9][0x9] <tr class=band6> [\r][\n]"
DEBUG [httpclient.wire.content] << "[0x9][0x9][0x9]<td
height="13"> </td>[\r][\n]"
DEBUG [httpclient.wire.content] << "[0x9][0x9] </tr>[\r][\n]"
DEBUG [httpclient.wire.content] << "[0x9][0x9] <tr> [\r][\n]"
DEBUG [httpclient.wire.content] << "[0x9][0x9][0x9]<td
background="../images/bottomline_bg.gif">"
DEBUG [httpclient.wire.content] << "<img
src="../images/bottomline_bg.gif" width="8" height="6"></td>[\r][\n]"
DEBUG [httpclient.wire.content] << "[0x9][0x9] </tr>[\r][\n]"
DEBUG [httpclient.wire.content] << "[0x9][0x9]</table>[\r][\n]"
DEBUG [httpclient.wire.content] << "[0x9] </td>[\r][\n]"
DEBUG [httpclient.wire.content] << " </tr>[0x9][0x9][0x9][0x9] [\r][\n]"
DEBUG [httpclient.wire.content] << "</table>[\r][\n]"
DEBUG [httpclient.wire.content] << "[0x9][\r][\n]"
DEBUG [httpclient.wire.content] << "<table width="100%" border="0"
cellspacing="0" cellpadding="0">[\r][\n]"
DEBUG [httpclient.wire.content] << " <tr> [\r][\n]"
DEBUG [httpclient.wire.content] << "[0x9]<td rowspan="2"
width="196"><img src="../images/bottompanel_1.jpg" width="196"
height="40" usemap="#Map" border="0"></td>[\r][\n]"
DEBUG [httpclient.wire.content] << "[0x9]<td align="right"
width="100%"><img src="../images/spacer.gif" width="2"
height="20"></td>[\r][\n]"
DEBUG [httpclient.wire.content] << " </tr>[\r][\n]"
DEBUG [httpclient.wire.content] << " <tr>[\r][\n]"
DEBUG [httpclient.wire.content] << "[0x9]<td
background="../images/bottompanel1_bg.jpg" align="right"><img
src="../images/bottompanel_2.jpg" height="20"></td>[\r][\n]"
DEBUG [httpclient.wire.content] << " </tr>[\r][\n]"
DEBUG [httpclient.wire.content] << "</table>[\r][\n]"
DEBUG [httpclient.wire.content] << "[\r][\n]"
DEBUG [httpclient.wire.content] << "<map name="Map"> [\r][\n]"
DEBUG [httpclient.wire.content] << " <area shape="rect"
coords="3,14,149,30" href="http://www.interglobetechnologies.com"
target="_blank">[\r][\n]"
DEBUG [httpclient.wire.content] << "</map>[\r][\n]"
DEBUG [httpclient.wire.content] << "</form>[\r][\n]"
DEBUG [httpclient.wire.content] << "</body>[\r][\n]"
DEBUG [httpclient.wire.content] << "</html>[\r][\n]"
DEBUG [httpclient.wire.header] >> "POST /air/Select_Flight.asp
HTTP/1.1[\r][\n]"
DEBUG [httpclient.wire.header] >> "Content-Type: text/html[\r][\n]"
DEBUG [httpclient.wire.header] >> "charset: iso-8859-1[\r][\n]"
DEBUG [httpclient.wire.header] >> "User-Agent: Jakarta
Commons-HttpClient/3.0[\r][\n]"
DEBUG [httpclient.wire.header] >> "Host: www.airdeccan.net[\r][\n]"
DEBUG [httpclient.wire.header] >> "Cookie: $Version=0;
igtsAirDeccan=pinfant=0&pchild=0&padus=1&pclass=A&preturndate=&pdepartdate=01%2F29%2F2006&pdestcity=GOI&flagfare=O&porigincity=BOM&cookie=enabled;
$Path=/[\r][\n]"
DEBUG [httpclient.wire.header] >> "Cookie: $Version=0;
ASPSESSIONIDCQTCAQBD=IJLLFPKBDPKBFIIBFOBLJPFC; $Path=/[\r][\n]"
DEBUG [httpclient.wire.header] >> "Content-Length: 839[\r][\n]"
DEBUG [httpclient.wire.header] >> "[\r][\n]"
DEBUG [httpclient.wire.content] >> "--"
DEBUG [httpclient.wire.content] >> "s2VMkP2HpEQUuu8ArsqXgTO4bwBB0boKfi"
DEBUG [httpclient.wire.content] >> "[\r][\n]"
DEBUG [httpclient.wire.content] >> "Content-Disposition: form-data; name="
DEBUG [httpclient.wire.content] >> """
DEBUG [httpclient.wire.content] >> "hidFlightFrom"
DEBUG [httpclient.wire.content] >> """
DEBUG [httpclient.wire.content] >> "[\r][\n]"
DEBUG [httpclient.wire.content] >> "Content-Type: "
DEBUG [httpclient.wire.content] >> "text/plain"
DEBUG [httpclient.wire.content] >> "; charset="
DEBUG [httpclient.wire.content] >> "iso-8859-1"
DEBUG [httpclient.wire.content] >> "[\r][\n]"
DEBUG [httpclient.wire.content] >> "Content-Transfer-Encoding: "
DEBUG [httpclient.wire.content] >> "8bit"
DEBUG [httpclient.wire.content] >> "[\r][\n]"
DEBUG [httpclient.wire.content] >> "[\r][\n]"
DEBUG [httpclient.wire.content] >> "29-Jan-2006|05:25"
DEBUG [httpclient.wire.content] >> "[\r][\n]"
DEBUG [httpclient.wire.content] >> "--"
DEBUG [httpclient.wire.content] >> "s2VMkP2HpEQUuu8ArsqXgTO4bwBB0boKfi"
DEBUG [httpclient.wire.content] >> "[\r][\n]"
DEBUG [httpclient.wire.content] >> "Content-Disposition: form-data; name="
DEBUG [httpclient.wire.content] >> """
DEBUG [httpclient.wire.content] >> "radFlightFrom"
DEBUG [httpclient.wire.content] >> """
DEBUG [httpclient.wire.content] >> "[\r][\n]"
DEBUG [httpclient.wire.content] >> "Content-Type: "
DEBUG [httpclient.wire.content] >> "text/plain"
DEBUG [httpclient.wire.content] >> "; charset="
DEBUG [httpclient.wire.content] >> "iso-8859-1"
DEBUG [httpclient.wire.content] >> "[\r][\n]"
DEBUG [httpclient.wire.content] >> "Content-Transfer-Encoding: "
DEBUG [httpclient.wire.content] >> "8bit"
DEBUG [httpclient.wire.content] >> "[\r][\n]"
DEBUG [httpclient.wire.content] >> "[\r][\n]"
DEBUG [httpclient.wire.content] >>
"yttyww}[0xc9][0xd4][0xce][0xce][0xcb]tzx~w|[0xc1]y|w}[0xc1]|wxg[0xcf]gy|gxGww[0xd0][0xd6][0xc9][0xce][0xc8][0xe0][0xe0]y[0xcb]tzx~[0xcb]tzx~txw|yy~wwyyxwww"
DEBUG [httpclient.wire.content] >> "[\r][\n]"
DEBUG [httpclient.wire.content] >> "--"
DEBUG [httpclient.wire.content] >> "s2VMkP2HpEQUuu8ArsqXgTO4bwBB0boKfi"
DEBUG [httpclient.wire.content] >> "[\r][\n]"
DEBUG [httpclient.wire.content] >> "Content-Disposition: form-data; name="
DEBUG [httpclient.wire.content] >> """
DEBUG [httpclient.wire.content] >> "hidFlightFromFlag1"
DEBUG [httpclient.wire.content] >> """
DEBUG [httpclient.wire.content] >> "[\r][\n]"
DEBUG [httpclient.wire.content] >> "Content-Type: "
DEBUG [httpclient.wire.content] >> "text/plain"
DEBUG [httpclient.wire.content] >> "; charset="
DEBUG [httpclient.wire.content] >> "iso-8859-1"
DEBUG [httpclient.wire.content] >> "[\r][\n]"
DEBUG [httpclient.wire.content] >> "Content-Transfer-Encoding: "
DEBUG [httpclient.wire.content] >> "8bit"
DEBUG [httpclient.wire.content] >> "[\r][\n]"
DEBUG [httpclient.wire.content] >> "[\r][\n]"
DEBUG [httpclient.wire.content] >> "Y"
DEBUG [httpclient.wire.content] >> "[\r][\n]"
DEBUG [httpclient.wire.content] >> "--"
DEBUG [httpclient.wire.content] >> "s2VMkP2HpEQUuu8ArsqXgTO4bwBB0boKfi"
DEBUG [httpclient.wire.content] >> "[\r][\n]"
DEBUG [httpclient.wire.content] >> "Content-Disposition: form-data; name="
DEBUG [httpclient.wire.content] >> """
DEBUG [httpclient.wire.content] >> "hidFlightFromFlag0"
DEBUG [httpclient.wire.content] >> """
DEBUG [httpclient.wire.content] >> "[\r][\n]"
DEBUG [httpclient.wire.content] >> "Content-Type: "
DEBUG [httpclient.wire.content] >> "text/plain"
DEBUG [httpclient.wire.content] >> "; charset="
DEBUG [httpclient.wire.content] >> "iso-8859-1"
DEBUG [httpclient.wire.content] >> "[\r][\n]"
DEBUG [httpclient.wire.content] >> "Content-Transfer-Encoding: "
DEBUG [httpclient.wire.content] >> "8bit"
DEBUG [httpclient.wire.content] >> "[\r][\n]"
DEBUG [httpclient.wire.content] >> "[\r][\n]"
DEBUG [httpclient.wire.content] >> "Y"
DEBUG [httpclient.wire.content] >> "[\r][\n]"
DEBUG [httpclient.wire.content] >> "--"
DEBUG [httpclient.wire.content] >> "s2VMkP2HpEQUuu8ArsqXgTO4bwBB0boKfi"
DEBUG [httpclient.wire.content] >> "--"
DEBUG [httpclient.wire.content] >> "[\r][\n]"
DEBUG [httpclient.wire.header] << "HTTP/1.1 100 Continue[\r][\n]"
DEBUG [httpclient.wire.header] << "Date: Tue, 17 Jan 2006 09:05:05
GMT[\r][\n]"
DEBUG [httpclient.wire.header] << "Server: Microsoft-IIS/5.0[\r][\n]"
DEBUG [httpclient.wire.header] << "X-Powered-By: ASP.NET[\r][\n]"
DEBUG [httpclient.wire.header] << "Via: 1.1 mum-cac01 (NetCache
NetApp/6.0)[\r][\n]"
DEBUG [httpclient.wire.header] << "HTTP/1.1 500 Internal Server
Error[\r][\n]"
DEBUG [httpclient.wire.header] << "Date: Tue, 17 Jan 2006 09:05:26
GMT[\r][\n]"
DEBUG [httpclient.wire.header] << "Content-Length: 1625[\r][\n]"
DEBUG [httpclient.wire.header] << "Content-Type: text/html[\r][\n]"
DEBUG [httpclient.wire.header] << "Cache-Control: private[\r][\n]"
DEBUG [httpclient.wire.header] << "Server: Microsoft-IIS/5.0[\r][\n]"
DEBUG [httpclient.wire.header] << "X-Powered-By: ASP.NET[\r][\n]"
DEBUG [httpclient.wire.header] << "Via: 1.1 mum-cac01 (NetCache
NetApp/6.0)[\r][\n]"
DEBUG [httpclient.wire.content] << "<Script>[\r][\n]"
DEBUG [httpclient.wire.content] << "[\r][\n]"
DEBUG [httpclient.wire.content] << "if
(navigator.appName=='Netscape'){browser='NS';} [\r][\n]"
DEBUG [httpclient.wire.content] << "if (navigator.appName=='Microsoft
Internet Explorer'){browser='MSIE';} [\r][\n]"
DEBUG [httpclient.wire.content] << "[\r][\n]"
DEBUG [httpclient.wire.content] << "function StatusBar_Hide(obj){ [\r][\n]"
DEBUG [httpclient.wire.content] << " var loc , func;[\r][\n]"
DEBUG [httpclient.wire.content] << "
while(obj.tagName.toUpperCase()!="A") obj=obj.parentElement;[\r][\n]"
DEBUG [httpclient.wire.content] << " func =
obj.getAttribute("link");[\r][\n]"
DEBUG [httpclient.wire.content] << " loc = func.search("http://");[\r][\n]"
DEBUG [httpclient.wire.content] << " if(loc!=-1)[\r][\n]"
DEBUG [httpclient.wire.content] << " window.navigate(func);[\r][\n]"
DEBUG [httpclient.wire.content] << " else[\r][\n]"
DEBUG [httpclient.wire.content] << " eval(func);[\r][\n]"
DEBUG [httpclient.wire.content] << " return false;[\r][\n]"
DEBUG [httpclient.wire.content] << "}[\r][\n]"
DEBUG [httpclient.wire.content] << "</script>[\r][\n]"
DEBUG [httpclient.wire.content] << "[\r][\n]"
DEBUG [httpclient.wire.content] << "<script for="document"
event="onreadystatechange">[\r][\n]"
DEBUG [httpclient.wire.content] << "if(browser=='MSIE'){[\r][\n]"
DEBUG [httpclient.wire.content] << "var colanchor="";[\r][\n]"
DEBUG [httpclient.wire.content] << "if(readyState=="complete") {[\r][\n]"
DEBUG [httpclient.wire.content] << " colanchor =
document.getElementsByTagName("A");[\r][\n]"
DEBUG [httpclient.wire.content] << "
for(i=0;i<colanchor.length;i++){[\r][\n]"
DEBUG [httpclient.wire.content] << "[0x9]anc = colanchor[i];[\r][\n]"
DEBUG [httpclient.wire.content] <<
"[0x9]href=anc.getAttribute("href");[\r][\n]"
DEBUG [httpclient.wire.content] <<
"[0x9]anc.setAttribute("link",href);[\r][\n]"
DEBUG [httpclient.wire.content] <<
"[0x9]anc.setAttribute("href","javascript:void(0);");[\r][\n]"
DEBUG [httpclient.wire.content] <<
"[0x9]anc.attachEvent("onmouseover",function
hideit(){window.status="";return true;});[\r][\n]"
DEBUG [httpclient.wire.content] <<
"[0x9]anc.attachEvent("onmouseout",function
hideit(){window.status="";return true;});[\r][\n]"
DEBUG [httpclient.wire.content] <<
"//[0x9]anc.attachEvent("onclick",function
ctidy(){alert((window.event.srcElement).getAttribute("link"));return
true;});[\r][\n]"
DEBUG [httpclient.wire.content] <<
"[0x9]anc.attachEvent("onclick",function
tup(){return(StatusBar_Hide(window.event.srcElement));});[\r][\n]"
DEBUG [httpclient.wire.content] << " }[\r][\n]"
DEBUG [httpclient.wire.content] << " }[\r][\n]"
DEBUG [httpclient.wire.content] << "}[\r][\n]"
DEBUG [httpclient.wire.content] << "</script>[\r][\n]"
DEBUG [httpclient.wire.content] << "[\r][\n]"
DEBUG [httpclient.wire.content] << "[\r][\n]"
DEBUG [httpclient.wire.content] << "<Script>[\r][\n]"
DEBUG [httpclient.wire.content] << "if(browser=='NS'){[\r][\n]"
DEBUG [httpclient.wire.content] << "
document.captureEvents(Event.MOUSEOVER);[\r][\n]"
DEBUG [httpclient.wire.content] << "
document.onmouseover=function(event) {[\r][\n]"
DEBUG [httpclient.wire.content] << " window.status = "";[\r][\n]"
DEBUG [httpclient.wire.content] << " return(true);[\r][\n]"
DEBUG [httpclient.wire.content] << " }[\r][\n]"
DEBUG [httpclient.wire.content] << "}[\r][\n]"
DEBUG [httpclient.wire.content] << "</script> <font face="Arial"
size=2>[\n]"
DEBUG [httpclient.wire.content] << "<p>Microsoft VBScript runtime
</font> <font face="Arial" size=2>error '800a0009'</font>[\n]"
DEBUG [httpclient.wire.content] << "<p>[\n]"
DEBUG [httpclient.wire.content] << "<font face="Arial" size=2>Subscript
out of range: '[number: 0]'</font>[\n]"
DEBUG [httpclient.wire.content] << "<p>[\n]"
DEBUG [httpclient.wire.content] << "<font face="Arial"
size=2>/air/Select_Flight.asp</font><font face="Arial" size=2>, line
39</font> "
----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
thanks
rajapandian.
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]