1
vote
1answer
11 views

Unable to fetch metric values for EC2 instances from cloudwatch

I am trying to get the CPU Utilazation from the cloudwatch, but i am getting error and unable to figure out what went wrong. This is what I get in Logcat: E/dalvikvm(22587): Could not find class ...
1
vote
1answer
32 views

How to fetch the CloudWatch metrics data for EC2 instances

I want to fetch the Cloudmetrics data for my EC2 instance so that I can draw graphs using those data and display it on my android device. How do I do that? Is there any sample program or tutorial for ...
-1
votes
0answers
54 views

Android FTP Upload Not going through

I have been trying to upload a file to an amazon instance from android phone.I have enabled the passive mode and all write permissions in the instance. public class videoupload extends ...
1
vote
1answer
25 views

Android AWS SDK returning only one EC2 Instance instead of a list

I'm new to Android but I've already used AWS SDK for PHP previously and I never had this kind of a problem. I'm using DescribeInstancesRequest to fetch a list of all instances and their statuses. Idea ...
-1
votes
0answers
55 views

Upload and get back an image with a restful webservice using android [closed]

i am new to web services i have created a mobile application which capture a image, i want to upload the image to a server side application with web service and do some changes and get it back how to ...
0
votes
1answer
35 views

SDK from Amazon for Android

