A
andav
Hello All,
Forgive me if the answer I am looking for is fairly simple.
I am still fairly new to C# & .NET.
A client of mine is looking to automate a process, initially I assumed
it would be some simple screen scraping and reporting.
Looking into the project some more, what happens is that they go to a
site and the site loads the following object:
<!-- Start IE Object Tag -->
<OBJECT ID="Seagull Web-to-Host Control Module v3"
CLASSID="clsid:037790A6-1576-11D6-903D-00105AABADD3"
CODEBASE="../sglw2hcm.ocx#Version=3,2,1,296" HEIGHT=0 WIDTH=0>
<PARAM NAME="IniFile" VALUE="default.ini">
<PARAM NAME="Sessions" VALUE="MD_S1">
<PARAM NAME="MD_DistFile" VALUE="display.e3d">
<PARAM NAME="MD_S1" VALUE="mfdisp1.zmd">
<PARAM NAME="MD_S1_Save" VALUE="No">
</OBJECT>
<!-- End IE Object Tag -->
Which in-turn starts a new window (not a browser window) that is
basically a terminal emulator to a 3270 mainframe screen.
They then enter the information into the mainframe to gather their
data.
I am fairly familiar with screen scraping legacy systems using tools
such as expect, and screen scraping web sites using sockets and web
requests.
I am curious if someone has ever "screen scraped" a windows application
that is spawned from a web site?
Best Regards,
Anthony
Forgive me if the answer I am looking for is fairly simple.
I am still fairly new to C# & .NET.
A client of mine is looking to automate a process, initially I assumed
it would be some simple screen scraping and reporting.
Looking into the project some more, what happens is that they go to a
site and the site loads the following object:
<!-- Start IE Object Tag -->
<OBJECT ID="Seagull Web-to-Host Control Module v3"
CLASSID="clsid:037790A6-1576-11D6-903D-00105AABADD3"
CODEBASE="../sglw2hcm.ocx#Version=3,2,1,296" HEIGHT=0 WIDTH=0>
<PARAM NAME="IniFile" VALUE="default.ini">
<PARAM NAME="Sessions" VALUE="MD_S1">
<PARAM NAME="MD_DistFile" VALUE="display.e3d">
<PARAM NAME="MD_S1" VALUE="mfdisp1.zmd">
<PARAM NAME="MD_S1_Save" VALUE="No">
</OBJECT>
<!-- End IE Object Tag -->
Which in-turn starts a new window (not a browser window) that is
basically a terminal emulator to a 3270 mainframe screen.
They then enter the information into the mainframe to gather their
data.
I am fairly familiar with screen scraping legacy systems using tools
such as expect, and screen scraping web sites using sockets and web
requests.
I am curious if someone has ever "screen scraped" a windows application
that is spawned from a web site?
Best Regards,
Anthony