顯示具有 認證篇 標籤的文章。 顯示所有文章
顯示具有 認證篇 標籤的文章。 顯示所有文章

2010年7月2日 星期五

當選2010年第三季MVP

今天早上收到當選MVP的MAIL,不知道為什麼這次的感覺,是蠻爽的!

可能最近微軟的產品正處於一個新世代的更換,因此連帶著亞當斯在寫書或是開發或是教學的時候,都必須同時具備好幾個不同的執行環境。又是ASP.NET 4.0、又是Visual Studio 2010、又是SharePoint 2010…等等…頭都暈了~

所以很明顯,這一陣子一直狂下載MSDN上的SOURCE,安裝-->執行-->測試-->在安裝…一直都在做這些動作!!而當選MVP的最大好處就是,有一年免費的MSDN訂閱,說老實話,這對亞當斯來說真的是非常之實用,尤其是在這個非常時期。序號不求人,這種feel是很nice的!

以下是MVP MAIL中的訊息,讚,以後要多跟其他MVP交流一下~

親愛的微軟「最有價值專家」(MVP),您好︰
2010年第三季MVP已於7月1日正式公告,以下是當選名單:歡迎各位MVP與微軟技術社群暨最有價值專家部門一同歡迎新成員的加入~
由於有些MVP希望低調,因此,請各位MVP不要公布當選名單於您的部落格或是社群中,感謝~

當選名單
趙敏翔、xxx...

同時,微微軟技術社群暨最有價值專家部門期望每一位MVP能持續發揮熱心助人的微軟「最有價值專家」(MVP)精神─持續積極參與微軟技術論壇、主動且正確地回答他人技術問題。

2010年3月13日 星期六

70-516 MCTS: Accessing Data with Microsoft .NET Framework 4 考試參考大綱

ADO.NET的認證自從ADO.NET 3.5 版之後就獨立出一門認證,完全和ASP.NET以及Winform分庭抗禮,其實以開發系統的角度來說,這一張認證才真的是了不起,因為涵蓋所有的資料存取技術,包含以下幾個主要的技巧都必須要專精才行

  • ADO.NET 4 coding techniques and framework components
  • ADO.NET Data Services LINQ
  • LINQ to SQL
  • Entity Framework technologies
  • Structured Query Language (SQL) 
  • stored procedures
  • Database Structures/Schemas (Objects) XML

以上的是大項,以下整理ADO.NET4.0比較細項的考試大綱以及配置範圍,以供參考:

Modeling Data (20%)

  • Map entities and relationships by using the Entity Data Model.
    This objective may include but is not limited to: using the Visual Designer, building an entity data model from an existing database, managing complex entity mappings in EDMX, editing EDM XML, mapping to stored procedures, creating user-defined associations between entities, generating classes with inheritance and mapping them to tables
    This objective does not include: using MetadataWorkspace
  • Map entities and relationships by using LINQ to SQL.

    This objective may include but is not limited to: using the Visual Designer, building a LINQ to SQL model from an existing database, mapping to stored procedures

  • Create and customize entity objects.

    This objective may include but is not limited to: configuring changes to an Entity Framework entity, using the ADO.NET EntityObject Generator (T4), extending, self-tracking entities, snapshot change tracking, ObjectStateManager, partial classes, partial methods in the Entity Framework

  • Connect a POCO model to the Entity Framework.
    This objective may include but is not limited to: implementing the Entity Framework with persistence ignorance, user-created POCO entities
    This objective does not include: using the POCO templates
  • Create the database from the Entity Framework model.

    This objective may include but is not limited to: customizing the Data Definition Language (DDL) (templates) generation process, generating scripts for a database, Entity Data Model tools

  • Create model-defined functions.

    This objective may include but is not limited to: editing the Conceptual Schema Definition Language CSDL, enabling model-defined functions by using the EdmFunction attribute, complex types

Managing Connections and Context (18%)

  • Configure connection strings and providers.
    This objective may include but is not limited to: managing connection strings including Entity Framework connection strings, using the ConfigurationManager, correctly addressing the Microsoft SQL Server instance, implementing connection pooling, managing User Instanceand AttachDBfilename, switching providers, implementing multiple active result sets (MARS)
    This objective does not include: using the ConnectionStringBuilder; Oracle data provider; creating and using a custom provider; using third-party providers
  • Create and manage a data connection.

    This objective may include but is not limited to: connecting to a data source, closing connections, maintaining the life cycle of a connection

  • Secure a connection.
    This objective may include but is not limited to: encrypting and decrypting connection strings, using Security Support Provider Interface (SSPI) or SQL Server authentication, read only vs. read/write connections
    This objective does not include:  Secure Sockets Layer (SSL)
  • Manage the DataContext and ObjectContext.

    This objective may include but is not limited to: managing the life cycle of DataContext and ObjectContext, extending the DataContext and ObjectContext, supporting POCO

  • Implement eager loading.
    This objective may include but is not limited to: configuring loading strategy by using LazyLoadingEnabled, supporting lazy loading with POCO, explicitly loading entities
  • Cache data.
    This objective may include but is not limited to: DataContext and ObjectContext cache including identity map, local data cache
    This objective does not include: Velocity, SqlCacheDependency
  • Configure ADO.NET Data Services.

    This objective may include but is not limited to: creating access rules for entities, configuring authorization and authentication, configuring HTTP verbs

