Paul
Paul

Reputation: 101

How do I get started using Amazon Web Service on Windows Phone 7?

Can anyone help or direct me to a guide for using Amazon Web Service in Visual Studio 2010? I tried downloading the .Net SDK from the amazon website but it wouldn't let me add the reference to the .dll because it said that it wasn't build for Windows Phone 7.

Thank you

Upvotes: 1

Views: 358

Answers (1)

alf
alf

Reputation: 18530

It seems there's no library for WP7 yet. This is because AWS does not allow cross domain requests (although there are some workarounds like this one), and therefore there's not much from the Silverlight world. Your options here are:

  • Create a proxy service that talks with AWS through the .NET api. You will need to publish this service when you go live with your app though.
  • Build your own library based on REST (AWS will stop supporting SOAP next month). You can find the complete documentation of each web service here. Note that this would take much more time and effort, but you could make it open source so other developers can benefit and contribute to it too.

Upvotes: 0

Related Questions