Image | ![]() |
EAN-13 | 0794043554223 ![]() |
UPC-A | 794043554223 ![]() |
Product Name | Lord Of The Rings: Fellowship Of The Rings Widescreen Dvd |
Language | English |
Category | Electronics / Photography: A/V Media: Movie / TV |
Short Description | 2 disc |
Amazon.com | ![]() |
SKU | 20110708131613 |
Price New | 3.09 US Dollars (curriencies) |
Price Used | 0.01 US Dollars (curriencies) |
Long Description | Based on J.R.R. Tolkien's masterpiece, The Lord of the Rings: The Fellowship of the Ring is an epic adventure of good against evil, the power of friendship and individual courage. The saga centers around an unassuming Hobbit named Frodo Baggins who inherits a Ring that would give a dark and powerful lord the power to enslave the world. With a loyal fellowship of elves, dwarves, men and a wizard, Frodo embarks on a heroic quest to destroy the One Ring and pave the way for the emergence of mankind. DVD Features: 3D Animated Menus DVD ROM Features: Exclusive online content Documentaries: 3 in-depth programs that reveal the secrets behind the production of this epic adventure, including: -"Welcome to Middle-earth" in-store special as shown by Houghton Mifflin -"The Quest for the Ring" as debuted on the FBC Network -"A Passage to Middle-earth" as premiered on the SCI-FI Channel Featurette: 15 featurettes originally created for lordoftherings.net, which explore the locales and cultures of Middle-earth and include interviews with cast members Elijah Wood, Ian McKellen, Viggo Mortensen, Liv Tyler and others. Exclusive 10-minute behind-the-scenes preview of the next The Lord of the Rings theatrical release, The Two Towers. Music Video: Enya "May It Be" music video Other: An inside look at the Special Extended DVD Edition of The Lord of the Rings: The Fellowship of the Ring Preview of Electronic Arts' video game, The Two Towers Double Amaray Packaging TV Spot Theatrical Trailer: Original theatrical trailers |
Similar Items | 9780792233466: National Geographic Beyond The Movie - The Lord Of The Rings - The Return Of The King 9780790764016: The Matrix Reloaded (Full Screen Edition) 9780780644045: The Lord of the Rings: The Two Towers 5051892186841: The Hobbit Trilogy [DVD] [2015] 5051892186346: The Hobbit: The Battle of the Five Armies [DVD] [2015] 5051889370468: Le Hobbit : un voyage inattendu - Edition Limitée Collector 2 DVD 5051889264651: Le Hobbit : Un voyage inattendu 5017239192517: The Lord of the Rings 5017239192487: The Lord of the Rings [Region 2] 5017239191893: The Lord of the Rings: The Two Towers 5017239114816: The Lord of the Rings: The Two Towers 0883929489350: The Hobbit: The Motion Picture Trilogy (Extended Edition) (3pk) 0794043167638: The Lord of the Rings: The Return of the King 0794043165368: The Hobbit: An Unexpected Journey 0794043164477: Hobbit, The The Battle of the Five Armies 0794043161711: Lord of the Rings The Two Towers 0501723919230: The Lord of the Rings: The Return of the King 0065935148227: The Lord of the Rings: The Two Towers |
Created | 07-01-2006 |
Modified | 04-30-2020 6:00:59am |
MD5 | bbc271605f4de7c9355096ce48f4e7f5 |
SHA256 | 27e2251fa04d333f6cbd75642d178a34ade6f2bd82415c11dca05e79e2b3d674 |
Search Google | by EAN or by Title |
Query Time | 0.0365920 |
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.