Querying Data (22%)

  • Execute a SQL query.

    This objective may include but is not limited to: DBCommand, DataReader, DataAdapters, DataSets, managing data retrieval by using stored procedures, using parameters, System.Data.Common namespace classes

  • Create a LINQ query.
    This objective may include but is not limited to: syntax-based and method-based queries, joining, filtering, sorting, grouping, aggregation, lambda expressions, paging, projection
    This objective does not include: compiling queries
  • Create an Entity SQL (ESQL) query.

    This objective may include but is not limited to: joining, filtering, sorting, grouping, aggregation, paging, using functions, query plan caching, returning a reference to an entity instance, using parameters with ESQL, functionality related to EntityClient classes

  • Handle special data types.
    This objective may include but is not limited to: querying BLOBs, filestream, spatial and table-valued parameters
    This objective does not include: implementing data types for unstructured data, user-defined types, Common Language Runtime (CLR) types
  • Query XML.
    This objective may include but is not limited to: LINQ to XML, XmlReader, XmlDocuments, XPath
    This objective does not include: XSLT, XmlWriter
  • Query data by using ADO.NET Data Services.

    This objective may include but is not limited to: implementing filtering and entitlement in ADO.NET Data Services, addressing resources, creating a query expression, accessing payload formats, Data Services interceptors

Manipulating Data (22%)

  • Create, update, or delete data by using SQL statements.

    This objective may include but is not limited to: Create/Update/Delete (CUD), using DataSets, calling stored procedures, using parameters

  • Create, update, or delete data by using DataContext.
    This objective may include but is not limited to: CUD, calling stored procedures, using parameters
    This objective does not include: ObjectTrackingEnabled
  • Create, update, or delete data by using ObjectContext.

    This objective may include but is not limited to: CUD, calling stored procedures, using parameters, setting SaveOptions

  • Manage transactions.
    This objective may include
    but is not limited to: System.Transactions, DBTransaction, rolling back a transaction, Lightweight Transaction Manager (LTM)

    This objective does not include: distributed transactions, multiple updates within a transaction, multiple synchronization of data within an acidic transaction

  • Create disconnected objects.

    This objective may include but is not limited to: creating self-tracking entities in the Entity Framework, attaching objects, DataSets, table adapters

Developing and Deploying Reliable Applications (18%)

  • Monitor and collect performance data.

    This objective may include but is not limited to: logging generated SQL (ToTraceString), collecting response times, implementing performance counters, implementing logging, implementing instrumentation

  • Handle exceptions.

    This objective may include but is not limited to: resolving data concurrency issues (handling OptimisticConcurrency exception, Refresh method), handling errors, transaction exceptions, connection exceptions, timeout exceptions, handling an exception from the Entity Framework disconnected object, security exceptions

  • Protect data.

    This objective may include but is not limited to: encryption, digital signature, hashing, salting, least privilege

  • Synchronize data.

    This objective may include but is not limited to: online/offline Entity Framework, synchronization services, saving locally

  • Deploy ADO.NET components.

    This objective may include but is not limited to: packaging and publishing from Visual Studio, deploying an ADO.NET Services application; packaging and deploying Entity Framework metadata

    This objective does not include: configuring IIS, MSDeploy, MSBuild

以上大綱整理來自微軟官方網站,如想得知認證更詳細資料,請參考:http://www.microsoft.com/learning/en/us/exam.aspx?ID=70-516&locale=en-us#tab1

2010年3月12日 星期五

70-513 MCTS: WCF Development with Microsoft .NET Framework 4 考試參考大綱

考70-513這科考試除了可以取得 MCTS: Windows Communication Foundation Development with Microsoft .NET Framework 4 之外,也是MCPD: Windows Developer 4 或是 MCPD: Web Developer 4 可以選考的科目之一,基本上WCF到了.NET 4.0的時候並沒有翻天覆地的大改變,雖有新功能的加持,不過底層架構還是一樣,這讓亞當斯慶幸不少。

不像WF 流程那可就真的是翻天覆地的架構大異動,所以我猜想WF的認證考試一定變更難,因此到目前為止,ASP.NET 4.0、ADO.NET 4.0、WCF 的認證範圍都大致上有個雛形了,但是卻尚未看到WF的身影,由此可知一般。

