Image | ![]() |
EAN-13 | 0191091348376 ![]() |
UPC-A | 191091348376 ![]() |
Product Name | Bells of St. Mary's |
Category | Electronics / Photography: A/V Media: Movie / TV |
Amazon.com | ![]() |
Price New | 10.00 US Dollars (curriencies) |
Run Time | 126 minutes |
Cast | Bing Crosby, Henry Travers, Ingrid Bergman, Ruth Donnelly, William Gargan |
Artist | Bing Crosby, Ingrid Bergman, Henry Travers, William Gargan, Ruth Donnelly, Joan Carroll |
Run Time | 126 minutes |
Width | 5.5 inches (convert) |
Height | 0.5 inches (convert) |
Length | 7.5 inches (convert) |
Weight | 22 hundredths pounds (convert) |
Binding | Dvd |
Format | NTSC |
Run Time | 126 minutes |
Long Description | At a big city Catholic school, Father O'Malley and Sister Benedict indulge in friendly rivalry, and succeed in extending the school through the gift of a building. Nominated for 7 Academy Awards! When sold by Amazon.com, this product is manufactured on demand using DVD-R recordable media. Amazon.com's standard return policy will apply. |
Similar Items | 0887090063708: Miracle of the Bells 0883929279593: Bishop's Wife 0883929201921: Boys Town 0480044470241: Bing Crosby Double Feature:Going My Way / Holiday Inn 0191329036709: Holiday Inn 0032429200969: White Christmas 0025193236920: Going My Way 0024543848738: Come To The Stable 0012569677166: Christmas in Connecticut 0012569677142: Boys Town |
Created | 04-12-2018 1:46:40am |
Modified | 04-29-2020 4:48:02pm |
MD5 | 5a2130cc44634e7d49bf288357fce31a |
SHA256 | 03f8265ed64a2cf10affe0b26f40d4f34d4ada96fac52601e0832d7f63727599 |
Search Google | by EAN or by Title |
Query Time | 0.0182638 |
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.