Image | ![]() |
EAN-13 | 0012236220046 ![]() |
UPC-A | 012236220046 ![]() |
Product Name | Stir of Echoes: The Homecoming |
Language | English |
Category | Electronics / Photography: A/V Media: Movie / TV |
Short Description | DVD |
Amazon.com | ![]() |
Model | 012236220046 |
Price New | 22.95 US Dollars (curriencies) |
Price Used | 1.95 US Dollars (curriencies) |
Rating | R - Restricted |
IMDb | ![]() |
Trailer | Watch The Trailer |
Run Time | 89 minutes |
Cast | Rob Lowe, Marnie McPhail, Ben Lewis, Tatiana Maslany |
Director | Ernie Barbarash |
Genre | HORROR,THRILLER |
Width | 5.4 inches (convert) |
Height | 0.8 inches (convert) |
Length | 7.4 inches (convert) |
Weight | 4 ounces (convert) |
Binding | Paperback |
Release Year | 2007 |
Published | 02/06/2019 |
Long Description | During the invasion of Iraq, the National Guard Commander Ted Cogan sees a van speeding up against his site without respecting the warning plates. He orders his men to fire, and later he discovers that in the van there was an Iraqi family. He tries to save a young girl from the fire, but the vehicle explodes and his group is attacked; he enters in coma severely wounded and his friend and neighbor dies. When Ted recovers, he returns home to meet his family, but he is increasingly haunted by ghosts of dead people, premonitions and guilty complex for the death of the innocent family. He seeks medical support but his financial situation does not allow him to pay for a treatment and the government denies helping him. However, one ghost gives the name of Jake Witzky, who tells him to find out what the spirit demands from him. When his son Max is severely wounded in a car crash where his girlfriend Sammi and their friend Luke die, Ted discovers the wish of justice of the tormented soul and he tries to do the right thing. |
Created | 05-22-2010 |
Modified | 02-06-2019 4:11:34am |
MD5 | 2a2545fab039b370a03aa3e96e340927 |
SHA256 | e6c597558834e036256427ac999c7ad124bc976d045fe64dce504c966162035d |
Search Google | by EAN or by Title |
Query Time | 0.0422201 |
Article of interest
This is a basic implementation of a service that provides retrieval access to the EANData.com UPC web site. Its was coded to verify basic proof-of-concept for development of another application and was not intended to provide be anything more than basic functionality in the retrieval of UPC data from the EANData.com web site.
There are several places where simple code was left in place rather than using more advanced Java features/methods to allow for easier understanding of junior developers. Not much time spent refactoring or cleaning up the code. It is provided as a starting point only.
It contains a Factory service that returns a service object configured using the UcpService.properties (see below) file found in the class path of the executed code. The UpcQueryService can respond with an implementation of the UpcResponse and supporting interfaces or with an InputStream allowing direct access to the response from the from the EANData.com web site.
JSR 353 is the Java API for JSON is currently under development (http://java.net/projects/json-processing-spec & http://java.net/projects/jsonp). The several Java JSON implementations seemed to be more than I was wanting/needing so I wrote a basic parser to provide JSON parsing capability needed. Its not perfect but is a good basic start.
Download the example source code
The UpcService.properties must be configured.
Url (Required)
provides the address used to query UPC data. The additional parameters are added to retrieve the requested information.
ApiKeyCode (Required)
Provided from EANData.com when your account is setup.
Mode (Required)
The manner in which the data will be retrieved from the EANData.com web site.
AutoRetrieveGraphics (Optional)
Boolean to indicate whether the graphics, when indicated by a Url, are to be automatically retrieved at the same time with the UPC data. Default is false. A factory method allows for the this property to be overridden at the time the UpcQueryService is created.