以下整理列出WCF考試的範疇以及配置內容:

Creating Services (20%)

  • Create service and operation contracts.

    This objective may include but is not limited to: one-way, duplex, and request reply; creating and specifying  fault contracts; configuration-based contracts; exposing service metadata; selecting serialization (e.g., data contract serializer vs. XML serializer)

    This objective does not include: designing service and operation contracts; transactions, instantiation, security-related attributes

  • Create data contracts.

    This objective may include but is not limited to: managing Known Types; controlling data serialization; using required and order attributes on data members; implementing versioning using IExtensibleDataObject; POCOs

    This objective does not include: using custom serializer (ISerializationSurrogate)

  • Create message contracts.

    This objective may include but is not limited to: body and header elements; using required and order attributes on members

  • Implement generic message handling.

    This objective may include but is not limited to: creating a catch-all contract; reading and writing messages; working with properties; working with headers

    This objective does not include: inheriting from Message class; using BodyWriter; creating Fault messages

  • Implement RESTful services.

    This objective may include but is not limited to: accessing HTTP context; WebGet/WebInvoke, UriTemplates; JSON/POX

  • Create and configure a Routing service.

    This objective may include but is not limited to: filters, static and dynamic, context-based routing, content-based routing; router interfaces

  • Create and configure a Discovery service.

    This objective may include but is not limited to: configuring ad hoc and managed modes; Discovery scopes; service announcements

Hosting and Configuring Services (18%)

  • Create and configure endpoints.

    This objective may include but is not limited to: default and standard bindings; custom bindings created from standard binding elements; standard endpoints; transports including HTTP, TCP, named pipes, UDP, MSMQ code-based service configuration; message encoding

    This objective does not include: creating a custom binding element; creating new standard endpoints, loading configuration from a location other than the default application configuration file, security, transaction, reliable sessions

  • Configure Behaviors.

    This objective may include but is not limited to: applying service, endpoint, and operation behaviors in configuration and code

    This objective does not include: creating a custom behavior; creating and using dispatch behaviors,loading configuration from a location other than the default application configuration file

  • Implement self hosting.

    This objective may include but is not limited to: configuring and instantiating a service host

    This objective does not include: implementing a custom service host

  • Implement Web server hosting.

    This objective may include but is not limited to: configuring IIS/WAS for WCF; deploying to IIS/WAS; file-less configuration; specifying a ServiceHost

    This objective does not include: Windows Application Server

Consuming Services (19%)

  • Create a service proxy.

    This objective may include but is not limited to: using a proxy class or channel factory to create a proxy; creating a proxy for an asynchronous communication; creating a proxy for a duplex communication

    This objective does not include: SvcUtil command-line switches

  • Configure client endpoints.

    This objective may include but is not limited to: standard bindings, custom bindings created from standard binding elements, configuring behaviors; code-based and configuration-based bindings; configuring addresses

    This objective does not include: security; creating custom behaviors

  • Invoke a service.

    This objective may include but is not limited to: invoking a service operation synchronously and asynchronously; handling service faults ; using the Message class; managing the life cycle of the proxy (open channels, close channels, abort channels, handle faulted channels); implementing duplex communication

  • Consume RESTful services.

    This objective may include but is not limited to: access HTTP context; JSON/POX

  • Implement service Discovery.

    This objective may include but is not limited to: configuring target scope; monitoring service announcements

Securing Services (17%)

  • Configure secure Bindings.

    This objective may include but is not limited to: transport, message, mixed mode

  • Configure message security.

    This objective may include but is not limited to: specifying protection levels on different message parts

  • Implement Authentication.

    This objective may include but is not limited to: Microsoft ASP.NET Membership Provider, Custom Provider, Windows Integrated Security, certificates (X.509), Federated Authentication endpoint identity; configuring client credentials; Custom Validator

    This objective does not include: Geneva Framework

  • Implement Authorization.

    This objective may include but is not limited to: role based, claim based; configuring role providers for endpoints; principal permission attribute

    This objective does not include: rights-management authorization such as Active Directory Rights Management Services (AD RMS)

  • Implement Impersonation.

    This objective may include but is not limited to: configuration and code; configuring WCF-specific Internet Information Services (IIS) impersonation properties; configuring impersonation options; operation-based and service-based

  • Implement security auditing.

    This objective may include but is not limited to: using serviceSecurityAudit behavior, service auditing, audit log

