Application Architecture Guide 2.0 - CH 19 - Mobile Applications(5)

简介:

本文翻译"Deployment"、"Pattern Map"、"Pattern Descriptions"和"Technology Considerations"中的"Microsoft Silverlight for Mobile"部分。

Deployment

Mobile applications can be deployed using many different methods. Consider the requirements of your users, as well as how you will manage the application, when designing for deployment. Ensure that you design to allow for the appropriate management, administration, and security for application deployment.

Deployment scenarios listed for Windows Mobile device applications, with the more common ones listed first, are:

• Microsoft Exchange ActiveSync® using a Windows Installer file (MSI).

• Over the air, using HTTP, SMS, or CAB files to provide install and run functionality.

 Mobile Device Manager–based, using Active Directory to load from a CAB or MSI file.

• Post load and auto-run, which loads a company-specific package as part of the operating system.

• Site loading, manually using an SD card.

部署

移动应用程序可以通过很多不同的方法来部署。设计部署方案时,要兼顾用户需求和你自身应用程序的管理。确保你的设计能够进行适当的管理和监督,并进行安全地部署。

Windows Mobile设备应用部署场景如下:

通过Microsoft Exchange ActiveSync®,使用Windows Installer文件。

通过空中接口,使用HTTPSMS,或者是CAB文件来提供安装并运行功能。

•基于Mobile Device Manager,使用Active Directory来从CAB或者MSI文件加载。

•启动时自动加载并自动运行,加载一个公司定制的包作为操作系统的一部分。

•定点加载,手动使用SD卡。

 

Consider the following guidelines when designing your deployment strategy:

• If your users must be able to install and update applications while away from the office, consider designing for over-the-air deployment.

 If you are using CAB file distribution for multiple devices, include multiple device executables in the CAB file. Have the device detect which executable to install, and discard the rest.

 If your application relies heavily on a host PC, consider using ActiveSync to deploy your application.

 If you are deploying a baseline experience running on top of Windows Mobile, considering using the post-load mechanism to automatically load your application immediately after the Windows Mobile operating system starts up.

 If your application will be run only at a specific site, and you want to manually control distribution, consider deployment using an SD memory card.

在设计部署策略时,考虑以下指导方针:

如果用户需要在离开办公室的情况下,安装并升级软件,那么就考虑使用空中接口来部署。

如果你要使用CAB文件发布给多个设备,那么就在CAB文件中包含多个设备的可执行文件。让设备来检测安装哪个可执行文件,并丢弃其他的文件。

如果你的应用经常依靠主机,那么考虑使用ActiveSync来部署应用。

•如果你要部署一个运行于Windows Mobile设备上的基本的体验,那么考虑使用开机重启加载的机制,在Windows Mobile操作系统运行后,来自动加载你的应用程序。

•如果你的应用程序只能运行于一个特定的位置,并且你想要手动控制分发,那么就考虑使用SD卡来部署。

 

Pattern Map

Table 2 Pattern Map

 

模式图

模式图

类别

相关模式

缓存

惰性采集

通信

•活动对象

•通信器

•实体翻译

•可靠的会话

数据获取

•活动记录

•数据传送对象

•域模型

•执行脚本

同步

同步

UI

•应用控制器

•模型浏览控制器

•模型浏览呈现者

•分页

 

Pattern Descriptions

• Active Object. Support asynchronous processing by encapsulating the service request and service completion response.

 Active Record. Include a data access object within a domain entity.

• Application Controller. An object that contains all of the flow logic, and is used by other Controllers that work with a Model and display the appropriate View.

• Communicator. Encapsulate the internal details of communication in a separate component that can communicate through different channels.

 Data Transfer Object (DTO). An object that stores the data transported between processes, reducing the number of method calls required.

• Domain Model. A set of business objects that represents the entities in a domain and the relationships between them.

 Entity Translator. An object that transforms message data types into business types for requests, and reverses the transformation for responses.

 Lazy Acquisition. Defer the acquisition of resources as long as possible to optimize device resource use.

 Model-View-Controller. Separate the UI code into three separate units: Model (data), View (interface), and Presenter (processing logic), with a focus on the View. Two variations on this pattern include Passive View and Supervising Controller, which define how the View interacts with the Model.

 Model-View-Presenter. Separate request processing into three separate roles, with the View being responsible for handling user input and passing control to a Presenter object.

 Pagination. Separate large amounts of content into individual pages to optimize system resources and minimize use of screen space.

 Reliable Sessions. End-to-end reliable transfer of messages between a source and a destination, regardless of the number or type of intermediaries that separate the endpoints

 Synchronization. A component installed on a device tracks changes to data and exchanges information with a component on the server when a connection is available.

 Transaction Script. Organize the business logic for each transaction in a single procedure, making calls directly to the database or through a thin database wrapper.

