<%@ Language=VBScript %> developersDen - MCDP - Enterprise Application Developer

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
 

-
MCDP - Enterprise Application Developer

 

Core Requirements ( 1 Exams Required)

 Exam #

Course Name

Course #

 

 

70–549

 

 

 

The Microsoft Certified Professional Developer: Enterprise Applications Developer (MCPD: Enterprise Applications Developer) credential demonstrates that you have the comprehensive skills that are required to build n-tier solutions that target both Web and rich-client user experiences.

Microsoft Skills Assessments for Microsoft Visual Studio 2005 and Microsoft ASP.NET 2.0 help developers focus their exam preparation training and find learning resources to upgrade from Visual Studio .NET and ASP.NET 1.0 and ASP.NET 1.1.

 

How to Earn Your MCDP:
Enterprise Application Developer

MCPD: Enterprise Applications Developer candidates must first meet the requirements for the following three Microsoft Certified Technology Specialist (MCTS) credentials for the Microsoft .NET Framework 2.0. The MCTS Credentials consist of four exams.*

  • MCTS: .NET Framework 2.0 Web Applications
  • MCTS: .NET Framework 2.0 Windows Applications
  • MCTS: .NET Framework 2.0 Distributed Applications

After earning these credentials, candidates may earn their MCPD: Enterprise Applications Developer credential by passing one additional required exam.

If you are a Microsoft Certified Solutions Developer (MCSD) on Microsoft .NET, you can upgrade to the MCPD: Enterprise Applications Developer credential by taking two upgrade exams. You do not have to obtain the MCTS prerequisite credentials if you take the upgrade exams.

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.

Resources


Exam 70–549

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

l CLR via C#: Applied Microsoft .NET Framework Programming, second edition

l Debugging, Tuning, and Testing Microsoft .NET 2.0 Applications

 

 

 

 

 

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 %>