Managing the Service Instance Life Cycle (13%)

  • Manage service instances.

    This objective may include but is not limited to: per call; per session; single; code and configuration; activation and deactivation; durable services; throttling

  • Manage sessions.

    This objective may include but is not limited to: code and configuration; session management attributes; throttling; reliable sessions; transport-level and application-level sessions; invoking a callback contract

  • Implement transactions.

    This objective may include but is not limited to: distributed transactions; transactional queues;transaction flow; configuring transaction binding attributes; WS-AtomicTransaction (WS-AT); transactional behavior attributes at the service and operation level; using transactions in code

  • Manage concurrency.

    This objective may include but is not limited to: single, multiple, and reentrant concurrency modes; SynchronizationContext and CallbackBehavior

    This objective does not include: deadlocks and other multithreading issues

  • Manage consistency between instances, sessions, transactions, and concurrency.

    This objective may include but is not limited to: possible combinations between instances, sessions, transactions, and concurrency (for example, instance mode single with concurrency mode multiple)

Monitoring and Troubleshooting Distributed Systems (14%)

  • Configure message logging.

    This objective may include but is not limited to: configuring message listeners; logging level; message filters; configuring logging known PII

    This objective does not include: secure message logs

  • Configure diagnostics.

    This objective may include but is not limited to: WMI; performance counters; event logging

  • Debug client-service interactions.

    This objective may include but is not limited to: sending server exception details to client; end-to-end tracing; interpreting output from the trace viewer (single message and end to end)

    This objective does not include: tracing viewer features outside of viewing traces

以上大綱整理來自微軟官方網站,如想得知認證更詳細資料,請參考:http://www.microsoft.com/learning/en/us/exam.aspx?ID=70-513&locale=en-us#tab1

2010年3月11日 星期四

70-519 MCPD : Designing and Developing Web Applications Using Microsoft .NET Framework 4 考試參考大綱

70-515是考ASP.NET 4.0基礎的MCTS,而這科70-519則是屬於進階內容,所以認證部分是屬於MCPD的範疇,也就是Pro級的,同樣的亞當斯將考試參考大綱整理條列如下,有興趣的朋友請自行參考:

Designing the Application Architecture (19%)

  • Plan the division of application logic.
    This objective may include but is not limited to: choosing between client-side and server side processing, planning separation of concern, (for example, partitioning functionality between controllers and evaluating business and data service consumption), planning for long-running processes (for example, synchronous vs. asynchronous)

  • Analyze requirements and recommend a system topology.
    This objective may include but is not limited to: designing interaction between applications, mapping logical design to physical implementation, validating nonfunctional requirements and cross-cutting concerns (for example, communications, operations management, and security), evaluating baseline needs (for example, scale and quality of service)
  • Choose appropriate client-side technologies.
    This objective may include but is not limited to: JavaScript, ASP.NET AJAX, jQuery, Microsoft Silverlight
  • Choose appropriate server-side technologies.
    This objective may include but is not limited to: user controls, server controls, partials, custom HtmlHelper extensions, Web parts, inheriting controls, dynamic data controls
  • Design state management.
    This objective may include but is not limited to: designing an application for the proper use of application state, session state, and request state (for example, ViewState, ControlState, Cache object, cookies, and client-side persistence)

Designing the User Experience (17%)

  • Design the site structure.

    This objective may include but is not limited to: designing application segmentation for manageability and security (for example, using areas, shared views, master pages, and nested master pages), appropriate use of style sheets, client-side scripting, themes, client ID generation, rendering element modes, routing engine

  • Plan for cross-browser and/or form factors.

    This objective may include but is not limited to: evaluating the impact on client side behaviors, themes, bandwidth, style sheets (including application design - task based or scaled rendering of existing page), when to apply Browsers file, structural approaches, user agents, different platforms (mobile vs. desktop)

  • Plan for globalization.

    This objective may include but is not limited to: designing to support local, regional, language, or cultural preferences, including UI vs. data localization (for example, implementing at database level or resource level), when to use CurrentCulture vs. CurrentUICulture, globalization rollout plan (for example, setting base default language, planning localization), handling Unicode data (for example, what fields to include, request encoding), right-to-left support, vertical text and non-Latin topographies, calendars, data formatting, sorting

Designing Data Strategies and Structures (18%)

  • Design data access.

    This objective may include but is not limited to: choosing data access technologies such as ADO.NETData Services, Entity Framework, Windows Communications Foundation (WCF), and ASP.NET Web Services

  • Design data presentation and interaction.

    This objective may include but is not limited to: pulling data from data layer and binding into views, pages, and controls, and pulling data back to data layer by using ModelBinders, data source controls, and HtmlHelper extensions, or programmatically

  • Plan for data validation.

    This objective may include but is not limited to: contextual validation vs. data integrity, where to validate data, synchronization between UI and data layer, data annotations

Designing Security Architecture and Implementation (17%)

  • Plan for operational security.

    This objective may include but is not limited to: approaches for process- and resource-level security, including local and remote resources, Code Access Security (CAS), including trust level, process identity, application pool, and identity tag

  • Design an authentication and authorization model.

    This objective may include but is not limited to: authentication providers, including WindowsForms, and custom user identity flowthrough (for example, trusted subsystem), role management, membership providers, URL authorization (for example, AuthorizationAttribute), file authorization, Authorization Manager (AzMan)

  • Plan for minimizing attack surfaces.

    This objective may include but is not limited to: input validation, throttling inputs, request filtering, where to use Secure Sockets Layer (SSL)

