multitrheads issue

Hi guys,

Im new in screen scraper, and I stuck on some stage. Probably my problem is simply to solve but I have no idea where should I go. Im using 10 sessions, and seems like screen scraper is perfectly working with 10 different sessions but, cant handle 10 the same sessions at the time.
Can somebody help me with this?

Thanks

Radek.

Multi-thread Issue

Hi Radek,

Are you starting screen-scraper from the SOAP interface or from external code with a RemoteScrapingSession?

hey, Im using external code

hey,

Im using external code with RemoteScrapingSessions, thats right
forgot wrote before

External Code

When using external code to launch screen-scraper, if you want to do concurrent scrapes, be sure you call setDoLazyScrape(true) before calling scrape() to tell the scraping session to start in a separate thread. In Java it might look like this:

RemoteScrapingSession remoteSession = new RemoteScrapingSession();

remoteSession.setDoLazyScrape( true );

remoteSession.scrape();

Thanks Radek.