<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Exam Directory &#187; MCTS</title>
	<atom:link href="http://examdirectory.com/IT%20Certification%20Exam/mcts/feed" rel="self" type="application/rss+xml" />
	<link>http://examdirectory.com</link>
	<description>Step In and get all the latest information on all IT certification exams!!!</description>
	<lastBuildDate>Tue, 31 Jan 2012 07:22:09 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>MCTS 70-529-CSHARP Short Notes</title>
		<link>http://examdirectory.com/mcts-70-529-csharp-short-notes.html</link>
		<comments>http://examdirectory.com/mcts-70-529-csharp-short-notes.html#comments</comments>
		<pubDate>Thu, 21 Jan 2010 09:33:41 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[MCTS]]></category>
		<category><![CDATA[70-529-CSHARP]]></category>
		<category><![CDATA[70-529-CSHARP exam]]></category>
		<category><![CDATA[70-529-CSHARP mock test]]></category>
		<category><![CDATA[70-529-CSHARP notes]]></category>
		<category><![CDATA[70-529-CSHARP practice test]]></category>
		<category><![CDATA[70-529-CSHARP question]]></category>
		<category><![CDATA[70-529-CSHARP study guide]]></category>
		<category><![CDATA[70-529-CSHARP study notes]]></category>
		<category><![CDATA[C#.NET 2.0 Distributed Application Development]]></category>
		<category><![CDATA[MCTS.NET 70-529-CSHARP]]></category>
		<category><![CDATA[MCTS.NET exam]]></category>

		<guid isPermaLink="false">http://examdirectory.com/mcts-70-529-csharp-short-notes.html</guid>
		<description><![CDATA[Creating and Accessing XML Web Services Web Services Description Language (Wsdl.exe) is a tool used to generate code for XML Web services and Web service clients from WSDL, XSD schema files, and discovery documents. Use the XML (Extensible Markup Language), SOAP (Simple Object Access Protocol), XSD (XML Schema Definition), and WSDL (Web Services Description Language) [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Creating and Accessing XML Web Services</strong></p>
<ul>
<li>Web Services Description Language (<a href="http://www.ucertify.com/article/what-is-wsdlexe.html">Wsdl.exe</a>) is a tool used to generate code for XML Web services and Web service clients from WSDL, XSD schema files, and discovery documents.</li>
<li>Use the XML (Extensible Markup Language), SOAP (Simple Object Access Protocol), XSD (XML Schema Definition), and <a href="http://www.ucertify.com/article/what-is-wsdl.html">WSDL</a> (Web Services Description Language) protocols to create a Web service.</li>
<p>Use <a href="http://www.ucertify.com/article/what-is-the-messagename-property.html">MessageName property</a> to implement two Web methods with the same name and ensure that each of these two Web methods is uniquely identified when it is called separately.</p>
<li>Use the <a href="http://www.ucertify.com/article/what-is-the-cacheduration-property.html">CacheDuration property</a> of the WebMethod attribute to specify the number of seconds for which the response should be held in the cache.</li>
<li>Use the Namespace property of the WebService attribute to specify the namespace of a proxy generated by <a href="http://www.ucertify.com/certifications/Microsoft/mcts-net-2-0.html">Visual Studio .NET 2005</a>.</li>
<li>Use the <a href="http://www.ucertify.com/article/what-is-the-bufferresponse-property.html">BufferResponse property </a>of the WebMethod attribute to serialize the Web method response into a memory buffer until the response is completely serialized and returned back to the Web service clients over the network.</li>
<p>Pass 70-529-CSHARP exam in the first attempt. Full featured Tests. 472 questions with answers and 373 study notes articles and exam tips:</p>
<p><strong>C#.NET 2.0 Distributed Application Development </strong><br />
Download link: <a href="http://www.ucertify.com/exams/Microsoft/70-529-CSHARP.html"><em>http://www.ucertify.com/exams/Microsoft/70-529-CSHARP.html</em></a></p>
<p><span id="more-76"></span></p>
<li>Use the <a href="http://www.ucertify.com/article/what-is-the-enablesession-property.html">EnableSession property</a> of the WebMethodAttribute class to enable session state for an XML Web service method.</li>
<li>Use the <a href="http://www.ucertify.com/article/what-is-the-messagename-property.html">MessageName property</a> of the WebMethod attribute to give an alias name to an XML Web service method and it is generally used to uniquely identify overloaded Web methods.</li>
<li>Use the [WebMethod(TransactionOption = TransactionOption.RequiresNew)]<br />
statement to indicate that an XML Web service method requires a new transaction. Whenever any request is made and processed, an XML Web service is created within a new transaction.</li>
<li>Use the following code segment to create an XML Web service:<br />
[System.Web.Services.WebService(<br />
Namespace=http://MyServer/SampleReport)]public class Service : System.Web.Services.WebService</li>
<li>Use the @ OutputCache directive to control the output caching policies of an ASP.NET page or a user control contained in an ASP.NET page. The Duration attribute of the @ OutputCache directive specifies the amount of time (in seconds) for which a control is cached.</li>
<li>Use the MessageName property of the WebMethod attribute to give an alias name to an XML Web service method. It is generally used to uniquely identify overloaded Web methods. By default, the MessageName property for a Web method is set to the name of the method.</li>
<li>Use the <a href="http://www.ucertify.com/article/what-is-the-transactionoption-property.html">TransactionOption property</a> of the WebMethod attribute to support a transaction for a Web method. This property enables a Web service method to participate as the root object in a transaction.</li>
<li>Use the SoapDocumentMethodAttribute and SoapRpcMethodAttribute classes of the System.Web.Services.Protocols namespace to provide the SoapDocumentMethod and the SoapRpcMethod. These methods are used to format SOAP messages and allow setting the value of the OneWay property. This property accepts a boolean value that indicates whether the Web service client has to wait for a response from the Web server.</li>
<li>Use the [WebMethod()] attribute to declare a method within an XML Web service that makes the method callable from remote Web clients.</li>
<li>Use the <a href="http://www.ucertify.com/article/what-is-the-cacheduration-property.html">CacheDuration property</a> of the WebMethod attribute to specify the number of seconds for which the response should be held in the cache. The default value for this property is zero.</li>
<li>Use the Cache object to store the product information in the memory of the computer to enhance the performance of MyWebService.</li>
<li>Create a Web service and use Web service discovery to locate Web service descriptions.</li>
<li>Deploy a Web service and ensure that its components (Web application directory, .asmx file, Web.config file) are published on the Web.</li>
<li>Use an XML Web service to open wire formats to communicate between different systems. Open wire formats are the protocols that support common Web standards, such as HTTP and SOAP.</li>
<li>Use the DiscoveryDocumentReference class to discover the available XML Web services at a given URL. The URL must point to the discovery document that has the .disco file extension.</li>
<li>Use a discovery file to automatically generate when a Web reference is added to the Web service from a client ASP.NET application.</li>
<li>Create an XML Web service to publish the XML Web service within the company&#8217;s Intranet.</li>
<li>Install a setup package on a computer, based on a condition. Add a search for the registry key in the Launch Condition tab in the Project Properties dialog box.</li>
<li>Use an XML Web service to provide a particular element of functionality, such as application logic. It can be used internally by an application or externally over the Internet by any number of applications using Internet standards, such as XML and HTTP.</li>
<li>Use the Web Setup Project template to create installation packages for deploying Web-based applications such as ASP.NET Web applications, and XML Web services. The Web Setup Project creates an installer package of an application and installs various files to a virtual directory on the Web server.</li>
<p><strong>Configuring and Customizing a Web Service Application</strong></p>
<li>Use the element of the application&#8217;s Web.config file to ensure that the trace output is appended to the bottom of each page.</li>
<li>Use the Trace.axd Http handler to view the trace details of an application by setting the value of requestlimit=&#8221;[n]&#8221; in the application&#8217;s configuration file.</li>
<li>Use the pageOutput attribute to set the value to true if the trace information is displayed both on an application&#8217;s pages and in the .axd trace utility, otherwise it sets the value to false.</li>
<li>Use the Web Services description Language (Wsdl.exe) tool to define the format of messages that a Web service understands.</li>
<li>Enable tracing for an application by using the element. The enabled attribute of the element specifies whether or not tracing is enabled for an application. By default, this attribute is set to false.</li>
<li>Use the customErrors element to provide information about custom error messages for an ASP.NET application. The mode attribute of the customErrors element specifies whether custom errors are enabled, disabled, or shown only to remote clients.</li>
<li>Use the customErrors element to provide information about custom error messages for ASP.NET applications. The mode attribute of the customErrors element specifies whether custom errors are enabled, disabled, or shown only to remote clients.</li>
<li>Use the <a href="http://www.ucertify.com/article/what-is-the-webservicebindingattribute-class.html">WebServiceBindingAttribute class </a>to allow declaring one or more bindings for a Web service. Bindings represent a method of ensuring that the Web service conforms to certain specifications.</li>
<li>Use HTTP-GET, HTTP-POST, and HTTP-SOAP protocols to test the WebService application from a Web browser by using ASP.NET.</li>
<li>Use the TcpChannel, TcpClientChannel, and TcpServerChannel classes to authenticate as well as to encrypt data for secure data communication.</li>
<li>Use the Custom Authentication by using SOAP headers. For user authentication, the user credentials in encrypted format are passed within the SOAP header of the SOAP message. The Web server, without regarding the platform hosted by the Web service, implements Custom Authentication.</li>
<li>Implement the Style and Use format options to format the SOAP message. The Style attribute is used while formatting the Body element. The Use attribute is used with the Web method parameters and return values.</li>
<li>Use SOAP 1.1 to allow additional elements to be added after the body part but the SOAP 1.2 does not allow additional elements to be added after the body part.</li>
<li>Use the HttpMethodAttribute class to apply this attribute to an XML Web service client using HTTP-GET or HTTP-POST.</li>
<li>Use the SoapDocumentServiceAttribute class to apply the optional SoapDocumentServiceAttribute to an XML Web service that sets the default format of SOAP requests and responses sent to and from XML Web service methods within an XML Web service.</li>
<li>Use the SoapHeaderAttribute class to apply the SoapHeaderAttribute on an XML Web service method or an XML Web service client to specify a SOAP header that the XML Web service method or an XML Web service client can process.</li>
<li>Use Session object to create a variable that will be available as long as the session is active. The Session object pertains to an individual user&#8217;s session with the Web service.</li>
<li>A session cookie can be used as a user preference so that important information of a Web site is provided to the users.</li>
<li>The Cache object implements the cache for a Web application. The Session object pertains to an individual user&#8217;s session with an application. It is used to store and retrieve information during a specific session for the user.</li>
<li>The mode=&#8221;InProc&#8221; attribute is used in the element of the application&#8217;s Web.config file to configure the session state settings for an application.</li>
<li>Use the <a href="http://www.ucertify.com/article/what-is-the-enablesession-property.html">EnableSession property</a> of the WebMethod attribute to specify whether or not the data stored in the Session object is available.</li>
<li>Create an array of data containing the user&#8217;s session and use the Session object for data storage. If the Session object is enabled, only users of a particular session will be redirected to other Web pages to view them. The server destroys the session object when the session of a user expires.</li>
<li>Use the Session and Application objects to provide state management. The EnableSession property of the WebMethod attribute make data stored in the Session object available to the clients.</li>
<li>Use the EnableSession property of the WebMethodAttribute class to enable session state for an XML Web service method.</li>
<li>Use the SoapUnknownHeader class to handle the data received from a SOAP header but not understood by any recipient Web service.</li>
<li>While defining and processing SOAP headers, a class representing data in a particular SOAP header needs to be defined. The class must be derived from the SoapHeader class.</li>
<li>Use the SoapHeaderAttribute class to specify a SOAP header so that the Web methods that implement the class are able to process data passed to the SOAP header.</li>
<li>Use MemberName property of the SoapHeaderAttribute class to specify the member of the XML Web service that represents the SOAP header contents.</li>
<li>Use the SoapException class to throw SoapException when an XML Web service method is called over SOAP and an exception occurs.</li>
<li>Develop a Web application and use exception handler to handle exceptions. When a response is not formatted correctly for a request, a CLR SOAP Exception is thrown. The SOAP Exception occurs in the XML Web service method.</li>
<li>Create a SOAP extension to log the SoapMessageStage. Use the AfterSerialize to insert output to a log file. The AfterSerialize stage occurs just after a SoapMessage is serialized but before the SOAP message is sent over the wire.</li>
<li>Use Soap (Simple Access Protocol), UDDI (Universal Description, Discovery, and Integration), and WSDL (Web Services Description Language) protocols to discover Web Services and interfaces on the Internet for a WebService.</li>
<li>Use the GetInitializer method of the SoapExtension class to initialize the data used by the SOAP extension class and use the ChainStream method to access the incoming stream from the SOAP message.</li>
<p><strong>Creating, Configuring, and Deploying Remoting Applications</strong></p>
<li>Use IIS to deploy the .NET Remoting object and use SSL to encrypt the HTTP traffic. The HttpChannel object is used to provide an implementation for a sender-receiver channel that uses the HTTP protocol for transmitting messages. The SoapFormatter object is used to serialize and deserialize an object in the SOAP format.</li>
<li>Use the SerializableAttribute attribute to specify whether or not a class can be serialized. Use the MarshalByValue objects that are remotable objects and implement the ISerializable interface.</li>
<li>Use the element to configure ASP.NET authorization support. It contains sub elements. These sub elements are used to allow or deny access to a resource based on specific users or roles.</li>
<li>Properties set by one of the client applications can be accessed by all the applications using object of the application. Configure Object as a server-activated Singleton object. Mark the Object class with the Serializable attribute. Implement the ISponsor interface in the Object class.</li>
<li>Use the SerializableAttribute attribute to identify whether or not a class can be serialized. Making a class serializable will make all the twenty properties available to the client applications. Using the SerializableAttribute attribute is the easiest way to make a class serialized.</li>
<li>Use the System.Runtime.Remoting and System.Runtime.Remoting.Channels.Tcp namespaces in the Web service application that enable encoding Objects in binary format while transmitting data to a remote client computer by using the TCP protocol.</li>
<li>Create an object, which is used by multiple applications and ensure that the properties set by one of the client applications can be accessed by all the applications using the object.</li>
<li>Create Utils as a SingleCall object whenever a user makes a call to the service.</li>
<li>Use breakpoints while debugging an application. A breakpoint specifies a line in a method or sub procedure at which Visual Studio .NET automatically suspends execution.</li>
<li>Develop an XML Web service and use the User Interface Editor during installation.</li>
<li>Develop a server application for hosting Object. Create a Windows service to execute in the background and register the object as a client-activated object.</li>
<li>Use the Configuration property to debug and generate a program database file (.pdb) that contains information about symbols used within the application on compiling the project. It also lets breakpoints invoked on debugging.</li>
<li>Debug a Web service by the Services Control Manager, the Visual Studio .NET Server Explorer, or code, and then add a debugger to the process in which the service is running.</li>
<li>Use the element to use a client application that can test an object.</li>
<li>Use the element to specify that an application configures the channel through which it communicates with remote objects. A new channel, which is not a channel template, can also be declared and configured.</li>
<li>Use the following code segment to secure a method from unauthorized users:<br />
GenericIdentity GenIdentity = new GenericIdentity(&#8220;Generic&#8221;, &#8220;Custom&#8221;);<br />
string[] GeoRoles = {&#8220;GeoSurvey&#8221;};<br />
GenericPrincipal GeoPrincipal = new GenericPrincipal(GenIdentity, GeoRoles);<br />
Thread.CurrentPrincipal = GeoPrincipal;</li>
<li>Use the BinaryFormatter class and FileStream class for serialization to serialize and deserialize an object.</li>
<li>Develop an application and use <a href="http://www.ucertify.com/article/what-is-ssl.html">Secure Sockets Layer (SSL)</a> protocol before application is sent to remote computer using WebResponse and WebRequest classes.</li>
<li>Use the <a href="http://www.ucertify.com/article/what-is-the-marshalbyrefobject-class.html">MarshalByRefObject class</a> to specify the initial span of time that an object should remain in memory before the lease manager begins the process of deleting the object.</li>
<p>To analyze the capabilities of the simulation software, you can download a demo version and evaluate the PrepKit free of cost. Click the link below:</p>
<p><strong>C#.NET 2.0 Distributed Application Development </strong><br />
Download link: <a href="http://www.ucertify.com/exams/Microsoft/70-529-CSHARP.html"><em>http://www.ucertify.com/exams/Microsoft/70-529-CSHARP.html</em></a></p>
<p><strong>Implementing Asynchronous Calls and Remoting Events</strong></p>
<li>Use asynchronous processing, multiple processes run at the same time. The two main tasks that must be handled in order for asynchronous processing to work: The server component and the Client application. The server component must be able to send a message to the client application when the process is complete. Client applications must be able to receive messages.</li>
<li>Use the object pooling COM service to save the resources that are used during object creation. The objects are created at each method call in a non-pooled environment, and on activation, the object is extracted from the pool. Similarly, the object is returned to the pool on deactivation.</li>
<li>Create a Web service and use the Web service to create a remote method by using the System.Runtime.Remoting.Messaging namespace.</li>
<li>Create a Web service application and declare a synchronous method and then convert the same method to the asynchronous method.</li>
<li>Create a Web service application and a OneWay WebMethod, and declare a class in which it will call a remote method asynchronously, and finally test the result.</li>
<li>Create a Web service and use the Web service to create a remote method by using the System.Runtime.Remoting.Messaging namespace.</li>
<li>Develop an XML Web service to use the FileIOPermission class and the PermitOnly method.<br />
The GetChanges method of the DataSet class returns a copy of the DataSet containing all changes made to the DataSet since it was last loaded, or since the AcceptChanges method was last called.</li>
<li>Use the FileIOPermission class to control the ability to access files and folders. The PermitOnly method is used to prevent callers higher in the call stack from using the code that calls a method to access resources that are not specified by the current instance.</li>
<li>Use the EventLogTracelistener object to provide a listener that directs debugging or tracing output to an EventLog.</li>
<li>Use AutoLog property of the ServiceBase class to determines whether or not a service automatically logs the entries in the event log when events such as Start, Stop, Pause, and Continue occur.</li>
<li>Use the EventLog class to interact with Windows event logs and use the Source property of the EventLog class to specify the source name to register and use when writing to the event log.</li>
<li>Use the <a href="http://www.ucertify.com/article/what-is-the-createeventsource-method.html">CreateEventSource() method</a> of the EventLog class to create an event if the event log does not already exist and register a Web service with this event log.</li>
<li>Use the CreateEventSource method of the EventLog class to establishe an application as a valid event source for writing event information to a particular event log on a computer.</li>
<li>Use the CanHandlePowerEvent property and the OnPowerEvent() method to handle an InvalidOperationException exception.</li>
<li>Use the element to specify that a value of an attribute must be unique within the specified scope.</li>
<li>Use the element to contain an XML Path Language (XPath) expression and specify that the location in which the values are specified must be unique. Use the element to specify the field on which the values must be unique.</li>
<p><strong>Implementing Web Services Enhancements (WSE) 3.0</strong></p>
<li>Implement interfaces belonging to the System namespace in application code using the TreeView window.</li>
<li>Use the WSE 3.0 features by changing the inheritance chain. Instead of inheriting from the System.Web.Services.Protocols.SoapHttpClientProtocol class, the proxy class needs to inherit from the Microsoft.Web.Services3.WebServicesClientProtocol class.</li>
<li>Create a proxy class derives from SoapHttpClientProtocolthat derives from the abstract WebClientProtocol class. Now, write code that will generate the proxy class.</li>
<li>Use the Web service application to create a configuration file and define the structure of the configuration file and how it relates to WSE 3.0.</li>
<li>Use a Web service to create a SOAP message and use the AsynchronousOperationException class to throw an exception when the format of a SOAP message is invalid.</li>
<li>Use the AsyncState property of the AsyncResult class to get a user-defined object that contains information about the asynchronous operation.</li>
<li>Use a Web service application to create a policy for digital signatures and choose all the appropriate namespaces that can be used to create a policy for digital signatures.</li>
<li>Use the X509Certificate class to create an X509Certificate class object in a Web service application and fill the object of the X509Certificate object with data by using overloaded Import method.</li>
<li>Use the GetRawCertData method to get the data from the X509Certficate class object as a byte[] array and Use the GetRawCertDataString method to get the data from the X509Certficate class object as a string.</li>
<li>Use the GetKeyAlgorithmParameters method to get the key algorithm parameters for the X.509v3 certificate from the X509Certficate class object as a byte[] array and Use the GetKeyAlgorithmParametersString method to get the key algorithm parameters for the X.509v3 certificate from the X509Certficate class object as a string.</li>
<li>Use the overloaded constructors of the BinarySecurityToken class to encrypt the SOAP message.</li>
<li>Use the overloaded constructors of the DerivedKeyToken class to encrypt the SOAP message.</li>
<li>Use the overloaded constructors of the EncryptedKeyToken class to encrypt the SOAP message.</li>
<li>Use the overloaded constructors of the KerberosToken class to encrypt the SOAP message.</li>
<li>Use the overloaded constructors of the UsernameToken class to encrypt the SOAP message.</li>
<li>Use System.Net.WebException class to handle exceptions. Set the timeout value for a Web service call to -1, when a debugger is attached to an XML Web service.</li>
<li>Use the Attributes to validate XML document. Develop an XML Web service to validate the contents of an .xml file by connecting an XML schema to the XML file.</li>
<li>Create a policy file with the help of WSE 3.0.. Initially write three steps to create and implement a policy file and use the structure of the policy file to inject input filters, output filters, or both, into the processing pipeline.</li>
<li>Add policy assertions to a policy using the WSEConfigEditors3 dialog box. In the WSEConfigEditor3 dialog box, specify the policy name and in the WSE Security Settings Wizard, use Client Authentication methods: Anonymous, Windows, Username, and Certificate.</li>
<li>Use a Windows service to execute in the background and in its own process space, with a specific user identity. Usually, it does not involve any user interaction.</li>
<li>Create a secure SOAP message in the Web service and use the SoapFilter class in the Web service to filter the SOAP message.</li>
<li>Create a secure SOAP message in the Web service and use the ReceiveSecurityFilter class in the Web service to handle the receiving and securing of SOAP messages.</li>
<li>Create a secure SOAP message in the Web service and use the SendSecurityFilter class in the Web service to handle the transmission and securing of SOAP messages.</li>
<li>Develop a Windows application and use Microsoft SQL Server as a backend database to perform declarative and imperative security checks.</li>
<li>Use a Web service to implement an application to send messages and create a new object of the SoapSender class, and implement the required namespaces.</li>
<li>Create a new handler class that inherits from the SoapReceiver class and override the Receive method, and process the message parameter according to the requirement.</li>
<li>Use a Web service to create a SOAP message to define a messaging connection that allows messages to be received from a given endpoint using HTTP with the help of the SoapHttpInputChannel class and perform asynchronous receive operation.</li>
<li>Use a Web service to create a SOAP message to define a messaging connection that allows messages to be sent a given endpoint using HTTP with the help of the SoapHttpInputChannel class and perform.</li>
<li>Configure the WSE router application by adding one or more elements. These elements are added to the Web.config file for the WSE router Web service.</li>
<li>Create a WSE router application using a Web service. The router serves as an intermediary between the outside world and a Web service.</li>
<li>Create a referral cache file for a WSE router application using a Web service and ensure that the user account under which WSE runs has accessed to this file. Now, Add a configuration section to the Web.config file for the WSE router.</li>
<li>The FileAuthorizationModule module is used when the authentication mode attribute is set to Windows in the element and checks against the access control list (ACL).</li>
<li>The UrlAuthorizationModule class of the System.Web.Security namespace is used to provide URL-based authorization services to allow or deny access to specified resources.</li>
<li>Use integrated windows authentication to ensure that the authentication used should not work over HTTP proxies. Integrated Windows authentication is a method of authentication that uses the security features of Windows clients and servers.</li>
<p><strong>Creating and Accessing a Serviced Component and Using Message Queuing </strong></p>
<li>Use the Regsvcs.exe tool to load and register assemblies as well as generate, register, and install a type library into a COM application.</li>
<li>Create a serviced component and use an assembly to deploy the Component after registering the assembly.</li>
<li>Register a serviced component using manual registration, dynamic registration, or programmatic registration.</li>
<li>Use a publisher policy configuration file to contain compatibility information issued by the publisher of a shared component. It ensures that the latest version of the shared component is used by all applications using the component.</li>
<li>Use the Server Application of the COM application to provide high-level security to the component.</li>
<li>Use ComponentAccessControl, ApplicationAccessControl, SecureMethod, and SecurityRole attributes to configure security of a COM component.</li>
<li>Create a proxy class for a Web service manually and createed methods for calling the XML Web service method asynchronously using <a href="http://www.ucertify.com/article/what-is-wsdlexe.html">Wsdl.exe</a> tool.</li>
<li>Use the .NET Framework to allow sharing of an assembly among multiple applications after installing it into the global assembly cache.</li>
<li>Host the serviced component in a COM application by assigning a strong name to the assembly, registering the assembly in the Windows registry, and registering and installing the type library definitions in a COM application.</li>
<li>Use the [ClassInterface(ClassInterfaceType.AutoDual)] attribute to define the COM based component class to ensure that component class is built without any error.</li>
<li>Use the InterfaceQueuing attribute when message queuing is done at the component level. COM calls client requests on the components that are to be recorded and stored in the queue even when the server component is unavailable.</li>
<li>During the Manual registration, the assembly fails to load error type occurred due to which the error message that describes the reason for the failure is displayed as output.</li>
<li>Use the SecurityRole attribute of the [assembly] element to allow the COM security configuration for the library or server application.</li>
<li>Use the AutoComplete attribute of System.EnterpriseServices namespace to apply to the methods of the serviced component class.</li>
<li>Use the Sn.exe tool to sign a component. Strong Name (Sn.exe) is a tool used to sign assemblies with strong names. It also provides signature generation, signature verification, and key management.</li>
<li>Use the Just-in-Time Activation service to minimize the amount of time for which an object is created and consumes resources and services on the server. With JIT activation, a client can hold a reference for an object on the server.</li>
<li>Use the Web References dialog box to refer to XML Web services published on either a local Intranet or the Internet.</li>
<li>Use the Gacutil.exe tool to view and manipulate the contents of the global assembly cache. It allows developers to install or remove assemblies from the cache, and to display the contents of the cache.</li>
<li>Use the AutoComplete attribute to apply to methods of a class that derives from the ServicedComponent class. It enables an object that is participating in a transaction to vote in favor of completing the transaction if the method calls returns normally.</li>
<li>Use the ServicedComponent class of the System.EnterpriseServices namespace. A serviced component is a .NET component that uses component services of COM, such as object pooling, transaction management etc.</li>
<li>Use the [ClassInterface(ClassInterfaceType.AutoDual)] attribute to define a component class. The class interface exposes public properties, methods, fields, and events that are explicitly exposed on a .NET object.</li>
<li>Use the PrincipalPermissionAttribute class or method to declaratively demand that users running code within the class or method belong to a specified role or have been authenticated.</li>
<li>Use the Union method of the PrincipalPermission class to create a permission object that is the union of the current permission object and a target parameter permission object.</li>
<li>Use the GenericPrincipal class and the GenericIdentity in conjunction with each other to create an authorization scheme. These two classes can be used to prompt users for their user names and passwords, to check these values against a database, and to create principal and identity objects.</li>
<li>Use the MessageQueue and Message classes to set up the message queue programmatically. The static method of the MessageQueue class is used to check whether the queue already exists. If it does not, create the queue and set the label to match the name of the queue.</li>
<li>Create public and private message queues using MessageQueue class.</li>
<li>Create a public transactional message queue using the MessageQueueTransactional class.</li>
<li>Create a private transactional message queue using the MessageQueueTransactional class.</li>
<li>Use the Web service application to create a message queue and set permission on it using the MessageQueue class.</li>
<li>Implement the BeginReceive and the EndReceive methods of the MessageQueue class. Use the BeginReceive method to initiate an asynchronous operation and a MessageQueue object to begin receiving a message and notifies the ReceiveCompleted event handler when the operation is finished. Use the EndReceive method to call it when the ReceiveCompleted event is raised. The method completes the specified asynchronous operation received by the MessageQueue object.</li>
<li>Use the Express Messaging to deliver the message successfully. The Express Messaging is a type of message delivery method that stores messages in the Random Access Memory (RAM).</li>
<li>Use overloaded Send method of the MessageQueue class to send message to a message queue.</li>
<li>Create a message queue and insert messages in it. Now, delete all the messages that were inserted into the public and private message queues using the Purge() method of the MessageQueue class.</li>
<li>Use the EncryptionRequired enumeration to specify the privacy level. It consists of three members: Body, None, and Optional.</li>
<li>Use the XmlMessageFormatter class to serialize and deserialize objects to or from the body of a message.</li>
<li>Use the properties of the certificate to see whether a trusted user publishes it.</li>
<li>Use the UseAuthetication property with the SenderId property to verify the sender&#8217;s authentication. The UseAuthentication property specifies whether the message needs to be authenticated.</li>
<li>Implements the StreamReader class in the application. Use Peek method of the StreamReader class to go to end of the file. The Peek method returns an integer type value to determine whether or not the end of the file or an error has occurred. It returns value -1 if no characters are available on the stream or the end of file has reached.</li>
<li>Use overloaded Receive method of the MessageQueue class to receive message from a message queue.</li>
<li>Use overloaded ReceiveById method of the MessageQueue class to receive message from a message queue that matches the given ID.</li>
<li>Use overloaded ReceiveByCorrelationId method of the MessageQueue class to receive message from a message queue that matches the given correlation ID.</li>
<li>Use overloaded BeginPeek method of the MessageQueue class to begin peeking a message from a message queue.</li>
<li>Use overloaded BeginReceive method of the MessageQueue class to begin receiving a message from a message queue.</li>
<li>Use Basic authentication to authenticate users on the Internet and enables a browser to prompt the user for a username and password.</li>
<li>Use the MessageQueue class to create a queue and then send a message to the MessageQueue using the Message class. Specify access rights for a trustee (user, group, or computer) to perform application-specific implementations of common tasks.</li>
<li>Use the MessageQueue class to create a queue and then send a message to the message queue using the Message class. Specify access rights for a trustee (user, group, or computer) to perform application-specific implementations of common tasks by using the overloaded AccessControlEntry constructor.</li>
<li>Use the MessageQueue class to create a queue and then send a message to the queue using the Message class and allow code access permissions for messaging by using the overloaded constructors of the MessageQueuePermission class.</li>
</ul>
<p>Download full version of MCTS 70-529-CSHARP certification PrepKit:</p>
<p><strong>C#.NET 2.0 Distributed Application Development </strong><br />
Download link: <a href="http://www.ucertify.com/exams/Microsoft/70-529-CSHARP.html"><em>http://www.ucertify.com/exams/Microsoft/70-529-CSHARP.html</em></a>> </p>
<p><a class="a2a_button_twitter" href="http://www.addtoany.com/add_to/twitter?linkurl=http%3A%2F%2Fexamdirectory.com%2Fmcts-70-529-csharp-short-notes.html&amp;linkname=MCTS%2070-529-CSHARP%20Short%20Notes" title="Twitter" rel="nofollow" target="_blank"><img src="http://examdirectory.com/wp-content/plugins/add-to-any/icons/twitter.png" width="16" height="16" alt="Twitter"/></a> <a class="a2a_button_delicious" href="http://www.addtoany.com/add_to/delicious?linkurl=http%3A%2F%2Fexamdirectory.com%2Fmcts-70-529-csharp-short-notes.html&amp;linkname=MCTS%2070-529-CSHARP%20Short%20Notes" title="Delicious" rel="nofollow" target="_blank"><img src="http://examdirectory.com/wp-content/plugins/add-to-any/icons/delicious.png" width="16" height="16" alt="Delicious"/></a> <a class="a2a_button_digg" href="http://www.addtoany.com/add_to/digg?linkurl=http%3A%2F%2Fexamdirectory.com%2Fmcts-70-529-csharp-short-notes.html&amp;linkname=MCTS%2070-529-CSHARP%20Short%20Notes" title="Digg" rel="nofollow" target="_blank"><img src="http://examdirectory.com/wp-content/plugins/add-to-any/icons/digg.png" width="16" height="16" alt="Digg"/></a> <a class="a2a_button_yahoo_mail" href="http://www.addtoany.com/add_to/yahoo_mail?linkurl=http%3A%2F%2Fexamdirectory.com%2Fmcts-70-529-csharp-short-notes.html&amp;linkname=MCTS%2070-529-CSHARP%20Short%20Notes" title="Yahoo Mail" rel="nofollow" target="_blank"><img src="http://examdirectory.com/wp-content/plugins/add-to-any/icons/yahoo.png" width="16" height="16" alt="Yahoo Mail"/></a> <a class="a2a_button_google_bookmarks" href="http://www.addtoany.com/add_to/google_bookmarks?linkurl=http%3A%2F%2Fexamdirectory.com%2Fmcts-70-529-csharp-short-notes.html&amp;linkname=MCTS%2070-529-CSHARP%20Short%20Notes" title="Google Bookmarks" rel="nofollow" target="_blank"><img src="http://examdirectory.com/wp-content/plugins/add-to-any/icons/google.png" width="16" height="16" alt="Google Bookmarks"/></a> <a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fexamdirectory.com%2Fmcts-70-529-csharp-short-notes.html&amp;title=MCTS%2070-529-CSHARP%20Short%20Notes"><img src="http://examdirectory.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://examdirectory.com/mcts-70-529-csharp-short-notes.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Performing drag-and-drop operations in a Windows Forms application</title>
		<link>http://examdirectory.com/performing-drag-and-drop-operations-in-a-windows-forms-application.html</link>
		<comments>http://examdirectory.com/performing-drag-and-drop-operations-in-a-windows-forms-application.html#comments</comments>
		<pubDate>Mon, 09 Nov 2009 06:49:10 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[MCTS]]></category>
		<category><![CDATA[70-526-VB]]></category>
		<category><![CDATA[70-526-VB exam]]></category>
		<category><![CDATA[70-526-VB mock test]]></category>
		<category><![CDATA[70-526-VB notes]]></category>
		<category><![CDATA[70-526-VB practice test]]></category>
		<category><![CDATA[70-526-VB question]]></category>
		<category><![CDATA[70-526-VB study guide]]></category>
		<category><![CDATA[70-526-VB study notes]]></category>
		<category><![CDATA[MCTS.NET 70-526-VB]]></category>
		<category><![CDATA[MCTS.NET exam]]></category>
		<category><![CDATA[VB.NET 2.0 Windows-based Application Development]]></category>

		<guid isPermaLink="false">http://examdirectory.com/performing-drag-and-drop-operations-in-a-windows-forms-application.html</guid>
		<description><![CDATA[In a Windows Forms application, a drag-and-drop functionality refers to the transferring of data with the mouse. It enables a user to drag data such as a text, an image, or other object with the mouse&#8217;s left-button from one control and drop it to another control. This functionality is an event-driven process that occurs when [...]]]></description>
			<content:encoded><![CDATA[<p>In a Windows Forms application, a drag-and-drop functionality refers to the transferring of data with the mouse. It enables a user to drag data such as a text, an image, or other object with the mouse&#8217;s left-button from one control and drop it to another control. This functionality is an event-driven process that occurs when the data is copied from the source control and when the data is dropped onto the target control. The source as well as target control events are involved in implementing the drag-and-drop operations are as follows:</p>
<ul>
<li><strong>Source Control Events:</strong> These events occur when a mouse pointer triggers some action on a source control. The following are the source control events:. To get a glimpse of these PrepKits, you can download its free demo version (which contains 15 free practice questions) from:
<p>Download link: <a href="http://www.ucertify.com/exams/Microsoft/70-526-VB.html">http://www.ucertify.com/exams/Microsoft/70-526-VB.html</a></p>
<ol>
<li><strong>MouseDown Event:</strong> It occurs when the mouse button is pressed and the mouse pointer is over the source control. A method that handles this event calls the <strong>DoDragDrop</strong> method of the source control.</li>
<li><strong>GiveFeedback Event:</strong> It occurs when a drag-and-drop operation is initiated. The appearance of the mouse pointer can be modified by the source of a drag event. In this event, a user can obtain the visual feedback during the operation. This event provides a custom mouse pointer to a user.</li>
<li><strong>QueryContinueDrag Event:</strong> It occurs during a drag-and-drop operation. It is raised when the keyboard or the mouse button state changes during the operation. It also enables the drag source in order to determine whether the drag-and-drop operation is cancelled.</li>
</ol>
</li>
<li><strong>Target Control Events:</strong> These events occur when a mouse pointer triggers some action on a target control. The following are the source control events:
<ol>
<li><strong>DragEnter Event:</strong> It occurs when an object is dragged into the bounds of the target control. It is raised when the mouse cursor is first dragged over the target control during a drag-and-drop operation.</li>
<li><strong>DragOver Event:</strong> It occurs when an object is dragged over the bounds of the target control. It is raised when the mouse cursor is within the bounds of the control.</li>
<li><strong>DragDrop Event:</strong> It occurs when the mouse button is released over the target control and a drag-and-drop operation is completed.</li>
<li><strong>DragLeave Event:</strong> It occurs when the an object is dragged out of the bounds of the target control. It occurs when the current drag-and-drop operation is cancelled.</li>
</ol>
</li>
</ul>
<p><strong>Sequence of a Drag-and-Drop Operation</strong></p>
<p>The following is the general sequence of events that take place in a drag-and-drop operation:</p>
<ol>
<li>The drag-and-drop operation is initiated by calling the <strong>DoDragDrop</strong> method within the <strong>MouseDown</strong> event handler on the source control. The method contains two parameters, namely the <strong>Object</strong> data that specifies the desired data to pass and the <strong>DragDropEffects</strong> data value that specifies a particular drag operation on a control. The method determines under which control the current mouse cursor is located. It then checks whether the valid drop target operation has been performed. In this sequence, a new <strong>DataObject</strong> object is automatically created.</li>
<li>The <strong>GiveFeedback</strong> event is raised when a custom mouse pointer is displayed during the dragging operation. The <strong>QueryContinueDrag</strong> event is raised to determine whether the drag operation should be continued or aborted.</li>
<li>The drop-and-drop operation is allowed when the <strong>AllowDrop</strong> property is set to true in the Properties window at design time. The property can be set to true<!-- neh: true? San: corrected--> programmatically in the <strong>Form_Load </strong>event of a Windows form.</li>
<li>The <strong>DragEnter</strong> event for a target control is raised when the mouse cursor is first dragged over the control. The <strong>DragOver</strong> event takes place when a mouse pointer stays over the bounds of a control.</li>
<li>Finally, the <strong>DragDrop</strong> event is raised when the mouse button is released over a valid target control. In the Windows form, the event handler extracts the appropriate data from the DataObject object. Data is then displayed in the target control.</li>
</ol>
<p><strong>DragDropEffects Enumeration Values</strong></p>
<p>The DragDropEffects enumeration identifies the effects of a drag-and-drop operation in a Windows Forms application. It contains the <strong>FlagsAttribute</strong> attribute that enables a user to perform a bitwise combination of its member values. It is used by the <strong>DragEventArgs</strong>, <strong>GiveFeedbackEventArgs</strong>, and <strong>Control</strong> classes. The following are the member values that can exist in this enumeration:</p>
<table border="1">
<tbody>
<tr>
<td><strong>Member Values</strong></td>
<td><strong>Description</strong></td>
</tr>
<tr>
<td>All</td>
<td>During a drag-and-drop operation data is copied, dragged, and removed from the source control. The data is then scrolled and dropped onto the target control.</td>
</tr>
<tr>
<td>Copy</td>
<td>During a drag operation, data is copied to the target control.</td>
</tr>
<tr>
<td>Link</td>
<td>During the operation, data from the source control is linked to the target control.</td>
</tr>
<tr>
<td>Move</td>
<td>During the operation, data is moved from the source control to the target control.</td>
</tr>
<tr>
<td>None</td>
<td>During a drag-and-drop operation, the target control does not accept the data from the source control.</td>
</tr>
<tr>
<td>Scroll</td>
<td>During a drag-and-drop operation, the scrolling operation is initiated or is currently being performed.</td>
</tr>
</tbody>
</table>
<p><strong>Implementing Drag-and-Drop Operations between Applications</strong></p>
<p>Generally, a drag-and-drop operation is performed within a single Windows Forms application. This operation can also be implemented between two applications.<!-- neh: can u rephrase the sent. We don't write "like". San: rephrased--> The following conditions should be fulfilled in order to enable a drag-and-drop operation between applications:</p>
<ul>
<li>A target control should allow one of the drag effects being specified when the DoDragDrop method is called.</li>
<li>A target control should accept data in the same format that was set when the DoDragDrop method is called.</li>
</ul>
<p><strong>Implementing Drag-and-Drop Operations by using a TreeView Control</strong></p>
<p>The implementation of a drag-and-drop operation in a TreeView control is slightly different from other controls. When a drag operation is initiated on a TreeView node, the <strong>ItemDrag</strong> event is raised. The event passes an instance of <strong>ItemDragEventArgs</strong> to a method that handles this event. The ItemDragEventArgs object contains a reference that is copied to the DataObject object in the DoDragDrop method.</p>
<p>Download link:<a href="http://www.ucertify.com/exams/Microsoft/70-526-VB.html"> http://www.ucertify.com/exams/Microsoft/70-526-VB.html</a>> </p>
<p><a class="a2a_button_twitter" href="http://www.addtoany.com/add_to/twitter?linkurl=http%3A%2F%2Fexamdirectory.com%2Fperforming-drag-and-drop-operations-in-a-windows-forms-application.html&amp;linkname=Performing%20drag-and-drop%20operations%20in%20a%20Windows%20Forms%20application" title="Twitter" rel="nofollow" target="_blank"><img src="http://examdirectory.com/wp-content/plugins/add-to-any/icons/twitter.png" width="16" height="16" alt="Twitter"/></a> <a class="a2a_button_delicious" href="http://www.addtoany.com/add_to/delicious?linkurl=http%3A%2F%2Fexamdirectory.com%2Fperforming-drag-and-drop-operations-in-a-windows-forms-application.html&amp;linkname=Performing%20drag-and-drop%20operations%20in%20a%20Windows%20Forms%20application" title="Delicious" rel="nofollow" target="_blank"><img src="http://examdirectory.com/wp-content/plugins/add-to-any/icons/delicious.png" width="16" height="16" alt="Delicious"/></a> <a class="a2a_button_digg" href="http://www.addtoany.com/add_to/digg?linkurl=http%3A%2F%2Fexamdirectory.com%2Fperforming-drag-and-drop-operations-in-a-windows-forms-application.html&amp;linkname=Performing%20drag-and-drop%20operations%20in%20a%20Windows%20Forms%20application" title="Digg" rel="nofollow" target="_blank"><img src="http://examdirectory.com/wp-content/plugins/add-to-any/icons/digg.png" width="16" height="16" alt="Digg"/></a> <a class="a2a_button_yahoo_mail" href="http://www.addtoany.com/add_to/yahoo_mail?linkurl=http%3A%2F%2Fexamdirectory.com%2Fperforming-drag-and-drop-operations-in-a-windows-forms-application.html&amp;linkname=Performing%20drag-and-drop%20operations%20in%20a%20Windows%20Forms%20application" title="Yahoo Mail" rel="nofollow" target="_blank"><img src="http://examdirectory.com/wp-content/plugins/add-to-any/icons/yahoo.png" width="16" height="16" alt="Yahoo Mail"/></a> <a class="a2a_button_google_bookmarks" href="http://www.addtoany.com/add_to/google_bookmarks?linkurl=http%3A%2F%2Fexamdirectory.com%2Fperforming-drag-and-drop-operations-in-a-windows-forms-application.html&amp;linkname=Performing%20drag-and-drop%20operations%20in%20a%20Windows%20Forms%20application" title="Google Bookmarks" rel="nofollow" target="_blank"><img src="http://examdirectory.com/wp-content/plugins/add-to-any/icons/google.png" width="16" height="16" alt="Google Bookmarks"/></a> <a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fexamdirectory.com%2Fperforming-drag-and-drop-operations-in-a-windows-forms-application.html&amp;title=Performing%20drag-and-drop%20operations%20in%20a%20Windows%20Forms%20application"><img src="http://examdirectory.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://examdirectory.com/performing-drag-and-drop-operations-in-a-windows-forms-application.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Things to practice for Microsoft test 70-528 CSHARP</title>
		<link>http://examdirectory.com/things-to-practice-for-microsoft-test-70-528-csharp.html</link>
		<comments>http://examdirectory.com/things-to-practice-for-microsoft-test-70-528-csharp.html#comments</comments>
		<pubDate>Sat, 10 Oct 2009 09:48:49 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[.NET]]></category>
		<category><![CDATA[MCTS]]></category>
		<category><![CDATA[Things to practice]]></category>
		<category><![CDATA[70-528-CSHARP]]></category>
		<category><![CDATA[70-528-CSHARP exam]]></category>
		<category><![CDATA[70-528-CSHARP mock test]]></category>
		<category><![CDATA[70-528-CSHARP notes]]></category>
		<category><![CDATA[70-528-CSHARP practice test]]></category>
		<category><![CDATA[70-528-CSHARP question]]></category>
		<category><![CDATA[70-528-CSHARP study guide]]></category>
		<category><![CDATA[70-528-CSHARP study notes]]></category>
		<category><![CDATA[C#.NET 2.0 Web-based Application Development]]></category>
		<category><![CDATA[MCTS.NET 70-528-CSHARP]]></category>
		<category><![CDATA[MCTS.NET exam]]></category>

		<guid isPermaLink="false">http://examdirectory.com/things-to-practice-for-microsoft-test-70-528-csharp.html</guid>
		<description><![CDATA[The 70-528 test measures an individual&#8217;s ability to develop and implement ASP.NET Web applications using .NET Framework 2.0. Before taking the 70-528 test, you should practice the following: Create a new Web application and add Web Forms pages to the application. Add Web server controls to a Web Form and configure their properties programmatically. Create [...]]]></description>
			<content:encoded><![CDATA[<p> The <a href="http://www.ucertify.com/exams/Microsoft/70-528-CSHARP.html">70-528</a> test measures an individual&#8217;s ability to develop and implement ASP.NET Web applications using <a href="http://www.ucertify.com/certifications/Microsoft/mcts-net-2-0.html">.NET Framework 2.0</a>. Before taking the <a href="http://www.ucertify.com/exams/Microsoft/70-528-CSHARP.html">70-528</a> test, you should practice the following:</p>
<ol>
<li> Create a new Web application and add Web Forms pages to the application.</li>
<li>Add Web server controls to a Web Form and configure their properties programmatically.</li>
<li>Create event handlers for a page or control at design time.</li>
<li>Manage state of an application by using client-based and server-based state management options.</li>
<p>To analyze the capabilities of the software, you can download a demo version and evaluate it free of cost. For more information, please visit: <a href="http://www.ucertify.com/exams/Microsoft/70-528-CSHARP.html">70-528-C# .NET 2.0 Web-based Application Development</a></p>
<p><span id="more-157"></span></p>
<li>Maintain state of an application by using database technology.</li>
<li>Implement globalization and accessibility.</li>
<li>Use the SiteMap Web server control to display a representation of a Web site&#8217;s navigation structure.</li>
<li>Use validation controls to perform Web Forms validation.</li>
<li>Write an <a href="http://www.ucertify.com/exams/Microsoft/70-528-CSHARP.html">ASP.NET</a> handler to generate images dynamically for display on a Web page.</li>
<li>Configure settings for a Web application in the <a href="http://www.ucertify.com/article/what-is-the-webconfig-file.html">Web.config file</a>.</li>
<li>Manage a Web application&#8217;s configuration by using the Web Site Administration Tool.</li>
<li>Implement cross-page postbacks.</li>
<li>Convert HTML server controls to HTML elements.</li>
<li>Use tabular and hierarchical data source controls to return tabular and hierarchical data respectively.</li>
<li>Display data by using simple, composite, and hierarchical <a href="http://www.ucertify.com/article/what-is-a-data-bound-control.html">data-bound controls</a>.</li>
<li>Configure a connection to a database graphically by using the Connection Wizard, Server Explorer, and the connection class.</li>
<li>Enumerate through instances of Microsoft SQL Server by using the DbProviderFactories.GetFactoryClasses method.</li>
<li>Control connection pooling by configuring ConnectionString values based on database type.</li>
<li>Perform transactions by using the ADO.NET Transaction object.</li>
<li>Retrieve data by using a DataReader object and build SQL commands visually in Server Explorer.</li>
<li>Perform database operations by using a command object.</li>
<li>Store and retrieve <a href="http://www.ucertify.com/article/what-are-large-object-lob-data-types.html">binary large object (BLOB)</a> data types in a database.</li>
<li>Create an instance of the DataSet class programmatically.</li>
<li>Add and navigate a relationship between tables.</li>
<li>Populate a DataSet and update a database by using a<a href="http://www.ucertify.com/article/what-is-the-dbdataadapter-class.html"> DataAdapter</a>.</li>
<li> Manage XML data with the XML Document Object Model</li>
<li>Read and write XML data by using the XmlReader and XmlWriter.</li>
<li>Create a composite Web application control.</li>
<li>Create a custom Web control that inherits from the WebControl class.</li>
<li>Develop a templated <a href="http://www.ucertify.com/article/what-is-a-data-bound-control.html">data-bound control</a>.</li>
<li>Use a Web setup project to deploy a Web application to a target server.</li>
<li>Copy a Web application to a target server by using the Copy Web tool.</li>
<li>Precompile a Web application by using the Publish Web utility.</li>
<li>Troubleshoot a Web application by using ASP.NET tracing.</li>
<li>Optimize performance by using the ASP.NET Cache object.</li>
<li>Implement a consistent page design by using master pages.</li>
<li>Customize a Web page by using themes and user profiles.</li>
<li>Implement Web Parts in a Web application.</li>
<li>Establish a user&#8217;s identity by using forms authentication.</li>
<li>Implement Microsoft Windows authentication and impersonation.</li>
<li>Use login controls to control access to a Web application.</li>
<li>Create a mobile Web application project.</li>
<li>Use device-specific rendering to display controls on a variety of devices.</li>
<li>Use adaptive rendering to modify the appearance of Web server controls.</li>
</ol>
<p>Check out <a href="http://www.ucertify.com/exams/Microsoft/70-528-CSHARP.html">70-528-CSHARP, .NET 2.0 Web-based Application Development </a>certification PrepKit> </p>
<p><a class="a2a_button_twitter" href="http://www.addtoany.com/add_to/twitter?linkurl=http%3A%2F%2Fexamdirectory.com%2Fthings-to-practice-for-microsoft-test-70-528-csharp.html&amp;linkname=Things%20to%20practice%20for%20Microsoft%20test%2070-528%20CSHARP" title="Twitter" rel="nofollow" target="_blank"><img src="http://examdirectory.com/wp-content/plugins/add-to-any/icons/twitter.png" width="16" height="16" alt="Twitter"/></a> <a class="a2a_button_delicious" href="http://www.addtoany.com/add_to/delicious?linkurl=http%3A%2F%2Fexamdirectory.com%2Fthings-to-practice-for-microsoft-test-70-528-csharp.html&amp;linkname=Things%20to%20practice%20for%20Microsoft%20test%2070-528%20CSHARP" title="Delicious" rel="nofollow" target="_blank"><img src="http://examdirectory.com/wp-content/plugins/add-to-any/icons/delicious.png" width="16" height="16" alt="Delicious"/></a> <a class="a2a_button_digg" href="http://www.addtoany.com/add_to/digg?linkurl=http%3A%2F%2Fexamdirectory.com%2Fthings-to-practice-for-microsoft-test-70-528-csharp.html&amp;linkname=Things%20to%20practice%20for%20Microsoft%20test%2070-528%20CSHARP" title="Digg" rel="nofollow" target="_blank"><img src="http://examdirectory.com/wp-content/plugins/add-to-any/icons/digg.png" width="16" height="16" alt="Digg"/></a> <a class="a2a_button_yahoo_mail" href="http://www.addtoany.com/add_to/yahoo_mail?linkurl=http%3A%2F%2Fexamdirectory.com%2Fthings-to-practice-for-microsoft-test-70-528-csharp.html&amp;linkname=Things%20to%20practice%20for%20Microsoft%20test%2070-528%20CSHARP" title="Yahoo Mail" rel="nofollow" target="_blank"><img src="http://examdirectory.com/wp-content/plugins/add-to-any/icons/yahoo.png" width="16" height="16" alt="Yahoo Mail"/></a> <a class="a2a_button_google_bookmarks" href="http://www.addtoany.com/add_to/google_bookmarks?linkurl=http%3A%2F%2Fexamdirectory.com%2Fthings-to-practice-for-microsoft-test-70-528-csharp.html&amp;linkname=Things%20to%20practice%20for%20Microsoft%20test%2070-528%20CSHARP" title="Google Bookmarks" rel="nofollow" target="_blank"><img src="http://examdirectory.com/wp-content/plugins/add-to-any/icons/google.png" width="16" height="16" alt="Google Bookmarks"/></a> <a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fexamdirectory.com%2Fthings-to-practice-for-microsoft-test-70-528-csharp.html&amp;title=Things%20to%20practice%20for%20Microsoft%20test%2070-528%20CSHARP"><img src="http://examdirectory.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://examdirectory.com/things-to-practice-for-microsoft-test-70-528-csharp.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>MCTS: .NET Framework 2.0 Web Applications</title>
		<link>http://examdirectory.com/mcts.html</link>
		<comments>http://examdirectory.com/mcts.html#comments</comments>
		<pubDate>Sun, 09 Aug 2009 18:23:28 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[.NET]]></category>
		<category><![CDATA[MCPD]]></category>
		<category><![CDATA[MCTS]]></category>
		<category><![CDATA[.NET 2.0]]></category>
		<category><![CDATA[.NET 3.5]]></category>
		<category><![CDATA[.NET Web application]]></category>
		<category><![CDATA[70-528]]></category>
		<category><![CDATA[70-536]]></category>
		<category><![CDATA[ASP.NET]]></category>

		<guid isPermaLink="false">http://examdirectory.com/?p=130</guid>
		<description><![CDATA[About MCTS: .NET 2.0 Web Applications Certification Microsoft&#8217;s MCTS: .NET Framework 2.0 Web Applications certification has been designed for professionals who have a thorough knowledge and expertise in .NET Framework 2.0. These professionals have in-depth knowledge in Web application technology and data access in Web applications. This certification is a pre-requisite for the more advanced [...]]]></description>
			<content:encoded><![CDATA[<p><strong>About MCTS: .NET 2.0 Web Applications Certification</strong></p>
<p>Microsoft&#8217;s MCTS: .NET Framework 2.0 Web Applications certification has been designed for professionals who have a thorough knowledge and expertise in .NET Framework 2.0. These professionals have in-depth knowledge in Web application technology and data access in Web applications. This certification is a pre-requisite for the more advanced Microsoft Certified Professional Developer (MCPD) certification.</p>
<p><strong>MCTS: .NET 2.0 Web Applications certification core exams</strong></p>
<ul>
<li><a href=" http://www.ucertify.com/exams/Microsoft/70-528-VB.html ">70-528: VB.NET 2.0 Web-based Application Development</a></li>
<li><a href=" http://www.ucertify.com/exams/Microsoft/70-536-VB.html ">70-536: VB.NET 2.0 Application Development </a></li>
<p>OR</p>
<li><a href=" http://www.ucertify.com/exams/Microsoft/70-528-CSHARP.html ">70-528: C#.NET 2.0 Web-based Application Development </a></li>
<li><a href="http://www.ucertify.com/exams/Microsoft/70-536-CSHARP.html ">70-536: C#.NET 2.0 Application Development </a></li>
</ul>
<p><strong>What is .NET 2.0 Application Development (70-536) exam?</strong></p>
<p>Microsoft&#8217;s 70-536 is designed to test your knowledge of the Microsoft .NET Framework 2.0 fundamentals. The 70-536 exam measures your skills that include Developing applications, Implementing service processes, threading, and application domains, embedding configuration, diagnostic, management, and installation features into a .NET Framework application, etc. After passing this test along with another core exam, you will become an MCTS: .NET 2.0 Web Applications, MCTS: .NET 2.0 Windows Applications or MCTS: .NET 2.0 Distributed Applications.</p>
<p><strong>What is .NET 2.0 Web Application Development (70-528) exam?</strong></p>
<p>Microsoft&#8217;s 70-528 measures your ability to develop and implement Web-based applications using Visual Basic language on the Microsoft .NET Framework. The exam proves that you have working knowledge of Microsoft Visual Studio 2005 and ASP.NET 2.0. You should pass this test along with exam 70-536-VB, for completing the requirements for the MCTS: .NET 2.0 Web Applications certification.</p>
<p><strong>Code languages</strong></p>
<p>When the exam begins, you can choose the programming language in which the code segments will appear. The available code languages for this exam are:</p>
<ul>
<li>Microsoft Visual Basic 2005</li>
<li>Microsoft Visual C# 2005</li>
<li>Microsoft Visual C++ 2005</li>
</ul>
<p><strong>Benefits of MCTS: .NET 2.0 Web Applications certification</strong></p>
<ul>
<li>Microsoft products are most widely used today and the MCTS: .NET 2.0 Web Applications certification proves expertise on the Microsoft products and technologies.</li>
<li>Professionals holding the MCTS: .NET 2.0 Web Applications certification are preferred by the employers and they also get preference in promotions.</li>
<li>MCTS: .NET 2.0 Web Applications certification is helpful for professionals who have entry-level certifications in related technologies to upgrade their credentials and get recognition from the industry.</li>
<li>MCTS: .NET 2.0 Web Applications Certified professional can find appropriate job easily and get paid more.</li>
</ul>
<p><strong>Job Roles for MCTS certified professionals</strong></p>
<p>The job roles for MCTS certified professionals typically include:</p>
<ul>
<li>Web developers</li>
<li>Windows developers</li>
<li>Enterprise software developers</li>
</ul>
<p><strong>How uCertify helps you get MCTS: .NET 2.0 Web Applications certified?</strong></p>
<p>We provide quality training products to help you pass the MCTS: certification exam in the first attempt. The MCTS: .NET 2.0 Web Applications certification preparation kit (PrepKit) consist of full-length practice tests, containing realistic questions and detailed study notes along with technical articles and step-by-step, fully illustrated &#8216;How tos&#8217; to impart in-depth knowledge of the subject. In addition to the predefined simulated tests, there is also an option for customized and adaptive testing to help you prepare efficiently for the real exams. At the end of each exam, detailed performance reports shows the status of preparedness and help you to prepare accordingly. In other words, we provide you everything you need to become MCTS: .NET 2.0 Web Applications certified.</p>
<p>For More Information, please visit <a title="http://www.ucertify.com/" href="http://www.ucertify.com/" target="_self"><strong>http://www.ucertify.com/</strong></a>> </p>
<p><a class="a2a_button_twitter" href="http://www.addtoany.com/add_to/twitter?linkurl=http%3A%2F%2Fexamdirectory.com%2Fmcts.html&amp;linkname=MCTS%3A%20.NET%20Framework%202.0%20Web%20Applications" title="Twitter" rel="nofollow" target="_blank"><img src="http://examdirectory.com/wp-content/plugins/add-to-any/icons/twitter.png" width="16" height="16" alt="Twitter"/></a> <a class="a2a_button_delicious" href="http://www.addtoany.com/add_to/delicious?linkurl=http%3A%2F%2Fexamdirectory.com%2Fmcts.html&amp;linkname=MCTS%3A%20.NET%20Framework%202.0%20Web%20Applications" title="Delicious" rel="nofollow" target="_blank"><img src="http://examdirectory.com/wp-content/plugins/add-to-any/icons/delicious.png" width="16" height="16" alt="Delicious"/></a> <a class="a2a_button_digg" href="http://www.addtoany.com/add_to/digg?linkurl=http%3A%2F%2Fexamdirectory.com%2Fmcts.html&amp;linkname=MCTS%3A%20.NET%20Framework%202.0%20Web%20Applications" title="Digg" rel="nofollow" target="_blank"><img src="http://examdirectory.com/wp-content/plugins/add-to-any/icons/digg.png" width="16" height="16" alt="Digg"/></a> <a class="a2a_button_yahoo_mail" href="http://www.addtoany.com/add_to/yahoo_mail?linkurl=http%3A%2F%2Fexamdirectory.com%2Fmcts.html&amp;linkname=MCTS%3A%20.NET%20Framework%202.0%20Web%20Applications" title="Yahoo Mail" rel="nofollow" target="_blank"><img src="http://examdirectory.com/wp-content/plugins/add-to-any/icons/yahoo.png" width="16" height="16" alt="Yahoo Mail"/></a> <a class="a2a_button_google_bookmarks" href="http://www.addtoany.com/add_to/google_bookmarks?linkurl=http%3A%2F%2Fexamdirectory.com%2Fmcts.html&amp;linkname=MCTS%3A%20.NET%20Framework%202.0%20Web%20Applications" title="Google Bookmarks" rel="nofollow" target="_blank"><img src="http://examdirectory.com/wp-content/plugins/add-to-any/icons/google.png" width="16" height="16" alt="Google Bookmarks"/></a> <a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fexamdirectory.com%2Fmcts.html&amp;title=MCTS%3A%20.NET%20Framework%202.0%20Web%20Applications"><img src="http://examdirectory.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://examdirectory.com/mcts.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>.NET Test Taking Tips</title>
		<link>http://examdirectory.com/net-test-taking-tips.html</link>
		<comments>http://examdirectory.com/net-test-taking-tips.html#comments</comments>
		<pubDate>Sun, 09 Aug 2009 09:47:10 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[.NET]]></category>
		<category><![CDATA[MCAD]]></category>
		<category><![CDATA[MCPD]]></category>
		<category><![CDATA[MCSD]]></category>
		<category><![CDATA[MCTS]]></category>

		<guid isPermaLink="false">http://examdirectory.com/?p=137</guid>
		<description><![CDATA[Introduction Get the inside on how to crack computer based certification tests from those who have years of experience developing computer assisted learning software&#8230; Preparing for the Exam These certification exams check your knowledge and experience on their subject. So the best way to get through is to learn and master each and every aspect [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Introduction</strong></p>
<p>Get the inside on how to crack computer based certification tests from those who have years of experience developing computer assisted learning software&#8230;</p>
<p><strong>Preparing for the Exam</strong></p>
<p>These certification exams check your knowledge and experience on their subject. So the best way to get through is to learn and master each and every aspect of the product/subject and get hands on experience on it. You should follow these steps to prepare for any such certification exam:</p>
<ul>
<li>Identifying the exam objectives: for that you need to go through the product vendors site because these objectives keep on changing from time to time.</li>
<li>Study the suggested reading material and make sure you understand everything and also perform the tasks they suggest.</li>
<li>If you feel the need, you can also go for instructor-led or online training courses.</li>
<li>Nothing beats a test better than taking it beforehand. Buy good test simulation software and test your skills on it.</li>
<li>Register for the test at least two weeks before, this helps in building the tempo.</li>
</ul>
<p><strong>Before the test</strong></p>
<ul>
<li>Be confident and relaxed.</li>
<li>Sleep well the night before the exam.</li>
<li>Arrive early at the test center with at least two forms of identification.</li>
<li>If you need a quick drink of water or a visit to the restroom, take time before the exam, because once started the exam will not be paused for these needs.</li>
</ul>
<p><strong>At the Testing center</strong></p>
<ul>
<li>You will be asked to present your ID and sign the log as you arrive at the testing center.</li>
<li>The center in-charge will explain the rules that you have to follow during the exam and will ask you to sign a paper stating that you understand the rules of the exams and will follow them.</li>
<li>You are not allowed to take in any sort of written or printed material with you to the exam. You will be provided with the scratch paper, pencils and anything you need for the exam.</li>
<li>Before the test you will have an opportunity to take a practice exam that is not related with the subject but will give you an orientation of the exam process.</li>
<li>If you have any problem regarding the testing process you can ask the test administrator.</li>
</ul>
<p><strong>Test Taking Approach</strong></p>
<ul>
<li>As you start the test be calm and read the question and ALL its options carefully even if you think you know the answer.</li>
<li>If you are taking an adaptive test REMEMBER you will not get a chance to change your answer once you move on, so be sure before you mark the answer. In a linear test you will have a chance to change the answer.</li>
<li>If you know the answer, answer the question and move on, if you are not sure still mark your best guess and move on. If it is a linear test, you should also book mark the question so that you can return to it afterwards.</li>
<li>Sometimes related questions also provide answer for the questions you were unsure of, so it is always a good idea to book mark the question.</li>
<li>If you are unsure of the correct answer, read all options and eliminate options that are obviously wrong. Then choose from the options left.</li>
<li>Once you finished answering all the questions, check the time left. If you have time, review the book marked questions.</li>
<li>Never leave a question unanswered. All certification tests that we know are timed and count unanswered questions as wrong. If you don&#8217;t have time, take a blind guess.</li>
</ul>
<p><strong>You might find these useful</strong></p>
<p><a title="http://www.ucertify.com/about/contacts.html" href="http://www.ucertify.com/about/contacts.html"><strong>Useful contacts</strong></a>> </p>
<p><a class="a2a_button_twitter" href="http://www.addtoany.com/add_to/twitter?linkurl=http%3A%2F%2Fexamdirectory.com%2Fnet-test-taking-tips.html&amp;linkname=.NET%20Test%20Taking%20Tips" title="Twitter" rel="nofollow" target="_blank"><img src="http://examdirectory.com/wp-content/plugins/add-to-any/icons/twitter.png" width="16" height="16" alt="Twitter"/></a> <a class="a2a_button_delicious" href="http://www.addtoany.com/add_to/delicious?linkurl=http%3A%2F%2Fexamdirectory.com%2Fnet-test-taking-tips.html&amp;linkname=.NET%20Test%20Taking%20Tips" title="Delicious" rel="nofollow" target="_blank"><img src="http://examdirectory.com/wp-content/plugins/add-to-any/icons/delicious.png" width="16" height="16" alt="Delicious"/></a> <a class="a2a_button_digg" href="http://www.addtoany.com/add_to/digg?linkurl=http%3A%2F%2Fexamdirectory.com%2Fnet-test-taking-tips.html&amp;linkname=.NET%20Test%20Taking%20Tips" title="Digg" rel="nofollow" target="_blank"><img src="http://examdirectory.com/wp-content/plugins/add-to-any/icons/digg.png" width="16" height="16" alt="Digg"/></a> <a class="a2a_button_yahoo_mail" href="http://www.addtoany.com/add_to/yahoo_mail?linkurl=http%3A%2F%2Fexamdirectory.com%2Fnet-test-taking-tips.html&amp;linkname=.NET%20Test%20Taking%20Tips" title="Yahoo Mail" rel="nofollow" target="_blank"><img src="http://examdirectory.com/wp-content/plugins/add-to-any/icons/yahoo.png" width="16" height="16" alt="Yahoo Mail"/></a> <a class="a2a_button_google_bookmarks" href="http://www.addtoany.com/add_to/google_bookmarks?linkurl=http%3A%2F%2Fexamdirectory.com%2Fnet-test-taking-tips.html&amp;linkname=.NET%20Test%20Taking%20Tips" title="Google Bookmarks" rel="nofollow" target="_blank"><img src="http://examdirectory.com/wp-content/plugins/add-to-any/icons/google.png" width="16" height="16" alt="Google Bookmarks"/></a> <a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fexamdirectory.com%2Fnet-test-taking-tips.html&amp;title=.NET%20Test%20Taking%20Tips"><img src="http://examdirectory.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://examdirectory.com/net-test-taking-tips.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>MCTS: .NET Framework 2.0 Windows Applications</title>
		<link>http://examdirectory.com/mcts-net-framework-20-windows-applications.html</link>
		<comments>http://examdirectory.com/mcts-net-framework-20-windows-applications.html#comments</comments>
		<pubDate>Sun, 09 Aug 2009 08:36:50 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[.NET]]></category>
		<category><![CDATA[MCPD]]></category>
		<category><![CDATA[MCTS]]></category>
		<category><![CDATA[70-526-CSHARP]]></category>
		<category><![CDATA[70-526-CSHARP exam]]></category>
		<category><![CDATA[70-526-CSHARP mock test]]></category>
		<category><![CDATA[70-526-CSHARP notes]]></category>
		<category><![CDATA[70-526-CSHARP practice test]]></category>
		<category><![CDATA[70-526-CSHARP question]]></category>
		<category><![CDATA[70-526-CSHARP study guide]]></category>
		<category><![CDATA[70-526-CSHARP study notes]]></category>
		<category><![CDATA[C#.NET 2.0 Windows-based Application Development]]></category>
		<category><![CDATA[MCTS.NET 70-526-CSHARP]]></category>
		<category><![CDATA[MCTS.NET exam]]></category>

		<guid isPermaLink="false">http://examdirectory.com/?p=133</guid>
		<description><![CDATA[About MCTS: .NET 2.0 Windows Applications Certification Microsoftï¿½s MCTS: .NET Framework 2.0 Windows Applications has been designed for professionals who have a thorough knowledge and expertise in .NET Framework 2.0. These professionals have in-depth knowledge in Windows Forms technology and data access in Microsoft Windows applications. This certification is a pre-requisite for the more advanced [...]]]></description>
			<content:encoded><![CDATA[<p><strong>About MCTS: .NET 2.0 Windows Applications Certification</strong></p>
<p>Microsoftï¿½s MCTS: .NET Framework 2.0 Windows Applications has been designed for professionals who have a thorough knowledge and expertise in .NET Framework 2.0. These professionals have in-depth knowledge in Windows Forms technology and data access in Microsoft Windows applications. This certification is a pre-requisite for the more advanced Microsoft Certified Professional Developer (MCPD) certification. For the current MCAD or MCSD .NET certified professionals, this certification is not required to upgrade to MCPD as they can take the upgrade exam (s) to achieve the MCPD status.</p>
<p><strong>MCTS: .NET 2.0 Windows Applications certification core exams</strong></p>
<ul>
<li><a href="http://www.ucertify.com/exams/Microsoft/70-526-VB.html">70-526: VB.NET 2.0 Windows-based Application Development </a></li>
<li><a href=" http://www.ucertify.com/exams/Microsoft/70-536-VB.html ">70-536: VB.NET 2.0 Application Development </a></li>
<p>OR</p>
<li><a href="http://www.ucertify.com/exams/Microsoft/70-526-CSHARP.html">70-526: C#.NET 2.0 Windows-based Application Development </a></li>
<li><a href=" http://www.ucertify.com/exams/Microsoft/70-536-CSHARP.html ">70-536: C#.NET 2.0 Application Development </a></li>
</ul>
<p><strong>What is .NET 2.0 Application Development(70-536) exam?<br />
</strong><br />
Microsoft&#8217;s 70-536 is designed to test your knowledge of the Microsoft .NET Framework 2.0 fundamentals. The 70-536 exam measures your skills that include Developing applications, Implementing service processes, threading, and application domains, embedding configuration, diagnostic, management, and installation features into a .NET Framework application, etc. After passing this test along with another core exam, you will become an MCTS: .NET 2.0 Windows Applications, MCTS: .NET 2.0 Windows Applications or MCTS: .NET 2.0 Distributed Applications.</p>
<p><strong>What is .NET 2.0 Windows Application Development(70-526) exam?</strong></p>
<p>Microsoft&#8217;s 70-526 measures your ability to develop and implement Windows-based applications using Visual Basic language on the Microsoft .NET Framework. The exam proves that you have working knowledge of Microsoft Visual Studio 2005 and ASP.NET 2.0. You should pass this test along with exam 70-536-VB, for completing the requirements for the MCTS: .NET 2.0 Windows Applications certification.</p>
<p><strong>Code languages</strong></p>
<p>When the exam begins, you can choose the programming language in which the code segments will appear. The available code languages for this exam are as follows:</p>
<ul>
<li>Microsoft Visual Basic 2005</li>
<li>Microsoft Visual C# 2005</li>
</ul>
<p><strong>Benefits of MCTS: .NET 2.0 Windows Applications certification</strong></p>
<ul>
<li>Microsoft products are most widely used today and the MCTS: .NET 2.0 Windows Applications certification proves expertise on the Microsoft products and technologies.</li>
<li>Professionals holding the MCTS: .NET 2.0 Windows Applications certification enhances employment opportunities for programmers.</li>
<li>MCTS: .NET 2.0 Windows Applications certification is helpful for professionals who have entry-level certifications in related technologies to upgrade their credentials and get recognition from the industry.</li>
<li>MCTS: .NET 2.0 Windows Applications Certified professional get special offers and discount on Microsoft products and other selected products from Microsoft.</li>
</ul>
<p><strong>Job Roles for MCTS certified professionals</strong></p>
<p>The job roles for MCTS certified professionals typically include:</p>
<ul>
<li>Web developers</li>
<li>Windows developers</li>
<li>Enterprise software developers</li>
</ul>
<p><strong>How uCertify helps you get MCTS: .NET 2.0 Windows Applications certified?</strong></p>
<p>The uCertify MCTS: .NET 2.0 Windows Applications certification preparation kits (PrepKits) provide a comprehensive preparation package fulfilling each and every objective for the exams. The tests come with challenging practice questions that reflect the format, topics and difficulty of the real exams. They also include step-by-step: &#8220;How Tos&#8221;, technical articles, quiz and fully customizable tests with in-depth answer explanations to help you learn practical skills. In other words, we provide you everything you need to become MCTS: .NET 2.0 Windows Applications certified.</p>
<p>For More Information, please visit <a title="http://www.ucertify.com/" href="http://www.ucertify.com/" target="_self"><strong>http://www.ucertify.com/</strong></a>> </p>
<p><a class="a2a_button_twitter" href="http://www.addtoany.com/add_to/twitter?linkurl=http%3A%2F%2Fexamdirectory.com%2Fmcts-net-framework-20-windows-applications.html&amp;linkname=MCTS%3A%20.NET%20Framework%202.0%20Windows%20Applications" title="Twitter" rel="nofollow" target="_blank"><img src="http://examdirectory.com/wp-content/plugins/add-to-any/icons/twitter.png" width="16" height="16" alt="Twitter"/></a> <a class="a2a_button_delicious" href="http://www.addtoany.com/add_to/delicious?linkurl=http%3A%2F%2Fexamdirectory.com%2Fmcts-net-framework-20-windows-applications.html&amp;linkname=MCTS%3A%20.NET%20Framework%202.0%20Windows%20Applications" title="Delicious" rel="nofollow" target="_blank"><img src="http://examdirectory.com/wp-content/plugins/add-to-any/icons/delicious.png" width="16" height="16" alt="Delicious"/></a> <a class="a2a_button_digg" href="http://www.addtoany.com/add_to/digg?linkurl=http%3A%2F%2Fexamdirectory.com%2Fmcts-net-framework-20-windows-applications.html&amp;linkname=MCTS%3A%20.NET%20Framework%202.0%20Windows%20Applications" title="Digg" rel="nofollow" target="_blank"><img src="http://examdirectory.com/wp-content/plugins/add-to-any/icons/digg.png" width="16" height="16" alt="Digg"/></a> <a class="a2a_button_yahoo_mail" href="http://www.addtoany.com/add_to/yahoo_mail?linkurl=http%3A%2F%2Fexamdirectory.com%2Fmcts-net-framework-20-windows-applications.html&amp;linkname=MCTS%3A%20.NET%20Framework%202.0%20Windows%20Applications" title="Yahoo Mail" rel="nofollow" target="_blank"><img src="http://examdirectory.com/wp-content/plugins/add-to-any/icons/yahoo.png" width="16" height="16" alt="Yahoo Mail"/></a> <a class="a2a_button_google_bookmarks" href="http://www.addtoany.com/add_to/google_bookmarks?linkurl=http%3A%2F%2Fexamdirectory.com%2Fmcts-net-framework-20-windows-applications.html&amp;linkname=MCTS%3A%20.NET%20Framework%202.0%20Windows%20Applications" title="Google Bookmarks" rel="nofollow" target="_blank"><img src="http://examdirectory.com/wp-content/plugins/add-to-any/icons/google.png" width="16" height="16" alt="Google Bookmarks"/></a> <a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fexamdirectory.com%2Fmcts-net-framework-20-windows-applications.html&amp;title=MCTS%3A%20.NET%20Framework%202.0%20Windows%20Applications"><img src="http://examdirectory.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://examdirectory.com/mcts-net-framework-20-windows-applications.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Current Generation of Certifications</title>
		<link>http://examdirectory.com/current-generation-of-certifications.html</link>
		<comments>http://examdirectory.com/current-generation-of-certifications.html#comments</comments>
		<pubDate>Sat, 08 Aug 2009 15:16:08 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[.NET]]></category>
		<category><![CDATA[70-270]]></category>
		<category><![CDATA[70-502]]></category>
		<category><![CDATA[70-536]]></category>
		<category><![CDATA[70-562-C#]]></category>
		<category><![CDATA[Everything you want to know]]></category>
		<category><![CDATA[MCAD]]></category>
		<category><![CDATA[MCITP]]></category>
		<category><![CDATA[MCITP Certification]]></category>
		<category><![CDATA[MCPD]]></category>
		<category><![CDATA[MCSD]]></category>
		<category><![CDATA[MCTS]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[Skills Require]]></category>
		<category><![CDATA[Things to practice]]></category>
		<category><![CDATA[Windows Vista]]></category>
		<category><![CDATA[.NET Framework 3.5 ASP.NET Applications]]></category>
		<category><![CDATA[.NET Framework 3.5 Web Applications]]></category>
		<category><![CDATA[70-526]]></category>
		<category><![CDATA[70-529]]></category>
		<category><![CDATA[70-547]]></category>
		<category><![CDATA[70-549-C#]]></category>
		<category><![CDATA[70-549-CSHARP study guide]]></category>
		<category><![CDATA[70-562]]></category>
		<category><![CDATA[70-562-CSHARP]]></category>
		<category><![CDATA[70-562-CSHARP exam]]></category>
		<category><![CDATA[70-562-CSHARP mock test]]></category>
		<category><![CDATA[70-562-CSHARP practice test]]></category>
		<category><![CDATA[70-562-CSHARP question]]></category>
		<category><![CDATA[70-562-CSHARP study guide]]></category>
		<category><![CDATA[70-562-CSHARP study notes]]></category>
		<category><![CDATA[C#.NET 3.5 ASP.NET Application Development]]></category>
		<category><![CDATA[certification]]></category>
		<category><![CDATA[certification practice test]]></category>
		<category><![CDATA[certification requirements]]></category>
		<category><![CDATA[certification sample test]]></category>
		<category><![CDATA[certification study guide]]></category>
		<category><![CDATA[CSHARP.NET 3.5 ASP.NET Application Development]]></category>
		<category><![CDATA[CSHARP.NET ASP.NET Application Development]]></category>
		<category><![CDATA[MCPD.NET]]></category>
		<category><![CDATA[MCSE certification exam]]></category>
		<category><![CDATA[MCSE exam]]></category>
		<category><![CDATA[MCTS.NET]]></category>
		<category><![CDATA[MCTS.NET exam]]></category>
		<category><![CDATA[questions]]></category>
		<category><![CDATA[test]]></category>

		<guid isPermaLink="false">http://examdirectory.com/?p=152</guid>
		<description><![CDATA[Microsoft has released a new three-tiered certification hierarchy. It consists of three series and four credentials that introduce an entry-level Technology Series composed of the &#8220;Technology Specialist&#8221; credential, a Professional Series composed of the &#8220;IT Professional&#8221; and &#8220;Professional Developer&#8221; credentials, and the Master Series composed of the &#8220;Master&#8221; credential. There also exists a new Architect [...]]]></description>
			<content:encoded><![CDATA[<p>Microsoft has released a new three-tiered certification hierarchy. It consists of three series and four credentials that introduce an entry-level Technology Series composed of the &#8220;Technology Specialist&#8221; credential, a Professional Series composed of the &#8220;IT Professional&#8221; and &#8220;Professional Developer&#8221; credentials, and the Master Series composed of the &#8220;Master&#8221; credential. There also exists a new Architect Series composed of the &#8220;Microsoft Certified Architect&#8221; program, which consists of a Review Board interview.</p>
<h3>Technology Series (MCTS)</h3>
<p>The Technology Specialist certifications enable professionals to target specific technologies, and are generally the first step toward the Professional-level certifications. There are currently 20 MCTS certifications, which can be roughly grouped into the following specializations, each requiring certain examinations to be passed:</p>
<p><strong>Office Specializations</strong></p>
<p><a href="http://www.microsoft.com/learning/mcp/mcts/project2007/pm/">Managing Projects with Microsoft Office Project 2007</a></p>
<ul>
<li>Exam 70-632: Microsoft Office Project 2007, Managing Projects</li>
</ul>
<p><a href="http://www.microsoft.com/learning/mcp/mcts/projectserver2007/pm/">Enterprise Project Management with Microsoft Office Project Server 2007</a></p>
<ul>
<li>Exam 70-633: Microsoft Office Project Server 2007, Managing Projects</li>
</ul>
<p><a href="http://www.microsoft.com/learning/en/us/exams/70-557.mspx">Forefront Client and Server, Configuration</a></p>
<ul>
<li>Exam 70-557: Microsoft Forefront Client and Server, Configuration</li>
</ul>
<p><a href="http://www.microsoft.com/learning/mcp/mcts/spserver/config/">Office SharePoint Server 2007, Configuration</a></p>
<ul>
<li>Exam 70-630: Microsoft Office SharePoint Server 2007, Configuring</li>
</ul>
<p><a href="http://www.microsoft.com/learning/mcp/mcts/spserver/appdev/">Office SharePoint Server 2007, Application Development</a></p>
<ul>
<li>Exam 70-542: Microsoft Office SharePoint Server 2007 &#8211; Application Development</li>
</ul>
<p><strong>.NET Framework Specializations</strong></p>
<p><a href="http://www.microsoft.com/learning/mcp/mcts/webapps/">.NET Framework 2.0 Web Applications</a></p>
<ul>
<li>Exam 70-528: Microsoft .NET Framework 2.0 &#8211; Web-Based Client Development</li>
<li>Exam 70-536: Microsoft .NET Framework 2.0 &#8211; Application Development Foundation</li>
</ul>
<p><a href="http://www.microsoft.com/learning/mcp/mcts/winapps/">.NET Framework 2.0 Windows Applications</a></p>
<ul>
<li>Exam 70-526: Microsoft .NET Framework 2.0 &#8211; Windows-Based Client Development</li>
<li>Exam 70-536: Microsoft .NET Framework 2.0 &#8211; Application Development Foundation</li>
</ul>
<p><a href="http://www.microsoft.com/learning/mcp/mcts/distapps/">.NET Framework 2.0 Distributed Applications</a></p>
<ul>
<li>Exam 70-529: Microsoft .NET Framework 2.0 &#8211; Distributed Application Development</li>
<li>Exam 70-536: Microsoft .NET Framework 2.0 &#8211; Application Development Foundation</li>
</ul>
<p><strong>SQL Server Specializations</strong><span id="more-152"></span></p>
<p><a href="http://www.microsoft.com/learning/mcp/mcts/sql/">SQL Server 2005</a></p>
<ul>
<li>Exam 70-431: Microsoft SQL Server 2005 &#8211; Implementation and Maintenance</li>
</ul>
<p><a href="http://www.microsoft.com/learning/mcp/mcts/bi/">SQL Server 2005 Business Intelligence</a></p>
<ul>
<li>Exam 70-445: Microsoft SQL Server 2005 Business Intelligence &#8211; Implementation and Maintenance</li>
</ul>
<p><strong>Business Intelligence Specializations</strong></p>
<p><a href="http://www.microsoft.com/learning/mcp/mcts/biztalk/">BizTalk Server 2006</a></p>
<ul>
<li>Exam 70-235: Developing Business Process and Integration Solutions Using Microsoft BizTalk Server</li>
</ul>
<p><a href="http://www.microsoft.com/learning/mcp/mcts/livecomm/">Live Communications Server 2005</a></p>
<ul>
<li>Exam 70-262: Office Live Communications Server 2005-Implementing, Managing, and Troubleshooting</li>
</ul>
<p><a href="http://www.microsoft.com/learning/mcp/mcts/exchangeconfig/">Microsoft Exchange Server 2007 Configuration</a></p>
<ul>
<li>Exam 70-236: Exchange Server 2007, Configuring</li>
</ul>
<p><strong>Windows Specializations</strong></p>
<p><a href="http://www.microsoft.com/learning/mcp/mcts/mobility/">Windows Mobile 5.0 Applications</a></p>
<ul>
<li>Exam 70-540: Microsoft Windows Mobile 5.0 &#8211; Application Development</li>
</ul>
<p><a href="http://www.microsoft.com/learning/mcp/mcts/mobility/implement/">Windows Mobile 5.0, Implementing and Managing</a></p>
<ul>
<li>Exam 70-500: Microsoft Windows Mobile 5.0, Implementing and Managing</li>
</ul>
<p><a href="http://www.microsoft.com/learning/mcp/mcts/spservices/appdev/">Windows SharePoint Services 3.0, Application Development</a></p>
<ul>
<li>Exam 70-541: Microsoft Windows SharePoint Services 3.0 &#8211; Application Development</li>
</ul>
<p><a href="http://www.microsoft.com/learning/mcp/mcts/spservices/config/">Windows SharePoint Services 3.0, Configuration</a></p>
<ul>
<li>Exam 70-631: Microsoft Windows SharePoint Services 3.0, Configuring</li>
</ul>
<p><a href="http://www.microsoft.com/learning/mcp/mcts/win2003/config/">Windows Server 2003 Hosted Environments, Configuration and Management</a></p>
<ul>
<li>Exam 70-501: Microsoft Windows Server 2003 Hosted Environments, Configuring and Managing</li>
</ul>
<p><a href="http://www.microsoft.com/learning/mcp/mcts/vistaoffice/">Windows Vista and 2007 Microsoft Office System Desktops, Deploying and Maintaining</a></p>
<ul>
<li>Exam 70-624: Deploying and Maintaining Windows Vista Client and 2007 Microsoft Office System Desktops</li>
</ul>
<p><a href="http://www.microsoft.com/learning/mcp/mcts/vistaconfig/">Windows Vista Configuration</a></p>
<ul>
<li>Exam 70-620: Windows Vista, Configuring</li>
</ul>
<p><a href=" http://www.microsoft.com/learning/mcp/mcts/windowsserver/2008/default.mspx">Windows Server 2008 Active Directory Configuration</a></p>
<ul>
<li>Exam 70-640: Windows Server 2008 Active Directory, Configuring</li>
</ul>
<p><a href=" http://www.microsoft.com/learning/en/us/exams/70-642.mspx">Windows Server 2008 Network Infrastructure Configuration</a></p>
<ul>
<li>Exam 70-642: Windows Server 2008 Network Infrastructure, Configuring</li>
</ul>
<p><a href=" http://www.microsoft.com/learning/en/us/exams/70-643.mspx">Windows Server 2008 Applications Infrastructure Configuration</a></p>
<ul>
<li>Exam 70-643: Windows Server 2008 Applications Infrastructure, Configuring</li>
</ul>
<h3>Professional Series</h3>
<h3>Microsoft Certified Professional Developer (MCPD)</h3>
<p>These certifications are designed for .NET software developers and are based around .NET 3.5, Visual Studio 2008 and SQL Server 2005/2008.</p>
<p><a href="http://www.microsoft.com/learning/mcp/mcpd/windev/">Windows Developer 3.5</a></p>
<ul>
<li>Exam 70-536: Microsoft .NET Framework &#8211; Application Development Foundation</li>
<li>Exam 70-505: Microsoft .NET Framework 3.5, Windows Forms Application Development</li>
<li>Exam 70-563 (PRO): Designing and Developing Windows Applications Using the Microsoft .NET Framework 3.5</li>
</ul>
<p><a href="http://www.microsoft.com/learning/mcp/mcts/vstudio/2008/default.mspx">ASP .NET Developer 3.5</a></p>
<ul>
<li>Exam 70-536: Microsoft .NET Framework &#8211; Application Development Foundation</li>
<li>Exam 70-562: Microsoft .NET Framework 3.5, ASP.NET Application Development</li>
<li>Exam 70-564 (PRO): Designing and Developing ASP.NET Applications Using the Microsoft .NET Framework 3.5</li>
</ul>
<p><a href="http://www.microsoft.com/learning/mcp/mcpd/webdev/">Web Developer, Visual Studio 2005</a></p>
<ul>
<li>Exam 70-528: Microsoft .NET Framework 2.0 &#8211; Web-Based Client Development</li>
<li>Exam 70-536: Microsoft .NET Framework 2.0 &#8211; Application Development Foundation</li>
<li>Exam 70-547 (PRO): Designing and Developing Web Applications by Using the Microsoft .NET Framework</li>
</ul>
<p><a href="http://www.microsoft.com/learning/mcp/mcpd/vstudio/2008/default.mspx">Enterprise Applications Developer 3.5</a></p>
<ul>
<li>Exam 70-503: TS: Microsoft .NET Framework 3.5, Windows Communication Foundation Application Development</li>
<li>Exam 70-505: TS: Microsoft .NET Framework 3.5, Windows Forms Application Development</li>
<li>Exam 70-536: TS: Microsoft .NET Framework &#8211; Application Development Foundation &#8211; applicable to both .NET 2.0 and .NET 3.5</li>
<li>Exam 70-561: TS: Microsoft .NET Framework 3.5, ADO.NET Application Development</li>
<li>Exam 70-562: TS: Microsoft .NET Framework 3.5, ASP.NET Application Development</li>
<li>Exam 70-565 (PRO): Designing and Developing Enterprise Applications using Microsoft .NET Framework 3.5</li>
</ul>
<h3>Microsoft Certified IT Professional (MCITP)</h3>
<p>The Microsoft Certified IT Professional (MCITP) credential is the leading certification for Microsoft. It provides widely recognized, objective validation of your ability to perform critical, current IT job roles by using Microsoft technologies to their best advantage.</p>
<p>These certifications are designed for IT professionals including administrators and support personnel in addition to database specialists (both administrators and developers).</p>
<p><strong>Business Intelligence Developer</strong></p>
<ul>
<li>MCTS: SQL Server 2005 Business Intelligence</li>
<li>Exam 70-446 (PRO): Designing a Business Intelligence Infrastructure by Using Microsoft SQL Server 2005</li>
</ul>
<p><strong>Consumer Support Technician</strong></p>
<ul>
<li>MCTS: Windows Vista Configuration</li>
<li>Exam 70-623 (PRO): Supporting and Troubleshooting Applications on a Windows Vista Client for Consumer Support Technicians</li>
</ul>
<p><strong>Database Developer</strong></p>
<ul>
<li>MCTS: SQL Server 2005</li>
<li>Exam 70-441 (PRO): Designing Database Solutions by Using Microsoft SQL Server 2005 Open License 6.0</li>
<li>Exam 70-442 (PRO): Designing and Optimizing Data Access by Using Microsoft SQL Server 2005</li>
</ul>
<p><strong>Database Administrator</strong></p>
<ul>
<li>MCTS: SQL Server 2005</li>
<li>Exam 70-443 (PRO): Designing a Database Server Infrastructure by Using Microsoft SQL Server 2005</li>
<li>Exam 70-444 (PRO): Optimizing and Maintaining a Database Administration Solution by Using Microsoft SQL Server 2005</li>
</ul>
<p><strong>Enterprise Messaging Administrator</strong></p>
<ul>
<li>MCTS: Exchange Server 2007 Configuration</li>
<li>Exam 70-237 (PRO): Designing Messaging Solutions with Microsoft Exchange Server 2007</li>
<li>Exam 70-238 (PRO): Deploying Messaging Solutions with Microsoft Exchange Server 2007</li>
</ul>
<p><strong>Enterprise Project Management with Microsoft Office Project Server 2007</strong></p>
<ul>
<li>MCTS: Managing Projects with Microsoft Office Project 2007</li>
<li>MCTS: Enterprise Project Management with Microsoft Office Project Server 2007</li>
<li>Exam 70-634 (PRO): Microsoft Office Project Server 2007, Managing Projects and Programs</li>
</ul>
<p><strong>Enterprise Support Technician</strong></p>
<ul>
<li>MCTS: Windows Vista Configuration</li>
<li>Exam 70-622 (PRO): Supporting and Troubleshooting Applications on a Microsoft Windows Vista Client for Enterprise Support Technicians</li>
</ul>
<p><strong>Server Administrator</strong></p>
<ul>
<li>MCTS: Windows Server 2008 Active Directory Configuration</li>
<li>MCTS: Windows Server 2008 Network Infrastructure Configuration</li>
<li>Exam 70-646 (PRO): Windows Server 2008, Server Administrator</li>
</ul>
<p><strong>Enterprise Administrator</strong></p>
<ul>
<li>MCTS: Windows Server 2008 Active Directory Configuration</li>
<li>MCTS: Windows Server 2008 Network Infrastructure Configuration</li>
<li>MCTS: Windows Server 2008 Applications Infrastructure Configuration</li>
<li>MCTS: Windows Vista Configuration OR MCTS: Windows Vista and 2007 Microsoft Office System Desktops, Deploying and Maintaining</li>
<li>Exam 70-647 (PRO): Windows Server 2008, Enterprise Administrator</li>
</ul>
<h3>Master Series</h3>
<h3>Architect Series</h3>
<p>The Architect Series is completely different from the Technology Specialist and Professional series, composed of a five-week training session, at a cost of $25,000. Candidates are paired with an existing Microsoft Certified Architect for the duration of the program who mentor and provide guidance to complete a series of tasks. At the conclusion the candidate must submit a report and pass a Review Board interview.</p>
<p>The Architect Series is very similar to other industry professional certification programs, such as the Certified Practicing Engineer (CPEng) offered by Engineers Australia.<br />
There are two primary tracks in the Architect Program:</p>
<p><strong>Technology-based Architecture</strong></p>
<p>There are two MCA Certifications in the Technology-based Architecture track:</p>
<ul>
<li>Messaging (Microsoft Exchange Server)</li>
<li>Database (Microsoft SQL Server focused on OLTP</li>
</ul>
<p><strong>Broad Architecture</strong></p>
<p>This track is designed for professionals that use a variety of Microsoft and non-Microsoft technologies to deliver customer solutions. Again there are two primary tracks:</p>
<ul>
<li>Infrastructure certifications</li>
<li>Solutions certifications</li>
</ul>
<p>uCertify: <a href="http://www.ucertify.com">http://www.ucertify.com</a><br />
uCertify India: <a href="http://www.ucertify.in">http://www.ucertify.in</a><br />
uCertify PrepEngine: <a href="http://www.prepengine.com">http://www.prepengine.com</a><br />
Download link: <a href="http://www.ucertify.com/download.html">http://www.ucertify.com/download.html</a>> </p>
<p><a class="a2a_button_twitter" href="http://www.addtoany.com/add_to/twitter?linkurl=http%3A%2F%2Fexamdirectory.com%2Fcurrent-generation-of-certifications.html&amp;linkname=Current%20Generation%20of%20Certifications" title="Twitter" rel="nofollow" target="_blank"><img src="http://examdirectory.com/wp-content/plugins/add-to-any/icons/twitter.png" width="16" height="16" alt="Twitter"/></a> <a class="a2a_button_delicious" href="http://www.addtoany.com/add_to/delicious?linkurl=http%3A%2F%2Fexamdirectory.com%2Fcurrent-generation-of-certifications.html&amp;linkname=Current%20Generation%20of%20Certifications" title="Delicious" rel="nofollow" target="_blank"><img src="http://examdirectory.com/wp-content/plugins/add-to-any/icons/delicious.png" width="16" height="16" alt="Delicious"/></a> <a class="a2a_button_digg" href="http://www.addtoany.com/add_to/digg?linkurl=http%3A%2F%2Fexamdirectory.com%2Fcurrent-generation-of-certifications.html&amp;linkname=Current%20Generation%20of%20Certifications" title="Digg" rel="nofollow" target="_blank"><img src="http://examdirectory.com/wp-content/plugins/add-to-any/icons/digg.png" width="16" height="16" alt="Digg"/></a> <a class="a2a_button_yahoo_mail" href="http://www.addtoany.com/add_to/yahoo_mail?linkurl=http%3A%2F%2Fexamdirectory.com%2Fcurrent-generation-of-certifications.html&amp;linkname=Current%20Generation%20of%20Certifications" title="Yahoo Mail" rel="nofollow" target="_blank"><img src="http://examdirectory.com/wp-content/plugins/add-to-any/icons/yahoo.png" width="16" height="16" alt="Yahoo Mail"/></a> <a class="a2a_button_google_bookmarks" href="http://www.addtoany.com/add_to/google_bookmarks?linkurl=http%3A%2F%2Fexamdirectory.com%2Fcurrent-generation-of-certifications.html&amp;linkname=Current%20Generation%20of%20Certifications" title="Google Bookmarks" rel="nofollow" target="_blank"><img src="http://examdirectory.com/wp-content/plugins/add-to-any/icons/google.png" width="16" height="16" alt="Google Bookmarks"/></a> <a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fexamdirectory.com%2Fcurrent-generation-of-certifications.html&amp;title=Current%20Generation%20of%20Certifications"><img src="http://examdirectory.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://examdirectory.com/current-generation-of-certifications.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Current Upgrade Paths for .NET Exams</title>
		<link>http://examdirectory.com/current-upgrade-paths-for-net-exams.html</link>
		<comments>http://examdirectory.com/current-upgrade-paths-for-net-exams.html#comments</comments>
		<pubDate>Sat, 08 Aug 2009 15:09:15 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[70-502]]></category>
		<category><![CDATA[70-536]]></category>
		<category><![CDATA[70-562-C#]]></category>
		<category><![CDATA[Everything you want to know]]></category>
		<category><![CDATA[MCAD]]></category>
		<category><![CDATA[MCITP]]></category>
		<category><![CDATA[MCITP Certification]]></category>
		<category><![CDATA[MCPD]]></category>
		<category><![CDATA[MCSD]]></category>
		<category><![CDATA[MCTS]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Skills Require]]></category>
		<category><![CDATA[Things to practice]]></category>
		<category><![CDATA[.NET Framework 3.5 ASP.NET Applications]]></category>
		<category><![CDATA[.NET Framework 3.5 Web Applications]]></category>
		<category><![CDATA[70-562]]></category>
		<category><![CDATA[70-562-CSHARP]]></category>
		<category><![CDATA[70-562-CSHARP exam]]></category>
		<category><![CDATA[70-562-CSHARP mock test]]></category>
		<category><![CDATA[70-562-CSHARP practice test]]></category>
		<category><![CDATA[70-562-CSHARP question]]></category>
		<category><![CDATA[70-562-CSHARP study guide]]></category>
		<category><![CDATA[70-562-CSHARP study notes]]></category>
		<category><![CDATA[C#.NET 3.5 ASP.NET Application Development]]></category>
		<category><![CDATA[certification]]></category>
		<category><![CDATA[certification practice test]]></category>
		<category><![CDATA[certification requirements]]></category>
		<category><![CDATA[certification sample test]]></category>
		<category><![CDATA[certification study guide]]></category>
		<category><![CDATA[CSHARP.NET 3.5 ASP.NET Application Development]]></category>
		<category><![CDATA[CSHARP.NET ASP.NET Application Development]]></category>
		<category><![CDATA[MCPD.NET]]></category>
		<category><![CDATA[MCSE certification exam]]></category>
		<category><![CDATA[MCSE exam]]></category>
		<category><![CDATA[MCTS.NET]]></category>
		<category><![CDATA[MCTS.NET exam]]></category>
		<category><![CDATA[questions]]></category>
		<category><![CDATA[test]]></category>

		<guid isPermaLink="false">http://examdirectory.com/?p=149</guid>
		<description><![CDATA[With the exception of Obsolete Certifications, Microsoft generally offers upgrade paths, which allow a person holding a previous generation certification to upgrade to the current generation paths by sitting upgrade exams. Typically this is a single normal exam, usually consisting of a mixture of questions from the composite exams making up the current certification path. [...]]]></description>
			<content:encoded><![CDATA[<p>With the exception of Obsolete Certifications, Microsoft generally offers upgrade paths, which allow a person holding a previous generation certification to upgrade to the current generation paths by sitting upgrade exams. Typically this is a single normal exam, usually consisting of a mixture of questions from the composite exams making up the current certification path. Using this upgrade feature, professionals in the field can maintain their certification standards without having to start from scratch every few years.</p>
<p>With the introduction of the Professional Series your MCTS, MCITP, or MCPD certifications will retire when Microsoft discontinues mainstream support for the related technology. Typically, mainstream support is discontinued 7 to 10 years after the initial product release. When support ends, your related certification will retire.</p>
<p>Microsoft&#8217;s initial communications about the Professional Series certifications was announced that a &#8220;refresh&#8221; or recertification of the MCITP and MCPD credentials would be required within three years. This policy has changed. To address the needs of the worldwide customer base, the updated policy is to retire a certification when mainstream support for the related technology retires. There is no action required from you if you earned a Professional Series certification before the policy change; the updated policy applies to your certification, which will be valid until mainstream support for the related technology retires.</p>
<h3>Technology Specialist Series (MCTS) Upgrades</h3>
<p>There are no upgrade paths that lead only to an MCTS certification. All prior certification paths lead to either an MCPD or MCITS certification, which will indirectly confer the relevant prerequisite MCTS certification on the successful candidate.</p>
<p><span id="more-149"></span></p>
<h3>Professional Developer (MCPD) Upgrades</h3>
<p>The upgrade paths for the Professional Developer series require that candidates have a minimum existing Microsoft Certified Application Developer certification, although since this is a prerequisite for the Microsoft Certified Solutions Developer series, this also qualifies. Generally candidates who specialized in Windows Forms development in the MCAD would upgrade to the MCPD: Windows Developer, Web developers would take the MCPD: Web Developer path, and MCSD holders would upgrade to the MCPD: Enterprise Applications Developer. However, there is no actual restriction enforced and a candidate holding any variant of the MCAD three MCAD to MCPD paths, and an MCSD can take any of the four MCSD to MCAD paths.</p>
<p>MCAD/MCSD to MCPD: Web Developer</p>
<p>This certification requires that one pass the following examination:</p>
<ul>
<li>Exam 70-551: UPGRADE: MCAD Skills to MCPD: Web Developer by Using the Microsoft .NET Framework</li>
</ul>
<p>MCAD/MCSD to MCPD: Windows Developer</p>
<p>This certification requires that one pass the following examination:</p>
<ul>
<li>Exam 70-552: UPGRADE: MCAD Skills to MCPD: Windows Developer by Using the Microsoft .NET Framework</li>
</ul>
<p>MCAD to MCPD: Enterprise Applications Developer</p>
<p>This certification requires that one pass the following examinations:</p>
<ul>
<li>Exam 70-551: UPGRADE: MCAD Skills to MCPD: Web Developer by Using the Microsoft .NET Framework</li>
<li>Exam 70-552: UPGRADE: MCAD Skills to MCPD: Windows Developer by Using the Microsoft .NET Framework</li>
</ul>
<p>MCSD to MCPD: Enterprise Applications Developer</p>
<p>This certification requires that one pass the following examinations:</p>
<ul>
<li>Exam 70-553: UPGRADE: MCSD Microsoft .NET Skills to MCPD Enterprise Application Developer by Using the Microsoft .NET Framework: Part 1</li>
<li>Exam 70-554: UPGRADE: MCSD Microsoft .NET Skills to MCPD Enterprise Application Developer by Using the Microsoft .NET Framework: Part 2</li>
</ul>
<h3>IT Professional (MCITP) Upgrades</h3>
<p>MCDST to MCITP: Enterprise Support</p>
<p>This certification requires that one pass the following examination:</p>
<ul>
<li>Exam 70-621: PRO: Upgrading Your MCDST Certification to MCITP Enterprise Support</li>
</ul>
<p>MCDBA to MCITP: Database Administrator This certification requires that one pass the following examination:</p>
<ul>
<li>Prerequisite: MCTS: Microsoft SQL Server 2005 &#8211; Implementation and Maintenance</li>
<li>Exam 70-447: UPGRADE: MCDBA Skills to MCITP Database Administrator by Using Microsoft SQL Server 2005</li>
</ul>
<h3>MCSA and MCSE Transitions</h3>
<p>MCSA and MCSE certifications will not be retired. Microsoft has introduced a transition path to allow MCSA/MCSE holders to obtain MCITP certification. Both certifications require a common transitional exam (70-649), as well as two additional exams for MCITP: Server Administrator and three additional exams for the MCITP: Enterprise Administrator.</p>
<h3>Microsoft Certification Resources</h3>
<p>There are several courses, boot camps and practice tests from different vendors offering preparation material for Microsoft certification exams. Boot camps normally provide residential program that includes food and lodging. These courses are meant for busy professionals who do not have enough time for self preparation or wish to get trained by professional trainers. Microsoft Press provides several books towards Microsoft certification exams preparation. Books are normally the first place to explore Microsoft certification options, and preparation. Apart from Microsoft Press books, there are other reputed publishers like Sybex, and others. In addition to books, Microsoft Learning also offers courses for each of the exams.</p>
<p>Apart from books, there are several practice tests vendors that offer pre-certification exams. These mock exams almost mimic actual exams, and normally priced much less than the actual exam. Several user forums are available for certification preparation where most questions are answered by other forum users.</p>
<p>Experts and past candidates recommend not only reading more than one book, but spending a good amount of time practicing the concepts on computers on a test environment. After practicing and reading, it&#8217;s also recommended to take sample exams before taking the Microsoft exam.</p>
<p>uCertify: <a href="http://www.ucertify.com">http://www.ucertify.com</a><br />
uCertify India: <a href="http://www.ucertify.in">http://www.ucertify.in</a><br />
uCertify PrepEngine: <a href="http://www.prepengine.com">http://www.prepengine.com</a><br />
Download link: <a href="http://www.ucertify.com/download.html">http://www.ucertify.com/download.html</a>> </p>
<p><a class="a2a_button_twitter" href="http://www.addtoany.com/add_to/twitter?linkurl=http%3A%2F%2Fexamdirectory.com%2Fcurrent-upgrade-paths-for-net-exams.html&amp;linkname=Current%20Upgrade%20Paths%20for%20.NET%20Exams" title="Twitter" rel="nofollow" target="_blank"><img src="http://examdirectory.com/wp-content/plugins/add-to-any/icons/twitter.png" width="16" height="16" alt="Twitter"/></a> <a class="a2a_button_delicious" href="http://www.addtoany.com/add_to/delicious?linkurl=http%3A%2F%2Fexamdirectory.com%2Fcurrent-upgrade-paths-for-net-exams.html&amp;linkname=Current%20Upgrade%20Paths%20for%20.NET%20Exams" title="Delicious" rel="nofollow" target="_blank"><img src="http://examdirectory.com/wp-content/plugins/add-to-any/icons/delicious.png" width="16" height="16" alt="Delicious"/></a> <a class="a2a_button_digg" href="http://www.addtoany.com/add_to/digg?linkurl=http%3A%2F%2Fexamdirectory.com%2Fcurrent-upgrade-paths-for-net-exams.html&amp;linkname=Current%20Upgrade%20Paths%20for%20.NET%20Exams" title="Digg" rel="nofollow" target="_blank"><img src="http://examdirectory.com/wp-content/plugins/add-to-any/icons/digg.png" width="16" height="16" alt="Digg"/></a> <a class="a2a_button_yahoo_mail" href="http://www.addtoany.com/add_to/yahoo_mail?linkurl=http%3A%2F%2Fexamdirectory.com%2Fcurrent-upgrade-paths-for-net-exams.html&amp;linkname=Current%20Upgrade%20Paths%20for%20.NET%20Exams" title="Yahoo Mail" rel="nofollow" target="_blank"><img src="http://examdirectory.com/wp-content/plugins/add-to-any/icons/yahoo.png" width="16" height="16" alt="Yahoo Mail"/></a> <a class="a2a_button_google_bookmarks" href="http://www.addtoany.com/add_to/google_bookmarks?linkurl=http%3A%2F%2Fexamdirectory.com%2Fcurrent-upgrade-paths-for-net-exams.html&amp;linkname=Current%20Upgrade%20Paths%20for%20.NET%20Exams" title="Google Bookmarks" rel="nofollow" target="_blank"><img src="http://examdirectory.com/wp-content/plugins/add-to-any/icons/google.png" width="16" height="16" alt="Google Bookmarks"/></a> <a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fexamdirectory.com%2Fcurrent-upgrade-paths-for-net-exams.html&amp;title=Current%20Upgrade%20Paths%20for%20.NET%20Exams"><img src="http://examdirectory.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://examdirectory.com/current-upgrade-paths-for-net-exams.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Skills required for Microsoft test 70-562-C#</title>
		<link>http://examdirectory.com/skills-required-for-microsoft-test-70-562-c.html</link>
		<comments>http://examdirectory.com/skills-required-for-microsoft-test-70-562-c.html#comments</comments>
		<pubDate>Sat, 08 Aug 2009 15:04:30 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[.NET]]></category>
		<category><![CDATA[70-562-C#]]></category>
		<category><![CDATA[Everything you want to know]]></category>
		<category><![CDATA[MCAD]]></category>
		<category><![CDATA[MCITP]]></category>
		<category><![CDATA[MCPD]]></category>
		<category><![CDATA[MCSD]]></category>
		<category><![CDATA[MCTS]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Things to practice]]></category>
		<category><![CDATA[.NET Framework 3.5 ASP.NET Applications]]></category>
		<category><![CDATA[.NET Framework 3.5 Web Applications]]></category>
		<category><![CDATA[70-562]]></category>
		<category><![CDATA[70-562-CSHARP]]></category>
		<category><![CDATA[70-562-CSHARP exam]]></category>
		<category><![CDATA[70-562-CSHARP mock test]]></category>
		<category><![CDATA[70-562-CSHARP practice test]]></category>
		<category><![CDATA[70-562-CSHARP question]]></category>
		<category><![CDATA[70-562-CSHARP study guide]]></category>
		<category><![CDATA[70-562-CSHARP study notes]]></category>
		<category><![CDATA[C#.NET 3.5 ASP.NET Application Development]]></category>
		<category><![CDATA[certification]]></category>
		<category><![CDATA[certification practice test]]></category>
		<category><![CDATA[certification requirements]]></category>
		<category><![CDATA[certification sample test]]></category>
		<category><![CDATA[certification study guide]]></category>
		<category><![CDATA[CSHARP.NET 3.5 ASP.NET Application Development]]></category>
		<category><![CDATA[CSHARP.NET ASP.NET Application Development]]></category>
		<category><![CDATA[MCPD.NET]]></category>
		<category><![CDATA[MCSE certification exam]]></category>
		<category><![CDATA[MCSE exam]]></category>
		<category><![CDATA[MCTS.NET]]></category>
		<category><![CDATA[MCTS.NET exam]]></category>
		<category><![CDATA[questions]]></category>
		<category><![CDATA[test]]></category>

		<guid isPermaLink="false">http://examdirectory.com/?p=147</guid>
		<description><![CDATA[Microsoft has specified more than thirty objectives for the 70-562 test. These objectives are grouped under seven topics. Following are some important areas in which an individual should possess good knowledge before taking the 70-562 test: Configuring providers. Configuring authentication, authorization, and impersonation. Configuring projects, solutions, and reference assemblies. Configuring session state using Microsoft SQL [...]]]></description>
			<content:encoded><![CDATA[<p>Microsoft has specified more than thirty objectives for the 70-562 test. These objectives are grouped under seven topics. Following are some important areas in which an individual should possess good knowledge before taking the 70-562 test:</p>
<ol>
<li>Configuring providers.</li>
<li>Configuring authentication, authorization, and impersonation.</li>
<li>Configuring projects, solutions, and reference assemblies.</li>
<li>Configuring session state using Microsoft SQL Server, State Server, or InProc.</li>
<li>Publishing Web applications.</li>
<li>Configuring application pools.</li>
<li>Compiling an application using Visual Studio or command-line tools.</li>
<li>Implementing data-bound controls.</li>
<li>Loading user controls dynamically.</li>
<li>Creating and consuming custom controls.</li>
<li>Implementing client-side validation and server-side validation.</li>
<li>Consuming standard controls.</li>
<li>Reading and writing XML data.</li>
<li>Manipulating data using the DataSet and DataReader objects.</li>
<li>Calling a Windows Communication Foundation (WCF) service or a Web service from an ASP.NET Web page.</li>
<li>Implementing a DataSource control.</li>
<li>Binding controls to data using data binding syntax.</li>
<li>Configuring debugging and custom errors.</li>
<li>Setting up an environment to perform remote debugging.</li>
<li>Debugging unhandled exceptions when using ASP.NET AJAX.</li>
<li>Implementing tracing of a Web application.</li>
<li>Debugging deployment issues.</li>
<li>Monitoring Web applications.</li>
<li>Implementing Web Forms using ASP.NET AJAX.</li>
<li>Interacting with the ASP.NET AJAX client-side library.</li>
<li>Consuming services from client scripts.</li>
<li>Creating and registering client script.</li>
<li>Accessing device capabilities.</li>
<li>Controlling device-specific rendering.</li>
<li>Adding mobile Web controls to a Web page.</li>
<li>Implementing control adapters.</li>
<li>Customizing the layout and appearance of a Web page.</li>
<li>Working with ASP.NET intrinsic objects.</li>
<li>Implementing globalization and accessibility.</li>
<li>Implementing business objects and utility classes.</li>
<li>Implementing session state, view state, control state, cookies, cache, or application state.</li>
<li>Handling events and control page flow.</li>
<li>Implementing the Generic Handler.</li>
</ol>
<p>Download link: <a title="http://www.ucertify.com/exams/Microsoft/70-562-CSHARP.html" href="http://www.ucertify.com/exams/Microsoft/70-562-CSHARP.html" target="_self"><strong>http://www.ucertify.com/exams/Microsoft/70-562-CSHARP.html</strong></a>> </p>
<p><a class="a2a_button_twitter" href="http://www.addtoany.com/add_to/twitter?linkurl=http%3A%2F%2Fexamdirectory.com%2Fskills-required-for-microsoft-test-70-562-c.html&amp;linkname=Skills%20required%20for%20Microsoft%20test%2070-562-C%23" title="Twitter" rel="nofollow" target="_blank"><img src="http://examdirectory.com/wp-content/plugins/add-to-any/icons/twitter.png" width="16" height="16" alt="Twitter"/></a> <a class="a2a_button_delicious" href="http://www.addtoany.com/add_to/delicious?linkurl=http%3A%2F%2Fexamdirectory.com%2Fskills-required-for-microsoft-test-70-562-c.html&amp;linkname=Skills%20required%20for%20Microsoft%20test%2070-562-C%23" title="Delicious" rel="nofollow" target="_blank"><img src="http://examdirectory.com/wp-content/plugins/add-to-any/icons/delicious.png" width="16" height="16" alt="Delicious"/></a> <a class="a2a_button_digg" href="http://www.addtoany.com/add_to/digg?linkurl=http%3A%2F%2Fexamdirectory.com%2Fskills-required-for-microsoft-test-70-562-c.html&amp;linkname=Skills%20required%20for%20Microsoft%20test%2070-562-C%23" title="Digg" rel="nofollow" target="_blank"><img src="http://examdirectory.com/wp-content/plugins/add-to-any/icons/digg.png" width="16" height="16" alt="Digg"/></a> <a class="a2a_button_yahoo_mail" href="http://www.addtoany.com/add_to/yahoo_mail?linkurl=http%3A%2F%2Fexamdirectory.com%2Fskills-required-for-microsoft-test-70-562-c.html&amp;linkname=Skills%20required%20for%20Microsoft%20test%2070-562-C%23" title="Yahoo Mail" rel="nofollow" target="_blank"><img src="http://examdirectory.com/wp-content/plugins/add-to-any/icons/yahoo.png" width="16" height="16" alt="Yahoo Mail"/></a> <a class="a2a_button_google_bookmarks" href="http://www.addtoany.com/add_to/google_bookmarks?linkurl=http%3A%2F%2Fexamdirectory.com%2Fskills-required-for-microsoft-test-70-562-c.html&amp;linkname=Skills%20required%20for%20Microsoft%20test%2070-562-C%23" title="Google Bookmarks" rel="nofollow" target="_blank"><img src="http://examdirectory.com/wp-content/plugins/add-to-any/icons/google.png" width="16" height="16" alt="Google Bookmarks"/></a> <a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fexamdirectory.com%2Fskills-required-for-microsoft-test-70-562-c.html&amp;title=Skills%20required%20for%20Microsoft%20test%2070-562-C%23"><img src="http://examdirectory.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://examdirectory.com/skills-required-for-microsoft-test-70-562-c.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Things to practice for Microsoft test 70-562-C#</title>
		<link>http://examdirectory.com/things-to-practice-for-microsoft-test-70-562-c.html</link>
		<comments>http://examdirectory.com/things-to-practice-for-microsoft-test-70-562-c.html#comments</comments>
		<pubDate>Sat, 08 Aug 2009 15:02:07 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[.NET]]></category>
		<category><![CDATA[70-562-C#]]></category>
		<category><![CDATA[MCAD]]></category>
		<category><![CDATA[MCPD]]></category>
		<category><![CDATA[MCSD]]></category>
		<category><![CDATA[MCTS]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[.NET Framework 3.5 ASP.NET Applications]]></category>
		<category><![CDATA[.NET Framework 3.5 Web Applications]]></category>
		<category><![CDATA[70-562]]></category>
		<category><![CDATA[70-562-CSHARP]]></category>
		<category><![CDATA[70-562-CSHARP exam]]></category>
		<category><![CDATA[70-562-CSHARP mock test]]></category>
		<category><![CDATA[70-562-CSHARP practice test]]></category>
		<category><![CDATA[70-562-CSHARP question]]></category>
		<category><![CDATA[70-562-CSHARP study guide]]></category>
		<category><![CDATA[70-562-CSHARP study notes]]></category>
		<category><![CDATA[C#.NET 3.5 ASP.NET Application Development]]></category>
		<category><![CDATA[certification]]></category>
		<category><![CDATA[certification practice test]]></category>
		<category><![CDATA[certification requirements]]></category>
		<category><![CDATA[certification sample test]]></category>
		<category><![CDATA[certification study guide]]></category>
		<category><![CDATA[CSHARP.NET 3.5 ASP.NET Application Development]]></category>
		<category><![CDATA[CSHARP.NET ASP.NET Application Development]]></category>
		<category><![CDATA[MCPD.NET]]></category>
		<category><![CDATA[MCSE certification exam]]></category>
		<category><![CDATA[MCSE exam]]></category>
		<category><![CDATA[MCTS.NET]]></category>
		<category><![CDATA[MCTS.NET exam]]></category>
		<category><![CDATA[questions]]></category>
		<category><![CDATA[test]]></category>

		<guid isPermaLink="false">http://examdirectory.com/?p=145</guid>
		<description><![CDATA[The Microsoft test 70-562 is designed to measure an individual&#8217;s ability to develop ASP.NET Web applications using Microsoft .NET Framework 3.5. Before taking the 70-562 test, you should practice the following: Configure providers. Configure authentication, authorization, and impersonation. Configure projects, solutions, and reference assemblies. Configure session state using Microsoft SQL Server, State Server, or InProc. [...]]]></description>
			<content:encoded><![CDATA[<p>The Microsoft test 70-562 is designed to measure an individual&#8217;s ability to develop ASP.NET Web applications using Microsoft .NET Framework 3.5. Before taking the 70-562 test, you should practice the following:</p>
<ol>
<li>Configure providers.</li>
<li>Configure authentication, authorization, and impersonation.</li>
<li>Configure projects, solutions, and reference assemblies.</li>
<li>Configure session state using Microsoft SQL Server, State Server, or InProc.</li>
<li>Publish Web applications.</li>
<li>Configure application pools.</li>
<li>Compile an application using Visual Studio or command-line tools.</li>
<li>Implement data-bound controls.</li>
<li>Load user controls dynamically.</li>
<li>Create and consume custom controls.</li>
<li>Implement client-side validation and server-side validation.</li>
<li>Consume standard controls.</li>
<li>Read and write XML data.</li>
<li>Manipulate data using DataSet and DataReader objects.</li>
<li>Call a Windows Communication Foundation (WCF) service or a Web service from an ASP.NET Web page.</li>
<li>Implement a DataSource control.</li>
<li>Bind controls to data using data binding syntax.</li>
<li>Configure debugging and custom errors.</li>
<li>Set up an environment to perform remote debugging.</li>
<li>Debug unhandled exceptions when using ASP.NET AJAX.</li>
<li>Implement tracing of a Web application.</li>
<li>Debug deployment issues.</li>
<li>Monitor Web applications.</li>
<li>Implement Web Forms using ASP.NET AJAX.</li>
<li>Interact with the ASP.NET AJAX client-side library.</li>
<li>Consume services from client scripts.</li>
<li>Create and registering client script.</li>
<li>Access device capabilities.</li>
<li>Control device-specific rendering.</li>
<li>Add mobile Web controls to a Web page.</li>
<li>Implement control adapters.</li>
<li>Customize the layout and appearance of a Web page.</li>
<li>Work with ASP.NET intrinsic objects.</li>
<li>Implement globalization and accessibility.</li>
<li>Implement business objects and utility classes.</li>
<li>Implement session state, view state, control state, cookies, cache, or application state.</li>
<li>Handle events and control page flow.</li>
<li>Implement the Generic Handler.</li>
</ol>
<p>Download link: <a title="http://www.ucertify.com/exams/Microsoft/70-562-CSHARP.html" href="http://www.ucertify.com/exams/Microsoft/70-562-CSHARP.html" target="_self"><strong>http://www.ucertify.com/exams/Microsoft/70-562-CSHARP.html</strong></a>> </p>
<p><a class="a2a_button_twitter" href="http://www.addtoany.com/add_to/twitter?linkurl=http%3A%2F%2Fexamdirectory.com%2Fthings-to-practice-for-microsoft-test-70-562-c.html&amp;linkname=Things%20to%20practice%20for%20Microsoft%20test%2070-562-C%23" title="Twitter" rel="nofollow" target="_blank"><img src="http://examdirectory.com/wp-content/plugins/add-to-any/icons/twitter.png" width="16" height="16" alt="Twitter"/></a> <a class="a2a_button_delicious" href="http://www.addtoany.com/add_to/delicious?linkurl=http%3A%2F%2Fexamdirectory.com%2Fthings-to-practice-for-microsoft-test-70-562-c.html&amp;linkname=Things%20to%20practice%20for%20Microsoft%20test%2070-562-C%23" title="Delicious" rel="nofollow" target="_blank"><img src="http://examdirectory.com/wp-content/plugins/add-to-any/icons/delicious.png" width="16" height="16" alt="Delicious"/></a> <a class="a2a_button_digg" href="http://www.addtoany.com/add_to/digg?linkurl=http%3A%2F%2Fexamdirectory.com%2Fthings-to-practice-for-microsoft-test-70-562-c.html&amp;linkname=Things%20to%20practice%20for%20Microsoft%20test%2070-562-C%23" title="Digg" rel="nofollow" target="_blank"><img src="http://examdirectory.com/wp-content/plugins/add-to-any/icons/digg.png" width="16" height="16" alt="Digg"/></a> <a class="a2a_button_yahoo_mail" href="http://www.addtoany.com/add_to/yahoo_mail?linkurl=http%3A%2F%2Fexamdirectory.com%2Fthings-to-practice-for-microsoft-test-70-562-c.html&amp;linkname=Things%20to%20practice%20for%20Microsoft%20test%2070-562-C%23" title="Yahoo Mail" rel="nofollow" target="_blank"><img src="http://examdirectory.com/wp-content/plugins/add-to-any/icons/yahoo.png" width="16" height="16" alt="Yahoo Mail"/></a> <a class="a2a_button_google_bookmarks" href="http://www.addtoany.com/add_to/google_bookmarks?linkurl=http%3A%2F%2Fexamdirectory.com%2Fthings-to-practice-for-microsoft-test-70-562-c.html&amp;linkname=Things%20to%20practice%20for%20Microsoft%20test%2070-562-C%23" title="Google Bookmarks" rel="nofollow" target="_blank"><img src="http://examdirectory.com/wp-content/plugins/add-to-any/icons/google.png" width="16" height="16" alt="Google Bookmarks"/></a> <a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fexamdirectory.com%2Fthings-to-practice-for-microsoft-test-70-562-c.html&amp;title=Things%20to%20practice%20for%20Microsoft%20test%2070-562-C%23"><img src="http://examdirectory.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://examdirectory.com/things-to-practice-for-microsoft-test-70-562-c.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Microsoft .NET Certification Exams Passing Tips</title>
		<link>http://examdirectory.com/microsoft-net-certification-exams-passing-tips.html</link>
		<comments>http://examdirectory.com/microsoft-net-certification-exams-passing-tips.html#comments</comments>
		<pubDate>Sat, 08 Aug 2009 10:01:17 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[.NET]]></category>
		<category><![CDATA[70-536]]></category>
		<category><![CDATA[MCAD]]></category>
		<category><![CDATA[MCPD]]></category>
		<category><![CDATA[MCSD]]></category>
		<category><![CDATA[MCTS]]></category>
		<category><![CDATA[70-536-CSHARP]]></category>
		<category><![CDATA[70-536-CSHARP exam]]></category>
		<category><![CDATA[70-536-CSHARP mock test]]></category>
		<category><![CDATA[70-536-CSHARP notes]]></category>
		<category><![CDATA[70-536-CSHARP practice test]]></category>
		<category><![CDATA[70-536-CSHARP question]]></category>
		<category><![CDATA[70-536-CSHARP study guide]]></category>
		<category><![CDATA[70-536-CSHARP study notes]]></category>
		<category><![CDATA[C# .NET Framework Application Development Foundation]]></category>
		<category><![CDATA[MCTS.NET 70-536-CSHARP]]></category>
		<category><![CDATA[MCTS.NET exam]]></category>

		<guid isPermaLink="false">http://examdirectory.com/?p=139</guid>
		<description><![CDATA[Set a Deadline Although studying at your own speed and taking the exam &#8220;when your ready&#8221; has its merits, it doesn&#8217;t work sound for millions of people who tend to postpone, or whose busy lives are filled with distractions. When you begin your studies, set a real schedule for yourself including how much you will [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Set a Deadline </strong></p>
<p>Although studying at your own speed and taking the exam &#8220;when your ready&#8221; has its merits, it doesn&#8217;t work sound for millions of people who tend to postpone, or whose busy lives are filled with distractions. When you begin your studies, set a real schedule for yourself including how much you will read every day, when you will start with studying review questions, lab time, etc., depending on the amount of study time you have available and your level of experience.</p>
<p><strong>Pick a training method that works for you </strong></p>
<p>Not everyone learns the same approach. Formal classroom training has its advantages, but it&#8217;s not an option for many people because of price, availability, and scheduling conflicts. Self-studying with books is cheaper and more flexible, but it can be monotonous and very boring. So what&#8217;s left? uCertify offers an excellent computer based training curriculum that is well below the cost of classroom training. uCertify offers an excellent and reasonable software prep kit-training program that is very similar to classroom instruction. You will get a combination of theory and practical instruction as you progress through the lessons.</p>
<p><strong>Be prepared for the new test format </strong></p>
<p>To discourage memorization of answers, use of &#8220;Brain dumps&#8221;, and to make the exams a little more significant to real world environments Microsoft has redesigned the test format for all the exams. Expect of lots of troubleshooting questions, complex scenarios, and interactive questions that require you to execute a specific task on a simulated control panel.</p>
<p><span id="more-139"></span></p>
<p><strong>Always read 2 books on every exam topic </strong></p>
<p>This guidance has served me sound. Always read a certified study guide and a real world guide during your studies. This will give you the information you need to pass the exam. Begin by reading the real world version without highlighting or taking reams of noted. The suggestion is to get an essential understanding of the topic and a general idea of how everything works. When you are finished, start up with the certified study guide of your choice. Go through the review questions and lab scenarios in each chapter taking notes as you go.</p>
<p><strong>Use the best study matter you can afford </strong></p>
<p>Your choice of study guides will depend on how you study, and your rank of experience. In our opinion the best Prepkit is of uCertify, which is developed by highly qualified employees. Although the Microsoft certified syllabus is a favorite of trainers, we found the writing technique too dry for self-study and the books do not include the number and quality of review questions offered by the other series.</p>
<p><strong>What to focus on </strong></p>
<p>You obviously cannot remember the entire book when preparing for the exam, so what do you focus on? Microsoft publishes an instruction for each exam that lists the topics they expect you to know, and this is a good suggestion of what you will be tested on. But that still leaves a lot to chance. Fortunately, most of the books do a honest job of creating review questions that covers the exam topics very well. They also offer callouts of &#8220;exam tips&#8221; or &#8220;Alerts&#8221; for trick questions. Test prep software can also be useful, and there are also a number of &#8216;Certification Prep&#8221; books available that focus on review questions and their justification.</p>
<p><strong>Staying motivated </strong></p>
<p>Procrastination is a huge setback for many people, so if you are having a stiff time staying motivated to study, you are not alone. You can fight this tendency by getting a study partner, and or starting a friendly contest of who can pass their exams first (or with the highest score). You should be careful to pick and choose your partners, and if possible get a group of 5-7 people collectively as a study crowd. Meet on a regular basis, and talk about exam topics and review questions.</p>
<p><strong>Take plenty of Test simulators </strong></p>
<p>Some people are very brilliant, but just terrible at taking tests. And some of the test questions can be complicated and catch you off guard. By taking some of the prep tests available, you will be well prepared for the actual exam and more probable to pass. If you have the finances, we suggest the uCertify Exams. There are also plenty of free practice exams available on the web.</p>
<p><strong>Schedule the exam for your peak time </strong></p>
<p>Give yourself the leading edge possible by scheduling the exam at your peak time. For most people, this is between 10am &#8211; 2pm. If you are more of an evening person, try scheduling after 7pm. clearly weekdays will be less crowded then Saturdays. This will give you less of a distraction during the exam. Try to give yourself a small number of hours of free time before the actual exam to run through your review questions and study sheets just before you take the test.</p>
<p><strong>Get a good nights sleep </strong></p>
<p>Fatigue will kill you on the tougher exams. Study as much as you like in the week before the exam, but staying up late the night before your test can corrupt your performance. Also, do not eat a big breakfast or lunch that may make you sleepy during the test. Have a healthy drink to increase your blood glucose levels, and reward yourself with a good food after you pass the exam.</p>
<p><strong>Come prepared </strong></p>
<p>Be about 15 minutes early, bring 2 forms of photo ID, and an additional pen if you need one. Take the spare time to clear your head in the testing hub. Some people arrange a &#8220;study sheet&#8221; of important exam concepts and review in the parking lot just before they take the exam. Printing out test questions and reviewing them just before the exam can be helpful as well.</p>
<p><strong>Before you start&#8230;</strong></p>
<p><!--more--><strong></strong></p>
<p>The test does not start until you start on the computer. Take blank sheets of paper and note down any tables or additional information you believe you may &#8220;draw a blank on&#8221; throughout the test. If you have not at all taken a Microsoft test before, there is a trial test available that does not count towards your score or your time. It features the different types of questions you will come across, as well as the new interactive and drag and drop questions. Be calm before you start. When you are ready to start the real exam, take a deep breath, and calm down before you begin. It is simply a test.</p>
<p><strong>Test Taking Strategy </strong></p>
<p>When looking at a multiple choice questions, keep in mind to read the entire group of answers before just clicking on the first right one you come across. Microsoft is looking for the &#8220;most correct&#8221; answer, and there may be 2 near correct answers. If you are confused on a question, try to eliminate the obviously wrong answers first. This will improve your probability of selecting the right answer from the remaining options.</p>
<p><strong>If you fail, retake the test within 2 weeks </strong></p>
<p>It is important to get back on the horse if you failed by a slight margin. Observe the test as a learning experience. As soon as you go away from the testing center, mark the questions that confused you while they are still new in your head. Study some more, and retake the test as soon as you feel comfortable. If you outright &#8220;bombed&#8221; the test, then you have a lot more studying to do.</p>
<p><strong>Tell us about your experience </strong></p>
<p>If you can take a small number of minutes to let us know about your testing experience, it will help to provide good study aides and help others all along the way. What areas confused or amazed you? What study guides helped? Which one&#8217;s did not? Did you think was hard or easy? How long did you study? Send your comments to <a href="mailto:support@ucertify.com">support@ucertify.com</a></p>
<p>uCertify: <a href="http://www.ucertify.com">http://www.ucertify.com</a><br />
uCertify India: <a href="http://www.ucertify.in">http://www.ucertify.in</a><br />
uCertify PrepEngine: <a href="http://www.prepengine.com">http://www.prepengine.com</a><br />
Download link: <a href="http://www.ucertify.com/download.html">http://www.ucertify.com/download.html</a>> </p>
<p><a class="a2a_button_twitter" href="http://www.addtoany.com/add_to/twitter?linkurl=http%3A%2F%2Fexamdirectory.com%2Fmicrosoft-net-certification-exams-passing-tips.html&amp;linkname=Microsoft%20.NET%20Certification%20Exams%20Passing%20Tips" title="Twitter" rel="nofollow" target="_blank"><img src="http://examdirectory.com/wp-content/plugins/add-to-any/icons/twitter.png" width="16" height="16" alt="Twitter"/></a> <a class="a2a_button_delicious" href="http://www.addtoany.com/add_to/delicious?linkurl=http%3A%2F%2Fexamdirectory.com%2Fmicrosoft-net-certification-exams-passing-tips.html&amp;linkname=Microsoft%20.NET%20Certification%20Exams%20Passing%20Tips" title="Delicious" rel="nofollow" target="_blank"><img src="http://examdirectory.com/wp-content/plugins/add-to-any/icons/delicious.png" width="16" height="16" alt="Delicious"/></a> <a class="a2a_button_digg" href="http://www.addtoany.com/add_to/digg?linkurl=http%3A%2F%2Fexamdirectory.com%2Fmicrosoft-net-certification-exams-passing-tips.html&amp;linkname=Microsoft%20.NET%20Certification%20Exams%20Passing%20Tips" title="Digg" rel="nofollow" target="_blank"><img src="http://examdirectory.com/wp-content/plugins/add-to-any/icons/digg.png" width="16" height="16" alt="Digg"/></a> <a class="a2a_button_yahoo_mail" href="http://www.addtoany.com/add_to/yahoo_mail?linkurl=http%3A%2F%2Fexamdirectory.com%2Fmicrosoft-net-certification-exams-passing-tips.html&amp;linkname=Microsoft%20.NET%20Certification%20Exams%20Passing%20Tips" title="Yahoo Mail" rel="nofollow" target="_blank"><img src="http://examdirectory.com/wp-content/plugins/add-to-any/icons/yahoo.png" width="16" height="16" alt="Yahoo Mail"/></a> <a class="a2a_button_google_bookmarks" href="http://www.addtoany.com/add_to/google_bookmarks?linkurl=http%3A%2F%2Fexamdirectory.com%2Fmicrosoft-net-certification-exams-passing-tips.html&amp;linkname=Microsoft%20.NET%20Certification%20Exams%20Passing%20Tips" title="Google Bookmarks" rel="nofollow" target="_blank"><img src="http://examdirectory.com/wp-content/plugins/add-to-any/icons/google.png" width="16" height="16" alt="Google Bookmarks"/></a> <a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fexamdirectory.com%2Fmicrosoft-net-certification-exams-passing-tips.html&amp;title=Microsoft%20.NET%20Certification%20Exams%20Passing%20Tips"><img src="http://examdirectory.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://examdirectory.com/microsoft-net-certification-exams-passing-tips.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>MCTS 70-503-CSHARP Short Notes: Exam Passing Tips</title>
		<link>http://examdirectory.com/mcts-70-503-csharp-short-notes-exam-passing-tips.html</link>
		<comments>http://examdirectory.com/mcts-70-503-csharp-short-notes-exam-passing-tips.html#comments</comments>
		<pubDate>Mon, 20 Jul 2009 14:59:17 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[MCTS]]></category>
		<category><![CDATA[70-503-CSHARP]]></category>
		<category><![CDATA[70-503-CSHARP exam]]></category>
		<category><![CDATA[70-503-CSHARP mock test]]></category>
		<category><![CDATA[70-503-CSHARP notes]]></category>
		<category><![CDATA[70-503-CSHARP practice test]]></category>
		<category><![CDATA[70-503-CSHARP question]]></category>
		<category><![CDATA[70-503-CSHARP study guide]]></category>
		<category><![CDATA[70-503-CSHARP study notes]]></category>
		<category><![CDATA[MCTS-Microsoft-Visual-Studio-2008 70-503-CSHARP]]></category>
		<category><![CDATA[MCTS-Microsoft-Visual-Studio-2008 exam]]></category>
		<category><![CDATA[MCTS: C#.NET Framework 3.5 â€“ Windows Communication Foundation Applicat]]></category>

		<guid isPermaLink="false">http://examdirectory.com/mcts-70-503-csharp-short-notes-exam-passing-tips.html</guid>
		<description><![CDATA[Creating Services The [OperationContract] attribute is applied to a method indicating that the method implements a service operation as part of a service contract. This attribute should be defined before each method specified in a WCF application code. The TransactionTimeout property of the [ServiceBehavior] attribute gets or sets the time in the format &#8220;HH:MM:SS&#8221; within [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Creating Services</strong></p>
<ul>
<li>The <a href="http://www.ucertify.com/article/what-is-the-operationcontract-attribute.html">[OperationContract] attribute</a> is applied to a method indicating that the method implements a service operation as part of a service contract. This attribute should be defined before each method specified in a WCF application code.</li>
<li>The TransactionTimeout property of the [ServiceBehavior] attribute gets or sets the time in the format &#8220;HH:MM:SS&#8221; within which a transaction must complete.</li>
<li>The [Service Contract] attribute is used to an interface or a class to define a service contract in a WCF application.</li>
<li>The TransactionFlowOption enumeration specifies the transaction flow policy for a service operation. It is used with the TransactionFlow attribute that specifies whether a service operation accepts incoming transactions from a client. The OperationBehaviorAttribute.TransactionAutoComplete property gets or sets a value to indicate whether the current transaction scope has been automatically completed if no unhandled exceptions occur.</li>
<li>Uploading the XML file in as a stream will work better for uploading large files. Streams can load large amounts of data, or large files that are read into most programs. Therefore, you should create the following operation contract:<br />
[OperationContract()] void UploadFile(Stream xmlData)</li>
<li>In order to handle complex data types, you should use the [KnownType(typeof())] attribute with the data contract. The [KnownType] attribute is specifically meant to be used with structures, classes, interfaces, and other complex data types.
<ul>
<li><a href="http://www.ucertify.com/exams/Microsoft/70-502-CSHARP.html">70-502-CSHARP, MCTS: C# .NET 3.5 C# Windows Presentation Foundation Application Development</a></li>
<li><a href="http://www.ucertify.com/exams/Microsoft/70-503-CSHARP.html">70-503-CSHARP, MCTS: C#.NET Framework 3.5 â€“ Windows Communication Foundation Application</a></li>
<li><a href="http://www.ucertify.com/exams/Microsoft/70-504-CSHARP.html">70-504-CSHARP, MCTS:.NET C# 3.5 â€“ Windows Workflow Foundation Application Development</a></li>
<li><a href="http://www.ucertify.com/exams/Microsoft/70-536-CSHARP.html">70-536-CSHARP, C# .NET Framework Application Development Foundation</a></li>
<li><a href="http://www.ucertify.com/exams/Microsoft/70-561-CSHARP.html">70-561-CSHARP, TS: Microsoft .NET Framework 3.5, ADO.NET Application Development</a></li>
</ul>
</li>
<p>Pass MCTS: Microsoft Visual Studio 2008 in a first attempt:</p>
<p><span id="more-41"></span></p>
<li>You must define a data contract for all complex data types that you require so that they can be serialized. A data contract can explicitly be created by using the DataContractAttribute (or [DataContract] qualifier) and DataMemberAttribute (or [DataMember] qualifier) attributes.</li>
<li>The [DataMember] attribute, when applied to a member of a type, it specifies that the member is part of a data contract. When this attribute is applied to a field or a property explicitly, it specifies that the member value will be serialized by an DataContractSerializer object.</li>
<li>In order to allow the interface to be passed to the clients, you should use the [KnownType(typeof())] attribute with your data contract. The [KnownType] attribute is specifically meant to be used with structures, classes, interfaces, and other complex data types.</li>
<li>Create code including the [DataContract] attribute with the [DataMember] attributes for using services both simple as well as complex data types.</li>
<li>The <a href="http://www.ucertify.com/article/what-is-the-datamember-attribute.html">[DataMember] attribute</a>, when applied to a member of a type, specifies that the member is part of a data contract. When this attribute is applied to a field or a property explicitly, it specifies that the member value will be serialized by an DataContractSerializer object.</li>
<li>If a WCF application makes extensive use of services and require data to be transferred from a client to the service and visa versa, then the [KnownType(typeof())] attribute should be used with the data contract.</li>
<li>The following steps should be taken if you wish to implement a service so that it can be used by applications:
<ul>
<li>Create a service contract and define it by using an interface.</li>
<li>Create a class that implements the interface.</li>
<li>Compile the code.</li>
<li>Run the service, which involves three steps namely configuring, hosting, and opening the service.</li>
<li>Then, deploy and implement the service to be used by applications.</li>
</ul>
</li>
<li>The [ServiceContract(SessionMode=SessionMode.Required)] code statement specifies that the service contract requires a session-based binding and hence must be run within a session.</li>
<li>The TransactionScopeRequired property should be set to true to require the operation to execute within a transaction scope.</li>
<li>Setting the SessionMode to Required means that the service contract requires a session-based binding and hence must be run within a session.</li>
<li>The TransactionFlowOption enumeration is set to Allowed value to require the operation to execute within the scope of a transaction.</li>
<li>The TransactionTimeout property of the ServiceBehaviorAttribute class is used to get or set the period within which a transaction must complete. The transaction timeout should be set in the hours:minutes:seconds format.</li>
<li>Setting the TransactionFlowOption enumeration to Allowed and the ProtectionLevel property to ProtectionLevel.None ensures that the flow of a transaction is not blocked for security reasons such as authentication.</li>
<li>The [MessageContract] attribute creates a message contract enabling a user to use a type for a parameter or return value that serializes directly into a specified SOAP message structure.</li>
<li>A messaging operation contract has at most one parameter and one return value, where both the parameter value types and the return value types are either void or message types. A message type may be any type marked with the MessageContractAttribute or the Message type.</li>
<li>In a message contract, the [MessageBodyMember] attribute is applied to those members of the class type that you want to make into parts of the SOAP body of the message.</li>
<li>An Operation contract cannot return an integer return type, as this return type is not a message type.</li>
<li>The Action property of an operation contract is used to control the action of the method&#8217;s input message. Its property value is specified to &#8220;*&#8221; to indicate that a service operation will handle all messages received by the service, but cannot be directed to a service operation. Then, the operation contract should define a function (that returns a void) in order to process the message.</li>
</ul>
<p><strong>Exposing and Deploying Services</strong></p>
<ul>
<li>All communication with a WCF service occurs through service endpoints. An endpoint consists of four properties, namely an address, a binding, a contract and a set of behaviors.</li>
<li>If the <em>includeExceptionDetailInFaults</em> attribute in the element is set to true, it specifies that unhandled execution exceptions are to be converted into a FaultException of type ExceptionDetail and are sent as a fault message. Microsoft recommends you to set this attribute to true when debugging a WCF service.</li>
<li>Marshalling cannot be a requirement for configuring WCF endpoints. Marshalling is an older concept of COM and is not used in WCF services.</li>
<li>The following are the steps to configure service bindings:
<ul>
<li>Define a service contract for a user-defined WCF service.</li>
<li>Implement the service contract in a custom service class.</li>
<li>Create a Web.config file to configure a service endpoint for the service class. This service class uses the<a href="http://www.ucertify.com/article/what-is-the-basichttpbinding-class.html"> BasicHttpBinding class</a> that represents a binding used by a WCF service to configure and expose endpoints.</li>
<li>Create a .svc file and place it in the Internet Information Services (IIS) virtual directory.</li>
</ul>
</li>
<li>The <a href="http://www.ucertify.com/article/what-is-the-automaticsessionshutdown-property-of-the-servicebehavior-attribute.html">AutomaticSessionShutdown</a> should be set to false, when a custom control is used over the lifetime of the session. So, you must turn off the automatic shut down.</li>
<li>The System.ServiceModel.SessionMode.Required setting specifies that the service contract requires a sessionful binding.</li>
<li>The IsTerminating property of the <a href="http://www.ucertify.com/article/what-is-the-operationcontract-attribute.html">[OperationContract] attribute</a> gets or sets a value to indicate whether the service operation causes the server to close the session after a reply message is sent.</li>
<li>In the [ServiceBehavior(ConcurrencyMode=ConcurrencyMode.Multiple, ReleaseServiceInstanceOnTransactionComplete=true)] code, setting the ConcurrencyMode to Multiple will allow multiple threads to concurrently access the service. Secondly, setting the ReleaseServiceInstanceOnTransactionComplete to true will allow the instance to be released as soon as a transaction is complete.</li>
<li>Setting the <a href="http://www.ucertify.com/article/what-is-the-automaticsessionshutdown-property-of-the-servicebehavior-attribute.html">AutomaticSessionShutdown</a> property of the [ServiceBehavior] attribute to false prevents the server from automatically closing the session and also enables the custom control of the lifetime of a session.</li>
<li>The Required value of the SessionMode enumeration specifies that the service contract requires a sessionful binding.</li>
<li>The System.ServiceModel.SessionMode.Allowed setting specifies that the contract can support sessions if the incoming binding supports them. This setting simply let the service to use sessions optionally and not always use them.</li>
<li>In order to host a WCF service inside a managed application, you must take the following steps:
<ul>
<li>Embed the service code inside the managed application code.</li>
<li>Define a service endpoint for the service. This can be done either imperatively in code or declaratively through configuration.</li>
<li>Create an instance of the ServiceHost class that provides a host for services.</li>
</ul>
</li>
<li>A WCF service is deployed inside a managed application, as it is the least robust hosting option and requires the least infrastructure to support deployment.</li>
<li>You need to call a constructor of the ServiceHost class in order to programmatically add the base address to a service.</li>
<li>The best deployment strategy would be to deploy the service inside a managed application, as it is the least robust hosting option and also requires the least infrastructure to deploy.</li>
<li>The following are the steps to host a WCF service within a managed Windows service:
<ul>
<li>Include a service implementation of the service contract, a Windows Service class, and an installer class for the WCF service code.</li>
<li>Implement the managed Windows service by inheriting it from the ServiceBase class.</li>
<li>Override the OnStart method of the ServiceBase class to create and open a ServiceHost object.</li>
<li>Override the OnStop method of the ServiceBase class to stop and dispose the ServiceHost object.</li>
<li>Inherit a custom installer class from the Installer class and allow the service to be installed by the Installutil.exe tool.</li>
<li>Provide a base address for the Windows service to be configured in application settings.</li>
</ul>
</li>
<li>A WCF service that is hosted in IIS includes the following tasks during its deployment:
<ul>
<li>Guarantees that the IIS, WCF, and the WCF activation component are correctly installed and registered.</li>
<li>Reuses an existing ASP.NET application or creates a new IIS application.</li>
<li>Creates a .svc file for a WCF service.</li>
<li>Deploys the WCF service implementation to the IIS or ASP.NET application.</li>
<li>Configures the WCF service.</li>
</ul>
</li>
<li>The @ServiceHost directive is used to associate the service host factory with the WCF service to be hosted. This directive is required to access or compile the service hosting code provided in a .svc file.</li>
<li>In order to host the WCF service on the IIS Web server, you have created a new folder for your application files. Then, you have used the IIS management tool to create a Web application in the new folder. Next, you need to perform the following actions:
<ul>
<li>Create a <a href="http://www.ucertify.com/article/what-is-the-webconfig-file.html">Web.config</a> file that contains the appropriate configuration code. Place this file in the application folder.</li>
<li>Create a service file containing the @ServiceHost directive information for the service. Place this file in the application folder.</li>
<li>Create an App_Code folder within the application folder for your code files. Put the code file that defines and implements the service contract in this folder.</li>
</ul>
</li>
<li>The aspNetCompatibilityEnabled attribute of the element should be set to true because the requests are made to WCF services that flow through the ASP.NET HTTP communication pipeline, and the communication over non-HTTP protocols is prohibited.</li>
<li>A new IIS application can be created for hosting WCF services. Alternatively, A WCF service can be deployed into an existing ASP.NET application. Before deploying a WCF service implementation to the IIS or ASP.NET application, it is necessary to create a .svc file for the WCF service. Then the WCF service can be configured.</li>
<li>The @ServiceHost directive is used to associate the service host factory with the WCF service to be hosted. This directive is required to access or compile the service hosting code provided in a .svc file.</li>
<li>In order to host the WCF service on the Web server, you must use the @ServiceHost directive information for the service.</li>
<li>The ServiceHost servicehost = new ServiceHost(/*Add Parameters */); servicehost.Description.Behaviors.Add(/*Add Service Behavior */); code instantiates the service and then uses the Description.Behaviors.Add method of the ServiceHost object in order to add custom behaviors to the service.</li>
<li>If you need to create a custom service behavior that throws an exception if the list of endpoints that are configured is not complete, you should write the following code segment:<br />
<strong>class CustomBehavior : IServiceBehavior<br />
{<br />
public void Validate(ServiceDescription desc, ServiceHostBase myservicehost)<br />
{<br />
MyValidationMethod();<br />
}<br />
}</strong></li>
</ul>
<p>Pass MCTS: Microsoft Visual Studio 2008 in a first attempt:</p>
<ul>
<li><a href="http://www.ucertify.com/exams/Microsoft/70-502-CSHARP.html">70-502-CSHARP, MCTS: C# .NET 3.5 C# Windows Presentation Foundation Application Development</a></li>
<li><a href="http://www.ucertify.com/exams/Microsoft/70-503-CSHARP.html">70-503-CSHARP, MCTS: C#.NET Framework 3.5 â€“ Windows Communication Foundation Application</a></li>
<li><a href="http://www.ucertify.com/exams/Microsoft/70-504-CSHARP.html">70-504-CSHARP, MCTS:.NET C# 3.5 â€“ Windows Workflow Foundation Application Development</a></li>
<li><a href="http://www.ucertify.com/exams/Microsoft/70-536-CSHARP.html">70-536-CSHARP, C# .NET Framework Application Development Foundation</a></li>
<li><a href="http://www.ucertify.com/exams/Microsoft/70-561-CSHARP.html">70-561-CSHARP, TS: Microsoft .NET Framework 3.5, ADO.NET Application Development</a></li>
</ul>
<p><strong>Instrumenting and Administering Services</strong></p>
<ul>
<li>The element of the<br />
element is used to specify a listener that collects, stores, and routes messages. This element directs the tracing output to an appropriate target. The sub-element of the element adds a listener to the Listeners collection.</li>
<li>WCF provides some namespaces (such as System.IO.Log, System.ServiceModel, System.ServiceModel.MessageLogging, and System.Runtime.Serialization) that define trace sources for each assembly. The traces generated within such an assembly are accessed by the listeners defined for that trace source.</li>
<li>The valid source levels of trace messages that are filtered by the source switch and event type filter are Off, Critical, Error, Warning, Information, Verbose, ActivityTracing, and All.</li>
<li>The valid values for the performanceCounters attribute are All, ServiceOnly, and Off.</li>
<li>Setting the performanceCounters attribute to <strong>All</strong> will enable all category counters such as ServiceModelService, ServiceModelEndpoint, and ServiceModelOperation.</li>
<li>The tracing levels from Verbose to Critical are stacked on top of each other except the Off level. Therefore, the Verbose tracing level can handle the Critical, Error, Warning, and Verbose trace events. The Verbose tracing level is useful for debugging purposes or for application optimization.</li>
<li>The logEntireMessage attribute of the element defines a Boolean value that specifies whether the entire message including the message header and body is logged.</li>
<li>The IClientMessageInspector.BeforeSendRequest method enables you to inspect or modify a message before a request message is sent to a WCF service. The IEndpointBehavior.ApplyClientBehavior method is implemented to view, modify, or add custom extension to the client runtime across all messages, which can be used with an endpoint or for specific operations such as including custom headers.</li>
<li>If the System.Diagnostics.XmlWriterTraceListener trace listener as its type is used in the configuration file, then the output file location and name must be specified in the service configuration file. This can be done by setting the initializeData attribute to the name of the log file. Otherwise, an exception will be thrown.</li>
<li>In order to identify the cause of the error that had occurred in the application, you must examine the application event log. One reason for logging application event is to help in debugging issues that arise in the application.</li>
<li>The valid sub elements of the element are , , , , , , , , and . Each of these sub elements determines a different item for the service model.</li>
<li>The IDispatchMessageInspector interface is used to implement the service side message inspection. It defines the methods that enable custom inspection modification of application messages for a WCF service.</li>
<li>Setting the isClientSide property to true establishes the client-side inspector.</li>
<li>The IClientMessageInspector interface implements the client-side message inspection and defines an instance of message inspector to be added to the MessageInspectors collection to view or modify messages.</li>
</ul>
<p><strong>Consuming Services</strong></p>
<ul>
<li>The following command line that uses the Service Model Metadata Utility Tool (SvcUtil.exe) tool with the appropriate switches (to create the client code) generates a code file and a configuration file for the service:<br />
svcutil.exe /language:cs /out:generatedProxy.cs /config:app.config http://localhost:8000/ServiceModelSamples/service</li>
<li>The Svcutil.exe utility tool is used to generate a service proxy. The output of this tool is a class that implements the service interface.</li>
<li>The ServiceModel Metadata Utility Tool (Svcutil.exe) is used to automatically create the service proxy class. Therefore, you do not have to manually create a class that implements the service interface.</li>
<li>The element of the main element specifies contract, binding, and address properties of the channel endpoint. The valid attributes of the element are address, binding, contract, name, bindingconfiguration, and behaviorconfiguration.</li>
<li>The <strong>required</strong> attributes of the element are address, binding and contract. The optional attributes of the element are bindingConfiguration, behaviorConfiguration, and name.</li>
<li>The <em>name</em> optional attribute is used to uniquely identify an endpoint for a given contract. Though, the name attribute is optional, it is required when it works with a ChannelFactory object. The ChannelFactory object uses this attribute in order to specify which endpoint in the client configuration is being targeted and must be loaded when a channel is created to service.</li>
<li>The address, behaviorConfiguration, and contract are valid endpoint attributes.</li>
<li>You do not use the binding and bindingConfiguration endpoint attributes when working with the ChannelFactory class, as a ChannelFactory object does not use these attributes to specify the endpoint.</li>
<li>The steps to use a WCF client are as follows:
<ul>
<li>Create an endpoint address and a WCF client object.</li>
<li>Call the service operations from within the client object.</li>
<li>Close the client connection once the operation call is completed.</li>
</ul>
</li>
<li>In a scenario where you have already created the service proxy. Now, you should take the following steps to call the functions of the service:
<ul>
<li>Create a client class that implements the service interface.</li>
<li>Instantiate the class and call its methods.</li>
<li>Use the Svcutil.exe utility tool in order to create and use the client object.</li>
</ul>
</li>
<li>You do not call the Open method on the client. Once you have instantiated the client proxy, you simply call its methods. You can call the Close method if you wish to end all communications with the client.</li>
<li>The CommunicationException class is used on the client or the server side to catch a communication related exception, such as address not found, or connectivity related exceptions between endpoints. In order to catch CommunicationException on the client side, you can use the traditional exception handling such as a try/catch block.</li>
<li>The TimeoutException exception is the best option to use, which will handle slow response time. This exception is thrown specially when the time allotted for a process or operation has expired.</li>
<li>If you have created a client for a WCF service and have appropriate error handling in the client for all expected exceptions. However, you find that if an exception occurs, the client is sometimes not usable after that. In order to rectify this problem, you should check the State property to verify if the client is still opened.</li>
<li>The ServiceActivationException class does not represent an expected WCF client exception, as this class represents an exception that is thrown when a service fails to activate.</li>
<li>The following are the steps to configure a WCF service endpoint to be interoperable with .NET Web service clients:
<ul>
<li>Create a new instance of the BasicHttpBinding class.</li>
<li>Optionally enable transport security for the WCF service endpoint binding by setting the security mode for the binding to Transport.</li>
<li>Add a new application endpoint to the service host by using the binding instance being created.</li>
<li>Enable an HTTP/GET metadata endpoint for the WCF service.</li>
</ul>
</li>
<li>The valid contract types that can be specified with a COM Object are Typed contract, WSDL contract, and MEX contract.</li>
<li>You do not create contracts for .NET Web Service clients in order to configure a WCF service endpoint.</li>
</ul>
<p><strong>Securing Services</strong></p>
<ul>
<li>Transport level security is implemented using secure HTTP also called HTTPS.</li>
<li>An SSL can be implemented in a WCF application depending on how the application is hosted. The following are the methods in which SSL can be implemented:
<ul>
<li>Use the IIS infrastructure to set up an SSL service if IIS is used as the WCF host.</li>
<li>Bind an SSL certificate to the address using the HttpCfg.exe tool if a self-hosted WCF application is created.</li>
</ul>
</li>
<li>Transport-level security is implemented using secure HTTP also called HTTPS and therefore uses SSL.</li>
<li>You will use the transport security mode, as it uses a transport-level protocol, such as HTTPS that would support all clients. This security mode is available on many platforms and less complex.</li>
<li>Message level security actually secures every single message and provides true end-to-end security.</li>
<li>Message security allows you to sign or encrypt only parts of the message, instead of the entire message.</li>
<li>The endpoint identity of a WCF service is a value that is generated from the service Web Services Description Language (WSDL). The endpoint identity that is propagated to any client is used to authenticate the service.</li>
<li>In order to configure the service identity, a service endpoint is created and its identity is set to the certificate&#8217;s DNS by using the WSHttpBinding object.</li>
<li>Security demands are used to ensure that only callers that have been granted a specified permission can call a user&#8217;s code.</li>
<li>In order to implement the Security Token Service (STS) authentication, you must use a WSFederationHttpBinding object with the default security mode.</li>
<li>The <a href="http://www.ucertify.com/article/what-is-the-supportingtokenparameters-class.html"></a><a href="http://www.ucertify.com/article/what-is-the-supportingtokenparameters-class.html">SupportingTokenParameters class</a> is a collection of token properties and methods used to create security binding elements and a set of tokens of the same type.</li>
<li>You must enable the role manager in the application by setting the enabled attribute to true, as in the following code:</li>
<li>You will set the defaultProvider attribute of the element to SqlRoleProvider in order to match with the SQL Server roles.</li>
<li>You should not use the BasicHttpBinding class, as it does not use Windows authentication and creates a session in impersonating a client. Setting the Impersonation property to ImpersonationOption.Allowed will not cause a client impersonation, but it will merely allow the possibility of impersonation.</li>
<li>The following are the steps in impersonating a client on a WCF service:
<ul>
<li>Create a WCF service.</li>
<li>Use a binding class such as NetTcpBinding or <a href="http://www.ucertify.com/article/what-is-the-wshttpbinding-class.html">WSHttpBinding</a> that uses Windows authentication and creates a session.</li>
<li>Apply the [OperationBehavior] attribute (or the OperationBehaviorAttribute class) to a method that requires client impersonation, when implementing the interface of the service.</li>
<li>Set the Impersonation property of the [OperationBehavior] attribute to ImpersonationOption.Required.</li>
</ul>
</li>
<li>The appropriate binding classes that uses Windows authentication and creates a session are NetTcpBinding and WSHttpBinding.</li>
<li>The following are the steps to set the allowed impersonation level on a client, after enabling the WCF client impersonation on a service:
<ol>
<li>Create a service client code by using the ServiceModel Metadata Utility Tool (Svcutil.exe) utility tool to create the WCF client.</li>
<li>Set the AllowedImpersonationLevel property of the WindowsClientCredential class to one of the TokenImpersonationLevel enumeration values that include None, Anonymous, Impersonation, Identification, and Delegation.</li>
</ol>
</li>
</ul>
<p>Managing the Service Life Cycle</p>
<ul>
<li>Setting the value to PerSession of the InstanceContextMode property means that once the client connects, the same instance will be used for all calls from that client until the session ends.</li>
<li>Setting the value to PerCall of the InstanceContextMode means every single call from the client to the service gets a new instance of the service object.</li>
<li>The SessionMode.Required value specifies that the service contract requires always to use sessions.</li>
<li>The NetMsmqBinding class represents a queued binding suitable for cross-machine communication. This class provides support for queuing by leveraging Microsoft Message Queuing (MSMQ) as a transport.</li>
<li>A dead-letter queue contains messages that failed to reach the target queue, which may be due to reasons, such as expired messages and connectivity issues.</li>
<li>The following are the steps required to enable a reliable session to send messages:
<ul>
<li>Create the configuration element that contains the bindingConfiguration attribute. This attribute references a binding configuration by giving it a name say MyBinding1.</li>
<li>Reference the binding configuration name in the configuration element.</li>
<li>Enable the reliable session by setting the enabled attribute of the element to true.</li>
</ul>
</li>
<li>The code statement enables the reliable session so that the messages should arrive in the same order in which they were sent.</li>
<li>The SessionMode.Allowed value will let the service contract to use sessions if possible and not always use them.</li>
<li>The properties of a transaction used in WCF are atomicity, consistency, isolation, and durability.</li>
<li>Setting the <em>transactionFlow</em> attribute to true and the <em>transactionProtocol</em> attribute of the configuration element to the specified transaction protocol is to configure the binding in a WCF service to accept incoming transactions.</li>
<li>The <em>receiveTimeout</em> and <em>maxConnections</em> attributes of the element are valid binding settings, but are irrelevant when a transaction is implemented in the binding.</li>
<li>The WsatConfig.exe -network:enable -port:443 -endpointCert: -accountsCerts: -restart command line is used to enable the WS-AT protocol service inside MSDTC by using port 443 and an X.509 certificate with a private key installed in the local computer.</li>
<li>The valid concurrency modes are single, multiple, and reentrant.</li>
<li>In the [ServiceBehavior( InstanceContextMode=InstanceContextMode.Single, ConcurrencyMode=ConcurrencyMode.Multiple)] code, InstanceContextMode is set to Single to handle all the required client requests, and ConcurrencyMode is set to Multiple to have multiple threads processing messages concurrently.</li>
<li>You should set the instancing mode to PerCall, the session mode to Required, and the concurrency mode to Single, if you require to run a WCF service within a session, an instance for each client call, and also allow each instancing object to have one thread.</li>
<li>Setting the <em>ConcurrencyMode</em> to Multiple will allow multiple threads to concurrently access a WCF service. Secondly, setting the <em>ReleaseServiceInstanceOnTransactionComplete</em> to false will not allow the instance to be released as soon as a transaction is complete. Instead, this will allow the same instance to reuse for each call.</li>
</ul>
<p>Pass MCTS: Microsoft Visual Studio 2008 in a first attempt:</p>
<ul>
<li><a href="http://www.ucertify.com/exams/Microsoft/70-502-CSHARP.html">70-502-CSHARP, MCTS: C# .NET 3.5 C# Windows Presentation Foundation Application Development</a></li>
<li><a href="http://www.ucertify.com/exams/Microsoft/70-503-CSHARP.html">70-503-CSHARP, MCTS: C#.NET Framework 3.5 â€“ Windows Communication Foundation Application</a></li>
<li><a href="http://www.ucertify.com/exams/Microsoft/70-504-CSHARP.html">70-504-CSHARP, MCTS:.NET C# 3.5 â€“ Windows Workflow Foundation Application Development</a></li>
<li><a href="http://www.ucertify.com/exams/Microsoft/70-536-CSHARP.html">70-536-CSHARP, C# .NET Framework Application Development Foundation</a></li>
<li><a href="http://www.ucertify.com/exams/Microsoft/70-561-CSHARP.html">70-561-CSHARP, TS: Microsoft .NET Framework 3.5, ADO.NET Application Development</a></li>
</ul>
<p>> </p>
<p><a class="a2a_button_twitter" href="http://www.addtoany.com/add_to/twitter?linkurl=http%3A%2F%2Fexamdirectory.com%2Fmcts-70-503-csharp-short-notes-exam-passing-tips.html&amp;linkname=MCTS%2070-503-CSHARP%20Short%20Notes%3A%20Exam%20Passing%20Tips" title="Twitter" rel="nofollow" target="_blank"><img src="http://examdirectory.com/wp-content/plugins/add-to-any/icons/twitter.png" width="16" height="16" alt="Twitter"/></a> <a class="a2a_button_delicious" href="http://www.addtoany.com/add_to/delicious?linkurl=http%3A%2F%2Fexamdirectory.com%2Fmcts-70-503-csharp-short-notes-exam-passing-tips.html&amp;linkname=MCTS%2070-503-CSHARP%20Short%20Notes%3A%20Exam%20Passing%20Tips" title="Delicious" rel="nofollow" target="_blank"><img src="http://examdirectory.com/wp-content/plugins/add-to-any/icons/delicious.png" width="16" height="16" alt="Delicious"/></a> <a class="a2a_button_digg" href="http://www.addtoany.com/add_to/digg?linkurl=http%3A%2F%2Fexamdirectory.com%2Fmcts-70-503-csharp-short-notes-exam-passing-tips.html&amp;linkname=MCTS%2070-503-CSHARP%20Short%20Notes%3A%20Exam%20Passing%20Tips" title="Digg" rel="nofollow" target="_blank"><img src="http://examdirectory.com/wp-content/plugins/add-to-any/icons/digg.png" width="16" height="16" alt="Digg"/></a> <a class="a2a_button_yahoo_mail" href="http://www.addtoany.com/add_to/yahoo_mail?linkurl=http%3A%2F%2Fexamdirectory.com%2Fmcts-70-503-csharp-short-notes-exam-passing-tips.html&amp;linkname=MCTS%2070-503-CSHARP%20Short%20Notes%3A%20Exam%20Passing%20Tips" title="Yahoo Mail" rel="nofollow" target="_blank"><img src="http://examdirectory.com/wp-content/plugins/add-to-any/icons/yahoo.png" width="16" height="16" alt="Yahoo Mail"/></a> <a class="a2a_button_google_bookmarks" href="http://www.addtoany.com/add_to/google_bookmarks?linkurl=http%3A%2F%2Fexamdirectory.com%2Fmcts-70-503-csharp-short-notes-exam-passing-tips.html&amp;linkname=MCTS%2070-503-CSHARP%20Short%20Notes%3A%20Exam%20Passing%20Tips" title="Google Bookmarks" rel="nofollow" target="_blank"><img src="http://examdirectory.com/wp-content/plugins/add-to-any/icons/google.png" width="16" height="16" alt="Google Bookmarks"/></a> <a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fexamdirectory.com%2Fmcts-70-503-csharp-short-notes-exam-passing-tips.html&amp;title=MCTS%2070-503-CSHARP%20Short%20Notes%3A%20Exam%20Passing%20Tips"><img src="http://examdirectory.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://examdirectory.com/mcts-70-503-csharp-short-notes-exam-passing-tips.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

<script type="text/javascript">

  var _gaq = _gaq || [];
  _gaq.push(['_setAccount', 'UA-86319-3']);
  _gaq.push(['_trackPageview']);

  (function() {
    var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
    ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
    var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
  })();

</script>
