Image | ![]() |
EAN-13 | 9780767868310 ![]() |
Product Name | Long Gray Line |
Language | English |
Category | Electronics / Photography: A/V Media: Movie / TV |
Short Description | Weight:0.25 pounds |
Amazon.com | ![]() |
SKU | A043396065468 |
Model | 2226419 |
Price New | 59.89 US Dollars (curriencies) |
Price Used | 24.48 US Dollars (curriencies) |
Aspect Ratio | 2.35:1 |
Cast | Tyrone Power, Maureen O'Hara, Robert Francis, Ward Bond |
Genre | DRAMA |
Width | 5.5 inches (convert) |
Height | 0.5 inches (convert) |
Length | 7.5 inches (convert) |
Weight | 4 ounces (convert) |
Binding | Dvd |
Format | Multiple Formats, Anamorphic, Closed-captioned, Color, Dubbed, Full Screen, NTSC, Subtitled, Widescreen |
Published | 08/23/2011 |
Run Time | 137 minutes |
Features | Factory sealed DVD |
Long Description | Based on the true story of Marty Maher, a humble Irish immigrant who rose through the ranks to become one of West Point's most beloved instructors, THE LONG GRAY LINE is a rousing tribute to a remarkable man and his way of life. Director John Ford and star Tyrone Power, themselves the sons of Irishimmigrants, bring an extra dimension of fidelity and fervor to this inspiring biography. Newly arrived in America, Maher's first job was as a waiter at West Point. Clumsy and boisterous, he quickly broke so much of the military academy's china that he was forced to join the army to repay his debts.But once enlisted, the rough-and-ready Dubliner served his adopted nation with rare dedication, establishing himself as an inspirational coach at West Point. Spanning 50 years and two world wars, thefilm shows Maher at his best, molding and motivating the young men who would become America's heroes and presidents. Filmed on location with a stellar supporting cast (including Ford favorites Maureen O'Hara, Ward Bond and Harry Carey, Jr.), THE LONG GRAY LINE is a stirring reminder of Marty Maher's proud place in history |
Similar Items | 0829567036228: Code Breakers 0085391136996: West Point Story 0024543771838: Stars & Stripes Forever 0024543438199: Tyrone Power Collection 0024543239253: Black Swan '42 0024543060734: How Green Was My Valley 0012569796584: Fighting 69th 0012569791183: Knute Rockne All American 0012569519626: Mrs. Miniver 0011301663566: West Point The Complete Series View 9 more similar items |
Created | 11-20-2012 12:01:01pm |
Modified | 05-15-2019 8:35:32am |
MD5 | afd5103ae78ace6edab6abd07f8f5ecb |
SHA256 | 93c689752e1f3a01061a851e412449a89368183f83cd68a38a4d2c142153ce60 |
Search Google | by EAN or by Title |
Query Time | 3.4175479 |
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.