<?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>Neha Singla</title>
	<atom:link href="http://www.nehasingla.net/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.nehasingla.net</link>
	<description>Sharing my life experiences...</description>
	<lastBuildDate>Sat, 20 Nov 2010 09:05:49 +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>SDET interview questions</title>
		<link>http://www.nehasingla.net/2010/11/sdet-interview-questions/</link>
		<comments>http://www.nehasingla.net/2010/11/sdet-interview-questions/#comments</comments>
		<pubDate>Sat, 20 Nov 2010 09:03:53 +0000</pubDate>
		<dc:creator>nehasingla</dc:creator>
				<category><![CDATA[ENGINEERING]]></category>
		<category><![CDATA[Interview Question]]></category>
		<category><![CDATA[Inteview]]></category>

		<guid isPermaLink="false">http://www.nehasingla.net/?p=221</guid>
		<description><![CDATA[Below are few interview questions and answers which are asked frequently in interviews. 1. Write code to insert node in a binary tree ? 2. Write code to find maximum height of a binary tree ? 3. Write code whether a binary tree is an AVL tree or not ? 4. Write code to find [...]]]></description>
			<content:encoded><![CDATA[<p>Below are few interview questions and answers which are asked frequently in interviews.</p>
<p>1. Write code to insert node in a binary tree ?</p>
<p>2. Write code to find maximum height of a binary tree ?</p>
<p>3. Write code whether a binary tree is an AVL tree or not ?</p>
<p>4. Write code to find the size of binary tree ?</p>
<p>5. Write code to create a balanced tree ?</p>
<p>6. Write code to insert a node in link list?</p>
<p>7. Write code to delete a node from link list?</p>
<p>8. Write code to find number of nodes in the list ?</p>
<p>9. Write code to remove spaces from the string. You cannot use a new string.</p>
<p>10. Write code to reverse a link list?</p>
<p>&nbsp;</p>
<p>Answers.</p>
<p>/* Insert in Binary tree */</p>
<p><font color="#0000ff" face="Consolas" size="2"><font color="#0000ff" face="Consolas" size="2"><font color="#0000ff" face="Consolas" size="2">&nbsp; public Node InsertBinaryTrees(Node node, int data)<br />
	&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; {<br />
	&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; if (node == null)<br />
	&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; {<br />
	&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; return new Node() { data = data };<br />
	&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; }</font></font></font></p>
<p><font color="#0000ff" face="Consolas" size="2"><font color="#0000ff" face="Consolas" size="2"><font color="#0000ff" face="Consolas" size="2">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Node headNode = node;<br />
	&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Node temp = new Node();<br />
	&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; bool insertLeft = false;</font></font></font></p>
<p><font color="#0000ff" face="Consolas" size="2"><font color="#0000ff" face="Consolas" size="2"><font color="#0000ff" face="Consolas" size="2">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; while (headNode != null)<br />
	&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; {<br />
	&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; if (headNode.data &gt; data)<br />
	&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; {<br />
	&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; temp = headNode;<br />
	&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; headNode = headNode.left;<br />
	&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; insertLeft = true;<br />
	&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; }<br />
	&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; else<br />
	&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; {<br />
	&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; temp = headNode;<br />
	&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; headNode = headNode.right;<br />
	&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; insertLeft = false;<br />
	&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; }<br />
	&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; }</font></font></font></p>
<p><font color="#0000ff" face="Consolas" size="2"><font color="#0000ff" face="Consolas" size="2"><font color="#0000ff" face="Consolas" size="2">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Node newNode = new Node(){data = data};<br />
	&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; if (insertLeft)<br />
	&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; {<br />
	&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; temp.left = newNode;<br />
	&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; }</font></font></font></p>
<p><font color="#0000ff" face="Consolas" size="2"><font color="#0000ff" face="Consolas" size="2"><font color="#0000ff" face="Consolas" size="2">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; else<br />
	&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; {<br />
	&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; temp.right = newNode;<br />
	&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; }</font></font></font></p>
<p><font color="#0000ff" face="Consolas" size="2"><font color="#0000ff" face="Consolas" size="2"><font color="#0000ff" face="Consolas" size="2">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; return node;<br />
	&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; }</font></font></font></p>
<p>&nbsp;</p>
<p><font color="#0000ff" face="Consolas" size="2">Solution 2:</font></p>
<p><font color="#0000ff" face="Consolas" size="2">/* Max height of binary tree */</font></p>
<p>public int HeightOfTree(Node node)<br />
	&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; {<br />
	&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; if (node == null)<br />
	&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; {<br />
	&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; return 0;<br />
	&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; }</p>
<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; int leftTreeH = HeightOfTree(node.left);<br />
	&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; int rightTreeH = HeightOfTree(node.right);</p>
<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; return Math.Max(leftTreeH, rightTreeH) + 1;<br />
	&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; }</p>
<p>&nbsp;</p>
<p>Solution 3</p>
<p>/* Binary tree is AVL or not */</p>
<p><font face="Consolas" size="2"><font face="Consolas" size="2">&nbsp; public bool IsBalanceTree(Node node)<br />
	&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; {<br />
	&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; if (node == null)<br />
	&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; {<br />
	&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; return true;<br />
	&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; }<br />
	&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <br />
	&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; int leftTreeH = HeightOfTree(node.left);<br />
	&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; int rightTreeH = HeightOfTree(node.right);</font></font></p>
<p><font face="Consolas" size="2"><font face="Consolas" size="2">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; if (!(Math.Abs(leftTreeH &#8211; rightTreeH) &lt;= 1))<br />
	&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; {<br />
	&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; return false;<br />
	&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; }</font></font></p>
<p><font face="Consolas" size="2"><font face="Consolas" size="2">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; if (!IsBalanceTree(node.left))<br />
	&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; {<br />
	&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; return false;<br />
	&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; }<br />
	&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <br />
	&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; if (!IsBalanceTree(node.right))<br />
	&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; {<br />
	&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; return false;<br />
	&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; }</font></font></p>
<p><font face="Consolas" size="2"><font face="Consolas" size="2">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; return true;<br />
	&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; }</font></font></p>
<p><font face="Consolas" size="2"><font face="Consolas" size="2"><br />
	Solution 4</font></font></p>
<p><font face="Consolas" size="2"><font face="Consolas" size="2">/* Size of binary tree */</font></font></p>
<p>&nbsp; public int SizeOfBST(Node node)<br />
	&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; {<br />
	&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; if (node == null)<br />
	&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; {<br />
	&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; return 0;<br />
	&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; }</p>
<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; return SizeOfBST(node.left) + 1 + SizeOfBST(node.right);<br />
	&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; }</p>
<p>&nbsp;</p>
<p>Solution 5</p>
<p>/* Code to balance a tree */</p>
<p>// Do In-order traversal of the binary tree to get the sorted array first</p>
<p>&nbsp;static int i = 0;<br />
	&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; static int[] array = new int[7];<br />
	&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; public int[] InOrderTraversal(Node node)<br />
	&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; {&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <br />
	&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; if (node == null)<br />
	&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; {<br />
	&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; return array;<br />
	&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; }</p>
<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; InOrderTraversal(node.left);<br />
	&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; array[i] = node.data;<br />
	&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; i++;<br />
	&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; InOrderTraversal(node.right);</p>
<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; return array;<br />
	&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; }</p>
<p>// Pass the sorted array and array.Length -1 as high position and 0 as low position.</p>
<p>&nbsp;public Node CreateBalancedTree(int[] array, int lowPosition, int highPosition)<br />
	&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; {<br />
	&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; int midPosition = (lowPosition + highPosition) / 2;<br />
	&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <br />
	&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; if (lowPosition &lt;= highPosition)<br />
	&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; {<br />
	&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Node node = new Node() { data = array[midPosition], left = null, right = null };<br />
	&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; node.left = CreateBalancedTree(array, lowPosition, midPosition &#8211; 1);<br />
	&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; node.right = CreateBalancedTree(array, midPosition + 1, highPosition);</p>
<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; return node;<br />
	&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; }</p>
<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; return null;<br />
	&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; }</p>
]]></content:encoded>
			<wfw:commentRss>http://www.nehasingla.net/2010/11/sdet-interview-questions/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Adding custom behavior to WCF service configuration file</title>
		<link>http://www.nehasingla.net/2010/05/adding-custom-behavior-to-wcf-service-configuration-file/</link>
		<comments>http://www.nehasingla.net/2010/05/adding-custom-behavior-to-wcf-service-configuration-file/#comments</comments>
		<pubDate>Sat, 29 May 2010 23:04:18 +0000</pubDate>
		<dc:creator>nehasingla</dc:creator>
				<category><![CDATA[ENGINEERING]]></category>
		<category><![CDATA[Configuration]]></category>
		<category><![CDATA[Custom Behavior]]></category>
		<category><![CDATA[WCF]]></category>

		<guid isPermaLink="false">http://www.nehasingla.net/?p=211</guid>
		<description><![CDATA[Hi, &#160; Few days back I was trying to add custom behaviour to my WCF service and found out that many users have issues in adding these behaviour to the congig file so I thought of sharing the code to implment IEndpointBehavior and IServiceBehavior and adding these behaviors to the WCF service configuration file. In [...]]]></description>
			<content:encoded><![CDATA[<p style="margin: 0in 0in 0pt"><font size="3"><span style="font-family: 'cambria','serif'; color: blue; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial">Hi,</span></font></p>
<p style="margin: 0in 0in 0pt">&nbsp;</p>
<p style="margin: 0in 0in 0pt"><font size="3"><span style="font-family: 'cambria','serif'; color: blue; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial">Few days back I was trying to add custom behaviour to my WCF service and found out that many users have issues in adding these behaviour to the congig file so I thought of sharing the code to implment IEndpointBehavior and IServiceBehavior and adding these behaviors to the WCF service configuration file.</span></font></p>
<p style="margin: 0in 0in 0pt"><font size="3"><span style="font-family: 'cambria','serif'; color: blue; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial">In the code below I have&nbsp;implemented Validate method to throw an exception at runtime when the contract is two way. So we will get an exception at the runtime during host.Open(). </span></font></p>
<p style="margin: 0in 0in 0pt">&nbsp;</p>
<p style="margin: 0in 0in 0pt"><font size="3"><span style="font-family: 'cambria','serif'; color: blue; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial">I have also shared the App.config file where these behaviors are added to EndpointBehaviours and ServiceBehaviours sections.</span></font></p>
<p style="margin: 0in 0in 0pt">&nbsp;&nbsp;</p>
<p style="margin: 0in 0in 0pt"><font size="3"><span style="font-family: 'cambria','serif'; color: blue; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial">using</span><span style="font-family: 'cambria','serif'; color: black; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial"> System;</span><span style="font-family: 'cambria','serif'; color: #222222; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial"><o:p></o:p></span></font></p>
<p style="margin: 0in 0in 0pt"><font size="3"><span style="font-family: 'cambria','serif'; color: blue; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial">using</span><span style="font-family: 'cambria','serif'; color: black; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial"> System.Collections.Generic;</span><span style="font-family: 'cambria','serif'; color: #222222; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial"><o:p></o:p></span></font></p>
<p style="margin: 0in 0in 0pt"><font size="3"><span style="font-family: 'cambria','serif'; color: blue; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial">using</span><span style="font-family: 'cambria','serif'; color: black; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial"> System.Linq;</span><span style="font-family: 'cambria','serif'; color: #222222; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial"><o:p></o:p></span></font></p>
<p style="margin: 0in 0in 0pt"><font size="3"><span style="font-family: 'cambria','serif'; color: blue; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial">using</span><span style="font-family: 'cambria','serif'; color: black; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial"> System.Text;</span><span style="font-family: 'cambria','serif'; color: #222222; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial"><o:p></o:p></span></font></p>
<p style="margin: 0in 0in 0pt"><font size="3"><span style="font-family: 'cambria','serif'; color: blue; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial">using</span><span style="font-family: 'cambria','serif'; color: black; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial"> System.ServiceModel.Description;</span><span style="font-family: 'cambria','serif'; color: #222222; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial"><o:p></o:p></span></font></p>
<p style="margin: 0in 0in 0pt"><font size="3"><span style="font-family: 'cambria','serif'; color: blue; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial">using</span><span style="font-family: 'cambria','serif'; color: black; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial"> System.ServiceModel.Dispatcher;</span><span style="font-family: 'cambria','serif'; color: #222222; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial"><o:p></o:p></span></font></p>
<p style="margin: 0in 0in 0pt"><font size="3"><span style="font-family: 'cambria','serif'; color: blue; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial">using</span><span style="font-family: 'cambria','serif'; color: black; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial"> System.ServiceModel.Configuration;</span><span style="font-family: 'cambria','serif'; color: #222222; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial"><o:p></o:p></span></font></p>
<p style="margin: 0in 0in 0pt"><font size="3"><span style="font-family: 'cambria','serif'; color: blue; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial">using</span><span style="font-family: 'cambria','serif'; color: black; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial"> System.ServiceModel;</span><span style="font-family: 'cambria','serif'; color: #222222; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial"><o:p></o:p></span></font></p>
<p style="margin-top: 0in"><font size="3"><span style="font-family: 'cambria','serif'; color: blue; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial"><br />
	namespace</span><span style="font-family: 'cambria','serif'; color: black; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial"> MyNamespace<br />
	</span></font><span style="font-family: 'cambria','serif'; color: #222222; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial"><font size="3">{<br />
	</font></span><font size="3"><span style="font-family: 'cambria','serif'; color: blue; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial">&nbsp; class</span><span style="font-family: 'cambria','serif'; color: #222222; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial"> </span><span style="font-family: 'cambria','serif'; color: #2b91af; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial">Program<br />
	</span></font><span style="font-family: 'cambria','serif'; color: #222222; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial"><font size="3">&nbsp; {<br />
	</font></span><font size="3"><span style="font-family: 'cambria','serif'; color: blue; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial">&nbsp;&nbsp;&nbsp; static</span><span style="font-family: 'cambria','serif'; color: #222222; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial"> </span><span style="font-family: 'cambria','serif'; color: blue; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial">void</span><span style="font-family: 'cambria','serif'; color: #222222; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial"> Main(</span><span style="font-family: 'cambria','serif'; color: blue; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial">string</span><span style="font-family: 'cambria','serif'; color: #222222; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial">[] args)<br />
	</span></font><span style="font-family: 'cambria','serif'; color: #222222; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial"><font size="3">&nbsp;&nbsp;&nbsp; {&nbsp;<br />
	</font></span><font size="3"><span style="font-family: 'cambria','serif'; color: #2b91af; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ServiceHost</span><span style="font-family: 'cambria','serif'; color: #222222; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial"> serviceHost = </span><span style="font-family: 'cambria','serif'; color: blue; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial">new</span><span style="font-family: 'cambria','serif'; color: #222222; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial"> </span><span style="font-family: 'cambria','serif'; color: #2b91af; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial">ServiceHost</span><span style="font-family: 'cambria','serif'; color: #222222; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial">(</span><span style="font-family: 'cambria','serif'; color: blue; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial">typeof</span><span style="font-family: 'cambria','serif'; color: #222222; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial">(</span><span style="font-family: 'cambria','serif'; color: #2b91af; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial">ServiceContracts</span><span style="font-family: 'cambria','serif'; color: #222222; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial">));<br />
	</span></font><span style="font-family: 'cambria','serif'; color: #222222; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial"><font size="3">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; serviceHost.Open();<br />
	</font></span><font size="3"><span style="font-family: 'cambria','serif'; color: #2b91af; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Console</span><span style="font-family: 'cambria','serif'; color: #222222; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial">.WriteLine(</span><span style="font-family: 'cambria','serif'; color: #a31515; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial">&quot;Service is running..&quot;</span><span style="font-family: 'cambria','serif'; color: #222222; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial">);<br />
	</span></font><font size="3"><span style="font-family: 'cambria','serif'; color: #2b91af; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Console</span><span style="font-family: 'cambria','serif'; color: #222222; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial">.Read();<br />
	</span></font><span style="font-family: 'cambria','serif'; color: #222222; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial"><font size="3">&nbsp;&nbsp;&nbsp; }<br />
	&nbsp; </font></span><span style="font-family: 'cambria','serif'; color: #222222; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial"><font size="3">}<o:p></o:p></font></span></p>
<p style="margin: 0in 0in 0pt"><font size="3"><span style="font-family: 'cambria','serif'; color: blue; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial">&nbsp; public</span><span style="font-family: 'cambria','serif'; color: #222222; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial"> </span><span style="font-family: 'cambria','serif'; color: blue; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial">class</span><span style="font-family: 'cambria','serif'; color: #222222; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial"> </span><span style="font-family: 'cambria','serif'; color: #2b91af; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial">ServiceContracts</span><span style="font-family: 'cambria','serif'; color: #222222; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial"> : </span><span style="font-family: 'cambria','serif'; color: #2b91af; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial">IServiceContract<o:p></o:p></span></font></p>
<p style="margin: 0in 0in 0pt"><span style="font-family: 'cambria','serif'; color: #222222; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial"><font size="3">&nbsp; {<o:p></o:p></font></span></p>
<p style="margin: 0in 0in 0pt"><font size="3"><span style="font-family: 'cambria','serif'; color: blue; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial">&nbsp;&nbsp;&nbsp; public</span><span style="font-family: 'cambria','serif'; color: #222222; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial"> </span><span style="font-family: 'cambria','serif'; color: blue; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial">void</span><span style="font-family: 'cambria','serif'; color: #222222; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial"> Method1()<o:p></o:p></span></font></p>
<p style="margin: 0in 0in 0pt"><span style="font-family: 'cambria','serif'; color: #222222; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial"><font size="3">&nbsp;&nbsp;&nbsp; {<o:p></o:p></font></span></p>
<p style="margin: 0in 0in 0pt"><font size="3"><span style="font-family: 'cambria','serif'; color: blue; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp; return</span><span style="font-family: 'cambria','serif'; color: #222222; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial">;<o:p></o:p></span></font></p>
<p style="margin: 0in 0in 0pt"><span style="font-family: 'cambria','serif'; color: #222222; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial"><font size="3">&nbsp;&nbsp;&nbsp; }<o:p></o:p></font></span></p>
<p style="margin: 0in 0in 0pt"><span style="font-family: 'cambria','serif'; color: #222222; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial"><font size="3">&nbsp; }<br />
	</font></span></p>
<p style="margin: 0in 0in 0pt"><font size="3"><span style="font-family: 'cambria','serif'; color: blue; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial"><br />
	&nbsp; public</span><span style="font-family: 'cambria','serif'; color: #222222; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial"> </span><span style="font-family: 'cambria','serif'; color: blue; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial">class</span><span style="font-family: 'cambria','serif'; color: #222222; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial"> </span><span style="font-family: 'cambria','serif'; color: #2b91af; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial">EndpointBehaviorMessageInspector</span><span style="font-family: 'cambria','serif'; color: #222222; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial"> : </span><span style="font-family: 'cambria','serif'; color: #2b91af; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial">BehaviorExtensionElement</span><span style="font-family: 'cambria','serif'; color: #222222; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial">, </span><span style="font-family: 'cambria','serif'; color: #2b91af; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial">IDispatchMessageInspector</span><span style="font-family: 'cambria','serif'; color: #222222; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial">, </span><span style="font-family: 'cambria','serif'; color: #2b91af; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial">IClientMessageInspector</span><span style="font-family: 'cambria','serif'; color: #222222; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial">, </span><span style="font-family: 'cambria','serif'; color: #2b91af; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial">IEndpointBehavior<o:p></o:p></span></font></p>
<p style="margin: 0in 0in 0pt"><span style="font-family: 'cambria','serif'; color: #222222; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial"><font size="3">&nbsp; {<o:p></o:p></font></span></p>
<p style="margin: 0in 0in 0pt"><font size="3"><span style="font-family: 'cambria','serif'; color: blue; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial">&nbsp;&nbsp;&nbsp; public</span><span style="font-family: 'cambria','serif'; color: #222222; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial"> </span><span style="font-family: 'cambria','serif'; color: blue; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial">object</span><span style="font-family: 'cambria','serif'; color: #222222; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial"> AfterReceiveRequest(</span><span style="font-family: 'cambria','serif'; color: blue; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial">ref</span><span style="font-family: 'cambria','serif'; color: #222222; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial"> System.ServiceModel.Channels.</span><span style="font-family: 'cambria','serif'; color: #2b91af; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial">Message</span><span style="font-family: 'cambria','serif'; color: #222222; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial"> request, </span><span style="font-family: 'cambria','serif'; color: #2b91af; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial">IClientChannel</span><span style="font-family: 'cambria','serif'; color: #222222; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial"> channel, </span><span style="font-family: 'cambria','serif'; color: #2b91af; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial">InstanceContext</span><span style="font-family: 'cambria','serif'; color: #222222; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial"> instanceContext)<o:p></o:p></span></font></p>
<p style="margin: 0in 0in 0pt"><span style="font-family: 'cambria','serif'; color: #222222; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial"><font size="3">&nbsp; &nbsp; {<o:p></o:p></font></span></p>
<p style="margin: 0in 0in 0pt"><font size="3"><span style="font-family: 'cambria','serif'; color: #2b91af; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial">&nbsp;&nbsp;&nbsp; &nbsp; Console</span><span style="font-family: 'cambria','serif'; color: #222222; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial">.WriteLine(</span><span style="font-family: 'cambria','serif'; color: #a31515; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial">&quot;AfterReceiveRequest called.&quot;</span><span style="font-family: 'cambria','serif'; color: #222222; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial">);<o:p></o:p></span></font></p>
<p style="margin: 0in 0in 0pt"><font size="3"><span style="font-family: 'cambria','serif'; color: blue; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial">&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;return</span><span style="font-family: 'cambria','serif'; color: #222222; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial"> </span><span style="font-family: 'cambria','serif'; color: blue; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial">null</span><span style="font-family: 'cambria','serif'; color: #222222; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial">;<o:p></o:p></span></font></p>
<p style="margin: 0in 0in 0pt"><span style="font-family: 'cambria','serif'; color: #222222; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial"><font size="3">&nbsp;&nbsp;&nbsp; }</p>
<p>	</font></span></p>
<p style="margin: 0in 0in 0pt"><font size="3"><span style="font-family: 'cambria','serif'; color: blue; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial">&nbsp;&nbsp;&nbsp; public</span><span style="font-family: 'cambria','serif'; color: #222222; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial"> </span><span style="font-family: 'cambria','serif'; color: blue; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial">void</span><span style="font-family: 'cambria','serif'; color: #222222; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial"> BeforeSendReply(</span><span style="font-family: 'cambria','serif'; color: blue; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial">ref</span><span style="font-family: 'cambria','serif'; color: #222222; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial"> System.ServiceModel.Channels.</span><span style="font-family: 'cambria','serif'; color: #2b91af; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial">Message</span><span style="font-family: 'cambria','serif'; color: #222222; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial"> reply, </span><span style="font-family: 'cambria','serif'; color: blue; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial">object</span><span style="font-family: 'cambria','serif'; color: #222222; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial"> correlationState)<o:p></o:p></span></font></p>
<p style="margin: 0in 0in 0pt"><span style="font-family: 'cambria','serif'; color: #222222; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial"><font size="3">&nbsp; &nbsp; {<o:p></o:p></font></span></p>
<p style="margin: 0in 0in 0pt"><font size="3"><span style="font-family: 'cambria','serif'; color: #2b91af; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial">&nbsp;&nbsp;&nbsp; &nbsp; Console</span><span style="font-family: 'cambria','serif'; color: #222222; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial">.WriteLine(</span><span style="font-family: 'cambria','serif'; color: #a31515; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial">&quot;BeforeSendReply called.&quot;</span><span style="font-family: 'cambria','serif'; color: #222222; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial">);<o:p></o:p></span></font></p>
<p style="margin: 0in 0in 0pt"><span style="font-family: 'cambria','serif'; color: #222222; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial"><font size="3">&nbsp;&nbsp;&nbsp; }<o:p></o:p></font></span></p>
<p style="margin: 0in 0in 0pt"><font size="3"><span style="font-family: 'cambria','serif'; color: blue; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial"><br />
	&nbsp;&nbsp;&nbsp; public</span><span style="font-family: 'cambria','serif'; color: #222222; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial"> </span><span style="font-family: 'cambria','serif'; color: blue; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial">override</span><span style="font-family: 'cambria','serif'; color: #222222; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial"> </span><span style="font-family: 'cambria','serif'; color: #2b91af; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial">Type</span><span style="font-family: 'cambria','serif'; color: #222222; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial"> BehaviorType<o:p></o:p></span></font></p>
<p style="margin: 0in 0in 0pt"><span style="font-family: 'cambria','serif'; color: #222222; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial"><font size="3">&nbsp;&nbsp;&nbsp; {<o:p></o:p></font></span></p>
<p style="margin: 0in 0in 0pt"><font size="3"><span style="font-family: 'cambria','serif'; color: blue; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial">&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;get</span><span style="font-family: 'cambria','serif'; color: #222222; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial"> { </span><span style="font-family: 'cambria','serif'; color: blue; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial">return</span><span style="font-family: 'cambria','serif'; color: #222222; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial"> </span><span style="font-family: 'cambria','serif'; color: blue; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial">typeof</span><span style="font-family: 'cambria','serif'; color: #222222; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial">(</span><span style="font-family: 'cambria','serif'; color: #2b91af; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial">EndpointBehaviorMessageInspector</span><span style="font-family: 'cambria','serif'; color: #222222; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial">); }<o:p></o:p></span></font></p>
<p style="margin: 0in 0in 0pt"><span style="font-family: 'cambria','serif'; color: #222222; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial"><font size="3">&nbsp;&nbsp;&nbsp; }<o:p></o:p></font></span></p>
<p style="margin-top: 0in"><font size="3"><span style="font-family: 'cambria','serif'; color: blue; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial"><br />
	&nbsp;&nbsp;&nbsp; protected</span><span style="font-family: 'cambria','serif'; color: #222222; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial"> </span><span style="font-family: 'cambria','serif'; color: blue; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial">override</span><span style="font-family: 'cambria','serif'; color: #222222; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial"> </span><span style="font-family: 'cambria','serif'; color: blue; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial">object</span><span style="font-family: 'cambria','serif'; color: #222222; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial"> CreateBehavior()<br />
	&nbsp;&nbsp;&nbsp; </span></font><span style="font-family: 'cambria','serif'; color: #222222; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial"><font size="3">{<br />
	&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;</font></span><font size="3"><span style="font-family: 'cambria','serif'; color: blue; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial">return</span><span style="font-family: 'cambria','serif'; color: #222222; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial"> </span><span style="font-family: 'cambria','serif'; color: blue; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial">new</span><span style="font-family: 'cambria','serif'; color: #222222; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial"> </span><span style="font-family: 'cambria','serif'; color: #2b91af; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial">EndpointBehaviorMessageInspector</span><span style="font-family: 'cambria','serif'; color: #222222; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial">();<br />
	</span></font><span style="font-family: 'cambria','serif'; color: #222222; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial"><font size="3">&nbsp;&nbsp;&nbsp; }<o:p></o:p></font></span></p>
<p style="margin-top: 0in"><font size="3"><span style="font-family: 'cambria','serif'; color: blue; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial">&nbsp;&nbsp;&nbsp; public</span><span style="font-family: 'cambria','serif'; color: #222222; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial"> </span><span style="font-family: 'cambria','serif'; color: blue; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial">void</span><span style="font-family: 'cambria','serif'; color: #222222; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial"> AfterReceiveReply(</span><span style="font-family: 'cambria','serif'; color: blue; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial">ref</span><span style="font-family: 'cambria','serif'; color: #222222; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial"> System.ServiceModel.Channels.</span><span style="font-family: 'cambria','serif'; color: #2b91af; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial">Message</span><span style="font-family: 'cambria','serif'; color: #222222; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial"> reply, </span><span style="font-family: 'cambria','serif'; color: blue; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial">object</span><span style="font-family: 'cambria','serif'; color: #222222; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial"> correlationState)<br />
	</span></font><span style="font-family: 'cambria','serif'; color: #222222; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial"><font size="3">&nbsp; &nbsp; {<br />
	&nbsp;&nbsp;&nbsp; &nbsp; </font></span><font size="3"><span style="font-family: 'cambria','serif'; color: blue; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial">return</span><span style="font-family: 'cambria','serif'; color: #222222; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial">;<br />
	</span></font><span style="font-family: 'cambria','serif'; color: #222222; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial"><font size="3">&nbsp;&nbsp;&nbsp; }</p>
<p>	</font></span><font size="3"><span style="font-family: 'cambria','serif'; color: blue; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial">&nbsp;&nbsp;&nbsp; public</span><span style="font-family: 'cambria','serif'; color: #222222; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial"> </span><span style="font-family: 'cambria','serif'; color: blue; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial">object</span><span style="font-family: 'cambria','serif'; color: #222222; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial"> BeforeSendRequest(</span><span style="font-family: 'cambria','serif'; color: blue; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial">ref</span><span style="font-family: 'cambria','serif'; color: #222222; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial"> System.ServiceModel.Channels.</span><span style="font-family: 'cambria','serif'; color: #2b91af; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial">Message</span><span style="font-family: 'cambria','serif'; color: #222222; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial"> request, </span><span style="font-family: 'cambria','serif'; color: #2b91af; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial">IClientChannel</span><span style="font-family: 'cambria','serif'; color: #222222; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial"> channel)<br />
	</span></font><span style="font-family: 'cambria','serif'; color: #222222; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial"><font size="3">&nbsp;&nbsp; &nbsp;{<br />
	</font></span><font size="3"><span style="font-family: 'cambria','serif'; color: blue; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial">&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;return</span><span style="font-family: 'cambria','serif'; color: #222222; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial"> </span><span style="font-family: 'cambria','serif'; color: #a31515; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial">&quot;&quot;</span><span style="font-family: 'cambria','serif'; color: #222222; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial">;<br />
	</span></font><span style="font-family: 'cambria','serif'; color: #222222; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial"><font size="3">&nbsp;&nbsp;&nbsp; }</p>
<p>	</font></span><span style="font-family: 'cambria','serif'; color: green; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial"><font size="3">&nbsp;&nbsp;&nbsp; // IEndpointBehavior Members<br />
	</font></span><font size="3"><font color="#222222"><span style="font-family: 'cambria','serif'; color: blue; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial">&nbsp;&nbsp;&nbsp; public</span><span style="font-family: 'cambria','serif'; color: #222222; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial"> </span><span style="font-family: 'cambria','serif'; color: blue; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial">void</span><span style="font-family: 'cambria','serif'; color: #222222; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial"> AddBindingParameters(</span><span style="font-family: 'cambria','serif'; color: #2b91af; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial">ServiceEndpoint</span><span style="font-family: 'cambria','serif'; color: #222222; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial"> serviceEndpoint, System.ServiceModel.Channels.</span><span style="font-family: 'cambria','serif'; color: #2b91af; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial">BindingParameterCollection</span></font><span style="font-family: 'cambria','serif'; color: #222222; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial"> bindingParameters)<br />
	</span></font><span style="font-family: 'cambria','serif'; color: #222222; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial"><font size="3">&nbsp;&nbsp;&nbsp; {<br />
	</font></span><font size="3"><span style="font-family: 'cambria','serif'; color: blue; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial"><font color="#222222">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; return</font></span><span style="font-family: 'cambria','serif'; color: #222222; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial">;<br />
	</span></font><span style="font-family: 'cambria','serif'; color: #222222; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial"><font size="3">&nbsp;&nbsp;&nbsp; }</p>
<p>	</font></span><font size="3"><font color="#222222"><span style="font-family: 'cambria','serif'; color: blue; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial">&nbsp;&nbsp;&nbsp; public</span><span style="font-family: 'cambria','serif'; color: #222222; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial"> </span><span style="font-family: 'cambria','serif'; color: blue; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial">void</span><span style="font-family: 'cambria','serif'; color: #222222; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial"> ApplyClientBehavior(</span><span style="font-family: 'cambria','serif'; color: #2b91af; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial">ServiceEndpoint</span><span style="font-family: 'cambria','serif'; color: #222222; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial"> serviceEndpoint, </span><span style="font-family: 'cambria','serif'; color: #2b91af; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial">ClientRuntime</span></font><span style="font-family: 'cambria','serif'; color: #222222; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial"> behavior)<br />
	</span></font><span style="font-family: 'cambria','serif'; color: #222222; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial"><font size="3">&nbsp;&nbsp;&nbsp; {<br />
	</font></span><font size="3"><span style="font-family: 'cambria','serif'; color: #222222; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; behavior.MessageInspectors.Add(</span><font color="#222222"><span style="font-family: 'cambria','serif'; color: blue; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial">new</span><span style="font-family: 'cambria','serif'; color: #222222; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial"> </span><span style="font-family: 'cambria','serif'; color: #2b91af; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial">EndpointBehaviorMessageInspector</span></font><span style="font-family: 'cambria','serif'; color: #222222; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial">());<br />
	</span></font><span style="font-family: 'cambria','serif'; color: #222222; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial"><font size="3">&nbsp;&nbsp;&nbsp; }</p>
<p>	</font></span><font size="3"><font color="#222222"><span style="font-family: 'cambria','serif'; color: blue; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial">&nbsp;&nbsp;&nbsp; public</span><span style="font-family: 'cambria','serif'; color: #222222; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial"> </span><span style="font-family: 'cambria','serif'; color: blue; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial">void</span><span style="font-family: 'cambria','serif'; color: #222222; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial"> ApplyDispatchBehavior(</span><span style="font-family: 'cambria','serif'; color: #2b91af; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial">ServiceEndpoint</span><span style="font-family: 'cambria','serif'; color: #222222; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial"> serviceEndpoint, </span><span style="font-family: 'cambria','serif'; color: #2b91af; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial">EndpointDispatcher</span></font><span style="font-family: 'cambria','serif'; color: #222222; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial"> endpointDispatcher)<br />
	</span></font><span style="font-family: 'cambria','serif'; color: #222222; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial"><font size="3">&nbsp; &nbsp; {<br />
	</font></span><font size="3"><span style="font-family: 'cambria','serif'; color: #222222; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial">&nbsp;&nbsp;&nbsp; &nbsp; endpointDispatcher.DispatchRuntime.MessageInspectors.Add(</span><font color="#222222"><span style="font-family: 'cambria','serif'; color: blue; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial">new </span><span style="font-family: 'cambria','serif'; color: #2b91af; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial">EndpointBehaviorMessageInspector</span></font><span style="font-family: 'cambria','serif'; color: #222222; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial">());<br />
	</span></font><span style="font-family: 'cambria','serif'; color: #222222; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial"><font size="3">&nbsp;&nbsp;&nbsp; }</p>
<p>	</font></span><font size="3"><font color="#222222"><span style="font-family: 'cambria','serif'; color: blue; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial">&nbsp;&nbsp;&nbsp; public</span><span style="font-family: 'cambria','serif'; color: #222222; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial"> </span><span style="font-family: 'cambria','serif'; color: blue; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial">void</span><span style="font-family: 'cambria','serif'; color: #222222; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial"> Validate(</span><span style="font-family: 'cambria','serif'; color: #2b91af; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial">ServiceEndpoint</span></font><span style="font-family: 'cambria','serif'; color: #222222; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial"> serviceEndpoint)<br />
	</span></font><span style="font-family: 'cambria','serif'; color: #222222; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial"><font size="3">&nbsp;&nbsp;&nbsp; {<br />
	</font></span><font size="3"><font color="#222222"><span style="font-family: 'cambria','serif'; color: blue; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial">&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;if</span><span style="font-family: 'cambria','serif'; color: #222222; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial"> (serviceEndpoint.Contract.Operations[0].IsOneWay.Equals(</span><span style="font-family: 'cambria','serif'; color: blue; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial">false</span></font><span style="font-family: 'cambria','serif'; color: #222222; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial">))<br />
	</span></font><span style="font-family: 'cambria','serif'; color: #222222; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial"><font size="3">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; {<br />
	</font></span><font size="3"><font color="#222222"><span style="font-family: 'cambria','serif'; color: blue; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; throw</span><span style="font-family: 'cambria','serif'; color: #222222; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial"> </span><span style="font-family: 'cambria','serif'; color: blue; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial">new</span><span style="font-family: 'cambria','serif'; color: #222222; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial"> </span><span style="font-family: 'cambria','serif'; color: #2b91af; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial">ArgumentException</span><span style="font-family: 'cambria','serif'; color: #222222; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial">(</span><span style="font-family: 'cambria','serif'; color: #a31515; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial">&quot;One way is not allowed&quot;</span></font><span style="font-family: 'cambria','serif'; color: #222222; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial">);<br />
	</span></font><span style="font-family: 'cambria','serif'; color: #222222; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial"><font size="3">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; }<br />
	</font></span><span style="font-family: 'cambria','serif'; color: #222222; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial"><font size="3">&nbsp;&nbsp;&nbsp; }<br />
	</font></span><span style="font-family: 'cambria','serif'; color: #222222; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial"><font size="3">&nbsp; }</p>
<p>	</font></span><font size="3"><font color="#222222"><span style="font-family: 'cambria','serif'; color: blue; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial">&nbsp; public</span><span style="font-family: 'cambria','serif'; color: #222222; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial"> </span><span style="font-family: 'cambria','serif'; color: blue; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial">class</span><span style="font-family: 'cambria','serif'; color: #222222; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial"> </span><span style="font-family: 'cambria','serif'; color: #2b91af; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial">EnforceGreetingFaultBehavior</span><span style="font-family: 'cambria','serif'; color: #222222; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial"> : </span><span style="font-family: 'cambria','serif'; color: #2b91af; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial">BehaviorExtensionElement</span><span style="font-family: 'cambria','serif'; color: #222222; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial">, </span><span style="font-family: 'cambria','serif'; color: #2b91af; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial">IServiceBehavior</span><span style="font-family: 'cambria','serif'; color: #222222; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial">, </span></font><span style="font-family: 'cambria','serif'; color: #2b91af; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial"><font color="#222222">IEndpointBehavior<br />
	</font></span></font><span style="font-family: 'cambria','serif'; color: #222222; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial"><font size="3">&nbsp; {<br />
	</font></span><font size="3"><font color="#222222"><span style="font-family: 'cambria','serif'; color: blue; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial">&nbsp;&nbsp;&nbsp; public</span><span style="font-family: 'cambria','serif'; color: #222222; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial"> </span><span style="font-family: 'cambria','serif'; color: blue; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial">void</span><span style="font-family: 'cambria','serif'; color: #222222; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial"> AddBindingParameters(</span><span style="font-family: 'cambria','serif'; color: #2b91af; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial">ServiceDescription</span><span style="font-family: 'cambria','serif'; color: #222222; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial"> serviceDescription, </span><span style="font-family: 'cambria','serif'; color: #2b91af; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial">ServiceHostBase</span><span style="font-family: 'cambria','serif'; color: #222222; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial"> serviceHostBase, System.Collections.ObjectModel.</span><span style="font-family: 'cambria','serif'; color: #2b91af; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial">Collection</span><span style="font-family: 'cambria','serif'; color: #222222; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial">&lt;</span><span style="font-family: 'cambria','serif'; color: #2b91af; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial">ServiceEndpoint</span><span style="font-family: 'cambria','serif'; color: #222222; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial">&gt; endpoints, System.ServiceModel.Channels.</span><span style="font-family: 'cambria','serif'; color: #2b91af; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial">BindingParameterCollection</span></font><span style="font-family: 'cambria','serif'; color: #222222; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial"> bindingParameters)<br />
	</span></font><span style="font-family: 'cambria','serif'; color: #222222; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial"><font size="3">&nbsp; &nbsp; {<br />
	</font></span><font size="3"><span style="font-family: 'cambria','serif'; color: blue; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial"><font color="#222222">&nbsp;&nbsp;&nbsp; &nbsp; return</font></span><span style="font-family: 'cambria','serif'; color: #222222; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial">;<br />
	</span></font><span style="font-family: 'cambria','serif'; color: #222222; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial"><font size="3">&nbsp;&nbsp;&nbsp; }</p>
<p>	</font></span><font size="3"><font color="#222222"><span style="font-family: 'cambria','serif'; color: blue; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial">&nbsp;&nbsp;&nbsp; public</span><span style="font-family: 'cambria','serif'; color: #222222; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial"> </span><span style="font-family: 'cambria','serif'; color: blue; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial">void</span><span style="font-family: 'cambria','serif'; color: #222222; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial"> ApplyDispatchBehavior(</span><span style="font-family: 'cambria','serif'; color: #2b91af; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial">ServiceDescription</span><span style="font-family: 'cambria','serif'; color: #222222; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial"> serviceDescription, </span><span style="font-family: 'cambria','serif'; color: #2b91af; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial">ServiceHostBase</span></font><span style="font-family: 'cambria','serif'; color: #222222; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial"> serviceHostBase)<br />
	</span></font><span style="font-family: 'cambria','serif'; color: #222222; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial"><font size="3">&nbsp;&nbsp;&nbsp; {<br />
	</font></span><font size="3"><span style="font-family: 'cambria','serif'; color: blue; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial"><font color="#222222">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; return</font></span><span style="font-family: 'cambria','serif'; color: #222222; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial">;<br />
	</span></font><font size="3"><span style="font-family: 'cambria','serif'; color: blue; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial"><font color="#222222">&nbsp;&nbsp;&nbsp; }</p>
<p>	</font>&nbsp;&nbsp;&nbsp; public</span><span style="font-family: 'cambria','serif'; color: #222222; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial"> </span><span style="font-family: 'cambria','serif'; color: blue; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial">void</span><span style="font-family: 'cambria','serif'; color: #222222; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial"> Validate(</span><span style="font-family: 'cambria','serif'; color: #2b91af; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial">ServiceDescription</span><span style="font-family: 'cambria','serif'; color: #222222; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial"> serviceDescription, </span><span style="font-family: 'cambria','serif'; color: #2b91af; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial">ServiceHostBase</span><span style="font-family: 'cambria','serif'; color: #222222; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial"> serviceHostBase)<br />
	</span></font><span style="font-family: 'cambria','serif'; color: #222222; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial"><font size="3">&nbsp;&nbsp;&nbsp; {<br />
	</font></span><font size="3"><span style="font-family: 'cambria','serif'; color: blue; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; foreach</span><span style="font-family: 'cambria','serif'; color: #222222; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial"> (</span><span style="font-family: 'cambria','serif'; color: #2b91af; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial">ServiceEndpoint</span><span style="font-family: 'cambria','serif'; color: #222222; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial"> se </span><span style="font-family: 'cambria','serif'; color: blue; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial">in</span><span style="font-family: 'cambria','serif'; color: #222222; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial"> serviceDescription.Endpoints)<br />
	</span></font><span style="font-family: 'cambria','serif'; color: #222222; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial"><font size="3">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; {<br />
	</font></span><font size="3"><span style="font-family: 'cambria','serif'; color: blue; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;if</span><span style="font-family: 'cambria','serif'; color: #222222; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial"> (se.Contract.Operations[0].IsOneWay.Equals(</span><span style="font-family: 'cambria','serif'; color: blue; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial">false</span><span style="font-family: 'cambria','serif'; color: #222222; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial">))<br />
	</span></font><span style="font-family: 'cambria','serif'; color: #222222; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial"><font size="3">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; {<br />
	</font></span><font size="3"><span style="font-family: 'cambria','serif'; color: blue; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;throw</span><span style="font-family: 'cambria','serif'; color: #222222; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial"> </span><span style="font-family: 'cambria','serif'; color: blue; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial">new</span><span style="font-family: 'cambria','serif'; color: #222222; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial"> </span><span style="font-family: 'cambria','serif'; color: #2b91af; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial">ArgumentException</span><span style="font-family: 'cambria','serif'; color: #222222; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial">(</span><span style="font-family: 'cambria','serif'; color: #a31515; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial">&quot;Sorry, contract needs to be two way&quot;</span><span style="font-family: 'cambria','serif'; color: #222222; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial">);<br />
	</span></font><span style="font-family: 'cambria','serif'; color: #222222; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial"><font size="3">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; }<br />
	</font></span><span style="font-family: 'cambria','serif'; color: #222222; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial"><font size="3">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; }<br />
	</font></span><span style="font-family: 'cambria','serif'; color: #222222; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial"><font size="3">&nbsp;&nbsp;&nbsp; }</p>
<p>	</font></span><font size="3"><span style="font-family: 'cambria','serif'; color: blue; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial">&nbsp;&nbsp;&nbsp; public</span><span style="font-family: 'cambria','serif'; color: #222222; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial"> </span><span style="font-family: 'cambria','serif'; color: blue; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial">override</span><span style="font-family: 'cambria','serif'; color: #222222; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial"> </span><span style="font-family: 'cambria','serif'; color: #2b91af; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial">Type</span><span style="font-family: 'cambria','serif'; color: #222222; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial"> BehaviorType<br />
	</span></font><span style="font-family: 'cambria','serif'; color: #222222; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial"><font size="3">&nbsp;&nbsp;&nbsp; {<br />
	</font></span><font size="3"><span style="font-family: 'cambria','serif'; color: blue; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; get</span><span style="font-family: 'cambria','serif'; color: #222222; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial"> { </span><span style="font-family: 'cambria','serif'; color: blue; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial">return</span><span style="font-family: 'cambria','serif'; color: #222222; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial"> </span><span style="font-family: 'cambria','serif'; color: blue; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial">typeof</span><span style="font-family: 'cambria','serif'; color: #222222; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial">(</span><span style="font-family: 'cambria','serif'; color: #2b91af; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial">EnforceGreetingFaultBehavior</span><span style="font-family: 'cambria','serif'; color: #222222; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial">); }<br />
	</span></font><span style="font-family: 'cambria','serif'; color: #222222; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial"><font size="3">&nbsp;&nbsp;&nbsp; }<br />
	</font></span><font size="3"><span style="font-family: 'cambria','serif'; color: blue; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial"><br />
	&nbsp;&nbsp;&nbsp; protected</span><span style="font-family: 'cambria','serif'; color: #222222; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial"> </span><span style="font-family: 'cambria','serif'; color: blue; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial">override</span><span style="font-family: 'cambria','serif'; color: #222222; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial"> </span><span style="font-family: 'cambria','serif'; color: blue; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial">object</span><span style="font-family: 'cambria','serif'; color: #222222; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial"> CreateBehavior()<br />
	</span></font><span style="font-family: 'cambria','serif'; color: #222222; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial"><font size="3">&nbsp;&nbsp;&nbsp; {<br />
	</font></span><font size="3"><span style="font-family: 'cambria','serif'; color: blue; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial">&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;return</span><span style="font-family: 'cambria','serif'; color: #222222; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial"> </span><span style="font-family: 'cambria','serif'; color: blue; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial">new</span><span style="font-family: 'cambria','serif'; color: #222222; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial"> </span><span style="font-family: 'cambria','serif'; color: #2b91af; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial">EnforceGreetingFaultBehavior</span><span style="font-family: 'cambria','serif'; color: #222222; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial">();<br />
	</span></font><span style="font-family: 'cambria','serif'; color: #222222; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial"><font size="3">&nbsp;&nbsp;&nbsp; }</p>
<p>	</font></span><font size="3"><span style="font-family: 'cambria','serif'; color: blue; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial">&nbsp;&nbsp;&nbsp; public</span><span style="font-family: 'cambria','serif'; color: #222222; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial"> </span><span style="font-family: 'cambria','serif'; color: blue; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial">void</span><span style="font-family: 'cambria','serif'; color: #222222; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial"> AddBindingParameters(</span><span style="font-family: 'cambria','serif'; color: #2b91af; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial">ServiceEndpoint</span><span style="font-family: 'cambria','serif'; color: #222222; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial"> endpoint, System.ServiceModel.Channels.</span><span style="font-family: 'cambria','serif'; color: #2b91af; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial">BindingParameterCollection</span><span style="font-family: 'cambria','serif'; color: #222222; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial"> bindingParameters)<br />
	</span></font><span style="font-family: 'cambria','serif'; color: #222222; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial"><font size="3">&nbsp;&nbsp;&nbsp; {<br />
	</font></span><font size="3"><span style="font-family: 'cambria','serif'; color: blue; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; return</span><span style="font-family: 'cambria','serif'; color: #222222; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial">;<br />
	</span></font><span style="font-family: 'cambria','serif'; color: #222222; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial"><font size="3">&nbsp;&nbsp;&nbsp; }</p>
<p>	</font></span><font size="3"><span style="font-family: 'cambria','serif'; color: blue; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial">&nbsp;&nbsp;&nbsp; public</span><span style="font-family: 'cambria','serif'; color: #222222; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial"> </span><span style="font-family: 'cambria','serif'; color: blue; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial">void</span><span style="font-family: 'cambria','serif'; color: #222222; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial"> ApplyClientBehavior(</span><span style="font-family: 'cambria','serif'; color: #2b91af; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial">ServiceEndpoint</span><span style="font-family: 'cambria','serif'; color: #222222; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial"> endpoint, </span><span style="font-family: 'cambria','serif'; color: #2b91af; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial">ClientRuntime</span><span style="font-family: 'cambria','serif'; color: #222222; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial"> clientRuntime)<br />
	</span></font><span style="font-family: 'cambria','serif'; color: #222222; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial"><font size="3">&nbsp;&nbsp;&nbsp; {<br />
	</font></span><font size="3"><span style="font-family: 'cambria','serif'; color: blue; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial">&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;return</span><span style="font-family: 'cambria','serif'; color: #222222; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial">;<br />
	</span></font><span style="font-family: 'cambria','serif'; color: #222222; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial"><font size="3">&nbsp;&nbsp;&nbsp; }<br />
	</font></span><font size="3"><span style="font-family: 'cambria','serif'; color: blue; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial"><br />
	&nbsp;&nbsp; &nbsp;public</span><span style="font-family: 'cambria','serif'; color: #222222; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial"> </span><span style="font-family: 'cambria','serif'; color: blue; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial">void</span><span style="font-family: 'cambria','serif'; color: #222222; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial"> ApplyDispatchBehavior(</span><span style="font-family: 'cambria','serif'; color: #2b91af; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial">ServiceEndpoint</span><span style="font-family: 'cambria','serif'; color: #222222; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial"> endpoint, </span><span style="font-family: 'cambria','serif'; color: #2b91af; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial">EndpointDispatcher</span><span style="font-family: 'cambria','serif'; color: #222222; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial"> endpointDispatcher)<br />
	</span></font><span style="font-family: 'cambria','serif'; color: #222222; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial"><font size="3">&nbsp;&nbsp;&nbsp; {<br />
	</font></span><font size="3"><span style="font-family: 'cambria','serif'; color: blue; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; return</span><span style="font-family: 'cambria','serif'; color: #222222; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial">;<br />
	</span></font><span style="font-family: 'cambria','serif'; color: #222222; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial"><font size="3">&nbsp;&nbsp;&nbsp; }</p>
<p>	</font></span><font size="3"><span style="font-family: 'cambria','serif'; color: blue; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial">&nbsp;&nbsp; &nbsp;public</span><span style="font-family: 'cambria','serif'; color: #222222; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial"> </span><span style="font-family: 'cambria','serif'; color: blue; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial">void</span><span style="font-family: 'cambria','serif'; color: #222222; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial"> Validate(</span><span style="font-family: 'cambria','serif'; color: #2b91af; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial">ServiceEndpoint</span><span style="font-family: 'cambria','serif'; color: #222222; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial"> endpoint)<br />
	</span></font><span style="font-family: 'cambria','serif'; color: #222222; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial"><font size="3">&nbsp;&nbsp;&nbsp; {<br />
	</font></span><font size="3"><span style="font-family: 'cambria','serif'; color: blue; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; throw</span><span style="font-family: 'cambria','serif'; color: #222222; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial"> </span><span style="font-family: 'cambria','serif'; color: blue; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial">new</span><span style="font-family: 'cambria','serif'; color: #222222; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial"> </span><span style="font-family: 'cambria','serif'; color: #2b91af; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial">NotImplementedException</span><span style="font-family: 'cambria','serif'; color: #222222; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial">();<br />
	</span></font><span style="font-family: 'cambria','serif'; color: #222222; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial"><font size="3">&nbsp;&nbsp;&nbsp; }<br />
	</font></span><span style="font-family: 'cambria','serif'; color: #222222; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial"><font size="3">&nbsp; }<br />
	</font></span><font size="3"><span style="font-family: 'cambria','serif'; color: #222222; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial"><br />
	&nbsp; [</span><span style="font-family: 'cambria','serif'; color: #2b91af; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial">ServiceContract</span><span style="font-family: 'cambria','serif'; color: #222222; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial">]<br />
	</span></font><font size="3"><span style="font-family: 'cambria','serif'; color: blue; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial">&nbsp; public</span><span style="font-family: 'cambria','serif'; color: #222222; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial"> </span><span style="font-family: 'cambria','serif'; color: blue; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial">interface</span><span style="font-family: 'cambria','serif'; color: #222222; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial"> </span><span style="font-family: 'cambria','serif'; color: #2b91af; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial">IServiceContract<br />
	</span></font><span style="font-family: 'cambria','serif'; color: #222222; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial"><font size="3">&nbsp; {<br />
	</font></span><font size="3"><span style="font-family: 'cambria','serif'; color: #222222; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial">&nbsp;&nbsp; &nbsp;[</span><span style="font-family: 'cambria','serif'; color: #2b91af; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial">OperationContract</span><span style="font-family: 'cambria','serif'; color: #222222; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial">(IsOneWay = </span><span style="font-family: 'cambria','serif'; color: blue; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial">false</span><span style="font-family: 'cambria','serif'; color: #222222; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial">)]<br />
	</span></font><font size="3"><span style="font-family: 'cambria','serif'; color: blue; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial">&nbsp;&nbsp;&nbsp; void</span><span style="font-family: 'cambria','serif'; color: #222222; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial"> Method1();<br />
	</span></font><span style="font-family: 'cambria','serif'; color: #222222; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial"><font size="3">&nbsp;&nbsp;&nbsp; }<br />
	</font></span><span style="font-family: 'cambria','serif'; color: #222222; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: arial"><font size="3">}</p>
<p>	</font></span><font size="3"><span style="font-family: 'ms mincho'; color: #222222; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: 'ms mincho'; mso-ascii-font-family: cambria; mso-hansi-font-family: cambria">Application configuration file to add behaviour is below.</p>
<p>	</span></font><font size="3"><font face="Cambria"><span style="color: blue; mso-bidi-font-family: consolas">&lt;?</span><span style="color: #a31515; mso-bidi-font-family: consolas">xml</span><span style="color: blue; mso-bidi-font-family: consolas"> </span><span style="color: red; mso-bidi-font-family: consolas">version</span><span style="color: blue; mso-bidi-font-family: consolas">=</span><span style="mso-bidi-font-family: consolas"><font color="#000000">&quot;</font><span style="color: blue">1.0</span><font color="#000000">&quot;</font><span style="color: blue">?&gt;<br />
	</span></span></font></font><font size="3"><font face="Cambria"><span style="color: blue; mso-bidi-font-family: consolas">&lt;</span><span style="color: #a31515; mso-bidi-font-family: consolas">configuration</span><span style="color: blue; mso-bidi-font-family: consolas">&gt;<br />
	</span></font></font><font size="3"><font face="Cambria"><span style="color: blue; mso-bidi-font-family: consolas"><span style="mso-tab-count: 1">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>&lt;</span><span style="color: #a31515; mso-bidi-font-family: consolas">system.serviceModel</span><span style="color: blue; mso-bidi-font-family: consolas">&gt;<br />
	</span></font></font><font size="3"><font face="Cambria"><span style="color: blue; mso-bidi-font-family: consolas"><span style="mso-tab-count: 2">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>&lt;</span><span style="color: #a31515; mso-bidi-font-family: consolas">bindings</span><span style="color: blue; mso-bidi-font-family: consolas">&gt;<br />
	</span></font></font><font size="3"><font face="Cambria"><span style="color: blue; mso-bidi-font-family: consolas"><span style="mso-tab-count: 3">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>&lt;</span><span style="color: #a31515; mso-bidi-font-family: consolas">basicHttpBinding</span><span style="color: blue; mso-bidi-font-family: consolas">&gt;<br />
	</span></font></font><font size="3"><font face="Cambria"><span style="color: blue; mso-bidi-font-family: consolas"><span style="mso-tab-count: 4">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>&lt;</span><span style="color: #a31515; mso-bidi-font-family: consolas">binding</span><span style="color: blue; mso-bidi-font-family: consolas"> </span><span style="color: red; mso-bidi-font-family: consolas">name</span><span style="color: blue; mso-bidi-font-family: consolas">=</span><span style="mso-bidi-font-family: consolas"><font color="#000000">&quot;</font><span style="color: blue">basicHttpConfig</span><font color="#000000">&quot;</font><span style="color: blue">&gt;<br />
	</span></span></font></font><font size="3"><font face="Cambria"><span style="color: blue; mso-bidi-font-family: consolas"><span style="mso-tab-count: 4">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>&lt;/</span><span style="color: #a31515; mso-bidi-font-family: consolas">binding</span><span style="color: blue; mso-bidi-font-family: consolas">&gt;<br />
	</span></font></font><font size="3"><font face="Cambria"><span style="color: blue; mso-bidi-font-family: consolas"><span style="mso-tab-count: 3">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>&lt;/</span><span style="color: #a31515; mso-bidi-font-family: consolas">basicHttpBinding</span><span style="color: blue; mso-bidi-font-family: consolas">&gt;<span style="mso-tab-count: 3">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br />
	</span></span></font></font><font size="3"><font face="Cambria"><span style="color: blue; mso-bidi-font-family: consolas"><span style="mso-tab-count: 2">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>&lt;/</span><span style="color: #a31515; mso-bidi-font-family: consolas">bindings</span><span style="color: blue; mso-bidi-font-family: consolas">&gt;<br />
	</span></font></font><font size="3"><font face="Cambria"><span style="color: blue; mso-bidi-font-family: consolas"><span style="mso-tab-count: 2">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>&lt;</span><span style="color: #a31515; mso-bidi-font-family: consolas">services</span><span style="color: blue; mso-bidi-font-family: consolas">&gt;<br />
	</span></font></font><font size="3"><font face="Cambria"><span style="color: blue; mso-bidi-font-family: consolas"><span style="mso-tab-count: 3">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>&lt;</span><span style="color: #a31515; mso-bidi-font-family: consolas">service</span><span style="color: blue; mso-bidi-font-family: consolas"> </span><span style="color: red; mso-bidi-font-family: consolas">name</span><span style="color: blue; mso-bidi-font-family: consolas">=</span><span style="mso-bidi-font-family: consolas"><font color="#000000">&quot;</font><span style="color: blue">MyNamespace.ServiceContracts</span><font color="#000000">&quot;</font><span style="color: blue"> </span><span style="color: red">behaviorConfiguration</span><span style="color: blue">=</span><font color="#000000">&quot;</font><span style="color: blue">metadataSupport</span><font color="#000000">&quot;</font><span style="color: blue">&gt;<br />
	</span></span></font></font><font size="3"><font face="Cambria"><span style="color: blue; mso-bidi-font-family: consolas"><span style="mso-tab-count: 4">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>&lt;</span><span style="color: #a31515; mso-bidi-font-family: consolas">host</span><span style="color: blue; mso-bidi-font-family: consolas">&gt;<br />
	</span></font></font><font size="3"><font face="Cambria"><span style="color: blue; mso-bidi-font-family: consolas"><span style="mso-tab-count: 5">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>&lt;</span><span style="color: #a31515; mso-bidi-font-family: consolas">baseAddresses</span><span style="color: blue; mso-bidi-font-family: consolas">&gt;<br />
	</span></font></font><font size="3"><font face="Cambria"><span style="color: blue; mso-bidi-font-family: consolas"><span style="mso-tab-count: 6">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>&lt;</span><span style="color: #a31515; mso-bidi-font-family: consolas">add</span><span style="color: blue; mso-bidi-font-family: consolas"> </span><span style="color: red; mso-bidi-font-family: consolas">baseAddress</span><span style="color: blue; mso-bidi-font-family: consolas">=</span><span style="mso-bidi-font-family: consolas"><font color="#000000">&quot;</font><span style="color: blue">http://localhost:50002/MyAddressOn</span><font color="#000000">&quot;</font><span style="color: blue">/&gt;<br />
	</span></span></font></font><font size="3"><font face="Cambria"><span style="color: blue; mso-bidi-font-family: consolas"><span style="mso-tab-count: 5">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>&lt;/</span><span style="color: #a31515; mso-bidi-font-family: consolas">baseAddresses</span><span style="color: blue; mso-bidi-font-family: consolas">&gt;<br />
	</span></font></font><font size="3"><font face="Cambria"><span style="color: blue; mso-bidi-font-family: consolas"><span style="mso-tab-count: 4">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>&lt;/</span><span style="color: #a31515; mso-bidi-font-family: consolas">host</span><span style="color: blue; mso-bidi-font-family: consolas">&gt;<br />
	</span></font></font><font size="3"><font face="Cambria"><span style="color: blue; mso-bidi-font-family: consolas"><span style="mso-tab-count: 4">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>&lt;</span><span style="color: #a31515; mso-bidi-font-family: consolas">endpoint</span><span style="color: blue; mso-bidi-font-family: consolas"> </span><span style="color: red; mso-bidi-font-family: consolas">contract</span><span style="color: blue; mso-bidi-font-family: consolas">=</span><span style="mso-bidi-font-family: consolas"><font color="#000000">&quot;</font><span style="color: blue">MyNamespace.IServiceContract</span><font color="#000000">&quot;</font><span style="color: blue"> </span><span style="color: red">bindingName</span><span style="color: blue">=</span><font color="#000000">&quot;</font><span style="color: blue">basicHttpConfig</span><font color="#000000">&quot;</font><span style="color: blue"> </span><span style="color: red">binding</span><span style="color: blue">=</span><font color="#000000">&quot;</font><span style="color: blue">basicHttpBinding</span><font color="#000000">&quot;<br />
	</font></span></font></font><font size="3"><font face="Cambria"><span style="color: blue; mso-bidi-font-family: consolas"><span style="mso-tab-count: 6">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="mso-spacerun: yes">&nbsp; </span></span><span style="color: red; mso-bidi-font-family: consolas">bindingConfiguration</span><span style="color: blue; mso-bidi-font-family: consolas">=</span><span style="mso-bidi-font-family: consolas"><font color="#000000">&quot;</font><span style="color: blue">basicHttpConfig</span><font color="#000000">&quot;</font><span style="color: blue"> </span><span style="color: red">address</span><span style="color: blue">=</span><font color="#000000">&quot;</font><span style="color: blue">http://localhost:50002/MyAddressOn</span><font color="#000000">&quot;<o:p></o:p></font></span></font></font></p>
<p class="MsoNormal" style="line-height: normal; margin: 0in 0in 0pt; mso-layout-grid-align: none"><font size="3"><font face="Cambria"><span style="color: blue; mso-bidi-font-family: consolas"><span style="mso-tab-count: 6">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="mso-spacerun: yes">&nbsp;&nbsp;<br />
	</span></span><span style="color: red; mso-bidi-font-family: consolas">behaviorConfiguration</span><span style="color: blue; mso-bidi-font-family: consolas">=</span><span style="mso-bidi-font-family: consolas"><font color="#000000">&quot;</font><span style="color: blue">MyEndpointBehavior</span><font color="#000000">&quot;</font><span style="color: blue">&gt;</span><o:p></o:p></span></font></font></p>
<p class="MsoNormal" style="line-height: normal; margin: 0in 0in 0pt; mso-layout-grid-align: none"><font size="3"><font face="Cambria"><span style="color: blue; mso-bidi-font-family: consolas"><span style="mso-tab-count: 4">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>&lt;/</span><span style="color: #a31515; mso-bidi-font-family: consolas">endpoint</span><span style="color: blue; mso-bidi-font-family: consolas">&gt;</span><span style="mso-bidi-font-family: consolas"><o:p></o:p></span></font></font></p>
<p class="MsoNormal" style="line-height: normal; margin: 0in 0in 0pt; mso-layout-grid-align: none"><font size="3"><font face="Cambria"><span style="color: blue; mso-bidi-font-family: consolas"><span style="mso-tab-count: 4">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>&lt;</span><span style="color: #a31515; mso-bidi-font-family: consolas">endpoint</span><span style="color: blue; mso-bidi-font-family: consolas"> </span><span style="color: red; mso-bidi-font-family: consolas">address</span><span style="color: blue; mso-bidi-font-family: consolas">=</span><span style="mso-bidi-font-family: consolas"><font color="#000000">&quot;</font><span style="color: blue">mex</span><font color="#000000">&quot;</font><span style="color: blue"> </span><span style="color: red">binding</span><span style="color: blue">=</span><font color="#000000">&quot;</font><span style="color: blue">mexHttpBinding</span><font color="#000000">&quot;</font><span style="color: blue"> </span><span style="color: red">contract</span><span style="color: blue">=</span><font color="#000000">&quot;</font><span style="color: blue">IMetadataExchange</span><font color="#000000">&quot;</font><span style="color: blue"> /&gt;</span><o:p></o:p></span></font></font></p>
<p class="MsoNormal" style="line-height: normal; margin: 0in 0in 0pt; mso-layout-grid-align: none"><font size="3"><font face="Cambria"><span style="color: blue; mso-bidi-font-family: consolas"><span style="mso-tab-count: 3">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>&lt;/</span><span style="color: #a31515; mso-bidi-font-family: consolas">service</span><span style="color: blue; mso-bidi-font-family: consolas">&gt;</span><span style="mso-bidi-font-family: consolas"><o:p></o:p></span></font></font></p>
<p class="MsoNormal" style="line-height: normal; margin: 0in 0in 0pt; mso-layout-grid-align: none"><font size="3"><font face="Cambria"><span style="color: blue; mso-bidi-font-family: consolas"><span style="mso-tab-count: 2">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>&lt;/</span><span style="color: #a31515; mso-bidi-font-family: consolas">services</span><span style="color: blue; mso-bidi-font-family: consolas">&gt;</span><span style="mso-bidi-font-family: consolas"><o:p></o:p></span></font></font></p>
<p class="MsoNormal" style="line-height: normal; margin: 0in 0in 0pt; mso-layout-grid-align: none"><font size="3"><font face="Cambria"><span style="color: blue; mso-bidi-font-family: consolas"><span style="mso-tab-count: 2">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>&lt;</span><span style="color: #a31515; mso-bidi-font-family: consolas">behaviors</span><span style="color: blue; mso-bidi-font-family: consolas">&gt;</span><span style="mso-bidi-font-family: consolas"><o:p></o:p></span></font></font></p>
<p class="MsoNormal" style="line-height: normal; margin: 0in 0in 0pt; mso-layout-grid-align: none"><font size="3"><font face="Cambria"><span style="color: blue; mso-bidi-font-family: consolas"><span style="mso-tab-count: 3">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>&lt;</span><span style="color: #a31515; mso-bidi-font-family: consolas">serviceBehaviors</span><span style="color: blue; mso-bidi-font-family: consolas">&gt;</span><span style="mso-bidi-font-family: consolas"><o:p></o:p></span></font></font></p>
<p class="MsoNormal" style="line-height: normal; margin: 0in 0in 0pt; mso-layout-grid-align: none"><font size="3"><font face="Cambria"><span style="color: blue; mso-bidi-font-family: consolas"><span style="mso-tab-count: 4">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>&lt;</span><span style="color: #a31515; mso-bidi-font-family: consolas">behavior</span><span style="color: blue; mso-bidi-font-family: consolas"> </span><span style="color: red; mso-bidi-font-family: consolas">name</span><span style="color: blue; mso-bidi-font-family: consolas">=</span><span style="mso-bidi-font-family: consolas"><font color="#000000">&quot;</font><span style="color: blue">metadataSupport</span><font color="#000000">&quot;</font><span style="color: blue">&gt;</span><o:p></o:p></span></font></font></p>
<p class="MsoNormal" style="line-height: normal; margin: 0in 0in 0pt; mso-layout-grid-align: none"><font size="3"><font face="Cambria"><span style="color: blue; mso-bidi-font-family: consolas"><span style="mso-tab-count: 5">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>&lt;</span><span style="color: #a31515; mso-bidi-font-family: consolas">serviceMetadata</span><span style="color: blue; mso-bidi-font-family: consolas"> </span><span style="color: red; mso-bidi-font-family: consolas">httpGetEnabled</span><span style="color: blue; mso-bidi-font-family: consolas">=</span><span style="mso-bidi-font-family: consolas"><font color="#000000">&quot;</font><span style="color: blue">true</span><font color="#000000">&quot;</font><span style="color: blue"> </span><span style="color: red">httpGetUrl</span><span style="color: blue">=</span><font color="#000000">&quot;</font><span style="color: blue">http://localhost:50002/MyAddressOn</span><font color="#000000">&quot;</font><span style="color: blue">/&gt;</span><o:p></o:p></span></font></font></p>
<p class="MsoNormal" style="line-height: normal; margin: 0in 0in 0pt; mso-layout-grid-align: none"><font size="3"><font face="Cambria"><span style="color: blue; mso-bidi-font-family: consolas"><span style="mso-tab-count: 5">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>&lt;!&#8211;</span><span style="color: green; mso-bidi-font-family: consolas">Add the new custom service behaviour to service behavior</span><span style="color: blue; mso-bidi-font-family: consolas">&#8211;&gt;</span><span style="mso-bidi-font-family: consolas"><o:p></o:p></span></font></font></p>
<p class="MsoNormal" style="line-height: normal; margin: 0in 0in 0pt; mso-layout-grid-align: none"><font size="3"><font face="Cambria"><span style="color: blue; mso-bidi-font-family: consolas"><span style="mso-tab-count: 5">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>&lt;</span><span style="color: #a31515; mso-bidi-font-family: consolas">MyServiceBehavior</span><span style="color: blue; mso-bidi-font-family: consolas">/&gt;</span><span style="mso-bidi-font-family: consolas"><o:p></o:p></span></font></font></p>
<p class="MsoNormal" style="line-height: normal; margin: 0in 0in 0pt; mso-layout-grid-align: none"><font size="3"><font face="Cambria"><span style="color: blue; mso-bidi-font-family: consolas"><span style="mso-tab-count: 4">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>&lt;/</span><span style="color: #a31515; mso-bidi-font-family: consolas">behavior</span><span style="color: blue; mso-bidi-font-family: consolas">&gt;</span><span style="mso-bidi-font-family: consolas"><o:p></o:p></span></font></font></p>
<p class="MsoNormal" style="line-height: normal; margin: 0in 0in 0pt; mso-layout-grid-align: none"><font size="3"><font face="Cambria"><span style="color: blue; mso-bidi-font-family: consolas"><span style="mso-tab-count: 3">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>&lt;/</span><span style="color: #a31515; mso-bidi-font-family: consolas">serviceBehaviors</span><span style="color: blue; mso-bidi-font-family: consolas">&gt;</span><span style="mso-bidi-font-family: consolas"><o:p></o:p></span></font></font></p>
<p class="MsoNormal" style="line-height: normal; margin: 0in 0in 0pt; mso-layout-grid-align: none"><font size="3"><font face="Cambria"><span style="color: blue; mso-bidi-font-family: consolas"><span style="mso-tab-count: 3">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>&lt;</span><span style="color: #a31515; mso-bidi-font-family: consolas">endpointBehaviors</span><span style="color: blue; mso-bidi-font-family: consolas">&gt;</span><span style="mso-bidi-font-family: consolas"><o:p></o:p></span></font></font></p>
<p class="MsoNormal" style="line-height: normal; margin: 0in 0in 0pt; mso-layout-grid-align: none"><font size="3"><font face="Cambria"><span style="color: blue; mso-bidi-font-family: consolas"><span style="mso-tab-count: 4">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>&lt;</span><span style="color: #a31515; mso-bidi-font-family: consolas">behavior</span><span style="color: blue; mso-bidi-font-family: consolas"> </span><span style="color: red; mso-bidi-font-family: consolas">name</span><span style="color: blue; mso-bidi-font-family: consolas">=</span><span style="mso-bidi-font-family: consolas"><font color="#000000">&quot;</font><span style="color: blue">MyEndpointBehavior</span><font color="#000000">&quot;</font><span style="color: blue">&gt;</span><o:p></o:p></span></font></font></p>
<p class="MsoNormal" style="line-height: normal; margin: 0in 0in 0pt; mso-layout-grid-align: none"><font size="3"><font face="Cambria"><span style="color: blue; mso-bidi-font-family: consolas"><span style="mso-tab-count: 5">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>&lt;!&#8211;</span><span style="color: green; mso-bidi-font-family: consolas">add the custom endpointbehavior to endpoint behavior</span><span style="color: blue; mso-bidi-font-family: consolas">&#8211;&gt;</span><span style="mso-bidi-font-family: consolas"><o:p></o:p></span></font></font></p>
<p class="MsoNormal" style="line-height: normal; margin: 0in 0in 0pt; mso-layout-grid-align: none"><font size="3"><font face="Cambria"><span style="color: blue; mso-bidi-font-family: consolas"><span style="mso-tab-count: 5">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>&lt;</span><span style="color: #a31515; mso-bidi-font-family: consolas">MyEndpointBehavior</span><span style="color: blue; mso-bidi-font-family: consolas">/&gt;</span><span style="mso-bidi-font-family: consolas"><o:p></o:p></span></font></font></p>
<p class="MsoNormal" style="line-height: normal; margin: 0in 0in 0pt; mso-layout-grid-align: none"><font size="3"><font face="Cambria"><span style="color: blue; mso-bidi-font-family: consolas"><span style="mso-tab-count: 4">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>&lt;/</span><span style="color: #a31515; mso-bidi-font-family: consolas">behavior</span><span style="color: blue; mso-bidi-font-family: consolas">&gt;</span><span style="mso-bidi-font-family: consolas"><o:p></o:p></span></font></font></p>
<p class="MsoNormal" style="line-height: normal; margin: 0in 0in 0pt; mso-layout-grid-align: none"><font size="3"><font face="Cambria"><span style="color: blue; mso-bidi-font-family: consolas"><span style="mso-tab-count: 3">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>&lt;/</span><span style="color: #a31515; mso-bidi-font-family: consolas">endpointBehaviors</span><span style="color: blue; mso-bidi-font-family: consolas">&gt;</span><span style="mso-bidi-font-family: consolas"><o:p></o:p></span></font></font></p>
<p class="MsoNormal" style="line-height: normal; margin: 0in 0in 0pt; mso-layout-grid-align: none"><font size="3"><font face="Cambria"><span style="color: blue; mso-bidi-font-family: consolas"><span style="mso-tab-count: 2">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>&lt;/</span><span style="color: #a31515; mso-bidi-font-family: consolas">behaviors</span><span style="color: blue; mso-bidi-font-family: consolas">&gt;</span><span style="mso-bidi-font-family: consolas"><o:p></o:p></span></font></font></p>
<p class="MsoNormal" style="line-height: normal; margin: 0in 0in 0pt; mso-layout-grid-align: none"><font size="3"><font face="Cambria"><span style="color: blue; mso-bidi-font-family: consolas"><span style="mso-tab-count: 2">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>&lt;</span><span style="color: #a31515; mso-bidi-font-family: consolas">extensions</span><span style="color: blue; mso-bidi-font-family: consolas">&gt;</span><span style="mso-bidi-font-family: consolas"><o:p></o:p></span></font></font></p>
<p class="MsoNormal" style="line-height: normal; margin: 0in 0in 0pt; mso-layout-grid-align: none"><font size="3"><font face="Cambria"><span style="color: blue; mso-bidi-font-family: consolas"><span style="mso-tab-count: 3">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>&lt;</span><span style="color: #a31515; mso-bidi-font-family: consolas">behaviorExtensions</span><span style="color: blue; mso-bidi-font-family: consolas">&gt;</span><span style="mso-bidi-font-family: consolas"><o:p></o:p></span></font></font></p>
<p class="MsoNormal" style="line-height: normal; margin: 0in 0in 0pt; mso-layout-grid-align: none"><font size="3"><font face="Cambria"><span style="color: blue; mso-bidi-font-family: consolas"><span style="mso-tab-count: 4">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>&lt;!&#8211;</span><span style="color: green; mso-bidi-font-family: consolas">Type here is typeof(EndpointBehaviorMessageInspector).AssemblyQualifiedName</span><span style="color: blue; mso-bidi-font-family: consolas">&#8211;&gt;</span><span style="mso-bidi-font-family: consolas"><o:p></o:p></span></font></font></p>
<p class="MsoNormal" style="line-height: normal; margin: 0in 0in 0pt; mso-layout-grid-align: none"><font size="3"><font face="Cambria"><span style="color: blue; mso-bidi-font-family: consolas"><span style="mso-tab-count: 4">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>&lt;</span><span style="color: #a31515; mso-bidi-font-family: consolas">add</span><span style="color: blue; mso-bidi-font-family: consolas"> </span><span style="color: red; mso-bidi-font-family: consolas">name</span><span style="color: blue; mso-bidi-font-family: consolas">=</span><span style="mso-bidi-font-family: consolas"><font color="#000000">&quot;</font><span style="color: blue">MyEndpointBehavior</span><font color="#000000">&quot;</font><span style="color: blue"> </span><span style="color: red">type</span><span style="color: blue">=</span><font color="#000000">&quot;</font><span style="color: blue">MyNamespace.EndpointBehaviorMessageInspector, Blog1, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null</span><font color="#000000">&quot;</font><span style="color: blue">/&gt;</span><o:p></o:p></span></font></font></p>
<p class="MsoNormal" style="line-height: normal; margin: 0in 0in 0pt; mso-layout-grid-align: none"><font size="3"><font face="Cambria"><span style="color: blue; mso-bidi-font-family: consolas"><span style="mso-tab-count: 4">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>&lt;</span><span style="color: #a31515; mso-bidi-font-family: consolas">add</span><span style="color: blue; mso-bidi-font-family: consolas"> </span><span style="color: red; mso-bidi-font-family: consolas">name</span><span style="color: blue; mso-bidi-font-family: consolas">=</span><span style="mso-bidi-font-family: consolas"><font color="#000000">&quot;</font><span style="color: blue">MyServiceBehavior</span><font color="#000000">&quot;</font><span style="color: blue"> </span><span style="color: red">type</span><span style="color: blue">=</span><font color="#000000">&quot;</font><span style="color: blue">MyNamespace.EnforceGreetingFaultBehavior, Blog1, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null</span><font color="#000000">&quot;</font><span style="color: blue">/&gt;<span style="mso-tab-count: 4">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></span><o:p></o:p></span></font></font></p>
<p class="MsoNormal" style="line-height: normal; margin: 0in 0in 0pt; mso-layout-grid-align: none"><font size="3"><font face="Cambria"><span style="color: blue; mso-bidi-font-family: consolas"><span style="mso-tab-count: 3">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>&lt;/</span><span style="color: #a31515; mso-bidi-font-family: consolas">behaviorExtensions</span><span style="color: blue; mso-bidi-font-family: consolas">&gt;</span><span style="mso-bidi-font-family: consolas"><o:p></o:p></span></font></font></p>
<p class="MsoNormal" style="line-height: normal; margin: 0in 0in 0pt; mso-layout-grid-align: none"><font size="3"><font face="Cambria"><span style="color: blue; mso-bidi-font-family: consolas"><span style="mso-tab-count: 2">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>&lt;/</span><span style="color: #a31515; mso-bidi-font-family: consolas">extensions</span><span style="color: blue; mso-bidi-font-family: consolas">&gt;<span style="mso-tab-count: 2">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></span><span style="mso-bidi-font-family: consolas"><o:p></o:p></span></font></font></p>
<p class="MsoNormal" style="line-height: normal; margin: 0in 0in 0pt; mso-layout-grid-align: none"><font size="3"><font face="Cambria"><span style="color: blue; mso-bidi-font-family: consolas"><span style="mso-tab-count: 1">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>&lt;/</span><span style="color: #a31515; mso-bidi-font-family: consolas">system.serviceModel</span><span style="color: blue; mso-bidi-font-family: consolas">&gt;</span><span style="mso-bidi-font-family: consolas"><o:p></o:p></span></font></font></p>
<p class="MsoNormal" style="line-height: normal; margin: 0in 0in 0pt; mso-layout-grid-align: none"><font size="3"><font face="Cambria"><span style="color: blue; mso-bidi-font-family: consolas"><span style="mso-tab-count: 1">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>&lt;</span><span style="color: #a31515; mso-bidi-font-family: consolas">startup</span><span style="color: blue; mso-bidi-font-family: consolas">&gt;</span><span style="mso-bidi-font-family: consolas"><o:p></o:p></span></font></font></p>
<p class="MsoNormal" style="line-height: normal; margin: 0in 0in 0pt; mso-layout-grid-align: none"><font size="3"><font face="Cambria"><span style="color: blue; mso-bidi-font-family: consolas"><span style="mso-tab-count: 2">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>&lt;</span><span style="color: #a31515; mso-bidi-font-family: consolas">supportedRuntime</span><span style="color: blue; mso-bidi-font-family: consolas"> </span><span style="color: red; mso-bidi-font-family: consolas">version</span><span style="color: blue; mso-bidi-font-family: consolas">=</span><span style="mso-bidi-font-family: consolas"><font color="#000000">&quot;</font><span style="color: blue">v4.0</span><font color="#000000">&quot;</font><span style="color: blue"> </span><span style="color: red">sku</span><span style="color: blue">=</span><font color="#000000">&quot;</font><span style="color: blue">.NETFramework,Version=v4.0</span><font color="#000000">&quot;</font><span style="color: blue">/&gt;</span><o:p></o:p></span></font></font></p>
<p class="MsoNormal" style="line-height: normal; margin: 0in 0in 0pt; mso-layout-grid-align: none"><font size="3"><font face="Cambria"><span style="color: blue; mso-bidi-font-family: consolas"><span style="mso-tab-count: 1">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>&lt;/</span><span style="color: #a31515; mso-bidi-font-family: consolas">startup</span><span style="color: blue; mso-bidi-font-family: consolas">&gt;</span><span style="mso-bidi-font-family: consolas"><o:p></o:p></span></font></font></p>
<p class="MsoNormal" style="line-height: normal; margin: 0in 0in 0pt; mso-layout-grid-align: none"><font size="3"><font face="Cambria"><span style="color: blue; mso-bidi-font-family: consolas">&lt;/</span><span style="color: #a31515; mso-bidi-font-family: consolas">configuration</span><span style="color: blue; mso-bidi-font-family: consolas">&gt;</span><span style="mso-bidi-font-family: consolas"><o:p></o:p></span></font></font></p>
<p class="MsoNormal" style="line-height: normal; margin: 0in 0in 0pt; mso-layout-grid-align: none"><span style="mso-bidi-font-family: consolas"><o:p></o:p></span></p>
<p class="MsoNormal" style="line-height: normal; margin: 0in 0in 0pt; mso-layout-grid-align: none"><span style="mso-bidi-font-family: consolas"><o:p><font color="#000000" face="Cambria" size="3"><br />
	Thanks,</font></o:p></span></p>
<p class="MsoNormal" style="line-height: normal; margin: 0in 0in 0pt; mso-layout-grid-align: none"><span style="mso-bidi-font-family: consolas"><o:p><font color="#000000" face="Cambria" size="3">Neha&nbsp;</font></o:p></span><span style="line-height: 115%; font-size: 12pt"><o:p><font color="#000000" face="Cambria">&nbsp;</font></o:p></span></p>
]]></content:encoded>
			<wfw:commentRss>http://www.nehasingla.net/2010/05/adding-custom-behavior-to-wcf-service-configuration-file/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Tiger City- Ranthambore, Sawai Madhopur</title>
		<link>http://www.nehasingla.net/2010/03/tiger-city-ranthambore-sawai-madhopur/</link>
		<comments>http://www.nehasingla.net/2010/03/tiger-city-ranthambore-sawai-madhopur/#comments</comments>
		<pubDate>Sun, 28 Mar 2010 20:45:21 +0000</pubDate>
		<dc:creator>nehasingla</dc:creator>
				<category><![CDATA[TOURISM]]></category>
		<category><![CDATA[India]]></category>
		<category><![CDATA[Rajasthan]]></category>
		<category><![CDATA[Sawai Madhopur]]></category>
		<category><![CDATA[Tiger City]]></category>

		<guid isPermaLink="false">http://www.nehasingla.net/?p=194</guid>
		<description><![CDATA[Out of many wonderful things which I have seen in my life so far, seeing a Tiger in his natural habitat is so far the most thrilling experience. I must say that watching Tiger in captivity is truly different than watching it in Jungle. This is the reason may be Ranthambore have thousands of tourists [...]]]></description>
			<content:encoded><![CDATA[<p>Out of many wonderful things which I have seen in my life so far, seeing a Tiger in his natural habitat is so far the most thrilling experience. I must say that watching Tiger in captivity is truly different than watching it in Jungle. This is the reason may be Ranthambore have thousands of tourists visiting each year.</p>
<p>Ranthambore is the famous national park in India located in Sawai Madhopur city. Sawai Madhopur is 2 hours away by train and 3 hours away by road from Jaipur. The famous Ganesh Temple and Ranthambore urge thousands of tourists every year to this city.&nbsp;National park and Ganesh temple are&nbsp;adjacent and&nbsp;a day should be enough to visit this city given that you are lucky enough to find the tiger in your safari.</p>
<p><strong>Timings of the park and reservation :</strong></p>
<p><strong>How to reach Ranthambore</strong><font face="Arial" size="2">By Air: The nearest airport is at Jaipur (180 kms)</p>
<p>	By Rail: Sawai Madhopur (10Kms.from the National Park) is on the main line between Delhi and Bombay. There is a direct rail link between Sawai Madhopur and Jaipur.</font></p>
<p><font face="Arial" size="2">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </font><font face="Arial"><font size="2">From New Delhi to Sawai Madhopur (Ranthambore)</font><br />
	&nbsp;</font></p>
<div align="center">
<table border="1" bordercolor="#3f4c04" cellpadding="0" cellspacing="0" id="table7" style="border-collapse: collapse" width="80%">
<tbody>
<tr>
<td style="text-align: justify"><font face="Arial" size="2">Train Name</font></td>
<td style="text-align: justify"><font face="Arial" size="2">Train Number</font></td>
<td style="text-align: justify"><font face="Arial" size="2">Departure from ND</font></td>
<td style="text-align: justify"><font face="Arial" size="2">Arrival to SWM</font></td>
</tr>
<tr>
<td style="text-align: justify"><font face="Arial" size="2">Golden Temple</font></td>
<td style="text-align: justify"><font face="Arial" size="2">2904</font></td>
<td style="text-align: justify"><font face="Arial" size="2">07:15 AM</font></td>
<td style="text-align: justify"><font face="Arial" size="2">13:05</font></td>
</tr>
<tr>
<td style="text-align: justify"><font face="Arial" size="2">Jan Shatabdi Exp.</font></td>
<td style="text-align: justify"><font face="Arial" size="2">2060</font></td>
<td style="text-align: justify"><font face="Arial" size="2">13:10</font></td>
<td style="text-align: justify"><font face="Arial" size="2">18:00</font></td>
</tr>
<tr>
<td style="text-align: justify"><font face="Arial" size="2">August Kranti</font></td>
<td style="text-align: justify"><font face="Arial" size="2">2954</font></td>
<td style="text-align: justify"><font face="Arial" size="2">16:15</font></td>
<td style="text-align: justify"><font face="Arial" size="2">20:37</font></td>
</tr>
<tr>
<td style="text-align: justify"><font face="Arial" size="2">Pachim Express</font></td>
<td style="text-align: justify"><font face="Arial" size="2">2926</font></td>
<td style="text-align: justify"><font face="Arial" size="2">17:00</font></td>
<td style="text-align: justify"><font face="Arial" size="2">22:10</font></td>
</tr>
<tr>
<td style="text-align: justify"><font face="Arial" size="2">Mewar Express</font></td>
<td style="text-align: justify"><font face="Arial" size="2">2963</font></td>
<td style="text-align: justify"><font face="Arial" size="2">19:50</font></td>
<td style="text-align: justify"><font face="Arial" size="2">01:08</font></td>
</tr>
<tr>
<td style="text-align: justify"><font face="Arial" size="2">Deharadun Exp.</font></td>
<td style="text-align: justify"><font face="Arial" size="2">9020 A</font></td>
<td style="text-align: justify"><font face="Arial" size="2">21:40</font></td>
<td style="text-align: justify"><font face="Arial" size="2">05:05</font></td>
</tr>
</tbody>
</table>
<table border="0" cellpadding="0" id="table9" style="border-collapse: collapse" width="80%">
<tbody>
<tr>
<td style="text-align: justify">&nbsp;</td>
</tr>
</tbody>
</table>
<p><font face="Arial" size="2">From Sawai Madhopur (Ranthambore) to New Delhi </font></p>
<table border="1" bordercolor="#3f4c04" cellpadding="0" cellspacing="0" id="table8" style="border-collapse: collapse" width="80%">
<tbody>
<tr>
<td style="text-align: justify" width="171"><font face="Arial" size="2">Train Name</font></td>
<td style="text-align: justify" width="127"><font face="Arial" size="2">Train Name</font></td>
<td style="text-align: justify"><font face="Arial" size="2">Train Number</font></td>
<td style="text-align: justify" width="139"><font face="Arial" size="2">Arrival to ND</font></td>
</tr>
<tr>
<td style="text-align: justify" width="171"><font face="Arial" size="2">Golden Temple</font></td>
<td style="text-align: justify" width="127"><font face="Arial" size="2">2903</font></td>
<td style="text-align: justify"><font face="Arial" size="2">12:50</font></td>
<td style="text-align: justify" width="139"><font face="Arial" size="2">18:34</font></td>
</tr>
<tr>
<td style="text-align: justify" width="171"><font face="Arial" size="2">Jan Shatabdi Exp.</font></td>
<td style="text-align: justify" width="127"><font face="Arial" size="2">2059</font></td>
<td style="text-align: justify"><font face="Arial" size="2">07:07</font></td>
<td style="text-align: justify" width="139"><font face="Arial" size="2">12:35</font></td>
</tr>
<tr>
<td style="text-align: justify" width="171"><font face="Arial" size="2">August Kranti</font></td>
<td style="text-align: justify" width="127"><font face="Arial" size="2">2953</font></td>
<td style="text-align: justify"><font face="Arial" size="2">06:33</font></td>
<td style="text-align: justify" width="139"><font face="Arial" size="2">10:55</font></td>
</tr>
<tr>
<td style="text-align: justify" width="171"><font face="Arial" size="2">Pachim Express</font></td>
<td style="text-align: justify" width="127"><font face="Arial" size="2">2925</font></td>
<td style="text-align: justify"><font face="Arial" size="2">03:40</font></td>
<td style="text-align: justify" width="139"><font face="Arial" size="2">10:06</font></td>
</tr>
<tr>
<td style="text-align: justify" width="171"><font face="Arial" size="2">Mewar Express</font></td>
<td style="text-align: justify" width="127"><font face="Arial" size="2">2964</font></td>
<td style="text-align: justify"><font face="Arial" size="2">04:40</font></td>
<td style="text-align: justify" width="139"><font face="Arial" size="2">10:25</font></td>
</tr>
<tr>
<td style="text-align: justify" width="171"><font face="Arial" size="2">Deharadun Exp.</font></td>
<td style="text-align: justify" width="127"><font face="Arial" size="2">9019</font></td>
<td style="text-align: justify"><font face="Arial" size="2">21:45</font></td>
<td style="text-align: justify" width="139"><font face="Arial" size="2">06:30</font></td>
</tr>
</tbody>
</table>
<table border="0" cellpadding="0" id="table10" style="border-collapse: collapse" width="80%">
<tbody>
<tr>
<td style="text-align: justify">&nbsp;</td>
</tr>
</tbody>
</table>
<hr color="#6a6c2b" noshade="noshade" size="1" />
<p style="text-align: justify"><u><font face="Arial" size="2">All above trains are daily trains</font></u><b><u><font face="Arial" size="2">.</font></u></b></p>
<p style="text-align: justify"><b><u><font face="Arial" size="2">Timings for safari</font></u></b></p>
<p style="text-align: justify"><font face="Arial" size="2">The park is open to tourists from the 1st of October to the 30th of June. Mostly tourist visit from November to March as summers are very hot in Rajasthan. </font></p>
<p style="text-align: justify"><font face="Arial" size="2">A. Timings &#8211; Morning wildlife safari &#8211; 6.00 to 10.00 am &amp; Evening wildlife safari &#8211; 2.30 to 6.30 pm, the timings may vary by 1/2 hr, as they are based on the sunrise &amp; sunset time. </font></p>
<p style="text-align: justify"><font face="Arial" size="2">There is a high possibility of sighting in morning safari in summer and evening safari in winter. Make sure you take very warm clothes for morning safari in winter.</font></p>
<p style="text-align: justify"><strong>&nbsp;Tarriffs </strong></p>
<p style="text-align: justify"><strong><a href="http://ranthambhore.com/bookingTariff.html">http://ranthambhore.com/bookingTariff.html</a></strong></p>
<p style="text-align: justify"><strong>Local activities</strong></p>
<p style="text-align: justify"><strong>Temples</strong></p>
<p style="text-align: justify"><strong>1. Baanki Mataji Temple</strong></p>
<p style="text-align: justify">This temple is located in the old city of Sawai Madhopur some 20 kms away from national park is very famous and has a religious significance to locals. Visit this temple after 7 PM to see congregation.</p>
<p style="text-align: justify"><strong>2. Bazaria :</strong></p>
<p style="text-align: justify">Local market of city is known as Bazaria and it is some 7-10 Kms away from almost all the hotels.</p>
<p style="text-align: justify"><strong>3. Old City </strong></p>
<p style="text-align: justify">Sawai Madhopur is geographically divided in 2 parts, one is where bazaria and ranthambore is located and other is the old city. Usually all the localites shop from old city. If you are interested in buying some nice Rajasthani sarees at good price then head to old city &#8211; Bahubali sarees and Gotewala is famous for beautiful sarees there.</p>
<p style="text-align: justify"><strong>4. Food</strong></p>
<p style="text-align: justify">Kachori &#8211; Deep fried spicy round shaped patty stuffed with lentils is very famous in this city.</p>
<p style="text-align: justify">Badey &#8211; Very spicy deep fried small balls made by paste of lentil is among famous delicacy here.</p>
<p style="text-align: justify">Aam ki berfi &#8211; A sweet made by mango only served in summers is relished by locals in the evening after dinner.</p>
<p style="text-align: justify">Maawa Gajak &#8211; A sweet made by milk served in winters is appreciated by local citizens.</p>
<p style="text-align: justify">Shikanji &#8211; A drink made with sugar and lemon juice is imbibed by locals in summer almost daily.</p>
<p style="text-align: justify">Have fun,</p>
<p style="text-align: justify">Neha</p>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.nehasingla.net/2010/03/tiger-city-ranthambore-sawai-madhopur/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>A Visit to Rome &#8211; The Eternal City</title>
		<link>http://www.nehasingla.net/2010/01/a-visit-to-rome-the-eternal-city/</link>
		<comments>http://www.nehasingla.net/2010/01/a-visit-to-rome-the-eternal-city/#comments</comments>
		<pubDate>Fri, 15 Jan 2010 05:24:33 +0000</pubDate>
		<dc:creator>nehasingla</dc:creator>
				<category><![CDATA[TOURISM]]></category>
		<category><![CDATA[Europe]]></category>
		<category><![CDATA[Rome]]></category>

		<guid isPermaLink="false">http://www.nehasingla.net/?p=170</guid>
		<description><![CDATA[Rome is capital of Italy and is famous for its splendid architecture. The city has nearly 3000 year old history which is why also known as Eternal City. The title &#34;Eternal City&#34; is true to some extent becase when we visited Rome it felt like we will need eternty to be overwhelmed by the beauty [...]]]></description>
			<content:encoded><![CDATA[<p>Rome is capital of Italy and is famous for its splendid architecture. The city has nearly 3000 year old history which is why also known as Eternal City. The title &quot;Eternal City&quot; is true to some extent becase when we visited Rome it felt like we will need eternty to be overwhelmed by the beauty of the city. We were in Rome for 3 days and in this blog I will mention all my favorite places. Feel free to post your questions if you have any about Rome and I will be happy to answer them.</p>
<p><strong>1. The</strong> <strong>Colosseum</strong></p>
<p>Colosseum is a historical monument which was contructed in ancient times for gladiator contests and other public events with a seating capacity of 50000 spectacors. The only (dressed like) gladiators which you can see these days are outside Colosseum for taking pictures with them. There is an entry fee for Colosseum to see it from inside which includes free entry to their museum. There are guided tours, audio guide and books available to describe the significance of Colosseum. Knowing the historical significance of this&nbsp;places makes your visit gratifying. Colosseum is in the centre of the city and one can reach there by train or cab. If you are taking train to Colosseum then the station is 2 minutes away from Colosseum. The ticket of Colosseum includes visit to Roman forum which is opposite to Colosseum. I personally liked Colosseum more and wasn&#39;t too impressed by Forum.</p>
<p>Colosseum looks beautiful at night. We went to Rome in summer and&nbsp;it was very hot in the day. Watching Colosseum in a pleasant evening is what I liked better.</p>
<p><strong>2. Throw a coin in&nbsp;Trevi Fountain</strong></p>
<p>&nbsp;<a href="http://www.nehasingla.net/wp-content/uploads/2009/12/trevifountain.jpg"><img align="middle" alt="" border="0" class="alignnone size-medium wp-image-186" height="225" src="http://www.nehasingla.net/wp-content/uploads/2009/12/trevifountain-300x225.jpg" title="trevifountain" width="300" /></a></p>
<p>Trevi Fountain is undoubtedly the most famous fountain in Rome. It is the largest fountain in the city and you will be&nbsp;stunned by its beauty. No wonder it is always surrounded by tourists and an eventful place in Rome.&nbsp;If you do&nbsp;not believe in ritual of throwing coin&nbsp;in the water then you can just relax&nbsp;there watching people throwing coins and taking pictures.&nbsp;But if you decide to throw coin in water (right hand over left shoulder)&nbsp;then it can be challenging/annoying&nbsp;as lot of people try to&nbsp;take pictures and videos while throwing coin&nbsp;.&nbsp;All in all, my visit to trevi fountain was delightful and would love to visit it again.</p>
<p><strong>3. Piazza Novana</strong></p>
<p><a href="/wp-content/uploads/2009/12/piazzanovona.jpg"><img align="middle" alt="" border="0" class="alignnone size-medium wp-image-189" height="225" src="/wp-content/uploads/2009/12/piazzanovona-300x225.jpg" title="piazzanovona" width="300" /></a></p>
<p>Piazza Novana is city square in Rome and reminded me of St. Mark&#39;s sqare in Venice. Besides&nbsp;three admirable fountains. the Piazza attracts you by its liveliness. The local artists wins people heart and applause by their skills of painting, dancing, magic and other. I found this Piazza the best Piazza in Rome and would recommend spending some time there. It is surrounded by some nice restaurants and shops. There is a church at this Piazza as well, which I didn&#39;t visit. Piazza Novana is open all the time and there is no entry fee.</p>
<p><strong>4. Monument to Vittorio Emmanuel</strong></p>
<p><strong><a href="http://www.nehasingla.net/wp-content/uploads/2009/12/vittorio.jpg"><img align="middle" alt="" border="0" class="alignnone size-medium wp-image-187" height="225" src="/wp-content/uploads/2009/12/vittorio-300x225.jpg" title="vittorio" width="300" /></a></strong></p>
<p>Beautiful palace</p>
<p><strong>5. Spanish steps</strong></p>
<p>Spanish steps are the longest and widest staircase in Europe. Plan to be there around evening when weather allows you to sit on the steps and relax. You will find thousands of tourists sitting on the steps.</p>
<p><strong>6. Vatican city</strong></p>
<p><a href="http://www.nehasingla.net/wp-content/uploads/2009/12/stpeters.jpg"><img align="middle" alt="" border="0" class="alignnone size-medium wp-image-188" height="216" src="http://www.nehasingla.net/wp-content/uploads/2009/12/stpeters-300x216.jpg" title="stpeters" width="300" /></a></p>
<p>2nd largest museum museum in the world (only next to louvre), Sistine Chapel, St Peter&#39;s Basilica.</p>
<p>	<strong>Food</strong></p>
<p>Pizza, Pasta, Gellato</p>
<p><strong>Shopping</strong></p>
<p>Leather, Crosses in Vatican City.</p>
<p>	Enjoy.<br />
	Neha</p>
]]></content:encoded>
			<wfw:commentRss>http://www.nehasingla.net/2010/01/a-visit-to-rome-the-eternal-city/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Google&#8217;s Nexus One Vs Apple&#8217;s iPhone 3GS</title>
		<link>http://www.nehasingla.net/2010/01/googles-nexus-one-vs-apples-iphone-3gs/</link>
		<comments>http://www.nehasingla.net/2010/01/googles-nexus-one-vs-apples-iphone-3gs/#comments</comments>
		<pubDate>Thu, 14 Jan 2010 07:50:33 +0000</pubDate>
		<dc:creator>ksingla</dc:creator>
				<category><![CDATA[ENGINEERING]]></category>
		<category><![CDATA[IPhone]]></category>
		<category><![CDATA[NexusOne]]></category>

		<guid isPermaLink="false">http://www.nehasingla.net/?p=175</guid>
		<description><![CDATA[Google has finally come out with his own phone to compete well with iPhone in the mobile space. Even though there have been few smartphones which other companies launched in the market in competition to iPhone like Droid by Motorola, I think Nexus is going to pose most serious threat to Apple. Hardware wise Nexus [...]]]></description>
			<content:encoded><![CDATA[<p>
	Google has finally come out with his own phone to compete well with iPhone in the mobile space. Even though there have been few smartphones which other companies launched in the market in competition to iPhone like Droid by Motorola, I think Nexus is going to pose most serious threat to Apple. Hardware wise Nexus compare well against iPhone and even though there are far fewer applications available on Android market compared to iTunes app store, most Android users won&#39;t miss as most useful ones are available for Android. By going through technical specs of Nexus one and iPhone, below is the comparison chart I created comparing these two devices.<br />
	&nbsp;</p>
<table align="center" border="1" cellpadding="1" cellspacing="1" style="width: 600px">
<thead>
<tr height="20" style="height: 15pt">
<td height="20" style="width: 170pt; height: 15pt" width="277">&nbsp;</td>
<td class="xl65" style="width: 170pt" width="200"><b>Iphone</b></td>
<td class="xl65" style="width: 170pt" width="180"><b>Nexus one</b></td>
</tr>
</thead>
<tbody>
<tr height="20" style="height: 15pt">
<td height="20" style="height: 15pt">Height x Width x Depth</td>
<td class="xl66">115.5mm x 62.1mm x 12.3 mm</td>
<td class="xl66">119mm x 59.8mm x 11.5mm</td>
</tr>
<tr height="20" style="height: 15pt">
<td height="20" style="height: 15pt">Weight</td>
<td class="xl66">135 gms</td>
<td class="xl66">130 gms (100 w/o battery)</td>
</tr>
<tr height="20" style="height: 15pt">
<td height="20" style="height: 15pt">Processor</td>
<td class="xl66">ARM 600 MHz</td>
<td class="xl66">Qualcomm 1 GHz</td>
</tr>
<tr height="20" style="height: 15pt">
<td height="20" style="height: 15pt">Display</td>
<td class="xl66">3.5 inch 480 x 320 pixels</td>
<td class="xl66">3.7 inch 800 x 480 pixels</td>
</tr>
<tr height="20" style="height: 15pt">
<td height="20" style="height: 15pt">Storage</td>
<td class="xl66">32 GB</td>
<td class="xl66">4 GB (expandable to 32 GB)</td>
</tr>
<tr height="20" style="height: 15pt">
<td height="20" style="height: 15pt">Storage available for applications</td>
<td class="xl66">32 GB</td>
<td class="xl66">190 MB</td>
</tr>
<tr height="20" style="height: 15pt">
<td height="20" style="height: 15pt">Camera</td>
<td class="xl66">3 Megapixel</td>
<td class="xl66">5 Megapixel</td>
</tr>
<tr height="20" style="height: 15pt">
<td height="20" style="height: 15pt">Flash</td>
<td class="xl66">No</td>
<td class="xl66">Yes</td>
</tr>
<tr height="20" style="height: 15pt">
<td height="20" style="height: 15pt">Video</td>
<td class="xl66">Yes (@30 frames per second)</td>
<td class="xl66">Yes (@20 frames per second)</td>
</tr>
<tr height="20" style="height: 15pt">
<td height="20" style="height: 15pt">Applications</td>
<td class="xl67">more than 90000</td>
<td class="xl67">20,000</td>
</tr>
<tr height="20" style="height: 15pt">
<td height="20" style="height: 15pt">WiFi</td>
<td class="xl66">Yes</td>
<td class="xl66">Yes</td>
</tr>
<tr height="20" style="height: 15pt">
<td height="20" style="height: 15pt">GPS</td>
<td class="xl66">Yes</td>
<td class="xl66">Yes</td>
</tr>
<tr height="20" style="height: 15pt">
<td height="20" style="height: 15pt">Cell tower assisted location</td>
<td class="xl66">Yes</td>
<td class="xl66">Yes</td>
</tr>
<tr height="20" style="height: 15pt">
<td height="20" style="height: 15pt">Talk time/Standby time</td>
<td class="xl66">5 hrs/300 hrs</td>
<td class="xl66">7 hrs/250 hrs</td>
</tr>
<tr height="20" style="height: 15pt">
<td height="20" style="height: 15pt">3g internet time/wi-fi internet time</td>
<td class="xl66">5 hrs/9 hrs</td>
<td class="xl66">5 hrs/6.5 hrs</td>
</tr>
<tr height="20" style="height: 15pt">
<td height="20" style="height: 15pt">Price w/o contract</td>
<td class="xl68">$599</td>
<td class="xl68">$529</td>
</tr>
<tr height="20" style="height: 15pt">
<td height="20" style="height: 15pt">Price with contract</td>
<td class="xl68">$199</td>
<td class="xl68">$179</td>
</tr>
<tr height="20" style="height: 15pt">
<td height="20" style="height: 15pt">Color</td>
<td class="xl66">White/Black</td>
<td class="xl66">Gray</td>
</tr>
<tr height="20" style="height: 15pt">
<td height="20" style="height: 15pt">Multitasking</td>
<td class="xl66">No</td>
<td class="xl66">Yes</td>
</tr>
<tr height="20" style="height: 15pt">
<td height="20" style="height: 15pt">Zoom in/out</td>
<td class="xl66">Yes</td>
<td class="xl66">No</td>
</tr>
</tbody>
<colgroup>
<col style="width: 208pt; mso-width-source: userset; mso-width-alt: 10130" width="277" />
<col class="xl66" style="width: 150pt; mso-width-source: userset; mso-width-alt: 7314" width="200" />
<col class="xl66" style="width: 135pt; mso-width-source: userset; mso-width-alt: 6582" width="180" />
<col style="width: 48pt" width="64" /></colgroup>
</table>
<p>
	Both phones compare well as far as essential features go like WiFi, GPS, Vido etc. Both are very light and look very attractive. There are some really nice features which you get in Nexus which are missing in iPhone. Multitasking, 5 MB camera with flash and more pixels on screen in Nexus One look very attractive to me. Apple still looks more attractive when it comes to applications on app store. Also ability to zoom in/out on iPhone and more storage are other features where iPhone leads. Personally I would pick Nexus One because of more pixels on screen and 5 MB camera but I would wait for the price drop before I buy one.</p>
<p>	Thanks,<br />
	Kanwal</p>
]]></content:encoded>
			<wfw:commentRss>http://www.nehasingla.net/2010/01/googles-nexus-one-vs-apples-iphone-3gs/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Heart of Rajasthan &#8211; Jaipur, the Pink City</title>
		<link>http://www.nehasingla.net/2009/12/heart-of-rajasthan-jaipur-the-pink-city/</link>
		<comments>http://www.nehasingla.net/2009/12/heart-of-rajasthan-jaipur-the-pink-city/#comments</comments>
		<pubDate>Mon, 28 Dec 2009 09:51:33 +0000</pubDate>
		<dc:creator>nehasingla</dc:creator>
				<category><![CDATA[TOURISM]]></category>
		<category><![CDATA[Forts]]></category>
		<category><![CDATA[India]]></category>
		<category><![CDATA[Jaipur]]></category>
		<category><![CDATA[Palaces]]></category>
		<category><![CDATA[Rajasthan]]></category>

		<guid isPermaLink="false">http://www.nehasingla.net/?p=114</guid>
		<description><![CDATA[India is a country&#160;famous for&#160;its culture, architecture, diversity of food, language and&#160;dressing. All the states of India attract tourists from&#160;different parts of&#160;world&#160;and&#160;each state&#160;has something&#160;unique to offer. Rajasthan attracts more tourists than any other Indian state because of its rich architectural and&#160;cultural heritage. Rajasthan which means land of kings have&#160;many forts built by Rajput kings. Some [...]]]></description>
			<content:encoded><![CDATA[<p>India is a country&nbsp;famous for&nbsp;its culture, architecture, diversity of food, language and&nbsp;dressing. All the states of India attract tourists from&nbsp;different parts of&nbsp;world&nbsp;and&nbsp;each state&nbsp;has something&nbsp;unique to offer. Rajasthan attracts more tourists than any other Indian state because of its rich architectural and&nbsp;cultural heritage. Rajasthan which means land of kings have&nbsp;many forts built by Rajput kings. Some of these ancient havellis/forts are converted into hotels to offer closeness to the ancient history. These hotels are renovated in&nbsp;a luxurious way to imitate the living style of Rajput kings.</p>
<p>Jaipur, also known as Pink City, is the capital of Rajasthan and is a city with very nice blend of history and modern India. From ancient forts to modern shopping malls, the city charms you in variety of ways. To&nbsp;enjoy the beauty of the city I would recommend spending&nbsp;at least 3 days. Most of the people in Jaipur can speak and understand English and are very nice. So don&#39;t hesitate to ask for directions or help.</p>
<p>Regarding places to see, I have categorized them below and depending on your interest you can plan to see them.</p>
<h3><span style="color: #800000">Forts in Jaipur</span></h3>
<p>Below are the forts in Jaipur which I would recommend to visit.</p>
<h5>1. Amber Fort</h5>
<p>This is the most famous fort of Jaipur and is 11 kms from Jaipur. Local people of Jaipur call it Amer fort. From outside Amer fort does not look very appealing but from inside it is worth seeing. You can enjoy the flawless beauty of Amber fort on a royal elephant ride as well.</p>
<p>&nbsp;<a href="http://www.nehasingla.net/wp-content/uploads/2009/12/amberJaipur.jpg"><img alt="" class="alignnone size-medium wp-image-136" height="214" src="http://www.nehasingla.net/wp-content/uploads/2009/12/amberJaipur-300x214.jpg" style="width: 325px; height: 232px" title="AmberFort" width="300" /></a></p>
<h5>2. Nahargarh Fort</h5>
<p>Nahargarh fort is another major fort in Jaipur and is my favorite. From the top of the fort you get a beautiful view of the city. It was build by King Sawai Jai Singh in 18th century. Read more about Nahagarh Fort at <a href="http://www.jaipur.org.uk/forts-monuments/nahargarh-fort.html">http://www.jaipur.org.uk/forts-monuments/nahargarh-fort.html</a></p>
<p><a href="http://www.nehasingla.net/wp-content/uploads/2009/12/NahargarhJaipur1.jpg"><img alt="" class="alignnone size-medium wp-image-122" height="200" src="http://www.nehasingla.net/wp-content/uploads/2009/12/NahargarhJaipur1-300x200.jpg" style="width: 344px; height: 204px" title="NahargarhJaipur" width="300" /></a></p>
<h5>3. Jaigarh Fort</h5>
<p>Jaigarh is another famous fort of Jaipur which is at the top of a mountain. It has a museum with the collection of ancient coins, guns and other things which were used by Rajput kings. Read more about Jaigarh fort at <a href="http://www.jaipur.org.uk/forts-monuments/jaigarh-fort.html">http://www.jaipur.org.uk/forts-monuments/jaigarh-fort.html</a>.</p>
<p><a href="http://www.nehasingla.net/wp-content/uploads/2009/12/Jaigarh.jpg"><img alt="" class="alignnone size-medium wp-image-123" height="200" src="http://www.nehasingla.net/wp-content/uploads/2009/12/Jaigarh-300x200.jpg" style="width: 358px; height: 204px" title="Jaigarh" width="300" /></a></p>
<h5>4. City Palace</h5>
<p>City palace is a remarkable place in Jaipur. It is very beautiful and I would highly recommend you to visit it. Read more about it at <a href="http://www.jaipur.org.uk/forts-monuments/city-palace.html">http://www.jaipur.org.uk/forts-monuments/city-palace.html</a>.</p>
<p><a href="http://www.nehasingla.net/wp-content/uploads/2009/12/CityPalace.jpg"><img alt="" class="alignnone size-medium wp-image-124" height="224" src="http://www.nehasingla.net/wp-content/uploads/2009/12/CityPalace-300x224.jpg" style="width: 345px; height: 228px" title="CityPalace" width="300" /></a></p>
<h5>5. Jantar Mantar</h5>
<p>Close to City Palace is Jantar mantar. It is an old stone observatory and in ancient times it was used to study astronomy and other celestial bodies. This place won&#39;t take more than 30-45 mins to visit. Close to this is the <strong><span style="color: #a52a2a">Govind Dev Ji temple </span></strong>which is the most famous Krishna temple in Jaipur. Prasad or sweets which are offered to Hindu Gods can be purchased inside the temple. You will find lots of people buying sweets from vendors outside the temple. If your stomach allows it, I would highly recommend you to try these sweets.</p>
<p><a href="http://www.nehasingla.net/wp-content/uploads/2009/12/JantarMantar.jpg"><img alt="" class="alignnone size-medium wp-image-125" height="225" src="http://www.nehasingla.net/wp-content/uploads/2009/12/JantarMantar-300x225.jpg" style="width: 341px; height: 229px" title="JantarMantar" width="300" /></a></p>
<h5>6. Hawa Mahal</h5>
<p>&nbsp;Hawa Mahal is a major landmark of Jaipur and is close to City Palace. You can take cab to Hawa Mahal or City Palace. Both are at walking distance from each other. Hawa Mahal shouldn&#39;t take more than 30 mins to visit. After visiting Hawa Mahal and City Palace, you can head to Lakshmi Misthan Bhandar, commonly known as <span style="color: #a52a2a"><strong>LMB to eat best Indian sweets.&nbsp;</strong></span>LMB also has a restaurant which is also highly recommended. If you want to buy some good Indian dresses at a good price then you can head to RoopLakshmi sarees where you will find a good variety. <span style="color: #800080"><strong>RoopLakshmi </strong></span>is close to LMB.</p>
<p><a href="http://www.nehasingla.net/wp-content/uploads/2009/12/HawaMahal.jpg"><img alt="" class="alignnone size-medium wp-image-126" height="289" src="http://www.nehasingla.net/wp-content/uploads/2009/12/HawaMahal-300x289.jpg" style="width: 366px; height: 229px" title="HawaMahal" width="300" /></a></p>
<p>Enjoy..</p>
<p>Neha</p>
]]></content:encoded>
			<wfw:commentRss>http://www.nehasingla.net/2009/12/heart-of-rajasthan-jaipur-the-pink-city/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Top things to do in Miami and Key West</title>
		<link>http://www.nehasingla.net/2009/12/top-things-to-do-in-miami-and-key-west/</link>
		<comments>http://www.nehasingla.net/2009/12/top-things-to-do-in-miami-and-key-west/#comments</comments>
		<pubDate>Sun, 20 Dec 2009 22:12:16 +0000</pubDate>
		<dc:creator>nehasingla</dc:creator>
				<category><![CDATA[TOURISM]]></category>
		<category><![CDATA[Beaches]]></category>
		<category><![CDATA[KeyWest]]></category>
		<category><![CDATA[Miami]]></category>
		<category><![CDATA[USA]]></category>

		<guid isPermaLink="false">http://www.nehasingla.net/2009/12/top-things-to-do-in-miami-and-key-west/</guid>
		<description><![CDATA[If you are looking for a happening destination with a cool crowd then Miami is the place to visit. Besides warm beaches, beautiful palm trees and cool ocean breeze the city will amaze you by its liveliness. Miami is a place where going once is not enough. Here are few of my recommendations for things [...]]]></description>
			<content:encoded><![CDATA[<p>If you are looking for a happening destination with a cool crowd then Miami is the place to visit. Besides warm beaches, beautiful palm trees and cool ocean breeze the city will amaze you by its liveliness. Miami is a place where going once is not enough.</p>
<p>Here are few of my recommendations for things to do while you are in Miami.</p>
<p><span style="color: #800080">1. </span><strong><span style="color: #800080">South Beach</span></strong></p>
<p><span style="color: #800080"><font color="#222222">This is the main beach of Miami and is always full of tourists and local residents. You will find people enjoying ocean waves and few doing water activities. On Lincoln road which is like a block away from main South beach, you can find many nice restaurants, shops and night clubs. This is the most happening area of Miami.</font></span></p>
<p><a href="http://www.nehasingla.net/images/TopthingstodoinMiamiandKeyWest_BF3C/3355533South_Beach_MiamiMiami.jpg"><img align="middle" alt="3355533-South_Beach_Miami-Miami" border="10" dir="ltr" height="235" src="http://www.nehasingla.net/images/TopthingstodoinMiamiandKeyWest_BF3C/3355533South_Beach_MiamiMiami_thumb.jpg" style="border-right-width: 0px; width: 384px; display: inline; border-top-width: 0px; border-bottom-width: 0px; height: 235px; margin-left: 0px; border-left-width: 0px; margin-right: 0px" title="SouthBeachMiami" width="384" /></a></p>
<p><span style="color: #800080">2. </span><strong><span style="color: #800080">Biscayne Bay</span></strong></p>
<p><span style="color: #800080"><font color="#222222">If you want to see the Miami skyline and take some beautiful pictures then Biscayne Bay is worth going. This is a quiet place where you can sit and enjoy along with the beauty of both city and water. South Pointe Park which is on the south end of Miami beach is also very beautiful and is worth going.</font></span></p>
<p><a href="http://www.nehasingla.net/images/TopthingstodoinMiamiandKeyWest_BF3C/BiscaneBay.png"><img align="middle" alt="BiscaneBay" border="10" height="255" src="http://www.nehasingla.net/images/TopthingstodoinMiamiandKeyWest_BF3C/BiscaneBay_thumb.png" style="border-right-width: 0px; width: 383px; display: inline; border-top-width: 0px; border-bottom-width: 0px; height: 255px; margin-left: 0px; border-left-width: 0px; margin-right: 0px" title="BiscaneBay" width="383" /></a></p>
<p>&nbsp;</p>
<p><span style="color: #800080">3.</span><strong><span style="color: #800080"> Downtown Miami and Bay Front Park</span> </strong></p>
<p><span style="color: #800080"><font color="#222222">Driving to downtown Miami from South beach is a fun thing to do as you will see the beautiful city full of palm trees. I would recommend using highway 41 to drive from Miami Beach to downtown. Drive is beautiful and you can stop to see Parrot Jungle if that interests you. Once you are in downtown, you can take cruises which start from Biscayne Bay and show you the city from water. Bay front park is another cool place where you can spend some time.</font></span></p>
<p><a href="http://www.nehasingla.net/images/TopthingstodoinMiamiandKeyWest_BF3C/downtownmiamiatnight.jpg"><img align="middle" alt="downtown-miami-at-night" border="10" height="246" src="http://www.nehasingla.net/images/TopthingstodoinMiamiandKeyWest_BF3C/downtownmiamiatnight_thumb.jpg" style="border-right-width: 0px; width: 367px; display: inline; border-top-width: 0px; border-bottom-width: 0px; height: 246px; margin-left: 0px; border-left-width: 0px; margin-right: 0px" title="downtown-miami-at-night" width="367" /></a></p>
<p><span style="color: #800080"><strong>4. Rent a scooter</strong></span></p>
<p>Seeing whole of Miami beach on a scooter is totally safe and is lot of fun. You can easily find scooter parking at most places and can explore places which are hard to explore on car. We rented a scooter for&nbsp;3 hours and could cover all the places we wanted to see.</p>
<p><strong><span style="color: #800080">5. Restaurants</span></strong></p>
<p><span style="color: #800080"><font color="#222222">The whole South Beach area is full of restaurants and eating outside in the nice weather of Miami is something no one wants to miss. Other than delicious food the service they provide at South Beach makes your dinner even more delicious.</font></span></p>
<p><a href="http://www.nehasingla.net/images/TopthingstodoinMiamiandKeyWest_BF3C/viewfrombeachrestaurant.jpg"><img align="middle" alt="view-from-beach-restaurant" border="10" height="245" src="http://www.nehasingla.net/images/TopthingstodoinMiamiandKeyWest_BF3C/viewfrombeachrestaurant_thumb.jpg" style="border-right-width: 0px; width: 368px; display: inline; border-top-width: 0px; border-bottom-width: 0px; height: 245px; margin-left: 0px; border-left-width: 0px; margin-right: 0px" title="view-from-beach-restaurant" width="368" /></a></p>
<p><span style="font-size: 12px"><span style="color: #800080"><strong>Key West&nbsp;</strong></span></span></p>
<p>For a breath taking views and awesome water activities plus beaches, head south to Key West which is 5-6 hours from Miami by car. If you can afford it, I will recommend renting a convertible in Miami. Driving to Key West in a convertible is totally worth the extra money you will spend . On the way to Key West you will cross many bridges and it looks very beautiful when you see ocean around you.&nbsp;Key West is a small town where you will find more tourists than residents. I would recommend spending at least a day there. Most of the water activities end by 6 PM. So if you are into water sports then plan your visit accordingly. You don&rsquo;t need for water activities online. If you walk around the downtown, you will easily find tours and other water activities right there and then.</p>
<p><a href="http://www.nehasingla.net/images/TopthingstodoinMiamiandKeyWest_BF3C/overseas20highway20720mile20bridge.jpg"><img align="middle" alt="overseas%20highway%207%20mile%20bridge" border="10" height="231" src="http://www.nehasingla.net/images/TopthingstodoinMiamiandKeyWest_BF3C/overseas20highway20720mile20bridge_thumb.jpg" style="border-right-width: 0px; width: 369px; display: inline; border-top-width: 0px; border-bottom-width: 0px; height: 231px; margin-left: 0px; border-left-width: 0px; margin-right: 0px" title="overseas%20highway%207%20mile%20bridge" width="369" /></a></p>
<p>I hope you have a great time in Miami and Key West and don&rsquo;t forget your sunscreen lotion <img src='http://www.nehasingla.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> .</p>
<p>As said &ldquo;Certainly, travel is more than the seeing of sights; it is a change that goes on, deep and permanent, in the ideas of living.&rdquo; So keep travelling and learn new ideas of making life more beautiful.</p>
<p>	Enjoy..<br />
	Neha</p>
]]></content:encoded>
			<wfw:commentRss>http://www.nehasingla.net/2009/12/top-things-to-do-in-miami-and-key-west/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Things to do in Interlaken, Switzerland</title>
		<link>http://www.nehasingla.net/2009/12/top-cities-to-visit-in-switzerland/</link>
		<comments>http://www.nehasingla.net/2009/12/top-cities-to-visit-in-switzerland/#comments</comments>
		<pubDate>Sat, 19 Dec 2009 20:07:06 +0000</pubDate>
		<dc:creator>nehasingla</dc:creator>
				<category><![CDATA[TOURISM]]></category>
		<category><![CDATA[Europe]]></category>
		<category><![CDATA[Interlaken]]></category>
		<category><![CDATA[Switzerland]]></category>

		<guid isPermaLink="false">http://www.nehasingla.net/2009/12/top-cities-to-visit-in-switzerland/</guid>
		<description><![CDATA[If you want to choose a destination with marvelous natural beauty, snow covered peaks, lush green farms, a peaceful place with lot of character in people, then head to Switzerland. Switzerland is a small country and you can drive from one end of the country to other in 6 hours, but it has a lot [...]]]></description>
			<content:encoded><![CDATA[<p>If you want to choose a destination with marvelous natural beauty, snow covered peaks, lush green farms, a peaceful place with lot of character in people, then head to Switzerland. Switzerland is a small country and you can drive from one end of the country to other in 6 hours, but it has a lot to offer. Out of many cities like Geneva, Bern, Zurich, Lucerne and Interlaken&nbsp;we chose Interlaken to visit as this is between two lakes and surounded by mountains Jungfrau, Eiger and Monch. Wherever you go in Interlaken you will be able to see beautiful swiss Alps.</p>
<p><strong>About Interlaken</strong></p>
<p>Interlaken is a small town which attracts lot of tourists from around the world. You can see whole town on foot but if you want to visit places nearby which are very very beautiful then you will need a car. In Interlaken we couldn&#39;t find any place where we could rent a car. So we rented a scooter from xtreme rentals near Balmer&rsquo;s Herberge Hostel. The guy assured us that we can see nearby waterfalls and glaciers on scooter but we had to return it in 20 minutes. Roads there are mostly single-lane and if you are on a scooter which goes maximum of 45 km/h, most of the traffic line up behind you making it embarrasing and unsafe. So don&#39;t try to rent a scooter there. After returning the scooter, we rented a fun car from <a href="http://www.funrental.ch/rental-interlaken-fun-cars-beup.htm" title="http://www.funrental.ch/rental-interlaken-fun-cars-beup.htm">http://www.funrental.ch/rental-interlaken-fun-cars-beup.htm</a>&nbsp;which worked well for us. You can take a map and start exploring near-by areas. While in Interlaken, I would recommend seeing the lakes near Interlaken, waterfalls in Lauterbrunnen and glacier near Grinderwald. There are many trails for hiking where you get beautiful view of Alps. You can always hear water flowing around you which makes hiking lot of fun.</p>
<p><a href="http://www.nehasingla.net/images/TopCitiestovisitinSwitzerland_AA60/IMG_2603.jpg"><img align="left" alt="IMG_2603" border="0" height="215" src="http://www.nehasingla.net/images/TopCitiestovisitinSwitzerland_AA60/IMG_2603_thumb.jpg" style="border-bottom: 0px; border-left: 0px; width: 338px; display: block; float: none; height: 215px; margin-left: auto; border-top: 0px; margin-right: auto; border-right: 0px" title="IMG_2603" width="338" /></a></p>
<p><strong>Fun activities you can do in Interlaken</strong></p>
<p>1. Hiking<br />
	2. Biking<br />
	3. Canyoning &#8211; Swimsuit required<br />
	4. Rafting &#8211; Swimsuit required<br />
	5. Para Gliding&nbsp;&nbsp;</p>
<p><strong>Visit to Jungfraujoch</strong></p>
<p>Every 1 hour a train leaves from Interlaken which will take you up&nbsp;to Jungfraujoch which is 14000 ft high. When we went in August 2009, ticket was 180 Swiss franks per person. If you have Euro rail pass then you get a discount of 45 franks. Initially we found the ticket expensive but after seeing Jungfrau it is definitely worth the money. The one way journey is 3 hours and is very beautiful. Train stops at various places for few minutes so that you can take pictures. In Interlaken, you might or might not need warm clothes but you will need a warm jacket at Jungfraujoch for sure. So take one with you even if weather is warm. At Jungfraujoch, you will see an ice palace which I liked the most. Other than that there is a small museum and access to glaciers. There is an Indian restaurant up there where you can get buffet lunch. I haven&#39;t tried it but heard that it&#39;s good. There is a snacks shop, restaurant and a small theatre which shows documentarty on how railroad to Junfraujoch was made.</p>
<p><a href="http://www.nehasingla.net/images/TopCitiestovisitinSwitzerland_AA60/IMG_2605.jpg"><img align="left" alt="IMG_2605" border="0" height="218" src="http://www.nehasingla.net/images/TopCitiestovisitinSwitzerland_AA60/IMG_2605_thumb.jpg" style="border-bottom: 0px; border-left: 0px; width: 339px; display: block; float: none; height: 218px; margin-left: auto; border-top: 0px; margin-right: auto; border-right: 0px" title="IMG_2605" width="339" /></a>&nbsp;&nbsp;</p>
<p><strong>Hotel stay in Interlaken</strong></p>
<p>Hotels in Interlaken are very expensive. There are few&nbsp;hostels there which are relatively cheap (approx $100 for a very small room). I will recommend Balmer&rsquo;s Herberge if you decide to stay in a hostel.</p>
<p><strong>Dining in Interlaken </strong></p>
<p>There is almost every cuisine available in Interlaken. If you are in Interlaken then I will recommend cheese fondues and sandwiches. Their is a place called Coop outside Interlaken OST (east) railway station which is a good place to eat. You can also try restaurants in Launterbrunnen, Grindelwald and other nearby towns which are also very nice.</p>
<p><a href="http://www.nehasingla.net/images/TopCitiestovisitinSwitzerland_AA60/cheesefondue.jpg"><img align="left" alt="cheese-fondue" border="0" height="206" src="http://www.nehasingla.net/images/TopCitiestovisitinSwitzerland_AA60/cheesefondue_thumb.jpg" style="border-bottom: 0px; border-left: 0px; width: 326px; display: block; float: none; height: 206px; margin-left: auto; border-top: 0px; margin-right: auto; border-right: 0px" title="cheese-fondue" width="326" /></a></p>
<p><strong>Swiss Chocolates </strong><strong>&nbsp;</strong></p>
<p>I am not very fond of chocolates but after trying Swiss chocolates specially the unpacked ones which they sell by weight are amazing. They were so delicious that just for chocolates I can visit Switzerland again. Definitely try these chocolates specially the ones which have nuts in it. If you are allergic to nuts then I feel sorry for you <img src='http://www.nehasingla.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> .</p>
<p>&nbsp;&nbsp;&nbsp;<strong>&nbsp;</strong> <a href="http://www.nehasingla.net/images/TopCitiestovisitinSwitzerland_AA60/p172782SwitzerlandSwiss_chocolate.jpg"><img align="left" alt="p172782-Switzerland-Swiss_chocolate" border="0" height="213" src="http://www.nehasingla.net/images/TopCitiestovisitinSwitzerland_AA60/p172782SwitzerlandSwiss_chocolate_thumb.jpg" style="border-bottom: 0px; border-left: 0px; width: 346px; display: block; float: none; height: 213px; margin-left: auto; border-top: 0px; margin-right: auto; border-right: 0px" title="p172782-Switzerland-Swiss_chocolate" width="346" /></a></p>
<p><strong>Shopping</strong> <strong>&nbsp;</strong></p>
<p>1. Swiss Watches &#8211; I think they were pretty expensive there. I would probably buy one on the internet or outside switzerland.<br />
	2. Swiss Cow Bell &#8211; Must buy.<br />
	3. Swiss Chocolates &#8211; Must buy.<br />
	4. Swiss Knives &#8211; They are very expensive there. You will probably&nbsp;find the same swiss knives for 1/4th price in&nbsp;US.&nbsp;</p>
<p>I hope you have a great trip to Switzerland.&nbsp; &ldquo;The world is a book and those who do not travel read only one page.&rdquo; So try to read as many page as possible.</p>
<p>Enjoy&hellip; <br />
	Neha</p>
]]></content:encoded>
			<wfw:commentRss>http://www.nehasingla.net/2009/12/top-cities-to-visit-in-switzerland/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Homemade Natural Beauty Tips</title>
		<link>http://www.nehasingla.net/2009/11/homemade-natural-beauty-tips/</link>
		<comments>http://www.nehasingla.net/2009/11/homemade-natural-beauty-tips/#comments</comments>
		<pubDate>Tue, 17 Nov 2009 20:37:41 +0000</pubDate>
		<dc:creator>nehasingla</dc:creator>
				<category><![CDATA[BEAUTY]]></category>
		<category><![CDATA[Natural]]></category>

		<guid isPermaLink="false">http://www.nehasingla.net/?p=3</guid>
		<description><![CDATA[Make your skin glow with these no expensive home tips. ]]></description>
			<content:encoded><![CDATA[<p>Every one admires a beautiful face and body. These days there are so many products which promise you good results but most of them are expensive and still fail to give you desired results. Below are some very easy and effective beauty tips which helps my skin to look better.</p>
<ol>
<li>Apply egg yolk for dry and white part for oily skin for 15 mins. It will leave your skin glowing. You will need very little for your face so&nbsp;apply the remaining on your feet and hands. You will see results in 15 mins only. Avoid speaking while you have this mask on your face as it will cause wrinkles on face.<br />
		&nbsp;</li>
<li>Mix multani mitti with rose water to form a paste and apply it on face. It will soak extra oil from your face and leave your skin very smooth. If your skin is tanned then add some water to this paste, and apply it on face. Wash your face as soon as it dries and apply it again. Do it for some 5 times and you will see improvement.<br />
		&nbsp;</li>
<li>Apply milk on your face with a cotton pad. It&#39;s a powerful cleansing agent. You can apply it in kitchen while cooking or while watching T.V. This is the easiest way to cleanse skin. It is very gentle so it&#39;s ideal for oily, dry or sensitive skin.<br />
		&nbsp;</li>
<li>Put some lemon juice in milk and massage on face using cotton. It will help in lightening your complexion.<br />
		&nbsp;</li>
<li>Soak some 10 almonds in water in night. In the morning press them with a stone and use 2 table spoon milk to make a paste. Massage your face with this, this will work like scrub and lighten your complexion. Almonds are rich in vitamins which will make your skin healty.<br />
		&nbsp;</li>
<li>If you have scar marks left by acne or pimples, then soak 15 piece of chironji, 5 piece of black pepper in milk at night. In the moring use a stone to make a paste of it and apply it on the face. It will drastically reduced acne marks in days. Apply it daily in morning and evening for 10-15 mins.<br />
		&nbsp;</li>
<li>You can apply paste jayfal (nutmeg) powder to remove acne or pimple marks from your face. In the market there are lot of acne products which use nutmeg as their major ingredient to treat acne.<br />
		&nbsp;</li>
<li>Use paste of gram flour (besan), cream (malai) and a pinch of turmeric powder (heldi) and apply on face for 5 mins. You can use this to wash your face daily. Replace cream with curd if you have oily skin. It will make your skin glow.<br />
		&nbsp;</li>
<li>Drink daily a glass of water in the morning and your skin will glow in days. It will help blood circulation and take out toxic material from your body.<br />
		&nbsp;</li>
<li>Cleanse your face before going to bed and apply a light moisturing lotion. It will prevent acne / pimples and leave skin soft. Your skin will be free from pollutant and it will breathe from pores.</li>
</ol>
<p>Lastly follow this to look beautiful &quot; I have seen many faces, but I haven&#39;t seen a amiling face that does not look beautiful&quot; Stay happy and keep smiling,</p>
<p>Enjoy<br />
	Neha</p>
]]></content:encoded>
			<wfw:commentRss>http://www.nehasingla.net/2009/11/homemade-natural-beauty-tips/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Top Places to Visit in Paris</title>
		<link>http://www.nehasingla.net/2009/11/top-places-to-visit-in-paris/</link>
		<comments>http://www.nehasingla.net/2009/11/top-places-to-visit-in-paris/#comments</comments>
		<pubDate>Mon, 09 Nov 2009 10:20:01 +0000</pubDate>
		<dc:creator>nehasingla</dc:creator>
				<category><![CDATA[TOURISM]]></category>
		<category><![CDATA[Eiffel]]></category>
		<category><![CDATA[Europe]]></category>
		<category><![CDATA[France]]></category>
		<category><![CDATA[Louvre]]></category>
		<category><![CDATA[Paris]]></category>

		<guid isPermaLink="false">http://www.nehasingla.net/?p=74</guid>
		<description><![CDATA[We went to Paris in August&#160;2009 for two days and it was a fun visit. We covered almost all the major tourist destinations. While in Paris, following are the places one should definitely see. Museum Pass If you are planning to go to more than 3 places which are covered by Paris Museum pass, then [...]]]></description>
			<content:encoded><![CDATA[<p>We went to Paris in August&nbsp;2009 for two days and it was a fun visit. We covered almost all the major tourist destinations. While in Paris, following are the places one should definitely see.</p>
<p><strong>Museum Pass</strong></p>
<p>If you are planning to go to more than 3 places which are covered by Paris Museum pass, then buying the pass is cheaper. It covers almost all the famous museums, Versailles palace and was very useful. You can avoid long ticket lines and explore more museums without worrying about entry fees <img src='http://www.nehasingla.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> . Here is the link to the museum pass <a href="http://www.parismuseumpass.com/en/pass_tarif.php">http://www.parismuseumpass.com/en/pass_tarif.php</a>.</p>
<p><span style="font-size: small"><strong>Louvre Museum</strong></span></p>
<p>Louvre Museum is exceptionally beautiful and is the best museum I have ever seen in my life. I read that it will take you 6 months if you want to see each and everything in Louvre. We spent 4 hours in the museum and took hundreds of pictures. Taking pictures without using flash is allowed. So dress in something nice as pictures are going to be amazing <img src='http://www.nehasingla.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> . Don&#39;t forget to see Mona Lisa painting there. Museum opens at 9 am and it closes at 5 pm. If you want to avoid long lines at the museum entrance then try to reach early.</p>
<p><a href="http://www.nehasingla.net/images/TopPlacestoVisitinParis_20CD/LouverFromInside.jpg"><img align="middle" alt="LouverFromInside" border="0" height="263" src="http://www.nehasingla.net/images/TopPlacestoVisitinParis_20CD/LouverFromInside_thumb.jpg" style="border-right-width: 0px; width: 401px; display: inline; border-top-width: 0px; border-bottom-width: 0px; height: 263px; margin-left: 0px; border-left-width: 0px; margin-right: 0px" title="LouverFromInside" width="401" /></a></p>
<p>Once you are done with Louvre, head to Musee D&#39;Orsay. Don&#39;t try to walk from one place to another in Paris. Paris is very big and places which look very close in map are usually very far. Subway stations are always near you. Just hop on a train and moving around Paris will be a piece of cake.</p>
<p><strong><span style="font-size: small">Musee D&#39;Orsay</span></strong></p>
<p>Musee D&#39;Orsay is another museum with exclusive art collection and cannot be missed. Make sure you go on top floor and take pictures of the beautiful city. It took us 1- 1.5 hours to see the museum.</p>
<p><a href="http://www.nehasingla.net/images/TopPlacestoVisitinParis_20CD/MuseeDOrsay.jpg"><img align="middle" alt="MuseeDOrsay" border="0" height="264" src="http://www.nehasingla.net/images/TopPlacestoVisitinParis_20CD/MuseeDOrsay_thumb.jpg" style="border-right-width: 0px; width: 404px; display: inline; border-top-width: 0px; border-bottom-width: 0px; height: 264px; margin-left: 0px; border-left-width: 0px; margin-right: 0px" title="MuseeDOrsay" width="404" /></a></p>
<p><strong><span style="font-size: small">Notre Dame</span></strong></p>
<p>Notre dame Cathedral tower is a beautiful church. I saw lot of churches in Europe but this is my favorite. Entry is free here unless you want to go on top of the tower. This is not included in Paris Museum pass.</p>
<p>&nbsp;<strong><a href="http://www.nehasingla.net/images/TopPlacestoVisitinParis_20CD/NotreDameTower.jpg"><img align="middle" alt="NotreDameTower" border="0" height="280" src="http://www.nehasingla.net/images/TopPlacestoVisitinParis_20CD/NotreDameTower_thumb.jpg" style="border-right-width: 0px; width: 415px; display: inline; border-top-width: 0px; border-bottom-width: 0px; height: 280px; margin-left: 0px; border-left-width: 0px; margin-right: 0px" title="NotreDameTower" width="415" /></a></strong></p>
<p>&nbsp;</p>
<p><strong><span style="font-size: small">Eiffel Tower </span></strong></p>
<p>Eiffel Tower do not need any introduction. I was very excited to see Eiffel tower for real. You always see it in movies and books and it looks awesome but I think movies and books don&#39;t do justice to its actual beauty. You can see Eiffel Tower from everywhere. Try to reach at Eiffel tower at dusk. Once it is dark, they turn on thousands of LEDs on the tower every hour for few minutes which looks marvelous. An elevator can take you to the top of Eiffel tower and will cost you 12 Euros. You can choose to go upto first floor or upto second floor or all the way to the top. You can also climb stairs upto first floor. Looking at the city from top of Eiffel tower will be an unforgettable experience.</p>
<p><a href="http://www.nehasingla.net/images/TopPlacestoVisitinParis_20CD/EiffelAtNight.jpg"><img align="middle" alt="EiffelAtNight" border="0" height="278" src="http://www.nehasingla.net/images/TopPlacestoVisitinParis_20CD/EiffelAtNight_thumb.jpg" style="border-right-width: 0px; width: 417px; display: inline; border-top-width: 0px; border-bottom-width: 0px; height: 278px; margin-left: 0px; border-left-width: 0px; margin-right: 0px" title="EiffelAtNight" width="417" /></a></p>
<p><strong>Few tips for exploring the city</strong></p>
<ul>
<li>Besides beautiful museums, cathedrals, palaces and Eiffel, city itself is very beaufiful. The whole city looked like a big museum to me because of its beautiful architecture. Take a walk in the city and you will know yourself how incredible the city is.<br />
		&nbsp;</li>
<li>You will find lot of tourists and residents riding bicycles. There are lot of bicycle stands knows as velib and you can rent a bike from there. You can pick bike from any Velib stand and drop it at any other. They are everywhere in the city.<br />
		&nbsp;</li>
<li>Metro system is very fast and is the best mode of transportation in Paris. Take some time to understand it. You can buy tickets from any station and 1 ticket is good for 1 journey. While purchasing tickets, select language at first page and it will make your life easy. We had a hard time figuring how to buy tickets from machines which had a roller sort of thing which you can roll to select different options. Major tourist destinations in Paris have metro stations named after them. When train stops, you need to press green button on the door to open it. We missed our station once because of this as we didn&#39;t know <img src='http://www.nehasingla.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> .<br />
		&nbsp;</li>
<li>If you want to use cab for transportation, then cabs are not very expensive there.<br />
		&nbsp;</li>
<li>Wear very very comfortable shoes, you won&#39;t even realize how much you to walk in the city.<br />
		&nbsp;</li>
<li>Don&#39;t worry about dressing. Wear whatever you like. I was very tensed for my clothing but after reaching there I did not feel out of place in my US style clothes.<br />
		&nbsp;</li>
<li>Food is very delicious in Paris, but quantity is less as compared to what we get in US.</li>
</ul>
<p><strong>Accommodation in Paris</strong></p>
<p>Hotels in Paris are pretty expensive. A small room will cost $100-125 which won&#39;t be too close to center of the city. If you are looking for a good hotel and at a decent price, go for a location away from city center and use metro to travel from hotel to city center.</p>
<p>Usually it takes 1 day to understand a city you visit for the first time. So I will suggest staying minimum of 3 days to enjoy the city. Overall Paris is a great place to visit and even to live. I personally loved it and would visit it again. I will go in little bit more details in future to help other travelers.</p>
<p><em>Live life to full of it. </em></p>
<p><em>Enjoy&#8230; <br />
	</em>Neha</p>
]]></content:encoded>
			<wfw:commentRss>http://www.nehasingla.net/2009/11/top-places-to-visit-in-paris/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
	</channel>
</rss>

