Screen scraper

I am looking for a screen scraper software that works with Forte in the
middle tier. I've only come across a product called Expresso from
Conextions. My questions are:
1. Are there other tools out there that works well with Forte in the middle
tier ?
2. For people who've used Expresso, are there any issues/advice/comments ?
Thanks in advance.
Stuart.
To unsubscribe, email '[email protected]' with
'unsubscribe forte-users' as the body of the message.
Searchable thread archive <URL:http://pinehurst.sageit.com/listarchive/>

Have you looked at CNT's (formerly Apertus Technology) Enterprise
Connect product [screen scraper on steroids]?
It's been tested in a few protos and has a very scalable architecture
for UNIX, and NT platforms.
It follows the concept of mapping regions of screens and storing the
meta data to abstract away from hard-coding into application logic.
At runtime there are a number of ways to retrieve the data from
green-screens/char mode apps:
1. Use the c source code generator executables for driving the screens
2. Combine forte wrapper
3. Dispatch their web server CGI gateway in combination w/ Forte WEB
4. [Maybe] have their code gen technology create TOOL / Java service
If you want more info, let me know.
-jim
Ngai, Stuart wrote:
>
I am looking for a screen scraper software that works with Forte in the
middle tier. I've only come across a product called Expresso from
Conextions. My questions are:
1. Are there other tools out there that works well with Forte in the middle
tier ?
2. For people who've used Expresso, are there any issues/advice/comments ?
Thanks in advance.
Stuart.
To unsubscribe, email '[email protected]' with
'unsubscribe forte-users' as the body of the message.
Searchable thread archive <URL:http://pinehurst.sageit.com/listarchive/>--
Jim Rice mailto:[email protected]
Forte Software, Inc. http://www.forte.com
National Tech Services Work#: 301-721-1910
To unsubscribe, email '[email protected]' with
'unsubscribe forte-users' as the body of the message.
Searchable thread archive <URL:http://pinehurst.sageit.com/listarchive/>

