amazon-mws 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/.gitignore +1 -0
 - data/README.markdown +31 -0
 - data/Rakefile +14 -0
 - data/VERSION +1 -0
 - data/amazon-mws.gemspec +164 -0
 - data/examples/xml/cancel_feed_submissions.xml +16 -0
 - data/examples/xml/cancel_report_requests.xml +18 -0
 - data/examples/xml/error.xml +10 -0
 - data/examples/xml/get_feed_submission_count.xml +10 -0
 - data/examples/xml/get_feed_submission_list.xml +16 -0
 - data/examples/xml/get_feed_submission_list_by_next_token.xml +16 -0
 - data/examples/xml/get_feed_submission_result.xml +30 -0
 - data/examples/xml/get_report_count.xml +9 -0
 - data/examples/xml/get_report_list.xml +17 -0
 - data/examples/xml/get_report_request_count.xml +8 -0
 - data/examples/xml/get_report_request_list.xml +120 -0
 - data/examples/xml/get_report_request_list_by_next_token.xml +20 -0
 - data/examples/xml/get_report_schedule_count.xml +10 -0
 - data/examples/xml/get_report_schedule_list.xml +15 -0
 - data/examples/xml/get_report_schedule_list_by_next_token.xml +15 -0
 - data/examples/xml/manage_report_schedule.xml +14 -0
 - data/examples/xml/request_report.xml +17 -0
 - data/examples/xml/submit_feed.xml +14 -0
 - data/examples/xml/update_report_acknowledgements.xml +18 -0
 - data/examples/xsd/Inventory.xsd +49 -0
 - data/examples/xsd/Item.xsd +285 -0
 - data/examples/xsd/Listings.xsd +32 -0
 - data/examples/xsd/OrderAcknowledgement.xsd +55 -0
 - data/examples/xsd/OrderAdjustment.xsd +94 -0
 - data/examples/xsd/OrderFulfillment.xsd +57 -0
 - data/examples/xsd/Override.xsd +48 -0
 - data/examples/xsd/Price.xsd +59 -0
 - data/examples/xsd/ProcessingReport.xsd +87 -0
 - data/examples/xsd/Product.xsd +220 -0
 - data/examples/xsd/Product/AutoAccessory.xsd +807 -0
 - data/examples/xsd/Product/Beauty.xsd +114 -0
 - data/examples/xsd/Product/CE.xsd +544 -0
 - data/examples/xsd/Product/CameraPhoto.xsd +2410 -0
 - data/examples/xsd/Product/FoodAndBeverages.xsd +270 -0
 - data/examples/xsd/Product/Gourmet.xsd +85 -0
 - data/examples/xsd/Product/Health.xsd +189 -0
 - data/examples/xsd/Product/Home.xsd +654 -0
 - data/examples/xsd/Product/Jewelry.xsd +603 -0
 - data/examples/xsd/Product/Miscellaneous.xsd +157 -0
 - data/examples/xsd/Product/MusicalInstruments.xsd +853 -0
 - data/examples/xsd/Product/Office.xsd +550 -0
 - data/examples/xsd/Product/PetSupplies.xsd +40 -0
 - data/examples/xsd/Product/ProductClothing.xsd +197 -0
 - data/examples/xsd/Product/SWVG.xsd +238 -0
 - data/examples/xsd/Product/Sports.xsd +308 -0
 - data/examples/xsd/Product/TiresAndWheels.xsd +159 -0
 - data/examples/xsd/Product/Tools.xsd +66 -0
 - data/examples/xsd/Product/ToysBaby.xsd +241 -0
 - data/examples/xsd/Product/Wireless.xsd +77 -0
 - data/examples/xsd/ProductImage.xsd +39 -0
 - data/examples/xsd/Relationship.xsd +47 -0
 - data/examples/xsd/SettlementReport.xsd +158 -0
 - data/examples/xsd/amzn-base.xsd +1601 -0
 - data/examples/xsd/amzn-envelope.xsd +98 -0
 - data/examples/xsd/amzn-header.xsd +45 -0
 - data/lib/amazon/mws.rb +86 -0
 - data/lib/amazon/mws/authentication.rb +9 -0
 - data/lib/amazon/mws/authentication/query_string.rb +28 -0
 - data/lib/amazon/mws/authentication/signature.rb +43 -0
 - data/lib/amazon/mws/base.rb +61 -0
 - data/lib/amazon/mws/connection.rb +99 -0
 - data/lib/amazon/mws/connection/management.rb +94 -0
 - data/lib/amazon/mws/connection/request_builder.rb +67 -0
 - data/lib/amazon/mws/exceptions.rb +80 -0
 - data/lib/amazon/mws/feed.rb +223 -0
 - data/lib/amazon/mws/feed_builder.rb +67 -0
 - data/lib/amazon/mws/feed_enumerations.rb +46 -0
 - data/lib/amazon/mws/feed_submission.rb +14 -0
 - data/lib/amazon/mws/lib/extensions.rb +162 -0
 - data/lib/amazon/mws/lib/memoizable.rb +10 -0
 - data/lib/amazon/mws/orders.rb +9 -0
 - data/lib/amazon/mws/report.rb +310 -0
 - data/lib/amazon/mws/report_enumerations.rb +44 -0
 - data/lib/amazon/mws/report_info.rb +16 -0
 - data/lib/amazon/mws/report_request.rb +19 -0
 - data/lib/amazon/mws/report_schedule.rb +13 -0
 - data/lib/amazon/mws/response.rb +32 -0
 - data/lib/amazon/mws/response/cancel_feed_submissions_response.rb +14 -0
 - data/lib/amazon/mws/response/cancel_report_requests_response.rb +14 -0
 - data/lib/amazon/mws/response/get_feed_submission_count_response.rb +13 -0
 - data/lib/amazon/mws/response/get_feed_submission_list_by_next_token_response.rb +15 -0
 - data/lib/amazon/mws/response/get_feed_submission_list_response.rb +15 -0
 - data/lib/amazon/mws/response/get_feed_submission_result_response.rb +54 -0
 - data/lib/amazon/mws/response/get_report_count_response.rb +13 -0
 - data/lib/amazon/mws/response/get_report_list_response.rb +15 -0
 - data/lib/amazon/mws/response/get_report_request_count_response.rb +13 -0
 - data/lib/amazon/mws/response/get_report_request_list_by_next_token_response.rb +15 -0
 - data/lib/amazon/mws/response/get_report_request_list_response.rb +15 -0
 - data/lib/amazon/mws/response/get_report_schedule_count_response.rb +13 -0
 - data/lib/amazon/mws/response/get_report_schedule_list_by_next_token_response.rb +15 -0
 - data/lib/amazon/mws/response/get_report_schedule_list_response.rb +15 -0
 - data/lib/amazon/mws/response/manage_report_schedule_response.rb +14 -0
 - data/lib/amazon/mws/response/request_report_response.rb +14 -0
 - data/lib/amazon/mws/response/response_error.rb +15 -0
 - data/lib/amazon/mws/response/submit_feed_response.rb +13 -0
 - data/lib/amazon/mws/response/update_reports_acknowledgements_response.rb +14 -0
 - data/lib/amazon/mws/version.rb +12 -0
 - data/pkg/amazon-mws-0.1.0.gem +0 -0
 - data/test/authentication_test.rb +15 -0
 - data/test/connection_test.rb +5 -0
 - data/test/feed_builder_test.rb +15 -0
 - data/test/feed_submission_test.rb +32 -0
 - data/test/feed_test.rb +64 -0
 - data/test/query_string_test.rb +21 -0
 - data/test/report_test.rb +29 -0
 - data/test/request_test.rb +18 -0
 - data/test/response_test.rb +197 -0
 - data/test/signature_test.rb +30 -0
 - data/test/test_config.yml +5 -0
 - data/test/test_helper.rb +22 -0
 - metadata +179 -0
 
    
        data/.gitignore
    ADDED
    
    | 
         @@ -0,0 +1 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            mws.yml
         
     | 
    
        data/README.markdown
    ADDED
    
    | 
         @@ -0,0 +1,31 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            Ruby library for Amazon Marketplace Web Service (MWS)
         
     | 