模式描述

活动对象。通过封装服务请求和服务完成相应,支持异步处理操作。

•活动记录。包括在一个域实体中的数据访问对象。

•应用控制器。一个包含了所有流程逻辑的对象,被其他控制器用来与一个Model合作并显示合适的View

•通信器。将通信的内部具体信息封装在一个分离的元件中,使他可以通过不同的通道来通信。

•数据传送对象(DTO)。该对象存储了不同处理操作间的传送数据,以减少调用方法的次数。

•域模型。一个业务对象的集合,代表着域中的实体和他们之间的关系。

•实体翻译。该对象将消息数据类型翻译成需要的业务类型,并将相应翻译为消息数据类型。

•惰性采集。尽可能推迟资源的获取,来优化设备资源的使用。

•模型浏览控制器。将UI的代码分为三个部分:模型(数据),浏览(接口),以及呈现(处理逻辑),主要关心浏览部分。该模式下的两个不同就是被动的浏览和监视控制器,它定义了浏览如何与模型进行交互。

•模型浏览呈现者。将请求处理分为三种不同的部分,处理用户输入的浏览响应,并将控制信息传递给呈现对象。

•分页。将大量的内容分成单独的页来优化系统资源并最小化屏幕的使用。

•可靠的会话。指源节点和目的节点之间端对端可靠的消息传输,并不考虑分割他们的中间节点类型和数量。

•同步。一个安装在设备上的元件,跟踪记录数据的变化,并在连接可用时,记录与服务器之间的信息交换。

•执行脚本。组织单个程序中执行每个命令的业务逻辑,直接通过数据库或者瘦数据库封装进行调用。

 

Technology Considerations

The following guidelines contain suggestions and advice for common scenarios for mobile applications and technologies.

技术考虑

以下指导方针包含了对于移动应用和技术通用场景的意见和建议。

 

Microsoft Silverlight for Mobile

If you are using Microsoft Silverlight® for Mobile, consider the following guidelines:

 Consider that at the time of this writing, Silverlight for Mobile was an announced product under development, but not yet released.

• If you want to build applications that support rich media and interactivity and have the ability to run on both a mobile device and desktop as is, consider using Silverlight for Mobile. Silverlight 2.0 code created to run on the desktop in the Silverlight 2.0 plug-in will run in the Windows Mobile Silverlight plug-in in the latest version of Microsoft Internet Explorer for Mobile. Consider that while it is possible to use the same Silverlight code in both places, you should take into account the differing screen size and resource constraints on a mobile device. Consider optimizing the code for Windows Mobile.

• If you want to develop Web pages for both desktop and mobile platforms, consider Silverlight for Mobile or normal ASP.NET/HMTL over ASP.NET for Mobile unless you know that your device cannot support either of these alternatives. As devices browsers have become more powerful, they are able to process the same native HTML and ASP.NET targeted by the desktop, thus making ASP.NET Mobile development less important. ASP.NET Mobile Controls currently supports a variety of mobile devices through specific markup adapters and device profiles. While ASP.NET Mobile Controls automatically render content to match device capabilities at run time, there is overhead associated with testing and maintaining the device profiles. Development support for these controls is included in Microsoft Visual Studio 2003 and 2005 but is no longer supported in Visual Studio 2008. Run-time support is currently still available, but may be discontinued in the future. For more information, see the links available in the Additional Resources section.

如果你要使用Microsoft Silverlight® for Mobile,那么考虑如下指导方针:

•在当前,Silverlight for Mobile只是作为一个处于开发中的产品,并未正式发布。

•如果你要建立支持丰富多媒体的应用,并且在移动设备和桌面设备上都能运行,那么就考虑使用Silverlight for Mobile。用Silverlight 2.0创建的代码能够在装有Silverlight 2.0 plug-in的桌面机上运行,同时也能够在装有包含Silverlight plug-in的最新版本的Microsoft Internet Explorer for MobileWindows Mobile设备上运行。在这两种不同的场合使用相通的代码时,要考虑移动设备上的多种屏幕大小和资源限制。考虑为Windows Mobile进行代码优化。

•如果你想为桌面平台和移动平台同时开发Web页面的话,那么考虑使用Silverlight for Mobile或者基于ASP.NET for Mobile之上的标准ASP.NET/HMTL,除非你知道你的设备不能支持上面两种选择中的任何一个。由于设备浏览器变得越来越强大,与桌面应用一样,他们能够处理相同的本地HTMLASP.NET,因此使得ASP.NET Mobile开发变得越来越不重要。当前的ASP.NET Mobile控件支持很多移动设备,包括具有特殊标记适配器和设备信息的。ASP.NET Mobile控件具有在运行时能够将内容转化为设备匹配的信息的能力,而在测试以及维护设备信息时,会有一定的开销。对这些控件进行开发在Microsoft Visual Studio 20032005中是支持的,但是在Visual Studio 2008是不支持的。对于运行时的支持,当前仍然可用。但是将来可能变得不可用。更多信息请参考Additional Resources这一节给出的链接。