Similar Messages

  • Screen Scrape an Applet

    I am working on a project that requires a good bit of HTML screen scaping.
    I would like to read the contents of a page , post to it etc. For this purpose, I use HTTPURLConnection class.
    One of the pages I would like to screen scrape, has an applet. I would like to read the contents of the applet in my java program. Could some help me get started on that?
    It seems that I would need to mimick a web browser in my code. Any help is much appreciated.
    Thanks

    Well, you wanna do something like this:
    URLClassLoader loader = new URLClassLoader(...);
    Applet applet = (Applet) loader.loadClass("AppletName", true).newInstance();
    applet.setStub(new YourStub());
    //add Applet to a component so you can see it
    applet.init();
    applet.start();I don't know if it works though.

  • Screen scrape Oracle 9iAS web based forms

    Hello Friends,
    We are currently in the coding stage of a screen scraping application.But we are facing a serious problem,that might cause us to abandon this project altogather.We are supposed to screen scrape Oracle 9iAS based Oracle Forms,precisely speaking we have to trace the Msgboxes and Statusbar warnings,which are thrown at runtime during any transaction by the system.Could anyone help?
    Please reply ASAP.
    Thanks and Regards,
    Samir P
    Bangalore

    Hi,
    though this is not security related: You can use JavaBeans within a Bean Container in Oracle Forms. This allows you to add any Java you like to the Forms front end. However, you may have to dig a bit into the Forms client for this.
    Frank

  • Screen Scraper in Java

    If I have a checkbox on Line 1 and Line 2 and to the right of these I have text, is there anyway to "scrap" or get this text depending on whether the checkbox has been clicked on (visable) ?
    I assume I have to have some sort of listener for this and somehow check within the listener ?

    Thanks for the help, but I tried it and see the following, when my GUI comes up and this listener is invoked (via the Send button), the box is not checked, yet it still returns a true statement....I don't understand why ?..Unless my syntax is wrong and I should be checking something else ?..
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    public class SendButtonListener implements ActionListener
         DrawGUI x;
         boolean test1;
         SendButtonListener(DrawGUI a)
         System.out.println
    ("SendButtonListener Constructor...");
         x = a;
         public void actionPerformed(ActionEvent e)
         test1 = x.chkTestbox.isSelected();
         if (true)
         System.out.println("True");
         else
         System.out.println("False");

  • Xml form screen scraper

    Hello,
    I have created a form with screen scrapers. Now I want to load it when I open the form of purchase orders through the creation of an XML file. Where mistake? Thanks
    Dim creationPackage As SAPbouiCOM.FormCreationParams
        Dim oItem As SAPbouiCOM.Item
        Dim oButton As SAPbouiCOM.Button
        Dim oStat As SAPbouiCOM.StaticText
        Dim oCompany As SAPbobsCOM.Company
        Dim lRetCode As Integer
        Dim msgbox As SAPbobsCOM.Message
        Dim oapplication As SAPbouiCOM.FormCreationParams
    Private Sub B1_Application_ItemEvent(ByVal FormUID As String, ByRef pVal As SAPbouiCOM.ItemEvent, ByRef BubbleEvent As Boolean) Handles SBO_Application.ItemEvent
            If (pVal.MenuUID = "142") And (pVal.BeforeAction = False) Then
            End If
            LoadXMLForm("parametri.srf")
            If Not (oForm Is Nothing) Then
                creationPackage = SBO_Application.CreateObject(SAPbouiCOM.BoCreatableObjectType.cot_FormCreationParams)
                creationPackage.UniqueID = "BS_F_40"
                creationPackage.FormType = "-1"
                creationPackage.BorderStyle = SAPbouiCOM.BoFormBorderStyle.fbs_Sizable
                creationPackage.XmlData = "form_mio.xml"
                oForm = SBO_Application.Forms.AddEx(creationPackage)
                oForm.AutoManaged = True
                oForm.SupportedModes = SAPbouiCOM.BoAutoFormMode.afm_All
                oForm.Mode = SAPbouiCOM.BoFormMode.fm_OK_MODE
                oForm.Visible = True
                ' Dim sfile As System.IO.FileStream
                LoadXMLForm("parametri.srf")
            End If
            ' Dim sfile As System.IO.FileStream
        End Sub
        Private Function LoadXMLForm(ByVal sFile As String) As Boolean
            Try
                Dim oXmlDoc As Xml.XmlDocument
                oXmlDoc = New Xml.XmlDocument
                Dim oCreationParams As SAPbouiCOM.FormCreationParams
                Dim s As String
                Try
                    s = "C:\Documents and Settings\neos\Desktop\screen painter\primo_form.srf"
                    oXMLDoc = New Xml.XmlDocument
                    oXMLDoc.load(s)
                    oCreationParams = oapplication.CreateObject(SAPbouiCOM.BoCreatableObjectType.cot_FormCreationParams)
                    oCreationParams.XmlData = "form_mio.xml"
                    oApplication.Forms.AddEx(oCreationParams)
                    Return True
                Catch e As Exception
                    oApplication.MessageBox("Error: " & e.Message)
                    Return False
                End Try
                System.Runtime.InteropServices.Marshal.ReleaseComObject(oCreationParams)
                System.Runtime.InteropServices.Marshal.ReleaseComObject(oXMLDoc)
            Catch ex As Exception
                oApplication.MessageBox("Error: " & ex.Message)
            End Try
            GC.Collect()
        End Function

    Hi Lorenzo,
    Do one thing plz copy all the data from sample code and change the path and file name whatever you are using in your pgm only..
    if after all you get the error write the code..
    Kind Regards
    Yogesh

  • Screen scraper java applet.

    Can anyone help me??
    Actually i have to read some data from java applet website.Reply me soon

    Use clearRect(x,y,w,h) method
    -XL

  • Screen Scraping in Java

    Anybody help me on java screen scrapping.

    Svk wrote:
    I am asking the best way to screen Scrapping in java !!If you want to scrap your screen, take it to an electronics recycling.
    If you want to do screen scraping, you could provide some more detail about what you actually are trying to accomplish. Note: exclamation points aren't details.
    I'll bet what you want to do isn't even screen scraping. It's becoming increasingly rare these days.

  • Screen scraping

    Hi,
    How do I 'screen scrape' in java? I don't want to extract information from a web page, but another application, it doesn't have an API and anyway, screenscraping has really caught my imagination! Any pointers, or links would be awesome or in fact, can it be done?
    Many thanks, Ron

    I did that and to be honest it wasn't really what I was after. The phrase 'screen scrape' is applied very heavily to either interfacing with legacy systems or reading information retrieved from web pages. What I am actually trying to do is observe and transport data from an application running on my desktop to my java application, something which in no close form is covered!
    Many thanks for your reply though, Ron

  • Screen Scraping embedded Siebel ActiveX Controls...

    I provide Tech Support for Siebel 7.8 for our Sales Force. My manager has asked me to look into a way to "Screen Scrape" data from specific fields. Since the data is presented in activex controls I don't believe a typical screen scrape is possible with all of the frames and controls I'd have to drill through to get to what I want. Is it possible to use something like the FindWindow api or something similar to retrieve the values I need?

    Ok I have a more specific question, I've been able to use DOMExplorer to find the specific activex control I want to retrieve data from. Is it possible to extract data from the control by using it's IDispatch interface or some other interface? I'm reading up on the architecture of ActiveX controls but I haven't read anything that explicitly says whether this is possible.
    Caeanis

  • Screen scraping mainframe terminal emulator/web page

    Hi,
    Is it possible to screen scrap the contents of mainframe Terminal emulator.
    I have a 3270 Terminal emulator. What is the best way to read the content of this terminal emulator.
    I'm aware that we can screen scrape static or dynamic web pages. But, is it possible to screen a
    terminal emulator. I have no clue reg this. Plz help.

    Thanks for your response DrClap!!
    But you would have to be working with a published interface, as I was. Does >>your 3270 emulator have a published interface that allows access to the >>screen display?We are using Bluezone terminal emulator (from seagull software). This Bluezone uses an ActiveX control or Java applet to download a Win32 emulation application.
    Given this scenario, plz let me know how do I screen scrap the contents of this terminal emulator and pass the screen scraped content to another java program.
    Plz help so that I go in the right direction.
    (For screen scraping web pages: I was using JTidy and XQuery. But, for this terminal emulator, how do i read the request url. I'm a beginner, so excuse me if I'm completely wrong with this approach).
    Thanks,
    Sid

  • Restrict sensitive document leakage from Printing, "Save as", Copying and Priting screen?

    Our President highly suspected some of our staff who have sold the confidential documents to competitors but we do not have enough proof. How can we restrict sensitive data leakage from Printing, "Save as", Copying and Priting screen?
    Thank you for your advice in advance.

    Adobe LiveCycle Rights Management can apply DRM to a PDF file, which prevents printing and content extraction, and links access to the document to a user login - but there is no way to prevent that user saving a copy of the file to disk or a USB drive, or making multiple copies, no from telling someone else their login details. You can revoke access remotely if you suspect a copy has been stolen, but there's no DRM solution for PDF files which can lock the content to a hardware platform, for example in the way a copy of Windows "activates" itself. Opening and copying a file are two entirely-different concepts, and if a LCDRM-encrypted file is published to the Web without the login details to open it, we can be absolutely certain it cannot be cracked as the encryption hashes used by Adobe are so complex they would take billions of years to break, even with government-level resources. Naturally if a user reveals their login details to someone, LiveCycle's audit trail will prove this and you can take legal action against that user, but they may not care if the document has sufficient value.
    Using PDF there is no way to block access to the Print Screen button. Some third-party software converts the PDF into a proprietary file format which only opens in their own software, that in turn attempts to block the print screen keystroke, but it's not hack-proof and the resulting file is of course no longer a PDF. Ultimately if you can see something on screen you can always copy it, either by use of a custom display driver, remote-desktop system or photographing the screen with a cellphone camera, and re-OCRing the pages from those photos.
    Where documents are sufficiently-important to require a guarantee that on-screen reading is the only possible thing a user can do once the file is opened, they should be restricted to using hardware in secured locations, where network access, printers, USB ports etc. can all be removed. This is the approach taken by many enterprise and public-sector agencies; but once a document is distributed to an unregulated location there will always be a way around copy protection on page content if a user can open the file and view it on screen. While there are some interactive page elements in PDF which are harder to "screen scrape" than others (SWF, video and 3D), it can be done. The only elements of a PDF file which can be guaranteed secure even in an unsecure location are invisible features such as scripts when the PDF is protected using LCDRM to ensure it cannot be opened in third-party software.

  • MDX open interface error?

    has anyone come across this error in Excel client? i get it when trying to remove 0's from the summarized values.
    [MDX error|http://misiorek.com/mdx/MDX06.jpg]
    apologies for small screenshot but this is a resolution for full screen and screen scraper requires it to be minimized.

    Hi,
    Please see these docs.
    INCOIN: Error Message Template_ID or Template Name Specified is not a Valid Template When Item Catalog ID is NULL during Item Import in UPDATE Mode [ID 1076193.1]
    Item Import: What Does "Sync" Items Do? [ID 417887.1]
    INCOIN Gets INV_TEMPLATE_ERROR After Patch Applied [ID 141579.1]
    Item Open Interface (INCOIN/IOI) Setup and How-To [ID 115557.1]
    Understanding Item Import and Debugging Problems with Item Import [ID 268968.1]
    Thanks,
    Hussein

  • "Make-to-Order Production with Variant Configuration (147)" doesn't work ..

    Hi, I'm trying to run through this scenario ) on the Cloud Showroom and clearly the document I have (147_BPP_EN_UK.doc dated Oct 2008) is out of date or at least out of sync with the system as configured u2018in the cloudu2019 u2026.. the necessary roles specified in the document are not available in the cloud and some of the transactions are not there, e.g. VL10I.
    But more infuriating is that the process just does seem to work, for instance from page 13 u2026.
    Item  7 ...
    "If a material variant can be determined on the Display Material Variant screen, select the configurable line item and choose Enter. In this case the previous configurable material number will be replaced by the new configurable variant that was created. For example, F1000-M1 will replace F1000 if Type of Material Material Metal and Type of Packaging Normal is selected."
    In my case Iu2019m not clear what the u201CDisplay Material Variant screenu201D is u2013 the previous instruction (Item 6) from the document says u201CWhen all of the configurable choices have been selected, choose   Back.u201C which takes you back to the document overview. Highlighting the line and pressing enter doesnu2019t do anything and there is no option to select the configurable line item that I can find so the expected material substitution doesnu2019t happenu2026.
    I've got a couple of screen scrapes that show the approriate variant material being specified and found (Characteristic Value Assignment) but there doesn't seem to be any way to attach to the forum. I have tried to double click the variant material on the Characteristic Value Assignment screen and also tried clicking clicking once and then 'entering' but neither method resulted in the necessary substitution (i.e. the overview screen still shows F1000 and not the variant material F1000-P1 that has been specified?
    Also the schedule line was confirmed as deliverable u2018todayu2019 even through there is not stock u2026 all very puzzling u2013 any help much appreciated.
    Regards.

    I found the answer to this myself - I was looking at out of date best practice documents on our server, the latest bast practive documents are written for EHP4 and therefore should work on the 'cloud'.

  • How to view router/switch logs using LMS 3.2?

    Of course I can log into each of my 100 routers and switches and peforms "sh loggin" to look for problems, but how do I use LMS 3.2 to consolidate all those logs into one location?  Can I set up something so I can see those logs in more or less real time?
    Thanks in advance.

    >> Does LMS go get syslog messages periodically or does the device send a copy to LMS whenever it generates a new message?
    The latter.
    If for some reason, the devices cannot log directly to LMS, there're a few options: 1) Devices log to a central syslog server, which in turn exposes the syslogs to LMS' Syslog Analyzer, either via the Cisco-supplied Remote Syslog Collector or some unsupported methods such as NFS mount, or 2) Install Syslog-ng on the central syslog server, relay the logs to LMS, as described in this whitepaper: http://www.cisco.com/en/US/prod/collateral/netmgtsw/ps6504/ps6528/ps2425/white_paper_c11-571038.html
    >> What's the benefit of scheduling a report to run automatically?  Is it saved somewhere that is easier/quicker to get to?
    It's the usual benefits of automation. Scheduled syslog reports apparently write outputs to /var/adm/CSCOpx/files/rme/cri/archives/syslog/reports/output/[jobID_runID], on Solaris, for example. The structure inside is rather muddy. So it might be easier to have something like a VBscript to screen-scrape the LMS web GUI for the report outputs instead.
    >> Can new syslog messages from devices be posted to an RSS feed?
    That's a novel idea. Though obviously not from the devices directly, it most likely coud be done through some "syslog2rss" relay residing on the syslog server. I think the potential volumes of logs could be too much for RSS, unless careful filtering/deduplication takes place on the relay before posting to a feed.

  • How can I extract information from an IdM approval stack?

    During the workflow for provisioning employees, managers are required to authorize certain actions. The problem is that they sometimes do not.
    My boss has asked for a formatted report in ascending date order that shows the passive authorizations (some are weeks old!) and the managers to whom the "lazy" managers report.
    I've done this, but it's driven by my manually screen-scraping the information from the approval list onto an external file.
    The problem is that I have to initiate the process by bringing up the approval screen, copying and pasting information into a file and then running a Perl munge script against the created file...
    I want to be able to acccess the approvals list by means of a crontab initiated script and not have to rely on the "screen-scrape."
    Any ideas?
    Ian Clark
    ADP - ProBusiness.
    Message was edited by:
    Namalankula

    You can do it in following way....
    First you need to create the object of URL by specifying the URL name.
    URL myurl = new URL("http://www.xyz.com/index.html"); //specify your URL path here
    URLConnection conn = null;
    DataInputStream data = null;
    String line;
    StringBuffer buf = new StringBuffer();
    try {
    conn = myurl.openConnection();
    conn.connect();
    data = new DataInputStream(new BufferedInputStream(
    conn.getInputStream()));
    while ((line = data.readLine()) != null) {
    buf.append(line + "\n");
    data.close();
    catch (IOException e) {
    System.out.println("IO Error:" + e.getMessage());
    So, at the end, you have the data in your string buffer...you can use it wherever u want.
    Hope this helps

Maybe you are looking for

  • Photo's not displaying after upgrade

    It appears that iPhoto is recognizing my photos as it tells me how many I have (and how many events), but the thumbnails don't show (just a place holder). If I double click on a thumbnail place holder, I get a large pixelated exclamation point. When

  • Purchase Rebate Error

    Hi, While executing the Purchase Rebate scenario, in Transaction code MEB4 for posting the interim Rebate to Accounts I am getting an error "Tax code is not defined;check your entry". Please advise. Thanks Christine

  • Copy & Paste objects to original xy coordinates

    Is it possible to copy an object from one file to another file and have it pasted using the xy coordinates from the original document? I'm new to illustrator, came from using Corel but there it would paste using the original coordinates and not the c

  • Time Conversions

    I have a data file, the first column is the time (HH:MMS AM/PM) that the data is taken at. The subsequent columns contain numerical data. I read the file using the "Read Lines from Spreadsheet" subvi. I am writing a VI that reads the file and allows

  • NPS Certificate with Internal Domain

    Hi all, We currently run an AD domain with an internal (.local) domain name.  We're a school and run a BYOD program, so we have lots of non-domain machines, it's therefore important that the certificate used on our NPS server for our PEAP secured wir