| 
      
 2 
     | 
    
         
            +
            =====================================================
         
     | 
| 
      
 3 
     | 
    
         
            +
             
     | 
| 
      
 4 
     | 
    
         
            +
            TODO
         
     | 
| 
      
 5 
     | 
    
         
            +
            ===========
         
     | 
| 
      
 6 
     | 
    
         
            +
             
     | 
| 
      
 7 
     | 
    
         
            +
            * Complete the Reports API
         
     | 
| 
      
 8 
     | 
    
         
            +
            * The API calls in general are under development
         
     | 
| 
      
 9 
     | 
    
         
            +
            * Parse the responses intelligently (not just as a hash)
         
     | 
| 
      
 10 
     | 
    
         
            +
            * Better documentation
         
     | 
| 
      
 11 
     | 
    
         
            +
             
     | 
| 
      
 12 
     | 
    
         
            +
            Intro
         
     | 
| 
      
 13 
     | 
    
         
            +
            ===========
         
     | 
| 
      
 14 
     | 
    
         
            +
             
     | 
| 
      
 15 
     | 
    
         
            +
            Amazon::MWS is a set of classes for using the Amazon Marketplace Web Service, a link to Amazon's Seller Central and to your Seller Central account.
         
     | 
| 
      
 16 
     | 
    
         
            +
             
     | 
| 
      
 17 
     | 
    
         
            +
            This library is in active development, but should now work for the most part. If you would like to contribute to this project, please contact me.
         
     | 
| 
      
 18 
     | 
    
         
            +
             
     | 
| 
      
 19 
     | 
    
         
            +
            These classes are modeled after aspects of AWS::S3 => http://amazon.rubyforge.org/
         
     | 
| 
      
 20 
     | 
    
         
            +
             
     | 
| 
      
 21 
     | 
    
         
            +
            Description
         
     | 
| 
      
 22 
     | 
    
         
            +
            ===========
         
     | 
| 
      
 23 
     | 
    
         
            +
             
     | 
| 
      
 24 
     | 
    
         
            +
             
     | 
| 
      
 25 
     | 
    
         
            +
             
     | 
| 
      
 26 
     | 
    
         
            +
            Enjoy!
         
     | 
| 
      
 27 
     | 
    
         
            +
             
     | 
| 
      
 28 
     | 
    
         
            +
            Usage
         
     | 
| 
      
 29 
     | 
    
         
            +
            ===========
         
     | 
| 
      
 30 
     | 
    
         
            +
             
     | 
| 
      
 31 
     | 
    
         
            +
            Stay tuned, we are working on it!
         
     | 
    
        data/Rakefile
    ADDED
    
    | 
         @@ -0,0 +1,14 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            begin
         
     | 
| 
      
 2 
     | 
    
         
            +
              require 'jeweler'
         
     | 
| 
      
 3 
     | 
    
         
            +
              Jeweler::Tasks.new do |gemspec|
         
     | 
| 
      
 4 
     | 
    
         
            +
                gemspec.name = "amazon-mws"
         
     | 
| 
      
 5 
     | 
    
         
            +
                gemspec.summary = "A Ruby Wrapper for the Amazon MWS API"
         
     | 
| 
      
 6 
     | 
    
         
            +
                gemspec.description = "A Ruby Wrapper for the Amazon MWS API"
         
     | 
| 
      
 7 
     | 
    
         
            +
                gemspec.email = "david.michael@sonymusic.com"
         
     | 
| 
      
 8 
     | 
    
         
            +
                gemspec.homepage = "http://github.com/dmichael/amazon-mws"
         
     | 
| 
      
 9 
     | 
    
         
            +
                gemspec.authors = ["David Michael"]
         
     | 
| 
      
 10 
     | 
    
         
            +
              end
         
     | 
| 
      
 11 
     | 
    
         
            +
              Jeweler::GemcutterTasks.new
         
     | 
| 
      
 12 
     | 
    
         
            +
            rescue LoadError
         
     | 
| 
      
 13 
     | 
    
         
            +
              puts "Jeweler not available. Install it with: sudo gem install technicalpickles-jeweler -s http://gems.github.com"
         
     | 
| 
      
 14 
     | 
    
         
            +
            end
         
     | 
    
        data/VERSION
    ADDED
    
    | 
         @@ -0,0 +1 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            0.1.0
         
     | 
    
        data/amazon-mws.gemspec
    ADDED
    
    | 
         @@ -0,0 +1,164 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            # Generated by jeweler
         
     | 
| 
      
 2 
     | 
    
         
            +
            # DO NOT EDIT THIS FILE DIRECTLY
         
     | 
| 
      
 3 
     | 
    
         
            +
            # Instead, edit Jeweler::Tasks in Rakefile, and run the gemspec command
         
     | 
| 
      
 4 
     | 
    
         
            +
            # -*- encoding: utf-8 -*-
         
     | 
| 
      
 5 
     | 
    
         
            +
             
     | 
| 
      
 6 
     | 
    
         
            +
            Gem::Specification.new do |s|
         
     | 
| 
      
 7 
     | 
    
         
            +
              s.name = %q{amazon-mws}
         
     | 
| 
      
 8 
     | 
    
         
            +
              s.version = "0.1.0"
         
     | 
| 
      
 9 
     | 
    
         
            +
             
     | 
| 
      
 10 
     | 
    
         
            +
              s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
         
     | 
| 
      
 11 
     | 
    
         
            +
              s.authors = ["David Michael"]
         
     | 
| 
      
 12 
     | 
    
         
            +
              s.date = %q{2009-10-30}
         
     | 
| 
      
 13 
     | 
    
         
            +
              s.description = %q{A Ruby Wrapper for the Amazon MWS API}
         
     | 
| 
      
 14 
     | 
    
         
            +
              s.email = %q{david.michael@sonymusic.com}
         
     | 
| 
      
 15 
     | 
    
         
            +
              s.extra_rdoc_files = [
         
     | 
| 
      
 16 
     | 
    
         
            +
                "README.markdown"
         
     | 
| 
      
 17 
     | 
    
         
            +
              ]
         
     | 
