You are viewing a plain text version of this content. The canonical link for it is here.
Posted to httpclient-users@hc.apache.org by vzs64 <vz...@rediffmail.com> on 2007/12/01 16:55:26 UTC

Performance Issues with Transfer-Encoding chunked

I am using a HttpClient with MultiThreadedHttpConnectionManager.

Server responses with Content-Encoding gzip, read 28133 bytes in less than a
second.

Whereas Transfer-Encoding chunked, read 96959 bytes in 30 seconds!!!! (from
http://www.reuters.com/article/bankingfinancial-SP/idUSN2432828320070824)

Let me know if any code sample / other details are needed for further
investigation?
-- 
View this message in context: http://www.nabble.com/Performance-Issues-with-Transfer-Encoding-chunked-tf4928640.html#a14106574
Sent from the HttpClient-User mailing list archive at Nabble.com.


---------------------------------------------------------------------
To unsubscribe, e-mail: httpclient-user-unsubscribe@jakarta.apache.org
For additional commands, e-mail: httpclient-user-help@jakarta.apache.org


Re: Performance Issues with Transfer-Encoding chunked

Posted by vzs64 <vz...@rediffmail.com>.
Closing this thread and opening a new thread with a more appropriate subject
"HttpClient much slower than browser"
-- 
View this message in context: http://www.nabble.com/Performance-Issues-with-Transfer-Encoding-chunked-tp14106574p14472363.html
Sent from the HttpClient-User mailing list archive at Nabble.com.


---------------------------------------------------------------------
To unsubscribe, e-mail: httpclient-users-unsubscribe@hc.apache.org
For additional commands, e-mail: httpclient-users-help@hc.apache.org


Re: Performance Issues with Transfer-Encoding chunked

Posted by vzs64 <vz...@rediffmail.com>.
Hi Roland, 

> What happens if you access the page from curl or wwwget? 
Do you get the content you want, or the same error as when 
using HttpClient? 
  No exception with wget or HTTPClient now (Appears the site has been
fixed). 

  There are other public URL's with same slow download speed, so I guess the
exception is not the real cause of slow down. 


> It's been mentioned before: you will have 
to use some network sniffer tool like Wireshark to capture 
a request that returns the content you want. Then we can 
compare that request with the one HttpClient sends. 

  Uploaded two Wireshark log files with IE and HttpClient 3.1.

  From my novice view (looking at a sniffer log first time), there appears
to be a problem with DNS resolution at my end. Will work on the same in
parallel.
 

Thanks
-- 
View this message in context: http://www.nabble.com/Performance-Issues-with-Transfer-Encoding-chunked-tp14106574p14418943.html
Sent from the HttpClient-User mailing list archive at Nabble.com.


---------------------------------------------------------------------
To unsubscribe, e-mail: httpclient-users-unsubscribe@hc.apache.org
For additional commands, e-mail: httpclient-users-help@hc.apache.org


Re: Performance Issues with Transfer-Encoding chunked

Posted by Roland Weber <os...@dubioso.net>.
Hello,

there is a delay of more than 2 seconds at
> 2007/12/02 16:46:19:203 IST [DEBUG] content - << "  var adsrc = 'reuters.co"
> 2007/12/02 16:46:21:828 IST [DEBUG] content - << "m.dart/bus...

then again at
> 2007/12/02 16:46:21:828 IST [DEBUG] content - << "           "
> 2007/12/02 16:46:24:140 IST [DEBUG] content - << "     </div>[\r][\n]"

and
> 2007/12/02 16:46:24:140 IST [DEBUG] content - << "       
> org.apache.jsp.WEB_002dINF.jsp.templates.page"
> 2007/12/02 16:46:26:156 IST [DEBUG] content - <<
> "Templates.homePage_jsp.

The parts before and after these delays have identical
timestamps, so it seems that there might be a 2 second
round-trip time for requesting a new data block. High-
latency network connection?

The jsp service thing indicates that the page you are
requesting is generated from a JSP. There is no way to
switch that off, but you will have to find a way to
make it work. The returned exception is obviously not
what you want.
One explanation for the excessive response times is
that the exceptions and their huge stack traces blow
up the page size. If every data block requires 2 seconds
for receiving, and the page size is multiplied, then
you will see a multiplied response time.

Now, let's analyse the real problem:
> 2007/12/02 16:46:24:140 IST [DEBUG] content - << "    <!-- Exception
> occurred: javax.servlet.jsp.JspException: Unable to find a value for
> "netChanged" in object of class "com.reuters.rcom.beans.CmsSymbolQuote"
> using operator "."-->[\n]"

The server fails to find something in one of it's objects.
And the stack trace indicates that the server uses Struts,
which stores dialog state in the servlet session. Could it
be that the session is not established correctly? Yes, a
browser does download the site on first access. But it will
also download dozens of pictures and execute JavaScript and
I don't know what else. It actually tries to auto-submit an
HTML form that is embedded somewhere.
What happens if you access the page from curl or wwwget?
Do you get the content you want, or the same error as when
using HttpClient? It's been mentioned before: you will have
to use some network sniffer tool like Wireshark to capture
a request that returns the content you want. Then we can
compare that request with the one HttpClient sends.

cheers,
  Roland



---------------------------------------------------------------------
To unsubscribe, e-mail: httpclient-users-unsubscribe@hc.apache.org
For additional commands, e-mail: httpclient-users-help@hc.apache.org


Re: Performance Issues with Transfer-Encoding chunked

Posted by vzs64 <vz...@rediffmail.com>.

> Are you sure the two methods are downloading the same amount of data?
   Both HttpClient and HttpUrlConnection are downloading same amount of data
- 75813 bytes. (And hopefully IE is also downloading the same)

> wget is available for a lot of platforms.
   wget takes 28 secs for the same page
 
                F:\>wget
http://www.reuters.com/article/bankingfinancial-SP/idUSN2432828320070824
                --22:38:00-- 
http://www.reuters.com/article/bankingfinancial-SP/idUSN2432828320070824
                        => `idUSN2432828320070824'
                        Resolving www.reuters.com... 216.35.67.135
                        Connecting to www.reuters.com|216.35.67.135|:80...
connected.
                        HTTP request sent, awaiting response... 200 OK
                        Length: unspecified [text/html]

    [                                 <=> ] 75,876         2.69K/s

                       22:38:28 (2.69 KB/s) - `idUSN2432828320070824' saved
[75876]

      The KB/s sucks here, but for other google it is pretty good

                     Resolving www.google.com... 208.67.217.231,
208.67.217.230
                     Connecting to www.google.com|208.67.217.231|:80...
connected.
                     HTTP request sent, awaiting response... 200 OK
                     Length: unspecified [text/html]

                     [ <=>                                 ] 5,116        
--.--K/s

                     22:32:34 (267.04 KB/s) - `index.html' saved [5116]



-- 
View this message in context: http://www.nabble.com/Performance-Issues-with-Transfer-Encoding-chunked-tp14106574p14401581.html
Sent from the HttpClient-User mailing list archive at Nabble.com.


---------------------------------------------------------------------
To unsubscribe, e-mail: httpclient-users-unsubscribe@hc.apache.org
For additional commands, e-mail: httpclient-users-help@hc.apache.org


Re: Performance Issues with Transfer-Encoding chunked

Posted by sebb <se...@gmail.com>.
On 18/12/2007, vzs64 <vz...@rediffmail.com> wrote:
>
> >> (2) What makes you think this problem has anything to do with HttpClient
> in the first place? There is no evidence of what so ever that the
> performance degradation is due to the client side.
>
>    IE 7.0 takes about 16 secs to download the main page
> http://www.reuters.com/article/bankingfinancial-SP/idUSN2432828320070824
> (without images/js/css files), whereas HttpClient is taking the figures
> mentioned in the previous post on my ASDL connection.
>
>    HttpUrlConnection is taking 52.8 secs.

Are you sure the two methods are downloading the same amount of data?

>    Are there any other non-java tools against which a benchmark can be
> done? (I used to use tear from microsoft earlier, but dont have the tool
> now)

wget is available for a lot of platforms.

> --
> View this message in context: http://www.nabble.com/Performance-Issues-with-Transfer-Encoding-chunked-tp14106574p14399806.html
> Sent from the HttpClient-User mailing list archive at Nabble.com.
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: httpclient-users-unsubscribe@hc.apache.org
> For additional commands, e-mail: httpclient-users-help@hc.apache.org
>
>

---------------------------------------------------------------------
To unsubscribe, e-mail: httpclient-users-unsubscribe@hc.apache.org
For additional commands, e-mail: httpclient-users-help@hc.apache.org


Re: Performance Issues with Transfer-Encoding chunked

Posted by vzs64 <vz...@rediffmail.com>.
> Sorry, I don't have that post. It's not in my local mailbox, nor
can I find it in the mailing list archives. You have posted on
Dec 1st, then again on Dec 4th. Maybe your mail was rejected by
the mailing list server because of attachments?
 
    My mistake, the post was stuck in Nabble. Have resent it, let me know if
you dont see it in your mail box. 

>Have you tried my original suggestion and sent the request
with a header "Accept-Encoding: gzip" to allow the server to
compress the response? Of course you'll have to decompress
it again in your application.

   At my client I do send the header "Accept-Encoding: gzip" by default (and
decompress the stream). But unfortunately, the server (Reuter's) is not
configured to send out compressed stream.

Thanks
-- 
View this message in context: http://www.nabble.com/Performance-Issues-with-Transfer-Encoding-chunked-tp14106574p14401737.html
Sent from the HttpClient-User mailing list archive at Nabble.com.


---------------------------------------------------------------------
To unsubscribe, e-mail: httpclient-users-unsubscribe@hc.apache.org
For additional commands, e-mail: httpclient-users-help@hc.apache.org


Re: Performance Issues with Transfer-Encoding chunked

Posted by Roland Weber <os...@dubioso.net>.
vzs64 wrote:
> The Wire Log and exception from server are in my third post dated - Dec 02,
> 2007; 05:03pm.

Sorry, I don't have that post. It's not in my local mailbox, nor
can I find it in the mailing list archives. You have posted on
Dec 1st, then again on Dec 4th. Maybe your mail was rejected by
the mailing list server because of attachments?

http://mail-archives.apache.org/mod_mbox/hc-httpclient-users/200712.mbox/browser

> The problems occur with particular site
> -http://www.reuters.com/article/bankingfinancial-SP/idUSN2432828320070824,
> other sites (eg http://en.wikipedia.org/wiki/Prime_brokerage) get downloaded
> in 2-3 secs.

Have you tried my original suggestion and sent the request
with a header "Accept-Encoding: gzip" to allow the server to
compress the response? Of course you'll have to decompress
it again in your application.

cheers,
  Roland


---------------------------------------------------------------------
To unsubscribe, e-mail: httpclient-users-unsubscribe@hc.apache.org
For additional commands, e-mail: httpclient-users-help@hc.apache.org


Re: Performance Issues with Transfer-Encoding chunked

Posted by vzs64 <vz...@rediffmail.com>.
Appologies for beating around the bush.

> Then it is probably time to change the subject of your
postings and start searching for the real problem. 

Will do.

> You
still have not told us what exceptions the server returns,
and I haven't seen a trace of the communications from
browser or HttpClient either.

The Wire Log and exception from server are in my third post dated - Dec 02,
2007; 05:03pm.

> So HttpClient 3.1 was already faster with chunking than without,
and you were still assuming a performance issue with chunking?

The problems occur with particular site
-http://www.reuters.com/article/bankingfinancial-SP/idUSN2432828320070824,
other sites (eg http://en.wikipedia.org/wiki/Prime_brokerage) get downloaded
in 2-3 secs.


> If you want us to help, you will have to provide some data we can
work with, not your interpretations of what you are seeing:
Sure - Let me know what else you need.

Thanks in advance
-- 
View this message in context: http://www.nabble.com/Performance-Issues-with-Transfer-Encoding-chunked-tp14106574p14397975.html
Sent from the HttpClient-User mailing list archive at Nabble.com.


---------------------------------------------------------------------
To unsubscribe, e-mail: httpclient-users-unsubscribe@hc.apache.org
For additional commands, e-mail: httpclient-users-help@hc.apache.org


Re: Performance Issues with Transfer-Encoding chunked

Posted by Roland Weber <os...@dubioso.net>.
vzs64 wrote:
> Ran the test with HttpClient 4.0. Download time is still high 76.3 sec

Then it is probably time to change the subject of your
postings and start searching for the real problem. You
still have not told us what exceptions the server returns,
and I haven't seen a trace of the communications from
browser or HttpClient either.

> With HttpClient 3.1 
> - Disabling Chunking (by setting HTTP1.0)
>       - Download time - 77 secs
>       - Headers returned by server
>                       Date:   Tue, 18 Dec 2007 10:40:48 GMT
>                       Content-Type:   text/html;charset=ISO-8859-1
>                       Connection:   close      
> - With Chunking 
>       - Download time - 62 secs
>       - Headers returned by server
>                       Date:   Tue, 18 Dec 2007 10:25:41 GMT
>                       Content-Type:   text/html;charset=ISO-8859-1
>                       Transfer-Encoding:   chunked

So HttpClient 3.1 was already faster with chunking than without,
and you were still assuming a performance issue with chunking?

If you want us to help, you will have to provide some data we can
work with, not your interpretations of what you are seeing:
http://www.catb.org/~esr/faqs/smart-questions.html#symptoms
http://www.catb.org/~esr/faqs/smart-questions.html#beprecise
http://www.catb.org/~esr/faqs/smart-questions.html#bespecific
or the section about tachyon modulation here:
http://www.chiark.greenend.org.uk/~sgtatham/bugs.html

cheers,
  Roland


---------------------------------------------------------------------
To unsubscribe, e-mail: httpclient-users-unsubscribe@hc.apache.org
For additional commands, e-mail: httpclient-users-help@hc.apache.org


Re: Performance Issues with Transfer-Encoding chunked

Posted by Oleg Kalnichevski <ol...@apache.org>.
vzs64 wrote:
>>> (2) What makes you think this problem has anything to do with HttpClient
>>>       
> in the first place? There is no evidence of what so ever that the
> performance degradation is due to the client side.
>
>     IE 7.0 takes about 16 secs to download the main page
> http://www.reuters.com/article/bankingfinancial-SP/idUSN2432828320070824
> (without images/js/css files), whereas HttpClient is taking the figures
> mentioned in the previous post on my ASDL connection.
>
>   

How do you measure that?

Besides, downloading ANYTHING from a remote host over an ASDL line you 
are effectively measuring the throughput of the connection line, not 
that of the server or a client software

>     HttpUrlConnection is taking 52.8 secs.
>
>   
Are you really sure HttpUrlConnection is actually using chunk-coding?

What is this number? An average of how many repetitions? 20,000?  
200,000 maybe? Are you really sure your numbers are statistically 
representative?

>     Are there any other non-java tools against which a benchmark can be
> done? (I used to use tear from microsoft earlier, but dont have the tool
> now)
>   
Performance benchmarks is a tricky business. Seemingly unimportant 
factors may sometimes play a huge role in distorting the results.  Make 
really sure you understand what you are measuring.

Oleg

---------------------------------------------------------------------
To unsubscribe, e-mail: httpclient-users-unsubscribe@hc.apache.org
For additional commands, e-mail: httpclient-users-help@hc.apache.org


Re: Performance Issues with Transfer-Encoding chunked

Posted by vzs64 <vz...@rediffmail.com>.
>> (2) What makes you think this problem has anything to do with HttpClient
in the first place? There is no evidence of what so ever that the
performance degradation is due to the client side.

    IE 7.0 takes about 16 secs to download the main page
http://www.reuters.com/article/bankingfinancial-SP/idUSN2432828320070824
(without images/js/css files), whereas HttpClient is taking the figures
mentioned in the previous post on my ASDL connection.

    HttpUrlConnection is taking 52.8 secs.

    Are there any other non-java tools against which a benchmark can be
done? (I used to use tear from microsoft earlier, but dont have the tool
now)
-- 
View this message in context: http://www.nabble.com/Performance-Issues-with-Transfer-Encoding-chunked-tp14106574p14399806.html
Sent from the HttpClient-User mailing list archive at Nabble.com.


---------------------------------------------------------------------
To unsubscribe, e-mail: httpclient-users-unsubscribe@hc.apache.org
For additional commands, e-mail: httpclient-users-help@hc.apache.org


Re: Performance Issues with Transfer-Encoding chunked

Posted by Oleg Kalnichevski <ol...@apache.org>.
On Tue, 2007-12-18 at 05:07 -0800, vzs64 wrote:
> Ran the test with HttpClient 4.0. Download time is still high 76.3 sec
> 
> With HttpClient 3.1 
> - Disabling Chunking (by setting HTTP1.0)
>       - Download time - 77 secs
>       - Headers returned by server
>                       Date:   Tue, 18 Dec 2007 10:40:48 GMT
>                       Content-Type:   text/html;charset=ISO-8859-1
>                       Connection:   close      
> - With Chunking 
>       - Download time - 62 secs
>       - Headers returned by server
>                       Date:   Tue, 18 Dec 2007 10:25:41 GMT
>                       Content-Type:   text/html;charset=ISO-8859-1
>                       Transfer-Encoding:   chunked
> 
> 

(1) Chunk-coded content IS BOUND to be slower than content-length
delimited content. Chunking adds overhead and prevents optimized
streaming content off the  disk, for instance.

(2) What makes you think this problem has anything to do with HttpClient
in the first place? There is no evidence of what so ever that the
performance degradation is due to the client side.

Oleg 


---------------------------------------------------------------------
To unsubscribe, e-mail: httpclient-users-unsubscribe@hc.apache.org
For additional commands, e-mail: httpclient-users-help@hc.apache.org


Re: Performance Issues with Transfer-Encoding chunked

Posted by vzs64 <vz...@rediffmail.com>.
Ran the test with HttpClient 4.0. Download time is still high 76.3 sec

With HttpClient 3.1 
- Disabling Chunking (by setting HTTP1.0)
      - Download time - 77 secs
      - Headers returned by server
                      Date:   Tue, 18 Dec 2007 10:40:48 GMT
                      Content-Type:   text/html;charset=ISO-8859-1
                      Connection:   close      
- With Chunking 
      - Download time - 62 secs
      - Headers returned by server
                      Date:   Tue, 18 Dec 2007 10:25:41 GMT
                      Content-Type:   text/html;charset=ISO-8859-1
                      Transfer-Encoding:   chunked


-- 
View this message in context: http://www.nabble.com/Performance-Issues-with-Transfer-Encoding-chunked-tp14106574p14396498.html
Sent from the HttpClient-User mailing list archive at Nabble.com.


---------------------------------------------------------------------
To unsubscribe, e-mail: httpclient-users-unsubscribe@hc.apache.org
For additional commands, e-mail: httpclient-users-help@hc.apache.org


Re: Performance Issues with Transfer-Encoding chunked

Posted by Roland Weber <os...@dubioso.net>.
vzs64 wrote:
> Tried doing a test based on httpcomponents-client-4.0-alpha2-bin release and
> example ClientMultiThreadedExecution.
> 
> Package org.apache.http.params is missing in this release, and following
> files are required

HttpClient 4.0 requires a matching version of HttpCore 4.0.
Use the JARs packaged in -bin-with-dependencies [1] or download
the dependencies separately, whatever is your preference.
The dependencies are listed on the website [2].

cheers,
  Roland

[1]
http://jakarta.apache.org/site/downloads/downloads_httpcomponents-httpclient.cgi
[2]
http://jakarta.apache.org/httpcomponents/httpcomponents-client/httpclient/dependencies.html


---------------------------------------------------------------------
To unsubscribe, e-mail: httpclient-users-unsubscribe@hc.apache.org
For additional commands, e-mail: httpclient-users-help@hc.apache.org


Re: Performance Issues with Transfer-Encoding chunked

Posted by vzs64 <vz...@rediffmail.com>.
Tried doing a test based on httpcomponents-client-4.0-alpha2-bin release and
example ClientMultiThreadedExecution.

Package org.apache.http.params is missing in this release, and following
files are required

import org.apache.http.params.BasicHttpParams;
import org.apache.http.params.HttpParams;
import org.apache.http.params.HttpProtocolParams

Regards

vzs
-- 
View this message in context: http://www.nabble.com/Performance-Issues-with-Transfer-Encoding-chunked-tp14106574p14366329.html
Sent from the HttpClient-User mailing list archive at Nabble.com.


---------------------------------------------------------------------
To unsubscribe, e-mail: httpclient-users-unsubscribe@hc.apache.org
For additional commands, e-mail: httpclient-users-help@hc.apache.org


Re: Performance Issues with Transfer-Encoding chunked

Posted by Roland Weber <os...@dubioso.net>.
vzs64 wrote:
> Another two questions:
> a) HttpClient 4.0 is based on java.io or java.nio package

java.io

> b) Is there any migration steps / guide available to migrate from 3.0 to 4.0

HttpClient 4.0 is in an early alpha stage and will see plenty of
API changes until it is stable. We're not going to spend time on
migration documentation until we have a stable API to migrate to.
Or rather, I'm not going to spend time on that, and others are
typically less inclined to write documentation than I am.

I intend to prepare migration documentation after HttpClient 4.0
goes beta, maybe in late 2008. While we're in alpha, we encourage
all users to try it out and give feedback, but we don't recommend
a migration of production code. You might want to upgrade to 3.1
though. 3.0 is no longer supported.

In your particular case, you should write test code based on 4.0
to see whether that solves your performance problem or not. If it
does, you can consider whether to switch to 4.0 and live with
API changes for another year, or whether to backport those changes
that fixed your problem to 3.1.

cheers,
  Roland

---------------------------------------------------------------------
To unsubscribe, e-mail: httpclient-users-unsubscribe@hc.apache.org
For additional commands, e-mail: httpclient-users-help@hc.apache.org


Re: Performance Issues with Transfer-Encoding chunked

Posted by vzs64 <vz...@rediffmail.com>.
Another two questions:
a) HttpClient 4.0 is based on java.io or java.nio package
b) Is there any migration steps / guide available to migrate from 3.0 to 4.0


-- 
View this message in context: http://www.nabble.com/Performance-Issues-with-Transfer-Encoding-chunked-tp14106574p14338191.html
Sent from the HttpClient-User mailing list archive at Nabble.com.


---------------------------------------------------------------------
To unsubscribe, e-mail: httpclient-users-unsubscribe@hc.apache.org
For additional commands, e-mail: httpclient-users-help@hc.apache.org


Re: Performance Issues with Transfer-Encoding chunked

Posted by Oleg Kalnichevski <ol...@apache.org>.
On Sun, 2007-12-09 at 07:17 -0800, vzs64 wrote:
> 
> 
> Roland Weber wrote:
> > 
> > vzs64 wrote:
> >> 
> >>> Interpret the exceptions and fix the cause. Most likely,
> >>> the server doesn't like what you are sending. What do
> >>> you mean by "along with the page"?
> >> 
> >> The server is a public website not under my control.
> > 
> > I didn't say you should fix the server. Fix what you are
> > sending there until it doesn't reply with exceptions anymore.
> > 
> > cheers,
> >   Roland
> > 
> > My question was more generic issue of performance with ChunkedInputStream
> > which was also discussed in a thread earlier ' Performance issues in
> > ChunkedInputStream  - Tony Thompson Apr 11, 2007; 06:59am'.
> > 
> > Any temporary workaround's available,

Just disable chunk-coding.

>  or we need to wait till HttpClient
> > 4.0?
> > 

Why wait? Chunk-coding has been completely re-written for HttpClient 4.0
already. Get the latest public release of HttpClient 4.0, try executing
the same request using it and see if that makes any difference.

Oleg 


> > Regards
> > 
> > vzs64
> > 
> > ---------------------------------------------------------------------
> > To unsubscribe, e-mail: httpclient-user-unsubscribe@jakarta.apache.org
> > For additional commands, e-mail: httpclient-user-help@jakarta.apache.org
> > 
> > 
> > 
> 


---------------------------------------------------------------------
To unsubscribe, e-mail: httpclient-user-unsubscribe@jakarta.apache.org
For additional commands, e-mail: httpclient-user-help@jakarta.apache.org


Re: Performance Issues with Transfer-Encoding chunked

Posted by vzs64 <vz...@rediffmail.com>.


Roland Weber wrote:
> 
> vzs64 wrote:
>> 
>>> Interpret the exceptions and fix the cause. Most likely,
>>> the server doesn't like what you are sending. What do
>>> you mean by "along with the page"?
>> 
>> The server is a public website not under my control.
> 
> I didn't say you should fix the server. Fix what you are
> sending there until it doesn't reply with exceptions anymore.
> 
> cheers,
>   Roland
> 
> My question was more generic issue of performance with ChunkedInputStream
> which was also discussed in a thread earlier ' Performance issues in
> ChunkedInputStream  - Tony Thompson Apr 11, 2007; 06:59am'.
> 
> Any temporary workaround's available, or we need to wait till HttpClient
> 4.0?
> 
> Regards
> 
> vzs64
> 
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: httpclient-user-unsubscribe@jakarta.apache.org
> For additional commands, e-mail: httpclient-user-help@jakarta.apache.org
> 
> 
> 

-- 
View this message in context: http://www.nabble.com/Performance-Issues-with-Transfer-Encoding-chunked-tp14106574p14239394.html
Sent from the HttpClient-User mailing list archive at Nabble.com.


---------------------------------------------------------------------
To unsubscribe, e-mail: httpclient-user-unsubscribe@jakarta.apache.org
For additional commands, e-mail: httpclient-user-help@jakarta.apache.org


Re: Performance Issues with Transfer-Encoding chunked

Posted by Roland Weber <os...@dubioso.net>.
vzs64 wrote:
> 
>> Interpret the exceptions and fix the cause. Most likely,
>> the server doesn't like what you are sending. What do
>> you mean by "along with the page"?
> 
> The server is a public website not under my control.

I didn't say you should fix the server. Fix what you are
sending there until it doesn't reply with exceptions anymore.

cheers,
  Roland


---------------------------------------------------------------------
To unsubscribe, e-mail: httpclient-user-unsubscribe@jakarta.apache.org
For additional commands, e-mail: httpclient-user-help@jakarta.apache.org


Re: Performance Issues with Transfer-Encoding chunked

Posted by vzs64 <vz...@rediffmail.com>.

Interpret the exceptions and fix the cause. Most likely,
the server doesn't like what you are sending. What do
you mean by "along with the page"?


The server is a public website not under my control.


-- 
View this message in context: http://www.nabble.com/Performance-Issues-with-Transfer-Encoding-chunked-tf4928640.html#a14231785
Sent from the HttpClient-User mailing list archive at Nabble.com.


---------------------------------------------------------------------
To unsubscribe, e-mail: httpclient-user-unsubscribe@jakarta.apache.org
For additional commands, e-mail: httpclient-user-help@jakarta.apache.org


Re: Performance Issues with Transfer-Encoding chunked

Posted by Roland Weber <os...@dubioso.net>.
vzs64 wrote:
> The server is sending exceptions alongwith the page, any other way to reduce
> download time other than writing to WebMaster of the site.

Interpret the exceptions and fix the cause. Most likely,
the server doesn't like what you are sending. What do
you mean by "along with the page"?

cheers,
  Roland


---------------------------------------------------------------------
To unsubscribe, e-mail: httpclient-user-unsubscribe@jakarta.apache.org
For additional commands, e-mail: httpclient-user-help@jakarta.apache.org


Re: Performance Issues with Transfer-Encoding chunked

Posted by vzs64 <vz...@rediffmail.com>.
Any suggestions for improving performance welcome. 

The server is sending exceptions alongwith the page, any other way to reduce
download time other than writing to WebMaster of the site.



-- 
View this message in context: http://www.nabble.com/Performance-Issues-with-Transfer-Encoding-chunked-tf4928640.html#a14157626
Sent from the HttpClient-User mailing list archive at Nabble.com.


---------------------------------------------------------------------
To unsubscribe, e-mail: httpclient-user-unsubscribe@jakarta.apache.org
For additional commands, e-mail: httpclient-user-help@jakarta.apache.org


Re: Performance Issues with Transfer-Encoding chunked

Posted by vzs64 <vz...@rediffmail.com>.
Thanks Roland for the prompt response.

The Wire Log is enclosed. 

Things seem to be fine till
2007/12/02 16:46:24:140 IST [DEBUG] content - << "       
org.apache.jsp.WEB_002dINF.jsp.templates.page"
2007/12/02 16:46:26:156 IST [DEBUG] content - <<
"Templates.homePage_jsp._jspx_meth_cms_cachedModule_0(homePage_jsp.java:131)<br>[\n]"
2007/12/02 16:46:26:156 IST [DEBUG] content - << "       
org.apache.jsp.WEB_002dINF.jsp.templates.pageTemplates.homePage_jsp._jspService(homePage_jsp.java:53)<br>[\n]"

where the _jspService starts and slows things down? Any tips on what the
_jspService  is about and how to suppress it? I am using httpclient-3.1.




2007/12/02 16:46:13:265 IST [DEBUG] MultiThreadedHttpConnectionManager -
HttpConnectionManager.getConnection:  config =
HostConfiguration[host=http://www.reuters.com], timeout = 0
2007/12/02 16:46:13:265 IST [DEBUG] MultiThreadedHttpConnectionManager -
Allocating new connection,
hostConfig=HostConfiguration[host=http://www.reuters.com]
2007/12/02 16:46:13:265 IST [DEBUG] HttpConnection - Open connection to
www.reuters.com:80
FILE: SxGetOneURL.java PARENT CALLING_METHOD: run LINE: 89 METHOD: myRun
MESSAGE: Inside getOneURL run  
:http://www.reuters.com/article/bankingfinancial-SP/idUSN2432828320070824 
:Sun, 02 Dec 2007 16:46:13 +0530

2007/12/02 16:46:18:640 IST [DEBUG] header - >> "GET
/article/bankingfinancial-SP/idUSN2432828320070824 HTTP/1.1[\r][\n]"
2007/12/02 16:46:18:640 IST [DEBUG] HttpMethodBase - Adding Host request
header
2007/12/02 16:46:18:640 IST [DEBUG] header - >> "accept-encoding: gzip, zip,
deflate, chunked[\r][\n]"
2007/12/02 16:46:18:640 IST [DEBUG] header - >> "User-Agent: Mozilla/5.0
(compatible; MSIE 6.0; Windows NT 5.1)[\r][\n]"
2007/12/02 16:46:18:640 IST [DEBUG] header - >> "Host:
www.reuters.com[\r][\n]"
2007/12/02 16:46:18:640 IST [DEBUG] header - >> "[\r][\n]"
2007/12/02 16:46:19:140 IST [DEBUG] header - << "HTTP/1.1 200 OK[\r][\n]"
2007/12/02 16:46:19:140 IST [DEBUG] header - << "Date: Sun, 02 Dec 2007
11:16:43 GMT[\r][\n]"
2007/12/02 16:46:19:140 IST [DEBUG] header - << "Content-Type:
text/html;charset=ISO-8859-1[\r][\n]"
2007/12/02 16:46:19:140 IST [DEBUG] header - << "Transfer-Encoding:
chunked[\r][\n]"
2007/12/02 16:46:19:140 IST [DEBUG] HttpConnection - Input data available

2007/12/02 16:46:19:156 IST [DEBUG] content - << "2"
2007/12/02 16:46:19:156 IST [DEBUG] content - << "0"
2007/12/02 16:46:19:156 IST [DEBUG] content - << "9"
2007/12/02 16:46:19:156 IST [DEBUG] content - << "7"
2007/12/02 16:46:19:156 IST [DEBUG] content - << "[\r]"
2007/12/02 16:46:19:156 IST [DEBUG] content - << "[\n]"
2007/12/02 16:46:19:156 IST [DEBUG] content - << "<!--[if !IE]> This has NOT
been served from cache <![endif]-->[\n]"
2007/12/02 16:46:19:156 IST [DEBUG] content - << "<!--[if !IE]> Request
served from apache server: s263567nj2el42.uswhwk6.savvis.net
<![endif]-->[\n]"
2007/12/02 16:46:19:156 IST [DEBUG] content - << "<!--[if !IE]> Tomcat
Server /s263567nj2el61.uswhwk6.savvis.net/ <![endif]-->[\r][\n]"
2007/12/02 16:46:19:156 IST [DEBUG] content - << "[\r][\n]"
2007/12/02 16:46:19:156 IST [DEBUG] content - << "[\r][\n]"
2007/12/02 16:46:19:156 IST [DEBUG] content - << "[\r][\n]"
2007/12/02 16:46:19:156 IST [DEBUG] content - << "<!DOCTYPE html PUBLIC
"-//W3C//DTD XHTML 1.0 Transitional//EN"[\r][\n]"
2007/12/02 16:46:19:156 IST [DEBUG] content - << "   
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">[\r][\n]"
2007/12/02 16:46:19:156 IST [DEBUG] content - << "<html>[\r][\n]"
2007/12/02 16:46:19:156 IST [DEBUG] content - << "<head>[\r][\n]"
2007/12/02 16:46:19:156 IST [DEBUG] content - << "  <title>[\r][\n]"
2007/12/02 16:46:19:156 IST [DEBUG] content - << "    Bear rivals say
courting prime broker clients[\n]"
2007/12/02 16:46:19:156 IST [DEBUG] content - << "| Banking & Financial[\n]"
2007/12/02 16:46:19:156 IST [DEBUG] content - << "| Reuters[\n]"
2007/12/02 16:46:19:156 IST [DEBUG] content - << "[\n]"
2007/12/02 16:46:19:156 IST [DEBUG] content - << "</title>[\r][\n]"
2007/12/02 16:46:19:156 IST [DEBUG] content - << "  <META name="description"
content="By Dan Wilchins and Dane Hamilton [\n]"
2007/12/02 16:46:19:156 IST [DEBUG] content - << "    NEW YORK, Aug 24
(Reuters) - Bear Stearns Cos Inc's &lt;BSC.N&gt; rivals are aggressively
courting the investment bank's prime brokerage customers, telling them
it's">[\n]"
2007/12/02 16:46:19:156 IST [DEBUG] content - << "[0x9]  <META
name="keywords" content="">[\n]"
2007/12/02 16:46:19:156 IST [DEBUG] content - << "[\n]"
2007/12/02 16:46:19:156 IST [DEBUG] content - << "<META name="Author"
content="">[\n]"
2007/12/02 16:46:19:156 IST [DEBUG] content - << "[\n]"
2007/12/02 16:46:19:156 IST [DEBUG] content - << "<META name="REVISION_DATE"
content="Fri Aug 24 20:04:27 UTC 2007">[\n]"
2007/12/02 16:46:19:156 IST [DEBUG] content - << "[\n]"
2007/12/02 16:46:19:156 IST [DEBUG] content - << "<style type="text/css"
media="all">[\r][\n]"
2007/12/02 16:46:19:156 IST [DEBUG] content - << "    @import
"/resources/css/rcom-master.css";[\r][\n]"
2007/12/02 16:46:19:156 IST [DEBUG] content - << "  </style>[\r][\n]"
2007/12/02 16:46:19:156 IST [DEBUG] content - << "  <!--[if IE 7.0]><link
href="/resources/css/rcom-patch-ie7.css" rel="stylesheet"
/><![endif]-->[\r][\n]"
2007/12/02 16:46:19:156 IST [DEBUG] content - << "  <link rel="shortcut
icon" href="/resources/images/favicon.ico" />[\r][\n]"
2007/12/02 16:46:19:156 IST [DEBUG] content - << "  <link rel="icon"
href="/resources/images/favicon.ico" />[\r][\n]"
2007/12/02 16:46:19:156 IST [DEBUG] content - << "  <link
href="/resources/css/rcom-articlenew.css" rel="stylesheet" />[\n]"
2007/12/02 16:46:19:156 IST [DEBUG] content - << "<link
href="/resources/css/adbuttons.css" rel="stylesheet" />[\n]"
2007/12/02 16:46:19:156 IST [DEBUG] content - << "[\n]"
2007/12/02 16:46:19:156 IST [DEBUG] content - << "<style
type="text/css">[\n]"
2007/12/02 16:46:19:156 IST [DEBUG] content - << " #sphereSideVideo
img.inlineLinkIcon {float: left; } #sphereFooter div.timestamp,
#sphereSideAttribution span.timestamp { font-size: 10px; color: #6E6E6E; }
#sphereFooter img.inlineLinkIcon { margin: 0 0 -2px 0; }[\n]"
2007/12/02 16:46:19:156 IST [DEBUG] content - << "</style>[\n]"
2007/12/02 16:46:19:156 IST [DEBUG] content - << "<script
language="javascript"
src="http://cdn1.sphere.com/widgets/sphereit/js?siteid=reuters"></script>[\n]"
2007/12/02 16:46:19:156 IST [DEBUG] content - << "[\n]"
2007/12/02 16:46:19:156 IST [DEBUG] content - << "<script
type="text/javascript"
src="/resources/js/sitelife_rec_daapi02C-nc.js"></script>[\n]"
2007/12/02 16:46:19:156 IST [DEBUG] content - << "[\n]"
2007/12/02 16:46:19:156 IST [DEBUG] content - << "<script
type="text/javascript">[\n]"
2007/12/02 16:46:19:156 IST [DEBUG] content - << "[\n]"
2007/12/02 16:46:19:156 IST [DEBUG] content - << "if( self == top ) {[\n]"
2007/12/02 16:46:19:156 IST [DEBUG] content - << "document.domain =
'reuters.com';[\n]"
2007/12/02 16:46:19:156 IST [DEBUG] content - << "}[\n]"
2007/12/02 16:46:19:156 IST [DEBUG] content - << "[\n]"
2007/12/02 16:46:19:156 IST [DEBUG] content - << "function addEvent( obj,
type, fn ) {[\n]"
2007/12/02 16:46:19:156 IST [DEBUG] content - << "[0x9]if
(obj.addEventListener) {[\n]"
2007/12/02 16:46:19:156 IST [DEBUG] content - <<
"[0x9][0x9]obj.addEventListener( type, fn, false );[\n]"
2007/12/02 16:46:19:156 IST [DEBUG] content - <<
"[0x9][0x9]EventCache.add(obj, type, fn);[\n]"
2007/12/02 16:46:19:156 IST [DEBUG] content - << "[0x9]}[\n]"
2007/12/02 16:46:19:156 IST [DEBUG] content - << "[0x9]else if
(obj.attachEvent) {[\n]"
2007/12/02 16:46:19:156 IST [DEBUG] content - << "[0x9][0x9]obj["e"+type+fn]
= fn;[\n]"
2007/12/02 16:46:19:156 IST [DEBUG] content - << "[0x9][0x9]obj[type+fn] =
function() { obj["e"+type+fn]( window.event ); }[\n]"
2007/12/02 16:46:19:156 IST [DEBUG] content - << "[0x9][0x9]obj.attachEvent(
"on"+type, obj[type+fn] );[\n]"
2007/12/02 16:46:19:156 IST [DEBUG] content - <<
"[0x9][0x9]EventCache.add(obj, type, fn);[\n]"
2007/12/02 16:46:19:156 IST [DEBUG] content - << "[0x9]}[\n]"
2007/12/02 16:46:19:156 IST [DEBUG] content - << "[0x9]else {[\n]"
2007/12/02 16:46:19:156 IST [DEBUG] content - << "[0x9][0x9]obj["on"+type] =
obj["e"+type+fn];[\n]"
2007/12/02 16:46:19:156 IST [DEBUG] content - << "[0x9]}[\n]"
2007/12/02 16:46:19:156 IST [DEBUG] content - << "}[\n]"
2007/12/02 16:46:19:156 IST [DEBUG] content - << "/*[0x9]EventCache Version
1.0[0x9]Copyright 2005 Mark Wubben */[\n]"
2007/12/02 16:46:19:156 IST [DEBUG] content - << "var EventCache =
function(){[\n]"
2007/12/02 16:46:19:156 IST [DEBUG] content - << "[0x9]var listEvents =
[];[\n]"
2007/12/02 16:46:19:156 IST [DEBUG] content - << "[0x9]return {[\n]"
2007/12/02 16:46:19:156 IST [DEBUG] content - << "[0x9][0x9]listEvents :
listEvents,[\n]"
2007/12/02 16:46:19:156 IST [DEBUG] content - << "[0x9][0x9]add :
function(node, sEventName, fHandler){[\n]"
2007/12/02 16:46:19:156 IST [DEBUG] content - <<
"[0x9][0x9][0x9]listEvents.push(arguments);[\n]"
2007/12/02 16:46:19:156 IST [DEBUG] content - << "[0x9][0x9]},[\n]"
2007/12/02 16:46:19:156 IST [DEBUG] content - << "[0x9][0x9]flush :
function(){[\n]"
2007/12/02 16:46:19:156 IST [DEBUG] content - << "[0x9][0x9][0x9]var i,
item;[\n]"
2007/12/02 16:46:19:156 IST [DEBUG] content - << "[0x9][0x9][0x9]for(i =
listEvents.length - 1; i >= 0; i = i - 1){[\n]"
2007/12/02 16:46:19:156 IST [DEBUG] content - << "[0x9][0x9][0x9][0x9]item =
listEvents[i];[\n]"
2007/12/02 16:46:19:156 IST [DEBUG] content - <<
"[0x9][0x9][0x9][0x9]if(item[0].removeEventListener){[\n]"
2007/12/02 16:46:19:156 IST [DEBUG] content - <<
"[0x9][0x9][0x9][0x9][0x9]item[0].removeEventListener(item[1], item[2],
item[3]);[\n]"
2007/12/02 16:46:19:156 IST [DEBUG] content - <<
"[0x9][0x9][0x9][0x9]};[\n]"
2007/12/02 16:46:19:156 IST [DEBUG] content - <<
"[0x9][0x9][0x9][0x9]if(item[1].substring(0, 2) != "on"){[\n]"
2007/12/02 16:46:19:156 IST [DEBUG] content - <<
"[0x9][0x9][0x9][0x9][0x9]item[1] = "on" + item[1];[\n]"
2007/12/02 16:46:19:156 IST [DEBUG] content - <<
"[0x9][0x9][0x9][0x9]};[\n]"
2007/12/02 16:46:19:156 IST [DEBUG] content - << "[0x9]"
2007/12/02 16:46:19:156 IST [DEBUG] content - <<
"[0x9][0x9][0x9]if(item[0].detachEvent){[\n]"
2007/12/02 16:46:19:156 IST [DEBUG] content - <<
"[0x9][0x9][0x9][0x9][0x9]item[0].detachEvent(item[1], item[2]);[\n]"
2007/12/02 16:46:19:156 IST [DEBUG] content - <<
"[0x9][0x9][0x9][0x9]};[\n]"
2007/12/02 16:46:19:156 IST [DEBUG] content - <<
"[0x9][0x9][0x9][0x9]item[0][item[1]] = null;[\n]"
2007/12/02 16:46:19:156 IST [DEBUG] content - << "[0x9][0x9][0x9]};[\n]"
2007/12/02 16:46:19:156 IST [DEBUG] content - << "[0x9][0x9]}[\n]"
2007/12/02 16:46:19:156 IST [DEBUG] content - << "[0x9]};[\n]"
2007/12/02 16:46:19:156 IST [DEBUG] content - << "}();[\n]"
2007/12/02 16:46:19:156 IST [DEBUG] content - <<
"addEvent(window,'unload',EventCache.flush);[\n]"
2007/12/02 16:46:19:156 IST [DEBUG] content - << "var hasRecommendTab =
1;[\n]"
2007/12/02 16:46:19:156 IST [DEBUG] content - << "var onmousednLimit =
0;[\n]"
2007/12/02 16:46:19:156 IST [DEBUG] content - << "var pageIsLoaded =
false;[\n]"
2007/12/02 16:46:19:156 IST [DEBUG] content - << "function
onmousednMostRecommend() {[\n]"
2007/12/02 16:46:19:156 IST [DEBUG] content - << "[0x9]if(pageIsLoaded)
{[\n]"
2007/12/02 16:46:19:156 IST [DEBUG] content - <<
"[0x9][0x9][0x9]if(!(onmousednLimit >0)) {[\n]"
2007/12/02 16:46:19:156 IST [DEBUG] content - <<
"[0x9][0x9][0x9][0x9]document.getElementById('iframeSLMostRecommend').src =
'http://www.reuters.com/assets/mostrecommend/load';[\n]"
2007/12/02 16:46:19:156 IST [DEBUG] content - <<
"[0x9][0x9][0x9][0x9]onmousednLimit ++;[\n]"
2007/12/02 16:46:19:156 IST [DEBUG] content - << "[0x9][0x9][0x9]}[\n]"
2007/12/02 16:46:19:156 IST [DEBUG] content - << "[0x9]}[\n]"
2007/12/02 16:46:19:156 IST [DEBUG] content - << "[0x9]onmousednLimit
++;[\n]"
2007/12/02 16:46:19:156 IST [DEBUG] content - << "}[\n]"
2007/12/02 16:46:19:156 IST [DEBUG] content - << "</script>[\n]"
2007/12/02 16:46:19:156 IST [DEBUG] content - << "[\n]"
2007/12/02 16:46:19:156 IST [DEBUG] content - << "[\n]"
2007/12/02 16:46:19:156 IST [DEBUG] content - << "[\n]"
2007/12/02 16:46:19:156 IST [DEBUG] content - << "[\n]"
2007/12/02 16:46:19:156 IST [DEBUG] content - << "<script
language="JavaScript" type="text/javascript"
src="/resources/js/dart.js"></script>[\r][\n]"
2007/12/02 16:46:19:156 IST [DEBUG] content - << "    <script
language="JavaScript" type="text/javascript"
src="/resources/js/main.js"></script>[\r][\n]"
2007/12/02 16:46:19:156 IST [DEBUG] content - << "    <script
language='JavaScript' type="text/javascript"
src="/resources/js/topbar.js"></script>[\r][\n]"
2007/12/02 16:46:19:156 IST [DEBUG] content - << "    <script
language='JavaScript' type="text/javascript"
src='/resources/js/searchbox.js'></script>[\r][\n]"
2007/12/02 16:46:19:156 IST [DEBUG] content - << "    <script
language="JavaScript" type="text/javascript"
src="/js/external/yahoo/yahoo.js"></script>[\r][\n]"
2007/12/02 16:46:19:156 IST [DEBUG] content - << "    <script
language="JavaScript" type="text/javascript"
src="/js/external/yahoo/connection.js"></script>[\r][\n]"
2007/12/02 16:46:19:156 IST [DEBUG] content - << "  [0x9]<script
language="JavaScript" type="text/javascript"
src="/js/com/reuters/rcom/newutils.js"></script>[\r][\n]"
2007/12/02 16:46:19:156 IST [DEBUG] content - << "    <script
language="javascript" type="text/javascript"
src="/resources/js/article.js"></script>[\r][\n]"
2007/12/02 16:46:19:156 IST [DEBUG] content - << "    <script
language="JavaScript" type="text/javascript" >[\n]"
2007/12/02 16:46:19:156 IST [DEBUG] content - << "document.w"
2007/12/02 16:46:19:156 IST [DEBUG] content - << "rite("<script
src='/resources/js/pid.js'></scr" + "ipt>"); [\n]"
2007/12/02 16:46:19:156 IST [DEBUG] content - << "</script></head>[\n]"
2007/12/02 16:46:19:156 IST [DEBUG] content - << "<bo"
2007/12/02 16:46:19:171 IST [DEBUG] content - << "dy>[\r][\n]"
2007/12/02 16:46:19:171 IST [DEBUG] content - << "<!--[if !IE]> BEGIN
baseHeaderHTML <![endif]-->[\n]"
2007/12/02 16:46:19:171 IST [DEBUG] content - << "<link
href="/resources/css/rcom-master-patch.css" rel="stylesheet" type="text/css"
/>[\n]"
2007/12/02 16:46:19:171 IST [DEBUG] content - << "<script
language="javascript">var strLocalization="US";</script>[\n]"
2007/12/02 16:46:19:171 IST [DEBUG] content - << "<div class="grid"
id="grid">[\n]"
2007/12/02 16:46:19:171 IST [DEBUG] content - << "[\n]"
2007/12/02 16:46:19:171 IST [DEBUG] content - << "  <div class="header"
id="header">[\n]"
2007/12/02 16:46:19:171 IST [DEBUG] content - << "  [0x9]<div
class="headerWrap">[\n]"
2007/12/02 16:46:19:171 IST [DEBUG] content - << "  [0x9]  <div
class="logo"> /home  /resources/images/refreshLogo.gif  </div>[\n]"
2007/12/02 16:46:19:171 IST [DEBUG] content - << "[0x9][0x9][0x9]<script
language="JavaScript" type="text/javascript" >[\n]"
2007/12/02 16:46:19:171 IST [DEBUG] content - << "document.write("<script
src='/resources/js/rpcCobrand.js'></scr" + "ipt>"); [\n]"
2007/12/02 16:46:19:171 IST [DEBUG] content - << "</script>[\n]"
2007/12/02 16:46:19:171 IST [DEBUG] content - << " [\n]"
2007/12/02 16:46:19:171 IST [DEBUG] content - << "[\n]"
2007/12/02 16:46:19:171 IST [DEBUG] content - << "[\n]"
2007/12/02 16:46:19:171 IST [DEBUG] content - << "[\n]"
2007/12/02 16:46:19:171 IST [DEBUG] content - << "</div>[\n]"
2007/12/02 16:46:19:171 IST [DEBUG] content - << "  </div><!--[if !IE]>
header <![endif]-->[\n]"
2007/12/02 16:46:19:171 IST [DEBUG] content - << "[\n]"
2007/12/02 16:46:19:171 IST [DEBUG] content - << "  <div
class="searchbar"><div class="searchbarWrap">[\n]"
2007/12/02 16:46:19:171 IST [DEBUG] content - << "    <!--[if !IE]> ###
Searchbar <![endif]-->[\n]"
2007/12/02 16:46:19:171 IST [DEBUG] content - << "    <div
class="toolbarTicker">[\n]"
2007/12/02 16:46:19:171 IST [DEBUG] content - << "    [0x9]<iframe
src="/assets/ticker2" id="ticker" height="13" width="494" marginwidth="0"
scrolling="no" frameborder="0" marginheight="0"></iframe></div>[\n]"
2007/12/02 16:46:19:171 IST [DEBUG] content - << "[0x9][0x9]<div
class="toolbarSearch">[\n]"
2007/12/02 16:46:19:171 IST [DEBUG] content - << "[\n]"
2007/12/02 16:46:19:171 IST [DEBUG] content - << "[0x9][0x9][0x9]<div
class="toolbarNews" id="headerSearchBox">[\n]"
2007/12/02 16:46:19:171 IST [DEBUG] content - << "                <form
method="GET" action="/test" >[\n]"
2007/12/02 16:46:19:171 IST [DEBUG] content - << "                    <input
name="searchbox" id="searchbox" type="text" value="Quotes, News, Pictures
&amp; Video" size="27" onfocus="clearSearch('Quotes, News, Pictures &amp;
Video');" onblur="fillSearch('Quotes, News, Pictures &amp; Video');"
onkeypress="if(event.keyCode == 13) {doSearchIntegration('searchbox',"
2007/12/02 16:46:19:171 IST [DEBUG] content - << "
'http://search.us.reuters.com/rsearch/rcomSearch.do',
'ussrch-top-quote');retur"
2007/12/02 16:46:19:171 IST [DEBUG] content - << "n false;}" title="Search
quotes, news,  video, and pictures on Reuters" />&nbsp;[\n]"
2007/12/02 16:46:19:171 IST [DEBUG] content - << "                    <input
src="/resources/images/refreshSearchButton.gif" name="_ctl24" type="image"
class="button" onclick="javascript:doSearchIntegration('searchbox',
'http://search.us.reuters.com/rsearch/rcomSearch.do',
'ussrch-top-quote');return false;" />[\n]"
2007/12/02 16:46:19:171 IST [DEBUG] content - << "               
</form>[\n]"
2007/12/02 16:46:19:171 IST [DEBUG] content - << "            </div>[\n]"
2007/12/02 16:46:19:171 IST [DEBUG] content - << "[0x9][0x9][0x9]<div
class="toolbarDivider" id="toolbarDivider"></div>[\n]"
2007/12/02 16:46:19:171 IST [DEBUG] content - << "[0x9][0x9][0x9]<div
class="toolbarUtilities">[\n]"
2007/12/02 16:46:19:171 IST [DEBUG] content - << "[0x9][0x9][0x9][0x9]<div
id="loggedOutNavs" style="display: none;">[\n]"
2007/12/02 16:46:19:171 IST [DEBUG] content - << "[0x9][0x9][0x9][0x9][0x9]
https://commerce.us.reuters.com/login Login [\n]"
2007/12/02 16:46:19:171 IST [DEBUG] content - <<
"[0x9][0x9][0x9][0x9]</div>[\n]"
2007/12/02 16:46:19:171 IST [DEBUG] content - << "[0x9][0x9][0x9][0x9]<div
id="loggedInNavs" style="display: none;">[\n]"
2007/12/02 16:46:19:171 IST [DEBUG] content - << "[0x9][0x9][0x9][0x9][0x9]
https://commerce.us.reuters.com/profile My Profile &nbsp;[\n]"
2007/12/02 16:46:19:171 IST [DEBUG] content - << "[0x9][0x9][0x9][0x9][0x9]
https://commerce.us.reuters.com/purchase/mycart.do 
/resources/images/iconCartFull.gif  &nbsp;[\n]"
2007/12/02 16:46:19:171 IST [DEBUG] content - << "[0x9][0x9][0x9][0x9][0x9]
https://commerce.us.reuters.com/login/pages/login/logout.do?go=http://www.reuters.com
Logout [\n]"
2007/12/02 16:46:19:171 IST [DEBUG] content - <<
"[0x9][0x9][0x9][0x9]</div>[\n]"
2007/12/02 16:46:19:171 IST [DEBUG] content - << "[0x9][0x9][0x9]</div>[\n]"
2007/12/02 16:46:19:171 IST [DEBUG] content - << "[\n]"
2007/12/02 16:46:19:171 IST [DEBUG] content - << "[0x9][0x9]</div>[\n]"
2007/12/02 16:46:19:171 IST [DEBUG] content - << "  </div></div>[\n]"
2007/12/02 16:46:19:171 IST [DEBUG] content - << "<!--[if !IE]> END
baseHeaderHTML <![endif]-->[\n]"
2007/12/02 16:46:19:171 IST [DEBUG] content - << "<!--[if !IE]> BEGIN
Content <![endif]-->[\r][\n]"
2007/12/02 16:46:19:171 IST [DEBUG] content - << "<div
class="linebreak"></div>[\n]"
2007/12/02 16:46:19:171 IST [DEBUG] content - << "[\n]"
2007/12/02 16:46:19:171 IST [DEBUG] content - << "<div class="bannerad"
id="banner">[\n]"
2007/12/02 16:46:19:171 IST [DEBUG] content - << "[0x9]<div
class="ad225x90">[\n]"
2007/12/02 16:46:19:171 IST [DEBUG] content - << "[0x9]<div>[\r][\n]"
2007/12/02 16:46:19:171 IST [DEBUG] content - << "[0x9]<div class="NON"
2007/12/02 16:46:19:171 IST [DEBUG] content - << "E" style="margin-bottom:
0px;">[\n]"
2007/12/02 16:46:19:171 IST [DEBUG] content - << "    <!--[if !IE]> begin
CMS unit <![endif]--><sp"
2007/12/02 16:46:19:187 IST [DEBUG] content - << "an
name="trackingEnabledModule" moduleName="B111607_1615_TOP"><script
language="javascript">addImpression("B111607_1615_TOP");</script><link
href="/resources/css/rcom-marketingpromo.css" rel="stylesheet"><div
class="marketingPromo"><div class="promoPhoto">
https://commerce.us.reuters.com/purchase/mostPopular.do 
http://int1.fp.sandpiper.net/reuters/marketing/images/20071116/researchreportimg9572.gif 
</div><div class="promoTeaser"><h5>
https://commerce.us.reuters.com/purchase/mostPopular.do Top 10 Research
Reports </h5><p class="teaser">Tap into over 1.5 million analyst research
reports</p> https://commerce.us.reuters.com/purchase/mostPopular.do Start
Your Search </div></div><!--[if !IE]> end CMS unit <![endif]--></div>[\n]"
2007/12/02 16:46:19:187 IST [DEBUG] content - << "  </div>[\r][\n]"
2007/12/02 16:46:19:187 IST [DEBUG] content - << "[\r][\n]"
2007/12/02 16:46:19:187 IST [DEBUG] content - << "</div>[\n]"
2007/12/02 16:46:19:187 IST [DEBUG] content - << "[0x9]<div
class="ad728x90">[\n]"
2007/12/02 16:46:19:187 IST [DEBUG] content - << "[0x9]<div>[\r][\n]"
2007/12/02 16:46:19:187 IST [DEBUG] content - << "[0x9]<script>[\n]"
2007/12/02 16:46:19:187 IST [DEBUG] content - << "  var adsrc =
'reuters.com.dart/business/topnews/bankingfinancial/article;' +
(typeof(seg)=='undefined'?'':seg) +
'type=Banner;sz=728x90;tile=1;articleID=USN2432828320070824;ord=' +
(typeof(tmstmp)!='undefined'?tmstmp:12345) + '?';[\n]"
2007/12/02 16:46:19:187 IST [DEBUG] content - << "</script>[\n]"
2007/12/02 16:46:19:187 IST [DEBUG] content - << "<"
2007/12/02 16:46:19:187 IST [DEBUG] content - << "[\r]"
2007/12/02 16:46:19:187 IST [DEBUG] content - << "[\n]"
2007/12/02 16:46:19:187 IST [DEBUG] content - << "1"
2007/12/02 16:46:19:187 IST [DEBUG] content - << "f"
2007/12/02 16:46:19:187 IST [DEBUG] content - << "f"
2007/12/02 16:46:19:187 IST [DEBUG] content - << "8"
2007/12/02 16:46:19:187 IST [DEBUG] content - << "[\r]"
2007/12/02 16:46:19:187 IST [DEBUG] content - << "[\n]"
2007/12/02 16:46:19:187 IST [DEBUG] content - << "div class="ad"
id="advert_460340" onload="renderMask460340()">[\n]"
2007/12/02 16:46:19:187 IST [DEBUG] content - << "[0x9]<script
language="javascript" type="text/javascript">[\n]"
2007/12/02 16:46:19:187 IST [DEBUG] content - << "          [\n]"
2007/12/02 16:46:19:187 IST [DEBUG] content - << "          if (typeof
(hideAllAds) == 'undefined' || hideAllAds == "
2007/12/02 16:46:19:187 IST [DEBUG] content - << "false) {[\n]"
2007/12/02 16:46:19:187 IST [DEBUG] content - << "               
document.write('<scri' + 'pt language="javascript" type"
2007/12/02 16:46:19:187 IST [DEBUG] content - << "="text/javascript"
src="http://ad.doubleclick.net/adj/' + adsrc + '"></scri' + 'pt>');[\n]"
2007/12/02 16:46:19:187 IST [DEBUG] content - << "                if
((!document.images && navigator.userAgent.indexOf("Mozilla/2.") >= 0) ||
navigator.userAgent.indexOf("WebTV") >= 0) {[\n]"
2007/12/02 16:46:19:187 IST [DEBUG] content - << "                   
document.write('
http://ad.doubleclick.net/jump/reuters.com.dart/business/topnews/bankingfinancial/article;'
+ (typeof(seg)=='undefined'?'':seg) +
'type=Banner;sz=728x90;tile=1;articleID=USN2432828320070824;ord=' +
(typeof(tmstmp)=='undefined'?12345:tmstmp) + '? ');[\n]"
2007/12/02 16:46:19:187 IST [DEBUG] content - << "                   
document.write('
http://ad.doubleclick.net/ad/reuters.com.dart/business/topnews/bankingfinancial/article;'
+ (typeof(seg)=='undefined'?'':seg) +
'type=Banner;sz=728x90;tile=1;articleID=USN2432828320070824;ord=' +
(typeof(tmstmp)=='undefined'?12345:tmstmp) + '?  ');[\n]"
2007/12/02 16:46:19:187 IST [DEBUG] content - << "                }[\n]"
2007/12/02 16:46:19:187 IST [DEBUG] content - << "          }[\n]"
2007/12/02 16:46:19:187 IST [DEBUG] content - << "        </script>[\n]"
2007/12/02 16:46:19:187 IST [DEBUG] content - << "        <noscript>[\n]"
2007/12/02 16:46:19:187 IST [DEBUG] content - << "          
http://ad.doubleclick.net/jump/reuters.com.dart/business/topnews/bankingfinancial/article;type=Banner;sz=728x90;tile=1;articleID=USN2432828320070824;ord=7989?
[\n]"
2007/12/02 16:46:19:187 IST [DEBUG] content - << "            
http://ad.doubleclick.net/ad/reuters.com.dart/business/topnews/bankingfinancial/article;type=Banner;sz=728x90;tile=1;articleID=USN2432828320070824;ord=7989?
[\n]"
2007/12/02 16:46:19:187 IST [DEBUG] content - << "           [\n]"
2007/12/02 16:46:19:187 IST [DEBUG] content - << "   "
2007/12/02 16:46:19:187 IST [DEBUG] content - << "     </noscript>[\n]"
2007/12/02 16:46:19:187 IST [DEBUG] content - << "[\n]"
2007/12/02 16:46:19:187 IST [DEBUG] content - << "        <script>[\n]"
2007/12/02 16:46:19:187 IST [DEBUG] content - << "            if
(typeof(window.populateRaptAdS"
2007/12/02 16:46:19:203 IST [DEBUG] content - << "ize) != 'undefined')[\n]"
2007/12/02 16:46:19:203 IST [DEBUG] content - << "               
populateRaptAdSize('type=Banner;sz=728x90;tile=1;');[\n]"
2007/12/02 16:46:19:203 IST [DEBUG] content - << "        </script>[\n]"
2007/12/02 16:46:19:203 IST [DEBUG] content - << "[\n]"
2007/12/02 16:46:19:203 IST [DEBUG] content - << "        </div>[\n]"
2007/12/02 16:46:19:203 IST [DEBUG] content - << "[\n]"
2007/12/02 16:46:19:203 IST [DEBUG] content - << "</div>[\r][\n]"
2007/12/02 16:46:19:203 IST [DEBUG] content - << "[\r][\n]"
2007/12/02 16:46:19:203 IST [DEBUG] content - << "</div>[\n]"
2007/12/02 16:46:19:203 IST [DEBUG] content - << "</div>[\n]"
2007/12/02 16:46:19:203 IST [DEBUG] content - << "[\n]"
2007/12/02 16:46:19:203 IST [DEBUG] content - << "<!-- using scheduled
module -->[\n]"
2007/12/02 16:46:19:203 IST [DEBUG] content - << "          <!-- BEGIN::
Broker Center Advert Module -->[\r][\n]"
2007/12/02 16:46:19:203 IST [DEBUG] content - << "<div>[\r][\n]"
2007/12/02 16:46:19:203 IST [DEBUG] content - << "[0x9]<link type="text/css"
href="/resources/css/adcondensedheader.css" rel="stylesheet" />[\r][\n]"
2007/12/02 16:46:19:203 IST [DEBUG] content - << "        <div
class="adButtonBox horizPos">[\r][\n]"
2007/12/02 16:46:19:203 IST [DEBUG] content - << "[\r][\n]"
2007/12/02 16:46:19:203 IST [DEBUG] content - << "            <div
class="adButtonBoxHeader">[\r][\n]"
2007/12/02 16:46:19:203 IST [DEBUG] content - << "                <h3>Broker
Center sponsored links</h3>[\r][\n]"
2007/12/02 16:46:19:203 IST [DEBUG] content - << "           
</div>[\r][\n]"
2007/12/02 16:46:19:203 IST [DEBUG] content - << "[\r][\n]"
2007/12/02 16:46:19:203 IST [DEBUG] content - << "            <div
class="adButtonModule first">[\r][\n]"
2007/12/02 16:46:19:203 IST [DEBUG] content - << "               
<div>[\r][\n]"
2007/12/02 16:46:19:203 IST [DEBUG] content - << "[0x9]<script>[\n]"
2007/12/02 16:46:19:203 IST [DEBUG] content - << "  var adsrc =
'reuters.com.dart/business/topnews/bankingfinancial/article;' +
(typeof(seg)=='undefined'?'':seg) +
'type=broker_button1;sz=170x40;articleID=USN2432828320070824;ord=' +
(typeof(tmstmp)!='undefined'?tmstmp:12345) + '?';[\n]"
2007/12/02 16:46:19:203 IST [DEBUG] content - << "</script>[\n]"
2007/12/02 16:46:19:203 IST [DEBUG] content - << "<div class="ad"
id="advert_1317838" onload="renderMask1317838()">[\n]"
2007/12/02 16:46:19:203 IST [DEBUG] content - << "[0x9]<script
language="javascript" type="text/javascript">[\n]"
2007/12/02 16:46:19:203 IST [DEBUG] content - << "          [\n]"
2007/12/02 16:46:19:203 IST [DEBUG] content - << "          if (typeof
(hideAllAds) == 'undefined' || hideAllAds == false) {[\n]"
2007/12/02 16:46:19:203 IST [DEBUG] content - << "               
document.write('<scri' + 'pt language="javascript" type="text/javascript"
src="http://ad.doubleclick.net/adj/' + adsrc + '"></scri' + 'pt>');[\n]"
2007/12/02 16:46:19:203 IST [DEBUG] content - << "                if
((!document.images && navigator.userAgent.indexOf("Mozilla/2.") >= 0) ||
navigator.userAgent.indexOf("WebTV") >= 0) {[\n]"
2007/12/02 16:46:19:203 IST [DEBUG] content - << "                    docu"
2007/12/02 16:46:19:203 IST [DEBUG] content - << "ment.write('
http://ad.doubleclick.net/jump/reuters.com.dart/business/to ');[\n]"
2007/12/02 16:46:19:203 IST [DEBUG] content - << "                   
document.write('
http://ad.doubleclick.net/ad/reuters.com.dart/business/topnews/bankingfinancial/article;'
+ (typeof(seg)=='undefined'?'':seg) +
'type=broker_button1;sz=170x40;articleID=USN2432828320070824;ord=' +
(typeof(tmstmp)=='undefined'?12345:tmstmp) + '?  ');[\n]"
2007/12/02 16:46:19:203 IST [DEBUG] content - << "                }[\n]"
2007/12/02 16:46:19:203 IST [DEBUG] content - << "          }[\n]"
2007/12/02 16:46:19:203 IST [DEBUG] content - << "        </script>[\n]"
2007/12/02 16:46:19:203 IST [DEBUG] content - << "        <noscript>[\n]"
2007/12/02 16:46:19:203 IST [DEBUG] content - << "          
http://ad.doubleclick.net/jump/reuters.com.dart/business/topnews/bankingfinancial/article;type=broker_button1;sz=170x40;articleID=USN2432828320070824;ord=7989?
[\n]"
2007/12/02 16:46:19:203 IST [DEBUG] content - << "            
http://ad.doubleclick.net/ad/reuters.com.dart/business/topnews/bankingfinancial/article;type=broker_button1;sz=170x40;articleID=USN2432828320070824;ord=7989?
[\n]"
2007/12/02 16:46:19:203 IST [DEBUG] content - << "           [\n]"
2007/12/02 16:46:19:203 IST [DEBUG] content - << "        </noscript>[\n]"
2007/12/02 16:46:19:203 IST [DEBUG] content - << "[\n]"
2007/12/02 16:46:19:203 IST [DEBUG] content - << "        <script>[\n]"
2007/12/02 16:46:19:203 IST [DEBUG] content - << "            if
(typeof(window.populateRaptAdSize) != 'undefined')[\n]"
2007/12/02 16:46:19:203 IST [DEBUG] content - << "               
populateRaptAdSize('type=broker_button1;sz=170x40;');[\n]"
2007/12/02 16:46:19:203 IST [DEBUG] content - << "        </script>[\n]"
2007/12/02 16:46:19:203 IST [DEBUG] content - << "[\n]"
2007/12/02 16:46:19:203 IST [DEBUG] content - << "        </div>[\n]"
2007/12/02 16:46:19:203 IST [DEBUG] content - << "[\n]"
2007/12/02 16:46:19:203 IST [DEBUG] content - << "</div>[\r][\n]"
2007/12/02 16:46:19:203 IST [DEBUG] content - << "[\r][\n]"
2007/12/02 16:46:19:203 IST [DEBUG] content - << "</div>[\r][\n]"
2007/12/02 16:46:19:203 IST [DEBUG] content - << "            <div
class="adButtonModule">[\r][\n]"
2007/12/02 16:46:19:203 IST [DEBUG] content - << "               
<div>[\r][\n]"
2007/12/02 16:46:19:203 IST [DEBUG] content - << "[0x9]<script>[\n]"
2007/12/02 16:46:19:203 IST [DEBUG] content - << "  var adsrc = 'reuters.co"
2007/12/02 16:46:21:828 IST [DEBUG] content - <<
"m.dart/business/topnews/bankingfinancial/article;' +
(typeof(seg)=='undefined'?'':seg) +
'type=broker_button2;sz=170x40;articleID=USN2432828320070824;ord=' +
(typeof(tmstmp)!='undefined'?tmstmp:12345) + '?';[\n]"
2007/12/02 16:46:21:828 IST [DEBUG] content - << "</script>[\n]"
2007/12/02 16:46:21:828 IST [DEBUG] content - << "<div class="ad"
id="advert_1317838" onload="renderMask1317838()">[\n]"
2007/12/02 16:46:21:828 IST [DEBUG] content - << "[0x9]<script
language="javascript" type="text/javascript">[\n]"
2007/12/02 16:46:21:828 IST [DEBUG] content - << "          [\n]"
2007/12/02 16:46:21:828 IST [DEBUG] content - << "          if (typeof
(hideAllAds) == 'undefined' || hideAllAds == false) {[\n]"
2007/12/02 16:46:21:828 IST [DEBUG] content - << "               
document.write('<scri' + 'pt language="javascript" type="text/javascript"
src="http://ad.doubleclick.net/adj/' + adsrc + '"></scri' + 'pt>');[\n]"
2007/12/02 16:46:21:828 IST [DEBUG] content - << "                if
((!document.images && navigator.userAgent.indexOf("Mozilla/2.") >= 0) ||
navigator.userAgent.indexOf("WebTV") >= 0) {[\n]"
2007/12/02 16:46:21:828 IST [DEBUG] content - << "                   
document.write('
http://ad.doubleclick.net/jump/reuters.com.dart/business/topnews/bankingfinancial/article;'
+ (typeof(seg)=='undefined'?'':seg) +
'type=broker_button2;sz=170x40;articleID=USN2432828320070824;ord=' +
(typeof(tmstmp)=='undefined'?12345:tmstmp) + '? ');[\n]"
2007/12/02 16:46:21:828 IST [DEBUG] content - << "                   
document.write('
http://ad.doubleclick.net/ad/reuters.com.dart/business/topnews/bankingfinancial/article;'
+ (typeof(seg)=='undefined'?'':seg) +
'type=broker_button2;sz=170x40;articleID=USN2432828320070824;ord=' +
(typeof(tmstmp)=='undefined'?12345:tmstmp) + '?  ');[\n]"
2007/12/02 16:46:21:828 IST [DEBUG] content - << "                }[\n]"
2007/12/02 16:46:21:828 IST [DEBUG] content - << "          }[\n]"
2007/12/02 16:46:21:828 IST [DEBUG] content - << "        </script>[\n]"
2007/12/02 16:46:21:828 IST [DEBUG] content - << "        <noscript>[\n]"
2007/12/02 16:46:21:828 IST [DEBUG] content - << "          
http://ad.doubleclick.net/jump/reuters.com.dart/business/topnews/bankingfinancial/article;type=broker_button2;sz=170x40;articleID=USN2432828320070824;ord=7989?
[\n]"
2007/12/02 16:46:21:828 IST [DEBUG] content - << "            
http://ad.doubleclick.net/ad/reuters.com.dart/business/topnews/bankingfinancial/article;type=broker_button2;sz=170x40;articleID=USN2432828320070824;ord=7989?
[\n]"
2007/12/02 16:46:21:828 IST [DEBUG] content - << "           [\n]"
2007/12/02 16:46:21:828 IST [DEBUG] content - << "        </noscript>[\n]"
2007/12/02 16:46:21:828 IST [DEBUG] content - << "[\n]"
2007/12/02 16:46:21:828 IST [DEBUG] content - << "        <script>[\n]"
2007/12/02 16:46:21:828 IST [DEBUG] content - << "            if
(typeof(window.populateRaptAdSize) != 'undefined')[\n]"
2007/12/02 16:46:21:828 IST [DEBUG] content - << "               
populateRaptAdSize('type=broker_button2;sz=170x40;');[\n]"
2007/12/02 16:46:21:828 IST [DEBUG] content - << "        </script>[\n]"
2007/12/02 16:46:21:828 IST [DEBUG] content - << "[\n]"
2007/12/02 16:46:21:828 IST [DEBUG] content - << "        </div>[\n]"
2007/12/02 16:46:21:828 IST [DEBUG] content - << "[\n]"
2007/12/02 16:46:21:828 IST [DEBUG] content - << "</div>[\r][\n]"
2007/12/02 16:46:21:828 IST [DEBUG] content - << "[\r][\n]"
2007/12/02 16:46:21:828 IST [DEBUG] content - << "</div>[\r][\n]"
2007/12/02 16:46:21:828 IST [DEBUG] content - << "            <div
class="adButtonModule adRow">[\r][\n]"
2007/12/02 16:46:21:828 IST [DEBUG] content - << "               
<div>[\r][\n]"
2007/12/02 16:46:21:828 IST [DEBUG] content - << "[0x9]<script>[\n]"
2007/12/02 16:46:21:828 IST [DEBUG] content - << "  var adsrc =
'reuters.com.dart/business/topnews/bankingfinancial/article;' +
(typeof(seg)=='undefined'?'':seg) +
'type=broker_button3;sz=170x40;articleID=USN2432828320070824;ord=' +
(typeof(tmstmp)!='undefined'?tmstmp:12345) + '?';[\n]"
2007/12/02 16:46:21:828 IST [DEBUG] content - << "</script>[\n]"
2007/12/02 16:46:21:828 IST [DEBUG] content - << "<div class="ad"
id="advert_1317838" onload="renderMask1317838()">[\n]"
2007/12/02 16:46:21:828 IST [DEBUG] content - << "[0x9]<script
language="javascript" type="text/javascript">[\n]"
2007/12/02 16:46:21:828 IST [DEBUG] content - << "          [\n]"
2007/12/02 16:46:21:828 IST [DEBUG] content - << "          if (typeof
(hideAllAds) == 'undefined' || hideAllAds == false) {[\n]"
2007/12/02 16:46:21:828 IST [DEBUG] content - << "               
document.write('<scri' + 'pt language="javascript" type="text/javascript"
src="http://ad.doubleclick.net/adj/' + adsrc + '"></scri' + 'pt>');[\n]"
2007/12/02 16:46:21:828 IST [DEBUG] content - << "                if
((!document.images && navigator.userAgent.indexOf("Mozilla/2.") >= 0) ||
navigator.userAgent.indexOf("WebTV") >= 0) {[\n]"
2007/12/02 16:46:21:828 IST [DEBUG] content - << "                   
document.write('
http://ad.doubleclick.net/jump/reuters.com.dart/business/topnews/bankingfinancial/article;'
+ (typeof(seg)=='undefined'?'':seg) +
'type=broker_button3;sz=170x40;articleID=USN2432828320070824;ord=' +
(typeof(tmstmp)=='undefined'?12345:tmstmp) + '? ');[\n]"
2007/12/02 16:46:21:828 IST [DEBUG] content - << "                   
document.write('
http://ad.doubleclick.net/ad/reuters.com.dart/business/topnews/bankingfinancial/article;'
+ (typeof(seg)=='undefined'?'':seg) +
'type=broker_button3;sz=170x40;articleID=USN2432828320070824;ord=' +
(typeof(tmstmp)=='undefined'?12345:tmstmp) + '?  ');[\n]"
2007/12/02 16:46:21:828 IST [DEBUG] content - << "                }[\n]"
2007/12/02 16:46:21:828 IST [DEBUG] content - << "       "
2007/12/02 16:46:21:828 IST [DEBUG] content - << "[\r]"
2007/12/02 16:46:21:828 IST [DEBUG] content - << "[\n]"
2007/12/02 16:46:21:828 IST [DEBUG] content - << "1"
2007/12/02 16:46:21:828 IST [DEBUG] content - << "f"
2007/12/02 16:46:21:828 IST [DEBUG] content - << "f"
2007/12/02 16:46:21:828 IST [DEBUG] content - << "8"
2007/12/02 16:46:21:828 IST [DEBUG] content - << "[\r]"
2007/12/02 16:46:21:828 IST [DEBUG] content - << "[\n]"
2007/12/02 16:46:21:828 IST [DEBUG] content - << "   }[\n]"
2007/12/02 16:46:21:828 IST [DEBUG] content - << "        </script>[\n]"
2007/12/02 16:46:21:828 IST [DEBUG] content - << "        <noscript>[\n]"
2007/12/02 16:46:21:828 IST [DEBUG] content - << "          
http://ad.doubleclick.net/jump/reuters.com.dart/business/topnews/bankingfinancial/article;type=broker_button3;sz=170x40;articleID=USN2432828320070824;ord=7989?
[\n]"
2007/12/02 16:46:21:828 IST [DEBUG] content - << "            
http://ad.doubleclick.net/ad/reuters.com.dart/business/topnews/bankingfinancial/article;type=broker_button3;sz=170x40;articleID=USN2432828320070824;ord=7989?
[\n]"
2007/12/02 16:46:21:828 IST [DEBUG] content - << "           [\n]"
2007/12/02 16:46:21:828 IST [DEBUG] content - << "        </noscript>[\n]"
2007/12/02 16:46:21:828 IST [DEBUG] content - << "[\n]"
2007/12/02 16:46:21:828 IST [DEBUG] content - << "        <script>[\n]"
2007/12/02 16:46:21:828 IST [DEBUG] content - << "            if
(typeof(window.populateRaptAdSize) != 'undefined')[\n]"
2007/12/02 16:46:21:828 IST [DEBUG] content - << "               
populateRaptAdSize('type=broker_button3;sz=170x40;');[\n]"
2007/12/02 16:46:21:828 IST [DEBUG] content - << "        </script>[\n]"
2007/12/02 16:46:21:828 IST [DEBUG] content - << "[\n]"
2007/12/02 16:46:21:828 IST [DEBUG] content - << "        </div>[\n]"
2007/12/02 16:46:21:828 IST [DEBUG] content - << "[\n]"
2007/12/02 16:46:21:828 IST [DEBUG] content - << "</div>[\r][\n]"
2007/12/02 16:46:21:828 IST [DEBUG] content - << "[\r][\n]"
2007/12/02 16:46:21:828 IST [DEBUG] content - << "</div>[\r][\n]"
2007/12/02 16:46:21:828 IST [DEBUG] content - << "            <div
class="adButtonModule last">[\r][\n]"
2007/12/02 16:46:21:828 IST [DEBUG] content - << "           "
2007/12/02 16:46:24:140 IST [DEBUG] content - << "     </div>[\r][\n]"
2007/12/02 16:46:24:140 IST [DEBUG] content - << "        </div>[\r][\n]"
2007/12/02 16:46:24:140 IST [DEBUG] content - << "    </div>[\r][\n]"
2007/12/02 16:46:24:140 IST [DEBUG] content - << "[\r][\n]"
2007/12/02 16:46:24:140 IST [DEBUG] content - << "<!-- END:: Broker Center
Advert Module -->[\r][\n]"
2007/12/02 16:46:24:140 IST [DEBUG] content - << "<div
class="linebreak"></div><!---->[\r][\n]"
2007/12/02 16:46:24:140 IST [DEBUG] content - << "[\r][\n]"
2007/12/02 16:46:24:140 IST [DEBUG] content - << "<div
class="breadcrumbs">[\r][\n]"
2007/12/02 16:46:24:140 IST [DEBUG] content - << "  <!-- US -->[\r][\n]"
2007/12/02 16:46:24:140 IST [DEBUG] content - << "  <div
class="slimlineIndices"><div id="slimlineIndices" class="standalone
label">[\n]"
2007/12/02 16:46:24:140 IST [DEBUG] content - << "  
http://today.reuters.com/investing/FinanceMarketsChain.aspx?sym=us!dji DJIA
: <strong>13371.72</strong> /resources/images/changeUp.gif [\n]"
2007/12/02 16:46:24:140 IST [DEBUG] content - << "    [\n]"
2007/12/02 16:46:24:140 IST [DEBUG] content - << "    <!-- Exception
occurred: javax.servlet.jsp.JspException: Unable to find a value for
"netChanged" in object of class "com.reuters.rcom.beans.CmsSymbolQuote"
using operator "."-->[\n]"
2007/12/02 16:46:24:140 IST [DEBUG] content - << "        <!-- Cause:
-->[\n]"
2007/12/02 16:46:24:140 IST [DEBUG] content - << "        <!-- Stack Trace:
[\n]"
2007/12/02 16:46:24:140 IST [DEBUG] content - << "       
org.apache.jsp.WEB_002dINF.jsp.templates.modules.html.indexSnapshot_jsp$indexSnapshot_jspHelper.invoke(indexSnapshot_jsp.java:465)<br>[\n]"
2007/12/02 16:46:24:140 IST [DEBUG] content - << "       
org.apache.jsp.tag.web.marketData_tag._jspx_meth_c_catch_0(marketData_tag.java:118)<br>[\n]"
2007/12/02 16:46:24:140 IST [DEBUG] content - << "       
org.apache.jsp.tag.web.marketData_tag.doTag(marketData_tag.java:81)<br>[\n]"
2007/12/02 16:46:24:140 IST [DEBUG] content - << "       
org.apache.jsp.WEB_002dINF.jsp.templates.modules.html.indexSnapshot_jsp._jspService(indexSnapshot_jsp.java:80)<br>[\n]"
2007/12/02 16:46:24:140 IST [DEBUG] content - << "       
org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:97)<br>[\n]"
2007/12/02 16:46:24:140 IST [DEBUG] content - << "       
javax.servlet.http.HttpServlet.service(HttpServlet.java:802)<br>[\n]"
2007/12/02 16:46:24:140 IST [DEBUG] content - << "       
org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:334)<br>[\n]"
2007/12/02 16:46:24:140 IST [DEBUG] content - << "       
org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:314)<br>[\n]"
2007/12/02 16:46:24:140 IST [DEBUG] content - << "       
org.apache.jasper.servlet.JspServlet.service(JspServlet.java:264)<br>[\n]"
2007/12/02 16:46:24:140 IST [DEBUG] content - << "       
javax.servlet.http.HttpServlet.service(HttpServlet.java:802)<br>[\n]"
2007/12/02 16:46:24:140 IST [DEBUG] content - << "       
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:252)<br>[\n]"
2007/12/02 16:46:24:140 IST [DEBUG] content - << "       
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173)<br>[\n]"
2007/12/02 16:46:24:140 IST [DEBUG] content - << "       
org.apache.catalina.core.ApplicationDispatcher.invoke(ApplicationDispatcher.java:672)<br>[\n]"
2007/12/02 16:46:24:140 IST [DEBUG] content - << "       
org.apache.catalina.core.ApplicationDispatcher.doInclude(ApplicationDispatcher.java:574)<br>[\n]"
2007/12/02 16:46:24:140 IST [DEBUG] content - << "       
org.apache.catalina.core.ApplicationDispatcher.include(ApplicationDispatcher.java:499)<br>[\n]"
2007/12/02 16:46:24:140 IST [DEBUG] content - << "       
org.apache.jasper.runtime.JspRuntimeLibrary.include(JspRuntimeLibrary.java:966)<br>[\n]"
2007/12/02 16:46:24:140 IST [DEBUG] content - << "       
org.apache.jasper.runtime.PageContextImpl.include(PageContextImpl.java:602)<br>[\n]"
2007/12/02 16:46:24:140 IST [DEBUG] content - << "       
com.reuters.rcom.tags.cms.CachedModuleTag.doTag(CachedModuleTag.java:196)<br>[\n]"
2007/12/02 16:46:24:140 IST [DEBUG] content - << "       
org.apache.jsp.WEB_002dINF.jsp.templates.modules.html.breadCrumbs_jsp._jspx_meth_cms_cachedModule_0(breadCrumbs_jsp.java:237)<br>[\n]"
2007/12/02 16:46:24:140 IST [DEBUG] content - << "       
org.apache.jsp.WEB_002dINF.jsp.templates.modules.html.breadCrumbs_jsp._jspx_meth_c_when_0(breadCrumbs_jsp.java:210)<br>[\n]"
2007/12/02 16:46:24:140 IST [DEBUG] content - << "       
org.apache.jsp.WEB_002dINF.jsp.templates.modules.html.breadCrumbs_jsp._jspx_meth_c_choose_0(breadCrumbs_jsp.java:175)<br>[\n]"
2007/12/02 16:46:24:140 IST [DEBUG] content - << "       
org.apache.jsp.WEB_002dINF.jsp.templates.modules.html.breadCrumbs_jsp._jspx_meth_c_if_0(breadCrumbs_jsp.java:131)<br>[\n]"
2007/12/02 16:46:24:140 IST [DEBUG] content - << "       
org.apache.jsp.WEB_002dINF.jsp.templates.modules.html.breadCrumbs_jsp._jspService(breadCrumbs_jsp.java:85)<br>[\n]"
2007/12/02 16:46:24:140 IST [DEBUG] content - << "       
org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:97)<br>[\n]"
2007/12/02 16:46:24:140 IST [DEBUG] content - << "       
javax.servlet.http.HttpServlet.service(HttpServlet.java:802)<br>[\n]"
2007/12/02 16:46:24:140 IST [DEBUG] content - << "       
org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:334)<br>[\n]"
2007/12/02 16:46:24:140 IST [DEBUG] content - << "       
org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:314)<br>[\n]"
2007/12/02 16:46:24:140 IST [DEBUG] content - << "       
org.apache.jasper.servlet.JspServlet.service(JspServlet.java:264)<br>[\n]"
2007/12/02 16:46:24:140 IST [DEBUG] content - << "       
javax.servlet.http.HttpServlet.service(HttpServlet.java:802)<br>[\n]"
2007/12/02 16:46:24:140 IST [DEBUG] content - << "       
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:252)<br>[\n]"
2007/12/02 16:46:24:140 IST [DEBUG] content - << "       
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173)<b"
2007/12/02 16:46:24:140 IST [DEBUG] content - << "r>[\n]"
2007/12/02 16:46:24:140 IST [DEBUG] content - << "       
org.apache.catalina.core.ApplicationDispatcher.invoke(ApplicationDispatcher.java:672)<br>[\n]"
2007/12/02 16:46:24:140 IST [DEBUG] content - << "       
org.apache.catalina.core.ApplicationDispatcher.doInclude(ApplicationDispatcher.java:574)<br>[\n]"
2007/12/02 16:46:24:140 IST [DEBUG] content - << "       
org.apache.catalina.core.ApplicationDispatcher.include(ApplicationDispatcher.java:499)<br>[\n]"
2007/12/02 16:46:24:140 IST [DEBUG] content - << "       
org.apache.jasper.runtime.JspRuntimeLibrary.include(JspRuntimeLibrary.java:966)<br>[\n]"
2007/12/02 16:46:24:140 IST [DEBUG] content - << "       
org.apache.jasper.runtime.PageContextImpl.include(PageContextImpl.java:602)<br>[\n]"
2007/12/02 16:46:24:140 IST [DEBUG] content - << "       
com.reuters.rcom.tags.cms.CachedModuleTag.doTag(CachedModuleTag.java:196)<br>[\n]"
2007/12/02 16:46:24:140 IST [DEBUG] content - << "       
org.apache.jsp.WEB_002dINF.jsp.templates.page"
2007/12/02 16:46:26:156 IST [DEBUG] content - <<
"Templates.homePage_jsp._jspx_meth_cms_cachedModule_0(homePage_jsp.java:131)<br>[\n]"
2007/12/02 16:46:26:156 IST [DEBUG] content - << "       
org.apache.jsp.WEB_002dINF.jsp.templates.pageTemplates.homePage_jsp._jspService(homePage_jsp.java:53)<br>[\n]"
2007/12/02 16:46:26:156 IST [DEBUG] content - << "       
org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:97)<br>[\n]"
2007/12/02 16:46:26:156 IST [DEBUG] content - << "       
javax.servlet.http.HttpServlet.service(HttpServlet.java:802)<br>[\n]"
2007/12/02 16:46:26:156 IST [DEBUG] content - << "       
org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:334)<br>[\n]"
2007/12/02 16:46:26:156 IST [DEBUG] content - << "       
org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:314)<br>[\n]"
2007/12/02 16:46:26:156 IST [DEBUG] content - << "       
org.apache.jasper.servlet.JspServlet.service(JspServlet.java:264)<br>[\n]"
2007/12/02 16:46:26:156 IST [DEBUG] content - << "       
javax.servlet.http.HttpServlet.service(HttpServlet.java:802)<br>[\n]"
2007/12/02 16:46:26:156 IST [DEBUG] content - << "       
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:252)<br>[\n]"
2007/12/02 16:46:26:156 IST [DEBUG] content - << "       
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173)<br>[\n]"
2007/12/02 16:46:26:156 IST [DEBUG] content - << "       
org.apache.catalina.core.ApplicationDispatcher.invoke(ApplicationDispatcher.java:672)<br>[\n]"
2007/12/02 16:46:26:156 IST [DEBUG] content - << "       
org.apache.catalina.core.ApplicationDispatcher.doInclude(ApplicationDispatcher.java:574)<br>[\n]"
2007/12/02 16:46:26:156 IST [DEBUG] content - << "       
org.apache.catalina.core.ApplicationDispatcher.include(ApplicationDispatcher.java:499)<br>[\n]"
2007/12/02 16:46:26:156 IST [DEBUG] content - << "       
org.apache.jasper.runtime.JspRuntimeLibrary.include(JspRuntimeLibrary.java:966)<br>[\n]"
2007/12/02 16:46:26:156 IST [DEBUG] content - << "       
org.apache.jsp.tag.web.contentTemplate_tag.doTag(contentTemplate_tag.java:60)<br>[\n]"
2007/12/02 16:46:26:156 IST [DEBUG] content - << "       
org.apache.jsp.WEB_002dINF.jsp.templates.pageShells.articleShell2007_jsp._jspx_meth_cms_contentTemplate_0(articleShell2007_jsp.java:312)<br>[\n]"
2007/12/02 16:46:26:156 IST [DEBUG] content - << "       
org.apache.jsp.WEB_002dINF.jsp.templates.pageShells.articleShell2007_jsp._jspService(articleShell2007_jsp.java:119)<br>[\n]"
2007/12/02 16:46:26:156 IST [DEBUG] content - << "       
org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:97)<br>[\n]"
2007/12/02 16:46:26:156 IST [DEBUG] content - << "       
javax.servlet.http.HttpServlet.service(HttpServlet.java:802)<br>[\n]"
2007/12/02 16:46:26:156 IST [DEBUG] content - << "       
org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:334)<br>[\n]"
2007/12/02 16:46:26:156 IST [DEBUG] content - << "       
org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:314)<br>[\n]"
2007/12/02 16:46:26:156 IST [DEBUG] content - << "       
org.apache.jasper.servlet.JspServlet.service(JspServlet.java:264)<br>[\n]"
2007/12/02 16:46:26:156 IST [DEBUG] content - << "       
javax.servlet.http.HttpServlet.service(HttpServlet.java:802)<br>[\n]"
2007/12/02 16:46:26:156 IST [DEBUG] content - << "       
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:252)<br>[\n]"
2007/12/02 16:46:26:156 IST [DEBUG] content - << "       
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173)<br>[\n]"
2007/12/02 16:46:26:156 IST [DEBUG] content - << "       
org.apache.catalina.core.ApplicationDispatcher.invoke(ApplicationDispatcher.java:672)<br>[\n]"
2007/12/02 16:46:26:156 IST [DEBUG] content - << "       
org.apache.catalina.core.ApplicationDispatcher.doInclude(ApplicationDispatcher.java:574)<br>[\n]"
2007/12/02 16:46:26:156 IST [DEBUG] content - << "       
org.apache.catalina.core.ApplicationDispatcher.include(ApplicationDispatcher.java:499)<br>[\n]"
2007/12/02 16:46:26:156 IST [DEBUG] content - << "       
org.apache.jasper.runtime.JspRuntimeLibrary.include(JspRuntimeLibrary.java:966)<br>[\n]"
2007/12/02 16:46:26:156 IST [DEBUG] content - << "       
org.apache.jasper.runtime.PageContextImpl.include(PageContextImpl.java:602)<br>[\n]"
2007/12/02 16:46:26:156 IST [DEBUG] content - << "       
com.reuters.rcom.tags.cms.CachedPageTag.doStartTag(CachedPageTag.java:39)<br>[\n]"
2007/12/02 16:46:26:156 IST [DEBUG] content - << "       
org.apache.jsp.WEB_002dINF.jsp.page_jsp._jspx_meth_cms_cachedPage_0(page_jsp.java:83)<br>[\n]"
2007/12/02 16:46:26:156 IST [DEBUG] content - << "       
org.apache.jsp.WEB_002dINF.jsp.page_"
2007/12/02 16:46:26:156 IST [DEBUG] content - << "[\r]"
2007/12/02 16:46:26:156 IST [DEBUG] content - << "[\n]"
2007/12/02 16:46:26:156 IST [DEBUG] content - << "1"
2007/12/02 16:46:26:156 IST [DEBUG] content - << "f"
2007/12/02 16:46:26:156 IST [DEBUG] content - << "f"
2007/12/02 16:46:26:156 IST [DEBUG] content - << "8"
2007/12/02 16:46:26:156 IST [DEBUG] content - << "[\r]"
2007/12/02 16:46:26:156 IST [DEBUG] content - << "[\n]"
2007/12/02 16:46:26:156 IST [DEBUG] content - <<
"jsp._jspService(page_jsp.java:58)<br>[\n]"
2007/12/02 16:46:26:156 IST [DEBUG] content - << "       
org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:97)<br>[\n]"
2007/12/02 16:46:26:156 IST [DEBUG] content - << "       
javax.servlet.http.HttpServlet.service(HttpServlet.java:802)<br>[\n]"
2007/12/02 16:46:26:156 IST [DEBUG] content - << "       
org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:334)<br>[\n]"
2007/12/02 16:46:26:156 IST [DEBUG] content - << "       
org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:314)<br>[\n]"
2007/12/02 16:46:26:156 IST [DEBUG] content - << "       
org.apache.jasper.servlet.JspServlet.service(JspServlet.java:264)<br>[\n]"
2007/12/02 16:46:26:156 IST [DEBUG] content - << "       
javax.servlet.http.HttpServlet.service(HttpServlet.java:802)<br>[\n]"
2007/12/02 16:46:26:156 IST [DEBUG] content - << "       
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:252)<br>[\n]"
2007/12/02 16:46:26:156 IST [DEBUG] content - << "       
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173)<br>[\n]"
2007/12/02 16:46:26:156 IST [DEBUG] content - << "       
org.apache.catalina.core.ApplicationDispatcher.invoke(ApplicationDispatcher.java:672)<br>[\n]"
2007/12/02 16:46:26:156 IST [DEBUG] content - << "       
org.apache.catalina.core.ApplicationDispatcher.processRequest(ApplicationDispatcher.java:463)<br>[\n]"
2007/12/02 16:46:26:156 IST [DEBUG] content - << "       
org.apache.catalina.core.ApplicationDispatcher.doForward(ApplicationDispatcher.java:398)<br>[\n]"
2007/12/02 16:46:26:156 IST [DEBUG] content - << "       
org.apache.catalina.core.ApplicationDispatcher.forward(ApplicationDispatcher.java:301)<br>[\n]"
2007/12/02 16:46:26:156 IST [DEBUG] content - << "       
org.apache.struts.action.RequestProcessor.doForward(RequestProcessor.java:1085)<br>[\n]"
2007/12/02 16:46:26:156 IST [DEBUG] content - << "       
org.apache.struts.action.RequestProcessor.processForwardConfig(RequestProcessor.java:398)<br>[\n]"
2007/12/02 16:46:26:156 IST [DEBUG] content - << "   "
2007/12/02 16:46:27:750 IST [DEBUG] content - << "    
org.apache.struts.action.RequestProcessor.process(RequestProcessor.java:241)<br>[\n]"
2007/12/02 16:46:27:750 IST [DEBUG] content - << "       
org.apache.struts.action.ActionServlet.process(ActionServlet.java:1196)<br>[\n]"
2007/12/02 16:46:27:750 IST [DEBUG] content - << "       
org.apache.struts.action.ActionServlet.doGet(ActionServlet.java:414)<br>[\n]"
2007/12/02 16:46:27:750 IST [DEBUG] content - << "       
javax.servlet.http.HttpServlet.service(HttpServlet.java:689)<br>[\n]"
2007/12/02 16:46:27:750 IST [DEBUG] content - << "       
javax.servlet.http.HttpServlet.service(HttpServlet.java:802)<br>[\n]"
2007/12/02 16:46:27:750 IST [DEBUG] content - << "       
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:252)<br>[\n]"
2007/12/02 16:46:27:750 IST [DEBUG] content - << "       
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173)<br>[\n]"
2007/12/02 16:46:27:750 IST [DEBUG] content - << "       
org.apache.catalina.core.ApplicationDispatcher.invoke(ApplicationDispatcher.java:672)<br>[\n]"
2007/12/02 16:46:27:750 IST [DEBUG] content - << "       
org.apache.catalina.core.ApplicationDispatcher.processRequest(ApplicationDispatcher.java:463)<br>[\n]"
2007/12/02 16:46:27:750 IST [DEBUG] content - << "       
org.apache.catalina.core.ApplicationDispatcher.doForward(ApplicationDispatcher.java:398)<br>[\n]"
2007/12/02 16:46:27:750 IST [DEBUG] content - << "       
org.apache.catalina.core.ApplicationDispatcher.forward(ApplicationDispatcher.java:301)<br>[\n]"
2007/12/02 16:46:27:750 IST [DEBUG] content - << "       
com.reuters.rcom.filters.UrlFilter.doFilter(UrlFilter.java:119)<br>[\n]"
2007/12/02 16:46:27:750 IST [DEBUG] content - << "       
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:202)<br>[\n]"
2007/12/02 16:46:27:750 IST [DEBUG] content - << "       
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173)<br>[\n]"
2007/12/02 16:46:27:750 IST [DEBUG] content - << "       
com.reuters.rcom.filters.CookiesManagementFilter.doFilter(CookiesManagementFilter.java:95)<br>[\n]"
2007/12/02 16:46:27:750 IST [DEBUG] content - << "       
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:202)<br>[\n]"
2007/12/02 16:46:27:750 IST [DEBUG] content - << "       
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173)<br>[\n]"
2007/12/02 16:46:27:750 IST [DEBUG] content - << "       
org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:213)<br>[\n]"
2007/12/02 16:46:27:750 IST [DEBUG] content - << "       
org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:178)<br>[\n]"
2007/12/02 16:46:27:750 IST [DEBUG] content - << "       
org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:126)<br>[\n]"
2007/12/02 16:46:27:750 IST [DEBUG] content - << "       
org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:105)<br>[\n]"
2007/12/02 16:46:27:750 IST [DEBUG] content - << "       
org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:107)<br>[\n]"
2007/12/02 16:46:27:750 IST [DEBUG] content - << "       
org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:148)<br>[\n]"
2007/12/02 16:46:27:750 IST [DEBUG] content - << "       
org.apache.jk.server.JkCoyoteHandler.invoke(JkCoyoteHandler.java:199)<br>[\n]"
2007/12/02 16:46:27:750 IST [DEBUG] content - << "       
org.apache.jk.common.HandlerRequest.invoke(HandlerRequest.java:282)<br>[\n]"
2007/12/02 16:46:27:750 IST [DEBUG] content - << "       
org.apache.jk.common.ChannelSocket.invoke(ChannelSocket.java:767)<br>[\n]"
2007/12/02 16:46:27:750 IST [DEBUG] content - << "       
org.apache.jk.common.ChannelSocket.processConnection(ChannelSocket.java:697)<br>[\n]"
2007/12/02 16:46:27:750 IST [DEBUG] content - << "       
org.apache.jk.common.ChannelSocket$SocketConnection.runIt(ChannelSocket.java:889)<br>[\n]"
2007/12/02 16:46:27:750 IST [DEBUG] content - << "       
org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:684)<br>[\n]"
2007/12/02 16:46:27:750 IST [DEBUG] content - << "       
java.lang.Thread.run(Thread.java:595)<br>[\n]"
2007/12/02 16:46:27:750 IST [DEBUG] content - << "        [\n]"
2007/12/02 16:46:27:750 IST [DEBUG] content - << "        -->[\n]"
2007/12/02 16:46:27:750 IST [DEBUG] content - << "    [\n]"
2007/12/02 16:46:27:750 IST [DEBUG] content - << "  &nbsp;|&nbsp;[\n]"
2007/12/02 16:46:27:750 IST [DEBUG] content - << "  
http://today.reuters.com/investing/FinanceMarketsChain.aspx?sym=us!comp
Nasdaq : <strong>2660.96</strong> /resources/images/changeDown.gif [\n]"
2007/12/02 16:46:27:750 IST [DEBUG] content - << "    [\n]"
2007/12/02 16:46:27:750 IST [DEBUG] content - << "    <!-- Exception
occurred: javax.servlet.jsp.JspException: Unable to find a value for
"netChanged" in object of class "com.reuters.rcom.beans.CmsSymbolQuote"
using operator "."-->[\n]"
2007/12/02 16:46:27:750 IST [DEBUG] content - << "        <!-- Cause:
-->[\n]"
2007/12/02 16:46:27:750 IST [DEBUG] content - << "        <!-- Stack Trace:
[\n]"
2007/12/02 16:46:27:750 IST [DEBUG] content - << "       
org.apache.jsp.WEB_002dINF.jsp.templates.modules.html.indexSnapshot_jsp$indexSnapshot_jspHelper.invoke(indexSnapshot_jsp.java:465)<br>[\n]"
2007/12/02 16:46:27:750 IST [DEBUG] content - << "       
org.apache.jsp.tag.web.marketData_tag._jspx_meth_c_catch_0(marketData_tag.java:118)<br>[\n]"
2007/12/02 16:46:27:750 IST [DEBUG] content - << "       
org.apache.jsp.tag.web.marketData_tag.doTag(marketData_tag.java:81)<br>[\n]"
2007/12/02 16:46:27:750 IST [DEBUG] content - << "       
org.apache.jsp.WEB_002dINF.jsp.templates.modules.html.indexSnapshot_jsp._jspService(indexSnapshot_jsp.java:89)<br>[\n]"
2007/12/02 16:46:27:750 IST [DEBUG] content - << "       
org.apache.jasper.runtime.HttpJspBase.servic"
2007/12/02 16:46:27:750 IST [DEBUG] content - <<
"e(HttpJspBase.java:97)<br>[\n]"
2007/12/02 16:46:27:750 IST [DEBUG] content - << "       
javax.servlet.http.HttpServlet.service(HttpServlet.java:802)<br>[\n]"
2007/12/02 16:46:27:750 IST [DEBUG] content - << "       
org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:334)<br>[\n]"
2007/12/02 16:46:27:750 IST [DEBUG] content - << "       
org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:314)<br>[\n]"
2007/12/02 16:46:27:750 IST [DEBUG] content - << "       
org.apache.jasper.servlet.JspServlet.service(JspServlet.java:264)<br>[\n]"
2007/12/02 16:46:27:750 IST [DEBUG] content - << "       
javax.servlet.http.HttpServlet.service(HttpServlet.java:802)<br>[\n]"
2007/12/02 16:46:27:750 IST [DEBUG] content - << "       
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:252)<br>[\n]"
2007/12/02 16:46:27:750 IST [DEBUG] content - << "       
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilter"
2007/12/02 16:46:29:765 IST [DEBUG] content - << "Chain.java:173)<br>[\n]"
2007/12/02 16:46:29:765 IST [DEBUG] content - << "       
org.apache.catalina.core.ApplicationDispatcher.invoke(ApplicationDispatcher.java:672)<br>[\n]"
2007/12/02 16:46:29:765 IST [DEBUG] content - << "       
org.apache.catalina.core.ApplicationDispatcher.doInclude(ApplicationDispatcher.java:574)<br>[\n]"
2007/12/02 16:46:29:765 IST [DEBUG] content - << "       
org.apache.catalina.core.ApplicationDispatcher.include(ApplicationDispatcher.java:499)<br>[\n]"
2007/12/02 16:46:29:765 IST [DEBUG] content - << "       
org.apache.jasper.runtime.JspRuntimeLibrary.include(JspRuntimeLibrary.java:966)<br>[\n]"
2007/12/02 16:46:29:765 IST [DEBUG] content - << "       
org.apache.jasper.runtime.PageContextImpl.include(PageContextImpl.java:602)<br>[\n]"
2007/12/02 16:46:29:765 IST [DEBUG] content - << "       
com.reuters.rcom.tags.cms.CachedModuleTag.doTag(CachedModuleTag.java:196)<br>[\n]"
2007/12/02 16:46:29:765 IST [DEBUG] content - << "       
org.apache.jsp.WEB_002dINF.jsp.templates.modules.html.breadCrumbs_jsp._jspx_meth_cms_cachedModule_0(breadCrumbs_jsp.java:237)<br>[\n]"
2007/12/02 16:46:29:765 IST [DEBUG] content - << "       
org.apache.jsp.WEB_002dINF.jsp.templates.modules.html.breadCrumbs_jsp._jspx_meth_c_when_0(breadCrumbs_jsp.java:210)<br>[\n]"
2007/12/02 16:46:29:765 IST [DEBUG] content - << "       
org.apache.jsp.WEB_002dINF.jsp.templates.modules.html.breadCrumbs_jsp._jspx_meth_c_choose_0(breadCrumbs_jsp.java:175)<br>[\n]"
2007/12/02 16:46:29:765 IST [DEBUG] content - << "       
org.apache.jsp.WEB_002dINF.jsp.templates.modules.html.breadCrumbs_jsp._jspx_meth_c_if_0(breadCrumbs_jsp.java:131)<br>[\n]"
2007/12/02 16:46:29:765 IST [DEBUG] content - << "       
org.apache.jsp.WEB_002dINF.jsp.templates.modules.html.breadCrumbs_jsp._jspService(breadCrumbs_jsp.java:85)<br>[\n]"
2007/12/02 16:46:29:765 IST [DEBUG] content - << "       
org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:97)<br>[\n]"
2007/12/02 16:46:29:765 IST [DEBUG] content - << "       
javax.servlet.http.HttpServlet.service(HttpServlet.java:802)<br>[\n]"
2007/12/02 16:46:29:765 IST [DEBUG] content - << "       
org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:334)<br>[\n]"
2007/12/02 16:46:29:765 IST [DEBUG] content - << "       
org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:314)<br>[\n]"
2007/12/02 16:46:29:765 IST [DEBUG] content - << "       
org.apache.jasper.servlet.JspServlet.service(JspServlet.java:264)<br>[\n]"
2007/12/02 16:46:29:765 IST [DEBUG] content - << "       
javax.servlet.http.HttpServlet.service(HttpServlet.java:802)<br>[\n]"
2007/12/02 16:46:29:765 IST [DEBUG] content - << "       
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:252)<br>[\n]"
2007/12/02 16:46:29:765 IST [DEBUG] content - << "       
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173)<br>[\n]"
2007/12/02 16:46:29:765 IST [DEBUG] content - << "       
org.apache.catalina.core.ApplicationDispatcher.invoke(ApplicationDispatcher.java:672)<br>[\n]"
2007/12/02 16:46:29:765 IST [DEBUG] content - << "       
org.apache.catalina.core.ApplicationDispatcher.doInclude(ApplicationDispatcher.java:574)<br>[\n]"
2007/12/02 16:46:29:765 IST [DEBUG] content - << "       
org.apache.catalina.core.ApplicationDispatcher.include(ApplicationDispatcher.java:499)<br>[\n]"
2007/12/02 16:46:29:765 IST [DEBUG] content - << "       
org.apache.jasper.runtime.JspRuntimeLibrary.include(JspRuntimeLibrary.java:966)<br>[\n]"
2007/12/02 16:46:29:765 IST [DEBUG] content - << "       
org.apache.jasper.runtime.PageContextImpl.include(PageContextImpl.java:602)<br>[\n]"
2007/12/02 16:46:29:765 IST [DEBUG] content - << "       
com.reuters.rcom.tags.cms.CachedModuleTag.doTag(CachedModuleTag.java:1"
2007/12/02 16:46:29:781 IST [DEBUG] content - << "[\r]"
2007/12/02 16:46:29:781 IST [DEBUG] content - << "[\n]"
2007/12/02 16:46:29:781 IST [DEBUG] content - << "1"
2007/12/02 16:46:29:781 IST [DEBUG] content - << "f"
2007/12/02 16:46:29:781 IST [DEBUG] content - << "f"
2007/12/02 16:46:29:781 IST [DEBUG] content - << "8"
2007/12/02 16:46:29:781 IST [DEBUG] content - << "[\r]"
2007/12/02 16:46:29:781 IST [DEBUG] content - << "[\n]"
2007/12/02 16:46:29:781 IST [DEBUG] content - << "96)<br>[\n]"
2007/12/02 16:46:29:781 IST [DEBUG] content - << "       
org.apache.jsp.WEB_002dINF.jsp.templates.pageTemplates.homePage_jsp._jspx_meth_cms_cachedModule_0(homePage_jsp.java:131)<br>[\n]"
2007/12/02 16:46:29:781 IST [DEBUG] content - << "       
org.apache.jsp.WEB_002dINF.jsp.templates.pageTemplates.homePage_jsp._jspService(homePage_jsp.java:53)<br>[\n]"
2007/12/02 16:46:29:781 IST [DEBUG] content - << "       
org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:97)<br>[\n]"
2007/12/02 16:46:29:781 IST [DEBUG] content - << "       
javax.servlet.http.HttpServlet.service(HttpServlet.java:802)<br>[\n]"
2007/12/02 16:46:29:781 IST [DEBUG] content - << "       
org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:334)<br>[\n]"
2007/12/02 16:46:29:781 IST [DEBUG] content - << "       
org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:314)<br>[\n]"
2007/12/02 16:46:29:781 IST [DEBUG] content - << "       
org.apache.jasper.servlet.JspServlet.service(JspServlet.java:264)<br>[\n]"
2007/12/02 16:46:29:781 IST [DEBUG] content - << "       
javax.servlet.http.HttpServlet.service(HttpServlet.java:802)<br>[\n]"
2007/12/02 16:46:29:781 IST [DEBUG] content - << "       
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:252)<br>[\n]"
2007/12/02 16:46:29:781 IST [DEBUG] content - << "       
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173)<br>[\n]"
2007/12/02 16:46:29:781 IST [DEBUG] content - << "       
org.apache.catalina.core.ApplicationDispatcher.invoke(ApplicationDispatcher.java:672)<br>[\n]"
2007/12/02 16:46:29:781 IST [DEBUG] content - << "       
org.apache.catalina.core.ApplicationDispatcher.doInclude(ApplicationDispatcher.java:574)<br>[\n]"
2007/12/02 16:46:29:781 IST [DEBUG] content - << "       
org.apache.catalina.core.ApplicationDispatcher.include(ApplicationDispatcher.java:499)<br>[\n]"
2007/12/02 16:46:29:781 IST [DEBUG] content - << "       
org.apache.jasper.runtime.JspRuntimeLibrary.include(JspRuntimeLibrary.java:966)<br>[\n]"
2007/12/02 16:46:29:781 IST [DEBUG] content - << "       
org.apache.jsp.tag.web.contentTemplate_tag.doTag(contentTemplate_tag.java:60)<br>[\n]"
2007/12/02 16:46:29:781 IST [DEBUG] content - << "       
org.apache.jsp.WEB_002dINF.jsp.templates.pageShells.articleShell2007_jsp._jspx_meth_cms_contentTemplate_0(articleShell2007_jsp.java:312)<br>[\n]"
2007/12/02 16:46:29:781 IST [DEBUG] content - << "       
org.apache.jsp.WEB_002dINF.jsp.templates.pageShells.articleShell2007_jsp._jspService(articleShell2007_jsp.java:119)<br>[\n]"
2007/12/02 16:46:29:781 IST [DEBUG] content - << "       
org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:97)<br>[\n]"
2007/12/02 16:46:29:781 IST [DEBUG] content - << "       
javax.servlet.http.HttpServlet.service(HttpServlet.java:802)<br>[\n]"
2007/12/02 16:46:29:781 IST [DEBUG] content - << "       
org.apache.jasper.servlet.JspServle"
2007/12/02 16:46:32:093 IST [DEBUG] content - <<
"tWrapper.service(JspServletWrapper.java:334)<br>[\n]"
2007/12/02 16:46:32:093 IST [DEBUG] content - << "       
org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:314)<br>[\n]"
2007/12/02 16:46:32:093 IST [DEBUG] content - << "       
org.apache.jasper.servlet.JspServlet.service(JspServlet.java:264)<br>[\n]"
2007/12/02 16:46:32:093 IST [DEBUG] content - << "       
javax.servlet.http.HttpServlet.service(HttpServlet.java:802)<br>[\n]"
2007/12/02 16:46:32:093 IST [DEBUG] content - << "       
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:252)<br>[\n]"
2007/12/02 16:46:32:093 IST [DEBUG] content - << "       
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173)<br>[\n]"
2007/12/02 16:46:32:093 IST [DEBUG] content - << "       
org.apache.catalina.core.ApplicationDispatcher.invoke(ApplicationDispatcher.java:672)<br>[\n]"
2007/12/02 16:46:32:093 IST [DEBUG] content - << "       
org.apache.catalina.core.ApplicationDispatcher.doInclude(ApplicationDispatcher.java:574)<br>[\n]"
2007/12/02 16:46:32:093 IST [DEBUG] content - << "       
org.apache.catalina.core.ApplicationDispatcher.include(ApplicationDispatcher.java:499)<br>[\n]"
2007/12/02 16:46:32:093 IST [DEBUG] content - << "       
org.apache.jasper.runtime.JspRuntimeLibrary.include(JspRuntimeLibrary.java:966)<br>[\n]"
2007/12/02 16:46:32:093 IST [DEBUG] content - << "       
org.apache.jasper.runtime.PageContextImpl.include(PageContextImpl.java:602)<br>[\n]"
2007/12/02 16:46:32:093 IST [DEBUG] content - << "       
com.reuters.rcom.tags.cms.CachedPageTag.doStartTag(CachedPageTag.java:39)<br>[\n]"
2007/12/02 16:46:32:093 IST [DEBUG] content - << "       
org.apache.jsp.WEB_002dINF.jsp.page_jsp._jspx_meth_cms_cachedPage_0(page_jsp.java:83)<br>[\n]"
2007/12/02 16:46:32:093 IST [DEBUG] content - << "       
org.apache.jsp.WEB_002dINF.jsp.page_jsp._jspService(page_jsp.java:58)<br>[\n]"
2007/12/02 16:46:32:093 IST [DEBUG] content - << "       
org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:97)<br>[\n]"
2007/12/02 16:46:32:093 IST [DEBUG] content - << "       
javax.servlet.http.HttpServlet.service(HttpServlet.java:802)<br>[\n]"
2007/12/02 16:46:32:093 IST [DEBUG] content - << "       
org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:334)<br>[\n]"
2007/12/02 16:46:32:093 IST [DEBUG] content - << "       
org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:314)<br>[\n]"
2007/12/02 16:46:32:093 IST [DEBUG] content - << "       
org.apache.jasper.servlet.JspServlet.service(JspServlet.java:264)<br>[\n]"
2007/12/02 16:46:32:093 IST [DEBUG] content - << "       
javax.servlet.http.HttpServlet.service(HttpServlet.java:802)<br>[\n]"
2007/12/02 16:46:32:093 IST [DEBUG] content - << "       
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:252)<br>[\n]"
2007/12/02 16:46:32:093 IST [DEBUG] content - << "       
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173)<br>[\n]"
2007/12/02 16:46:32:093 IST [DEBUG] content - << "       
org.apache.catalina.core.ApplicationDispatcher.invoke(ApplicationDispatcher.java:672)<br>[\n]"
2007/12/02 16:46:32:093 IST [DEBUG] content - << "       
org.apache.catalina.core.ApplicationDispatcher.processRequest(ApplicationDispatcher.java:463)<br>[\n]"
2007/12/02 16:46:32:093 IST [DEBUG] content - << "       
org.apache.catalina.core.ApplicationDispatcher.doForward(ApplicationDispatcher.java:398)<br>[\n]"
2007/12/02 16:46:32:093 IST [DEBUG] content - << "       
org.apache.catalina.core.ApplicationDispatcher.forward(ApplicationDispatcher.java:301)<br>[\n]"
2007/12/02 16:46:32:093 IST [DEBUG] content - << "       
org.apache.struts.action.RequestProcessor.doForward(RequestProcessor.java:1085)<br>[\n]"
2007/12/02 16:46:32:093 IST [DEBUG] content - << "       
org.apache.struts.action.RequestProcessor.processForwardConfig(RequestProcessor.java:398)<br>[\n]"
2007/12/02 16:46:32:093 IST [DEBUG] content - << "       
org.apache.struts.action.RequestProcessor.process(RequestProcessor.java:241)<br>[\n]"
2007/12/02 16:46:32:093 IST [DEBUG] content - << "       
org.apache.struts.action.ActionServlet.process(ActionServlet.java:1196)<br>[\n]"
2007/12/02 16:46:32:093 IST [DEBUG] content - << "       
org.apache.struts.action.ActionServlet.doGet(ActionServlet.java:414)<br>[\n]"
2007/12/02 16:46:32:093 IST [DEBUG] content - << "       
javax.servlet.http.HttpServlet.service(HttpServlet.java:689)<br>[\n]"
2007/12/02 16:46:32:093 IST [DEBUG] content - << "       
javax.servlet.http.HttpServlet.service(HttpServlet.java:802)<br>[\n]"
2007/12/02 16:46:32:093 IST [DEBUG] content - << "       
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:252)<br>[\n]"
2007/12/02 16:46:32:093 IST [DEBUG] content - << "       
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173)<br>[\n]"
2007/12/02 16:46:32:093 IST [DEBUG] content - << "       
org.apache.catalina.core.ApplicationDispatcher.invoke(ApplicationDispatcher.java:672)<br>[\n]"
2007/12/02 16:46:32:093 IST [DEBUG] content - << "       
org.apache.catalina.core.ApplicationDispatcher.processRequest(ApplicationDispatcher.java:463)<br>[\n]"
2007/12/02 16:46:32:093 IST [DEBUG] content - << "       
org.apache.catalina.core.ApplicationDispatcher.doForward(ApplicationDispatcher.java:398)<br>[\n]"
2007/12/02 16:46:32:093 IST [DEBUG] content - << "       
org.apache.catalina.core.ApplicationDispatcher.forward(ApplicationDispatcher.java:301)<br>[\n]"
2007/12/02 16:46:32:093 IST [DEBUG] content - << "       
com.reuters.rcom.filters.UrlFilter.doFilter(UrlFilter.java:119)<br>[\n]"
2007/12/02 16:46:32:093 IST [DEBUG] content - << "       
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:202)<br>[\n]"
2007/12/02 16:46:32:093 IST [DEBUG] content - << "       
org.apache.catalina"
2007/12/02 16:46:32:093 IST [DEBUG] content - <<
".core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173)<br>[\n]"
2007/12/02 16:46:32:093 IST [DEBUG] content - << "       
com.reuters.rcom.filters.CookiesManagementFilter.doFilter(CookiesManagementFilter.java:95)<br>[\n]"
2007/12/02 16:46:32:093 IST [DEBUG] content - << "       
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:202)<br>[\n]"
2007/12/02 16:46:32:093 IST [DEBUG] content - << "       
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173)<br>[\n]"
2007/12/02 16:46:32:093 IST [DEBUG] content - << "       
org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:213)<br>[\n]"
2007/12/02 16:46:32:093 IST [DEBUG] content - << "       
org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:178)<br>[\n]"
2007/12/02 16:46:32:093 IST [DEBUG] content - << "       
org.apache.catalina.core.Stand"
2007/12/02 16:46:34:406 IST [DEBUG] content - <<
"ardHostValve.invoke(StandardHostValve.java:126)<br>[\n]"
2007/12/02 16:46:34:406 IST [DEBUG] content - << "       
org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:105)<br>[\n]"
2007/12/02 16:46:34:406 IST [DEBUG] content - << "       
org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:107)<br>[\n]"
2007/12/02 16:46:34:406 IST [DEBUG] content - << "       
org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:148)<br>[\n]"
2007/12/02 16:46:34:406 IST [DEBUG] content - << "       
org.apache.jk.server.JkCoyoteHandler.invoke(JkCoyoteHandler.java:199)<br>[\n]"
2007/12/02 16:46:34:406 IST [DEBUG] content - << "       
org.apache.jk.common.HandlerRequest.invoke(HandlerRequest.java:282)<br>[\n]"
2007/12/02 16:46:34:406 IST [DEBUG] content - << "       
org.apache.jk.common.ChannelSocket.invoke(ChannelSocket.java:767)<br>[\n]"
2007/12/02 16:46:34:406 IST [DEBUG] content - << "       
org.apache.jk.common.ChannelSocket.processConnection(ChannelSocket.java:697)<br>[\n]"
2007/12/02 16:46:34:406 IST [DEBUG] content - << "       
org.apache.jk.common.ChannelSocket$SocketConnection.runIt(ChannelSocket.java:889)<br>[\n]"
2007/12/02 16:46:34:406 IST [DEBUG] content - << "       
org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:684)<br>[\n]"
2007/12/02 16:46:34:406 IST [DEBUG] content - << "       
java.lang.Thread.run(Thread.java:595)<br>[\n]"
2007/12/02 16:46:34:406 IST [DEBUG] content - << "        [\n]"
2007/12/02 16:46:34:406 IST [DEBUG] content - << "        -->[\n]"
2007/12/02 16:46:34:406 IST [DEBUG] content - << "    <!--[if !IE]>
&nbsp;|&nbsp;[\n]"
2007/12/02 16:46:34:406 IST [DEBUG] content - << "  sponsored by  #
<strong>Fidelity</strong> [\n]"
2007/12/02 16:46:34:406 IST [DEBUG] content - << "   <![endif]-->[\n]"
2007/12/02 16:46:34:406 IST [DEBUG] content - << "</div>[\n]"
2007/12/02 16:46:34:406 IST [DEBUG] content - << "</div>[\r][\n]"
2007/12/02 16:46:34:406 IST [DEBUG] content - << "  [0x9]You are
here:[\r][\n]"
2007/12/02 16:46:34:406 IST [DEBUG] content - << "  [\r][\n]"
2007/12/02 16:46:34:406 IST [DEBUG] content - << "     /home Home [\r][\n]"
2007/12/02 16:46:34:406 IST [DEBUG] content - << "    [\r][\n]"
2007/12/02 16:46:34:406 IST [DEBUG] content - << "      &gt;[\r][\n]"
2007/12/02 16:46:34:406 IST [DEBUG] content - << "       /business Business 
[\r][\n]"
2007/12/02 16:46:34:406 IST [DEBUG] content - << "      [\r][\n]"
2007/12/02 16:46:34:406 IST [DEBUG] content - << "      &gt;[\r][\n]"
2007/12/02 16:46:34:406 IST [DEBUG] content - << "       /business/banking
Banking & Financial  [\r][\n]"
2007/12/02 16:46:34:406 IST [DEBUG] content - << "      [\r][\n]"
2007/12/02 16:46:34:406 IST [DEBUG] content - << "      &gt;[\r][\n]"
2007/12/02 16:46:34:406 IST [DEBUG] content - << "      Article[\r][\n]"
2007/12/02 16:46:34:406 IST [DEBUG] content - << "</div>[\r][\n]"
2007/12/02 16:46:34:406 IST [DEBUG] content - << "<div
class="linebreak"></div>[\r][\n]"
2007/12/02 16:46:34:406 IST [DEBUG] content - << "<div
id="maincontent">[\n]"
2007/12/02 16:46:34:406 IST [DEBUG] content - << "[\n]"
2007/12/02 16:46:34:406 IST [DEBUG] content - << "<div
class="leftrail">[\n]"
2007/12/02 16:46:34:406 IST [DEBUG] content - << "    [\n]"
2007/12/02 16:46:34:406 IST [DEBUG] content - << "[\n]"
2007/12/02 16:46:34:406 IST [DEBUG] content - << "<div
class="navigation"><div class="navOff"> /home Home </div>[\n]"
2007/12/02 16:46:34:406 IST [DEBUG] content - << "        <div
class="navOn"> /business Business </div>[\n]"
2007/12/02 16:46:34:406 IST [DEBUG] content - << "        <div
class="subnavOn"> /business/banking Banking & Financial </div>[\n]"
2007/12/02 16:46:34:406 IST [DEBUG] content - << "                <div
class="subNav2"></div>[\n]"
2007/12/02 16:46:34:406 IST [DEBUG] content - << "            <div class="s"
2007/12/02 16:46:34:406 IST [DEBUG] content - << "[\r]"
2007/12/02 16:46:34:406 IST [DEBUG] content - << "[\n]"
2007/12/02 16:46:34:406 IST [DEBUG] content - << "1"
2007/12/02 16:46:34:406 IST [DEBUG] content - << "f"
2007/12/02 16:46:34:406 IST [DEBUG] content - << "f"
2007/12/02 16:46:34:406 IST [DEBUG] content - << "8"
2007/12/02 16:46:34:406 IST [DEBUG] content - << "[\r]"
2007/12/02 16:46:34:406 IST [DEBUG] content - << "[\n]"
2007/12/02 16:46:34:406 IST [DEBUG] content - << "ubnavOff">
/business/consumer Consumer Products & Retail </div>[\n]"
2007/12/02 16:46:34:406 IST [DEBUG] content - << "                <div
class="subnavOff"> /business/health Health </div>[\n]"
2007/12/02 16:46:34:406 IST [DEBUG] content - << "                <div
class="subnavOff"> /business/media Technology, Media & Telecom </div>[\n]"
2007/12/02 16:46:34:406 IST [DEBUG] content - << "                <div
class="subnavOff"> /business/transportation Transportation </div>[\n]"
2007/12/02 16:46:34:406 IST [DEBUG] content - << "                <div
class="subnavOff"> /business/industries Industries </div>[\n]"
2007/12/02 16:46:34:406 IST [DEBUG] content - << "                <div
class="subnavOff"> /business/summits Industry Summits </div>[\n]"
2007/12/02 16:46:34:406 IST [DEBUG] content - << "                <div
class="subnavOff"> http://today.reuters.com/business/companyprofiles.aspx
Companies </div>[\n]"
2007/12/02 16:46:34:406 IST [DEBUG] content - << "                <div
class="navOff"> /investing Investing </div>[\n]"
2007/12/02 16:46:34:406 IST [DEBUG] content - << "        <div
class="navOff"> /news News </div>[\n]"
2007/12/02 16:46:34:406 IST [DEBUG] content - << "        </div>[\n]"
2007/12/02 16:46:34:406 IST [DEBUG] content - << "[\n]"
2007/12/02 16:46:34:406 IST [DEBUG] content - << "<div>[\r][\n]"
2007/12/02 16:46:34:406 IST [DEBUG] content - << "[0x9]<script>[\n]"
2007/12/02 16:46:34:406 IST [DEBUG] content - << "  var adsrc =
'reuters.com.dart/business/topnews/bankingfinancial/article;' +
(typeof(seg)=='undefined'?'':seg) +
'type=125;sz=125x125;tile=5;articleID=USN2432828320070824;ord=' +
(typeof(tmstmp)!='undefined'?tmstmp:12345) + '?';[\n]"
2007/12/02 16:46:34:406 IST [DEBUG] content - << "</script>[\n]"
2007/12/02 16:46:34:406 IST [DEBUG] content - << "<div class="ad125"
id="advert_460343" onload="renderMask460343()">[\n]"
2007/12/02 16:46:34:406 IST [DEBUG] content - << "[0x9]<script
language="javascript" type="text/javascript">[\n]"
2007/12/02 16:46:34:406 IST [DEBUG] content - << "          [\n]"
2007/12/02 16:46:34:406 IST [DEBUG] content - << "          if (typeof
(hideAllAds) == 'undefined' || hideAllAds == false) {[\n]"
2007/12/02 16:46:34:406 IST [DEBUG] content - << "               
document.write('<scri' + 'pt language="javascript" type="text/javascript"
src="http://ad.doubleclick.net/adj/' + adsrc + '"></scri' + 'pt>');[\n]"
2007/12/02 16:46:34:406 IST [DEBUG] content - << "                if
((!document.images && navigator.userAgent.indexOf("Mozilla/2.") >= 0) ||
navigator.userAgent.indexOf("WebTV") >= 0) {[\n]"
2007/12/02 16:46:34:406 IST [DEBUG] content - << "                   
document.write('
http://ad.doubleclick.net/jump/reuters.com.dart/business/topnews/bankingfinancial/article;'
+ (typeof(seg)=='undefined'?'':seg) +
'type=125;sz=125x125;tile=5;articleID=USN2432828320070824;ord=' +
(typeof(tmstmp)=='undefined'?12345:tmstmp) + '? ');[\n]"
2007/12/02 16:46:34:406 IST [DEBUG] content - << "                   
document.write('
http://ad.doubleclick.net/ad/reuters.com.dart/business/topnews/bankingfinancial/article;'
+ (typeof(seg)=='undefined'?'':seg) +
'type=125;sz=125x125;tile=5;articleID=USN2432828320070824;ord=' + (t 
');[\n]"
2007/12/02 16:46:36:718 IST [DEBUG] content - << "                }[\n]"
2007/12/02 16:46:36:718 IST [DEBUG] content - << "          }[\n]"
2007/12/02 16:46:36:718 IST [DEBUG] content - << "        </script>[\n]"
2007/12/02 16:46:36:718 IST [DEBUG] content - << "        <noscript>[\n]"
2007/12/02 16:46:36:718 IST [DEBUG] content - << "          
http://ad.doubleclick.net/jump/reuters.com.dart/business/topnews/bankingfinancial/article;type=125;sz=125x125;tile=5;articleID=USN2432828320070824;ord=7989?
[\n]"
2007/12/02 16:46:36:718 IST [DEBUG] content - << "            
http://ad.doubleclick.net/ad/reuters.com.dart/business/topnews/bankingfinancial/article;type=125;sz=125x125;tile=5;articleID=USN2432828320070824;ord=7989?
[\n]"
2007/12/02 16:46:36:718 IST [DEBUG] content - << "           [\n]"
2007/12/02 16:46:36:718 IST [DEBUG] content - << "        </noscript>[\n]"
2007/12/02 16:46:36:718 IST [DEBUG] content - << "[\n]"
2007/12/02 16:46:36:718 IST [DEBUG] content - << "        <script>[\n]"
2007/12/02 16:46:36:718 IST [DEBUG] content - << "            if
(typeof(window.populateRaptAdSize) != 'undefined')[\n]"
2007/12/02 16:46:36:718 IST [DEBUG] content - << "               
populateRaptAdSize('type=125;sz=125x125;tile=5;');[\n]"
2007/12/02 16:46:36:718 IST [DEBUG] content - << "        </script>[\n]"
2007/12/02 16:46:36:718 IST [DEBUG] content - << "[\n]"
2007/12/02 16:46:36:718 IST [DEBUG] content - << "        </div>[\n]"
2007/12/02 16:46:36:718 IST [DEBUG] content - << "[\n]"
2007/12/02 16:46:36:718 IST [DEBUG] content - << "</div>[\r][\n]"
2007/12/02 16:46:36:718 IST [DEBUG] content - << "[\r][\n]"
2007/12/02 16:46:36:718 IST [DEBUG] content - << "<link
href="/resources/css/rcom-tertiary.css" rel="stylesheet" />[\r][\n]"
2007/12/02 16:46:36:718 IST [DEBUG] content - << "<div
class="Tnavigation">[\r][\n]"
2007/12/02 16:46:36:718 IST [DEBUG] content - << "[0x9]<div class="TnavOff">
/tools/domore Do More With Reuters </div>[\r][\n]"
2007/12/02 16:46:36:718 IST [DEBUG] content - << "[0x9]<div
class="TsubnavOff"> http://www.reuters.com/tools/rss RSS 
http://www.reuters.com/tools/rss  /resources/images/iconFeed.gif 
</div>[\r][\n]"
2007/12/02 16:46:36:718 IST [DEBUG] content - << "[0x9]<div
class="TsubnavOff"> http://today.reuters.com/mobile/default.aspx Mobile
</div>[\r][\n]"
2007/12/02 16:46:36:718 IST [DEBUG] content - << "[0x9]<div
class="TsubnavOff"> http://www.reuters.com/tools/podcasts/video Podcasts
</div>[\r][\n]"
2007/12/02 16:46:36:718 IST [DEBUG] content - << "[0x9]<div
class="TsubnavOff">
http://commerce.us.reuters.com/profile/pages/newsletter/begin.do Newsletters
</div>[\r][\n]"
2007/12/02 16:46:36:718 IST [DEBUG] content - << "[0x9]<div
class="TsubnavOff"> http://www.reuters.com/tools/myheadlines My Headlines
</div>[\r][\n]"
2007/12/02 16:46:36:718 IST [DEBUG] content - << "[0x9]<div
class="TsubnavOff"> http://www.reuters.com/youwitness You Witness News
</div>[\r][\n]"
2007/12/02 16:46:36:718 IST [DEBUG] content - << "[\r][\n]"
2007/12/02 16:46:36:718 IST [DEBUG] content - << "[0x9]<div
class="TnavOff">Partner Services</div>[\r][\n]"
2007/12/02 16:46:36:718 IST [DEBUG] content - << "[0x9]<div
class="TsubnavOff"> http://www.reuters.com/partners/careers CareerBuilder
</div>[\r][\n]"
2007/12/02 16:46:36:718 IST [DEBUG] content - << "    <div
class="TsubnavOff"> http://www.reuters.com/news/affiliatenetwork Affiliate
Network </div>[\r][\n]"
2007/12/02 16:46:36:718 IST [DEBUG] content - << "[0x9]<div class="TnavOff">
http://about.reuters.com/productinfo/index.aspx Professional Products
</div>[\r][\n]"
2007/12/02 16:46:36:718 IST [DEBUG] content - << "[0x9]<div
class="TsubnavOff"> http://about.reuters.com/productinfo/financial/
Financial </div>[\r][\n]"
2007/12/02 16:46:36:718 IST [DEBUG] content - << "[0x9]<div
class="TsubnavOff"> http://about.reuters.com/media/ Media </div>[\r][\n]"
2007/12/02 16:46:36:718 IST [DEBUG] content - << "[0x9]<div
class="TsubnavOff"> http://customers.reuters.com/landing/ Support (Customer
Zone) </div>[\r][\n]"
2007/12/02 16:46:36:718 IST [DEBUG] content - << "[0x9]<div class="TnavOff">
http://about.reuters.com/ About Reuters </div>[\r][\n]"
2007/12/02 16:46:36:718 IST [DEBUG] content - << "</div>[\r][\n]"
2007/12/02 16:46:36:718 IST [DEBUG] content - << "</div><!--[if !IE]>
leftrail <![endif]--><div class="content">[\n]"
2007/12/02 16:46:36:718 IST [DEBUG] content - << "[\n]"
2007/12/02 16:46:36:718 IST [DEBUG] content - << "    <div
class="contentBand" id="topContent">[\n]"
2007/12/02 16:46:36:718 IST [DEBUG] content - << "[\n]"
2007/12/02 16:46:36:718 IST [DEBUG] content - << "      </div>[\n]"
2007/12/02 16:46:36:718 IST [DEBUG] content - << "[\n]"
2007/12/02 16:46:36:718 IST [DEBUG] content - << "    <!--[if !IE]>
######################## BEGIN: Section  ########################
<![endif]-->[\n]"
2007/12/02 16:46:36:718 IST [DEBUG] content - << "[\n]"
2007/12/02 16:46:36:718 IST [DEBUG] content - << "<div
class="contentBand">[\n]"
2007/12/02 16:46:36:718 IST [DEBUG] content - << "[\n]"
2007/12/02 16:46:36:718 IST [DEBUG] content - << "[0x9]<div class="article
primaryContent">[\n]"
2007/12/02 16:46:36:718 IST [DEBUG] content - << "[\n]"
2007/12/02 16:46:36:718 IST [DEBUG] content - << "[0x9][0x9]<h1>Bear rivals
say courting prime broker clients</h1>[\r][\n]"
2007/12/02 16:46:36:718 IST [DEBUG] content - << "[0x9]<div
class="timestampHeader">Fri Aug 24, 2007 4:04pm EDT</div><div
id="headerTools">&nbsp;</div>[\r][\n]"
2007/12/02 16:46:36:718 IST [DEBUG] content - << "[0x9]<script
language="javascript">[\r][\n]"
2007/12/02 16:46:36:718 IST [DEBUG] content - << "[0x9][0x9]var
storyKeywords = "";[\r][\n]"
2007/12/02 16:46:36:718 IST [DEBUG] content - << "[0x9][0x9]var
RTR_ArticleTitle = "Bear rivals say courting prime broker clients";[\r][\n]"
2007/12/02 16:46:36:718 IST [DEBUG] content - << "[0x9][0x9]var
RTR_ArticleBlurb = "     By Dan Wilchins and Dane Hamilton      NEW YORK,
Aug 24 (Reuters) - Bear Stearns Cos Inc's (BSC.N: Quote, Profile, Research)
rivals are aggressively courting the investment bank's prime brokerage
customers, telling them it's too risky to stay...";[\r][\n]"
2007/12/02 16:46:36:718 IST [DEBUG] content - << "[0x9]</script>[\r][\n]"
2007/12/02 16:46:36:718 IST [DEBUG] content - << "[\r][\n]"
2007/12/02 16:46:36:718 IST [DEBUG] content - << "[\n]"
2007/12/02 16:46:36:718 IST [DEBUG] content - << "              <script
language="javascript">addImpression("460347_Article Tools");</script>[\n]"
2007/12/02 16:46:36:718 IST [DEBUG] content - << "      <script t"
2007/12/02 16:46:36:718 IST [DEBUG] content - <<
"ype="text/javascript">[\r][\n]"
2007/12/02 16:46:36:718 IST [DEBUG] content - << "[0x9]var showComments =
false;[\r][\n]"
2007/12/02 16:46:36:718 IST [DEBUG] content - << "[0x9][\r][\n]"
2007/12/02 16:46:36:718 IST [DEBUG] content - << "  [0x9]/** START SITELIFE
INTEGRATION **/[\r][\n]"
2007/12/02 16:46:36:718 IST [DEBUG] content - << "[0x9][0x9]var uniqueArtKey
= "USN2432828320070824";[\r][\n]"
2007/12/02 16:46:36:718 IST [DEBUG] content - << "[0x9][0x9]var articleUrl =
document.location.href.split("?")[0];[\r][\n]"
2007/12/02 16:46:36:718 IST [DEBUG] content - << "[0x9][0x9]var tempTitle =
unescape("Bear+rivals+say+courting+prime+broker+clients");[\r][\n]"
2007/12/02 16:46:36:718 IST [DEBUG] content - << "[0x9][0x9]tempTitle =
replaceString("+", " ", tempTitle);[\r][\n]"
2007/12/02 16:46:36:718 IST [DEBUG] content - << "[0x9][0x9]var articleTitle
= tempTitle;[\r][\n]"
2007/12/02 16:46:36:718 IST [DEBUG] content - << "[0x9][0x9]var
articleSection = "Main_US";[\r][\n]"
2007/12/02 16:46:36:718 IST [DEBUG] content - << "[0x9][0x9]var
articleCategories =
document.location.href.split("article/")[1].split("/")[0];[\r][\n]"
2007/12/02 16:46:36:718 IST [DEBUG] content - << "[0x9][0x9][\r][\n]"
2007/12/02 16:46:36:718 IST [DEBUG] content - << "[0x9][0x9][0x9]var
slArtPage = new SLSectionPage();[\r][\n]"
2007/12/02 16:46:36:718 IST [DEBUG] content - <<
"[0x9][0x9][0x9]slArtPage.varName = "slArtPage";[\r][\n]"
2007/12/02 16:46:36:718 IST [DEBUG] content - <<
"[0x9][0x9][0x9]slArtPage.base.varName = "slArtPage";[\r][\n]"
2007/12/02 16:46:36:718 IST [DEBUG] content - << "[0x9][0x9][\r][\n]"
2007/12/02 16:46:36:718 IST [DEBUG] content - << "[0x9][0x9]function s"
2007/12/02 16:46:39:031 IST [DEBUG] content - << "inglePageView() {[\r][\n]"
2007/12/02 16:46:39:031 IST [DEBUG] content - <<
"[0x9][0x9][0x9]document.location.href =
ReplaceQueryStringParam(document.location.href, "sp", "true");[\r][\n]"
2007/12/02 16:46:39:031 IST [DEBUG] content - << "[0x9][0x9]}[\r][\n]"
2007/12/02 16:46:39:031 IST [DEBUG] content - << "[\r][\n]"
2007/12/02 16:46:39:031 IST [DEBUG] content - << "[0x9][0x9]function
replaceString(oldS, newS, fullS) {[\r][\n]"
2007/12/02 16:46:39:031 IST [DEBUG] content - << "[0x9][0x9][0x9]// Replaces
oldS with newS in the string fullS[\r][\n]"
2007/12/02 16:46:39:031 IST [DEBUG] content - << "[0x9][0x9][0x9]for (var i
= 0; i < fullS.length; i++) {[\r][\n]"
2007/12/02 16:46:39:031 IST [DEBUG] content - << "[0x9][0x9][0x9][0x9]if
(fullS.substring(i, i + oldS.length) == oldS) {[\r][\n]"
2007/12/02 16:46:39:031 IST [DEBUG] content - << "[0x9][0x9][0x9][0x9][0x9]
fullS = fullS.substring(0, i) + newS + fullS.substring(i + oldS.length,
fullS.length);[\r][\n]"
2007/12/02 16:46:39:031 IST [DEBUG] content - <<
"[0x9][0x9][0x9][0x9]}[\r][\n]"
2007/12/02 16:46:39:031 IST [DEBUG] content - << "[0x9][0x9][0x9]}[\r][\n]"
2007/12/02 16:46:39:031 IST [DEBUG] content - << "[0x9][0x9][0x9]return
fullS;[\r][\n]"
2007/12/02 16:46:39:031 IST [DEBUG] content - << "[0x9][0x9]}[\r][\n]"
2007/12/02 16:46:39:031 IST [DEBUG] content - << "    </script>[\r][\n]"
2007/12/02 16:46:39:031 IST [DEBUG] content - << "[\r][\n]"
2007/12/02 16:46:39:031 IST [DEBUG] content - << "[0x9]<input
name="CurrentSize" id="CurrentSize" type="hidden" />[\r][\n]"
2007/12/02 16:46:39:031 IST [DEBUG] content - << "[\r][\n]"
2007/12/02 16:46:39:031 IST [DEBUG] content - << "[0x9]<div id="atools"
class="articleTools">[\r][\n]"
2007/12/02 16:46:39:031 IST [DEBUG] content - << "[\r][\n]"
2007/12/02 16:46:39:031 IST [DEBUG] content - << "[0x9]<script
language="javascript" src="/resources/js/shareStub.js"></script>[\r][\n]"
2007/12/02 16:46:39:031 IST [DEBUG] content - << "[0x9][0x9]<div
id="autilities" class="articleUtilities">[\r][\n]"
2007/12/02 16:46:39:031 IST [DEBUG] content - << "[0x9][0x9][0x9]
javascript:commonPopup('/do/emailArticle?articleId=USN2432828320070824',
540, 600, 1, 'emailPopup') Email  | 
/articlePrint?articleId=USN2432828320070824 Print  | <div id="shareLink"
onclick="tryShareOverlay()">Share</div> | 
javascript:commonPopup('http://license.icopyright.net/3.5398?icx_id=nN24328283&icx2_id=USN2432828320070824&section=bankingfinancial-SP',
580, 635, 1, 'purchasePopup') Reprints  |  javascript:singlePageView();
Single P"
2007/12/02 16:46:39:031 IST [DEBUG] content - << "[\r]"
2007/12/02 16:46:39:031 IST [DEBUG] content - << "[\n]"
2007/12/02 16:46:39:031 IST [DEBUG] content - << "1"
2007/12/02 16:46:39:031 IST [DEBUG] content - << "f"
2007/12/02 16:46:39:031 IST [DEBUG] content - << "f"
2007/12/02 16:46:39:031 IST [DEBUG] content - << "8"
2007/12/02 16:46:39:031 IST [DEBUG] content - << "[\r]"
2007/12/02 16:46:39:031 IST [DEBUG] content - << "[\n]"
2007/12/02 16:46:39:031 IST [DEBUG] content - << "age  | <script
type="text/javascript">slArtPage.addRecommendWidget(uniqueArtKey);</script>[\r][\n]"
2007/12/02 16:46:39:031 IST [DEBUG] content - << "</div>[\r][\n]"
2007/12/02 16:46:39:031 IST [DEBUG] content - << "[0x9]<div
class="articleTextSizerFull" id="textSizer">[\r][\n]"
2007/12/02 16:46:39:031 IST [DEBUG] content - << "[0x9][0x9][0x9][
javascript:sizeDown(); - ][\r][\n]"
2007/12/02 16:46:39:031 IST [DEBUG] content - << "[0x9][0x9][0x9]
javascript:resetCurrentsize(); Text [\r][\n]"
2007/12/02 16:46:39:031 IST [DEBUG] content - << "[0x9][0x9][0x9][
javascript:sizeUp(); + ][\r][\n]"
2007/12/02 16:46:39:031 IST [DEBUG] content - << "[0x9]</div>[\r][\n]"
2007/12/02 16:46:39:031 IST [DEBUG] content - << "[0x9]</div>[\r][\n]"
2007/12/02 16:46:39:031 IST [DEBUG] content - << "[0x9]<div
class="linebreak"></div>[\r][\n]"
2007/12/02 16:46:39:031 IST [DEBUG] content - << "[0x9][\n]"
2007/12/02 16:46:39:031 IST [DEBUG] content - << "      <div
id="resizeableText">[\r][\n]"
2007/12/02 16:46:39:031 IST [DEBUG] content - << "[\r][\n]"
2007/12/02 16:46:39:031 IST [DEBUG] content - << "[\r][\n]"
2007/12/02 16:46:39:031 IST [DEBUG] content - << "[0x9][0x9][\r][\n]"
2007/12/02 16:46:39:031 IST [DEBUG] content - << "[\r][\n]"
2007/12/02 16:46:39:031 IST [DEBUG] content - << "    <p></p>[\r][\n]"
2007/12/02 16:46:39:031 IST [DEBUG] content - << "    [\n]"
2007/12/02 16:46:39:031 IST [DEBUG] content - << "<p>    By Dan Wilchins and
Dane Hamilton </p>[\r][\n]"
2007/12/02 16:46:39:031 IST [DEBUG] content - << "    [\n]"
2007/12/02 16:46:39:031 IST [DEBUG] content - << "<p>    NEW YORK, Aug 24
(Reuters) - Bear Stearns Cos Inc's (BSC.N:  /stocks/quote?symbol=BSC.N Quote
,  /stocks/companyProfile?symbol=BSC.N Profile , 
/stocks/researchReports?symbol=BSC.N Research ) rivals are aggressively
courting the investment bank's prime brokerage customers, telling them it's
too risky to stay while the firm deals with fallout from the subprime
mortgage crisis. </p>[\r][\n]"
2007/12/02 16:46:39:031 IST [DEBUG] content - << "    [\n]"
2007/12/02 16:46:39:031 IST [DEBUG] content - << "<p>    Senior prime
brokerage officials with four major Bear rivals told Reuters they have been
winning over business from Bear Stearns, but several hedge fund managers
said they are giving just as much business to Bear as before, and one said
he has moved more toward Bear in recent weeks. </p>[\r][\n]"
2007/12/02 16:46:39:031 IST [DEBUG] content - << "    [\n]"
2007/12/02 16:46:39:031 IST [DEBUG] content - << "<p>    Bear Stearns
spokesman Russell Sherman says the firm continues to win business and its
client balances are up from a year ago. Bear is traditionally one of the top
three prime brokerages, which together control about two-thirds of the
market. </p>[\r][\n]"
2007/12/02 16:46:39:031 IST [DEBUG] content - << "    [\n]"
2007/12/02 16:46:39:031 IST [DEBUG] content - << "<p>    The stakes are
high, with the business generating at least $11 billion in revenue for banks
in 2006, according to Boston Consulting Group. </p>[\r][\n]"
2007/12/02 16:46:39:031 IST [DEBUG] content - << "    [\n]"
2007/12/02 16:46:39:031 IST [DEBUG] content - << "<p>    Prime brokers
perform services for hedge funds such as clearing trades, financing
positions and lending securities. They have scaled back credit to many hedge
funds as the subprime meltdown has wreaked havoc in stock and bond markets.
</p>[\r][\n]"
2007/12/02 16:46:39:031 IST [DEBUG] content - << "    [\n]"
2007/12/02 16:46:39:031 IST [DEBUG] content - << "<p>    Not all brokers
have been cutting credit equally. The prime brokers that have scaled back
the least -- often broadly diversified "universal" banks rather than
stand-alone investment banks -- are winning more business now. </p>[\r][\n]"
2007/12/02 16:46:39:031 IST [DEBUG] content - << "    [\n]"
2007/12/02 16:46:39:031 IST [DEBUG] content - << "<p>    "Institutions like
Citigroup (C.N:  /stocks/quote?symbol=C.N Quote , 
/stocks/companyProfile?symbol=C.N Profile , 
/stocks/researchReports?symbol=C.N Research ) are now reaping the benefits
of a large balance sheet and staying power," said Alice Hackett, co-head of
prime finance at the world's largest bank. Hackett declined to comment on
Bear Stearns. &nbsp; <strong> javascript:goToPage(2); Continued...
</strong></p>[\r][\n]"
2007/12/02 16:46:39:031 IST [DEBUG] content - << "  "
2007/12/02 16:46:41:343 IST [DEBUG] content - << "  <div
class="linebreak"></div>[\r][\n]"
2007/12/02 16:46:41:343 IST [DEBUG] content - << "[\r][\n]"
2007/12/02 16:46:41:343 IST [DEBUG] content - << "    <div
class="pageNavigation" style="margin-bottom: 10px;">[\r][\n]"
2007/12/02 16:46:41:343 IST [DEBUG] content - << "[\r][\n]"
2007/12/02 16:46:41:343 IST [DEBUG] content - << "      <div
style="float:left;"> javascript:singlePageView(); View article on single
page </div>[\r][\n]"
2007/12/02 16:46:41:343 IST [DEBUG] content - << "        <script>[\r][\n]"
2007/12/02 16:46:41:343 IST [DEBUG] content - << "          function
goToPage(num){[\r][\n]"
2007/12/02 16:46:41:343 IST [DEBUG] content - << "            var url =
document.location.href+"";[\r][\n]"
2007/12/02 16:46:41:343 IST [DEBUG] content - << "            var newurl =
url.replace(/#sl_CommentsInputAnchor/,"");[\r][\n]"
2007/12/02 16:46:41:343 IST [DEBUG] content - << "            var newNum =
'pageNumber='+num[\r][\n]"
2007/12/02 16:46:41:343 IST [DEBUG] content - << "            [\r][\n]"
2007/12/02 16:46:41:343 IST [DEBUG] content - << "                var sep =
(newurl.indexOf('?') >= 0) ? '&' : '?';[\r][\n]"
2007/12/02 16:46:41:343 IST [DEBUG] content - << "                newurl =
newurl + sep + 'pageNumber='+num;[\r][\n]"
2007/12/02 16:46:41:343 IST [DEBUG] content - << "            [\r][\n]"
2007/12/02 16:46:41:343 IST [DEBUG] content - << "[\r][\n]"
2007/12/02 16:46:41:343 IST [DEBUG] content - << "            //
vbc[\r][\n]"
2007/12/02 16:46:41:343 IST [DEBUG] content - << "            [\r][\n]"
2007/12/02 16:46:41:343 IST [DEBUG] content - << "                var sep =
(newurl.indexOf('?') >= 0) ? '&' : '?';[\r][\n]"
2007/12/02 16:46:41:343 IST [DEBUG] content - << "                newurl =
newurl + sep + 'virtualBrandChannel=0';[\r][\n]"
2007/12/02 16:46:41:343 IST [DEBUG] content - << "            [\r][\n]"
2007/12/02 16:46:41:343 IST [DEBUG] content - << "[\r][\n]"
2007/12/02 16:46:41:343 IST [DEBUG] content - << "           
document.location.href = newurl;[\r][\n]"
2007/12/02 16:46:41:343 IST [DEBUG] content - << "          }[\r][\n]"
2007/12/02 16:46:41:343 IST [DEBUG] content - << "          var numPages = 3
* 1;[\r][\n]"
2007/12/02 16:46:41:343 IST [DEBUG] content - << "          [\r][\n]"
2007/12/02 16:46:41:343 IST [DEBUG] content - << "          [0x9]var
currentPage = 1;[\r][\n]"
2007/12/02 16:46:41:343 IST [DEBUG] content - << "          [\r][\n]"
2007/12/02 16:46:41:343 IST [DEBUG] content - << "[\r][\n]"
2007/12/02 16:46:41:343 IST [DEBUG] content - << "          if(currentPage
!= 1){[\r][\n]"
2007/12/02 16:46:41:343 IST [DEBUG] content - << "           
document.write(' javascript:goToPage('+(currentPage-1)+'); Previous Page 
');[\r][\n]"
2007/12/02 16:46:41:343 IST [DEBUG] content - << "          } else
{[\r][\n]"
2007/12/02 16:46:41:343 IST [DEBUG] content - << "         
[0x9]document.write('Previous Page ');[\r][\n]"
2007/12/02 16:46:41:343 IST [DEBUG] content - << "          }[\r][\n]"
2007/12/02 16:46:41:343 IST [DEBUG] content - << "          for(var
i=1;i<=numPages;i++){[\r][\n]"
2007/12/02 16:46:41:343 IST [DEBUG] content - << "           
if(i==currentPage){[\r][\n]"
2007/12/02 16:46:41:343 IST [DEBUG] content - << "             
document.write('<strong>'+i+'</strong>');[\r][\n]"
2007/12/02 16:46:41:343 IST [DEBUG] content - << "           
}else{[\r][\n]"
2007/12/02 16:46:41:343 IST [DEBUG] content - << "             
document.write(' javascript:goToPage('+i+'); '+i+' ');[\r][\n]"
2007/12/02 16:46:41:343 IST [DEBUG] content - << "            }[\r][\n]"
2007/12/02 16:46:41:343 IST [DEBUG] content - << "            if (i <
numPages) {[\r][\n]"
2007/12/02 16:46:41:343 IST [DEBUG] content - << "           
[0x9]document.write(' | ');[\r][\n]"
2007/12/02 16:46:41:343 IST [DEBUG] content - << "            }[\r][\n]"
2007/12/02 16:46:41:343 IST [DEBUG] content - << "          }[\r][\n]"
2007/12/02 16:46:41:343 IST [DEBUG] content - << "          if(numPages !=
currentPage){[\r][\n]"
2007/12/02 16:46:41:343 IST [DEBUG] content - << "           
document.write('  javascript:goToPage('+(currentPage+1)+'); Next Page
');[\r][\n]"
2007/12/02 16:46:41:343 IST [DEBUG] content - << "          } else
{[\r][\n]"
2007/12/02 16:46:41:343 IST [DEBUG] content - << "         
[0x9]document.write(' Next Page');[\r][\n]"
2007/12/02 16:46:41:343 IST [DEBUG] content - << "          }[\r][\n]"
2007/12/02 16:46:41:343 IST [DEBUG] content - << "        </script>[\r][\n]"
2007/12/02 16:46:41:343 IST [DEBUG] content - << "        </div>[\r][\n]"
2007/12/02 16:46:41:343 IST [DEBUG] content - <<
"[0x9][0x9][0x9]</div>[\r][\n]"
2007/12/02 16:46:41:343 IST [DEBUG] content - << "[\r][\n]"
2007/12/02 16:46:41:343 IST [DEBUG] content - << "[0x9][0x9][0x9][\n]"
2007/12/02 16:46:41:343 IST [DEBUG] content - << "              <script
language="javascript">addImpression("1390430_Share Links");</script>[\n]"
2007/12/02 16:46:41:343 IST [DEBUG] content - << "      <div>[\r][\n]"
2007/12/02 16:46:41:343 IST [DEBUG] content - << "[0x9]<div class="NONE"
style="margin-bottom: 0px;">[\n]"
2007/12/02 16:46:41:343 IST [DEBUG] content - << "    <!-- BEGIN:: Shared
Module id=36615 -->[\r][\n]"
2007/12/02 16:46:41:343 IST [DEBUG] content - << "[0x9][0x9]<div><script
language="javascript" src="/resources/js/shareStub.js"></script>[\n]"
2007/12/02 16:46:41:343 IST [DEBUG] content - << "[0x9]<div
id="shareFooter">[\n]"
2007/12/02 16:46:41:343 IST [DEBUG] content - << "[0x9][0x9]<div
class="dividerInlineH">&nbsp;</div>[\n]"
2007/12/02 16:46:41:343 IST [DEBUG] content - <<
"[0x9][0x9]<h3>Share:</h3>[\n]"
2007/12/02 16:46:41:343 IST [DEBUG] content - << "[0x9][0x9]<div
id="shfDelicious"> javascript:shareDelicious(); Del.icio.us </div>[\n]"
2007/12/02 16:46:41:343 IST [DEBUG] content - << "[0x9][0x9]<div
id="shfDigg"> javascript:shareDigg(); Digg </div>[\n]"
2007/12/02 16:46:41:343 IST [DEBUG] content - << "[0x9][0x9]<div
id="shfMixx"> javascript:shareMixx(); Mixx </div>[\n]"
2007/12/02 16:46:41:343 IST [DEBUG] content - << "[0x9][0x9]<div
id="shfYahoo"> javascript:shareYahoo(); My Web </div>[\n]"
2007/12/02 16:46:41:343 IST [DEBUG] content - << "[0x9][0x9]<div
id="shfFacebook"> javascript:shareFacebook(); Facebook </div>[\n]"
2007/12/02 16:46:41:343 IST [DEBUG] content - << "[0x9][0x9]<div
id="shfNewsvine"> javascript:shareNewsvine(); Newsvine </div>[\n]"
2007/12/02 16:46:41:343 IST [DEBUG] content - << "[0x9]</div></div>[\n]"
2007/12/02 16:46:41:343 IST [DEBUG] content - << "[\n]"
2007/12/02 16:46:41:343 IST [DEBUG] content - << "<!-- END:: Shared Module
id=36615 -->[\r][\n]"
2007/12/02 16:46:41:343 IST [DEBUG] content - << "[0x9]</div>[\n]"
2007/12/02 16:46:41:343 IST [DEBUG] content - << "  </div>[\r][\n]"
2007/12/02 16:46:41:343 IST [DEBUG] content - << "[\r][\n]"
2007/12/02 16:46:41:343 IST [DEBUG] content - << "<div><script
language="javascript"
src="/resources/js/timelineStub.js"></script></div>[\n]"
2007/12/02 16:46:41:343 IST [DEBUG] content - << "              <script
language="javascript">addImpression("460349_Next Article");</script>[\n]"
2007/12/02 16:46:41:343 IST [DEBUG] content - << "      <div
class="linebreak">&nbsp;</div>[\r][\n]"
2007/12/02 16:46:41:343 IST [DEBUG] content - << "[0x9][\n]"
2007/12/02 16:46:41:343 IST [DEBUG] content - << "      <div><div
style="height: 7px"></div></div>[\n]"
2007/12/02 16:46:41:343 IST [DEBUG] content - << "              <script
language="javascript">addImpression("460351_Channel News");</script>[\n]"
2007/12/02 16:46:41:343 IST [DEBUG] content - << "      <div>[\r][\n]"
2007/12/02 16:46:41:343 IST [DEBUG] content - << "[0x9]<div class="NONE"
style="margin-bottom: 0px;">[\n]"
2007/12/02 16:46:41:343 IST [DEBUG] content - << "    <!-- url= /business
-->[\n]"
2007/12/02 16:46:41:343 IST [DEBUG] content - <<
"[0x9][0x9][0x9][0x9][0x9][0x9]<!-- url= /business/banking -->[\n]"
2007/12/02 16:46:41:343 IST [DEBUG] content - <<
"[0x9][0x9][0x9][0x9][0x9][0x9]<!-- url=  -->[\n]"
2007/12/02 16:46:41:343 IST [DEBUG] content - <<
"[0x9][0x9][0x9][0x9][0x9][0x9]<div class="module">[\n]"
2007/12/02 16:46:41:343 IST [DEBUG] content - << "[0x9]<div
class="moduleHeaderInline">[\n]"
2007/12/02 16:46:41:343 IST [DEBUG] content - << "[0x9][0x9]<h3>[\n]"
2007/12/02 16:46:41:343 IST [DEBUG] content - << "[0x9][0x9]
/business/banking More Banking and Financial News [\n]"
2007/12/02 16:46:41:343 IST [DEBUG] content - << "    </h3>[\n]"
2007/12/02 16:46:41:343 IST [DEBUG] content - << "  </div>[\n]"
2007/12/02 16:46:41:343 IST [DEBUG] content - << "  <div cl"
2007/12/02 16:46:41:343 IST [DEBUG] content - << "ass="moduleBody">[\n]"
2007/12/02 16:46:41:343 IST [DEBUG] content - << "[0x9][0x9]<div
class="headlineMed">[\n]"
2007/12/02 16:46:41:343 IST [DEBUG] content - << "[0x9][0x9][0x9][0x9]
/article/bankingfinancial-SP/idUSN3031539920071130 Morgan Stanley may write
off more after Cruz ouster [\n]"
2007/12/02 16:46:41:343 IST [DEBUG] content - << "[\n]"
2007/12/02 16:46:41:343 IST [DEBUG] content - << "[0x9][0x9][0x9]</div>[\n]"
2007/12/02 16:46:41:343 IST [DEBUG] content - << "[0x9][0x9]<div
class="headlineMed">[\n]"
2007/12/02 16:46:41:343 IST [DEBUG] content - << "[0x9][0x9][0x9][0x9]
/article/bankingfinancial-SP/idUSL3021711220071130 Flowers May Revise N.Rock
Bid, But Could Walk Away [\n]"
2007/12/02 16:46:41:343 IST [DEBUG] content - << "[\n]"
2007/12/02 16:46:41:343 IST [DEBUG] content - << "[0x9][0x9][0x9]</div>[\n]"
2007/12/02 16:46:41:343 IST [DEBUG] content - << "[0x9][0x9]<div
class="headlineMed">[\n]"
2007/12/02 16:46:41:343 IST [DEBUG] content - << "[0x9][0x9][0x9][0x9]
/article/bankingfinancial-SP/idUSN3031225220071130 NY Pension Funds to Lead
Countrywide Plaintiffs [\n]"
2007/12/02 16:46:41:343 IST [DEBUG] content - << "[\n]"
2007/12/02 16:46:41:343 IST [DEBUG] content - << "[0x9][0x9][0x9]</div>[\n]"
2007/12/02 16:46:41:343 IST [DEBUG] content - << "[0x9][0x9]<div
class="headline"
2007/12/02 16:46:43:656 IST [DEBUG] content - << "Med">[\n]"
2007/12/02 16:46:43:656 IST [DEBUG] content - << "[0x9][0x9][0x9][0x9]
/article/bankingfinancial-SP/idUSN3028854120071130 RBC Upbeat About U.S.
Future, Despite Q4 Impact [\n]"
2007/12/02 16:46:43:656 IST [DEBUG] content - << "[\n]"
2007/12/02 16:46:43:656 IST [DEBUG] content - << "[0x9][0x9][0x9]</div>[\n]"
2007/12/02 16:46:43:656 IST [DEBUG] content - << "[0x9][0x9]<div
class="headlineMed"> /business/banking More&nbsp;Banking and
Financial&nbsp;News... </div></div>[\n]"
2007/12/02 16:46:43:656 IST [DEBUG] content - << "</div>[\n]"
2007/12/02 16:46:43:656 IST [DEBUG] content - << "[\n]"
2007/12/02 16:46:43:656 IST [DEBUG] content - << "</div>[\n]"
2007/12/02 16:46:43:656 IST [DEBUG] content - << "  </div>[\r][\n]"
2007/12/02 16:46:43:656 IST [DEBUG] content - << "[\r][\n]"
2007/12/02 16:46:43:656 IST [DEBUG] content - << "[\n]"
2007/12/02 16:46:43:656 IST [DEBUG] content - << "      <div><div
style="height: 10px"></div></div><div>[\r][\n]"
2007/12/02 16:46:43:656 IST [DEBUG] content - << "[0x9]<div class="NONE"
style="margin-bottom: 0px;">[\n]"
2007/12/02 16:46:43:656 IST [DEBUG] content - << "    <script
type="text/javascript">[\n]"
2007/12/02 16:46:43:656 IST [DEBUG] content - << "[0x9]var
BLOGBURST_WIDGET_ID = "B7gSUbux1hpbz8uOa7TWsLnV";[\n]"
2007/12/02 16:46:43:656 IST [DEBUG] content - << "[0x9]var
BLOGBURST_TRACKING_CODE = "";[\n]"
2007/12/02 16:46:43:656 IST [DEBUG] content - << "</script>[\n]"
2007/12/02 16:46:43:656 IST [DEBUG] content - << "<script
type="text/javascript"
src="http://api.blogburst.com/v1.0/WidgetDeliveryProxy.js"></script></div>[\n]"
2007/12/02 16:46:43:656 IST [DEBUG] content - << "  </div>[\r][\n]"
2007/12/02 16:46:43:656 IST [DEBUG] content - << "[\r][\n]"
2007/12/02 16:46:43:656 IST [DEBUG] content - << "<div><div style="height:
20px"></div></div><div><div id="sphereFooter"></div></div><div><di"
2007/12/02 16:46:43:656 IST [DEBUG] content - << "[\r]"
2007/12/02 16:46:43:656 IST [DEBUG] content - << "[\n]"
2007/12/02 16:46:43:656 IST [DEBUG] content - << "1"
2007/12/02 16:46:43:656 IST [DEBUG] content - << "f"
2007/12/02 16:46:43:656 IST [DEBUG] content - << "f"
2007/12/02 16:46:43:656 IST [DEBUG] content - << "8"
2007/12/02 16:46:43:656 IST [DEBUG] content - << "[\r]"
2007/12/02 16:46:43:656 IST [DEBUG] content - << "[\n]"
2007/12/02 16:46:43:656 IST [DEBUG] content - << "v style="height:
20px"></div></div><div>[\r][\n]"
2007/12/02 16:46:43:656 IST [DEBUG] content - << "[0x9]<div class="NONE"
style="margin-bottom: 0px;">[\n]"
2007/12/02 16:46:43:656 IST [DEBUG] content - << "    <!--[if !IE]> begin
CMS unit <![endif]--><script
language="javascript">addImpression("B120107_1412_ALSO");</script><style
type="text/css">#upsell3 { margin-right: 0px; } .upsellImage { height: 77px;
overflow: hidden; margin-bottom: 3px; } .upsellImage img { border: none;
margin: 0px; }  .upsellThumbnail { width: 148px; margin-right: 18px;
font-size: 11px;  } .upsellImage { width: 148px; height: 82px; }
div.articleText div.upsellThumbnail, div.articleText div.upsellImage {
width: 138px; } div.articleText div.upsellThumbnail { margin-right: 10px; }
.upsellThumbnail .mediatype { font-weight: bold; }</style><div
class="module"><div class="moduleHeaderInline"><h3>ALSO ON
REUTERS</h3></div><div class="moduleBody"><div id="upsell1"
class="upsellThumbnail"><div class="upsellImage">
http://www.reuters.com/news/video?videoId=71887&videoChannel=2 
http://thumbstv.reuters.com/t_assets/20071201/WAO1195046219878.jpg  </div>
http://www.reuters.com/news/video?videoId=71887&videoChannel=2 Video: Rare
species born in captivity </div><div id="upsell2"
class="upsellThumbnail"><div class="upsellImage">
javascript:commonPopup('http://www.reuters.com/news/pictures/slideshow?collectionId=1351&galleryName=All%20Collections&start=7',920,585,3,'reutersSlideshow'); 
http://i.today.reuters.com/pictures/galleries/Stories/633319762349843750/XLargeThumbnails/07_RTR1BT0K.jpg 
</div>
javascript:commonPopup('http://www.reuters.com/news/pictures/slideshow?collectionId=1351&galleryName=All%20Collections&start=7',920,585,3,'reutersSlideshow');
Slideshow: Living with HIV/AIDS </div><div id="upsell3"
class="upsellThumbnail"><div class="upsellImage">
http://www.reuters.com/news/video?videoId=71668&videoChannel=74 
http://thumbstv.reuters.com/t_assets/20071128/ftpo1195054780401.jpg  </div>
http://www.reuters.com/news/video?videoId=71668&videoChannel=74 Video: Baby
condors will be freed into wild </div></div></div><!--[if !IE]> end CMS unit
<![endif]--></div>[\n]"
2007/12/02 16:46:43:656 IST [DEBUG] content - << "  </div>[\r][\n]"
2007/12/02 16:46:43:656 IST [DEBUG] content - << "[\r][\n]"
2007/12/02 16:46:43:656 IST [DEBUG] content - << "<div>[\r][\n]"
2007/12/02 16:46:43:656 IST [DEBUG] content - << "[0x9]<div class="NONE"
style="margin-bottom: 0px;">[\n]"
2007/12/02 16:46:43:656 IST [DEBUG] content - << "    <div class="linebreak"
style="height: 18px;"></div></div>[\n]"
2007/12/02 16:46:43:656 IST [DEBUG] content - << "  </div>[\r][\n]"
2007/12/02 16:46:43:656 IST [DEBUG] content - << "[\r][\n]"
2007/12/02 16:46:43:656 IST [DEBUG] content - << "<!-- BEGIN:: Broker Center
Advert Module -->[\r][\n]"
2007/12/02 16:46:43:656 IST [DEBUG] content - << "<div>[\r][\n]"
2007/12/02 16:46:43:656 IST [DEBUG] content - << "[0x9]</div>[\r][\n]"
2007/12/02 16:46:43:656 IST [DEBUG] content - << "[\r][\n]"
2007/12/02 16:46:43:656 IST [DEBUG] content - << "<!-- END:: Broker Center
Advert Module -->[\r][\n]"
2007/12/02 16:46:43:656 IST [DEBUG] content - << "<div>[\r][\n]"
2007/12/02 16:46:43:656 IST [DEBUG] content - << "[0x9]<link
href="/resources/css/rcom-textad.css" rel="stylesheet" />[\n]"
2007/12/02 16:46:43:656 IST [DEBUG] content - << "<div class="ad"
id="googleAd">[\n]"
2007/12/02 16:46:43:656 IST [DEBUG] content - << "<script
language="javascript" src="/resources/js/googleAd.js"></script>[\n]"
2007/12/02 16:46:43:656 IST [DEBUG] content - << "<script
language="javascript">[\n]"
2007/12/02 16:46:43:656 IST [DEBUG] content - << "<!--[\n]"
2007/12/02 16:46:43:656 IST [DEBUG] content - << "[\n]"
2007/12/02 16:46:43:656 IST [DEBUG] content - << "google_ad_client =
'ca-reuters_js';[\n]"
2007/12/02 16:46:43:656 IST [DEBUG] content - << "google_ad_output =
'js';[\n]"
2007/12/02 16:46:43:656 IST [DEBUG] content - << "google_max_num_ads =
4;[\n]"
2007/12/02 16:46:43:656 IST [DEBUG] content - << "google_safe = 'high';[\n]"
2007/12/02 16:46:43:656 IST [DEBUG] content - << "google_feedback =
'on';[\n]"
2007/12/02 16:46:43:656 IST [DEBUG] content - << "google_ad_type =
'text';[\n]"
2007/12/02 16:46:43:656 IST [DEBUG] content - << "google_color_line =
'ff0000';[\n]"
2007/12/02 16:46:43:656 IST [DEBUG] content - << "google_encoding =
'utf8';[\n]"
2007/12/02 16:46:43:656 IST [DEBUG] content - << "google_language='en';[\n]"
2007/12/02 16:46:43:656 IST [DEBUG] content - << "google_ad_channel =
'us__article';[\n]"
2007/12/02 16:46:43:656 IST [DEBUG] content - << "if ((typeof (hideAllAds)
== 'undefined' || hideAllAds == false) &&[\r][\n]"
2007/12/02 16:46:43:656 IST [DEBUG] content - << "[0x9](typeof
(hideGoogleAds) == 'undefined' || hideGoogleAds == false)) {[\n]"
2007/12/02 16:46:43:656 IST [DEBUG] content - << "  document.write('<scr' +
'ipt language="javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js"></scr' +
'ipt>');[\n]"
2007/12/02 16:46:43:656 IST [DEBUG] content - << "}[\n]"
2007/12/02 16:46:43:656 IST [DEBUG] content - << "-->[\n]"
2007/12/02 16:46:43:656 IST [DEBUG] content - << "</script>[\n]"
2007/12/02 16:46:43:656 IST [DEBUG] content - << "</div>[\n]"
2007/12/02 16:46:43:656 IST [DEBUG] content - << "[\n]"
2007/12/02 16:46:43:656 IST [DEBUG] content - << "<div "
2007/12/02 16:46:44:265 IST [DEBUG] content - <<
"class="linebreak"></div>[\r][\n]"
2007/12/02 16:46:44:265 IST [DEBUG] content - << "        </div>[\r][\n]"
2007/12/02 16:46:44:265 IST [DEBUG] content - << "[\r][\n]"
2007/12/02 16:46:44:265 IST [DEBUG] content - << "</div>[\n]"
2007/12/02 16:46:44:265 IST [DEBUG] content - << "[\n]"
2007/12/02 16:46:44:265 IST [DEBUG] content - << "[0x9]<div id="inlineRail"
class="
2007/12/02 16:46:45:156 IST [DEBUG] content - << ""primaryInlineRail">[\n]"
2007/12/02 16:46:45:156 IST [DEBUG] content - << "[0x9][0x9]<div
class="inlineRelatedContent">[\n]"
2007/12/02 16:46:45:156 IST [DEBUG] content - << "[\n]"
2007/12/02 16:46:45:156 IST [DEBUG] content - << "[0x9][0x9][\n]"
2007/12/02 16:46:45:156 IST [DEBUG] content - << "              <script
language="javascript">addImpression("460358_Related Video");</script>[\n]"
2007/12/02 16:46:45:156 IST [DEBUG] content - << "      [\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - << "      <div><div
id="sphereSideVideo"></div></div>[\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - << "              <script
language="javascript">addImpression("460359_Related News");</script>[\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - << "      [\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - << "      <div><div
id="sphereSideNews"></div>[\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - << "<div
id="sphereSideAttribution" class="hidden" style="margin-bottom: 16px;"><div
class="dividerInlineH">&nbsp;</div>powered by 
/resources/images/iconSphere.gif  Sphere</div></div>[\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - << "              <script
language="javascript">addImpression("460360_Market News");</script>[\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - << "      <div>[\r][\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - << "[0x9]<div
class="NONE">[\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - << "[\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - << "[0x9]<div
class="module">[\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - << "[0x9][0x9]<div
class="moduleHeader">[\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - << "                   
<h3>[\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - << "                    
/investing/news Market News [\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - << "                   
</h3>[\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - << "                   
</div>[\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - << "[0x9][0x9][0x9][0x9]<div
class="moduleBody">[\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - << "[0x9][0x9]<div
class="headlineMed">[\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - << "[0x9][0x9][0x9][0x9]
/article/hotStocksNews/idUSN3031981520071201 Stocks' recovery turns on
subprime plan [\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - << "[\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - <<
"[0x9][0x9][0x9][0x9]</div>[\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - << "[0x9][0x9]<div
class="headlineMed">[\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - << "[0x9][0x9][0x9][0x9]
/article/hotStocksNews/idUSL235606420071130 Dow, S&P 500 gain on housing
plan as Nasdaq dips [\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - << "&nbsp;&nbsp;|&nbsp;&nbsp;
/news/video?videoId=71761&newsChannel=hotStocksNews Video [\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - << "[\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - <<
"[0x9][0x9][0x9][0x9]</div>[\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - << "[0x9][0x9]<div
class="headlineMed">[\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - << "[0x9][0x9][0x9][0x9]
/article/hotStocksNews/idUSN2061536920071130 Dollar rallies on month-end
deals as yen stumbles [\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - << "[\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - <<
"[0x9][0x9][0x9][0x9]</div>[\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - << "[0x9][0x9]<div
class="headlineMed">[\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - << "[0x9][0x9][0x9][0x9]
/investing/news [\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - <<
"[0x9][0x9][0x9][0x9][0x9]More Business & Investing News... [\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - << "[0x9][0x9][0x9]</div>[\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - << "[0x9][0x9]</div>[\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - << "[0x9][0x9]</div>[\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - << "[\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - << "</div>[\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - << "[\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - << "</div>[\r][\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - << "[\r][\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - << "[\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - << "      <!-- BEGIN:: Broker
Center Advert Module -->[\r][\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - << "<div>[\r][\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - << "[0x9]<div
class="adButtonBox articlePos">[\r][\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - << "[\r][\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - << "            <div
class="adButtonBoxHeader">[\r][\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - << "               
<h3>Featured Broker sponsored link</h3>[\r][\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - << "           
</div>[\r][\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - << "[\r][\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - << "            <div
class="adButtonModule first">[\r][\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - << "               
<div>[\r][\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - << "[0x9]<script>[\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - << "  var adsrc =
'reuters.com.dart/business/topnews/bankingfinancial/article;' +
(typeof(seg)=='undefined'?'':seg) +
'type=featured_broker;sz=170x40;articleID=USN2432828320070824;ord=' +
(typeof(tmstmp)!='undefined'?tmstmp:12345) + '?';[\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - << "</script>[\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - << "<div class="ad"
id="advert_479746" onload="renderMask479746()">[\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - << "[0x9]<script
language="javascript" type="text/javascript">[\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - << "          [\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - << "          if (typeof
(hideAllAds) == 'undefined' || hideAllAds == false) {[\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - << "               
document.write('<scri' + 'pt language="javascript" type="text/javascript"
src="http://ad.doubleclick.net/adj/' + adsrc + '"></scri' + 'pt>');[\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - << "                if
((!document.images && navigator.userAgent.indexOf("Mozilla/2.") >= 0) ||
navigator.userAgent.indexOf("WebTV") >= 0) {[\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - << "                   
document.write('
http://ad.doubleclick.net/jump/reuters.com.dart/business/topnews/bankingfinancial/article;'
+ (typeof(seg)=='undefined'?'':seg) +
'type=featured_broker;sz=170x40;articleID=USN2432828320070824;ord=' +
(typeof(tmstmp)=='undefined'?12345:tmstmp) + '? ');[\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - << "                   
document.write('
http://ad.doubleclick.net/ad/reuters.com.dart/business/topnews/bankingfinancial/article;'
+ (typeof(seg)=='undefined'?'':seg) +
'type=featured_broker;sz=170x40;articleID=USN2432828320070824;ord=' +
(typeof(tmst  ');[\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - << "                }[\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - << "          }[\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - << "        </script>[\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - << "        <noscript>[\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - << "          
http://ad.doubleclick.net/jump/reuters.com.dart/business/topnews/bankingfinancial/article;type=featured_broker;sz=170x40;articleID=USN2432828320070824;ord=7989?
[\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - << "            
http://ad.doubleclick.net/ad/reuters.com.dart/business/topnews/bankingfinancial/article;type=featured_broker;sz=170x40;articleID=USN2432828320070824;ord=7989?
[\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - << "           [\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - << "        </noscript>[\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - << "[\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - << "        <script>[\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - << "            if
(typeof(window.populateRaptAdSize) != 'undefined')[\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - << "               
populateRaptAdSize('type=featu"
2007/12/02 16:46:45:171 IST [DEBUG] content - << "[\r]"
2007/12/02 16:46:45:171 IST [DEBUG] content - << "[\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - << "1"
2007/12/02 16:46:45:171 IST [DEBUG] content - << "f"
2007/12/02 16:46:45:171 IST [DEBUG] content - << "f"
2007/12/02 16:46:45:171 IST [DEBUG] content - << "8"
2007/12/02 16:46:45:171 IST [DEBUG] content - << "[\r]"
2007/12/02 16:46:45:171 IST [DEBUG] content - << "[\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - <<
"red_broker;sz=170x40;');[\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - << "        </script>[\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - << "[\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - << "        </div>[\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - << "[\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - << "</div>[\r][\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - << "[\r][\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - << "</div>[\r][\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - << "            <div
class="adButtonModule">[\r][\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - << "               
</div>[\r][\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - << "            <div
class="adButtonModule adRow">[\r][\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - << "               
</div>[\r][\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - << "            <div
class="adButtonModule last">[\r][\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - << "               
</div>[\r][\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - << "        </div>[\r][\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - << "    </div>[\r][\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - << "[\r][\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - << "<!-- END:: Broker Center
Advert Module -->[\r][\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - << "</div>[\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - << "[0x9]</div>[\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - << "[\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - << "<script
language="javascript">[\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - << "[0x9]if
(document.getElementById) {[\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - << "[0x9][0x9]if
(document.getElementById("inlineRail").innerHTML.length > 55) {[\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - << "[0x9][0x9][0x9]var
tempInlineRail = document.getElementById("inlineRail").innerHTML;[\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - <<
"[0x9][0x9][0x9]document.getElementById("inlineRail").innerHTML = '';[\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - <<
"[0x9][0x9][0x9]document.getElementById("midArticle_start").innerHTML =
tempInlineRail;[\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - << "[0x9][0x9]}[\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - << "[0x9]}[\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - << "[0x9]if
(typeof(window['intSlideshowPosition']) != "undefined") {[\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - <<
"[0x9][0x9]initSlideshow();[\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - << "[0x9]}[\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - << "</script>[\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - << "[\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - << "[0x9]<div
class="secondaryContent">[\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - << "[\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - << "[0x9][0x9]<script
language="javascript">[\r][\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - << "[\r][\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - << "[0x9]document.write('<link
href="/resources/css/rcom-tabs.css" rel="stylesheet" />');[\r][\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - << "[0x9][\r][\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - << "[\r][\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - << "[0x9]function buttonMenu()
{[\r][\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - << "[0x9][0x9]return
false;[\r][\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - << "[0x9]}[\r][\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - << "[0x9]function
getAdditionalHoverEvents(strAdditionalHoverEvents) {[\r][\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - << "[0x9][0x9]var
arrTabsWithHoverEvents = strAdditionalHoverEvents.split(",");[\r][\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - << "[0x9][0x9]return
arrTabsWithHoverEvents;[\r][\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - << "[0x9]}[\r][\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - << "[0x9]function
getAdditionalClickEvents(strAdditionalClickEvents) {[\r][\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - << "[0x9][0x9]var
arrTabsWithClickEvents = strAdditionalClickEvents.split(",");[\r][\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - << "[0x9][0x9]return
arrTabsWithClickEvents;[\r][\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - << "[0x9]}[\r][\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - << "[0x9]function
buttonPush_editorsChoice(e) {[\r][\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - << "[0x9][0x9]if (!e) var e =
window.event;[\r][\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - << "[0x9][0x9]if (e.button !=
2) {[\r][\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - <<
"[0x9][0x9][0x9]clearAll_editorsChoice()[\r][\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - <<
"[0x9][0x9][0x9]document.getElementById(this.id).className =
"current";[\r][\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - <<
"[0x9][0x9][0x9]document.getElementById(this.id).blur();[\r][\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - << "[0x9][0x9][0x9]var i =
this.id.split("_")[1];[\r][\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - <<
"[0x9][0x9][0x9]document.getElementById(arrTabTargets_editorsChoice[i]).className
= "";[\r][\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - << "[0x9][0x9]}[\r][\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - << "[0x9]}[\r][\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - << "[0x9]function
clearAll_editorsChoice() {[\r][\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - << "[0x9][0x9]for (i=0;
i<arrTabNames_editorsChoice.length; i++) {[\r][\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - <<
"[0x9][0x9][0x9]document.getElementById("editorsChoice_" + i).className =
"";[\r][\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - <<
"[0x9][0x9][0x9]document.getElementById(arrTabTargets_editorsChoice[i]).className
= "hidden";[\r][\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - << "[0x9][0x9]}[\r][\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - << "[0x9]}[\r][\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - << "  function
drawTabs_editorsChoice() {[\r][\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - << "[0x9][0x9]for (i=0;
i<arrTabNames_editorsChoice.length; i++) {[\r][\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - <<
"[0x9][0x9][0x9]document.write('<li id="editorsChoice_' + i + '">' +
arrTabNames_editorsChoice[i] + '</li>');[\r][\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - << "[0x9][0x9]}[\r][\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - << "[\r][\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - << "[0x9][0x9]for (i=0;
i<arrTabNames_editorsChoice.length; i++) {[\r][\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - <<
"[0x9][0x9][0x9]document.getElementById("editorsChoice_" + i).onclick =
buttonPush_editorsChoice;[\r][\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - << "[0x9][0x9]}[\r][\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - << "[\r][\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - << "[0x9][0x9]for (i=0;
i<arrTabNames_editorsChoice.length; i++) {[\r][\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - << "[0x9][0x9][0x9][\r][\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - << "[0x9][0x9]}[\r][\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - << "[0x9][0x9]for (i=0;
i<arrTabNames_editorsChoice.length; i++) {[\r][\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - << "[0x9][0x9][0x9][\r][\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - << "[0x9][0x9]}[\r][\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - << "[\r][\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - <<
"[0x9][0x9]document.getElementById("editorsChoice_0").className =
"current";[\r][\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - <<
"[0x9][0x9]document.getElementById("editorsChoice_0").style.cssText =
"position:relative;";[\r][\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - << "[0x9]}[\r][\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - << "[\r][\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - << "[0x9]var
arrTabNames_editorsChoice = new Array();[\r][\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - << "[0x9]var
arrTabTargets_editorsChoice = new Array();[\r][\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - << "[0x9][\r][\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - <<
"[0x9][0x9]arrTabNames_editorsChoice.push("Pictures");[\r][\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - <<
"[0x9][0x9]arrTabTargets_editorsChoice.push("ecPictures");[\r][\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - << "[0x9][\r][\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - <<
"[0x9][0x9]arrTabNames_editorsChoice.push("Video");[\r][\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - <<
"[0x9][0x9]arrTabTargets_editorsChoice.push("ecVideo");[\r][\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - << "[0x9][\r][\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - <<
"[0x9][0x9]arrTabNames_editorsChoice.push("Articles");[\r][\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - <<
"[0x9][0x9]arrTabTargets_editorsChoice.push("ecArticles");[\r][\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - << "[0x9]</script>[\r][\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - << "[\r][\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - << "<div
class="linebreak"></div>[\r][\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - << "<div>[\r][\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - << "[0x9]<div class="NONE"
style="margin-bottom: 0px;">[\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - << "    <div class="tabs small
flexible">[\r][\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - << "[0x9]<h3>Editor's
Choice</h3>[\r][\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - << "[0x9]<ul>[\r][\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - << "[0x9][0x9]<script
language="javascript">[\r][\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - <<
"[0x9][0x9][0x9]drawTabs_editorsChoice();[\r][\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - <<
"[0x9][0x9]</script>[\r][\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - << "[0x9]</ul>[\r][\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - << "</div>[\r][\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - << "[\r][\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - << "</div>[\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - << "  </div>[\r][\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - << "[\r][\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - << "<div
id="ecPictures">[\r][\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - << "[0x9]<div class="NONE"
style="margin-bottom: 0px;">[\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - << "    <!--[if !IE]> begin
CMS unit <![endif]--><script
language="javascript">addImpression("B120107_1328_ECPIC");</script><div
class="module editorschoice"><div class="moduleBody"><div class="ecPhoto">
javascript:commonPopup('http://www.reuters.com/news/pictures/slideshow?collectionId=1296&galleryName=24%20Hours',920,585,3,'reutersSlideshow'); 
http://i.today.reuters.com/pictures/galleries/Stories/633308185815625000/XLargeThumbnails/79608.jpg 
</div><p style="margin-top: 2px;">A selection of our best photos from the
past 24 hours.&nbsp; 
javascript:commonPopup('http://www.reuters.com/news/pictures/slideshow?collectionId=1296&galleryName=24%20Hours',920,585,3,'reutersSlideshow');
View&nbsp;Slideshow &nbsp;</p></div></div><!--[if !IE]> end CMS unit
<![endif]--></div>[\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - << "  </div>[\r][\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - << "[\r][\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - << "<div id="ecVideo"
class="hidden">[\r][\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - << "[0x9]<div class="NONE"
style="margin-bottom: 0px;">[\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - << "    <!--[if !IE]> begin
CMS unit <![endif]--><script
language="javascript">addImpression("B120107_1348_ECVID");</script><div
class="module editorschoice"><div class="moduleBody"><div
class="ecVideo"><div class="ecVideoThumb">
http://www.reuters.com/news/video?videoId=71878&videoChannel=1 
http://thumbstv.reuters.com/t_assets/20071201/ftpo1195054780781.jpg 
</div><div class="ecVideoLink">
http://www.reuters.com/news/video?videoId=71878&videoChannel=1 
http://static.reuters.com/resources/images/iconVideo.gif Iraqi pilgrims
</div></div><div class="ecVideo"><div class="ecVideoThumb">
http://www.reuters.com/news/video?videoId=71884&videoChannel=1 
http://thumbstv.reuters.com/t_assets/20071201/ftpo1195054780801.jpg 
</div><div class="ecVideoLink">
http://www.reuters.com/news/video?videoId=71884&videoChannel=1 
http://static.reuters.com/resources/images/iconVideo.gif AIDS orphans
</div></div><div class="ecVideo"><div class="ecVideoThumb">
http://www.reuters.com/news/video?videoId=71877&videoChannel=74 
http://thumbstv.reuters.com/t_assets/20071201/ftpo1195054780776.jpg 
</div><div class="ecVideoLink">
http://www.reuters.com/news/video?videoId=71877&videoChannel=74 
http://static.reuters.com/resources/images/iconVideo.gif Tree-planting
</div></div></div></div><!--[if !IE]> end CMS unit <![endif]--></div>[\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - << "  </div>[\r][\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - << "[\r][\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - << "<div id="ecArticles"
class="hidden">[\r][\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - << "[0x9]<div class="NONE"
style="margin-bottom: 0px;">[\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - << "    <!--[if !IE]> begin
CMS unit <![endif]--><script
language="javascript">addImpression("B120107_1356_ECART");</script><div
class="module editorschoice"><div class="moduleBody"><div
class="headlineMed"> /news Top News:  
http://www.reuters.com/article/topNews/idUSL3024658820071201 Iraqi refugees
return home </div><div class="headlineMed"> /news/lifestyle Lifestyle:  
http://www.reuters.com/article/lifestyleMolt/idUSBLA14228420071201 Tight
trousers targeted in Iran </div><div class="headlineMed"> /news/health
Health:   http://www.reuters.com/article/healthNews/idUSL015845320071201
South Africa cites progress on AIDS </div></div></div><!--[if !IE]> end CMS
unit <![endif]--></div>[\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - << "  </div>[\r][\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - << "[\r][\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - << "<div>[\r][\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - << "[0x9]<script>[\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - << "  var adsrc =
'reuters.com.dart/business/topnews/bankingfinancial/article;' +
(typeof(seg)=='undefined'?'':seg) +
'type=HighImpact;sz=300x250;tile=4;articleID=USN2432828320070824;ord=' +
(typeof(tmstmp)!='undefined'?tmstmp:12345) + '?';[\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - << "</script>[\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - << "<div class="ad"
id="advert_460366" onload="renderMask460366()">[\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - << "[0x9]<script
language="javascript" type="text/javascript">[\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - << "          [\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - << "          if (typeof
(hideAllAds) == 'undefined' || hideAllAds == false) {[\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - << "               
document.write('<scri' + 'pt language="javascript" type="text/javascript"
src="http://ad.doubleclick.net/adj/'"
2007/12/02 16:46:45:171 IST [DEBUG] content - << "[\r]"
2007/12/02 16:46:45:171 IST [DEBUG] content - << "[\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - << "1"
2007/12/02 16:46:45:171 IST [DEBUG] content - << "f"
2007/12/02 16:46:45:171 IST [DEBUG] content - << "f"
2007/12/02 16:46:45:171 IST [DEBUG] content - << "8"
2007/12/02 16:46:45:171 IST [DEBUG] content - << "[\r]"
2007/12/02 16:46:45:171 IST [DEBUG] content - << "[\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - << " + adsrc + '"></scri' +
'pt>');[\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - << "                if
((!document.images && navigator.userAgent.indexOf("Mozilla/2.") >= 0) ||
navigator.userAgent.indexOf("WebTV") >= 0) {[\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - << "                   
document.write('
http://ad.doubleclick.net/jump/reuters.com.dart/business/topnews/bankingfinancial/article;'
+ (typeof(seg)=='undefined'?'':seg) +
'type=HighImpact;sz=300x250;tile=4;articleID=USN2432828320070824;ord=' +
(typeof(tmstmp)=='undefined'?12345:tmstmp) + '? ');[\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - << "                   
document.write('
http://ad.doubleclick.net/ad/reuters.com.dart/business/topnews/bankingfinancial/article;'
+ (typeof(seg)=='undefined'?'':seg) +
'type=HighImpact;sz=300x250;tile=4;articleID=USN2432828320070824;ord=' +
(typeof(tmstmp)=='undefined'?12345:tmstmp) + '?  ');[\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - << "                }[\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - << "          }[\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - << "        </script>[\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - << "        <noscript>[\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - << "          
http://ad.doubleclick.net/jump/reuters.com.dart/business/topnews/bankingfinancial/article;type=HighImpact;sz=300x250;tile=4;articleID=USN2432828320070824;ord=7989?
[\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - << "            
http://ad.doubleclick.net/ad/reuters.com.dart/business/topnews/bankingfinancial/article;type=HighImpact;sz=300x250;tile=4;articleID=USN2432828320070824;ord=7989?
[\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - << "           [\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - << "        </noscript>[\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - << "[\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - << "        <script>[\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - << "            if
(typeof(window.populateRaptAdSize) != 'undefined')[\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - << "               
populateRaptAdSize('type=HighImpact;sz=300x250;tile=4;');[\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - << "        </script>[\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - << "[\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - << "        </div>[\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - << "[\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - << "</div>[\r][\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - << "[\r][\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - << "<script
language="javascript">[\r][\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - << "[\r][\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - << "[0x9]document.write('<link
href="/resources/css/rcom-tabs.css" rel="stylesheet" />');[\r][\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - << "[0x9][\r][\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - << "[\r][\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - << "[0x9]function buttonMenu()
{[\r][\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - << "[0x9][0x9]return
false;[\r][\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - << "[0x9]}[\r][\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - << "[0x9]function
getAdditionalHoverEvents(strAdditionalHoverEvents) {[\r][\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - << "[0x9][0x9]var
arrTabsWithHoverEvents = strAdditionalHoverEvents.split(",");[\r][\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - << "[0x9][0x9]return
arrTabsWithHoverEvents;[\r][\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - << "[0x9]}[\r][\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - << "[0x9]function
getAdditionalClickEvents(strAdditionalClickEvents) {[\r][\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - << "[0x9][0x9]var
arrTabsWithClickEvents = strAdditionalClickEvents.split(",");[\r][\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - << "[0x9][0x9]return
arrTabsWithClickEvents;[\r][\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - << "[0x9]}[\r][\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - << "[0x9]function
buttonPush_articleRelatedContent(e) {[\r][\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - << "[0x9][0x9]if (!e) var e =
window.event;[\r][\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - << "[0x9][0x9]if (e.button !=
2) {[\r][\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - <<
"[0x9][0x9][0x9]clearAll_articleRelatedContent()[\r][\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - <<
"[0x9][0x9][0x9]document.getElementById(this.id).className =
"current";[\r][\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - <<
"[0x9][0x9][0x9]document.getElementById(this.id).blur();[\r][\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - << "[0x9][0x9][0x9]var i =
this.id.split("_")[1];[\r][\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - <<
"[0x9][0x9][0x9]document.getElementById(arrTabTargets_articleRelatedContent[i]).className
= "";[\r][\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - << "[0x9][0x9]}[\r][\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - << "[0x9]}[\r][\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - << "[0x9]function
clearAll_articleRelatedContent() {[\r][\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - << "[0x9][0x9]for (i=0;
i<arrTabNames_articleRelatedContent.length; i++) {[\r][\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - <<
"[0x9][0x9][0x9]document.getElementById("articleRelatedContent_" +
i).className = "";[\r][\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - <<
"[0x9][0x9][0x9]document.getElementById(arrTabTargets_articleRelatedContent[i]).className
= "hidden";[\r][\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - << "[0x9][0x9]}[\r][\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - << "[0x9]}[\r][\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - << "  function
drawTabs_articleRelatedContent() {[\r][\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - << "[0x9][0x9]for (i=0;
i<arrTabNames_articleRelatedContent.length; i++) {[\r][\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - <<
"[0x9][0x9][0x9]document.write('<li id="articleRelatedContent_' + i + '">' +
arrTabNames_articleRelatedContent[i] + '</li>');[\r][\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - << "[0x9][0x9]}[\r][\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - << "[\r][\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - << "[0x9][0x9]for (i=0;
i<arrTabNames_articleRelatedContent.length; i++) {[\r][\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - <<
"[0x9][0x9][0x9]document.getElementById("articleRelatedContent_" +
i).onclick = buttonPush_articleRelatedContent;[\r][\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - << "[0x9][0x9]}[\r][\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - << "[\r][\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - << "[0x9][0x9]for (i=0;
i<arrTabNames_articleRelatedContent.length; i++) {[\r][\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - << "[0x9][0x9][0x9][\r][\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - << "[0x9][0x9]}[\r][\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - << "[0x9][0x9]for (i=0;
i<arrTabNames_articleRelatedContent.length; i++) {[\r][\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - << "[0x9][0x9][0x9][\r][\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - <<
"[0x9][0x9][0x9][0x9]if(!(arrClickEvents[i] == "")) {[\r][\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - <<
"[0x9][0x9][0x9][0x9][0x9]document.getElementById("articleRelatedContent_" +
i).onmousedown = eval(arrClickEvents[i]);[\r][\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - <<
"[0x9][0x9][0x9][0x9]}[\r][\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - << "[0x9][0x9][0x9][\r][\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - << "[0x9][0x9]}[\r][\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - << "[\r][\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - <<
"[0x9][0x9]document.getElementById("articleRelatedContent_0").className =
"current";[\r][\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - <<
"[0x9][0x9]document.getElementById("articleRelatedContent_0").style.cssText
= "position:relative;";[\r][\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - << "[0x9]}[\r][\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - << "[\r][\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - << "[0x9]var
arrTabNames_articleRelatedContent = new Array();[\r][\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - << "[0x9]var
arrTabTargets_articleRelatedContent = new Array();[\r][\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - << "[0x9][\r][\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - << "[0x9][0x9]var
arrClickEvents =
getAdditionalClickEvents(",,,onmousednMostRecommend");[\r][\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - << "[0x9][\r][\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - <<
"[0x9][0x9]arrTabNames_articleRelatedContent.push("Articles");[\r][\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - <<
"[0x9][0x9]arrTabTargets_articleRelatedContent.push("popularArticles");[\r][\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - << "[0x9][\r][\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - <<
"[0x9][0x9]arrTabNames_articleRelatedContent.push("Video");[\r][\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - <<
"[0x9][0x9]arrTabTargets_articleRelatedContent.push("popularVideos");[\r][\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - << "[0x9][\r][\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - <<
"[0x9][0x9]arrTabNames_articleRelatedContent.push("Searched");[\r][\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - <<
"[0x9][0x9]arrTabTargets_articleRelatedContent.push("popularSearches");[\r][\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - << "[0x9][\r][\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - <<
"[0x9][0x9]arrTabNames_articleRelatedContent.push("Recommended");[\r][\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - <<
"[0x9][0x9]arrTabTargets_articleRelatedContent.push("recommended");[\r][\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - << "[0x9]</script>[\r][\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - << "[\r][\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - << "<div
class="linebreak"></div>[\r][\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - << "<div>[\r][\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - << "[0x9]<div class="NONE"
style="margin-bottom: 0px;">[\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - << "    <div class="tabs
small" style="margin-bottom: 6px;">[\r][\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - << "[0x9]<h3>Most Popular on
Reuters</h3>[\r][\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - << "[0x9]<ul>[\r][\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - << "[0x9][0x9]<script
language="javascript">[\r][\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - <<
"[0x9][0x9][0x9]drawTabs_articleRelatedContent();[\r][\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - <<
"[0x9][0x9]</script>[\r][\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - << "[0x9]</ul>[\r][\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - << "</div>[\r][\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - << "[\r][\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - << "</div>[\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - << "  </div>[\r][\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - << "[\r][\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - << "[\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - << "              <script
language="javascript">addImpression("460368_Most Popular
Articles");</script>[\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - << "      <div
id="popularArticles">[\r][\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - << "[0x9]<div
class="NONE">[\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - << "[\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - << "[0x9]<div
class="module">[\n]"
2007/12/02 16:46:45:171 IST [DEBUG] content - << "[0x9][0x9]<ol>[\n]"
2007/12/02 16:46:45:187 IST [DEBUG] content - << "[0x9][0x9]<div
class="inlineThumbnail">[\n]"
2007/12/02 16:46:45:187 IST [DEBUG] content - <<
"[0x9][0x9][0x9][0x9][0x9][0x9] /article/newsOne/idUSN3034279620071202
<img[\r][\n]"
2007/12/02 16:46:45:187 IST [DEBUG] content - << "       
src="/resources/r/?m=&d=20071202&t=2&i=2348659&w=98&r="[\r][\n]"
2007/12/02 16:46:45:187 IST [DEBUG] content - << "        border="0"
alt="Photo"[\r][\n]"
2007/12/02 16:46:45:187 IST [DEBUG] content - << "         /> </div>[\n]"
2007/12/02 16:46:45:187 IST [DEBUG] content - <<
"[0x9][0x9][0x9][0x9]<li>[\n]"
2007/12/02 16:46:45:187 IST [DEBUG] content - << "[0x9][0x9][0x9]<h5>
/article/newsOne/idUSN3034279620071202 Leno to pay salaries of laid-off
staffers [\n]"
2007/12/02 16:46:45:187 IST [DEBUG] content - <<
"[0x9][0x9][0x9][0x9]</h5></li>[\n]"
2007/12/02 16:46:45:187 IST [DEBUG] content - << "[0x9][0x9]<li>[\n]"
2007/12/02 16:46:45:187 IST [DEBUG] content - << "[0x9][0x9][0x9]
/article/newsOne/idUSN2638979720071126 Older white women join Kenya's sex
tourists [\n]"
2007/12/02 16:46:45:187 IST [DEBUG] content - <<
"[0x9][0x9][0x9][0x9]</li>[\n]"
2007/12/02 16:46:45:187 IST [DEBUG] content - << "[0x9][0x9]<li>[\n]"
2007/12/02 16:46:45:187 IST [DEBUG] content - << "[0x9][0x9][0x9]
/article/newsOne/idUSN3031650320071201 Show seeks to love match migrants and
U.S. citizens [\n]"
2007/12/02 16:46:45:187 IST [DEBUG] content - <<
"[0x9][0x9][0x9][0x9]</li>[\n]"
2007/12/02 16:46:45:187 IST [DEBUG] content - << "[0x9][0x9]<li>[\n]"
2007/12/02 16:46:45:187 IST [DEBUG] content - << "[0x9][0x9][0x9]
/article/newsOne/idUSN0135521320071201 No pepper spray found in Puerto Rico
pageant case [\n]"
2007/12/02 16:46:45:187 IST [DEBUG] content - <<
"[0x9][0x9][0x9][0x9]</li>[\n]"
2007/12/02 16:46:45:187 IST [DEBUG] content - << "[0x9][0x9]<li>[\n]"
2007/12/02 16:46:45:187 IST [DEBUG] content - << "[0x9][0x9][0x9]
/article/newsOne/idUSN3034279620071201 Shocked Leno staffers fired as strike
drags on [\n]"
2007/12/02 16:46:45:187 IST [DEBUG] content - <<
"[0x9][0x9][0x9][0x9]</li>[\n]"
2007/12/02 16:46:45:187 IST [DEBUG] content - << "[0x9][0x9]<li>[\n]"
2007/12/02 16:46:45:187 IST [DEBUG] content - << "[0x9][0x9][0x9]
/article/newsOne/idUSELK15164220071201 "Tin Man" a bizarre update of "Wizard
of Oz" [\n]"
2007/12/02 16:46:45:187 IST [DEBUG] content - <<
"[0x9][0x9][0x9][0x9]</li>[\n]"
2007/12/02 16:46:45:187 IST [DEBUG] content - << "[0x9][0x9]<li>[\n]"
2007/12/02 16:46:45:187 IST [DEBUG] content - << "[0x9][0x9][0x9]
/article/newsOne/idUSN0736630420071128 Teen suicide spurs war on child
prostitution [\n]"
2007/12/02 16:46:45:187 IST [DEBUG] content - <<
"[0x9][0x9][0x9][0x9]</li>[\n]"
2007/12/02 16:46:45:187 IST [DEBUG] content - << "[0x9][0x9]<li>[\n]"
2007/12/02 16:46:45:187 IST [DEBUG] content - << "[0x9][0x9][0x9]
/article/newsOne/idUSN0135361820071202 U.S. mortgage industry hashes out
rate-freeze plan [\n]"
2007/12/02 16:46:45:187 IST [DEBUG] content - <<
"[0x9][0x9][0x9][0x9]</li>[\n]"
2007/12/02 16:46:45:187 IST [DEBUG] content - << "[0x9][0x9]<li>[\n]"
2007/12/02 16:46:45:187 IST [DEBUG] content - << "[0x9][0x9][0x9]
/article/newsOne/idUSN3029785820071202 Democrats differ on Cuba policy at
Iowa debate [\n]"
2007/12/02 16:46:45:187 IST [DEBUG] content - <<
"[0x9][0x9][0x9][0x9]</li>[\n]"
2007/12/02 16:46:45:187 IST [DEBUG] content - << "[0x9][0x9]<li>[\n]"
2007/12/02 16:46:45:187 IST [DEBUG] content - << "[0x9][0x9][0x9]
/article/newsOne/idUSN3030009020071201 Clinton impresses with handling of
hostage drama &nbsp;&nbsp;|&nbsp;&nbsp;
/news/video?videoId=71850&newsChannel=wtMostRead Video [\n]"
2007/12/02 16:46:45:187 IST [DEBUG] content - << "[\n]"
2007/12/02 16:46:45:187 IST [DEBUG] content - <<
"[0x9][0x9][0x9][0x9]</li>[\n]"
2007/12/02 16:46:45:187 IST [DEBUG] content - << "[0x9][0x9]</ol>[\n]"
2007/12/02 16:46:45:187 IST [DEBUG] content - << "[0x9][0x9]<div
class="listFooter">[\n]"
2007/12/02 16:46:45:187 IST [DEBUG] content - << "[0x9][0x9][0x9]<div
class="dividerH"></div>[\n]"
2007/12/02 16:46:45:187 IST [DEBUG] content - << "[0x9][0x9][0x9]<div
class="rssLink label"> http://feeds.reuters.com/reuters/MostRead Most
Popular Articles RSS Feed </div>[\n]"
2007/12/02 16:46:45:187 IST [DEBUG] content - << "[0x9][0x9]</div>[\n]"
2007/12/02 16:46:45:187 IST [DEBUG] content - << "[0x9][0x9]</div>[\n]"
2007/12/02 16:46:45:187 IST [DEBUG] content - << "[\n]"
2007/12/02 16:46:45:187 IST [DEBUG] content - << "</div>[\n]"
2007/12/02 16:46:45:187 IST [DEBUG] content - << "[\n]"
2007/12/02 16:46:45:187 IST [DEBUG] content - << "</div>[\r][\n]"
2007/12/02 16:46:45:187 IST [DEBUG] content - << "[\r][\n]"
2007/12/02 16:46:45:187 IST [DEBUG] content - << "[\n]"
2007/12/02 16:46:45:187 IST [DEBUG] content - << "      <!--[if !IE]> ###
Video Module <![endif]-->[\n]"
2007/12/02 16:46:45:187 IST [DEBUG] content - << "<div id="popularVideos"
class="hidden">[\r][\n]"
2007/12/02 16:46:45:187 IST [DEBUG] content - << "[0x9]<div
class="NONE">[\n]"
2007/12/02 16:46:45:187 IST [DEBUG] content - << "[\n]"
2007/12/02 16:46:45:187 IST [DEBUG] content - << "[0x9]<div
class="module">[\n]"
2007/12/02 16:46:45:187 IST [DEBUG] content - << "[0x9][0x9]<div
class="videoOvrlay">[\r][\n]"
2007/12/02 16:46:45:187 IST [DEBUG] content - << "            <div
class="videoOvrlayBtnBG"> /resources/images/btn_vidOvrlay.gif
</div>[\r][\n]"
2007/12/02 16:46:45:187 IST [DEBUG] content - << "                  
/news/video?videoId=71798&videoChannel=2602 [\r][\n]"
2007/12/02 16:46:45:187 IST [DEBUG] content - << "                  
http://thumbstv.reuters.com/t_assets/20071130/ftpo1195054780601.jpg
[\r][\n]"
2007/12/02 16:46:45:187 IST [DEBUG] content - <<
"[0x9][0x9][0x9][0x9][0x9][0x9][0x9][0x9][0x9][0x9][\r][\n]"
2007/12/02 16:46:45:187 IST [DEBUG] content - << "                  
/resources/images/spacer.gif Video&nbsp; [\n]"
2007/12/02 16:46:45:187 IST [DEBUG] content - << "</div>[\r][\n]"
2007/12/02 16:46:45:187 IST [DEBUG] content - << "[\r][\n]"
2007/12/02 16:46:45:187 IST [DEBUG] content - << "[0x9][0x9]<ol>[\r][\n]"
2007/12/02 16:46:45:187 IST [DEBUG] content - << "    <li>[\n]"
2007/12/02 16:46:45:187 IST [DEBUG] content - << "[0x9][0x9][0x9]<h5>
/news/video?videoId=71798  /resources/images/iconVideoLink.gif  440-pound
snake found in Brazil house [\n]"
2007/12/02 16:46:45:187 IST [DEBUG] content - << "</h5></li>[\n]"
2007/12/02 16:46:45:187 IST [DEBUG] content - << "    <li>[\n]"
2007/12/02 16:46:45:187 IST [DEBUG] content - << "[0x9][0x9][0x9]
/news/video?videoId=71718  /resources/images/iconVideoLink.gif  "
2007/12/02 16:46:45:187 IST [DEBUG] content - << "[\r]"
2007/12/02 16:46:45:187 IST [DEBUG] content - << "[\n]"
2007/12/02 16:46:45:187 IST [DEBUG] content - << "1"
2007/12/02 16:46:45:187 IST [DEBUG] content - << "f"
2007/12/02 16:46:45:187 IST [DEBUG] content - << "f"
2007/12/02 16:46:45:187 IST [DEBUG] content - << "8"
2007/12/02 16:46:45:187 IST [DEBUG] content - << "[\r]"
2007/12/02 16:46:45:187 IST [DEBUG] content - << "[\n]"
2007/12/02 16:46:45:187 IST [DEBUG] content - << "A purr-fect designer
accessory [\n]"
2007/12/02 16:46:45:187 IST [DEBUG] content - << "</li>[\n]"
2007/12/02 16:46:45:187 IST [DEBUG] content - << "    <li>[\n]"
2007/12/02 16:46:45:187 IST [DEBUG] content - << "[0x9][0x9][0x9]
/news/video?videoId=71882  /resources/images/iconVideoLink.gif  Bhutto
launches election campaign [\n]"
2007/12/02 16:46:45:187 IST [DEBUG] content - << "</li>[\n]"
2007/12/02 16:46:45:187 IST [DEBUG] content - << "    <li>[\n]"
2007/12/02 16:46:45:187 IST [DEBUG] content - << "[0x9][0x9][0x9]
/news/video?videoId=71888  /resources/images/iconVideoLink.gif  Giant
truffle sold for $330,000 [\n]"
2007/12/02 16:46:45:187 IST [DEBUG] content - << "</li>[\n]"
2007/12/02 16:46:45:187 IST [DEBUG] content - << "    <li>[\n]"
2007/12/02 16:46:45:187 IST [DEBUG] content - << "[0x9][0x9][0x9]
/news/video?videoId=69547  /resources/images/iconVideoLink.gif  Follow the
herd [\n]"
2007/12/02 16:46:45:187 IST [DEBUG] content - << "</li>[\n]"
2007/12/02 16:46:45:187 IST [DEBUG] content - << "    <li>[\n]"
2007/12/02 16:46:45:187 IST [DEBUG] content - << "[0x9][0x9][0x9]
/news/video?videoId=71743  /resources/images/iconVideoLink.gif  Republican
debate gets personal [\n]"
2007/12/02 16:46:45:187 IST [DEBUG] content - << "</li>[\n]"
2007/12/02 16:46:45:187 IST [DEBUG] content - << "    <li>[\n]"
2007/12/02 16:46:45:187 IST [DEBUG] content - << "[0x9][0x9][0x9]
/news/video?videoId=71626  /resources/images/iconVideoLink.gif  Whopper
white truffle on show [\n]"
2007/12/02 16:46:45:187 IST [DEBUG] content - << "</li>[\n]"
2007/12/02 16:46:45:187 IST [DEBUG] content - << "    <li>[\n]"
2007/12/02 16:46:45:187 IST [DEBUG] content - << "[0x9][0x9][0x9]
/news/video?videoId=71846  /resources/images/iconVideoLink.gif  Reuters
Showbiz Week [\n]"
2007/12/02 16:46:45:187 IST [DEBUG] content - << "</li>[\n]"
2007/12/02 16:46:45:187 IST [DEBUG] content - << "    <li>[\n]"
2007/12/02 16:46:45:187 IST [DEBUG] content - << "[0x9][0x9][0x9]
/news/video?videoId=71754  /resources/images/iconVideoLink.gif  Reuters
Oddly Enough: And Finally ... [\n]"
2007/12/02 16:46:45:187 IST [DEBUG] content - << "</li>[\n]"
2007/12/02 16:46:45:187 IST [DEBUG] content - << "    <li>[\n]"
2007/12/02 16:46:45:187 IST [DEBUG] content - << "[0x9][0x9][0x9]
/news/video?videoId=69893  /resources/images/iconVideoLink.gif  World's best
bottoms [\n]"
2007/12/02 16:46:45:187 IST [DEBUG] content - << "</li>[\n]"
2007/12/02 16:46:45:187 IST [DEBUG] content - << "    </ol>[\r][\n]"
2007/12/02 16:46:45:187 IST [DEBUG] content - << "[0x9]<div
class="listFooter">[\r][\n]"
2007/12/02 16:46:45:187 IST [DEBUG] content - << "[0x9][0x9]<div
class="dividerH"></div>[\r][\n]"
2007/12/02 16:46:45:187 IST [DEBUG] content - << "[0x9][0x9]<div
class="rssLink label"> http://feeds.reuters.com/reuters/USVideoMostWatched
Most Popular Videos RSS Feed </div>[\r][\n]"
2007/12/02 16:46:45:187 IST [DEBUG] content - << "[0x9]</div>[\r][\n]"
2007/12/02 16:46:45:187 IST [DEBUG] content - << "[0x9]</div>[\n]"
2007/12/02 16:46:45:187 IST [DEBUG] content - << "[\n]"
2007/12/02 16:46:45:187 IST [DEBUG] content - << "</div>[\n]"
2007/12/02 16:46:45:187 IST [DEBUG] content - << "[\n]"
2007/12/02 16:46:45:187 IST [DEBUG] content - << "</div>[\r][\n]"
2007/12/02 16:46:45:187 IST [DEBUG] content - << "[\r][\n]"
2007/12/02 16:46:45:187 IST [DEBUG] content - << "<div id="popularSearches"
class="hidden">[\r][\n]"
2007/12/02 16:46:45:187 IST [DEBUG] content - << "[0x9]<div class="NONE"
style="margin-bottom: 0px;">[\n]"
2007/12/02 16:46:45:187 IST [DEBUG] content - << "    <!--[if !IE]> begin
CMS unit <![endif]--><script
language="javascript">addImpression("B110107_1255_MSEARCH");</script><style
type="text/css">.searchCallout { color: #F60; font-size: 11px; margin-left:
6px; }</style><div class="module" style="margin-bottom: 2px;"><div
class="moduleBody" style="margin-right: -3px; padding-right: 3px;"><ol><li>
http://search.us.reuters.com/rsearch/rcomSearch.do?blob=aapl&site=US AAPL
</li><li>
http://search.us.reuters.com/rsearch/rcomSearch.do?blob=goog&site=US GOOG
</li><li>
http://search.us.reuters.com/rsearch/rcomSearch.do?blob=MER&site=US MER
</li><li>
http://search.us.reuters.com/rsearch/rcomSearch.do?blob=MSFT&site=US MSFT
</li><li> http://search.us.reuters.com/rsearch/rcomSearch.do?blob=C&site=US
C </li><li>
http://search.us.reuters.com/rsearch/rcomSearch.do?blob=CFC&site=US CFC
</li><li> http://search.us.reuters.com/rsearch/rcomSearch.do?blob=ge&site=US
GE </li><li>
http://search.us.reuters.com/rsearch/rcomSearch.do?blob=YHOO&site=US YHOO
</li><li>
http://search.us.reuters.com/rsearch/rcomSearch.do?blob=BIDU&site=US BIDU
</li><li>
http://search.us.reuters.com/rsearch/rcomSearch.do?blob=UBS&site=US UBS
</li></ol></div></div><!--[if !IE]> end CMS unit <![endif]--></div>[\n]"
2007/12/02 16:46:45:187 IST [DEBUG] content - << "  </div>[\r][\n]"
2007/12/02 16:46:45:187 IST [DEBUG] content - << "[\r][\n]"
2007/12/02 16:46:45:187 IST [DEBUG] content - << "<div id="recommended"
class="hidden">[\r][\n]"
2007/12/02 16:46:45:187 IST [DEBUG] content - << "[0x9]<div
class="NONE">[\n]"
2007/12/02 16:46:45:187 IST [DEBUG] content - << "[\n]"
2007/12/02 16:46:45:187 IST [DEBUG] content - << "[0x9]<div
class="module">[\n]"
2007/12/02 16:46:45:187 IST [DEBUG] content - << "[0x9][0x9]<iframe
id="iframeSLMostRecommend" height="334" marginwidth="0" width="302"
scrolling="no" src="#" frameborder="0" marginheight="0"></iframe>[\n]"
2007/12/02 16:46:45:187 IST [DEBUG] content - << "</div>[\n]"
2007/12/02 16:46:45:187 IST [DEBUG] content - << "[\n]"
2007/12/02 16:46:45:187 IST [DEBUG] content - << "</div>[\n]"
2007/12/02 16:46:45:187 IST [DEBUG] content - << "[\n]"
2007/12/02 16:46:45:187 IST [DEBUG] content - << "</div>[\r][\n]"
2007/12/02 16:46:45:187 IST [DEBUG] content - << "[\r][\n]"
2007/12/02 16:46:45:187 IST [DEBUG] content - << "<div><div
style="border-top: 1px solid #CCC; margin-bottom: 12px;"></div></div><!--
multi-page view -->[\r][\n]"
2007/12/02 16:46:45:187 IST [DEBUG] content - << "                   
<div>[\r][\n]"
2007/12/02 16:46:45:187 IST [DEBUG] content - << "[0x9]</div>[\r][\n]"
2007/12/02 16:46:45:187 IST [DEBUG] content - << "[\r][\n]"
2007/12/02 16:46:45:187 IST [DEBUG] content - << "<!--[if !IE]> START News
Content Page Tags <![endif]-->[\n]"
2007/12/02 16:46:45:187 IST [DEBUG] content - << "<META
name="DCSext.ContentType"     content="Text"> <!--[if !IE]> 'Text' |
'Picture' | 'Slideshow' | 'Video' <![endif]-->[\n]"
2007/12/02 16:46:45:187 IST [DEBUG] content - << "<META
name="DCSext.ContentID"       content="USN2432828320070824"> <!--[if !IE]>
ie. articleId <![endif]-->[\n]"
2007/12/02 16:46:45:187 IST [DEBUG] content - << "<META
name="DCSext.ContentID_news"       content="USN2432828320070824"> <!--[if
!IE]> ie. articleId <![endif]-->[\n]"
2007/12/02 16:46:45:187 IST [DEBUG] content - << "<META
name="DCSext.ContentID_wtMostRead"       content="USN2432828320070824">
<!--[if !IE]> ie. articleId <![endif]-->[\n]"
2007/12/02 16:46:45:187 IST [DEBUG] content - << "<META
name="DCSext.ContentHeadline"
content="Bear+rivals+say+courting+prime+broker+clients"> <!--[if !IE]> ie.
headline for article <![endif]-->[\n]"
2007/12/02 16:46:45:187 IST [DEBUG] content - << "<META
name="DCSext.PageNumber"      content="1">[\n]"
2007/12/02 16:46:45:187 IST [DEBUG] content - << "<META
name="DCSext.PageTotal"       content="3"> <!--[if !IE]> ie. headline for
article <![endif]-->[\n]"
2007/12/02 16:46:45:187 IST [DEBUG] content - << "<!--[if !IE]> END News
Content Page Tags <![endif]-->[\n]"
2007/12/02 16:46:45:187 IST [DEBUG] content - << "<META
name="DCSext.ContentChannel"  content="bankingfinancial-SP">[\n]"
2007/12/02 16:46:45:187 IST [DEBUG] content - << "<script
type="text/javascript">Sphere.Inline.search('sphereSideVideo',
'http://www.reuters.com/article/sphereNews/idUSN2432828320070824?sp=true&view=sphere',
'vidn:3;vidids:0;vidpics:1')</script>[\n]"
2007/12/02 16:46:45:187 IST [DEBUG] content - << "<script
type="text/javascript">Sphere.Inline.search('sphereSideNews',
'http://www.reuters.com/article/sphereNews/idUSN2432828320070824?sp=true&view=sphere',
'artn:5;artids:USN2432828320070824')</script>[\n]"
2007/12/02 16:46:45:187 IST [DEBUG] content - << "<script
type="text/javascript">Sphere.Inline.search('sphereFooter',
'http://www.reuters.com/article/sphereNews/idUSN2432828320070824?sp=true&view=sphere')</script>[\n]"
2007/12/02 16:46:45:187 IST [DEBUG] content - << "<div><script
language="javascript">[\n]"
2007/12/02 16:46:45:187 IST [DEBUG] content - << "function
showSphereSideAttribution() {[\n]"
2007/12/02 16:46:45:187 IST [DEBUG] content - << "  if
(document.getElementById("sphereSideAttribution")) {[\n]"
2007/12/02 16:46:45:187 IST [DEBUG] content - << "   
document.getElementById("sphereSideAttribution").className = "";    [\n]"
2007/12/02 16:46:45:187 IST [DEBUG] content - << "  }[\n]"
2007/12/02 16:46:45:187 IST [DEBUG] content - << "  if
(document.getElementById("relatedNews")) {[\n]"
2007/12/02 16:46:45:187 IST [DEBUG] content - << "   
document.getElementById("relatedNews").className = "module spheredModule";   
[\n]"
2007/12/02 16:46:45:187 IST [DEBUG] content - << "  }[\n]"
2007/12/02 16:46:45:187 IST [DEBUG] content - << "}[\n]"
2007/12/02 16:46:45:187 IST [DEBUG] content - << "function
replaceSphereFooter() {[\n]"
2007/12/02 16:46:45:187 IST [DEBUG] content - << " 
com.reuters.rcom.utils.replaceContent('sphereFooter',
'/assets/articleChannelNews?type=bankingfinancial-SP', 60000, null);[\n]"
2007/12/02 16:46:45:187 IST [DEBUG] content - << "}[\n]"
2007/12/02 16:46:45:187 IST [DEBUG] content - << "</script>[\n]"
2007/12/02 16:46:45:187 IST [DEBUG] content - << "<style
type="text/css">div.module.spheredModule, div.module.spheredModule
div.moduleBody { margin-bottom: 0 }</style></div><div><script
type="text/javascript"
src="/resources/js/sitelife_rec_daapi01C.js"></script>[\n]"
2007/12/02 16:46:45:187 IST [DEBUG] content - << "<script
type="text/javascript">[\n]"
2007/12/02 16:46:45:187 IST [DEBUG] content - <<
"slArtPage.setArticle(uniqueArtKey, articleUrl, articleTitle,
articleSection, articleCategories);[\n]"
2007/12/02 16:46:45:187 IST [DEBUG] content - << "[\n]"
2007/12/02 16:46:45:187 IST [DEBUG] content - << "function
runAfterBodyLoaded() {[\n]"
2007/12/02 16:46:45:187 IST [DEBUG] content - << "   
slArtPage.doPageLoadDAAPI();[\n]"
2007/12/02 16:46:45:187 IST [DEBUG] content - << "}[\n]"
2007/12/02 16:46:45:187 IST [DEBUG] content - << "[\n]"
2007/12/02 16:46:45:187 IST [DEBUG] content - << "document.write("<scr" +
"ipt type='text/javascript'>addEvent(window, 'load',
runAfterBodyLoaded);</scr" + "ipt>");[\n]"
2007/12/02 16:46:45:187 IST [DEBUG] content - << "</script>[\n]"
2007/12/02 16:46:45:187 IST [DEBUG] content - << "</div><div>[\r][\n]"
2007/12/02 16:46:45:187 IST [DEBUG] content - << "[0x9]<div class="NONE"
style="margin-bottom: 0px;">[\n]"
2007/12/02 16:46:45:187 IST [DEBUG] content - << "    <!--[if !IE]> begin
CMS unit <![endif]-->[\n]"
2007/12/02 16:46:45:187 IST [DEBUG] content - << "[\n]"
2007/12/02 16:46:45:187 IST [DEBUG] content - << "<script
language="javascript">addImpression("B112607_16_Top10RR");</script>[\n]"
2007/12/02 16:46:45:187 IST [DEBUG] content - << "[\n]"
2007/12/02 16:46:45:187 IST [DEBUG] content - << "<style
type="text/css">.module.marketing { margin-right: 0; padding-right: 0;
margin-bottom: 16px; border: 1px solid #EEE; background: #FFF
url("http://static.reuters.com/resources/images/bgMarketingCMS.gif") center
bottom no-repeat; -moz-box-sizing: border-box; } .module.marketing { height:
1%; } html>body .module.marketing { height: auto; } .module.marketing
.moduleHeaderInline { padding: 3px 2px 0px 6px; background: none;
border-bottom: none; } .module.marketing .moduleHeaderInline h3 {
text-transform: none; font-size: 14px; color: #666; } .module.marketing
.moduleBody { padding: 2px 8px 0px 4px; } .module.marketing h5 { font-size:
14px; } .module.marketing .headlineMed { font-size: 11px; }
.module.marketing .inlineThumbnail { border: 1px solid #DDD; }</style><div
class="module marketing">[\n]"
2007/12/02 16:46:45:187 IST [DEBUG] content - << "[\n]"
2007/12/02 16:46:45:187 IST [DEBUG] content - << "<div
class="moduleHeaderInline"><h3> 
https://commerce.us.reuters.com/purchase/mostPopular.do Reuters Research
Reports </h3></div>[\n]"
2007/12/02 16:46:45:187 IST [DEBUG] content - << "[\n]"
2007/12/02 16:46:45:187 IST [DEBUG] content - << "<div
class="moduleBody"><div class="inlineThumbnail"  style="border:0px;">
http://int1.fp.sandpiper.net/reuters/marketing/images/20071126/rip_screenshot_cms.gif
</div><div><div class="headlineMed">Find out what other investors are
reading&#58; <strong>
https://commerce.us.reuters.com/purchase/mostPopular.do See today&#146;s Top
10 best-selling reports </strong></div><BR><div>[\n]"
2007/12/02 16:46:45:187 IST [DEBUG] content - << "[\n]"
2007/12/02 16:46:45:187 IST [DEBUG] content - << "<div
class="headlineMed">Tap into over 1.5 million analyst research
reports&#58;<strong>
https://commerce.us.reuters.com/purchase/advancedSearch.do  Start your
search [\n]"
2007/12/02 16:46:45:187 IST [DEBUG] content - << "[\n]"
2007/12/02 16:46:45:187 IST [DEBUG] content - <<
"</strong></div></div></div></div></div><!--[if !IE]> end CMS unit
<![endif]-->[\n]"
2007/12/02 16:46:45:187 IST [DEBUG] content - << "[\n]"
2007/12/02 16:46:45:187 IST [DEBUG] content - << "</div>[\n]"
2007/12/02 16:46:45:187 IST [DEBUG] content - << "  </div>[\r][\n]"
2007/12/02 16:46:45:187 IST [DEBUG] content - << "[\r][\n]"
2007/12/02 16:46:45:187 IST [DEBUG] content - << "</div>[\n]"
2007/12/02 16:46:45:187 IST [DEBUG] content - << "[\n]"
2007/12/02 16:46:45:187 IST [DEBUG] content - << "</d"
2007/12/02 16:46:45:187 IST [DEBUG] content - << "[\r]"
2007/12/02 16:46:45:187 IST [DEBUG] content - << "[\n]"
2007/12/02 16:46:45:187 IST [DEBUG] content - << "1"
2007/12/02 16:46:45:187 IST [DEBUG] content - << "b"
2007/12/02 16:46:45:187 IST [DEBUG] content - << "7"
2007/12/02 16:46:45:187 IST [DEBUG] content - << "b"
2007/12/02 16:46:45:187 IST [DEBUG] content - << "[\r]"
2007/12/02 16:46:45:187 IST [DEBUG] content - << "[\n]"
2007/12/02 16:46:45:187 IST [DEBUG] content - << "iv>[\n]"
2007/12/02 16:46:45:187 IST [DEBUG] content - << "[\n]"
2007/12/02 16:46:45:187 IST [DEBUG] content - << "<!--[if !IE]>
######################## END: Section  ########################
<![endif]-->[\n]"
2007/12/02 16:46:45:187 IST [DEBUG] content - << "</div><!--[if !IE]>
content <![endif]-->[\n]"
2007/12/02 16:46:45:187 IST [DEBUG] content - << "[\n]"
2007/12/02 16:46:45:187 IST [DEBUG] content - << "</div><!--[if !IE]> END
Content <![endif]-->[\r][\n]"
2007/12/02 16:46:45:187 IST [DEBUG] content - << "<!--[if !IE]> BEGIN
baseFooterHTML <![endif]-->[\r][\n]"
2007/12/02 16:46:45:187 IST [DEBUG] content - << "<div class="footer"
id="Footer1">[\r][\n]"
2007/12/02 16:46:45:187 IST [DEBUG] content - << "[\r][\n]"
2007/12/02 16:46:45:187 IST [DEBUG] content - << "    <p><strong> /home
Reuters.com: </strong>&nbsp;[\r][\n]"
2007/12/02 16:46:45:187 IST [DEBUG] content - << "    
http://reuters-en.custhelp.com Help and Contact Us  &nbsp;|&nbsp;[\r][\n]"
2007/12/02 16:46:45:187 IST [DEBUG] content - << "    
http://sales.reuters.com/ Advertise With Us  &nbsp;|&nbsp;[\r][\n]"
2007/12/02 16:46:45:187 IST [DEBUG] content - << "    
http://today.reuters.com/mobile/default.aspx Mobile  &nbsp;|&nbsp;[\r][\n]"
2007/12/02 16:46:45:187 IST [DEBUG] content - << "    
https://commerce.us.reuters.com/profile/pages/newsletter/begin.do
Newsletters  &nbsp;|&nbsp;[\r][\n]"
2007/12/02 16:46:45:187 IST [DEBUG] content - << "     /tools/rss RSS 
/tools/rss  /resources/images/iconFeed.gif   &nbsp;|&nbsp;[\r][\n]"
2007/12/02 16:46:45:187 IST [DEBUG] content - << "    
http://today.reuters.com/HelpAndInfo/HelpInfoFAQs.aspx?view=ITV Interactive
TV  &nbsp;|&nbsp;[\r][\n]"
2007/12/02 16:46:45:187 IST [DEBUG] content - << "    
http://labs.reuters.com/ Labs  &nbsp;|&nbsp;[\r][\n]"
2007/12/02 16:46:45:187 IST [DEBUG] content - << "    
http://secondlife.reuters.com Reuters in Second Life  &nbsp;|&nbsp;[\r][\n]"
2007/12/02 16:46:45:187 IST [DEBUG] content - << "    
/resources/archive/us/index.html Archive  &nbsp;|&nbsp;[\r][\n]"
2007/12/02 16:46:45:187 IST [DEBUG] content - << "     /assets/siteindex
Site Index  &nbsp;|&nbsp;[\r][\n]"
2007/12/02 16:46:45:187 IST [DEBUG] content - << "     /assets/videoindex
Video Index </p>[\r][\n]"
2007/12/02 16:46:45:187 IST [DEBUG] content - << "[\r][\n]"
2007/12/02 16:46:45:187 IST [DEBUG] content - << "    <p><strong>
http://about.reuters.com/home/ Reuters Corporate: </strong>&nbsp;[\r][\n]"
2007/12/02 16:46:45:187 IST [DEBUG] content - << "[0x9][0x9]
javascript:commonPopup('/info/copyright', 540, 525, 1, 'bottomNav')
Copyright  &nbsp;|&nbsp;[\r][\n]"
2007/12/02 16:46:45:187 IST [DEBUG] content - << "[0x9][0x9]
javascript:commonPopup('/info/disclaimer', 540, 525, 1, 'bottomNav')
Disclaimer  &nbsp;|&nbsp;[\r][\n]"
2007/12/02 16:46:45:187 IST [DEBUG] content - << "[0x9][0x9]
javascript:commonPopup('/info/privacy', 540, 525, 1, 'bottomNav') Privacy 
&nbsp;|&nbsp;[\r][\n]"
2007/12/02 16:46:45:187 IST [DEBUG] content - << "[0x9][0x9]
http://about.reuters.com/productinfo/index.aspx Professional Products 
&nbsp;|&nbsp;[\r][\n]"
2007/12/02 16:46:45:187 IST [DEBUG] content - << "[0x9][0x9]
http://customers.reuters.com/landing/ Professional Products Support 
&nbsp;|&nbsp;[\r][\n]"
2007/12/02 16:46:45:187 IST [DEBUG] content - << "[0x9][0x9]
http://about.reuters.com/ About Reuters  &nbsp;|&nbsp;[\r][\n]"
2007/12/02 16:46:45:187 IST [DEBUG] content - << "    
http://about.reuters.com/careers/ Careers </p>[\r][\n]"
2007/12/02 16:46:45:187 IST [DEBUG] content - << "[\r][\n]"
2007/12/02 16:46:45:187 IST [DEBUG] content - << "  [0x9]<div
class="dividerInlineH">&nbsp;</div>[\r][\n]"
2007/12/02 16:46:45:187 IST [DEBUG] content - << "[\r][\n]"
2007/12/02 16:46:45:187 IST [DEBUG] content - << " 
[0x9]<p><strong>International Editions:</strong>[\r][\n]"
2007/12/02 16:46:45:187 IST [DEBUG] content - << "  [0x9][\r][\n]"
2007/12/02 16:46:45:187 IST [DEBUG] content - << "  [0x9]
http://africa.reuters.com Africa  &nbsp;|&nbsp;[\r][\n]"
2007/12/02 16:46:45:187 IST [DEBUG] content - << "  [0x9]
http://ara.today.reuters.com/news/default.aspx Arabic 
&nbsp;|&nbsp;[\r][\n]"
2007/12/02 16:46:45:187 IST [DEBUG] content - << "  [0x9]
http://ar.reuters.com Argentina  &nbsp;|&nbsp;[\r][\n]"
2007/12/02 16:46:45:187 IST [DEBUG] content - << "  [0x9]
http://br.reuters.com Brazil  &nbsp;|&nbsp;[\r][\n]"
2007/12/02 16:46:45:187 IST [DEBUG] content - << "  [0x9]
http://ca.today.reuters.com/news/default.aspx Canada  &nbsp;|&nbsp;[\r][\n]"
2007/12/02 16:46:45:187 IST [DEBUG] content - << "  [0x9]
http://cn.reuters.com Chinese&nbsp;Simplified  &nbsp;|&nbsp;[\r][\n]"
2007/12/02 16:46:45:187 IST [DEBUG] content - << "  [0x9]
http://cnt.reuters.com Chinese&nbsp;Traditional  &nbsp;|&nbsp;[\r][\n]"
2007/12/02 16:46:45:187 IST [DEBUG] content - << "  [0x9]
http://fr.today.reuters.com/news/default.aspx France  &nbsp;|&nbsp;[\r][\n]"
2007/12/02 16:46:45:187 IST [DEBUG] content - << "  [0x9]
http://de.today.reuters.com/news/default.aspx Germany 
&nbsp;|&nbsp;[\r][\n]"
2007/12/02 16:46:45:187 IST [DEBUG] content - << "  [0x9]
http://in.reuters.com India  &nbsp;|&nbsp;[\r][\n]"
2007/12/02 16:46:45:187 IST [DEBUG] content - << "  [0x9]
http://today.reuters.it/news/default.aspx Italy  &nbsp;|&nbsp;[\r][\n]"
2007/12/02 16:46:45:187 IST [DEBUG] content - << "  [0x9]
http://jp.reuters.com Japan  &nbsp;|&nbsp;[\r][\n]"
2007/12/02 16:46:45:187 IST [DEBUG] content - << "  [0x9]
http://lta.reuters.com Latin&nbsp;America  &nbsp;|&nbsp;[\r][\n]"
2007/12/02 16:46:45:187 IST [DEBUG] content - << "  [0x9]
http://mx.reuters.com Mexico  &nbsp;|&nbsp;[\r][\n]"
2007/12/02 16:46:45:187 IST [DEBUG] content - << "  [0x9]
http://ru.today.reuters.com/news/default.aspx Russia  &nbsp;|&nbsp;[\r][\n]"
2007/12/02 16:46:45:187 IST [DEBUG] content - << "  [0x9]
http://es.reuters.com Spain  &nbsp;|&nbsp;[\r][\n]"
2007/12/02 16:46:45:187 IST [DEBUG] content - << "  [0x9]
http://uk.reuters.com United&nbsp;Kingdom  &nbsp;|&nbsp;[\r][\n]"
2007/12/02 16:46:45:187 IST [DEBUG] content - << "  [0x9]
http://www.reuters.com United&nbsp;States </p>[\r][\n]"
2007/12/02 16:46:45:187 IST [DEBUG] content - << "[\r][\n]"
2007/12/02 16:46:45:187 IST [DEBUG] content - << "    <div
class="dividerInlineH">&nbsp;</div>[\r][\n]"
2007/12/02 16:46:45:187 IST [DEBUG] content - << "    <p>Reuters is the
world's largest international multimedia news agency, providing investing
news, world news, business news, technology news, headline news, small
business news, news alerts, personal finance, stock market, and mutual funds
information available on Reuters.com, video, mobile, and interactive
television platforms. Reuters journalists are subject to the Reuters
Editorial Handbook which requires fair presentation and disclosure of
relevant interests.</p>[\r][\n]"
2007/12/02 16:46:45:187 IST [DEBUG] content - << "    <p
class="footnote">NYSE and AMEX quotes delayed by at least 20 minutes. Nasdaq
delayed by at least 15 minutes. For a complete list of exchanges and delays,
please  javascript:commonPopup('/info/disclaimer', 540, 525, 1, 'bottomNav')
click here .</p>[\r][\n]"
2007/12/02 16:46:45:187 IST [DEBUG] content - << "[\r][\n]"
2007/12/02 16:46:45:187 IST [DEBUG] content - << "  </div>[\r][\n]"
2007/12/02 16:46:45:187 IST [DEBUG] content - << "[\r][\n]"
2007/12/02 16:46:45:187 IST [DEBUG] content - << "</div>[\r][\n]"
2007/12/02 16:46:45:187 IST [DEBUG] content - << "[\r][\n]"
2007/12/02 16:46:45:187 IST [DEBUG] content - << "[\r][\n]"
2007/12/02 16:46:45:187 IST [DEBUG] content - << "<script
src=http://rtt.rapt.com/web-im/track.js
type="text/javascript"></script>[\r][\n]"
2007/12/02 16:46:45:187 IST [DEBUG] content - << "    <script
type="text/javascript">[\r][\n]"
2007/12/02 16:46:45:187 IST [DEBUG] content - << "        if
(typeof(window.raptAs) != 'undefined' && raptAs.length > 0)[\r][\n]"
2007/12/02 16:46:45:187 IST [DEBUG] content - << "        {[\r][\n]"
2007/12/02 16:46:45:187 IST [DEBUG] content - << "           
_org="Reuters";[\r][\n]"
2007/12/02 16:46:45:187 IST [DEBUG] content - << "           
Rapt_Track("z=reuters.com.dart/business/topnews/bankingfinancial/article,as="
+ raptAs);[\r][\n]"
2007/12/02 16:46:45:187 IST [DEBUG] content - << "        }[\r][\n]"
2007/12/02 16:46:45:187 IST [DEBUG] content - << "    </script>[\r][\n]"
2007/12/02 16:46:45:187 IST [DEBUG] content - << "<!--[if !IE]> END
baseFooterHTML <![endif]-->[\r][\n]"
2007/12/02 16:46:45:187 IST [DEBUG] content - << "<!--[if !IE]> BEGIN
baseFooter <![endif]-->[\n]"
2007/12/02 16:46:45:187 IST [DEBUG] content - << "<script
language="javascript">doLoginMenu(); doWeatherFrame();</script>[\n]"
2007/12/02 16:46:45:187 IST [DEBUG] content - << "<META
name="DCSext.rChannel" content="Business">[\n]"
2007/12/02 16:46:45:187 IST [DEBUG] content - << "<META
name="DCSext.rCountry" content="US">[\n]"
2007/12/02 16:46:45:187 IST [DEBUG] content - << "<META name="WT.cg_n"
content="Business - Banking and Financial">[\n]"
2007/12/02 16:46:45:187 IST [DEBUG] content - << "<META name="WT.cg_s"
content="">[\n]"
2007/12/02 16:46:45:187 IST [DEBUG] content - << "<META
name="DCSext.DartZone"
content="reuters.com.dart/business/topnews/bankingfinancial/article">[\n]"
2007/12/02 16:46:45:187 IST [DEBUG] content - << "<!--[if !IE]> START OF
SmartSource Data Collector TAG <![endif]-->[\n]"
2007/12/02 16:46:45:187 IST [DEBUG] content - << "<!--[if !IE]> Copyright
(c) 1996-2006 WebTrends Inc.  All rights reserved. <![endif]-->[\n]"
2007/12/02 16:46:45:187 IST [DEBUG] content - << "<SCRIPT
TYPE="text/javascript"><!--[if !IE]>[\n]"
2007/12/02 16:46:45:187 IST [DEBUG] content - <<
"setModuleImpressionTracking();[\n]"
2007/12/02 16:46:45:187 IST [DEBUG] content - << "[\n]"
2007/12/02 16:46:45:187 IST [DEBUG] content - << "var
gDomain="statse.webtrendslive.com";[\n]"
2007/12/02 16:46:45:187 IST [DEBUG] content - << "var
gDcsId="dcsncwimc10000kzgoor3wv9x_3f2v";[\n]"
2007/12/02 16:46:45:187 IST [DEBUG] content - << "var gFpc="WT_FPC";[\n]"
2007/12/02 16:46:45:187 IST [DEBUG] content - << "var gConvert=true;[\n]"
2007/12/02 16:46:45:187 IST [DEBUG] content - << "if
((typeof(gConvert)!="undefined")&&gConvert&&(document.cookie.indexOf(gFpc+"=")==-1)&&(document.cookie.indexOf("WTLOPTOUT=")==-1)){[\n]"
2007/12/02 16:46:45:187 IST [DEBUG] content - <<
"[0x9]document.write("<SCR"+"IPT TYPE='text/javascript'
SRC='"+"http"+(window.location.protocol.indexOf('https:')==0?'s':'')+"://"+gDomain+"/"+gDcsId+"/wtid.js"+"'><\/SCR"+"IPT>");[\n]"
2007/12/02 16:46:45:187 IST [DEBUG] content - << "}[\n]"
2007/12/02 16:46:45:187 IST [DEBUG] content - << "//<![endif]-->[\n]"
2007/12/02 16:46:45:187 IST [DEBUG] content - << "</SCRIPT>[\n]"
2007/12/02 16:46:45:187 IST [DEBUG] content - << "<script
language="JavaScript" src="/resources/js/dcs_tag.js"></script>[\n]"
2007/12/02 16:46:45:187 IST [DEBUG] content - << "<NOSCRIPT>[\n]"
2007/12/02 16:46:45:187 IST [DEBUG] content - << "
http://statse.webtrendslive.com/dcsncwimc10000kzgoor3wv9x_3f2v/njs.gif?dcsuri=/nojavascript&amp;WT.js=No
[\n]"
2007/12/02 16:46:45:187 IST [DEBUG] content - << "</NOSCRIPT>[\n]"
2007/12/02 16:46:45:187 IST [DEBUG] content - << "<!--[if !IE]> END OF
SmartSource Data Collector TAG <![endif]-->[\n]"
2007/12/02 16:46:45:187 IST [DEBUG] content - << "<script
language="JavaScript" src="/resources/js/dm_clientUS.js"></script>[\n]"
2007/12/02 16:46:45:187 IST [DEBUG] content - << "<script
language="JavaScript">[\n]"
2007/12/02 16:46:45:187 IST [DEBUG] content - << "function revSciPixel()
{[\n]"
2007/12/02 16:46:45:187 IST [DEBUG] content - << "  DM_cat("reuters.com.dart
> business > topnews > bankingfinancial > article");DM_tag();[\n]"
2007/12/02 16:46:45:187 IST [DEBUG] content - << "}[\n]"
2007/12/02 16:46:45:187 IST [DEBUG] content - << "revSciPixel();[\n]"
2007/12/02 16:46:45:187 IST [DEBUG] content - << "</script>[\n]"
2007/12/02 16:46:45:187 IST [DEBUG] content - << "<noscript>
/resources/images/noscript.gif </noscript>[\n]"
2007/12/02 16:46:45:187 IST [DEBUG] content - << "</body>[\n]"
2007/12/02 16:46:45:187 IST [DEBUG] content - << "</html>[\n]"
2007/12/02 16:46:45:187 IST [DEBUG] content - << "<!--[if !IE]> END
baseFooter <![endif]-->[\n]"
2007/12/02 16:46:45:187 IST [DEBUG] content - << "[\n]"
2007/12/02 16:46:45:187 IST [DEBUG] content - << "[\r]"
2007/12/02 16:46:45:187 IST [DEBUG] content - << "[\n]"
2007/12/02 16:46:45:187 IST [DEBUG] content - << "0"
2007/12/02 16:46:45:187 IST [DEBUG] content - << "[\r]"
2007/12/02 16:46:45:187 IST [DEBUG] content - << "[\n]"
2007/12/02 16:46:45:187 IST [DEBUG] content - << "[\r]"
2007/12/02 16:46:45:187 IST [DEBUG] content - << "[\n]"
2007/12/02 16:46:45:187 IST [DEBUG] HttpMethodBase - Resorting to protocol
version default close connection policy
2007/12/02 16:46:45:187 IST [DEBUG] HttpMethodBase - Should NOT close
connection, using HTTP/1.1
FILE: SxParseHTML.java PARENT CALLING_METHOD: init LINE: 59 METHOD:
initParseHTML
MESSAGE: DownLoad completed   Sun, 02 Dec 2007 16:46:45 +0530

2007/12/02 16:46:45:187 IST [DEBUG] HttpConnection - Releasing connection
back to connection manager.
2007/12/02 16:46:45:187 IST [DEBUG] MultiThreadedHttpConnectionManager -
Freeing connection,
hostConfig=HostConfiguration[host=http://www.reuters.com]
2007/12/02 16:46:45:187 IST [DEBUG] IdleConnectionHandler - Adding
connection at: 1196594205187
2007/12/02 16:46:45:187 IST [DEBUG] MultiThreadedHttpConnectionManager -
No-one waiting on host pool, notifying next waiting thread.
FILE: SxGetOneURL.java PARENT CALLING_METHOD: run LINE: 89 METHOD: myRun
MESSAGE: Inside getOneURL run  
:http://www.reuters.com/resources/css/rcom-articlenew.css  :Sun, 02 Dec 2007
16:46:45 +0530

FILE: SxGetOneURL.java PARENT CALLING_METHOD: run LINE: 89 METHOD: myRun
MESSAGE: Inside getOneURL run  
:http://www.reuters.com/resources/css/adbuttons.css  :Sun, 02 Dec 2007
16:46:45 +0530

2007/12/02 16:46:45:203 IST [DEBUG] MultiThreadedHttpConnectionManager -
HttpConnectionManager.getConnection:  config =
HostConfiguration[host=http://www.reuters.com], timeout = 0
2007/12/02 16:46:45:203 IST [DEBUG] MultiThreadedHttpConnectionManager -
Getting free connection,
hostConfig=HostConfiguration[host=http://www.reuters.com]
2007/12/02 16:46:45:203 IST [DEBUG] MultiThreadedHttpConnectionManager -
HttpConnectionManager.getConnection:  config =
HostConfiguration[host=http://www.reuters.com], timeout = 0
2007/12/02 16:46:45:203 IST [DEBUG] MultiThreadedHttpConnectionManager -
Allocating new connection,
hostConfig=HostConfiguration[host=http://www.reuters.com]
2007/12/02 16:46:45:203 IST [DEBUG] HttpConnection - Open connection to
www.reuters.com:80
FILE: SxGetOneURL.java PARENT CALLING_METHOD: run LINE: 89 METHOD: myRun
MESSAGE: Inside getOneURL run  
:http://www.reuters.com/resources/css/rcom-patch-ie7.css  :Sun, 02 Dec 2007
16:46:45 +0530

2007/12/02 16:46:45:203 IST [DEBUG] header - >> "GET
/resources/css/adbuttons.css HTTP/1.1[\r][\n]"
2007/12/02 16:46:45:203 IST [DEBUG] HttpMethodBase - Adding Host request
header
2007/12/02 16:46:45:203 IST [DEBUG] header - >> "accept-encoding: gzip, zip,
deflate, chunked[\r][\n]"
2007/12/02 16:46:45:203 IST [DEBUG] header - >> "User-Agent: Mozilla/5.0
(compatible; MSIE 6.0; Windows NT 5.1)[\r][\n]"
2007/12/02 16:46:45:203 IST [DEBUG] header - >> "Host:
www.reuters.com[\r][\n]"
2007/12/02 16:46:45:203 IST [DEBUG] header - >> "[\r][\n]"
2007/12/02 16:46:45:203 IST [DEBUG] HttpMethodDirector - Closing the
connection.
2007/12/02 16:46:45:203 IST [INFO] HttpMethodDirector - I/O exception
(org.apache.commons.httpclient.NoHttpResponseException) caught when
processing request: The server www.reuters.com failed to respond
2007/12/02 16:46:45:203 IST [DEBUG] HttpMethodDirector - The server
www.reuters.com failed to respond
<org.apache.commons.httpclient.NoHttpResponseException: The server
www.reuters.com failed to
respond>org.apache.commons.httpclient.NoHttpResponseException: The server
www.reuters.com failed to respond
	at
org.apache.commons.httpclient.HttpMethodBase.readStatusLine(HttpMethodBase.java:1835)
	at
org.apache.commons.httpclient.HttpMethodBase.readResponse(HttpMethodBase.java:1590)
	at
org.apache.commons.httpclient.HttpMethodBase.execute(HttpMethodBase.java:995)
	at
org.apache.commons.httpclient.HttpMethodDirector.executeWithRetry(HttpMethodDirector.java:397)
	at
org.apache.commons.httpclient.HttpMethodDirector.executeMethod(HttpMethodDirector.java:170)
	at
org.apache.commons.httpclient.HttpClient.executeMethod(HttpClient.java:396)
	at
org.apache.commons.httpclient.HttpClient.executeMethod(HttpClient.java:346)
	at sxPk.sxURLPk.SxGetOneURL.myRun(SxGetOneURL.java:190)
	at sxPk.sxURLPk.SxAbstractRunnable.run(SxAbstractRunnable.java:46)
	at java.lang.Thread.run(Unknown Source)

2007/12/02 16:46:45:203 IST [INFO] HttpMethodDirector - Retrying request
2007/12/02 16:46:45:203 IST [DEBUG] HttpConnection - Open connection to
www.reuters.com:80
2007/12/02 16:46:54:203 IST [DEBUG] MultiThreadedHttpConnectionManager -
HttpConnectionManager.getConnection:  config =
HostConfiguration[host=http://www.reuters.com], timeout = 0
2007/12/02 16:46:54:203 IST [DEBUG] MultiThreadedHttpConnectionManager -
Allocating new connection,
hostConfig=HostConfiguration[host=http://www.reuters.com]
2007/12/02 16:46:54:203 IST [DEBUG] HttpConnection - Open connection to
www.reuters.com:80
2007/12/02 16:46:54:500 IST [DEBUG] header - >> "GET
/resources/css/adbuttons.css HTTP/1.1[\r][\n]"
2007/12/02 16:46:54:500 IST [DEBUG] HttpMethodBase - Adding Host request
header
2007/12/02 16:46:54:500 IST [DEBUG] header - >> "accept-encoding: gzip, zip,
deflate, chunked[\r][\n]"
2007/12/02 16:46:54:500 IST [DEBUG] header - >> "User-Agent: Mozilla/5.0
(compatible; MSIE 6.0; Windows NT 5.1)[\r][\n]"
2007/12/02 16:46:54:500 IST [DEBUG] header - >> "Host:
www.reuters.com[\r][\n]"
2007/12/02 16:46:54:500 IST [DEBUG] header - >> "[\r][\n]"
2007/12/02 16:46:54:796 IST [DEBUG] header - << "HTTP/1.1 200 OK[\r][\n]"
2007/12/02 16:46:54:796 IST [DEBUG] header - << "Date: Sun, 02 Dec 2007
11:17:19 GMT[\r][\n]"
2007/12/02 16:46:54:796 IST [DEBUG] header - << "Server: Apache[\r][\n]"
2007/12/02 16:46:54:796 IST [DEBUG] header - << "Last-Modified: Mon, 08 Oct
2007 15:59:05 GMT[\r][\n]"
2007/12/02 16:46:54:796 IST [DEBUG] header - << "Accept-Ranges:
bytes[\r][\n]"
2007/12/02 16:46:54:796 IST [DEBUG] header - << "Content-Length:
4748[\r][\n]"
2007/12/02 16:46:54:796 IST [DEBUG] header - << "Cache-Control:
max-age=14400[\r][\n]"
2007/12/02 16:46:54:796 IST [DEBUG] header - << "Expires: Sun, 02 Dec 2007
15:17:19 GMT[\r][\n]"
2007/12/02 16:46:54:796 IST [DEBUG] header - << "Content-Type:
text/css[\r][\n]"
FILE: SxResultsParseHTML.java PARENT CALLING_METHOD: doneThreadDownload
LINE: 212 METHOD: init
MESSAGE: Start Parsing   http://www.reuters.com/resources/css/adbuttons.css  
.css   Sun, 02 Dec 2007 16:46:54 +0530

2007/12/02 16:46:58:718 IST [DEBUG] content - << ".mpuPos{-moz-box-sizing:
border-box; float:left; display:inline; background: #f0f0f0
url("http://www.reuters.com/resources/images/mpuGradient.gif") left 19px
repeat-x;}[\r][\n]"
2007/12/02 16:46:58:718 IST [DEBUG] content - << ".bannerPos, .horizPos,
.horizPos800 {-moz-box-sizing: border-box; float:left; display:inline;
background: #f0f0f0
url("http://www.reuters.com/resources/images/bannerGradient.gif") left 19px
repeat-x;}[\r][\n]"
2007/12/02 16:46:58:718 IST [DEBUG] content - << ".columnPos
{-moz-box-sizing: border-box; float:left; display:inline; background:
#f0f0f0 url("http://www.reuters.com/resources/images/mpuGradient.gif") left
19px repeat-x;}[\r][\n]"
2007/12/02 16:46:58:718 IST [DEBUG] content - << ".articlePos
{-moz-box-sizing: border-box; float:left; display:inline; background-color:
#ebebeb; margin-bottom:19px}[\r][\n]"
2007/12/02 16:46:58:718 IST [DEBUG] content - << ".contentPos,
.navPos{-moz-box-sizing: border-box; float:left; display:inline; background:
#f0f0f0 url("http://www.reuters.com/resources/images/mpuGradient.gif") left
19px repeat-x;}[\r][\n]"
2007/12/02 16:46:58:718 IST [DEBUG] content - << ".adButtonModule .textAd,
.adButtonModule .textAd a{margin:0; padding:0; display:inline;
font-size:10px; color:#4b4b4b; clear:none; line-height:11px}[\r][\n]"
2007/12/02 16:46:58:718 IST [DEBUG] content - << "/*three*/[\r][\n]"
2007/12/02 16:46:58:718 IST [DEBUG] content - << ".bannerPos {height:90px;
margin:0; width:728px;}[\r][\n]"
2007/12/02 16:46:58:718 IST [DEBUG] content - << ".bannerPos .adButtonModule
{ padding:0; margin:6px 97px 0px 0px; float:left; width:170px; height:30px;
clear:none; display:inline;  }[\r][\n]"
2007/12/02 16:46:58:718 IST [DEBUG] content - << ".bannerPos
.first{margin-left:12px;}[\r][\n]"
2007/12/02 16:46:58:718 IST [DEBUG] content - << ".bannerPos
.last{display:none}[\r][\n]"
2007/12/02 16:46:58:718 IST [DEBUG] content - << ".bannerPos
.adRow{margin-right:0}[\r][\n]"
2007/12/02 16:46:58:718 IST [DEBUG] content - << "[\r][\n]"
2007/12/02 16:46:58:718 IST [DEBUG] content - << "[\r][\n]"
2007/12/02 16:46:58:718 IST [DEBUG] content - << "/*three*/[\r][\n]"
2007/12/02 16:46:58:718 IST [DEBUG] content - << ".horizPos800 {height:95px;
margin:0; width:100%;}[\r][\n]"
2007/12/02 16:46:58:718 IST [DEBUG] content - << ".horizPos800
.adButtonModule { padding:0; margin:6px 123px 0px 0px; float:left;
width:170px; height:30px; clear:none; display:inline;}[\r][\n]"
2007/12/02 16:46:58:718 IST [DEBUG] content - << ".horizPos800
.first{margin-left:12px;}[\r][\n]"
2007/12/02 16:46:58:718 IST [DEBUG] content - << ".horizPos800
.last{display:none}[\r][\n]"
2007/12/02 16:46:58:718 IST [DEBUG] content - << ".horizPos800
.adRow{margin-right:0}[\r][\n]"
2007/12/02 16:46:58:718 IST [DEBUG] content - << "[\r][\n]"
2007/12/02 16:46:58:718 IST [DEBUG] content - << "[\r][\n]"
2007/12/02 16:46:58:718 IST [DEBUG] content - << "/*three*/[\r][\n]"
2007/12/02 16:46:58:718 IST [DEBUG] content - << ".horizPos {height:92px;
margin:0 0 8px 0; width:992px;}[\r][\n]"
2007/12/02 16:46:58:718 IST [DEBUG] content - << ".horizPos .adButtonModule
{ padding:0; margin:6px 96px 0px 0px; float:left; width:170px; height:30px;
clear:none; display:inline;  }[\r][\n]"
2007/12/02 16:46:58:718 IST [DEBUG] content - << ".horizPos
.first{margin-left:144px;}[\r][\n]"
2007/12/02 16:46:58:718 IST [DEBUG] content - << ".horizPos
.last{display:none}[\r][\n]"
2007/12/02 16:46:58:718 IST [DEBUG] content - << "[\r][\n]"
2007/12/02 16:46:58:718 IST [DEBUG] content - << "[\r][\n]"
2007/12/02 16:46:58:718 IST [DEBUG] content - << ".mpuPos{display:inline;
float:left; position:relative; width:300px; height:250px;
overflow:hidden}[\r][\n]"
2007/12/02 16:46:58:718 IST [DEBUG] content - << ".mpuPos
.adButton{float:left; display:inline; position:relative; width:170px;
height:50px;}[\r][\n]"
2007/12/02 16:46:58:718 IST [DEBUG] content - << ".mpuPos .adButtonModule
{float:left; }[\r][\n]"
2007/12/02 16:46:58:718 IST [DEBUG] content - << ".mpuPos
.adButton{margin:6px 0 0 10px; }[\r][\n]"
2007/12/02 16:46:58:718 IST [DEBUG] content - << ".mpuPos .first
.adButton{margin-top:10px; }[\r][\n]"
2007/12/02 16:46:58:718 IST [DEBUG] content - << ".mpuPos
.textAd{float:left; width:106px; margin-top: 14px; margin-left:8px;
position:relative; display:inline;}[\r][\n]"
2007/12/02 16:46:58:718 IST [DEBUG] content - << "[\r][\n]"
2007/12/02 16:46:58:718 IST [DEBUG] content - << "[\r][\n]"
2007/12/02 16:46:58:718 IST [DEBUG] content - << ".columnPos
.adButton{float:left; display:inline; position:relative; left:25px}[\r][\n]"
2007/12/02 16:46:58:718 IST [DEBUG] content - << ".columnPos{display:inline;
float:left; position:relative; overflow:hidden}[\r][\n]"
2007/12/02 16:46:58:718 IST [DEBUG] content - << ".columnPos
.textAd{float:left; margin-left:12px; margin-bottom:0px; display:inline;
clear:left; width:100%}[\r][\n]"
2007/12/02 16:46:58:718 IST [DEBUG] content - << ".columnPos .adButtonModule
{clear:none; display:block; float:left; text-align:center;
margin-bottom:10px}[\r][\n]"
2007/12/02 16:46:58:718 IST [DEBUG] content - << ".columnPos{margin:0;
width:100% }[\r][\n]"
2007/12/02 16:46:58:718 IST [DEBUG] content - << ".columnPos
.adButton{margin:0px 0 0px 10px; }[\r][\n]"
2007/12/02 16:46:58:718 IST [DEBUG] content - << ".columnPos .first {
margin-top:10px}[\r][\n]"
2007/12/02 16:46:58:718 IST [DEBUG] content - << "[\r][\n]"
2007/12/02 16:46:58:718 IST [DEBUG] content - << ".adButtonBoxHeader
{background: #f0f0f0; border:0; display:block; padding: 4px 4px 3px 10px;
line-spacing:1 }[\r][\n]"
2007/12/02 16:46:58:718 IST [DEBUG] content - << ".adButtonBox h3
{font-size: 11px; text-transform: none; display: inline;}[\r][\n]"
2007/12/02 16:46:58:718 IST [DEBUG] content - << ".adButtonBox h3
.adtext{text-transform:lowercase; font-size:9px; color:#999;
padding-top:6px;}[\r][\n]"FILE: SxGetOneURL.java PARENT CALLING_METHOD: run
LINE: 89 METHOD: myRun
MESSAGE: Inside getOneURL run  
:http://www.reuters.com/resources/js/sitelife_rec_daapi02C-nc.js  :Sun, 02
Dec 2007 16:46:58 +0530

FILE: SxGetOneURL.java PARENT CALLING_METHOD: run LINE: 89 METHOD: myRun
MESSAGE: Inside getOneURL run   :http://www.reuters.com/resources/js/main.js 
:Sun, 02 Dec 2007 16:46:58 +0530

FILE: SxGetOneURL.java PARENT CALLING_METHOD: run LINE: 89 METHOD: myRun
MESSAGE: Inside getOneURL run  
:http://cdn1.sphere.com/widgets/sphereit/js?siteid=reuters  :Sun, 02 Dec
2007 16:46:58 +0530

FILE: SxGetOneURL.java PARENT CALLING_METHOD: run LINE: 89 METHOD: myRun
MESSAGE: Inside getOneURL run   :http://www.reuters.com/resources/js/dart.js 
:Sun, 02 Dec 2007 16:46:58 +0530

FILE: SxGetOneURL.java PARENT CALLING_METHOD: run LINE: 89 METHOD: myRun
MESSAGE: Inside getOneURL run  
:http://www.reuters.com/resources/js/topbar.js  :Sun, 02 Dec 2007 16:46:58
+0530


2007/12/02 16:46:58:734 IST [DEBUG] MultiThreadedHttpConnectionManager -
HttpConnectionManager.getConnection:  config =
HostConfiguration[host=http://cdn1.sphere.com], timeout = 0
2007/12/02 16:46:58:734 IST [DEBUG] MultiThreadedHttpConnectionManager -
Allocating new connection,
hostConfig=HostConfiguration[host=http://cdn1.sphere.com]
2007/12/02 16:46:58:734 IST [DEBUG] HttpConnection - Open connection to
cdn1.sphere.com:80
2007/12/02 16:46:58:734 IST [DEBUG] MultiThreadedHttpConnectionManager -
HttpConnectionManager.getConnection:  config =
HostConfiguration[host=http://www.reuters.com], timeout = 0
2007/12/02 16:46:58:734 IST [DEBUG] MultiThreadedHttpConnectionManager -
Allocating new connection,
hostConfig=HostConfiguration[host=http://www.reuters.com]
2007/12/02 16:46:58:734 IST [DEBUG] HttpConnection - Open connection to
www.reuters.com:80
2007/12/02 16:46:58:734 IST [DEBUG] MultiThreadedHttpConnectionManager -
HttpConnectionManager.getConnection:  config =
HostConfiguration[host=http://www.reuters.com], timeout = 0
2007/12/02 16:46:58:734 IST [DEBUG] MultiThreadedHttpConnectionManager -
Allocating new connection,
hostConfig=HostConfiguration[host=http://www.reuters.com]
2007/12/02 16:46:58:734 IST [DEBUG] MultiThreadedHttpConnectionManager -
HttpConnectionManager.getConnection:  config =
HostConfiguration[host=http://www.reuters.com], timeout = 0
2007/12/02 16:46:58:734 IST [DEBUG] MultiThreadedHttpConnectionManager -
HttpConnectionManager.getConnection:  config =
HostConfiguration[host=http://www.reuters.com], timeout = 0
2007/12/02 16:46:58:734 IST [DEBUG] content - << "[\r][\n]"
2007/12/02 16:46:58:734 IST [DEBUG] content - << "[\r][\n]"
2007/12/02 16:46:58:734 IST [DEBUG] content - << "[\r][\n]"
2007/12/02 16:46:58:734 IST [DEBUG] content - << ".articlePos
.adButton{float:left; display:inline; position:relative;}[\r][\n]"
2007/12/02 16:46:58:734 IST [DEBUG] content - <<
".articlePos{display:inline; float:left; position:relative; overflow:hidden;
width:192px;}[\r][\n]"
2007/12/02 16:46:58:734 IST [DEBUG] content - << ".articlePos h3 .adtext
{color:#6f6f6f}[\r][\n]"
2007/12/02 16:46:58:734 IST [DEBUG] content - << ".articlePos .textAd a,
.articlePos .textAd a:hover, .articlePos .textAd a:visited{float:left;
margin-left:12px; margin-bottom:6px; display:inline; clear:left;
width:160px;}[\r][\n]"
2007/12/02 16:46:58:734 IST [DEBUG] content - << ".articlePos
.adButtonModule {display:block; margin-bottom:10px}[\r][\n]"
2007/12/02 16:46:58:734 IST [DEBUG] content - << ".articlePos
.adButton{margin:0px 0 0px 10px; }[\r][\n]"
2007/12/02 16:46:58:734 IST [DEBUG] content - << ".articlePos .first {
margin-top:10px}[\r][\n]"
2007/12/02 16:46:58:734 IST [DEBUG] content - << ".articlePos
.adButtonBoxHeader {display:block; background:none; background-color:
#dadada }[\r][\n]"
2007/12/02 16:46:58:734 IST [DEBUG] content - << "[\r][\n]"
2007/12/02 16:46:58:734 IST [DEBUG] content - << "[\r][\n]"
2007/12/02 16:46:58:734 IST [DEBUG] content - << ".inlineRelatedContent .ad
{margin-bottom: 0px;}[\r][\n]"
2007/12/02 16:46:58:734 IST [DEBUG] content - << "[\r][\n]"
2007/12/02 16:46:58:734 IST [DEBUG] content - << "[\r][\n]"
2007/12/02 16:46:58:734 IST [DEBUG] content - << ".contentPos{float:left;
width:495px;}[\r][\n]"
2007/12/02 16:46:58:734 IST [DEBUG] content - << ".contentPos
.adButtonModule {float:left; display:inline; margin:10px 51px 0px 0px;
width:170px}[\r][\n]"
2007/12/02 16:46:58:734 IST [DEBUG] content - << ".contentPos .first,
.contentPos .adRow{margin-left:51px; clear:left}[\r][\n]"
2007/12/02 16:46:58:734 IST [DEBUG] content - << ".contentPos .adRow,
.contentPos .last{margin-bottom:10px;}[\r][\n]"
2007/12/02 16:46:58:734 IST [DEBUG] content - << ".contentPos
.last{margin-right:0px;}[\r][\n]"
2007/12/02 16:46:58:734 IST [DEBUG] content - << ".contentPos
.textAd{float:left; width:170px; position:relative; display:inline;
clear:left;}[\r][\n]"
2007/12/02 16:46:58:734 IST [DEBUG] content - << "[\r][\n]"
2007/12/02 16:46:58:734 IST [DEBUG] content - << ".navPos
.adButton{float:left; display:inline; }[\r][\n]"
2007/12/02 16:46:58:734 IST [DEBUG] content - << ".navPos{width:155px;
overflow:hidden; padding-bottom:6px}[\r][\n]"
2007/12/02 16:46:58:734 IST [DEBUG] content - << ".navPos
.textAd{display:block; clear:left; text-align:left; width:120px;
margin:0;}[\r][\n]"
2007/12/02 16:46:58:734 IST [DEBUG] content - << ".navPos .adButtonModule
{float:left; margin:0 0 2px 17px; height:88px; overflow:hidden; clear:left;
width:120px; display:inline}[\r][\n]"
2007/12/02 16:46:58:734 IST [DEBUG] content - << ".navPos .first
{margin-top:10px}[\r][\n]"
2007/12/02 16:46:58:734 IST [DEBUG] content - << ".navPos .adButtonBoxHeader
h3 .adtext {display:none; padding:0}[\r][\n]"
2007/12/02 16:46:58:734 IST [DEBUG] content - << ".navPos
.adButtonBoxHeader{padding-left:6px;}[\r][\n]"
2007/12/02 16:46:58:734 IST [DEBUG] content - << ".textAd, .adButtonBox h3,
.adButtonBox h3 .adtext{ font-family:Arial, Helvetica, sans-serif}"
2007/12/02 16:46:58:734 IST [DEBUG] HttpMethodBase - Resorting to protocol
version default close connection policy
2007/12/02 16:46:58:734 IST [DEBUG] HttpMethodBase - Should NOT close
connection, using HTTP/1.1
2007/12/02 16:46:58:734 IST [DEBUG] HttpConnection - Releasing connection
back to connection manager.
2007/12/02 16:46:58:734 IST [DEBUG] MultiThreadedHttpConnectionManager -
Freeing connection,
hostConfig=HostConfiguration[host=http://www.reuters.com]
2007/12/02 16:46:58:734 IST [DEBUG] IdleConnectionHandler - Adding
connection at: 1196594218734
2007/12/02 16:46:58:734 IST [DEBUG] MultiThreadedHttpConnectionManager -
No-one waiting on host pool, notifying next waiting thread.
2007/12/02 16:46:58:734 IST [DEBUG] MultiThreadedHttpConnectionManager -
Getting free connection,
hostConfig=HostConfiguration[host=http://www.reuters.com]
2007/12/02 16:46:58:734 IST [DEBUG] header - >> "GET
/resources/js/sitelife_rec_daapi02C-nc.js HTTP/1.1[\r][\n]"
2007/12/02 16:46:58:734 IST [DEBUG] HttpMethodBase - Adding Host request
header
2007/12/02 16:46:58:734 IST [DEBUG] header - >> "accept-encoding: gzip, zip,
deflate, chunked[\r][\n]"
2007/12/02 16:46:58:734 IST [DEBUG] header - >> "User-Agent: Mozilla/5.0
(compatible; MSIE 6.0; Windows NT 5.1)[\r][\n]"
2007/12/02 16:46:58:734 IST [DEBUG] header - >> "Host:
www.reuters.com[\r][\n]"
2007/12/02 16:46:58:734 IST [DEBUG] header - >> "[\r][\n]"
2007/12/02 16:46:58:734 IST [DEBUG] HttpMethodDirector - Closing the
connection.
2007/12/02 16:46:58:734 IST [INFO] HttpMethodDirector - I/O exception
(org.apache.commons.httpclient.NoHttpResponseException) caught when
processing request: The server www.reuters.com failed to respond
2007/12/02 16:46:58:734 IST [DEBUG] HttpMethodDirector - The server
www.reuters.com failed to respond
<org.apache.commons.httpclient.NoHttpResponseException: The server
www.reuters.com failed to
respond>org.apache.commons.httpclient.NoHttpResponseException: The server
www.reuters.com failed to respond
	at
org.apache.commons.httpclient.HttpMethodBase.readStatusLine(HttpMethodBase.java:1835)
	at
org.apache.commons.httpclient.HttpMethodBase.readResponse(HttpMethodBase.java:1590)
	at
org.apache.commons.httpclient.HttpMethodBase.execute(HttpMethodBase.java:995)
	at
org.apache.commons.httpclient.HttpMethodDirector.executeWithRetry(HttpMethodDirector.java:397)
	at
org.apache.commons.httpclient.HttpMethodDirector.executeMethod(HttpMethodDirector.java:170)
	at
org.apache.commons.httpclient.HttpClient.executeMethod(HttpClient.java:396)
	at
org.apache.commons.httpclient.HttpClient.executeMethod(HttpClient.java:346)
	at sxPk.sxURLPk.SxGetOneURL.myRun(SxGetOneURL.java:190)
	at sxPk.sxURLPk.SxAbstractRunnable.run(SxAbstractRunnable.java:46)
	at java.lang.Thread.run(Unknown Source)

2007/12/02 16:46:58:734 IST [INFO] HttpMethodDirector - Retrying request
2007/12/02 16:46:58:734 IST [DEBUG] HttpConnection - Open connection to
www.reuters.com:80
2007/12/02 16:46:58:734 IST [DEBUG] HttpConnection - Open connection to
www.reuters.com:80
2007/12/02 16:46:58:734 IST [DEBUG] MultiThreadedHttpConnectionManager -
Unable to get a connection, waiting...,
hostConfig=HostConfiguration[host=http://www.reuters.com]
2007/12/02 16:46:59:000 IST [DEBUG] header - >> "GET
/resources/css/rcom-patch-ie7.css HTTP/1.1[\r][\n]"
2007/12/02 16:46:59:000 IST [DEBUG] HttpMethodBase - Adding Host request
header
2007/12/02 16:46:59:000 IST [DEBUG] header - >> "accept-encoding: gzip, zip,
deflate, chunked[\r][\n]"
2007/12/02 16:46:59:000 IST [DEBUG] header - >> "User-Agent: Mozilla/5.0
(compatible; MSIE 6.0; Windows NT 5.1)[\r][\n]"
2007/12/02 16:46:59:000 IST [DEBUG] header - >> "Host:
www.reuters.com[\r][\n]"
2007/12/02 16:46:59:000 IST [DEBUG] header - >> "[\r][\n]"
2007/12/02 16:46:59:000 IST [DEBUG] header - >> "GET
/resources/css/rcom-articlenew.css HTTP/1.1[\r][\n]"
2007/12/02 16:46:59:000 IST [DEBUG] HttpMethodBase - Adding Host request
header
2007/12/02 16:46:59:000 IST [DEBUG] header - >> "accept-encoding: gzip, zip,
deflate, chunked[\r][\n]"
2007/12/02 16:46:59:000 IST [DEBUG] header - >> "User-Agent: Mozilla/5.0
(compatible; MSIE 6.0; Windows NT 5.1)[\r][\n]"
2007/12/02 16:46:59:000 IST [DEBUG] header - >> "Host:
www.reuters.com[\r][\n]"
2007/12/02 16:46:59:000 IST [DEBUG] header - >> "[\r][\n]"
2007/12/02 16:46:59:296 IST [DEBUG] header - << "HTTP/1.1 200 OK[\r][\n]"
2007/12/02 16:46:59:296 IST [DEBUG] header - << "Date: Sun, 02 Dec 2007
11:17:24 GMT[\r][\n]"
2007/12/02 16:46:59:296 IST [DEBUG] header - << "Server: Apache[\r][\n]"
2007/12/02 16:46:59:296 IST [DEBUG] header - << "Last-Modified: Tue, 16 Oct
2007 21:08:31 GMT[\r][\n]"
2007/12/02 16:46:59:296 IST [DEBUG] header - << "Accept-Ranges:
bytes[\r][\n]"
2007/12/02 16:46:59:296 IST [DEBUG] header - << "Content-Length:
176[\r][\n]"
2007/12/02 16:46:59:296 IST [DEBUG] header - << "Cache-Control:
max-age=14400[\r][\n]"
2007/12/02 16:46:59:312 IST [DEBUG] header - << "Expires: Sun, 02 Dec 2007
15:17:24 GMT[\r][\n]"
FILE: SxResultsParseHTML.java PARENT CALLING_METHOD: doneThreadDownload
LINE: 212 METHOD: init
MESSAGE: Start Parsing  
http://www.reuters.com/resources/css/rcom-patch-ie7.css   .css   Sun, 02 Dec
2007 16:46:59 +0530

2007/12/02 16:46:59:312 IST [DEBUG] header - << "Content-Type:
text/css[\r][\n]"
2007/12/02 16:46:59:312 IST [DEBUG] header - << "HTTP/1.1 200 OK[\r][\n]"
2007/12/02 16:46:59:312 IST [DEBUG] header - << "Date: Sun, 02 Dec 2007
11:17:24 GMT[\r][\n]"
2007/12/02 16:46:59:312 IST [DEBUG] header - << "Server: Apache[\r][\n]"
2007/12/02 16:46:59:312 IST [DEBUG] header - << "Last-Modified: Tue, 25 Sep
2007 19:13:01 GMT[\r][\n]"
2007/12/02 16:46:59:312 IST [DEBUG] header - << "Accept-Ranges:
bytes[\r][\n]"
2007/12/02 16:46:59:312 IST [DEBUG] header - << "Content-Length:
5231[\r][\n]"
2007/12/02 16:46:59:312 IST [DEBUG] header - << "Cache-Control:
max-age=14400[\r][\n]"
2007/12/02 16:46:59:312 IST [DEBUG] header - << "Expires: Sun, 02 Dec 2007
15:17:24 GMT[\r][\n]"
2007/12/02 16:46:59:312 IST [DEBUG] header - << "Content-Type:
text/css[\r][\n]"FILE: SxResultsParseHTML.java PARENT CALLING_METHOD:
doneThreadDownload LINE: 212 METHOD: init
MESSAGE: Start Parsing  
http://www.reuters.com/resources/css/rcom-articlenew.css   .css   Sun, 02
Dec 2007 16:46:59 +0530


2007/12/02 16:46:59:875 IST [DEBUG] content - << "div.inlineRelatedContent
{[\r][\n]"
2007/12/02 16:46:59:875 IST [DEBUG] content - << "[0x9]float: left;[\r][\n]"
2007/12/02 16:46:59:875 IST [DEBUG] content - << "[0x9]margin-right:
12px;[\r][\n]"
2007/12/02 16:46:59:875 IST [DEBUG] content - << "[0x9]width:
192px;[\r][\n]"
2007/12/02 16:46:59:875 IST [DEBUG] content - << "}[\r][\n]"
2007/12/02 16:46:59:875 IST [DEBUG] content - << "[\r][\n]"
2007/12/02 16:46:59:875 IST [DEBUG] content - << "div.inlineRelatedContent
div.module {[\r][\n]"
2007/12/02 16:46:59:875 IST [DEBUG] content - << "[0x9]float: left;[\r][\n]"
2007/12/02 16:46:59:875 IST [DEBUG] content - << "[0x9]width:
192px;[\r][\n]"
2007/12/02 16:46:59:875 IST [DEBUG] content - << "}[\r][\n]"
2007/12/02 16:46:59:875 IST [DEBUG] content - << "[\r][\n]"
2007/12/02 16:46:59:875 IST [DEBUG] content - << ".relatedVideo {[\r][\n]"
2007/12/02 16:46:59:875 IST [DEBUG] content - << "[0x9]float: left;[\r][\n]"
2007/12/02 16:46:59:875 IST [DEBUG] content - << "[0x9]padding-bottom:
6px;[\r][\n]"
2007/12/02 16:46:59:875 IST [DEBUG] content - << "[0x9]margin: 0;[\r][\n]"
2007/12/02 16:46:59:875 IST [DEBUG] content - << "[0x9]height:
71px;[\r][\n]"
2007/12/02 16:46:59:875 IST [DEBUG] content - << "[0x9]overflow:
hidden;[\r][\n]"
2007/12/02 16:46:59:875 IST [DEBUG] content - << "}[\r][\n]"
2007/12/02 16:46:59:875 IST [DEBUG] content - << "[\r][\n]"
2007/12/02 16:46:59:875 IST [DEBUG] content - << ".relatedVideo
.relatedVideoPhoto {[\r][\n]"
2007/12/02 16:46:59:875 IST [DEBUG] content - << "[0x9]float: left;[\r][\n]"
2007/12/02 16:46:59:875 IST [DEBUG] content - << "[0x9]margin-right:
8px;[\r][\n]"
2007/12/02 16:46:59:875 IST [DEBUG] content - << "}[\r][\n]"
2007/12/02 16:46:59:875 IST [DEBUG] content - << "[\r][\n]"
2007/12/02 16:46:59:875 IST [DEBUG] content - << ".relatedVideo
.relatedVideoText {[\r][\n]"
2007/12/02 16:46:59:875 IST [DEBUG] content - << "[0x9]float: left;[\r][\n]"
2007/12/02 16:46:59:875 IST [DEBUG] content - << "[0x9]width: 90px;[\r][\n]"
2007/12/02 16:46:59:875 IST [DEBUG] content - << "[0x9]margin: 0;[\r][\n]"
2007/12/02 16:46:59:875 IST [DEBUG] content - << "}[\r][\n]"
2007/12/02 16:46:59:875 IST [DEBUG] content - << "[\r][\n]"
2007/12/02 16:46:59:875 IST [DEBUG] content - << ".primaryInlineRail
{[\r][\n]"
2007/12/02 16:46:59:875 IST [DEBUG] content - << "[0x9]display:
none;[\r][\n]"
2007/12/02 16:46:59:875 IST [DEBUG] content - << "}[\r][\n]"
2007/12/02 16:46:59:875 IST [DEBUG] content - << "[\r][\n]"
2007/12/02 16:46:59:875 IST [DEBUG] content - << ".article h1 {[\r][\n]"
2007/12/02 16:46:59:875 IST [DEBUG] content - << "[0x9]margin: 0px 0px 6px
-1px;[\r][\n]"
2007/12/02 16:46:59:875 IST [DEBUG] content - << "[0x9]font-size:
30px;[\r][\n]"
2007/12/02 16:46:59:875 IST [DEBUG] content - << "[0x9]font-weight:
bold;[\r][\n]"
2007/12/02 16:46:59:875 IST [DEBUG] content - << "[0x9]color:
#464646;[\r][\n]"
2007/12/02 16:46:59:875 IST [DEBUG] content - << "[0x9]line-height:
1.0;[\r][\n]"
2007/12/02 16:46:59:875 IST [DEBUG] content - << "[0x9]border:
none;[\r][\n]"
2007/12/02 16:46:59:875 IST [DEBUG] content - << "}[\r][\n]"
2007/12/02 16:46:59:875 IST [DEBUG] content - << "[\r][\n]"
2007/12/02 16:46:59:875 IST [DEBUG] content - << ".article .timestamp,
.article .timestampHeader {[\r][\n]"
2007/12/02 16:46:59:875 IST [DEBUG] content - << "[0x9]font-size:
11px;[\r][\n]"
2007/12/02 16:46:59:875 IST [DEBUG] content - << "[0x9]color: #555;[\r][\n]"
2007/12/02 16:46:59:875 IST [DEBUG] content - << "[0x9]margin-bottom:
0px;[\r][\n]"
2007/12/02 16:46:59:875 IST [DEBUG] content - << "}[\r][\n]"
2007/12/02 16:46:59:875 IST [DEBUG] content - << ".article .timestampHeader
{[\r][\n]"
2007/12/02 16:46:59:875 IST [DEBUG] content - << "[0x9]float:left;[\r][\n]"
2007/12/02 16:46:59:875 IST [DEBUG] content - <<
"[0x9]padding-left:1px;[\r][\n]"
2007/12/02 16:46:59:875 IST [DEBUG] content - << "}[\r][\n]"
2007/12/02 16:46:59:875 IST [DEBUG] content - << "[\r][\n]"
2007/12/02 16:46:59:875 IST [DEBUG] content - << "div#resizeableText
{[\r][\n]"
2007/12/02 16:46:59:875 IST [DEBUG] content - << "[0x9]overflow:
hidden;[\r][\n]"
2007/12/02 16:46:59:875 IST [DEBUG] content - << "[0x9]margin-top:
12px;[\r][\n]"
2007/12/02 16:46:59:875 IST [DEBUG] content - << "}[\r][\n]"
2007/12/02 16:46:59:875 IST [DEBUG] content - << "[\r][\n]"
2007/12/02 16:46:59:875 IST [DEBUG] content - << "div#resizeableText p
{[\r][\n]"
2007/12/02 16:46:59:875 IST [DEBUG] content - << "[0x9]font-family: verdana,
helvetica,sans;[\r][\n]"
2007/12/02 16:46:59:875 IST [DEBUG] content - << "[0x9]margin: 0 0 1em
0;[\r][\n]"
2007/12/02 16:46:59:875 IST [DEBUG] content - << "[0x9]padding: 0;[\r][\n]"
2007/12/02 16:46:59:875 IST [DEBUG] content - << "}[\r][\n]"
2007/12/02 16:46:59:875 IST [DEBUG] content - << "[\r][\n]"
2007/12/02 16:46:59:875 IST [DEBUG] content - << "div#resizeableText
div.module p,[\r][\n]"
2007/12/02 16:46:59:875 IST [DEBUG] content - << "div#resizeableText
span.inlineLinks {[\r][\n]"
2007/12/02 16:46:59:875 IST [DEBUG] content - << "[0x9]font-family:
arial,helvetica,sans;[\r][\n]"
2007/12/02 16:46:59:875 IST [DEBUG] content - << "div.topStory2 { display:
inline-block; width: auto; }[\r][\n]"
2007/12/02 16:46:59:875 IST [DEBUG] content - << "div.inlineRelatedContent
div.headlineMed a { z-index: -100; }[\r][\n]"
2007/12/02 16:46:59:875 IST [DEBUG] content - << "div.inlineRelatedContent
div.headlineMed { z-index: -90; }"
2007/12/02 16:46:59:875 IST [DEBUG] content - << "}[\r][\n]"
2007/12/02 16:46:59:875 IST [DEBUG] content - << "[\r][\n]"
2007/12/02 16:46:59:875 IST [DEBUG] HttpMethodBase - Resorting to protocol
version default close connection policy
2007/12/02 16:46:59:875 IST [DEBUG] content - << ".articleTools {[\r][\n]"
2007/12/02 16:46:59:875 IST [DEBUG] content - << "[0x9]clear: both;[\r][\n]"
2007/12/02 16:46:59:875 IST [DEBUG] content - << "[0x9]float: left;[\r][\n]"
2007/12/02 16:46:59:875 IST [DEBUG] content - << "[0x9]width:490px;[\r][\n]"
2007/12/02 16:46:59:875 IST [DEBUG] content - << "[0x9]padding-top:
1px;[\r][\n]"
2007/12/02 16:46:59:875 IST [DEBUG] content - << "[0x9]border-top: 1px solid
#CCC;[\r][\n]"
2007/12/02 16:46:59:875 IST [DEBUG] content - << "[0x9]margin: 6px 0 0
0;[\r][\n]"
2007/12/02 16:46:59:875 IST [DEBUG] content - << "}[\r][\n]"
2007/12/02 16:46:59:875 IST [DEBUG] content - << "[\r][\n]"
2007/12/02 16:46:59:875 IST [DEBUG] content - << ".articleTextSizer
{[\r][\n]"
2007/12/02 16:46:59:875 IST [DEBUG] content - << "[0x9]margin: 0;[\r][\n]"
2007/12/02 16:46:59:875 IST [DEBUG] content - << "[0x9]float:
right;[\r][\n]"
2007/12/02 16:46:59:875 IST [DEBUG] content - << "[0x9]display:
none;[\r][\n]"
2007/12/02 16:46:59:875 IST [DEBUG] content - << "}[\r][\n]"
2007/12/02 16:46:59:875 IST [DEBUG] content - << "[\r][\n]"
2007/12/02 16:46:59:875 IST [DEBUG] content - << ".articleTextSizerFull
{[\r][\n]"
2007/12/02 16:46:59:875 IST [DEBUG] content - << "[0x9]margin: 0 0 0
12px;[\r][\n]"
2007/12/02 16:46:59:875 IST [DEBUG] content - << "[0x9]padding: 4px 3px 0
0;[\r][\n]"
2007/12/02 16:46:59:875 IST [DEBUG] content - << "[0x9]float:
right;[\r][\n]"
2007/12/02 16:46:59:875 IST [DEBUG] content - << "[0x9]display:
none;[\r][\n]"
2007/12/02 16:46:59:875 IST [DEBUG] content - << "[0x9]text-align:
center;[\r][\n]"
2007/12/02 16:46:59:875 IST [DEBUG] content - << "[0x9]font-size:
11px;[\r][\n]"
2007/12/02 16:46:59:875 IST [DEBUG] content - << "[0x9]color: #999;[\r][\n]"
2007/12/02 16:46:59:875 IST [DEBUG] content - << "}[\r][\n]"
2007/12/02 16:46:59:875 IST [DEBUG] content - << "[\r][\n]"
2007/12/02 16:46:59:875 IST [DEBUG] content - << ".articleTextSizerFull a
{[\r][\n]"
2007/12/02 16:46:59:875 IST [DEBUG] content - << "[0x9]display:
inline;[\r][\n]"
2007/12/02 16:46:59:875 IST [DEBUG] content - << "[0x9]padding-left:
1px;[\r][\n]"
2007/12/02 16:46:59:875 IST [DEBUG] HttpMethodBase - Should NOT close
connection, using HTTP/1.1
2007/12/02 16:46:59:875 IST [DEBUG] content - << "[0x9]padding-right:
1px;[\r][\n]"
2007/12/02 16:46:59:875 IST [DEBUG] content - << "[0x9]color: #666;[\r][\n]"
2007/12/02 16:46:59:875 IST [DEBUG] content - << "}[\r][\n]"
2007/12/02 16:46:59:875 IST [DEBUG] content - << "[\r][\n]"
2007/12/02 16:46:59:875 IST [DEBUG] content - << ".articleTextSizerFull
a:hover {[\r][\n]"
2007/12/02 16:46:59:875 IST [DEBUG] content - << "[0x9]color:
#003399;[\r][\n]"
2007/12/02 16:46:59:875 IST [DEBUG] content - << "}[\r][\n]"
2007/12/02 16:46:59:875 IST [DEBUG] content - << "[\r][\n]"
2007/12/02 16:46:59:875 IST [DEBUG] content - << ".articleUtilities
{[\r][\n]"
2007/12/02 16:46:59:875 IST [DEBUG] content - << "[0x9]color:
#9CAAD9;[\r][\n]"
2007/12/02 16:46:59:875 IST [DEBUG] HttpConnection - Releasing connection
back to connection manager.
2007/12/02 16:46:59:875 IST [DEBUG] MultiThreadedHttpConnectionManager -
Freeing connection,
hostConfig=HostConfiguration[host=http://www.reuters.com]
2007/12/02 16:46:59:875 IST [DEBUG] IdleConnectionHandler - Adding
connection at: 1196594219875
2007/12/02 16:46:59:875 IST [DEBUG] MultiThreadedHttpConnectionManager -
Notifying thread waiting on host pool,
hostConfig=HostConfiguration[host=http://www.reuters.com]
FILE: SxGetOneURL.java PARENT CALLING_METHOD: run LINE: 89 METHOD: myRun
MESSAGE: Inside getOneURL run  
:http://www.reuters.com/resources/js/searchbox.js  :Sun, 02 Dec 2007
16:46:59 +0530

2007/12/02 16:46:59:875 IST [DEBUG] content - << "[0x9]text-align:
left;[\r][\n]"
2007/12/02 16:46:59:875 IST [DEBUG] content - << "[0x9]float: left;[\r][\n]"
2007/12/02 16:46:59:875 IST [DEBUG] content - << "[0x9]font-size:
13px;[\r][\n]"
2007/12/02 16:46:59:875 IST [DEBUG] content - << "[0x9]padding-top:
2px;[\r][\n]"
2007/12/02 16:46:59:875 IST [DEBUG] content - << "[0x9]padding-bottom:
2px;[\r][\n]"
2007/12/02 16:46:59:875 IST [DEBUG] content - << "[0x9]margin: 0;[\r][\n]"
2007/12/02 16:46:59:875 IST [DEBUG] content - << "}[\r][\n]"
2007/12/02 16:46:59:875 IST [DEBUG] MultiThreadedHttpConnectionManager -
Getting free connection,
hostConfig=HostConfiguration[host=http://www.reuters.com]
2007/12/02 16:46:59:875 IST [DEBUG] content - << "[\r][\n]"
2007/12/02 16:46:59:890 IST [DEBUG] content - << ".articleUtilities
a,[\r][\n]"
2007/12/02 16:46:59:890 IST [DEBUG] content - << ".articleUtilities span
{[\r][\n]"
2007/12/02 16:46:59:890 IST [DEBUG] content - << "[0x9]font-size:
11px;[\r][\n]"
2007/12/02 16:46:59:890 IST [DEBUG] content - << "}[\r][\n]"
2007/12/02 16:46:59:890 IST [DEBUG] content - << "[\r][\n]"
2007/12/02 16:46:59:890 IST [DEBUG] content - << "div.nextArticle {[\r][\n]"
2007/12/02 16:46:59:890 IST [DEBUG] content - << "[0x9]margin: 16px
0;[\r][\n]"
2007/12/02 16:46:59:890 IST [DEBUG] content - << "}[\r][\n]"
2007/12/02 16:46:59:890 IST [DEBUG] content - << "[\r][\n]"
2007/12/02 16:46:59:890 IST [DEBUG] content - << "span.nextArticleLink a
{[\r][\n]"
2007/12/02 16:46:59:890 IST [DEBUG] content - << "[0x9]padding: 0 14px 0
0;[\r][\n]"
2007/12/02 16:46:59:890 IST [DEBUG] content - << "[0x9]background:
url("/resources/images/pageNext.gif") center right no-repeat;[\r][\n]"
2007/12/02 16:46:59:890 IST [DEBUG] content - << "}[\r][\n]"
2007/12/02 16:46:59:890 IST [DEBUG] content - << "[\r][\n]"
2007/12/02 16:46:59:890 IST [DEBUG] content - << "div.nextArticle
div.dividerInlineH { margin-top: 4px; }[\r][\n]"
2007/12/02 16:46:59:890 IST [DEBUG] content - << "[\r][\n]"
2007/12/02 16:46:59:890 IST [DEBUG] content - << "#recommendText,
span#toolSingle { color: #666; }[\r][\n]"
2007/12/02 16:46:59:890 IST [DEBUG] content - << "[\r][\n]"
2007/12/02 16:46:59:890 IST [DEBUG] content - << "[\r][\n]"
2007/12/02 16:46:59:890 IST [DEBUG] content - << ".ecPhoto {[\r][\n]"
2007/12/02 16:46:59:890 IST [DEBUG] content - << "[0x9]height:
62px;[\r][\n]"
2007/12/02 16:46:59:890 IST [DEBUG] content - << "[0x9]overflow:
hidden;[\r][\n]"
2007/12/02 16:46:59:890 IST [DEBUG] content - << "[0x9]border: 1px solid
#CCC;[\r][\n]"
2007/12/02 16:46:59:890 IST [DEBUG] content - << "[0x9]float: left;[\r][\n]"
2007/12/02 16:46:59:890 IST [DEBUG] content - << "[0x9]margin-right:
10px;[\r][\n]"
2007/12/02 16:46:59:890 IST [DEBUG] content - << "}[\r][\n]"
2007/12/02 16:46:59:890 IST [DEBUG] header - >> "GET /resources/js/main.js
HTTP/1.1[\r][\n]"
2007/12/02 16:46:59:890 IST [DEBUG] content - << "[\r][\n]"
2007/12/02 16:46:59:890 IST [DEBUG] HttpMethodBase - Adding Host request
header
2007/12/02 16:46:59:890 IST [DEBUG] content - << ".ecVideo {[\r][\n]"
2007/12/02 16:46:59:890 IST [DEBUG] header - >> "accept-encoding: gzip, zip,
deflate, chunked[\r][\n]"
2007/12/02 16:46:59:890 IST [DEBUG] content - << "[0x9]text-align:
center;[\r][\n]"
2007/12/02 16:46:59:890 IST [DEBUG] content - << "[0x9]width: 92px;[\r][\n]"
2007/12/02 16:46:59:890 IST [DEBUG] content - << "[0x9]float: left;[\r][\n]"
2007/12/02 16:46:59:890 IST [DEBUG] content - << "[0x9]display:
inline;[\r][\n]"
2007/12/02 16:46:59:890 IST [DEBUG] content - << "[0x9]margin: 0
4px;[\r][\n]"
2007/12/02 16:46:59:890 IST [DEBUG] content - << "}[\r][\n]"
2007/12/02 16:46:59:890 IST [DEBUG] content - << "[\r][\n]"
2007/12/02 16:46:59:890 IST [DEBUG] content - << ".ecVideoThumb {[\r][\n]"
2007/12/02 16:46:59:890 IST [DEBUG] content - << "[0x9]width: 90px;[\r][\n]"
2007/12/02 16:46:59:890 IST [DEBUG] content - << "[0x9]height:
52px;[\r][\n]"
2007/12/02 16:46:59:890 IST [DEBUG] header - >> "User-Agent: Mozilla/5.0
(compatible; MSIE 6.0; Windows NT 5.1)[\r][\n]"
2007/12/02 16:46:59:890 IST [DEBUG] content - << "[0x9]border: 1px solid
#CCC;[\r][\n]"
2007/12/02 16:46:59:890 IST [DEBUG] content - << "[0x9]overflow:
hidden;[\r][\n]"
2007/12/02 16:46:59:890 IST [DEBUG] content - << "}[\r][\n]"
2007/12/02 16:46:59:890 IST [DEBUG] content - << "[\r][\n]"
2007/12/02 16:46:59:890 IST [DEBUG] content - << ".ecVideoLink {[\r][\n]"
2007/12/02 16:46:59:890 IST [DEBUG] content - << "[0x9]font-size:
11px;[\r][\n]"
2007/12/02 16:46:59:890 IST [DEBUG] content - << "[0x9]text-transform:
capitalize;[\r][\n]"
2007/12/02 16:46:59:890 IST [DEBUG] content - << "}[\r][\n]"
2007/12/02 16:46:59:890 IST [DEBUG] content - << "[\r][\n]"
2007/12/02 16:46:59:890 IST [DEBUG] content - << ".ecVideoLink img
{[\r][\n]"
2007/12/02 16:46:59:890 IST [DEBUG] content - << "[0x9]margin-right:
4px;[\r][\n]"
2007/12/02 16:46:59:890 IST [DEBUG] content - << "}[\r][\n]"
2007/12/02 16:46:59:890 IST [DEBUG] content - << "[\r][\n]"
2007/12/02 16:46:59:890 IST [DEBUG] header - >> "Host:
www.reuters.com[\r][\n]"
2007/12/02 16:46:59:890 IST [DEBUG] content - <<
".module.editorsChoice,[\r][\n]"
2007/12/02 16:46:59:890 IST [DEBUG] content - << ".module.editorschoice
{[\r][\n]"
2007/12/02 16:46:59:890 IST [DEBUG] header - >> "[\r][\n]"
2007/12/02 16:46:59:890 IST [DEBUG] content - << "[0x9]width:
302px;[\r][\n]"
2007/12/02 16:46:59:890 IST [DEBUG] content - << "[0x9]height:
76px;[\r][\n]"
2007/12/02 16:46:59:890 IST [DEBUG] content - << "[0x9]overflow:
hidden;[\r][\n]"
2007/12/02 16:46:59:890 IST [DEBUG] content - << "[0x9]margin-bottom:
8px;[\r][\n]"
2007/12/02 16:46:59:890 IST [DEBUG] content - << "[0x9]border-bottom: 1px
solid #CCC;[\r][\n]"
2007/12/02 16:46:59:890 IST [DEBUG] content - << "}[\r][\n]"
2007/12/02 16:46:59:890 IST [DEBUG] content - << "[\r][\n]"
2007/12/02 16:46:59:890 IST [DEBUG] content - << ".pageNavigation {[\r][\n]"
2007/12/02 16:46:59:890 IST [DEBUG] content - << "[0x9]text-align:
right;[\r][\n]"
2007/12/02 16:46:59:890 IST [DEBUG] content - << "[0x9]font-size:
12px;[\r][\n]"
2007/12/02 16:46:59:890 IST [DEBUG] content - << "[0x9]color: #999;[\r][\n]"
2007/12/02 16:46:59:890 IST [DEBUG] content - << "}[\r][\n]"
2007/12/02 16:46:59:890 IST [DEBUG] content - << "[\r][\n]"
2007/12/02 16:46:59:890 IST [DEBUG] content - << ".pageNavigation strong
{[\r][\n]"
2007/12/02 16:46:59:890 IST [DEBUG] content - << "[0x9]margin: 0
2px;[\r][\n]"
2007/12/02 16:46:59:890 IST [DEBUG] content - << "[0x9]color: #000;[\r][\n]"
2007/12/02 16:46:59:890 IST [DEBUG] content - << "}[\r][\n]"
2007/12/02 16:46:59:890 IST [DEBUG] content - << "[\r][\n]"
2007/12/02 16:46:59:890 IST [DEBUG] content - << ".pageNavigation a
{[\r][\n]"
2007/12/02 16:46:59:890 IST [DEBUG] content - << "[0x9]font-size:
12px;[\r][\n]"
2007/12/02 16:46:59:890 IST [DEBUG] content - << "[0x9]margin: 0
2px;[\r][\n]"
2007/12/02 16:46:59:890 IST [DEBUG] content - << "}[\r][\n]"
2007/12/02 16:46:59:890 IST [DEBUG] content - << "[\r][\n]"
2007/12/02 16:46:59:890 IST [DEBUG] content - << "a.pageNext {[\r][\n]"
2007/12/02 16:46:59:890 IST [DEBUG] content - << "[0x9]background: #E5F2FB
url("/resources/images/pageNext.gif") center right no-repeat;[\r][\n]"
2007/12/02 16:46:59:890 IST [DEBUG] content - << "[0x9]font-weight:
bold;[\r][\n]"
2007/12/02 16:46:59:890 IST [DEBUG] content - << "[0x9]font-size:
12px;[\r][\n]"
2007/12/02 16:46:59:890 IST [DEBUG] content - << "[0x9]padding: 0 12px 0
4px;[\r][\n]"
2007/12/02 16:46:59:890 IST [DEBUG] content - << "[0x9]margin-left:
6px;[\r][\n]"
2007/12/02 16:46:59:890 IST [DEBUG] content - << "}[\r][\n]"
2007/12/02 16:46:59:890 IST [DEBUG] content - << "[\r][\n]"
2007/12/02 16:46:59:890 IST [DEBUG] content - << "a.pagePrevious {[\r][\n]"
2007/12/02 16:46:59:890 IST [DEBUG] content - << "[0x9]background:
url("/resources/images/pagePrevious.gif") center left no-repeat;[\r][\n]"
2007/12/02 16:46:59:890 IST [DEBUG] content - << "[0x9]font-weight:
normal;[\r][\n]"
2007/12/02 16:46:59:890 IST [DEBUG] content - << "[0x9]font-size:
12px;[\r][\n]"
2007/12/02 16:46:59:890 IST [DEBUG] content - << "[0x9]padding: 0 4px 0
12px;[\r][\n]"
2007/12/02 16:46:59:890 IST [DEBUG] content - << "[0x9]margin-right:
6px;[\r][\n]"
2007/12/02 16:46:59:890 IST [DEBUG] content - << "}[\r][\n]"
2007/12/02 16:46:59:890 IST [DEBUG] content - << "[\r][\n]"
2007/12/02 16:46:59:890 IST [DEBUG] content - << ".navDisabled {[\r][\n]"
2007/12/02 16:46:59:890 IST [DEBUG] content - << "[0x9]font-size:
12px;[\r][\n]"
2007/12/02 16:46:59:890 IST [DEBUG] content - << "[0x9]color: #CCC;[\r][\n]"
2007/12/02 16:46:59:890 IST [DEBUG] content - << "[0x9]padding: 0 4px 0
12px;[\r][\n]"
2007/12/02 16:46:59:890 IST [DEBUG] content - << "}[\r][\n]"
2007/12/02 16:46:59:890 IST [DEBUG] content - << "[\r][\n]"
2007/12/02 16:46:59:890 IST [DEBUG] content - << "a.playVideo {[\r][\n]"
2007/12/02 16:46:59:890 IST [DEBUG] content - << "[0x9]display:
block;[\r][\n]"
2007/12/02 16:46:59:890 IST [DEBUG] content - << "[0x9]margin: 3px 0 0
0;[\r][\n]"
2007/12/02 16:46:59:890 IST [DEBUG] content - << "[0x9]padding-left:
16px;[\r][\n]"
2007/12/02 16:46:59:890 IST [DEBUG] content - << "[0x9]font-size:
11px;[\r][\n]"
2007/12/02 16:46:59:890 IST [DEBUG] content - << "[0x9]background:
url("/resources/images/iconVideo.gif") center left no-repeat;[\r][\n]"
2007/12/02 16:46:59:890 IST [DEBUG] content - << "}[\r][\n]"
2007/12/02 16:46:59:890 IST [DEBUG] content - << "[\r][\n]"
2007/12/02 16:46:59:890 IST [DEBUG] content - << "[\r][\n]"
2007/12/02 16:46:59:890 IST [DEBUG] content - << "ol li .playVideo
a,[\r][\n]"
2007/12/02 16:46:59:890 IST [DEBUG] content - << ".playVideo a {[\r][\n]"
2007/12/02 16:46:59:890 IST [DEBUG] content - << "[0x9]padding-left:
16px;[\r][\n]"
2007/12/02 16:46:59:890 IST [DEBUG] content - << "[0x9]font-size:
11px;[\r][\n]"
2007/12/02 16:46:59:890 IST [DEBUG] content - << "[0x9]background:
url("/resources/images/iconVideo.gif") center left no-repeat;[\r][\n]"
2007/12/02 16:46:59:890 IST [DEBUG] content - << "}[\r][\n]"
2007/12/02 16:46:59:890 IST [DEBUG] content - << "[\r][\n]"
2007/12/02 16:46:59:890 IST [DEBUG] content - << "div.inlineSlideControls
{[\r][\n]"
2007/12/02 16:46:59:890 IST [DEBUG] content - << "[0x9]float: left;[\r][\n]"
2007/12/02 16:46:59:890 IST [DEBUG] content - << "[0x9]background:
#E5F2FB;[\r][\n]"
2007/12/02 16:46:59:890 IST [DEBUG] content - << "[0x9]padding: 2px
0;[\r][\n]"
2007/12/02 16:46:59:890 IST [DEBUG] content - << "[0x9]margin: 0px 0px 20px
0px;[\r][\n]"
2007/12/02 16:46:59:890 IST [DEBUG] content - << "[0x9]width:
192px;[\r][\n]"
2007/12/02 16:46:59:890 IST [DEBUG] content - << "[0x9]border-top: 1px solid
#CCC;[\r][\n]"
2007/12/02 16:46:59:890 IST [DEBUG] content - << "[0x9]-moz-box-sizing:
border-box;[\r][\n]"
2007/12/02 16:46:59:890 IST [DEBUG] content - << "[0x9]position:
relative;[\r][\n]"
2007/12/02 16:46:59:890 IST [DEBUG] content - << "}[\r][\n]"
2007/12/02 16:46:59:890 IST [DEBUG] content - << "[\r][\n]"
2007/12/02 16:46:59:890 IST [DEBUG] content - << "img#slideshowL,[\r][\n]"
2007/12/02 16:46:59:890 IST [DEBUG] content - << "img#slideshowR {[\r][\n]"
2007/12/02 16:46:59:890 IST [DEBUG] content - << "[0x9]position:
relative;[\r][\n]"
2007/12/02 16:46:59:890 IST [DEBUG] content - << "[0x9]float: left;[\r][\n]"
2007/12/02 16:46:59:890 IST [DEBUG] content - << "[0x9]display:
inline;[\r][\n]"
2007/12/02 16:46:59:890 IST [DEBUG] content - << "[0x9]cursor:
pointer;[\r][\n]"
2007/12/02 16:46:59:890 IST [DEBUG] content - << "[0x9]cursor:
hand;[\r][\n]"
2007/12/02 16:46:59:890 IST [DEBUG] content - << "}[\r][\n]"
2007/12/02 16:46:59:890 IST [DEBUG] content - << "[\r][\n]"
2007/12/02 16:46:59:890 IST [DEBUG] content - << "td.articlePhoto {[\r][\n]"
2007/12/02 16:46:59:890 IST [DEBUG] content - << "[0x9]width:
192px;[\r][\n]"
2007/12/02 16:46:59:890 IST [DEBUG] content - << "[0x9]height:
155px;[\r][\n]"
2007/12/02 16:46:59:890 IST [DEBUG] content - << "[0x9]background:
#F0F0F0;[\r][\n]"
2007/12/02 16:46:59:890 IST [DEBUG] content - << "}[\r][\n]"
2007/12/02 16:46:59:890 IST [DEBUG] content - << "[\r][\n]"
2007/12/02 16:46:59:890 IST [DEBUG] content - << "td#articlePhoto {[\r][\n]"
2007/12/02 16:46:59:890 IST [DEBUG] content - << "[0x9]width:
192px;[\r][\n]"
2007/12/02 16:46:59:890 IST [DEBUG] content - << "}[\r][\n]"
2007/12/02 16:46:59:890 IST [DEBUG] content - << "[\r][\n]"
2007/12/02 16:46:59:890 IST [DEBUG] content - << "#slideshowStatus
{[\r][\n]"
2007/12/02 16:46:59:890 IST [DEBUG] content - << "[0x9]position:
relative;[\r][\n]"
2007/12/02 16:46:59:890 IST [DEBUG] content - << "[0x9]float: left;[\r][\n]"
2007/12/02 16:46:59:890 IST [DEBUG] content - << "[0x9]font-size:
10px;[\r][\n]"
2007/12/02 16:46:59:890 IST [DEBUG] content - << "[0x9]margin: 4px 2px 4px
4px;[\r][\n]"
2007/12/02 16:46:59:890 IST [DEBUG] content - << "[0x9]display:
inline;[\r][\n]"
2007/12/02 16:46:59:890 IST [DEBUG] content - << "[0x9]line-height:
0.8;[\r][\n]"
2007/12/02 16:46:59:890 IST [DEBUG] content - << "[0x9]color: #333;[\r][\n]"
2007/12/02 16:46:59:890 IST [DEBUG] content - << "}[\r][\n]"
2007/12/02 16:46:59:890 IST [DEBUG] content - << "[\r][\n]"
2007/12/02 16:46:59:890 IST [DEBUG] content - << "#slideshowLaunch
{[\r][\n]"
2007/12/02 16:46:59:890 IST [DEBUG] content - << "[0x9]position:
relative;[\r][\n]"
2007/12/02 16:46:59:890 IST [DEBUG] content - << "[0x9]float:
right;[\r][\n]"
2007/12/02 16:46:59:890 IST [DEBUG] content - << "[0x9]font-size:
11px;[\r][\n]"
2007/12/02 16:46:59:890 IST [DEBUG] content - << "[0x9]font-weight:
bold;[\r][\n]"
2007/12/02 16:46:59:890 IST [DEBUG] content - << "[0x9]font-family:
arial,helvetica,sans;[\r][\n]"
2007/12/02 16:46:59:890 IST [DEBUG] content - << "[0x9]margin: 3px;[\r][\n]"
2007/12/02 16:46:59:890 IST [DEBUG] content - << "[0x9]display:
inline;[\r][\n]"
2007/12/02 16:46:59:890 IST [DEBUG] content - << "[0x9]line-height:
0.8;[\r][\n]"
2007/12/02 16:46:59:890 IST [DEBUG] content - << "}[\r][\n]"
2007/12/02 16:46:59:890 IST [DEBUG] content - << "[\r][\n]"
2007/12/02 16:46:59:890 IST [DEBUG] content - << "a#singlePageLink
{[\r][\n]"
2007/12/02 16:46:59:890 IST [DEBUG] content - << "[0x9]font-size:
11px;[\r][\n]"
2007/12/02 16:46:59:890 IST [DEBUG] content - << "[0x9]font-weight:
bold;[\r][\n]"
2007/12/02 16:46:59:890 IST [DEBUG] content - << "[0x9]margin: 4px
0;[\r][\n]"
2007/12/02 16:46:59:890 IST [DEBUG] content - << "[0x9]padding: 0 0 0
10px;[\r][\n]"
2007/12/02 16:46:59:890 IST [DEBUG] content - << "[0x9]background:
url("/resources/images/iconSingle.gif") center left no-repeat;[\r][\n]"
2007/12/02 16:46:59:890 IST [DEBUG] content - << "}[\r][\n]"
2007/12/02 16:46:59:890 IST [DEBUG] content - << "[\r][\n]"
2007/12/02 16:46:59:890 IST [DEBUG] content - << "#topContent { display:
none; }[\r][\n]"
2007/12/02 16:46:59:890 IST [DEBUG] content - << "[\r][\n]"
2007/12/02 16:46:59:890 IST [DEBUG] content - << "div.secondaryContent
div.module {[\r][\n]"
2007/12/02 16:46:59:890 IST [DEBUG] content - << "[0x9]width:
302px;[\r][\n]"
2007/12/02 16:46:59:890 IST [DEBUG] content - << "}[\r][\n]"
2007/12/02 16:46:59:890 IST [DEBUG] content - << "[\r][\n]"
2007/12/02 16:46:59:890 IST [DEBUG] content - << "#slimlineIndices
{[\r][\n]"
2007/12/02 16:46:59:890 IST [DEBUG] content - << "[0x9]text-align:
right;[\r][\n]"
2007/12/02 16:46:59:890 IST [DEBUG] content - << "}[\r][\n]"
2007/12/02 16:46:59:890 IST [DEBUG] content - << "#headerTools {[\r][\n]"
2007/12/02 16:46:59:890 IST [DEBUG] content - <<
"[0x9]font-size:11px;[\r][\n]"
2007/12/02 16:46:59:890 IST [DEBUG] content - <<
"[0x9]font-weight:bold;[\r][\n]"
2007/12/02 16:46:59:890 IST [DEBUG] content - << "[0x9]float:right;[\r][\n]"
2007/12/02 16:46:59:890 IST [DEBUG] content - <<
"[0x9]position:relative;[\r][\n]"
2007/12/02 16:46:59:890 IST [DEBUG] content - << "[0x9]color:#999;[\r][\n]"
2007/12/02 16:46:59:890 IST [DEBUG] content - << "}[\r][\n]"
2007/12/02 16:46:59:890 IST [DEBUG] content - << "#headerTools a.allComments
{[\r][\n]"
2007/12/02 16:46:59:890 IST [DEBUG] content - <<
"background:url(/resources/images/pageNext.gif) no-repeat right
center;[\r][\n]"
2007/12/02 16:46:59:890 IST [DEBUG] content - <<
"padding-right:12px;[\r][\n]"
2007/12/02 16:46:59:890 IST [DEBUG] content - << "}[\r][\n]"
2007/12/02 16:46:59:890 IST [DEBUG] content - << ".headerLinebreak
{[\r][\n]"
2007/12/02 16:46:59:890 IST [DEBUG] content - << "border-bottom:1px solid
#CCCCCC;[\r][\n]"
2007/12/02 16:46:59:890 IST [DEBUG] content - << "}[\r][\n]"
2007/12/02 16:46:59:890 IST [DEBUG] content - << ".ArticleCommentsTitle
h5{border-bottom:1px solid #CCCCCC;padding-bottom:2px;}"
2007/12/02 16:46:59:890 IST [DEBUG] HttpMethodBase - Resorting to protocol
version default close connection policy
2007/12/02 16:46:59:890 IST [DEBUG] HttpMethodBase - Should NOT close
connection, using HTTP/1.1
2007/12/02 16:46:59:890 IST [DEBUG] HttpConnection - Releasing connection
back to connection manager.
2007/12/02 16:46:59:890 IST [DEBUG] MultiThreadedHttpConnectionManager -
Freeing connection,
hostConfig=HostConfiguration[host=http://www.reuters.com]
2007/12/02 16:46:59:890 IST [DEBUG] IdleConnectionHandler - Adding
connection at: 1196594219890
2007/12/02 16:46:59:890 IST [DEBUG] MultiThreadedHttpConnectionManager -
No-one waiting on host pool, notifying next waiting thread.
2007/12/02 16:47:00:187 IST [DEBUG] header - << "HTTP/1.1 200 OK[\r][\n]"
2007/12/02 16:47:00:187 IST [DEBUG] header - << "Date: Sun, 02 Dec 2007
11:17:25 GMT[\r][\n]"
2007/12/02 16:47:00:187 IST [DEBUG] header - << "Server: Apache[\r][\n]"
2007/12/02 16:47:00:187 IST [DEBUG] header - << "Last-Modified: Mon, 22 Oct
2007 16:06:55 GMT[\r][\n]"
2007/12/02 16:47:00:187 IST [DEBUG] header - << "Accept-Ranges:
bytes[\r][\n]"
2007/12/02 16:47:00:187 IST [DEBUG] header - << "Content-Length:
10409[\r][\n]"
2007/12/02 16:47:00:187 IST [DEBUG] header - << "Cache-Control:
max-age=14400[\r][\n]"
2007/12/02 16:47:00:187 IST [DEBUG] header - << "Expires: Sun, 02 Dec 2007
15:17:25 GMT[\r][\n]"
2007/12/02 16:47:00:187 IST [DEBUG] header - << "Content-Type:
application/x-javascript[\r][\n]"
FILE: SxResultsParseHTML.java PARENT CALLING_METHOD: doneThreadDownload
LINE: 212 METHOD: init
MESSAGE: Start Parsing   http://www.reuters.com/resources/js/main.js   .js  
Sun, 02 Dec 2007 16:47:00 +0530

2007/12/02 16:47:00:218 IST [DEBUG] header - >> "GET
/widgets/sphereit/js?siteid=reuters HTTP/1.1[\r][\n]"
2007/12/02 16:47:00:218 IST [DEBUG] HttpMethodBase - Adding Host request
header
2007/12/02 16:47:00:218 IST [DEBUG] header - >> "accept-encoding: gzip, zip,
deflate, chunked[\r][\n]"
2007/12/02 16:47:00:218 IST [DEBUG] header - >> "User-Agent: Mozilla/5.0
(compatible; MSIE 6.0; Windows NT 5.1)[\r][\n]"
2007/12/02 16:47:00:218 IST [DEBUG] header - >> "Host:
cdn1.sphere.com[\r][\n]"
2007/12/02 16:47:00:218 IST [DEBUG] header - >> "[\r][\n]"
2007/12/02 16:47:00:562 IST [DEBUG] header - << "HTTP/1.1 200 OK[\r][\n]"
2007/12/02 16:47:00:562 IST [DEBUG] header - << "Date: Sun, 02 Dec 2007
11:17:25 GMT[\r][\n]"
2007/12/02 16:47:00:562 IST [DEBUG] header - << "Server: Apache/2.0.54
(Fedora)[\r][\n]"
2007/12/02 16:47:00:562 IST [DEBUG] header - << "Last-Modified: Sat, 01 Dec
2007 09:06:22 GMT[\r][\n]"
2007/12/02 16:47:00:562 IST [DEBUG] header - << "ETag:
"59805e-284e-dc669f80"[\r][\n]"
2007/12/02 16:47:00:562 IST [DEBUG] header - << "Accept-Ranges:
bytes[\r][\n]"
2007/12/02 16:47:00:562 IST [DEBUG] header - << "Content-Length:
10318[\r][\n]"
2007/12/02 16:47:00:562 IST [DEBUG] header - << "Content-Type:
application/x-javascript[\r][\n]"
FILE: SxResultsParseHTML.java PARENT CALLING_METHOD: doneThreadDownload
LINE: 212 METHOD: init
MESSAGE: Start Parsing  
http://cdn1.sphere.com/widgets/sphereit/js?siteid=reuters   .js   Sun, 02
Dec 2007 16:47:00 +0530

2007/12/02 16:47:09:171 IST [DEBUG] header - >> "GET
/resources/js/sitelife_rec_daapi02C-nc.js HTTP/1.1[\r][\n]"
2007/12/02 16:47:09:171 IST [DEBUG] HttpMethodBase - Adding Host request
header
2007/12/02 16:47:09:171 IST [DEBUG] header - >> "accept-encoding: gzip, zip,
deflate, chunked[\r][\n]"
2007/12/02 16:47:09:171 IST [DEBUG] header - >> "User-Agent: Mozilla/5.0
(compatible; MSIE 6.0; Windows NT 5.1)[\r][\n]"
2007/12/02 16:47:09:171 IST [DEBUG] header - >> "Host:
www.reuters.com[\r][\n]"
2007/12/02 16:47:09:171 IST [DEBUG] header - >> "[\r][\n]"
2007/12/02 16:47:09:468 IST [DEBUG] header - << "HTTP/1.1 200 OK[\r][\n]"
2007/12/02 16:47:09:468 IST [DEBUG] header - << "Date: Sun, 02 Dec 2007
11:17:34 GMT[\r][\n]"
2007/12/02 16:47:09:468 IST [DEBUG] header - << "Server: Apache[\r][\n]"
2007/12/02 16:47:09:468 IST [DEBUG] header - << "Last-Modified: Wed, 03 Oct
2007 18:26:43 GMT[\r][\n]"
2007/12/02 16:47:09:468 IST [DEBUG] header - << "Accept-Ranges:
bytes[\r][\n]"
2007/12/02 16:47:09:468 IST [DEBUG] header - << "Content-Length:
15459[\r][\n]"
2007/12/02 16:47:09:468 IST [DEBUG] header - << "Cache-Control:
max-age=14400[\r][\n]"
2007/12/02 16:47:09:468 IST [DEBUG] header - << "Expires: Sun, 02 Dec 2007
15:17:34 GMT[\r][\n]"
2007/12/02 16:47:09:468 IST [DEBUG] header - << "Content-Type:
application/x-javascript[\r][\n]"FILE: SxResultsParseHTML.java PARENT
CALLING_METHOD: doneThreadDownload LINE: 212 METHOD: init
MESSAGE: Start Parsing  
http://www.reuters.com/resources/js/sitelife_rec_daapi02C-nc.js   .js   Sun,
02 Dec 2007 16:47:09 +0530


2007/12/02 16:47:13:390 IST [DEBUG] content - << "/* -- BEGIN SPHERE JS --
*/      [\r][\n]"
2007/12/02 16:47:13:390 IST [DEBUG] content - << "Sphere = {}[\r][\n]"
2007/12/02 16:47:13:390 IST [DEBUG] content - << "Sphere.Tracker = new
function() {[\r][\n]"
2007/12/02 16:47:13:390 IST [DEBUG] content - << "    this.track = function
( ele, site, area ) {[\r][\n]"
2007/12/02 16:47:13:390 IST [DEBUG] content - << "        if( !ele.href )
return;[\r][\n]"
2007/12/02 16:47:13:390 IST [DEBUG] content - << "        [\r][\n]"
2007/12/02 16:47:13:390 IST [DEBUG] content - << "[0x9][0x9]var imgurl =
'http://stats.sphere.com/widgets/sphereit/?action=click&siteid='+site+'&q='+area+'&url='+ele.href;[\r][\n]"
2007/12/02 16:47:13:390 IST [DEBUG] content - << "        var trackimg = new
Image();[\r][\n]"



-- 
View this message in context: http://www.nabble.com/Performance-Issues-with-Transfer-Encoding-chunked-tp14106574p14114617.html
Sent from the HttpClient-User mailing list archive at Nabble.com.


---------------------------------------------------------------------
To unsubscribe, e-mail: httpclient-users-unsubscribe@hc.apache.org
For additional commands, e-mail: httpclient-users-help@hc.apache.org


Re: Performance Issues with Transfer-Encoding chunked

Posted by Roland Weber <os...@dubioso.net>.
Hello,

Transfer-Encoding and Content-Encoding are two completely
separate things. I'm pretty sure that Content-Encoding:gzip
is sent with Transfer-Encoding:chunked. If you want server
responses with content compression, send a header to that effect
in your request, and decompress the response accordingly.
There is example code for HttpCore at [1].

You can generate a wire log [2] to see what data is sent and
received. Depending on the logging framework you use, you
can also get timestamps for the log entries which will show
where the delay happens. Feel free to post wire logs to this
mailing list if you need help with interpreting them.

cheers,
  Roland

[1]
http://svn.apache.org/repos/asf/jakarta/httpcomponents/httpcore/trunk/contrib/src/main/java/org/apache/http/contrib/compress/
[2] http://jakarta.apache.org/httpcomponents/httpclient-3.x/logging.html

---------------------------------------------------------------------
To unsubscribe, e-mail: httpclient-user-unsubscribe@jakarta.apache.org
For additional commands, e-mail: httpclient-user-help@jakarta.apache.org