I'm into development of an application that fetches various inputs from internet pages whereas each information snippet comes from a different location (mashup). I would like to generate the mashup building block (snippets) through a visual tool. Do you know of anything similar that can be used for such a project? (Already made control, a sample code, article, etc.) Preferred development environment is .NET - but not mandatory.
Howto visually design a mashup query for programatic extraction
150 Views Asked by Galco At
1
There are 1 best solutions below
Related Questions in RSS
- Open a webpage on list view click
- Media content tag missing from rss feed generated by Rome 1.0
- How do I get Facebook Group Events into WordPress?
- Joomla 3 RSS url syntax
- Microsoft.XMLDOM - Facebook Page RSS - System error: -2147012866
- Show only headers in Octopress RSS
- Can I add RSS-less websites on Feedly or other RSS-Reader?
- Fatal error: Call to a member function getElementsByTagName() WordPress 4.2.2 RSS Feed
- Parse RSS modification
- Parse RSS with groovy
- How can stop rss parser after fixed numbers of items?
- How to customize WordPress RSS feed
- Opening and Ending Tag mismatch error while creating Rss
- How to paginate with string provided in JSON result?
- Get full resolution image url from reddit post with jquery?
Related Questions in EXTRACT
- Python: How to extract data in text file based on class information from another text file?
- Extract method names from .CS code files
- Node js Separate String into arrays
- How to extract data from web api with Talend Open Studio
- Extract as.numeric value from CSV
- Download zip file, extract and overwrite windows 2008 r2
- extract numerical values from DataFrame string object
- Extract Images from Executable Files Using Managed Code (C#/VB)
- Incorrect Extraction of fields in Splunk
- How to extract short sequence using window with specific step size?
- Extract rows based on values from text file using Python
- XmlPullParser : extract tags in Tag
- Extracting Table Data using JSoup
- Extracting Substring from File Name
- How to extract short sequence based on step size?
Related Questions in ETL
- Monolithic ETL to distributed/scalable solution and OLAP cube to Elasticsearch/Solr
- How to use component javascript in the Pentahoo Data Integration
- SSIS ETL parallel extraction from a AS400 file
- ETL Hangs - SQL Server in EC2 Machine + SSIS + AWS RDS SQL Server
- Pull Text file to SQL server 2008 table
- SqlAlchemy get all strings (don't cast to boolean or datetime)
- Best / simplest way to transfer data from one Oracle database to another
- Using blank-line delimited records and colon-separated fields in awk
- SSIS dynamic columns validation
- Is it possible to pass parameter inside With Clause in SQL Server SSIS Job?
- Easiest way to import a simple csv file to a graph with OrientDB ETL
- forwarding data from one source to another in real time
- SSIS Variable Scope Issues
- OrientDB ETL with self joined mysql table
- loop row by row from an excel file map to variable
Related Questions in MASHUP
- Read only data source filling up approach
- Does Google Gadget works for an Internal Corporate Site?
- Google Map Infowindow Closure?
- Include/mashup a dynamic wicket page in a static webpage
- What's the best way to mashup Google Maps with geolocated photos from one or more social networks?
- Cache with expiring keys
- google maps, cellid to location
- Which (popular) websites support mashable APIs?
- cannot geocode in other browser
- Is it possible to create client-side only mashups with javascript?
- Catching errors or exceptions
- google map problem
- Howto visually design a mashup query for programatic extraction
- Visitors adding to a custom Google map
- Change field type and multiple exact value replacements in a single Power BI Step / M Statement
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
IMO the major challenge will be to extract the appropriate information from each feed in semantic form. Wikipedia describes mashups as:
The classic mashup - Chicago crime - works because key information such as dates and geolocations are available semantically. Other types of common information are persons, organisations, and domain-specific identifiers.
When you have identified these you may wish to consider the RDF-based tools that the semantic web is developing. Note that governments are starting to emit their data in RDF so I would see this as a key technology
If your web pages do not have semantic information immediately you will probably have to create screen scrapers and HTML parsers. That's not very glamorous, there are no special tools and tends to be just hard work.