| 
      
 18 
     | 
    
         
            +
              s.files = [
         
     | 
| 
      
 19 
     | 
    
         
            +
                ".gitignore",
         
     | 
| 
      
 20 
     | 
    
         
            +
                 "README.markdown",
         
     | 
| 
      
 21 
     | 
    
         
            +
                 "Rakefile",
         
     | 
| 
      
 22 
     | 
    
         
            +
                 "VERSION",
         
     | 
| 
      
 23 
     | 
    
         
            +
                 "amazon-mws.gemspec",
         
     | 
| 
      
 24 
     | 
    
         
            +
                 "examples/xml/cancel_feed_submissions.xml",
         
     | 
| 
      
 25 
     | 
    
         
            +
                 "examples/xml/cancel_report_requests.xml",
         
     | 
| 
      
 26 
     | 
    
         
            +
                 "examples/xml/error.xml",
         
     | 
| 
      
 27 
     | 
    
         
            +
                 "examples/xml/get_feed_submission_count.xml",
         
     | 
| 
      
 28 
     | 
    
         
            +
                 "examples/xml/get_feed_submission_list.xml",
         
     | 
| 
      
 29 
     | 
    
         
            +
                 "examples/xml/get_feed_submission_list_by_next_token.xml",
         
     | 
| 
      
 30 
     | 
    
         
            +
                 "examples/xml/get_feed_submission_result.xml",
         
     | 
| 
      
 31 
     | 
    
         
            +
                 "examples/xml/get_report_count.xml",
         
     | 
| 
      
 32 
     | 
    
         
            +
                 "examples/xml/get_report_list.xml",
         
     | 
| 
      
 33 
     | 
    
         
            +
                 "examples/xml/get_report_request_count.xml",
         
     | 
| 
      
 34 
     | 
    
         
            +
                 "examples/xml/get_report_request_list.xml",
         
     | 
| 
      
 35 
     | 
    
         
            +
                 "examples/xml/get_report_request_list_by_next_token.xml",
         
     | 
| 
      
 36 
     | 
    
         
            +
                 "examples/xml/get_report_schedule_count.xml",
         
     | 
| 
      
 37 
     | 
    
         
            +
                 "examples/xml/get_report_schedule_list.xml",
         
     | 
| 
      
 38 
     | 
    
         
            +
                 "examples/xml/get_report_schedule_list_by_next_token.xml",
         
     | 
| 
      
 39 
     | 
    
         
            +
                 "examples/xml/manage_report_schedule.xml",
         
     | 
| 
      
 40 
     | 
    
         
            +
                 "examples/xml/request_report.xml",
         
     | 
| 
      
 41 
     | 
    
         
            +
                 "examples/xml/submit_feed.xml",
         
     | 
| 
      
 42 
     | 
    
         
            +
                 "examples/xml/update_report_acknowledgements.xml",
         
     | 
| 
      
 43 
     | 
    
         
            +
                 "examples/xsd/Inventory.xsd",
         
     | 
| 
      
 44 
     | 
    
         
            +
                 "examples/xsd/Item.xsd",
         
     | 
| 
      
 45 
     | 
    
         
            +
                 "examples/xsd/Listings.xsd",
         
     | 
| 
      
 46 
     | 
    
         
            +
                 "examples/xsd/OrderAcknowledgement.xsd",
         
     | 
| 
      
 47 
     | 
    
         
            +
                 "examples/xsd/OrderAdjustment.xsd",
         
     | 
| 
      
 48 
     | 
    
         
            +
                 "examples/xsd/OrderFulfillment.xsd",
         
     | 
| 
      
 49 
     | 
    
         
            +
                 "examples/xsd/Override.xsd",
         
     | 
| 
      
 50 
     | 
    
         
            +
                 "examples/xsd/Price.xsd",
         
     | 
| 
      
 51 
     | 
    
         
            +
                 "examples/xsd/ProcessingReport.xsd",
         
     | 
| 
      
 52 
     | 
    
         
            +
                 "examples/xsd/Product.xsd",
         
     | 
| 
      
 53 
     | 
    
         
            +
                 "examples/xsd/Product/AutoAccessory.xsd",
         
     | 
| 
      
 54 
     | 
    
         
            +
                 "examples/xsd/Product/Beauty.xsd",
         
     | 
| 
      
 55 
     | 
    
         
            +
                 "examples/xsd/Product/CE.xsd",
         
     | 
| 
      
 56 
     | 
    
         
            +
                 "examples/xsd/Product/CameraPhoto.xsd",
         
     | 
| 
      
 57 
     | 
    
         
            +
                 "examples/xsd/Product/FoodAndBeverages.xsd",
         
     | 
| 
      
 58 
     | 
    
         
            +
                 "examples/xsd/Product/Gourmet.xsd",
         
     | 
| 
      
 59 
     | 
    
         
            +
                 "examples/xsd/Product/Health.xsd",
         
     | 
| 
      
 60 
     | 
    
         
            +
                 "examples/xsd/Product/Home.xsd",
         
     | 
| 
      
 61 
     | 
    
         
            +
                 "examples/xsd/Product/Jewelry.xsd",
         
     | 
| 
      
 62 
     | 
    
         
            +
                 "examples/xsd/Product/Miscellaneous.xsd",
         
     | 
| 
      
 63 
     | 
    
         
            +
                 "examples/xsd/Product/MusicalInstruments.xsd",
         
     | 
| 
      
 64 
     | 
    
         
            +
                 "examples/xsd/Product/Office.xsd",
         
     | 
| 
      
 65 
     | 
    
         
            +
                 "examples/xsd/Product/PetSupplies.xsd",
         
     | 
| 
      
 66 
     | 
    
         
            +
                 "examples/xsd/Product/ProductClothing.xsd",
         
     | 
| 
      
 67 
     | 
    
         
            +
                 "examples/xsd/Product/SWVG.xsd",
         
     | 
| 
      
 68 
     | 
    
         
            +
                 "examples/xsd/Product/Sports.xsd",
         
     | 
| 
      
 69 
     | 
    
         
            +
                 "examples/xsd/Product/TiresAndWheels.xsd",
         
     | 
| 
      
 70 
     | 
    
         
            +
                 "examples/xsd/Product/Tools.xsd",
         
     | 
| 
      
 71 
     | 
    
         
            +
                 "examples/xsd/Product/ToysBaby.xsd",
         
     | 
| 
      
 72 
     | 
    
         
            +
                 "examples/xsd/Product/Wireless.xsd",
         
     | 
| 
      
 73 
     | 
    
         
            +
                 "examples/xsd/ProductImage.xsd",
         
     | 
| 
      
 74 
     | 
    
         
            +
                 "examples/xsd/Relationship.xsd",
         
     | 
| 
      
 75 
     | 
    
         
            +
                 "examples/xsd/SettlementReport.xsd",
         
     | 
| 
      
 76 
     | 
    
         
            +
                 "examples/xsd/amzn-base.xsd",
         
     | 
| 
      
 77 
     | 
    
         
            +
                 "examples/xsd/amzn-envelope.xsd",
         
     | 
| 
      
 78 
     | 
    
         
            +
                 "examples/xsd/amzn-header.xsd",
         
     | 
| 
      
 79 
     | 
    
         
            +
                 "lib/amazon/mws.rb",
         
     | 
| 
      
 80 
     | 
    
         
            +
                 "lib/amazon/mws/authentication.rb",
         
     | 
| 
      
 81 
     | 
    
         
            +
                 "lib/amazon/mws/authentication/query_string.rb",
         
     | 
| 
      
 82 
     | 
    
         
            +
                 "lib/amazon/mws/authentication/signature.rb",
         
     | 
| 
      
 83 
     | 
    
         
            +
                 "lib/amazon/mws/base.rb",
         
     | 
| 
      
 84 
     | 
    
         
            +
                 "lib/amazon/mws/connection.rb",
         
     | 
| 
      
 85 
     | 
    
         
            +
                 "lib/amazon/mws/connection/management.rb",
         
     | 
| 
      
 86 
     | 
    
         
            +
                 "lib/amazon/mws/connection/request_builder.rb",
         
     | 
| 
      
 87 
     | 
    
         
            +
                 "lib/amazon/mws/exceptions.rb",
         
     | 
| 
      
 88 
     | 
    
         
            +
                 "lib/amazon/mws/feed.rb",
         
     | 
| 
      
 89 
     | 
    
         
            +
                 "lib/amazon/mws/feed_builder.rb",
         
     | 
| 
      
 90 
     | 
    
         
            +
                 "lib/amazon/mws/feed_enumerations.rb",
         
     | 
| 
      
 91 
     | 
    
         
            +
                 "lib/amazon/mws/feed_submission.rb",
         
     | 
| 
      
 92 
     | 
    
         
            +
                 "lib/amazon/mws/lib/extensions.rb",
         
     | 
| 
      
 93 
     | 
    
         
            +
                 "lib/amazon/mws/lib/memoizable.rb",
         
     | 
| 
      
 94 
     | 
    
         
            +
                 "lib/amazon/mws/orders.rb",
         
     | 
| 
      
 95 
     | 
    
         
            +
                 "lib/amazon/mws/report.rb",
         
     | 
| 
      
 96 
     | 
    
         
            +
                 "lib/amazon/mws/report_enumerations.rb",
         
     | 
| 
      
 97 
     | 
    
         
            +
                 "lib/amazon/mws/report_info.rb",
         
     | 
| 
      
 98 
     | 
    
         
            +
                 "lib/amazon/mws/report_request.rb",
         
     | 
| 
      
 99 
     | 
    
         
            +
                 "lib/amazon/mws/report_schedule.rb",
         
     | 
| 
      
 100 
     | 
    
         
            +
                 "lib/amazon/mws/response.rb",
         
     | 
| 
      
 101 
     | 
    
         
            +
                 "lib/amazon/mws/response/cancel_feed_submissions_response.rb",
         
     | 
| 
      
 102 
     | 
    
         
            +
                 "lib/amazon/mws/response/cancel_report_requests_response.rb",
         
     | 
| 
      
 103 
     | 
    
         
            +
                 "lib/amazon/mws/response/get_feed_submission_count_response.rb",
         
     | 
| 
      
 104 
     | 
    
         
            +
                 "lib/amazon/mws/response/get_feed_submission_list_by_next_token_response.rb",
         
     | 
| 
      
 105 
     | 
    
         
            +
                 "lib/amazon/mws/response/get_feed_submission_list_response.rb",
         
     | 
| 
      
 106 
     | 
    
         
            +
                 "lib/amazon/mws/response/get_feed_submission_result_response.rb",
         
     | 
| 
      
 107 
     | 
    
         
            +
                 "lib/amazon/mws/response/get_report_count_response.rb",
         
     | 
| 
      
 108 
     | 
    
         
            +
                 "lib/amazon/mws/response/get_report_list_response.rb",
         
     | 
| 
      
 109 
     | 
    
         
            +
                 "lib/amazon/mws/response/get_report_request_count_response.rb",
         
     | 
| 
      
 110 
     | 
    
         
            +
                 "lib/amazon/mws/response/get_report_request_list_by_next_token_response.rb",
         
     | 
| 
      
 111 
     | 
    
         
            +
                 "lib/amazon/mws/response/get_report_request_list_response.rb",
         
     | 
| 
      
 112 
     | 
    
         
            +
                 "lib/amazon/mws/response/get_report_schedule_count_response.rb",
         
     | 
| 
      
 113 
     | 
    
         
            +
                 "lib/amazon/mws/response/get_report_schedule_list_by_next_token_response.rb",
         
     | 
| 
      
 114 
     | 
    
         
            +
                 "lib/amazon/mws/response/get_report_schedule_list_response.rb",
         
     | 
| 
      
 115 
     | 
    
         
            +
                 "lib/amazon/mws/response/manage_report_schedule_response.rb",
         
     | 
| 
      
 116 
     | 
    
         
            +
                 "lib/amazon/mws/response/request_report_response.rb",
         
     | 
| 
      
 117 
     | 
    
         
            +
                 "lib/amazon/mws/response/response_error.rb",
         
     | 
| 
      
 118 
     | 
    
         
            +
                 "lib/amazon/mws/response/submit_feed_response.rb",
         
     | 
| 
      
 119 
     | 
    
         
            +
                 "lib/amazon/mws/response/update_reports_acknowledgements_response.rb",
         
     | 
| 
      
 120 
     | 
    
         
            +
                 "lib/amazon/mws/version.rb",
         
     | 
| 
      
 121 
     | 
    
         
            +
                 "pkg/amazon-mws-0.1.0.gem",
         
     | 
| 
      
 122 
     | 
    
         
            +
                 "test/authentication_test.rb",
         
     | 
| 
      
 123 
     | 
    
         
            +
                 "test/connection_test.rb",
         
     | 
| 
      
 124 
     | 
    
         
            +
                 "test/feed_builder_test.rb",
         
     | 
| 
      
 125 
     | 
    
         
            +
                 "test/feed_submission_test.rb",
         
     | 
| 
      
 126 
     | 
    
         
            +
                 "test/feed_test.rb",
         
     | 
| 
      
 127 
     | 
    
         
            +
                 "test/query_string_test.rb",
         
     | 
| 
      
 128 
     | 
    
         
            +
                 "test/report_test.rb",
         
     | 
| 
      
 129 
     | 
    
         
            +
                 "test/request_test.rb",
         
     | 
| 
      
 130 
     | 
    
         
            +
                 "test/response_test.rb",
         
     | 
| 
      
 131 
     | 
    
         
            +
                 "test/signature_test.rb",
         
     | 
| 
      
 132 
     | 
    
         
            +
                 "test/test_config.yml",
         
     | 
| 
      
 133 
     | 
    
         
            +
                 "test/test_helper.rb"
         
     | 
| 
      
 134 
     | 
    
         
            +
              ]
         
     | 