Preparing For and Investigating Application Issues (15%)

  • Choose a testing methodology.

    This objective may include but is not limited to: black box, white box, integration, regression, coverage, API testing, performance testing, security testing
    This objective does not include: load testing, Web testing, unit testing

  • Design an exception handling strategy.

    This objective may include but is not limited to: HandleError attribute in MVC, common error pages, post-error processing, global vs. page level

  • Recommend an approach to debugging.

    This objective may include but is not limited to: tools and approaches for a given scenario (for example, memory dumps, DebuggingAttributes, crashes vs. hangs, deadlocks, assembly binding), when to attach to process (Visual Studio Development Server vs. IIS vs. Internet Explorer), root cause analysis

    This objective does not include: basic breakpoints

  • Recommend an approach to performance issues.

    This objective may include but is not limited to: which instrumentation to watch or create (including performance counters and event tracing) to analyze performance issues, page and fragment caching

Designing a Deployment Strategy (14%)

  • Design a deployment process.

    This objective may include but is not limited to: Windows Installer (MSI) vs. xcopy vs. Web Deployment Tool, scaling, rolling deployments

  • Design configuration management.

    This objective may include but is not limited to: using the ConfigSource attribute (for example, connection strings), staging vs. production vs. development, topologies, machine.config vs. web.config, using IIS vs. Visual Studio Development Server during development, application pools, configuration inheritance

  • Plan for scalability and reliability.

    This objective may include but is not limited to: scaling up, scaling out, at physical level and at architectural level, impact of offloading technologies on load balancing, including state, synchronizing machine and encryption keys

  • Design a health monitoring strategy.

    This objective may include but is not limited to: when to monitor application or business-related events (e.g., on UI every time clicked or in business layer), determining a strategy for using ASP.NET Health Monitoring, throttling, filtering, delivery method

以上參考資料來自微軟官網:http://www.microsoft.com/learning/en/us/exam.aspx?ID=70-519&locale=en-us#,如想了解詳情可以去研究看看。

2010年3月10日 星期三

70-515 MCTS: Web Applications Development with Microsoft .NET Framework 4 考試大綱參考

ASP.NET 4.0 的認證考試MCTS大綱已經出來各大概了,這次看來會考很多新的技術,例如:jQuery、Chart、QueryExtender,、EntityDataSource 、LINQ、MVC… …等等,亞當斯把微軟官方網站所條列之重點與比例列在下方提供給各位參考:

Developing Web Forms Pages (19%)

  • Configure Web Forms pages.
    This objective may include but is not limited to: page directives such as ViewState, request validation, event validation, MasterPageFile; ClientIDMode; using web.config; setting the html doctype
    This objective does not include: referencing a master page; adding a title to a Web form
  • Implement master pages and themes.
    This objective may include but is not limited to: creating and applying themes; adding multiple content placeholders; nested master pages; control skins; passing messages between master pages; switching between themes at runtime; loading themes at run time; applying a validation schema
    This objective does not include: creating a master page; basic content pages
  • Implement globalization.
    This objective may include but is not limited to: resource files, browser files, CurrentCulture, currentUICulture, ASP:Localize
  • Handle page life cycle events.
    This objective may include but is not limited to: IsPostback, IsValid, dynamically creating controls, control availability within the page life cycle, accessing control values on postback, overriding page events
  • Implement caching.
    This objective may include but is not limited to: data caching; page output caching; control output caching; cache dependencies; setting cache lifetimes; substitution control
    This objective does not include: distributed caching (Velocity)
  • Manage state.
    This objective may include but is not limited to: server-side technologies, for example, session and application; client-side technologies, for example, cookies and ViewState; configuring session state (in proc, state server, Microsoft SQL Server; cookieless); session state compression; persisting data by using ViewState; compressing ViewState; moving ViewState

Developing and Using Web Forms Controls (18%)

  • Validate user input.
    This objective may include but is not limited to: client side, server side, and via AJAX; custom validation controls; regex validation; validation groups; datatype check; jQuery validation
    This objective does not include: RangeValidator and RequiredValidator
  • Create page layout.
    This objective may include but is not limited to: AssociatedControlID; Web parts; navigation controls; FileUpload controls
    This objective does not include:  label; placeholder, panel controls; CSS, HTML, referencing CSS files, inlining
  • Implement user controls.
    This objective may include but is not limited to: registering a control; adding a user control; referencing a user control; dynamically loading a user control; custom event; custom properties; setting toolbox visibility
  • Implement server controls.
    This objective may include but is not limited to: composite controls, INamingContainer, adding a server control to the toolbox, global assembly cache, creating a custom control event, globally registering from web.config; TypeConverters
    This objective does not include: postback data handler, custom databound controls, templated control
  • Manipulate user interface controls from code-behind.
    This objective may include but is not limited to: HTML encoding to avoid cross-site scripting, navigating through and manipulating the control hierarchy; FindControl; controlRenderingCompatibilityVersion; URL encoding; RenderOuterTable
    This objective does not include: Visibility, Text, Enabled properties

