I am trying to design a simple application for accessing/updating SDB on a recurring basis from my desktop. Using the sample I have this line of code:
mSDbClient = new AmazonSimpleDBClient(PropertiesCredentials(MainActivity.class.getResourceAsStream("AwsCredentials.properties")));
The application runs just fine until the above line and goes the to VersionInfoUtils.class in the JAR file and fails on the following line:
InputStream inputStream = VersionInfoUtils.class.getClassLoader().getResourceAsStream(VERSION_INFO_FILE);
With the following error
Exception in thread "main" java.lang.ExceptionInInitializerError
at com.amazonaws.services.simpledb.AmazonSimpleDBClient.<init>(AmazonSimpleDBClient.java:132)
at ratingupdater.MainActivity.main(MainActivity.java:34)
Caused by: java.lang.NullPointerException
at com.amazonaws.util.VersionInfoUtils.initializeVersion(VersionInfoUtils.java:98)
at com.amazonaws.util.VersionInfoUtils.getPlatform(VersionInfoUtils.java:73)
at com.amazonaws.util.VersionInfoUtils.initializeUserAgent(VersionInfoUtils.java:121)
at com.amazonaws.util.VersionInfoUtils.getUserAgent(VersionInfoUtils.java:86)
at com.amazonaws.ClientConfiguration.<clinit>(ClientConfiguration.java:31)
... 2 more
I have dug through the JAR file and the VERSION_INFO_FILE located at com/amazonaws/sdk/versionInfo.properties exists and has two lines of code (version and platform descriptions). I can't for the life of me figure out why I have a NullPointerException here. Can anyone help me out?