|
Jason and George - I stuck my (crude) WP7 code in CodePlex in same project as the Azure web site. There is a \BostonAzureWeb tree (the one you've coded in before). Parallel to this there is now a \BostonAzureMobile tree with two items of special interest:
- \BostonAzureMobile\WP7\BostonAzureMemberApp
- \BostonAzureMobile\WP7\BostonAzureMemberAppComplexHttpLogic.zip
The first item is a WP7 project that actually works, but is simple.
The second item is a lot more complex and is incomplete. It is a zip file of a hacky project I was using to learn from. I was trying to get to (a) not having the UI for the phone app tied to a web connection or data retrieval (for maximum performance and
no chance of hanging), which would be accomplished by (b) having the UI only interact with isolated storage which would cache data that it (c) downloaded async from an Azure blob or (d) directly from SQL Azure via OData interface. I also wanted the browser
control to be data-bound to a ViewModel with a BestHtmlAvailable property that could surface one value as the app wakes up, but might change as (in the background) updates are loaded from Azure.
There are other OData comments mentioned in this thread.
|