<?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: Building a simple voicemail system with Twilio and ASP.NET MVC, Part 1</title>
	<atom:link href="http://john-sheehan.com/blog/index.php/building-a-simple-voicemail-system-with-twilio-and-aspnet-mvc-part-1/feed/" rel="self" type="application/rss+xml" />
	<link>http://john-sheehan.com/blog/building-a-simple-voicemail-system-with-twilio-and-aspnet-mvc-part-1/</link>
	<description></description>
	<lastBuildDate>Wed, 10 Mar 2010 08:16:38 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: jgid</title>
		<link>http://john-sheehan.com/blog/building-a-simple-voicemail-system-with-twilio-and-aspnet-mvc-part-1/comment-page-1/#comment-14869</link>
		<dc:creator>jgid</dc:creator>
		<pubDate>Wed, 22 Jul 2009 08:26:52 +0000</pubDate>
		<guid isPermaLink="false">http://john-sheehan.com/blog/building-a-simple-voicemail-system-with-twilio-and-aspnet-mvc-part-1/#comment-14869</guid>
		<description>No problem. I am on my own as the Twilio guys are using PHP and rest. I&#039;ll figure it out and post here for others to find. Thanks.</description>
		<content:encoded><![CDATA[<p>No problem. I am on my own as the Twilio guys are using PHP and rest. I&#39;ll figure it out and post here for others to find. Thanks.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: John Sheehan</title>
		<link>http://john-sheehan.com/blog/building-a-simple-voicemail-system-with-twilio-and-aspnet-mvc-part-1/comment-page-1/#comment-14868</link>
		<dc:creator>John Sheehan</dc:creator>
		<pubDate>Wed, 22 Jul 2009 08:23:17 +0000</pubDate>
		<guid isPermaLink="false">http://john-sheehan.com/blog/building-a-simple-voicemail-system-with-twilio-and-aspnet-mvc-part-1/#comment-14868</guid>
		<description>I would post this question to &lt;a href=&quot;http://www.twilio.com/forum/&quot; rel=&quot;nofollow&quot;&gt;http://www.twilio.com/forum/&lt;/a&gt; as I&#039;m not &lt;br&gt;familiar with the MSXML2 semantics.</description>
		<content:encoded><![CDATA[<p>I would post this question to <a href="http://www.twilio.com/forum/" rel="nofollow">http://www.twilio.com/forum/</a> as I&#39;m not <br />familiar with the MSXML2 semantics.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: jgid</title>
		<link>http://john-sheehan.com/blog/building-a-simple-voicemail-system-with-twilio-and-aspnet-mvc-part-1/comment-page-1/#comment-14867</link>
		<dc:creator>jgid</dc:creator>
		<pubDate>Wed, 22 Jul 2009 08:19:52 +0000</pubDate>
		<guid isPermaLink="false">http://john-sheehan.com/blog/building-a-simple-voicemail-system-with-twilio-and-aspnet-mvc-part-1/#comment-14867</guid>
		<description>I am trying to post via the following to create outgoing calls. I keep getting an authentication error. Any tips on how you may have done this already?&lt;br&gt;&lt;br&gt;Function PostTo(Data, URL)&lt;br&gt;  Dim objXMLHTTP, xml&lt;br&gt;  On Error Resume Next&lt;br&gt;  Set xml = Server.CreateObject(&quot;MSXML2.ServerXMLHTTP.3.0&quot;)&lt;br&gt;  xml.Open &quot;POST&quot;, URL, False&lt;br&gt;  xml.setRequestHeader &quot;Content-Type&quot;, &quot;application/x-www-form-urlencoded&quot;&lt;br&gt;  xml.Send Data&lt;br&gt;  If xml.readyState &lt;&gt; 4 then&lt;br&gt;    xml.waitForResponse 10&lt;br&gt;  End If&lt;br&gt;  If Err.Number = 0  AND http.Status = 200 then&lt;br&gt;    PostTo = xml.responseText&lt;br&gt;  else&lt;br&gt;    PostTo = &quot;Failed&quot;&lt;br&gt;  End If&lt;br&gt;  Set xml = Nothing&lt;br&gt;End Function&lt;br&gt;&lt;br&gt;&lt;br&gt;My data I am posting looks like this:&lt;br&gt;PostData = &quot;AuthToken=myAuthTokenhere&amp;Caller=5095555555&amp;Called=5095555555&amp;Url=http://www.myurl.com/call/index.php&quot;&lt;br&gt;rslt = PostTo(PostData,&quot;https://api.twilio.com/2008-08-01/Accounts/AccountSID/Calls/&quot;)</description>
		<content:encoded><![CDATA[<p>I am trying to post via the following to create outgoing calls. I keep getting an authentication error. Any tips on how you may have done this already?</p>
<p>Function PostTo(Data, URL)<br />  Dim objXMLHTTP, xml<br />  On Error Resume Next<br />  Set xml = Server.CreateObject(&#8220;MSXML2.ServerXMLHTTP.3.0&#8243;)<br />  xml.Open &#8220;POST&#8221;, URL, False<br />  xml.setRequestHeader &#8220;Content-Type&#8221;, &#8220;application/x-www-form-urlencoded&#8221;<br />  xml.Send Data<br />  If xml.readyState &lt;&gt; 4 then<br />    xml.waitForResponse 10<br />  End If<br />  If Err.Number = 0  AND http.Status = 200 then<br />    PostTo = xml.responseText<br />  else<br />    PostTo = &#8220;Failed&#8221;<br />  End If<br />  Set xml = Nothing<br />End Function</p>
<p>My data I am posting looks like this:<br />PostData = &#8220;AuthToken=myAuthTokenhere&#038;Caller=5095555555&#038;Called=5095555555&#038;Url=http://www.myurl.com/call/index.php&#8221;<br />rslt = PostTo(PostData,&#8221;https://api.twilio.com/2008-08-01/Accounts/AccountSID/Calls/&#8221;)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: jgid</title>
		<link>http://john-sheehan.com/blog/building-a-simple-voicemail-system-with-twilio-and-aspnet-mvc-part-1/comment-page-1/#comment-14737</link>
		<dc:creator>jgid</dc:creator>
		<pubDate>Wed, 22 Jul 2009 03:26:52 +0000</pubDate>
		<guid isPermaLink="false">http://john-sheehan.com/blog/building-a-simple-voicemail-system-with-twilio-and-aspnet-mvc-part-1/#comment-14737</guid>
		<description>No problem. I am on my own as the Twilio guys are using PHP and rest. I&#039;ll figure it out and post here for others to find. Thanks.</description>
		<content:encoded><![CDATA[<p>No problem. I am on my own as the Twilio guys are using PHP and rest. I&#39;ll figure it out and post here for others to find. Thanks.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: John Sheehan</title>
		<link>http://john-sheehan.com/blog/building-a-simple-voicemail-system-with-twilio-and-aspnet-mvc-part-1/comment-page-1/#comment-14736</link>
		<dc:creator>John Sheehan</dc:creator>
		<pubDate>Wed, 22 Jul 2009 03:23:17 +0000</pubDate>
		<guid isPermaLink="false">http://john-sheehan.com/blog/building-a-simple-voicemail-system-with-twilio-and-aspnet-mvc-part-1/#comment-14736</guid>
		<description>I would post this question to &lt;a href=&quot;http://www.twilio.com/forum/&quot; rel=&quot;nofollow&quot;&gt;http://www.twilio.com/forum/&lt;/a&gt; as I&#039;m not &lt;br&gt;familiar with the MSXML2 semantics.</description>
		<content:encoded><![CDATA[<p>I would post this question to <a href="http://www.twilio.com/forum/" rel="nofollow">http://www.twilio.com/forum/</a> as I&#39;m not <br />familiar with the MSXML2 semantics.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: jgid</title>
		<link>http://john-sheehan.com/blog/building-a-simple-voicemail-system-with-twilio-and-aspnet-mvc-part-1/comment-page-1/#comment-14735</link>
		<dc:creator>jgid</dc:creator>
		<pubDate>Wed, 22 Jul 2009 03:19:52 +0000</pubDate>
		<guid isPermaLink="false">http://john-sheehan.com/blog/building-a-simple-voicemail-system-with-twilio-and-aspnet-mvc-part-1/#comment-14735</guid>
		<description>I am trying to post via the following to create outgoing calls. I keep getting an authentication error. Any tips on how you may have done this already?&lt;br&gt;&lt;br&gt;Function PostTo(Data, URL)&lt;br&gt;  Dim objXMLHTTP, xml&lt;br&gt;  On Error Resume Next&lt;br&gt;  Set xml = Server.CreateObject(&quot;MSXML2.ServerXMLHTTP.3.0&quot;)&lt;br&gt;  xml.Open &quot;POST&quot;, URL, False&lt;br&gt;  xml.setRequestHeader &quot;Content-Type&quot;, &quot;application/x-www-form-urlencoded&quot;&lt;br&gt;  xml.Send Data&lt;br&gt;  If xml.readyState &lt;&gt; 4 then&lt;br&gt;    xml.waitForResponse 10&lt;br&gt;  End If&lt;br&gt;  If Err.Number = 0  AND http.Status = 200 then&lt;br&gt;    PostTo = xml.responseText&lt;br&gt;  else&lt;br&gt;    PostTo = &quot;Failed&quot;&lt;br&gt;  End If&lt;br&gt;  Set xml = Nothing&lt;br&gt;End Function&lt;br&gt;&lt;br&gt;&lt;br&gt;My data I am posting looks like this:&lt;br&gt;PostData = &quot;AuthToken=myAuthTokenhere&amp;Caller=5095555555&amp;Called=5095555555&amp;Url=http://www.myurl.com/call/index.php&quot;&lt;br&gt;rslt = PostTo(PostData,&quot;https://api.twilio.com/2008-08-01/Accounts/AccountSID/Calls/&quot;)</description>
		<content:encoded><![CDATA[<p>I am trying to post via the following to create outgoing calls. I keep getting an authentication error. Any tips on how you may have done this already?</p>
<p>Function PostTo(Data, URL)<br />  Dim objXMLHTTP, xml<br />  On Error Resume Next<br />  Set xml = Server.CreateObject(&#8220;MSXML2.ServerXMLHTTP.3.0&#8243;)<br />  xml.Open &#8220;POST&#8221;, URL, False<br />  xml.setRequestHeader &#8220;Content-Type&#8221;, &#8220;application/x-www-form-urlencoded&#8221;<br />  xml.Send Data<br />  If xml.readyState &lt;&gt; 4 then<br />    xml.waitForResponse 10<br />  End If<br />  If Err.Number = 0  AND http.Status = 200 then<br />    PostTo = xml.responseText<br />  else<br />    PostTo = &#8220;Failed&#8221;<br />  End If<br />  Set xml = Nothing<br />End Function</p>
<p>My data I am posting looks like this:<br />PostData = &#8220;AuthToken=myAuthTokenhere&#038;Caller=5095555555&#038;Called=5095555555&#038;Url=http://www.myurl.com/call/index.php&#8221;<br />rslt = PostTo(PostData,&#8221;https://api.twilio.com/2008-08-01/Accounts/AccountSID/Calls/&#8221;)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Lav</title>
		<link>http://john-sheehan.com/blog/building-a-simple-voicemail-system-with-twilio-and-aspnet-mvc-part-1/comment-page-1/#comment-14712</link>
		<dc:creator>Lav</dc:creator>
		<pubDate>Wed, 17 Jun 2009 20:59:03 +0000</pubDate>
		<guid isPermaLink="false">http://john-sheehan.com/blog/building-a-simple-voicemail-system-with-twilio-and-aspnet-mvc-part-1/#comment-14712</guid>
		<description>Thank you! We plan on testing out your code this weekend. Twilio rocks!</description>
		<content:encoded><![CDATA[<p>Thank you! We plan on testing out your code this weekend. Twilio rocks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Danielle Morrill</title>
		<link>http://john-sheehan.com/blog/building-a-simple-voicemail-system-with-twilio-and-aspnet-mvc-part-1/comment-page-1/#comment-14683</link>
		<dc:creator>Danielle Morrill</dc:creator>
		<pubDate>Fri, 15 May 2009 21:43:46 +0000</pubDate>
		<guid isPermaLink="false">http://john-sheehan.com/blog/building-a-simple-voicemail-system-with-twilio-and-aspnet-mvc-part-1/#comment-14683</guid>
		<description>Hi John,&lt;br&gt;&lt;br&gt;This is a great use for Twilio, congratulations and I&#039;m looking forward to part 2 of your post. If you will drop me a line at &lt;a href=&quot;mailto:danielle@twilio.com&quot; rel=&quot;nofollow&quot;&gt;danielle@twilio.com&lt;/a&gt;, I&#039;d love to send you a Twilio t-shirt in thanks and talk about featuring your story as a guest post on our blog. Thanks!&lt;br&gt;&lt;br&gt;Cheers,&lt;br&gt;Danielle Morrill&lt;br&gt;Twilio Community Manager</description>
		<content:encoded><![CDATA[<p>Hi John,</p>
<p>This is a great use for Twilio, congratulations and I&#39;m looking forward to part 2 of your post. If you will drop me a line at <a href="mailto:danielle@twilio.com" rel="nofollow">danielle@twilio.com</a>, I&#39;d love to send you a Twilio t-shirt in thanks and talk about featuring your story as a guest post on our blog. Thanks!</p>
<p>Cheers,<br />Danielle Morrill<br />Twilio Community Manager</p>
]]></content:encoded>
	</item>
</channel>
</rss>
