Using AWS SDK 1.4.7 jar and the apache commons codec v1.9 fixed the problem for me
I had this error again when I installed Wowza on the server available here. I replaced the v1.9 commons codec with the 1.3 commons codec, and it fixed it.
Windows 8 needs AWS SDK 1.4.7 and commons codec 1.9
Amazon Linux 2013.09.2 needs AWS SDK 1.4.7 and commons codec 1.3
Now I’m getting this issue again, but this time, on a server environment, not in a development environment
I’m running the streaming engine with startup.sh and I’m doing this:
PutObjectRequest p = new PutObjectRequest(videoBucket,flvName, new File(dir+flvName));
p.setRequestCredentials(getCredentials());
p.setCannedAcl(CannedAccessControlList.BucketOwnerFullControl);
getLogger().info("attempting to upload " + flvName + " to " + videoBucket);
s3.putObject(p);
It crashes at that last line with a similar error:
runs successfully inside of the onAppStart method, so I can at least initialize the object.
In case this is an issue with the libraries that I have, here are all of the files in the lib directory. Note that the aws sdk 1.4.7 and the commons codec 1.9 are there.
This topic contains the entire history of ticket #104379 doesn’t it?
Beyond that, I don’t have access for your ticketing software, I don’t think.
If you’re saying “read this topic again”, I’ve posted my “lib” directory and you can see that I’m using the AWS SDK version and commons-codec that you suggested.
I’m having the same problem, the only difference is that I’m calling my own web-service, and the app get’s stuck and doing nothing once reaches the line I’m instantiating the class
I’m having the same problem, the only difference is that I’m calling my own web-service, and the app get’s stuck and doing nothing once reaches the line I’m instantiating the class
Please help!
Did you ever find and issue to this problem. I am running into the same issue as you.