<%@ Language=VBScript %> developersDen - MCTS - .NET Framework 2.0 Distributed Applications

Newsletter

click here for the
Digressions Newsletter


Customer List

 

Student Quotes

developersDen technical training and consulting services praised by students across the country


 


 

         
-
D-U-N-S Number: 170940857

 


-


<< Click here to return to Certification Tracks
 

-
MCTS - .NET Framework 2.0 Distributed Applications

 

Core Requirements ( 2 Exams Required)

 Exam #

Course Name

Course #

 

 

70–536

Developing Applications with the .NET Framework 2.0 Foundation
(30-hour series; available mid 2006) 

*2956

70–529

Core Distributed Application Development with Visual Studio 2005
(Three days)

Advanced Distributed Application Development with Visual Studio 2005
(Three days; available early 2006)

2548


2549

* Click here to contact Microsoft E-Learning to purchase this course
 

The Technology Specialist certifications enable professionals to target specific technologies and distinguish themselves by demonstrating in-depth knowledge and expertise in their specialized technologies.

Developers holding the Microsoft Certified Technology Specialist: .NET Framework 2.0 Distributed Applications (MCTS: .NET Framework 2.0 Distributed Applications) certification have demonstrated breadth and depth of skills and knowledge of Web services, .NET Framework remoting, Enterprise Services, and Message Queuing technology.

Technology Specialists typically pursue careers as Web developers, Microsoft Windows developers, or enterprise software developers. They may also be database developers and systems administrators who do not work with the .NET Framework 2.0 daily but who want to show their breadth of technology experience.

Microsoft Skills Assessments for Microsoft Visual Studio 2005 and Microsoft ASP.NET 2.0 will help you focus your exam preparation training and help you find the learning resources that you need to upgrade from Visual Studio .NET and ASP.NET 1.0 and ASP.NET 1.1.

 

How to Earn Your MCTS:
.NET Framework 2.0 Distributed Applications

Candidates for this certification must pass two exams: one that focuses on .NET Framework 2.0 foundational skills and one that focuses on developing distributed applications. The following table provides a complete list of exams and related training resources. For exam dates and specific areas of focus, see individual Exam Preparation Guides as the exams become available.

If you plan to upgrade from an MCAD or MCSD on .NET certification to a Microsoft Certified Professional Developer certification, you do not need to obtain an MCTS certification first. You will earn the applicable MCTS certifications when you pass the upgrade exam(s) for MCPD: Windows Applications Developer, MCPD: Web Applications Developer, or MCPD: Enterprise Applications Developer.

 

Resources


Exam 70–536

l MCTS Self-Paced Training Kit (Exam 70-536): Microsoft .NET Framework 2.0 Foundation
(available mid-2006)

l Programming Microsoft Visual C# 2005 Core Reference

l Programming Microsoft Visual Basic 2005 Core Reference

 

Exam 70–529

l MCTS/MCPD Self-Paced Training Kit (Exams 70-529 and 70-549): Distributed Application Development/Developing Enterprise Applications (available mid-2006)

l Programming Microsoft Visual C# 2005 Core Reference

l Programming Microsoft Visual Basic 2005 Core Reference




 

Home

About Us

Contact Us

Legal

© 2004 developersDen Inc. All rights reserved.

   
<% Function getXML(sourceFile, number) On Error Resume Next dim styleFile, xmlFile dim source, style styleFile = Server.MapPath("news.xsl") xmlFile = Server.MapPath("news" & number & ".xml") Dim xmlhttp Set xmlhttp = Server.CreateObject("Microsoft.XMLHTTP") xmlhttp.Open "GET", sourceFile, false xmlhttp.Send If Err.number <> 0 Then set source = Server.CreateObject("Microsoft.XMLDOM") source.async = false source.load(xmlFile) Else set source = Server.CreateObject("Microsoft.XMLDOM") source.async = false source.loadxml(xmlhttp.ResponseText) source.save Server.MapPath("news" & number & ".xml") End If set style = Server.CreateObject("Microsoft.XMLDOM") style.async = false style.load(styleFile) getXML = source.transformNode(style) set source = nothing set style = nothing End Function %>