English 中文(简体)
Windows Series Phone 7 "Cloud"
原标题:

I have been reading up on "Cloud computing" on here and still not getting it. Basically I want to develop for the WP7 http://msdn.microsoft.com/en-us/library/ff402531%28v=VS.92%29.aspx#AppPlat_Overview_Arch

Now it mentions everything as being in the "Cloud". Is any server just a cloud? If i have a WCF service or wsdl on my server. Can I consider myself that "Cloud"? Or is there something that a server emits that checks whether or not it is a cloud?

最佳回答

I m sure Microsoft would prefer for you to choose their version of the Cloud , which is Windows Azure, but yet, the cloud can mean WCF/WSDL on your server.

The only true cloud out there is telecom - everything else is basically someone or some company s implementation of services offered over the Internet.

问题回答

The Windows Phone 7 dev platform fully supports the calling of web services (SOAP/REST) so for your scenario, yes, you could think of yourself as the cloud.

Having said that, I think the notion that everything is up in the cloud simply implies that all of the information you ve given an installed app is most likely stored/managed using a service. This service is hopefully installed on a trusted cloud provider (that could be Microsoft Azure or any other provider). This makes sense in light of the fact that the information we put into phone applications usually is quite valuable. Having it stored on a trusted cloud provider s web site would obviously be good from a reliability/security perspective. But to reiterate, that (or any cloud service) is NOT a requirement.

I hope that answered your question.

I liken "cloud" to any service accessible via the internet. This can include the likes of Microsoft s Azure cloud offering, similar "Software/Platform as a Service" offerings from other vendors, dedicated server hosting or shared server hosting solutions which are available much cheaper.

There was some confusion for Windows Phone 7 developers when Microsoft s cloud offering was pitched to students when the "All In" campaign began, around the same time the Windows Phone 7 campaign was getting going.

For developer s the confusion was borne out of wondering how do I support the costs of Microsoft s or other Platform as a Service offerings when my app is going to be free or returning revenues of an as yet unknown quantity.

In a much needed positioning comment offered to windows phone 7 developers, Microsoft made their position clear on Cloud with respect to shared hosting services, their cloud offering and Windows Phone 7 apps.

In short it s a budgeting call. If you re service has the income to cover cloud services (could be from any provider), then it is the most scalable model. Until then, traditional hosting services are recommended.

This is explained in more detail in this post.

Azure Storage and WP7





相关问题
Silverlight Rich text box control

Our team decided that we need our own custom Rich text box control for Silverlight app we are developing. We looked at existing controls mentioned at A good rich text control for Silverlight but ...

Silverlight ImageBrush not rendering (with Bing Map Control)

I m trying to add an image to a Pushpin instance from the Silverlight Bing Map Control, but I can t seem to get it to render (the pushpin renders fine). This is probably a general WPF question rather ...

Silverlight OpenFileDialog DoEvents equivalent

I m processing large files after they are selected by the user. My code looks like the following: if (FileDialog.ShowDialog() == true) { // process really big file } This freezes up the UI so ...

list of controls with templates in silverlight

Does anyone know where to find a list of controls that you can set the template on in Silverlight? I ve wasted several hours now trying to create control templates only to find that the control doesn ...

Silverlight, Updating the UI during processing

I have a simple silverlight multifile upload application, and i want to provide the user with some feedback, right now its only in a test phase and i dont have the webservice. Somehow i cant get the ...

Silverlight 3 - FindName returns null

This looks a bug to me.. Using Silverlight 3 and i have a user control defined in XAML and trying to access the object during runtime returns a null. <Grid> <common:CommonGridEditPanel x:...

silverlight 3 collection binding

Someone please help me understand why this binding does not work... I have a class called SelectionManager with a property called dates which is populated by a WCF service. The property is an ...

热门标签