| 
      
 135 
     | 
    
         
            +
              s.homepage = %q{http://github.com/dmichael/amazon-mws}
         
     | 
| 
      
 136 
     | 
    
         
            +
              s.rdoc_options = ["--charset=UTF-8"]
         
     | 
| 
      
 137 
     | 
    
         
            +
              s.require_paths = ["lib"]
         
     | 
| 
      
 138 
     | 
    
         
            +
              s.rubygems_version = %q{1.3.5}
         
     | 
| 
      
 139 
     | 
    
         
            +
              s.summary = %q{A Ruby Wrapper for the Amazon MWS API}
         
     | 
| 
      
 140 
     | 
    
         
            +
              s.test_files = [
         
     | 
| 
      
 141 
     | 
    
         
            +
                "test/authentication_test.rb",
         
     | 
| 
      
 142 
     | 
    
         
            +
                 "test/connection_test.rb",
         
     | 
| 
      
 143 
     | 
    
         
            +
                 "test/feed_builder_test.rb",
         
     | 
| 
      
 144 
     | 
    
         
            +
                 "test/feed_submission_test.rb",
         
     | 
| 
      
 145 
     | 
    
         
            +
                 "test/feed_test.rb",
         
     | 
| 
      
 146 
     | 
    
         
            +
                 "test/query_string_test.rb",
         
     | 
| 
      
 147 
     | 
    
         
            +
                 "test/report_test.rb",
         
     | 
| 
      
 148 
     | 
    
         
            +
                 "test/request_test.rb",
         
     | 
| 
      
 149 
     | 
    
         
            +
                 "test/response_test.rb",
         
     | 
| 
      
 150 
     | 
    
         
            +
                 "test/signature_test.rb",
         
     | 
| 
      
 151 
     | 
    
         
            +
                 "test/test_helper.rb"
         
     | 
| 
      
 152 
     | 
    
         
            +
              ]
         
     | 
| 
      
 153 
     | 
    
         
            +
             
     | 
| 
      
 154 
     | 
    
         
            +
              if s.respond_to? :specification_version then
         
     | 
| 
      
 155 
     | 
    
         
            +
                current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
         
     | 
| 
      
 156 
     | 
    
         
            +
                s.specification_version = 3
         
     | 
| 
      
 157 
     | 
    
         
            +
             
     | 
| 
      
 158 
     | 
    
         
            +
                if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
         
     | 
| 
      
 159 
     | 
    
         
            +
                else
         
     | 
| 
      
 160 
     | 
    
         
            +
                end
         
     | 
| 
      
 161 
     | 
    
         
            +
              else
         
     | 
| 
      
 162 
     | 
    
         
            +
              end
         
     | 
| 
      
 163 
     | 
    
         
            +
            end
         
     | 
| 
      
 164 
     | 
    
         
            +
             
     | 
| 
         @@ -0,0 +1,16 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            <?xml version="1.0"?>
         
     | 
| 
      
 2 
     | 
    
         
            +
            <CancelFeedSubmissionsResponse
         
     | 
| 
      
 3 
     | 
    
         
            +
              xmlns="http://mws.amazonaws.com/doc/2009-01-01/">
         
     | 
| 
      
 4 
     | 
    
         
            +
              <CancelFeedSubmissionsResult>
         
     | 
| 
      
 5 
     | 
    
         
            +
                <Count>1</Count>
         
     | 
| 
      
 6 
     | 
    
         
            +
                <FeedSubmissionInfo>
         
     | 
| 
      
 7 
     | 
    
         
            +
                  <FeedSubmissionId>2291326430</FeedSubmissionId>
         
     | 
| 
      
 8 
     | 
    
         
            +
                  <FeedType>_POST_PRODUCT_DATA_</FeedType>
         
     | 
| 
      
 9 
     | 
    
         
            +
                  <SubmittedDate>2009-02-20T02:10:35+00:00</SubmittedDate>
         
     | 
| 
      
 10 
     | 
    
         
            +
                  <FeedProcessingStatus>_CANCELLED_</FeedProcessingStatus>
         
     | 
| 
      
 11 
     | 
    
         
            +
                </FeedSubmissionInfo>
         
     | 
| 
      
 12 
     | 
    
         
            +
              </CancelFeedSubmissionsResult>
         
     | 
| 
      
 13 
     | 
    
         
            +
              <ResponseMetadata>
         
     | 
| 
      
 14 
     | 
    
         
            +
                <RequestId>18e78983-bbf9-43aa-a661-ae7696cb49d4</RequestId>
         
     | 
| 
      
 15 
     | 
    
         
            +
              </ResponseMetadata>
         
     | 
| 
      
 16 
     | 
    
         
            +
            </CancelFeedSubmissionsResponse>
         
     | 
| 
         @@ -0,0 +1,18 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            <?xml version="1.0"?>
         
     | 
| 
      
 2 
     | 
    
         
            +
            <CancelReportRequestsResponse xmlns="http://mws.amazonaws.com/doc/2009-01-01/">
         
     | 
| 
      
 3 
     | 
    
         
            +
              <CancelReportRequestsResult>
         
     | 
| 
      
 4 
     | 
    
         
            +
                <Count>10</Count>
         
     | 
| 
      
 5 
     | 
    
         
            +
                <ReportRequestInfo>
         
     | 
| 
      
 6 
     | 
    
         
            +
                  <ReportRequestId>2291326454</ReportRequestId>
         
     | 
| 
      
 7 
     | 
    
         
            +
                  <ReportType>_GET_MERCHANT_LISTINGS_DATA_</ReportType>
         
     | 
| 
      
 8 
     | 
    
         
            +
                  <StartDate>2009-01-21T02:10:39+00:00</StartDate>
         
     | 
| 
      
 9 
     | 
    
         
            +
                  <EndDate>2009-02-13T02:10:39+00:00</EndDate>
         
     | 
| 
      
 10 
     | 
    
         
            +
                  <Scheduled>false</Scheduled>
         
     | 
| 
      
 11 
     | 
    
         
            +
                  <SubmittedDate>2009-02-20T02:10:39+00:00</SubmittedDate>
         
     | 
| 
      
 12 
     | 
    
         
            +
                  <ReportProcessingStatus>_CANCELLED_</ReportProcessingStatus>
         
     | 
| 
      
 13 
     | 
    
         
            +
                </ReportRequestInfo>
         
     | 
| 
      
 14 
     | 
    
         
            +
              </CancelReportRequestsResult>
         
     | 
| 
      
 15 
     | 
    
         
            +
              <ResponseMetadata>
         
     | 
| 
      
 16 
     | 
    
         
            +
                <RequestId>a720f9d6-83e9-4684-bc35-065b41ed5ca4</RequestId>
         
     | 
| 
      
 17 
     | 
    
         
            +
              </ResponseMetadata>
         
     | 
| 
      
 18 
     | 
    
         
            +
            </CancelReportRequestsResponse>
         
     | 
| 
         @@ -0,0 +1,10 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            <?xml version="1.0"?>
         
     | 
| 
      
 2 
     | 
    
         
            +
            <ErrorResponse xmlns="http://mws.amazonaws.com/doc/2009-01-01/">
         
     | 
| 
      
 3 
     | 
    
         
            +
              <Error>
         
     | 
| 
      
 4 
     | 
    
         
            +
                <Type>Sender</Type>
         
     | 
| 
      
 5 
     | 
    
         
            +
                <Code>AccessDenied</Code>
         
     | 
| 
      
 6 
     | 
    
         
            +
                <Message>Access to the resource Marketplace MARKETPLACE_ID is not a valid marketplace is denied.</Message>
         
     | 
| 
      
 7 
     | 
    
         
            +
                <Detail/>
         
     | 
| 
      
 8 
     | 
    
         
            +
              </Error>
         
     | 
| 
      
 9 
     | 
    
         
            +
              <RequestID>75a808dd-72c6-4af4-b4ba-4b00f3153940</RequestID>
         
     | 
| 
      
 10 
     | 
    
         
            +
            </ErrorResponse>
         
     | 
| 
         @@ -0,0 +1,10 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            <?xml version="1.0"?>
         
     | 
| 
      
 2 
     | 
    
         
            +
            <GetFeedSubmissionCountResponse
         
     | 
| 
      
 3 
     | 
    
         
            +
              xmlns="http://mws.amazonaws.com/doc/2009-01-01/">
         
     | 
| 
      
 4 
     | 
    
         
            +
              <GetFeedSubmissionCountResult>
         
     | 
| 
      
 5 
     | 
    
         
            +
                <Count>463</Count>
         
     | 
| 
      
 6 
     | 
    
         
            +
              </GetFeedSubmissionCountResult>
         
     | 
| 
      
 7 
     | 
    
         
            +
              <ResponseMetadata>
         
     | 
| 
      
 8 
     | 
    
         
            +
                <RequestId>21e482a8-15c7-4da3-91a4-424995ed0756</RequestId>
         
     | 
| 
      
 9 
     | 
    
         
            +
              </ResponseMetadata>
         
     | 
| 
      
 10 
     | 
    
         
            +
            </GetFeedSubmissionCountResponse>
         
     | 
| 
         @@ -0,0 +1,16 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            <?xml version="1.0"?>
         
     | 
| 
      
 2 
     | 
    
         
            +
            <GetFeedSubmissionListResponse xmlns="http://mws.amazonaws.com/doc/2009-01-01/">
         
     | 
| 
      
 3 
     | 
    
         
            +
              <GetFeedSubmissionListResult>
         
     | 
| 
      
 4 
     | 
    
         
            +
                <NextToken>2YgYW55IGNhcm5hbCBwbGVhc3VyZS4=</NextToken>
         
     | 
| 
      
 5 
     | 
    
         
            +
                <HasNext>true</HasNext>
         
     | 
| 
      
 6 
     | 
    
         
            +
                <FeedSubmissionInfo>
         
     | 
| 
      
 7 
     | 
    
         
            +
                  <FeedSubmissionId>2291326430</FeedSubmissionId>
         
     | 
| 
      
 8 
     | 
    
         
            +
                  <FeedType>_POST_PRODUCT_DATA_</FeedType>
         
     | 
| 
      
 9 
     | 
    
         
            +
                  <SubmittedDate>2009-02-20T02:10:35+00:00</SubmittedDate>
         
     | 
| 
      
 10 
     | 
    
         
            +
                  <FeedProcessingStatus>_SUBMITTED_</FeedProcessingStatus>
         
     | 
| 
      
 11 
     | 
    
         
            +
                </FeedSubmissionInfo>
         
     | 
| 
      
 12 
     | 
    
         
            +
              </GetFeedSubmissionListResult>
         
     | 
| 
      
 13 
     | 
    
         
            +
              <ResponseMetadata>
         
     | 
| 
      
 14 
     | 
    
         
            +
                <RequestId>1105b931-6f1c-4480-8e97-f3b467840a9e</RequestId>
         
     | 
| 
      
 15 
     | 
    
         
            +
              </ResponseMetadata>
         
     | 
| 
      
 16 
     | 
    
         
            +
            </GetFeedSubmissionListResponse>
         
     | 
| 
         @@ -0,0 +1,16 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            <?xml version="1.0"?>
         
     | 
| 
      
 2 
     | 
    
         
            +
            <GetFeedSubmissionListByNextTokenResponse xmlns="http://mws.amazonaws.com/doc/2009-01-01/">
         
     | 
| 
      
 3 
     | 
    
         
            +
              <GetFeedSubmissionListByNextTokenResult>
         
     | 
| 
      
 4 
     | 
    
         
            +
                <NextToken>none</NextToken>
         
     | 
| 
      
 5 
     | 
    
         
            +
                <HasNext>false</HasNext>
         
     | 
| 
      
 6 
     | 
    
         
            +
                <FeedSubmissionInfo>
         
     | 
| 
      
 7 
     | 
    
         
            +
                  <FeedSubmissionId>2291326430</FeedSubmissionId>
         
     | 
| 
      
 8 
     | 
    
         
            +
                  <FeedType>_POST_PRODUCT_DATA_</FeedType>
         
     | 
| 
      
 9 
     | 
    
         
            +
                  <SubmittedDate>2009-02-20T02:10:35+00:00</SubmittedDate>
         
     | 
| 
      
 10 
     | 
    
         
            +
                  <FeedProcessingStatus>_SUBMITTED_</FeedProcessingStatus>
         
     | 
| 
      
 11 
     | 
    
         
            +
                </FeedSubmissionInfo>
         
     | 
| 
      
 12 
     | 
    
         
            +
              </GetFeedSubmissionListByNextTokenResult>
         
     | 
| 
      
 13 
     | 
    
         
            +
              <ResponseMetadata>
         
     | 
| 
      
 14 
     | 
    
         
            +
                <RequestId>1105b931-6f1c-4480-8e97-f3b467840a9e</RequestId>
         
     | 
| 
      
 15 
     | 
    
         
            +
              </ResponseMetadata>
         
     | 
| 
      
 16 
     | 
    
         
            +
            </GetFeedSubmissionListByNextTokenResponse>
         
     | 
| 
         @@ -0,0 +1,30 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            <?xml version="1.0" encoding="UTF-8"?>
         
     | 
| 
      
 2 
     | 
    
         
            +
            <AmazonEnvelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="amzn-envelope.xsd">
         
     | 
| 
      
 3 
     | 
    
         
            +
            	<Header>
         
     | 
| 
      
 4 
     | 
    
         
            +
            		<DocumentVersion>1.02</DocumentVersion>
         
     | 
| 
      
 5 
     | 
    
         
            +
            		<MerchantIdentifier>M_EXAMPLE_9876543210</MerchantIdentifier>
         
     | 
| 
      
 6 
     | 
    
         
            +
            	</Header>
         
     | 
| 
      
 7 
     | 
    
         
            +
            	<MessageType>ProcessingReport</MessageType>
         
     | 
| 
      
 8 
     | 
    
         
            +
            	<Message>
         
     | 
| 
      
 9 
     | 
    
         
            +
            		<MessageID>1</MessageID>
         
     | 
| 
      
 10 
     | 
    
         
            +
            		<ProcessingReport>
         
     | 
| 
      
 11 
     | 
    
         
            +
            			<DocumentTransactionID>2060950676</DocumentTransactionID>
         
     | 
| 
      
 12 
     | 
    
         
            +
            			<StatusCode>Complete</StatusCode>
         
     | 
| 
      
 13 
     | 
    
         
            +
            			<ProcessingSummary>
         
     | 
| 
      
 14 
     | 
    
         
            +
            				<MessagesProcessed>0</MessagesProcessed>
         
     | 
| 
      
 15 
     | 
    
         
            +
            				<MessagesSuccessful>0</MessagesSuccessful>
         
     | 
| 
      
 16 
     | 
    
         
            +
            				<MessagesWithError>1</MessagesWithError>
         
     | 
| 
      
 17 
     | 
    
         
            +
            				<MessagesWithWarning>0</MessagesWithWarning>
         
     | 
| 
      
 18 
     | 
    
         
            +
            			</ProcessingSummary>
         
     | 
| 
      
 19 
     | 
    
         
            +
            			<Result>
         
     | 
| 
      
 20 
     | 
    
         
            +
            				<MessageID>0</MessageID>
         
     | 
| 
      
 21 
     | 
    
         
            +
            				<ResultCode>Error</ResultCode>
         
     | 
| 
      
 22 
     | 
    
         
            +
            				<ResultMessageCode>6001</ResultMessageCode>
         
     | 
| 
      
 23 
     | 
    
         
            +
            				<ResultDescription>XML parsing fatal error at line 1, column 1: Invalid document structure</ResultDescription>
         
     | 
| 
      
 24 
     | 
    
         
            +
            				<AdditionalInfo>
         
     | 
| 
      
 25 
     | 
    
         
            +
            					<SKU>0</SKU>
         
     | 
| 
      
 26 
     | 
    
         
            +
            				</AdditionalInfo>
         
     | 
| 
      
 27 
     | 
    
         
            +
            			</Result>
         
     | 
| 
      
 28 
     | 
    
         
            +
            		</ProcessingReport>
         
     | 
| 
      
 29 
     | 
    
         
            +
            	</Message>
         
     | 
| 
      
 30 
     | 
    
         
            +
            </AmazonEnvelope>
         
     | 
| 
         @@ -0,0 +1,9 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            <?xml version="1.0"?>
         
     | 
| 
      
 2 
     | 
    
         
            +
            <GetReportCountResponse xmlns="http://mws.amazonaws.com/doc/2009-01-01/">
         
     | 
| 
      
 3 
     | 
    
         
            +
              <GetReportCountResult>
         
     | 
| 
      
 4 
     | 
    
         
            +
                <Count>166</Count>
         
     | 
| 
      
 5 
     | 
    
         
            +
              </GetReportCountResult>
         
     | 
| 
      
 6 
     | 
    
         
            +
              <ResponseMetadata>
         
     | 
| 
      
 7 
     | 
    
         
            +
                <RequestId>a497aadb-5ea1-49bf-aa14-dabe914465e3</RequestId>
         
     | 
| 
      
 8 
     | 
    
         
            +
              </ResponseMetadata>
         
     | 
| 
      
 9 
     | 
    
         
            +
            </GetReportCountResponse>
         
     | 
| 
         @@ -0,0 +1,17 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            <?xml version="1.0"?>
         
     | 
| 
      
 2 
     | 
    
         
            +
            <GetReportListResponse xmlns="http://mws.amazonaws.com/doc/2009-01-01/">
         
     | 
| 
      
 3 
     | 
    
         
            +
              <GetReportListResult>
         
     | 
| 
      
 4 
     | 
    
         
            +
                <NextToken>2YgYW55IPQhvu5hbCBwbGVhc3VyZS4=</NextToken>
         
     | 
| 
      
 5 
     | 
    
         
            +
                <HasNext>true</HasNext>
         
     | 
| 
      
 6 
     | 
    
         
            +
                <ReportInfo>
         
     | 
| 
      
 7 
     | 
    
         
            +
                  <ReportId>898899473</ReportId>
         
     | 
| 
      
 8 
     | 
    
         
            +
                  <ReportType>_GET_MERCHANT_LISTINGS_DATA_</ReportType>
         
     | 
| 
      
 9 
     | 
    
         
            +
                  <ReportRequestId>2278662938</ReportRequestId>
         
     | 
| 
      
 10 
     | 
    
         
            +
                  <AvailableDate>2009-02-10T09:22:33+00:00</AvailableDate>
         
     | 
| 
      
 11 
     | 
    
         
            +
                  <Acknowledged>false</Acknowledged>
         
     | 
| 
      
 12 
     | 
    
         
            +
                </ReportInfo>
         
     | 
| 
      
 13 
     | 
    
         
            +
              </GetReportListResult>
         
     | 
| 
      
 14 
     | 
    
         
            +
              <ResponseMetadata>
         
     | 
| 
      
 15 
     | 
    
         
            +
                <RequestId>fbf677c1-dcee-4110-bc88-2ba3702e331b</RequestId>
         
     | 
| 
      
 16 
     | 
    
         
            +
              </ResponseMetadata>
         
     | 
| 
      
 17 
     | 
    
         
            +
            </GetReportListResponse>
         
     | 
| 
         @@ -0,0 +1,8 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            <GetReportRequestCountResponse xmlns="http://mws.amazonaws.com/doc/2009-01-01/">
         
     | 
| 
      
 2 
     | 
    
         
            +
              <GetReportRequestCountResult>
         
     | 
| 
      
 3 
     | 
    
         
            +
                <Count>1276</Count>
         
     | 
| 
      
 4 
     | 
    
         
            +
              </GetReportRequestCountResult>
         
     | 
| 
      
 5 
     | 
    
         
            +
              <ResponseMetadata>
         
     | 
| 
      
 6 
     | 
    
         
            +
                <RequestId>7e155027-3741-4422-95a7-1de12703c13e</RequestId>
         
     | 
| 
      
 7 
     | 
    
         
            +
              </ResponseMetadata>
         
     | 
| 
      
 8 
     | 
    
         
            +
            </GetReportRequestCountResponse>
         
     | 
| 
         @@ -0,0 +1,120 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            <?xml version="1.0"?>
         
     | 
| 
      
 2 
     | 
    
         
            +
            <GetReportRequestListResponse xmlns="http://mws.amazonaws.com/doc/2009-01-01/">
         
     | 
| 
      
 3 
     | 
    
         
            +
              <GetReportRequestListResult>
         
     | 
| 
      
 4 
     | 
    
         
            +
                <NextToken>gTw92cRxgz0D2s1QD6a1Fdz+0b6t4r6aM48r5nOh7ZQ2cKWBkRSk57AfQiDLYYb/tts/YTgAGXw7u4xT348+ZoSJ8NeAlfpOrrBJpKO2HAHCv/LqsB0EzxybTwcKfw+6oQjX0m4upU+Q1A2v3FCYQ1eWYigAJMzhvZSqczZdpQRFrR1eNdlVGQ==</NextToken>
         
     | 
| 
      
 5 
     | 
    
         
            +
                <HasNext>true</HasNext>
         
     | 
| 
      
 6 
     | 
    
         
            +
                <ReportRequestInfo>
         
     | 
| 
      
 7 
     | 
    
         
            +
                  <ReportRequestId>2727601510</ReportRequestId>
         
     | 
| 
      
 8 
     | 
    
         
            +
                  <ReportType>_GET_FLAT_FILE_ORDERS_DATA_</ReportType>
         
     | 
| 
      
 9 
     | 
    
         
            +
                  <StartDate>2009-10-20T16:44:39+00:00</StartDate>
         
     | 
| 
      
 10 
     | 
    
         
            +
                  <EndDate>2009-10-20T16:44:39+00:00</EndDate>
         
     | 
| 
      
 11 
     | 
    
         
            +
                  <Scheduled>false</Scheduled>
         
     | 
| 
      
 12 
     | 
    
         
            +
                  <SubmittedDate>2009-10-20T16:44:39+00:00</SubmittedDate>
         
     | 
| 
      
 13 
     | 
    
         
            +
                  <ReportProcessingStatus>_DONE_NO_DATA_</ReportProcessingStatus>
         
     | 
| 
      
 14 
     | 
    
         
            +
                  <StartedProcessingDate>2009-10-20T16:46:05+00:00</StartedProcessingDate>
         
     | 
| 
      
 15 
     | 
    
         
            +
                  <CompletedProcessingDate>2009-10-20T16:46:05+00:00</CompletedProcessingDate>
         
     | 
| 
      
 16 
     | 
    
         
            +
                </ReportRequestInfo>
         
     | 
| 
      
 17 
     | 
    
         
            +
                <ReportRequestInfo>
         
     | 
| 
      
 18 
     | 
    
         
            +
                  <ReportRequestId>2727601038</ReportRequestId>
         
     | 
| 
      
 19 
     | 
    
         
            +
                  <ReportType>_GET_FLAT_FILE_ORDERS_DATA_</ReportType>
         
     | 
| 
      
 20 
     | 
    
         
            +
                  <StartDate>2009-10-20T16:44:21+00:00</StartDate>
         
     | 
| 
      
 21 
     | 
    
         
            +
                  <EndDate>2009-10-20T16:44:21+00:00</EndDate>
         
     | 
| 
      
 22 
     | 
    
         
            +
                  <Scheduled>false</Scheduled>
         
     | 
| 
      
 23 
     | 
    
         
            +
                  <SubmittedDate>2009-10-20T16:44:21+00:00</SubmittedDate>
         
     | 
| 
      
 24 
     | 
    
         
            +
                  <ReportProcessingStatus>_DONE_NO_DATA_</ReportProcessingStatus>
         
     | 
| 
      
 25 
     | 
    
         
            +
                  <StartedProcessingDate>2009-10-20T16:45:24+00:00</StartedProcessingDate>
         
     | 
| 
      
 26 
     | 
    
         
            +
                  <CompletedProcessingDate>2009-10-20T16:45:24+00:00</CompletedProcessingDate>
         
     | 
| 
      
 27 
     | 
    
         
            +
                </ReportRequestInfo>
         
     | 
| 
      
 28 
     | 
    
         
            +
                <ReportRequestInfo>
         
     | 
| 
      
 29 
     | 
    
         
            +
                  <ReportRequestId>2727600252</ReportRequestId>
         
     | 
| 
      
 30 
     | 
    
         
            +
                  <ReportType>_GET_FLAT_FILE_ORDERS_DATA_</ReportType>
         
     | 
| 
      
 31 
     | 
    
         
            +
                  <StartDate>2009-10-20T16:43:35+00:00</StartDate>
         
     | 
| 
      
 32 
     | 
    
         
            +
                  <EndDate>2009-10-20T16:43:35+00:00</EndDate>
         
     | 
| 
      
 33 
     | 
    
         
            +
                  <Scheduled>false</Scheduled>
         
     | 
| 
      
 34 
     | 
    
         
            +
                  <SubmittedDate>2009-10-20T16:43:35+00:00</SubmittedDate>
         
     | 
| 
      
 35 
     | 
    
         
            +
                  <ReportProcessingStatus>_DONE_NO_DATA_</ReportProcessingStatus>
         
     | 
| 
      
 36 
     | 
    
         
            +
                  <StartedProcessingDate>2009-10-20T16:44:47+00:00</StartedProcessingDate>
         
     | 
| 
      
 37 
     | 
    
         
            +
                  <CompletedProcessingDate>2009-10-20T16:44:47+00:00</CompletedProcessingDate>
         
     | 
| 
      
 38 
     | 
    
         
            +
                </ReportRequestInfo>
         
     | 
| 
      
 39 
     | 
    
         
            +
                <ReportRequestInfo>
         
     | 
| 
      
 40 
     | 
    
         
            +
                  <ReportRequestId>2727599834</ReportRequestId>
         
     | 
| 
      
 41 
     | 
    
         
            +
                  <ReportType>_GET_FLAT_FILE_ORDERS_DATA_</ReportType>
         
     | 
| 
      
 42 
     | 
    
         
            +
                  <StartDate>2009-10-20T16:43:22+00:00</StartDate>
         
     | 
| 
      
 43 
     | 
    
         
            +
                  <EndDate>2009-10-20T16:43:22+00:00</EndDate>
         
     | 
| 
      
 44 
     | 
    
         
            +
                  <Scheduled>false</Scheduled>
         
     | 
| 
      
 45 
     | 
    
         
            +
                  <SubmittedDate>2009-10-20T16:43:22+00:00</SubmittedDate>
         
     | 
| 
      
 46 
     | 
    
         
            +
                  <ReportProcessingStatus>_DONE_NO_DATA_</ReportProcessingStatus>
         
     | 
| 
      
 47 
     | 
    
         
            +
                  <StartedProcessingDate>2009-10-20T16:44:02+00:00</StartedProcessingDate>
         
     | 
| 
      
 48 
     | 
    
         
            +
                  <CompletedProcessingDate>2009-10-20T16:44:03+00:00</CompletedProcessingDate>
         
     | 
| 
      
 49 
     | 
    
         
            +
                </ReportRequestInfo>
         
     | 
| 
      
 50 
     | 
    
         
            +
                <ReportRequestInfo>
         
     | 
| 
      
 51 
     | 
    
         
            +
                  <ReportRequestId>2727596992</ReportRequestId>
         
     | 
| 
      
 52 
     | 
    
         
            +
                  <ReportType>_GET_FLAT_FILE_ORDERS_DATA_</ReportType>
         
     | 
| 
      
 53 
     | 
    
         
            +
                  <StartDate>2009-10-20T16:40:56+00:00</StartDate>
         
     | 
| 
      
 54 
     | 
    
         
            +
                  <EndDate>2009-10-20T16:40:56+00:00</EndDate>
         
     | 
| 
      
 55 
     | 
    
         
            +
                  <Scheduled>false</Scheduled>
         
     | 
| 
      
 56 
     | 
    
         
            +
                  <SubmittedDate>2009-10-20T16:40:56+00:00</SubmittedDate>
         
     | 
| 
      
 57 
     | 
    
         
            +
                  <ReportProcessingStatus>_DONE_NO_DATA_</ReportProcessingStatus>
         
     | 
| 
      
 58 
     | 
    
         
            +
                  <StartedProcessingDate>2009-10-20T16:43:22+00:00</StartedProcessingDate>
         
     | 
| 
      
 59 
     | 
    
         
            +
                  <CompletedProcessingDate>2009-10-20T16:43:22+00:00</CompletedProcessingDate>
         
     | 
| 
      
 60 
     | 
    
         
            +
                </ReportRequestInfo>
         
     | 
| 
      
 61 
     | 
    
         
            +
                <ReportRequestInfo>
         
     | 
| 
      
 62 
     | 
    
         
            +
                  <ReportRequestId>2727596800</ReportRequestId>
         
     | 
| 
      
 63 
     | 
    
         
            +
                  <ReportType>_GET_FLAT_FILE_ORDERS_DATA_</ReportType>
         
     | 
| 
      
 64 
     | 
    
         
            +
                  <StartDate>2009-10-20T16:40:43+00:00</StartDate>
         
     | 
| 
      
 65 
     | 
    
         
            +
                  <EndDate>2009-10-20T16:40:43+00:00</EndDate>
         
     | 
| 
      
 66 
     | 
    
         
            +
                  <Scheduled>false</Scheduled>
         
     | 
| 
      
 67 
     | 
    
         
            +
                  <SubmittedDate>2009-10-20T16:40:43+00:00</SubmittedDate>
         
     | 
| 
      
 68 
     | 
    
         
            +
                  <ReportProcessingStatus>_DONE_NO_DATA_</ReportProcessingStatus>
         
     | 
| 
      
 69 
     | 
    
         
            +
                  <StartedProcessingDate>2009-10-20T16:42:44+00:00</StartedProcessingDate>
         
     | 
| 
      
 70 
     | 
    
         
            +
                  <CompletedProcessingDate>2009-10-20T16:42:45+00:00</CompletedProcessingDate>
         
     | 
| 
      
 71 
     | 
    
         
            +
                </ReportRequestInfo>
         
     | 
| 
      
 72 
     | 
    
         
            +
                <ReportRequestInfo>
         
     | 
| 
      
 73 
     | 
    
         
            +
                  <ReportRequestId>2727596774</ReportRequestId>
         
     | 
| 
      
 74 
     | 
    
         
            +
                  <ReportType>_GET_FLAT_FILE_ORDERS_DATA_</ReportType>
         
     | 
| 
      
 75 
     | 
    
         
            +
                  <StartDate>2009-10-20T16:40:41+00:00</StartDate>
         
     | 
| 
      
 76 
     | 
    
         
            +
                  <EndDate>2009-10-20T16:40:41+00:00</EndDate>
         
     | 
| 
      
 77 
     | 
    
         
            +
                  <Scheduled>false</Scheduled>
         
     | 
| 
      
 78 
     | 
    
         
            +
                  <SubmittedDate>2009-10-20T16:40:42+00:00</SubmittedDate>
         
     | 
| 
      
 79 
     | 
    
         
            +
                  <ReportProcessingStatus>_DONE_NO_DATA_</ReportProcessingStatus>
         
     | 
| 
      
 80 
     | 
    
         
            +
                  <StartedProcessingDate>2009-10-20T16:42:03+00:00</StartedProcessingDate>
         
     | 
| 
      
 81 
     | 
    
         
            +
                  <CompletedProcessingDate>2009-10-20T16:42:03+00:00</CompletedProcessingDate>
         
     | 
| 
      
 82 
     | 
    
         
            +
                </ReportRequestInfo>
         
     | 
| 
      
 83 
     | 
    
         
            +
                <ReportRequestInfo>
         
     | 
| 
      
 84 
     | 
    
         
            +
                  <ReportRequestId>2727596412</ReportRequestId>
         
     | 
| 
      
 85 
     | 
    
         
            +
                  <ReportType>_GET_FLAT_FILE_ORDERS_DATA_</ReportType>
         
     | 
| 
      
 86 
     | 
    
         
            +
                  <StartDate>2009-10-20T16:40:32+00:00</StartDate>
         
     | 
| 
      
 87 
     | 
    
         
            +
                  <EndDate>2009-10-20T16:40:32+00:00</EndDate>
         
     | 
| 
      
 88 
     | 
    
         
            +
                  <Scheduled>false</Scheduled>
         
     | 
| 
      
 89 
     | 
    
         
            +
                  <SubmittedDate>2009-10-20T16:40:32+00:00</SubmittedDate>
         
     | 
| 
      
 90 
     | 
    
         
            +
                  <ReportProcessingStatus>_DONE_NO_DATA_</ReportProcessingStatus>
         
     | 
| 
      
 91 
     | 
    
         
            +
                  <StartedProcessingDate>2009-10-20T16:41:22+00:00</StartedProcessingDate>
         
     | 
| 
      
 92 
     | 
    
         
            +
                  <CompletedProcessingDate>2009-10-20T16:41:23+00:00</CompletedProcessingDate>
         
     | 
| 
      
 93 
     | 
    
         
            +
                </ReportRequestInfo>
         
     | 
| 
      
 94 
     | 
    
         
            +
                <ReportRequestInfo>
         
     | 
| 
      
 95 
     | 
    
         
            +
                  <ReportRequestId>2727596194</ReportRequestId>
         
     | 
| 
      
 96 
     | 
    
         
            +
                  <ReportType>_GET_FLAT_FILE_ORDERS_DATA_</ReportType>
         
     | 
| 
      
 97 
     | 
    
         
            +
                  <StartDate>2009-10-20T16:40:13+00:00</StartDate>
         
     | 
| 
      
 98 
     | 
    
         
            +
                  <EndDate>2009-10-20T16:40:13+00:00</EndDate>
         
     | 
| 
      
 99 
     | 
    
         
            +
                  <Scheduled>false</Scheduled>
         
     | 
| 
      
 100 
     | 
    
         
            +
                  <SubmittedDate>2009-10-20T16:40:13+00:00</SubmittedDate>
         
     | 
| 
      
 101 
     | 
    
         
            +
                  <ReportProcessingStatus>_DONE_NO_DATA_</ReportProcessingStatus>
         
     | 
| 
      
 102 
     | 
    
         
            +
                  <StartedProcessingDate>2009-10-20T16:40:43+00:00</StartedProcessingDate>
         
     | 
| 
      
 103 
     | 
    
         
            +
                  <CompletedProcessingDate>2009-10-20T16:40:43+00:00</CompletedProcessingDate>
         
     | 
| 
      
 104 
     | 
    
         
            +
                </ReportRequestInfo>
         
     | 
| 
      
 105 
     | 
    
         
            +
                <ReportRequestInfo>
         
     | 
| 
      
 106 
     | 
    
         
            +
                  <ReportRequestId>2727594806</ReportRequestId>
         
     | 
| 
      
 107 
     | 
    
         
            +
                  <ReportType>_GET_FLAT_FILE_ORDERS_DATA_</ReportType>
         
     | 
| 
      
 108 
     | 
    
         
            +
                  <StartDate>2009-10-20T16:39:09+00:00</StartDate>
         
     | 
| 
      
 109 
     | 
    
         
            +
                  <EndDate>2009-10-20T16:39:09+00:00</EndDate>
         
     | 
| 
      
 110 
     | 
    
         
            +
                  <Scheduled>false</Scheduled>
         
     | 
| 
      
 111 
     | 
    
         
            +
                  <SubmittedDate>2009-10-20T16:39:09+00:00</SubmittedDate>
         
     | 
| 
      
 112 
     | 
    
         
            +
                  <ReportProcessingStatus>_DONE_NO_DATA_</ReportProcessingStatus>
         
     | 
| 
      
 113 
     | 
    
         
            +
                  <StartedProcessingDate>2009-10-20T16:39:41+00:00</StartedProcessingDate>
         
     | 
| 
      
 114 
     | 
    
         
            +
                  <CompletedProcessingDate>2009-10-20T16:39:42+00:00</CompletedProcessingDate>
         
     | 
| 
      
 115 
     | 
    
         
            +
                </ReportRequestInfo>
         
     | 
| 
      
 116 
     | 
    
         
            +
              </GetReportRequestListResult>
         
     | 
| 
      
 117 
     | 
    
         
            +
              <ResponseMetadata>
         
     | 
| 
      
 118 
     | 
    
         
            +
                <RequestId>1e1d7b22-004e-4333-a881-1f20b671097f</RequestId>
         
     | 
| 
      
 119 
     | 
    
         
            +
              </ResponseMetadata>
         
     | 
| 
      
 120 
     | 
    
         
            +
            </GetReportRequestListResponse>
         
     |