ClientSession session = null;
ServerLocator locator = null;
String queue = "TwitterTestQueue";
Twitter twitter = new TwitterFactory().getOAuthAuthorizedInstance(TWITTER_CONSUMER_KEY,
TWITTER_CONSUMER_SECRET,
new AccessToken(TWITTER_ACCESS_TOKEN,
TWITTER_ACCESS_TOKEN_SECRET));
String testMessage = "TwitterTest/outgoing with in_reply_to: " + System.currentTimeMillis();
String replyMessage = "@" + twitter.getScreenName() + " TwitterTest/outgoing reply: " + System.currentTimeMillis();
try
{