Java 2 Platform Standard Edition 5.0 Development Kit (JDK 5.0)
or newer. If your version of the JDK is older than 5.0, you must install the newer version. For more information, go to http://java.sun.com/j2se/1.5.0/download.jsp.
Reference Documentation
MWS Getting Started Guide
MWS Developer Guide
Package Content
Directory
Overview
dist
Binary distribution of library
src
Source distribution of library
third-party
Binary distribution of library dependencies
Quick Start
The library comes with code samples for each available service API function.
To get started with the library, follow these steps:
Extract the amazon-mws-2009-01-01-javaclient-2009-10-28.zip file into a working directory.
Add all jar files under "third-party/*" directory to your classpath.
Add the marketplace-web-service-2009-01-01-java-library.jar file under "dist/lib" directory to your classpath.
If you want to run the samples, add all sources under "src/com/amazonaws/mws/samples" directory to your compilation path.
Edit the desired sample. For example, in GetFeedSubmissionCountSample:
Set your AWS Access Key ID and AWS Secret Access Key
final String accessKeyId = "<Your Access Key ID>";
final String secretAccessKey = "<Your Secret Access Key>";
Set your Application or Company Name and Version
final String appName = "<Your Application or Company Name>";
final String appVersion = "<Your Application Version or Build Number or Release Date>";
Scroll further down and set your Marketplace ID and Merchant ID
final String MarketplaceId = "<Your Marketplace ID>";
final String MerchantId = "<Your Merchant ID>";