I created the empty project and added three libraries aws-android-sdk-xxx (version 1.5.0, in libs directory: http://docs.aws.amazon.com/mobile/sdkforandroid/gsg/Welcome.html). But I got error: ...
0
votes
2answers
36 views

How do I update the Android UI using AWS TransferManager in a ProgressListener?

I'm using AWS TransferManager to download files to the SD card. It allows for a ProgressListener, but I can't update the view because it is on a different thread. How can I do this? The btn.setText() ...
0
votes
1answer
79 views

AmazonS3Client.putObject doesn't work if I call AmazonS3Client.listObjects first

I've been trying for a long time to solve this, but without success. I'm using AWS Android SDK to upload files to AWS S3, and sometimes my files upload to the server, others it doesn't. The putObject ...
0
votes
0answers
93 views

Communication with AWS Token Vending Machine using DynamoDB or any other service

Hi I am new to Amazon AWS and I am trying to setup DynamoDB for my android application. I have deployed Anonymous TVM on Elastic Beanstalk using: http://aws.amazon.com/code/8872061742402990 When I ...
-1
votes
1answer
41 views

how can i return an image from webservice and images are stored in assets folder? [closed]

I want to return images from my webservice that i made in asp.net now i want to return an image from .asmx webservice. and than i want to display that image in android and also want to store in ...
1
vote
0answers
50 views

Aws SimpleDB, getting slow responce in android

I am using Aws SimpleDb to store data for my android app. Using AWS android SDK, I am getting very late responce, is there any way to improve it, in browser, it is getting data in 300 milliseconds for ...
0
votes
0answers
137 views

Crazy error Android: ZygoteInit$methodandargscaller.run() source not found

I am developing an android app with AWS and I am facing a real problem with this code public void onClick(View v) { String name = ...
1
vote
1answer
131 views

How to upload files to Amazon S3 using Android SDK without exposing secret key

In this tutorial: http://aws.amazon.com/articles/3002109349624271 secret key is used during file upload. I can't use secret key since my app users don't have amazon account and I can't share my ...
0
votes
0answers
25 views

Any publicly available EBS snapshot of cyanogenmod sources

Does anyone have a publicly accessible EBS snapshot of android repository for cyanogenmod to start off from. It seems much better than each individual cloning from main github repositories each time. ...
2
votes
1answer
104 views

Android aws SDK show progress for upload, not returning the bytes transfered

Am uploading an image to Amazon server using the AWS SDK, Here i want the progress of the upload to update my progress bar. But am not getting the number of bytes being transfered. Here is my code: ...
2
votes
2answers
155 views

AWS S3 Java SDK: detect time/clock skew programmatically?

My Android app uses the AWS Java SDK for uploading user photos to S3. Whenever a user's phone's clock is 'skewed', this causes all transfers to fail. This is a well documented aspect of S3: ...
0
votes
1answer
298 views

Android how to update progress bar in the listview, while uploading file to Amazon using aws sdk

Am using the aws SDK to upload set of images. I have a ListView with each list item containing a ProgressBar(Style:Horizontal), I need to set the progress to it based on the file uploaded. I used ...
0
votes
1answer
351 views

Upload a file to S3 using the AWS SDK

I'm trying to upload a file to an Amazon S3 bucket using the AWS SDK. class LogToS3Bucket extends Thread{ public void run() { super.run(); Gdx.app.log("msg", "secondThreadRunning ...
0
votes
0answers
137 views

Android Amazon Web Services Unable to execute HTTP request: sdb.amazonaws.com

I have been getting the following errors when saving to the amazon SimpleDB. My code (taken from amazon tutorial): Account.getSimpleDB().createDomain(new CreateDomainRequest(Account.getDomain())); ...
0
votes
3answers
139 views

Error while downloading JSON

I'm using my webservice to download JSON data in my app. However, there are times when I'm not able to download JSON data and it returns a null value. I must also mention that I'm using Amazon Web ...
0
votes
1answer
123 views

Amazone s3 upload using transfer manager waiting for long time if there is no network

I am uploading videos to amazone s3 using Transfer manager. After calling the upload method which is asynchronous i am calling waitForUploadResult(). If the network is not available the flow is ...
0
votes
1answer
43 views

How do I realize a client-server model?

A client is application in android wrote on JRuby. A server is a Ruby on Rails application at AwS. Client should download a data, show the data, manage the data, store the data. Client is not one and ...
0
votes
1answer
272 views

Amazon S3 ends up with Error “Conversion to Dalvik format failed with error 1”

I know this is a well known issue of "Conversion to Dalvik format failed with error 1". I goggled for it also but it is not able to solve my problem. My Goal is to integrate Amazon s3 to upload ...
0
votes
1answer
156 views

Overview of 3rd party platform sdks or libraries for Android

I'm still somehow new to android and I've struggled a bit to find a place where I can have an overview of available 3rd party platform sdks for android, such as: facebook SDK, onecloud sdk (for using ...
0
votes
1answer
32 views

How to get notified when the upload is complete while using TransferManager Class?

I am using TransferManager to upload a video. As TransferManager is asynchronous, How can i get notified when the upload is successfully completed?
1
vote
1answer
50 views

Behavior of TransferManger on netwok issue

While uploading using TransferManager, if netwok issue occurs, it would be caught in a the exception - AmazonClientException. In such cases do i have to abort the current upload? If i want to upload ...
0
votes
2answers
226 views

amazon sdk android sample code showing exception

I am trying to run sample code in aws-android-sdk-1.4.4. I have edited the secret key and access key as specified in the document. But its showing the following error: 11-15 17:22:09.835: ...
1
vote
1answer
93 views

How to run sample code in Amazon SDK for android?

I have downloaded aws-android-sdk-1.4.4. I tried to run the sample code provided in sdk. But i am not able run the code. It is not even loading. The eclipse gets stuck and is showing the following ...
1
vote
0answers
79 views

Amazon cloud drive integration with android

is there SDK or sample code available to integrate Amazon cloud drive with Android application. basically i am going to develop an application with uses cloud drive for storage. i have username and ...
1
vote
2answers
404 views

How to play a video from Amazon S3 in Android App?

I use aws-android-sdk-1.4.3/samples/S3_SimpleDB_SNS_SQS_Demo to preview my files stored on Amazon (Amazon Simple Storage Service). Looking through code I saw that they use this, to acces the files: ...
1
vote
2answers
95 views

cloud drive usage in Android App

I am planing to make an android app which download required files from cloud drive Amazon or Google drive. Details: Let we have 30 lectures on cloud drive user can download a lecture {according to ...
0
votes
0answers
82 views

Retrieve JSON from amazonaws.com URL [closed]

The problem is: The URL I am using is: http: //ec2---*-**.compute-1.amazonaws.com/products.json [Cant disclose the complete url] and the following code is being used to retrieve JSON, but It retuns ...
0
votes
1answer
115 views

Really Small Message Broker (RSMB) on windows server 2008

i want to ask about how to use RSMB on windows server 2008. i use amazon as a server. and i use android as a client when i try connect my mqtt client to server. an error ocured. i use an simple ...
1
vote
1answer
67 views

What AWS SDK should I choose?

I am a newbie on Amazon Web Service. I have a task that setup then build a web service that provide APIs to Mac OS, iOS, Android client. There are some APIs and Database need to be kept in secure. I ...
0
votes
1answer
91 views

AWS - book searching for android

I'm trying to use the AWS (Amazon Web Service) in order to search books' details. I have read almost all the explanations at their website but I don't understand which service (EC2, RDS, etc.) I ...
1
vote
1answer
69 views

Amazon AWS where in better to store image plus data?

I have android application, which needs to store somewhere object which contains user uploaded image + description of image. May be later additional data will be added. Which service is better to use ...
0
votes
1answer
192 views

AWS for Android SDK host name error

I'm trying to upload to AWS S3 by using thier AWS for Android SDK but both sample project within SDK and my project give the following error on devices while emulator runs without problem. So there's ...
0
votes
1answer
71 views

SDB Android SDK - inconsistent results with putAttributes() and getAttributes()

I just started using the Android SDK for AWS SDB, and am encountering an unexpected result doing writes and reads. This is surely a simple problem, so I would appreciate any explanations! Here's the ...
0
votes
2answers
187 views

import com.amazonaws cannot be resolved

I'm setting up an Android-based Amazon AWS SimpleDB client in Eclipse (just started). I'm getting an error on the line: import com.amazonaws.services.simpledb.AmazonSimpleDBClient; that says "The ...
1
vote
0answers
141 views

Android aws SDK :AndroidRuntime(587): java.lang.NoClassDefFoundError

I am trying to use AWS Simple DB with androidSdk 1.3.3,and here is my Connection Code AWSCredentials credits=new BasicAWSCredentials("apkey","secretkey"); AmazonSimpleDBClient client=new ...
0
votes
1answer
121 views

Android AWS SDk

I am trying to access Amazon web Service :Simpledb via Android, i downloaded the androidawsSDk-1.3.3 and added the necessary Jar in "libs" folder of my project and configured BuildPath. But i end ...
0
votes
1answer
157 views

Android: IAM users and S3

I'm working with an android device and Amazon's S3 storage system. I have a main user account and I've creates sub-users to access the storage on the behalf of my user. Typically, I would use do the ...
-1
votes
1answer
116 views

Unable to access to EC2 TCP/IP server from university wireless network [closed]

I'm currently working on a communication application on android platform that mainly utilizes TCP / IP socket connection. I'm running my server on one of my EC2 instance and my application has no ...
0
votes
2answers
141 views

Parsing XML with KSOAP in android

I make connection with my webservices (SOAP) this the xml result that I recieved from the webservices how can I parse this result, ...
0
votes
1answer
120 views

Using Amazon Webservices in android application

I have read on net tutorials that cloud can be used for storing data.So i wanted to ask that whether sql server 2005 table data be stored in amazon cloud.Can anyone give me the sample code to store ...
2
votes
1answer
135 views

How to get Android Amazon Web Services (AWS) SDK working with AWS simulation (such as FakeS3)

I want to test my Android app using a local AWS simulation package such as FakeS3 before moving to real Amazon S3 servers. What do you need to change/configure in the AWS SDK (aws-android-sdk) ...
1
vote
1answer
463 views

Wanted: API to get multilingual product information from UPC/EAN barcode for mobile app

there are several discussions here where people were looking for services that will return product information based on a product UPC or EAN barcode. However, those discussed there are always English ...
1
vote
1answer
194 views

How to catch Amazon AWS errors Android

I am constantly getting error reports (from users) such as: Caused by: Status Code: 400, AWS Service: AmazonSimpleDB, AWS Request ID: c5cb109d-bbff-fcea-bc0d-0cb60ff8f6af, AWS Error Code: ...
0
votes
0answers
57 views

Transloadit android SDK

Is there an Android SDK available or other tools written in java for upload to transloadit? Would be nice because I'm developing an Android application with image/video uploading to transloadit.. ...
1
vote
1answer
132 views

How can I resolve multiple versioned jar dependency on android?

I have an android project that has the following dependencies: jackson-core-asl-1.8.2.jar jackson-mapper-asl-1.8.2.jar Now, I'm trying to use the following AWS android library jars for uploading ...

1 2