Implementing Client-Side Scripting and AJAX (16%)

  • Add dynamic features to a page by using JavaScript.
    This objective may include but is not limited to: referencing c
    lient ID; Script Manager; Script combining; Page.clientscript.registerclientscriptblock; Page.clientscript.registerclientscriptinclude; sys.require (scriptloader)
    This objective does not include: interacting with the server; referencing JavaScript files; inlining JavaScript
  • Alter a page dynamically by manipulating the DOM.
    This objective may include but is not limited to: using jQuery, adding, modifying, or removing page elements, adding effects, jQuery selectors
    This objective does not include: AJAX
  • Handle JavaScript events.
    This objective may include but is not limited to: DOM events, custom events, handling events by using jQuery
  • Implement ASP.NET AJAX.
    This objective may include but is not limited to: client-side templating, creating a script service, extenders (ASP.NET AJAX Control Toolkit), interacting with the server, Microsoft AJAX Client Library, custom extenders; multiple update panels; triggers; UpdatePanel.UpdateMode; Timer
    This objective does not include: basic update panel and progress
  • Implement AJAX by using jQuery.
    This objective may include but is not limited to: $.get, $.post, $.getJSON, $.ajax, xml, html, JavaScript Object Notation (JSON), handling return types
    This objective does not include: creating a service

Configuring and Extending a Web Application (15%)

  • Configure authentication and authorization.
    This objective may include but is not limited to: using membership, using login controls, roles, location element, protecting an area of a site or a page
    This objective does not include:  Windows Live; Microsoft Passport; Windows and Forms authentication
  • Configure providers.
    This objective may include but is not limited to: role, membership, personalization, aspnet_regsql.exe
    This objective does not include: creating custom providers
  • Create and configure HttpHandlers and HttpModules.
    This objective may include but is not limited to: generic handlers, asynchronous handlers, setting MIME types and other content headers, wiring modules to application events
  • Configure initialization and error handling.
    This objective may include but is not limited to: handling Application_Start, Session_Start, and Application_BeginRequest in global.asax, capturing unhandled exceptions, custom error section of web.config, redirecting to an error page; try and catch; creating custom exceptions
  • Reference and configure ASMX and WCF services.
    This objective may include but is not limited to: adding service reference, adding Web reference, changing endpoints, wsdl.exe, svcutil.exe; updating service URL; shared WCF contracts assembly
    This objective does not include: creating WCF and ASMX services
  • Configure projects and solutions, and reference assemblies.
    This objective may include but is not limited to: local assemblies, shared assemblies (global assembly cache), Web application projects, solutions, settings file, configuring a Web application by using web.config or multiple .config files; assemblyinfo
  • Debug a Web application.
    This objective may include but is not limited to: remote, local, JavaScript debugging, attaching to process, logging and tracing, using local IIS, aspnet_regiis.exe
  • Deploy a Web application.
    This objective may include but is not limited to: pre-compilation, publishing methods (e.g.,
    MSDeploy, xcopy, and FTP), deploying an MVC application
    This objective does not include: application pools, IIS configuration

Displaying and Manipulating Data (19%)

  • Implement data-bound controls.
    This objective may include but is not limited to: advanced customization of DataList, Repeater, ListView, FormsView, DetailsView, TreeView, DataPager, Chart, GridView
    This objective does not include: working in Design mode
  • Implement DataSource controls.
    This objective may include but is not limited to: ObjectDataSource, LinqDataSource, XmlDataSource, SqlDataSource, QueryExtender, EntityDataSource
    This objective does not include: AccessDataSource, SiteMapDataSource
  • Query and manipulate data by using LINQ.
    This objective may include but is not limited to: transforming data by using LINQ to create XML or JSON, LINQ to SQL, LINQ to Entities, LINQ to objects, managing DataContext lifetime
    This objective does not include: basic LINQ to SQL
  • Create and consume a data service.

    This objective may include but is not limited to: WCF, Web service; server to server calls; JSON serialization, XML serialization
    This objective does not include: client side, ADO.NET Data Services

  • Create and configure a Dynamic Data project.
    This objective may include but is not limited to: dynamic data controls, custom field templates; connecting to DataContext and ObjectContext

