Image | ![]() |
EAN-13 | 9781424816545 ![]() |
Product Name | Shadow Man |
Category | Electronics / Photography: A/V Media: Movie / TV |
Amazon.com | ![]() |
Price New | 2.01 US Dollars (curriencies) |
Price Used | 0.49 US Dollars (curriencies) |
Rating | R - Restricted |
IMDb | ![]() |
Trailer | Watch The Trailer |
Run Time | 96 minutes |
Aspect Ratio | 1.85:1 |
Cast | Eva Pope, Imelda Staunton, Michael Elwyn, Michael Fitzpatrick, Steven Seagal |
Director | Michael Keusch |
Genre | Action & Adventure |
Run Time | 96 minutes |
Width | 5.5 inches (convert) |
Height | 0.53 inches (convert) |
Length | 7.5 inches (convert) |
Weight | 20 hundredths pounds (convert) |
Binding | Dvd |
Release Year | 2006 |
Format | Multiple Formats, Closed-captioned, Color, Dolby, Dubbed, NTSC, Subtitled, Widescreen |
Run Time | 96 minutes |
Long Description | Filmed in Bucharest, Romania, Steven Seagal (Black Dawn, Under Siege), Garrick Hagon (Second in Command, Spy Game), Skye Bennett (Shadows of the Past) and Eva Pope (Splinter, TV's "Bad Girls," "Coronation Street") star in this hard-hitting, action-packed film about an Intelligence Operative who discovers that no one is what they seem in the shadowy world of espionage. On a trip to Bucharest five years after the death of his wife and son, former covert agent Jack Foster's (Seagal) 8-year-old daughter is kidnapped. He searches Bucharest for her while the Romanian police, the American Embassy, and Russian agents all pursue him, believing he has a microchip containing the formula for a virus that could kill millions if it falls into the wrong hands. |
Similar Items | 9781404945043: Into the Sun 9781404903807: Foreigner 5035822020535: Today You Die [Import anglais] 0097368953444: A Dangerous Man 0097368522442: Born To Raise Hell 0068779712579: Kill Switch 0043396032026: Out of Reach 0031398199830: A Good Man 0024543615552: Keeper (2009) 0024543028383: Marked for Death 0013132561899: Maximum Conviction |
Created | 10-08-2013 1:30:01am |
Modified | 05-18-2019 12:47:29am |
MD5 | bbc29e9d0e26a8ae600e7011e9a04f0b |
SHA256 | 311cbba75d0be816d79a950640a1816b8f78df7cd9e97a46f095b42a52075c31 |
Search Google | by EAN or by Title |
Query Time | 0.0246789 |
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.