<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments on: Exchange Server 2007 WebService, Get Inbox Email Items &#8211; C#, SOAP Requests and Responses</title>
	<atom:link href="http://www.codemeit.com/webservices/exchange-server-2007-webservice-get-inbox-email-items-c-soap-requests-and-responses.html/feed" rel="self" type="application/rss+xml" />
	<link>http://www.codemeit.com/webservices/exchange-server-2007-webservice-get-inbox-email-items-c-soap-requests-and-responses.html</link>
	<description>programming, software &#38; problem solving</description>
	<lastBuildDate>Fri, 10 Sep 2010 10:12:28 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
	<item>
		<title>By: Ian Penny</title>
		<link>http://www.codemeit.com/webservices/exchange-server-2007-webservice-get-inbox-email-items-c-soap-requests-and-responses.html/comment-page-1#comment-10501</link>
		<dc:creator>Ian Penny</dc:creator>
		<pubDate>Fri, 10 Sep 2010 10:12:28 +0000</pubDate>
		<guid isPermaLink="false">http://www.codemeit.com/?p=404#comment-10501</guid>
		<description>Hi Ray,

Thanks for your prompt reply, I have hard coded those items, so i have just removed the args and call the method.</description>
		<content:encoded><![CDATA[<p>Hi Ray,</p>
<p>Thanks for your prompt reply, I have hard coded those items, so i have just removed the args and call the method.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ray</title>
		<link>http://www.codemeit.com/webservices/exchange-server-2007-webservice-get-inbox-email-items-c-soap-requests-and-responses.html/comment-page-1#comment-10481</link>
		<dc:creator>Ray</dc:creator>
		<pubDate>Fri, 10 Sep 2010 05:03:21 +0000</pubDate>
		<guid isPermaLink="false">http://www.codemeit.com/?p=404#comment-10481</guid>
		<description>@Ian, you will need to provide the following values in order to get a valid response.

&lt;code&gt;
            // your email account userName, password and the windows domain
            service.Credentials = new NetworkCredential(“userName”, “password”, “windowsDomain”);
            service.Url = @“https://domainName/EWS/Exchange.asmx”;
&lt;/code&gt;</description>
		<content:encoded><![CDATA[<p>@Ian, you will need to provide the following values in order to get a valid response.</p>
<div class="codesnip-container" >// your email account userName, password and the windows domain<br />
            service.Credentials = new NetworkCredential(“userName”, “password”, “windowsDomain”);<br />
            service.Url = @“https://domainName/EWS/Exchange.asmx”;</div>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ian Penny</title>
		<link>http://www.codemeit.com/webservices/exchange-server-2007-webservice-get-inbox-email-items-c-soap-requests-and-responses.html/comment-page-1#comment-10423</link>
		<dc:creator>Ian Penny</dc:creator>
		<pubDate>Thu, 09 Sep 2010 14:22:51 +0000</pubDate>
		<guid isPermaLink="false">http://www.codemeit.com/?p=404#comment-10423</guid>
		<description>I have recently found this code via google, after having an exchange box installed in our school.  i have the code typed up, but what arguements do you pass in to obtain a response?</description>
		<content:encoded><![CDATA[<p>I have recently found this code via google, after having an exchange box installed in our school.  i have the code typed up, but what arguements do you pass in to obtain a response?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Bruce</title>
		<link>http://www.codemeit.com/webservices/exchange-server-2007-webservice-get-inbox-email-items-c-soap-requests-and-responses.html/comment-page-1#comment-5796</link>
		<dc:creator>Bruce</dc:creator>
		<pubDate>Wed, 19 May 2010 14:37:10 +0000</pubDate>
		<guid isPermaLink="false">http://www.codemeit.com/?p=404#comment-5796</guid>
		<description>Thanks. Almighty google has sent me on the code that&#039;s just what i&#039;ve searvhed for :)
Regards.</description>
		<content:encoded><![CDATA[<p>Thanks. Almighty google has sent me on the code that&#8217;s just what i&#8217;ve searvhed for <img src='http://www.codemeit.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /><br />
Regards.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Naveed Mazhar</title>
		<link>http://www.codemeit.com/webservices/exchange-server-2007-webservice-get-inbox-email-items-c-soap-requests-and-responses.html/comment-page-1#comment-5491</link>
		<dc:creator>Naveed Mazhar</dc:creator>
		<pubDate>Thu, 29 Apr 2010 08:08:06 +0000</pubDate>
		<guid isPermaLink="false">http://www.codemeit.com/?p=404#comment-5491</guid>
		<description>Please explain &quot;response&quot; in the code given below.

&quot;response&quot; has not been declared in the code but response1 and response2 are present.

----------------------------------------------------------------
// find items details
            GetItemResponseType response2 = service.GetItem(new GetItemType
            {
                ItemIds = ((response as FindItemResponseType)
----------------------------------------------------------------</description>
		<content:encoded><![CDATA[<p>Please explain &#8220;response&#8221; in the code given below.</p>
<p>&#8220;response&#8221; has not been declared in the code but response1 and response2 are present.</p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-<br />
// find items details<br />
            GetItemResponseType response2 = service.GetItem(new GetItemType<br />
            {<br />
                ItemIds = ((response as FindItemResponseType)<br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ray</title>
		<link>http://www.codemeit.com/webservices/exchange-server-2007-webservice-get-inbox-email-items-c-soap-requests-and-responses.html/comment-page-1#comment-5186</link>
		<dc:creator>Ray</dc:creator>
		<pubDate>Fri, 09 Apr 2010 09:05:13 +0000</pubDate>
		<guid isPermaLink="false">http://www.codemeit.com/?p=404#comment-5186</guid>
		<description>Did you set the credential correcly?

 service.Credentials = new NetworkCredential(“userName”, “password”, “windowsDomain”);</description>
		<content:encoded><![CDATA[<p>Did you set the credential correcly?</p>
<p> service.Credentials = new NetworkCredential(“userName”, “password”, “windowsDomain”);</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Shahzad</title>
		<link>http://www.codemeit.com/webservices/exchange-server-2007-webservice-get-inbox-email-items-c-soap-requests-and-responses.html/comment-page-1#comment-5169</link>
		<dc:creator>Shahzad</dc:creator>
		<pubDate>Thu, 08 Apr 2010 08:10:49 +0000</pubDate>
		<guid isPermaLink="false">http://www.codemeit.com/?p=404#comment-5169</guid>
		<description>I have tested the code I receive following error:
The request failed with HTTP status 401: Unauthorized.  Can anyone guide this.

Thanks</description>
		<content:encoded><![CDATA[<p>I have tested the code I receive following error:<br />
The request failed with HTTP status 401: Unauthorized.  Can anyone guide this.</p>
<p>Thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Saqib</title>
		<link>http://www.codemeit.com/webservices/exchange-server-2007-webservice-get-inbox-email-items-c-soap-requests-and-responses.html/comment-page-1#comment-2706</link>
		<dc:creator>Saqib</dc:creator>
		<pubDate>Sun, 20 Sep 2009 00:02:30 +0000</pubDate>
		<guid isPermaLink="false">http://www.codemeit.com/?p=404#comment-2706</guid>
		<description>Alternatively, you may use a 3rd party library from Aspose to connect to Exchange mailbox using Exchange Web Services. You need to call the appropriate methods to connect and download messages. More details at &lt;a href=&quot;http://www.aspose.com/documentation/.net-components/aspose.network-for-.net/managing-emails-on-exchange-server.html&quot; rel=&quot;nofollow&quot;&gt;&lt;/a&gt;.</description>
		<content:encoded><![CDATA[<p>Alternatively, you may use a 3rd party library from Aspose to connect to Exchange mailbox using Exchange Web Services. You need to call the appropriate methods to connect and download messages. More details at <a href="http://www.aspose.com/documentation/.net-components/aspose.network-for-.net/managing-emails-on-exchange-server.html" rel="nofollow"></a>.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Uncleedik</title>
		<link>http://www.codemeit.com/webservices/exchange-server-2007-webservice-get-inbox-email-items-c-soap-requests-and-responses.html/comment-page-1#comment-2092</link>
		<dc:creator>Uncleedik</dc:creator>
		<pubDate>Tue, 21 Jul 2009 21:08:16 +0000</pubDate>
		<guid isPermaLink="false">http://www.codemeit.com/?p=404#comment-2092</guid>
		<description>Thanks. Almighty google has sent me on the code that&#039;s just what i&#039;ve searvhed for :)
Regards.</description>
		<content:encoded><![CDATA[<p>Thanks. Almighty google has sent me on the code that&#8217;s just what i&#8217;ve searvhed for <img src='http://www.codemeit.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /><br />
Regards.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