Developing a Web Application by Using ASP.NET MVC 2 (13%)

  • Create custom routes.
    This objective may include but is not limited to: route constraints, route defaults, ignore routes, custom route parameters
  • Create controllers and actions.
    This objective may include but is not limited to: Visual Studio support for right-click context menus; action filters (including Authorize, AcceptVerbs, and custom) and model binders; ActionResult sub-classes
  • Structure an ASP.NET MVC application.
    This objective may include but is not limited to: single project areas (for example, route registration, Visual Studio tooling, and inter-area links); organizing controllers into areas; shared views; content files and folders
  • Create and customize views.
    This objective may include but is not limited to: built-in and custom HTML helpers (for example, HTML.RenderAction and HTML.RenderPartial), strongly typed views, static page checking, templated input helpers, ViewMasterPage, ViewUserControl
    This objective does not include: Microsoft.Web.Mvc Futures assembly

以上所有資料來自微軟官網,網址為 : http://www.microsoft.com/learning/en/us/Exam.aspx?ID=70-515&Locale=en-us#tab1

2010年3月9日 星期二

70-511 MCTS: Windows Applications Development with Microsoft .NET Framework 4 考試大綱參考

Windows Form 4.0 的認證考試MCTS大綱已經出來各大概了,不過好像現在考Windows Form 的人比較少,亞當斯把微軟官方網站所條列之重點與比例,整理在下方提供給各位參考:

Building a User Interface by Using Basic Techniques (23%)

  • Choose the most appropriate control class.

    This objective may include but is not limited to: evaluating design requirements and then selecting the most appropriate control based on those requirements; recognizing when none of the standard controls meet requirements; item controls, menu controls, content controls

    This objective does not include: designing a custom control

  • Implement screen layout by using nested control hierarchies.

    This objective may include but is not limited to: using panel-derived controls, attaching properties

    This objective does not include: items controls, control customization

  • Create and apply styles and theming.

    This objective may include but is not limited to: application-level styles, overriding styles, style inheritance, Generic.xaml,  theming attributes

    This objective does not include: data-grid view style sharing

  • Manage reusable resources.

    This objective may include but is not limited to: fonts, styles, data sources, images, resource dictionaries, resource-only DLLs

  • Implement an animation in WPF.

    This objective may include but is not limited to: creating a storyboard; controlling timelines; controlling the behavior when the animation completes; double, color, and point animations; starting an animation from code and from XAML

    This objective does not include: direct rendering updates, implementing key frame animations

Enhancing a User Interface by Using Advanced Techniques (21%)

  • Manage routed events in WPF.

    This objective may include but is not limited to: tunneling vs. bubbling events, handling and cancelling events

    This objective does not include: simple event handling; creating custom events

  • Configure WPF commanding.

    This objective may include but is not limited to: defining WPF commands based on RoutedCommand; associating commands to controls; handling commands; command bindings; input gestures  

    This objective does not include: creating custom commands by implementing ICommand

  • Modify the visual interface at run time.

    This objective may include but is not limited to: adding/removing controls at run time; manipulating the visual tree; control life cycle; generating a template dynamically

    This objective does not include: instantiating forms and simple modification of control properties at runtime

  • Implement user-defined controls.

    This objective may include but is not limited to: deciding whether to use a user/composite, extended, or custom control ; creating a user/composite control; extending from an existing control

    This objective does not include: creating a custom control by inheriting directly from the Control class and writing code

  • Create and display graphics.

    This objective may include but is not limited to: creating and displaying graphics by using geometric transformation; brushes; drawing shapes; clipping; double buffering; overriding Render (WPF) and OnPaint (WinForms); differentiating between retained and non-retained graphics

    This objective does not include: creating and displaying three-dimensional graphics; hit testing; creating images

  • Add multimedia content to an application in WPF.

    This objective may include but is not limited to: media player vs. media element; adding a sound player; images

    This objective does not include: buffering

  • Create and apply control templates in WPF.

    This objective may include but is not limited to: template binding

    This objective does not include: styling and theming; data templating

  • Create data, event, and property triggers in WPF.

Managing Data at the User Interface Layer (23%)

  • Implement data binding.

    This objective may include but is not limited to: binding options, static and dynamic resources, element bindings, setting the correct binding mode and update mode; binding to nullable values

    This objective does not include: binding to a specific data source

  • Implement value converters in WPF.

    This objective may include but is not limited to: implementing custom value converters, implementing multivalue converters

  • Implement data validation.

    This objective may include but is not limited to: handling validation and providing user feedback via the error provider (WinForms) or data templates (WPF), IDataErrorInfo, validation control, form validation and control validation

  • Implement and consume change notification interfaces.

    This objective may include but is not limited to: implementing INotifyPropertyChanged; using INotifyCollectionChanged (ObservableCollection)

  • Prepare collections of data for display.

    This objective may include but is not limited to: filtering, sorting, and grouping data; LINQ; CollectionView (WPF), BindingSource object (WinForms)

  • Bind to hierarchical data.

    This objective may include but is not limited to: TreeView; MenuControl

  • Implement data-bound controls.

    This objective may include but is not limited to: using the DataGridView (WinForms) or DataGrid (WPF) control to display and update the data contained in a data source, implementing complex data binding to integrate data from multiple sources; ItemsControl-derived controls (WPF)

  • Create a data template in WPF.

    This objective may include but is not limited to: implementing a data template selector; using templates with ItemsControl