本文转自施炯博客园博客,原文链接:http://www.cnblogs.com/dearsj001/archive/2009/01/19/1378520.html,如需转载请自行联系原作者

相关文章
|
6月前
|
存储 关系型数据库 数据库
【DDIA笔记】【ch2】 数据模型和查询语言 -- 多对一和多对多
【6月更文挑战第7天】该文探讨数据模型,比较了“多对一”和“多对多”关系。通过使用ID而不是纯文本(如region_id代替"Greater Seattle Area"),可以实现统一、避免歧义、简化修改、支持本地化及优化搜索。在数据库设计中,需权衡冗余和范式。文档型数据库适合一对多但处理多对多复杂,若无Join,需应用程序处理。关系型数据库则通过外键和JOIN处理这些关系。文章还提及文档模型与70年代层次模型的相似性,层次模型以树形结构限制了多对多关系处理。为克服层次模型局限,发展出了关系模型和网状模型。
60 6
|
6月前
|
XML NoSQL 数据库
【DDIA笔记】【ch2】 数据模型和查询语言 -- 概念 + 数据模型
【6月更文挑战第5天】本文探讨了数据模型的分析,关注点包括数据元素、关系及不同类型的模型(关系、文档、图)与Schema模式。查询语言的考量涉及与数据模型的关联及声明式与命令式编程。数据模型从应用开发者到硬件工程师的各抽象层次中起着简化复杂性的关键作用,理想模型应具备简洁直观和可组合性。
42 2
|
6月前
|
SQL 人工智能 关系型数据库
【DDIA笔记】【ch2】 数据模型和查询语言 -- 文档模型中Schema的灵活性
【6月更文挑战第8天】网状模型是层次模型的扩展,允许节点有多重父节点,但导航复杂,需要预知数据库结构。关系模型将数据组织为元组和关系,强调声明式查询,解耦查询语句与执行路径,简化了访问并通过查询优化器提高效率。文档型数据库适合树形结构数据,提供弱模式灵活性,但在Join支持和访问局部性上不如关系型。关系型数据库通过外键和Join处理多对多关系,适合高度关联数据。文档型数据库的模式灵活性体现在schema-on-read,写入时不校验,读取时解析,牺牲性能换取灵活性。适用于不同类型或结构变化的数据场景。
50 0
|
6月前
|
SQL JSON NoSQL
【DDIA笔记】【ch2】 数据模型和查询语言 -- 关系模型与文档模型
【6月更文挑战第6天】关系模型是主流数据库模型,以二维表形式展示数据,支持关系算子。分为事务型、分析型和混合型。尽管有其他模型挑战,如网状和层次模型,但关系模型仍占主导。然而,随着大数据增长和NoSQL的出现(如MongoDB、Redis),强调伸缩性、专业化查询和表达力,关系模型的局限性显现。面向对象编程与SQL的不匹配导致“阻抗不匹配”问题,ORM框架缓解但未完全解决。文档模型(如JSON)提供更自然的嵌套结构,适合表示复杂关系,具备模式灵活性和更好的数据局部性。
54 0
|
6月前
|
敏捷开发 存储 缓存
【DDIA笔记】【ch1】 可靠性、可扩展性和可维护性 -- 可维护性
【6月更文挑战第4天】本文探讨了Twitter面临的一次发推文引发的巨大写入压力问题,指出用户粉丝数分布是决定系统扩展性的关键因素。为解决此问题,Twitter采用混合策略,大部分用户推文扇出至粉丝主页时间线,而少数名人推文则单独处理。性能指标包括吞吐量、响应时间和延迟,其中高百分位响应时间对用户体验至关重要。应对负载的方法分为纵向和横向扩展,以及自动和手动调整。文章强调了可维护性的重要性,包括可操作性、简单性和可演化性,以减轻维护负担和适应变化。此外,良好设计应减少复杂性,提供预测性行为,并支持未来改动。
62 0
|
6月前
|
缓存 关系型数据库 数据库
【DDIA笔记】【ch1】 可靠性、可扩展性和可维护性 -- 可扩展性
【6月更文挑战第3天】可扩展性关乎系统应对负载增长的能力,但在产品初期过度设计可能导致失败。理解基本概念以应对可能的负载增长是必要的。衡量负载的关键指标包括日活、请求频率、数据库读写比例等。推特的扩展性挑战在于"扇出",即用户关注网络的广度。两种策略包括拉取(按需查询数据库)和推送(预计算feed流)。推送方法在推特案例中更为有效,因为它减少了高流量时的实时计算压力。
59 0