Enhancing the Functionality and Usability of a Solution (17%)

  • Integrate WinForms and WPF within an application.

    This objective may include but is not limited to: using ElementHosts within WinForms and ControlHosts within WPF; using the PropertyMap property

  • Implement asynchronous processes and threading.

    This objective may include but is not limited to: implementing asynchronous programming patterns; marshalling between threads; freezing UI elements; using timers; Task Parallel Library; parallel LINQ; using the dispatcher; BackgroundWorker component

  • Incorporate globalization and localization features.

    This objective may include but is not limited to: loading resources by locale; marking localizable elements; using culture settings in validators and converters; using language properties and rendering direction properties; working with resource files for localization; determining installed locales; regional settings

  • Implement drag and drop operations within and across applications.

    This objective does not include: Dynamic Data Exchange (DDE)

  • Implement security features of an application.

    This objective may include but is not limited to: configuring Software Restriction Policy (SRP); full trust and partially trusted security; interoperability with legacy CAS policy; User Account Control (UAC)

  • Manage user and application settings.

    This objective may include but is not limited to: creating application settings; creating user settings; loading and saving settings

    This objective does not include: persisting to database

  • Implement dependency properties.

    This objective may include but is not limited to: enabling data binding and animation, property metadata, property change callbacks

Stabilizing and Releasing a Solution (17%)

  • Implement a WPF test strategy.

    This objective may include but is not limited to: automation peer, UI automation, IntelliTrace

  • Debug XAML by using the WPF Visualizer.

    This objective may include but is not limited to: accessing the Visualizer, drilling down into the visual tree, viewing and changing properties

    This objective does not include: setting a breakpoint and stepping through code

  • Debug WPF issues by using PresentationTraceSources.

    This objective may include but is not limited to: animation, data binding, dependency properties

  • Configure a ClickOnce deployment.

    This objective may include but is not limited to: configuring the installation of a WinForms, WPF, or XBAP application by using ClickOnce technology; choosing appropriate settings to manage upgrades

  • Create and configure a Windows Installer project.

    This objective may include but is not limited to: configuring a setup project to add icons during setup, setting deployment project properties, configuring conditional installation based on operating system versions, setting appropriate Launch Conditions based on the .NET Framework version, adding custom actions to a setup project, adding error-handling code to a setup project

  • Configure deployment security settings.

    This objective may include but is not limited to: configuring and integrating UAC by using ClickOnce deployments; setting appropriate security permissions to deploy the application

以上所有資料來自微軟官網,網址為 :http://www.microsoft.com/learning/en/us/exam.aspx?ID=70-511&locale=en-us#tab1

2008年9月13日 星期六

About Pass 70-562 BrainDump - ASP.NET 3.5 AP Development

今天早上花了140 mins(兩個小時又20分)才把這科 70-562 最新的ASP.NET 3.5 Web開發的認證MCTS考完,雖然考試的過程當中非常的煎熬,不過總算是Pass,基本上當考完按下End的按鈕的時候,心臟噗通噗通的聲音,可是清晰可見,深怕要是沒看到Pass這幾個字,那麼除了微軟認證考試不敗的戰績從此破滅,還可能會被米米貓狂虧好幾天吧...Orz...(因為米米貓已經在昨天就考過了,不過還好Tony、John、Sophie跟我同一天考,順道帶一下,他們三個今天也考過囉,恭喜^^)

因此,想說趁著目前對70-562印象非常深刻的時候,提供給想要考這科目的朋友們一些參考資料和方向,我就先將考試內容的題型大方向與我所遇到的類型分類,希望對各位接下來如果想要去挑戰70-562時會有些許的幫助,。

70-562 Exam Time : 180 Mins  Questions : 50

考試題型(Exam Type)大分類(共50題):

  • AJAX (約9題左右)
  • ASP.NET 驗證機制 (約2題左右)
  • DataBinding Control 繫結控制項(GridView、FormView等,7題左右)
  • User Control & Custom Control (約7題左右)
  • Web.config 組態相關設定(約7題左右)
  • Web Service & WCF (約3題左右)
  • Mobile Device (約3題左右)
  • Resource 資源檔運用(約1題左右)
  • MasterPage (約1題左右)
  • HttpHandler Design (約1題左右)
  • Cache 效能快取機制(約2題左右)
  • Page Object & Event (約3題左右)
  • ASP.NET SDK (約1題左右)
  • State 狀態維護 (約2題左右)