PageRenderTime 66ms CodeModel.GetById 28ms RepoModel.GetById 1ms app.codeStats 0ms

/src/Amptools/Public/labels/CSharp.aspx

https://github.com/pvencill/amptools
ASP.NET | 882 lines | 655 code | 227 blank | 0 comment | 79 complexity | 203851361b6af3e1f5b5d4a65efea232 MD5 | raw file
  1. <%@ Page Title="amptools.net" Language="C#" MasterPageFile="~/App/Views/Layouts/Site.Master" AutoEventWireup="true" CodeBehind="Index.aspx.cs" Inherits="System.Web.Mvc.ViewPage" %>
  2. <asp:Content ID="Content2" ContentPlaceHolderID="Head" runat="server">
  3. <link href='/Content/default/css/syntax-highlighter.css' rel="stylesheet" type="text/css" />
  4. <link rel="alternate" type="application/rss+xml" title="amptools.net - RSS" href="http://feeds.feedburner.com/amptoolsnet" />
  5. <link rel="service.post" type="application/atom+xml" title="amptools.net - Atom" href="http://www.blogger.com/feeds/7043853799247804655/posts/default" />
  6. <link rel="EditURI" type="application/rsd+xml" title="RSD" href="http://www.blogger.com/rsd.g?blogID=7043853799247804655" />
  7. <style type="text/css">
  8. @import url("http://www.blogger.com/css/blog_controls.css");
  9. @import url("http://www.blogger.com/dyn-css/authorization.css?targetBlogID=7043853799247804655");
  10. </style>
  11. <script type="text/javascript" src="http://www.blogger.com/js/backlink.js"></script>
  12. <script type="text/javascript" src="http://www.blogger.com/js/backlink_control.js"></script>
  13. <script type="text/javascript">var BL_backlinkURL = "http://www.blogger.com/dyn-js/backlink_count.js";var BL_blogId = "7043853799247804655";</script>
  14. </asp:Content>
  15. <asp:Content ID="Content3" ContentPlaceHolderID="Javascript" runat="server">
  16. <script type="text/javascript" src="~/javascripts/prototype.js"></script>
  17. <script type="text/javascript" src="~/javascripts/syntax-highlighter/shCore.js"></script>
  18. <script type="text/javascript" src="~/javascripts/syntax-highlighter/shBrushCSharp.js"></script>
  19. <script type="text/javascript" src="~/javascripts/syntax-highlighter/shBrushRuby.js"></script>
  20. <script type="text/javascript" src="~/javascripts/syntax-highlighter/shBrushJScript.js"></script>
  21. <script type="text/javascript" src="~/javascripts/syntax-highlighter/shBrushCss.js"></script>
  22. <script type="text/javascript" src="~/javascripts/syntax-highlighter/shBrushSql.js"></script>
  23. <script type="text/javascript" src="~/javascripts/syntax-highlighter/shBrushXml.js"></script>
  24. <script type="text/javascript">
  25. //<[CDATA[
  26. dp.SyntaxHighlighter.HighlightAll('code');
  27. //]]>
  28. </script>
  29. </asp:Content>
  30. <asp:Content ID="Content1" ContentPlaceHolderID="main" runat="server">
  31. <div class="left">
  32. <h2 class="silver">
  33. &quot;Working on the complexity that is always indirectly implied by simpilicity.&quot;
  34. </h2>
  35. <h2 class="blog-title"><a name="1099928894407582088"></a>
  36. Simple Log in Amplify
  37. <span class="blog-byline">
  38. by: michael herndon, at: 11/02/2008 11:54:00 PM
  39. </span>
  40. </h2>
  41. <div class="blog-content">
  42. <p>As many people know rails has a simple logger inside the framework which really only outputs to the console. This comes in handy to see SQL output of your models, benchmarks and other cool little things inside the rails framework.&#160; </p> <p>Of course people in the .Net realm tend to want things that scale and yet simplified for them.&#160; So output only to the console won't fly in larger projects.&#160; There is log4net, but you don't want to have it tightly coupled to the system, this caused an issue to one project that I worked on while still working for <a href="http://www.vivussoftware.com">Vivus Software</a> before I came <a href="http://www.opensourceconnections.com">OSC</a>. Where the framework and project both expected a certain version of Log4Net and there was no wrapper to put something else in place if need be.&#160; </p> <span id="more-0"></span> <p>So the solution was to Build small static Log class, that takes a list of an interface ILog (different than log4net's) and then use that interface to build a wrapper around using the root Logger for log4net. This way people can still build their own loggers for amplify or build their own Appenders for Log4Net and amplify will still be able to leverage this. Of course there is also conditional symbol LOG4NET in amplify if you wish to build the amplify framework without any dependency on the log4net library.&#160;&#160; </p> <p>To me this is more like the Console.WriteLine that is needed for a class library vs what log4net is typically used for in an application where it also spits out the type information of a class. To help with the testing using mock object is the <a href="http://code.google.com/p/moq/" rel="tag">Moq (Mock You)</a> which uses the Lambda expression and gets rid of all that crazy record/playback junk to which I loathe.&#160; </p> <pre class="code csharp"> public void Test()
  43. {
  44. var id = 0;
  45. Log.Sql(&quot;SELECT * FROM test&quot;);
  46. Log.Debug(&quot;The id is {0} &quot;, id);
  47. }
  48. [It(Order = 2), Should(&quot;have a debug method that logs debug statements&quot;)]
  49. public void Debug()
  50. {
  51. var calls = new List&lt;string&gt;();
  52. var log = CreateMockLog();
  53. log.Expect(o =&gt; o.Debug(Moq.It.IsAny&lt;string&gt;(), null))
  54. .Callback((string s, object[] args) =&gt; { calls.Add(s); });
  55. calls.Count.ShouldBe(0);
  56. // simple and easily called from anywhere... and lets you
  57. // format messages like
  58. // Log.Debug(&quot;item id: {0} could not be saved&quot;, id);
  59. Log.Debug(&quot;debug&quot;, null);
  60. calls.Count.ShouldBe(1);
  61. calls.Contains(&quot;debug&quot;).ShouldBeTrue();
  62. Log.IsDebug = false;
  63. // its turned off so it won't output anything
  64. Log.Debug(&quot;debug&quot;, null);
  65. calls.Count.ShouldBe(1);
  66. Log.IsDebug = true;
  67. }
  68. private static Mock&lt;ILog&gt; CreateMockLog()
  69. {
  70. var log = new Mock&lt;ILog&gt;();
  71. Log.Loggers.Clear();
  72. Log.Loggers.Add(log.Object);
  73. return log;
  74. }
  75. </pre>
  76. <p>Though keep in mind, one of the more trickier things to mock is the use of a method with the &quot;params&quot; keyword. I had to used a callback that you pass in an object array (object[] args) and I passed in null, otherwise the callback would not fire, and Lambdas don't allow the &quot;params&quot; keyword. Once that was figured out, I was able to use moq successfully to test the Log class successfully. </p> <p class="blogger-labels">Labels: <a rel='tag' href="http://www.amptools.net/labels/Amplify.aspx">Amplify</a>, <a rel='tag' href="http://www.amptools.net/labels/BHAG.aspx">BHAG</a>, <a rel='tag' href="http://www.amptools.net/labels/C#.aspx">C#</a>, <a rel='tag' href="http://www.amptools.net/labels/Code.aspx">Code</a>, <a rel='tag' href="http://www.amptools.net/labels/CSharp.aspx">CSharp</a>, <a rel='tag' href="http://www.amptools.net/labels/Mock Objects.aspx">Mock Objects</a>, <a rel='tag' href="http://www.amptools.net/labels/Moq.aspx">Moq</a>, <a rel='tag' href="http://www.amptools.net/labels/Unit Testing.aspx">Unit Testing</a></p>
  77. </div>
  78. <div class="blog-footer">
  79. <a class="comment-link" href="https://www.blogger.com/comment.g?blogID=7043853799247804655&postID=1099928894407582088"location.href=https://www.blogger.com/comment.g?blogID=7043853799247804655&postID=1099928894407582088;><span style="text-transform:lowercase">0 Comments</span></a>
  80. <a class="comment-link" href="http://www.amptools.net/2008/11/simple-log-in-amplify.aspx#links"><span style="text-transform:lowercase">Links to this post</span></a>
  81. <span class="item-action"><a href="http://www.blogger.com/email-post.g?blogID=7043853799247804655&postID=1099928894407582088" title="Email Post"><img class="icon-action" alt="" src="http://www.blogger.com:80/img/icon18_email.gif" height="13" width="18"/></a></span>
  82. <script type="text/javascript" src="http://w.sharethis.com/widget/?tabs=web%2Cemail&amp;charset=utf-8&amp;services=reddit%2Cdigg%2Cfacebook%2Cmyspace%2Cdelicious%2Cstumbleupon%2Ctechnorati%2Cpropeller%2Cblinklist%2Cmixx%2Cnewsvine%2Cgoogle_bmarks%2Cyahoo_myweb%2Cwindows_live%2Cfurl&amp;style=rotate&amp;publisher=baa2824f-9291-46c0-87b4-6d5a72508a05&amp;headerbg=%23dddddd&amp;inactivebg=%231bb601&amp;inactivefg=%2370eb00%09&amp;linkfg=%231bb601"></script>
  83. </div>
  84. <h2 class="blog-title"><a name="3448672103322818552"></a>
  85. Gallio and Mb-Unit release v3.0.4
  86. <span class="blog-byline">
  87. by: michael herndon, at: 10/29/2008 02:11:00 AM
  88. </span>
  89. </h2>
  90. <div class="blog-content">
  91. <p>You can find many of the new <a href="http://blog.bits-in-motion.com/2008/10/announcing-gallio-and-mbunit-v304.html ">features over at Jeff Brown's blog</a>.&#160; Some of the cooler features of note is the integration with the visual studio testing system, wrapping testing for exceptions into a delegate, and data store called Ambient, in which you can store state for your tests.&#160; I've integrated this into amplify which is again, now on <a href="http://github.com/michaelherndon/amplify/tree/master">GitHub</a>. I did run into a few lil issues when setting this up though....</p> <span id="more-1"></span> <p>The biggest issue was finding out how to turn a project into a test project in order to get the visual studio integration working for Gallio. Basically you need to make modifications to the .csproj file and add an XML element of &lt;ProjectTypeGuids&gt; into the first &lt;PropertyGroup&gt; of the file.&#160; </p> <pre class="code xml">&lt;ProjectTypeGuids&gt;{3AC096D0-A1C2-E12C-1390-A8335801FDAB};
  92. {FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}
  93. &lt;/ProjectTypeGuids&gt;</pre>
  94. <p>After this, I could get the Gallio tests showing up in visual studio. </p>
  95. <p><a href="http://lh3.ggpht.com/amptools/SQf-bZnOv5I/AAAAAAAAABM/xPj4ncLlA3g/s1600-h/Gallio-Test-View%5B2%5D.png"><img style="border-top-width: 0px; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" height="212" alt="Gallio-Test-View" src="http://lh3.ggpht.com/amptools/SQf-b1n8cMI/AAAAAAAAABU/f0_tzJSs_Lg/Gallio-Test-View_thumb.png?imgmax=800" width="244" border="0" /></a> </p>
  96. <p>Now this coupled with <a href="http://testdriven.net/" rel="tag">Test Driven .Net</a> really helps with the testing process especially since with certain versions of Visual Studio, Test Driven .Net will let you run visual studio's code coverage with Gallio. </p>
  97. <p><a href="http://lh6.ggpht.com/amptools/SQf-cYepypI/AAAAAAAAABY/2DfBfKGZbZY/s1600-h/CodeCoverage%5B2%5D.png"><img style="border-top-width: 0px; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" height="207" alt="CodeCoverage" src="http://lh5.ggpht.com/amptools/SQf-cwXSDSI/AAAAAAAAABc/i2MQj8jhAQU/CodeCoverage_thumb.png?imgmax=800" width="244" border="0" /></a> </p>
  98. <p>Again, one of the cooler features was the improvements to Mb-Unit's Asserts (which did change the API, but its all good, cause I wrap the Asserts that I use in BDD style mixin Methods, so I just need to change them in one place). The one really change of note would be adding Assert.Throw and Assert.Throw&lt;T&gt;, to which you can wrap throwing an exception into a delegate.</p>
  99. <p><a href="http://lh6.ggpht.com/amptools/SQf-di2keqI/AAAAAAAAABg/KCLE5wy_nU4/s1600-h/WrappingExceptions%5B2%5D.png"><img style="border-top-width: 0px; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" height="178" alt="WrappingExceptions" src="http://lh3.ggpht.com/amptools/SQf-eB-bggI/AAAAAAAAABk/Tl816nR7vkw/WrappingExceptions_thumb.png?imgmax=800" width="244" border="0" /></a> </p>
  100. <p>All in all nice improvements to both Gallio and Mb-Unit, which are now incorporated into amplify. </p> <p class="blogger-labels">Labels: <a rel='tag' href="http://www.amptools.net/labels/Amplify.aspx">Amplify</a>, <a rel='tag' href="http://www.amptools.net/labels/BDD.aspx">BDD</a>, <a rel='tag' href="http://www.amptools.net/labels/BHAG.aspx">BHAG</a>, <a rel='tag' href="http://www.amptools.net/labels/C#.aspx">C#</a>, <a rel='tag' href="http://www.amptools.net/labels/Code.aspx">Code</a>, <a rel='tag' href="http://www.amptools.net/labels/CSharp.aspx">CSharp</a>, <a rel='tag' href="http://www.amptools.net/labels/Gallio.aspx">Gallio</a>, <a rel='tag' href="http://www.amptools.net/labels/Mb-Unit.aspx">Mb-Unit</a>, <a rel='tag' href="http://www.amptools.net/labels/Mixins.aspx">Mixins</a>, <a rel='tag' href="http://www.amptools.net/labels/Unit Testing.aspx">Unit Testing</a></p>
  101. </div>
  102. <div class="blog-footer">
  103. <a class="comment-link" href="https://www.blogger.com/comment.g?blogID=7043853799247804655&postID=3448672103322818552"location.href=https://www.blogger.com/comment.g?blogID=7043853799247804655&postID=3448672103322818552;><span style="text-transform:lowercase">0 Comments</span></a>
  104. <a class="comment-link" href="http://www.amptools.net/2008/10/gallio-and-mb-unit-release-v304.aspx#links"><span style="text-transform:lowercase">Links to this post</span></a>
  105. <span class="item-action"><a href="http://www.blogger.com/email-post.g?blogID=7043853799247804655&postID=3448672103322818552" title="Email Post"><img class="icon-action" alt="" src="http://www.blogger.com:80/img/icon18_email.gif" height="13" width="18"/></a></span>
  106. <script type="text/javascript" src="http://w.sharethis.com/widget/?tabs=web%2Cemail&amp;charset=utf-8&amp;services=reddit%2Cdigg%2Cfacebook%2Cmyspace%2Cdelicious%2Cstumbleupon%2Ctechnorati%2Cpropeller%2Cblinklist%2Cmixx%2Cnewsvine%2Cgoogle_bmarks%2Cyahoo_myweb%2Cwindows_live%2Cfurl&amp;style=rotate&amp;publisher=baa2824f-9291-46c0-87b4-6d5a72508a05&amp;headerbg=%23dddddd&amp;inactivebg=%231bb601&amp;inactivefg=%2370eb00%09&amp;linkfg=%231bb601"></script>
  107. </div>
  108. <h2 class="blog-title"><a name="1045031666772907229"></a>
  109. Getting the |DataDirectory| folder in C sharp
  110. <span class="blog-byline">
  111. by: michael herndon, at: 8/14/2008 02:19:00 PM
  112. </span>
  113. </h2>
  114. <div class="blog-content">
  115. <p>One of the cool things about sql server express's connection strings is the ability to relatively path database files for sql express databases. Often one might see something in the connection string that looks like " AttachDbFilename=|DataDirectory|\file.mdf ". The pipes and DataDirectory is parsed to equate to a relative data directory file path that changes depending on the application type (i.e. an application deployed by click once, vs an application that is installed to a folder). </p>
  116. <p>However sometimes you might want to know where that data directory is, like in my case, I want to take a look at a connection string and attempt to create a database based off the connection string in order to speed up development using database migrations. This could also come in handy deploying small applications. </p>
  117. <p>So after some research via google, I found <a href="http://forums.microsoft.com/MSDN/ShowPost.aspx?PostID=702378&amp;SiteID=1">this gem on msdn about where the DataDirectory is</a>, though not guaranteed to be accurate. It basically follows 3 simple hierarchal rules. If the AppDomain.SetData method has been used, then the directory is set there. Otherwise if the application is a click once application the data directory is set or its in the application root folder. </p> <p>So below is what the code might possibly look like in order to get the applications data directory no matter what type of application it is and it gives you ability to set the DataDirectory as well. </p> <p></p>
  118. <pre class="code csharp">namespace Amplify
  119. {
  120. using System;
  121. using System.Configuration;
  122. using System.Collections.Generic;
  123. using System.Collections.Specialized;
  124. using System.Deployment;
  125. using System.Deployment.Application;
  126. using System.IO;
  127. using System.Text;
  128. using System.Reflection;
  129. using System.Web;
  130. public class ApplicationContext {
  131. private static NameValueContext s_properties;
  132. public static bool IsWebsite { get; internal set; }
  133. static ApplicationContext()
  134. {
  135. IsWebsite = (System.Web.HttpContext.Current != null);
  136. }
  137. public static string DataDirectory
  138. {
  139. get
  140. {
  141. string dataDirectory = GetProperty("DataDirectory") as string;
  142. if (string.IsNullOrEmpty(dataDirectory))
  143. {
  144. dataDirectory = AppDomain
  145. .CurrentDomain.GetData("DataDirectory") as string;
  146. if (dataDirectory == null)
  147. {
  148. if (ApplicationDeployment.IsNetworkDeployed)
  149. dataDirectory = ApplicationDeployment
  150. .CurrentDeployment.DataDirectory;
  151. else
  152. dataDirectory = Path.GetDirectoryName(
  153. Assembly.GetExecutingAssembly()
  154. .GetName().CodeBase);
  155. }
  156. dataDirectory = dataDirectory.Replace(@"file:\", "");
  157. SetProperty("DataDirectory", dataDirectory);
  158. }
  159. return dataDirectory;
  160. }
  161. set
  162. {
  163. string dataDirectory = GetProperty("DataDirectory") as string;
  164. value = value.Replace(@"file:\", value);
  165. if (!System.IO.Directory.Exists(dataDirectory))
  166. System.IO.Directory.CreateDirectory(dataDirectory);
  167. SetProperty("DataDirectory", value);
  168. AppDomain.CurrentDomain.SetData("DataDirectory", value);
  169. }
  170. }
  171. public static object GetProperty(string propertyName)
  172. {
  173. if (IsWebsite)
  174. return HttpContext.Current.Application[propertyName];
  175. else
  176. return Context[propertyName];
  177. }
  178. public static void SetProperty(string propertyName, object value)
  179. {
  180. if (IsWebsite)
  181. HttpContext.Current.Application[propertyName] = value;
  182. else
  183. Context[propertyName] = value;
  184. }
  185. private static NameValueContext Context
  186. {
  187. get
  188. {
  189. if (s_properties == null)
  190. s_properties = new NameValueContext();
  191. return s_properties;
  192. }
  193. }
  194. }
  195. }</pre><p class="blogger-labels">Labels: <a rel='tag' href="http://www.amptools.net/labels/Amplify.aspx">Amplify</a>, <a rel='tag' href="http://www.amptools.net/labels/C#.aspx">C#</a>, <a rel='tag' href="http://www.amptools.net/labels/Code.aspx">Code</a>, <a rel='tag' href="http://www.amptools.net/labels/CSharp.aspx">CSharp</a></p>
  196. </div>
  197. <div class="blog-footer">
  198. <a class="comment-link" href="https://www.blogger.com/comment.g?blogID=7043853799247804655&postID=1045031666772907229"location.href=https://www.blogger.com/comment.g?blogID=7043853799247804655&postID=1045031666772907229;><span style="text-transform:lowercase">0 Comments</span></a>
  199. <a class="comment-link" href="http://www.amptools.net/2008/08/getting-datadirectory-folder-in-c-sharp.aspx#links"><span style="text-transform:lowercase">Links to this post</span></a>
  200. <span class="item-action"><a href="http://www.blogger.com/email-post.g?blogID=7043853799247804655&postID=1045031666772907229" title="Email Post"><img class="icon-action" alt="" src="http://www.blogger.com:80/img/icon18_email.gif" height="13" width="18"/></a></span>
  201. <script type="text/javascript" src="http://w.sharethis.com/widget/?tabs=web%2Cemail&amp;charset=utf-8&amp;services=reddit%2Cdigg%2Cfacebook%2Cmyspace%2Cdelicious%2Cstumbleupon%2Ctechnorati%2Cpropeller%2Cblinklist%2Cmixx%2Cnewsvine%2Cgoogle_bmarks%2Cyahoo_myweb%2Cwindows_live%2Cfurl&amp;style=rotate&amp;publisher=baa2824f-9291-46c0-87b4-6d5a72508a05&amp;headerbg=%23dddddd&amp;inactivebg=%231bb601&amp;inactivefg=%2370eb00%09&amp;linkfg=%231bb601"></script>
  202. </div>
  203. <h2 class="blog-title"><a name="458120713693871790"></a>
  204. Amplify&#39;s WCF Twitter API Client Library v0.2
  205. <span class="blog-byline">
  206. by: michael herndon, at: 7/28/2008 12:33:00 AM
  207. </span>
  208. </h2>
  209. <div class="blog-content">
  210. <p>After some playing around with WCF and Flickr, I decided to move everything internally for the twitter library to use WCF with it's <a href="http://msdn.microsoft.com/en-us/library/system.servicemodel.servicecontractattribute.aspx">ServiceContract</a>.&#160; It was more of a pain that initially thought it would be. WCF is amazingly customizable but still has a couple of downfalls thanks to REST and people not writing their API for all technologies.&#160; </p> <p>The biggest issue is that Twitter throws an Http 403 unknown exception when you call a page and something is incorrect in the url.&#160; Well with WCF, it throws a <a href="http://msdn.microsoft.com/en-us/library/system.servicemodel.security.messagesecurityexception.aspx">System.ServiceModel.Security.MessageSecurityException</a>, due to the url returning a status code other than 200, and it wraps the inner exceptions inside of that. </p> <p>I'm sure there is a better way to get around this, but each proxy call is now wrapped by a try/catch in the client class methods in order to check for the <a href="http://msdn.microsoft.com/en-us/library/system.servicemodel.security.messagesecurityexception.aspx">MessageSecurityException</a>, then it checks the inner exception and determines if twitter sent back a response error message. If it does the library now throws a twitter exception with error information, otherwise you would only see the WCF exception that would mask the real issue.&#160; </p> <p>Also I renamed the &quot;Service&quot; classes to &quot;Client&quot; seeing that is the proper term for them.&#160; The tests are now updated as well to reflect the changes.&#160; The tests are a good way of seeing of how to use the library. Last but not least, methods now return arrays instead of lists in order to be more REST friendly. </p> <p></p> <pre class="code csharp">using Amplify.Twitter;
  211. using System.Security;
  212. // ... stuff
  213. public void Test()
  214. {
  215. try {
  216. string temp = &quot;password&quot;;
  217. Twitter.SetCredentials(&quot;Username&quot;, temp);
  218. StatusClient client = Twitter.CreateStatusClient();
  219. // or StatusClient client = new StatusClient(&quot;Username&quot;, temp);
  220. Status[] tweets = service.GetUserTimeline();
  221. } catch (TwitterException ex) {
  222. Log.Write(ex.ToString()); // write the twitter rest error.
  223. }
  224. }</pre> <p class="blogger-labels">Labels: <a rel='tag' href="http://www.amptools.net/labels/Amplify.aspx">Amplify</a>, <a rel='tag' href="http://www.amptools.net/labels/BHAG.aspx">BHAG</a>, <a rel='tag' href="http://www.amptools.net/labels/C#.aspx">C#</a>, <a rel='tag' href="http://www.amptools.net/labels/Code.aspx">Code</a>, <a rel='tag' href="http://www.amptools.net/labels/CSharp.aspx">CSharp</a>, <a rel='tag' href="http://www.amptools.net/labels/JSON.aspx">JSON</a>, <a rel='tag' href="http://www.amptools.net/labels/REST.aspx">REST</a>, <a rel='tag' href="http://www.amptools.net/labels/Twitter.aspx">Twitter</a>, <a rel='tag' href="http://www.amptools.net/labels/WCF.aspx">WCF</a></p>
  225. </div>
  226. <div class="blog-footer">
  227. <a class="comment-link" href="https://www.blogger.com/comment.g?blogID=7043853799247804655&postID=458120713693871790"location.href=https://www.blogger.com/comment.g?blogID=7043853799247804655&postID=458120713693871790;><span style="text-transform:lowercase">2 Comments</span></a>
  228. <a class="comment-link" href="http://www.amptools.net/2008/07/amplify-wcf-twitter-api-client-library.aspx#links"><span style="text-transform:lowercase">Links to this post</span></a>
  229. <span class="item-action"><a href="http://www.blogger.com/email-post.g?blogID=7043853799247804655&postID=458120713693871790" title="Email Post"><img class="icon-action" alt="" src="http://www.blogger.com:80/img/icon18_email.gif" height="13" width="18"/></a></span>
  230. <script type="text/javascript" src="http://w.sharethis.com/widget/?tabs=web%2Cemail&amp;charset=utf-8&amp;services=reddit%2Cdigg%2Cfacebook%2Cmyspace%2Cdelicious%2Cstumbleupon%2Ctechnorati%2Cpropeller%2Cblinklist%2Cmixx%2Cnewsvine%2Cgoogle_bmarks%2Cyahoo_myweb%2Cwindows_live%2Cfurl&amp;style=rotate&amp;publisher=baa2824f-9291-46c0-87b4-6d5a72508a05&amp;headerbg=%23dddddd&amp;inactivebg=%231bb601&amp;inactivefg=%2370eb00%09&amp;linkfg=%231bb601"></script>
  231. </div>
  232. <h2 class="blog-title"><a name="6391037880199004989"></a>
  233. Use C# to determine where and what version of java is installed
  234. <span class="blog-byline">
  235. by: michael herndon, at: 7/22/2008 08:56:00 AM
  236. </span>
  237. </h2>
  238. <div class="blog-content">
  239. <p>While writing an MsBuild Task that is calling a jar file, there was a need to find out information on the java runtime on the local machine, otherwise when I do publish the task, the developer would be required to install a specific version of java in a specific location.&#160; That kind of thing just doesn't fly if you're writing on a 64 bit machine due to having dual &quot;Program Files&quot; folders, one for 64 bit programs, the other for x86.&#160; Not only that, it really increases complexity to the end user/developer who might want to use the MsBuild Task. </p> <p>So after poking around in the registry, I found out there was information about the Java Runtime, including which version is currently the default, and where the file path is. I wrote a singleton class that looks at the registry and grabs that information.&#160; Though usually singleton generally only checks to see if the instance is null and then instantiates it, the code below checks the registry during the &quot;Get&quot; method. </p> <pre class="code csharp">namespace Amplify.Tasks
  240. {
  241. using System;
  242. using System.Collections.Generic;
  243. using System.Linq;
  244. using System.Text;
  245. using Microsoft.Win32;
  246. public class JavaInfo
  247. {
  248. private static JavaInfo instance = null;
  249. protected JavaInfo()
  250. {
  251. this.CurrentVersion = &quot;&quot;;
  252. this.Installed = false;
  253. this.Path = &quot;&quot;;
  254. }
  255. public string CurrentVersion { get; set; }
  256. public bool Installed { get; set; }
  257. public string Path { get; set; }
  258. public static JavaInfo Get()
  259. {
  260. if (instance == null)
  261. {
  262. RegistryKey key = Registry.LocalMachine;
  263. JavaInfo info = new JavaInfo();
  264. string location = @&quot;Software\JavaSoft\Java Runtime Environment&quot;;
  265. RegistryKey environment = key.OpenSubKey(location);
  266. if (environment != null)
  267. {
  268. info.Installed = true;
  269. object value = environment.GetValue(&quot;CurrentVersion&quot;);
  270. if (value != null)
  271. {
  272. info.CurrentVersion = value.ToString();
  273. RegistryKey currentVersion = environment.OpenSubKey(info.CurrentVersion);
  274. if (currentVersion != null)
  275. {
  276. value = currentVersion.GetValue(&quot;JavaHome&quot;);
  277. if (value != null)
  278. info.Path = value.ToString();
  279. }
  280. }
  281. }
  282. instance = info;
  283. }
  284. return instance;
  285. }
  286. }
  287. }</pre> <p class="blogger-labels">Labels: <a rel='tag' href="http://www.amptools.net/labels/C#.aspx">C#</a>, <a rel='tag' href="http://www.amptools.net/labels/Code.aspx">Code</a>, <a rel='tag' href="http://www.amptools.net/labels/CSharp.aspx">CSharp</a>, <a rel='tag' href="http://www.amptools.net/labels/Java.aspx">Java</a></p>
  288. </div>
  289. <div class="blog-footer">
  290. <a class="comment-link" href="https://www.blogger.com/comment.g?blogID=7043853799247804655&postID=6391037880199004989"location.href=https://www.blogger.com/comment.g?blogID=7043853799247804655&postID=6391037880199004989;><span style="text-transform:lowercase">0 Comments</span></a>
  291. <a class="comment-link" href="http://www.amptools.net/2008/07/use-c-to-determine-where-and-what.aspx#links"><span style="text-transform:lowercase">Links to this post</span></a>
  292. <span class="item-action"><a href="http://www.blogger.com/email-post.g?blogID=7043853799247804655&postID=6391037880199004989" title="Email Post"><img class="icon-action" alt="" src="http://www.blogger.com:80/img/icon18_email.gif" height="13" width="18"/></a></span>
  293. <script type="text/javascript" src="http://w.sharethis.com/widget/?tabs=web%2Cemail&amp;charset=utf-8&amp;services=reddit%2Cdigg%2Cfacebook%2Cmyspace%2Cdelicious%2Cstumbleupon%2Ctechnorati%2Cpropeller%2Cblinklist%2Cmixx%2Cnewsvine%2Cgoogle_bmarks%2Cyahoo_myweb%2Cwindows_live%2Cfurl&amp;style=rotate&amp;publisher=baa2824f-9291-46c0-87b4-6d5a72508a05&amp;headerbg=%23dddddd&amp;inactivebg=%231bb601&amp;inactivefg=%2370eb00%09&amp;linkfg=%231bb601"></script>
  294. </div>
  295. <h2 class="blog-title"><a name="8164722880411458481"></a>
  296. Using WCF to access the Flickr JSON API
  297. <span class="blog-byline">
  298. by: michael herndon, at: 7/17/2008 06:40:00 AM
  299. </span>
  300. </h2>
  301. <div class="blog-content">
  302. <p>Even though there are quite a few opensource .Net libraries REST API out there, and a really impressive one for Flickr, they tend to never evolve or fork to use the newer framework technologies.&#160; I think its great that they support 1.0, 2.0, and mono, but why not fork and support WCF?&#160; I think part of the problem that .Net 3.5 use is not wide spread as it should be is not only information overload and bad naming for extension libraries, but also lack of opensource support to provide libraries and basis for current technology.&#160; </p> <p>Flickr tends to be a little more tricky to use when calling it than some other REST APIs. WCF is a cool technology, but needs to be massaged when using it with Flickr due to a couple of gotchas and not so obvious things about WCF. In order to use Flickr, you need to register for an api_key and a shared secret code which is used to create an MD5 hash. You also need to create that MD5 each time you call a method, using the url parameters in a certain way. </p> <p>There are also a few not so obvious factors about using the JSON part of Flickr. All of the .Net libraries I've seen so far, use XML. While C# is king of parsing&#160; XML, JSON tends to be more compact, which means less expense over the wire, though it might mean more time parsing once on the developers end point. So there are tradeoffs to using it. </p> <p>When I created the classes needed to use WCF to call Flickr, I have the actual &quot;DataContract&quot; object (DTO, Data Transfer Object), A Hash (Dictionary&lt;string, object&gt;) for adding the parameters to create the MD5 signature, A base class for creating the WCF proxy, a custom &quot;WebContentTypeMapper&quot;, The &quot;ServiceContract&quot; interface, the actual &quot;Client class&quot;, and a mixins class for creating the MD5. </p> <p>Here are some of the gotchas that I ran into while getting WCF to work with Flickr. </p> <p></p> <ol> <li>Flickr makes you create a md5 hash to send with every call for ALL parameters in alphabetical order using your &quot;Shared Secret&quot; Code as part of the md5.&#160;&#160; </li> <li>Flickr's Json response &quot;Content-Type&quot; header is sent not as &quot;application/json&quot; but as &quot;text/plain&quot; which equates to &quot;Raw&quot; in WCF lingo.&#160; </li> <li>The response object is wrapped and not obvious when it comes to json how the DataContract object should be formed.&#160; </li> <li>Flickr will wrap the json response in a javascript function unless you pass in the parameter &quot;nojsoncallback=1&quot; </li> </ol> <p>To get around number one, I created an extension method that takes a Hash (Dictionary&lt;string, object&gt;) and adds method that converts the parameters into a MD5 string. </p> <pre class="code csharp">namespace Amplify.Linq
  303. {
  304. using System;
  305. using System.Collections.Generic;
  306. using System.Linq;
  307. using System.Text;
  308. #if STANDALONE
  309. public class Hash : Dictionary&lt;string, object&gt;
  310. {
  311. }
  312. #endif
  313. }
  314. // different file
  315. namespace Amplify.Linq
  316. {
  317. using System;
  318. using System.Collections.Generic;
  319. using System.Linq;
  320. using System.Security.Cryptography;
  321. using System.Text;
  322. using Amplify.Linq;
  323. public static class Mixins
  324. {
  325. public static string ToMD5(this Hash obj, string secret)
  326. {
  327. var query = from item in obj
  328. orderby item.Key ascending
  329. select item.Key + item.Value.ToString();
  330. StringBuilder builder = new StringBuilder(secret, 2048);
  331. foreach (string item in query)
  332. builder.Append(item);
  333. MD5CryptoServiceProvider crypto = new MD5CryptoServiceProvider();
  334. byte[] bytes = Encoding.UTF8.GetBytes(builder.ToString());
  335. byte[] hashedBytes = crypto.ComputeHash(bytes, 0, bytes.Length);
  336. return BitConverter.ToString(hashedBytes).Replace(&quot;-&quot;, &quot;&quot;).ToLower();
  337. }
  338. }
  339. }</pre>
  340. <p>Well Gotcha number two, took a bit of research to figure it out. The error I got was that it was looking for Json or XML but could not do anything with &quot;Raw&quot;. So the solution is to create a custom binding with a custom WebContentTypeManager. </p>
  341. <pre class="code csharp">namespace Amplify.Flickr
  342. {
  343. using System.ServiceModel;
  344. using System.ServiceModel.Channels;
  345. using System.Runtime.Serialization;
  346. using System.ServiceModel.Web;
  347. public class JsonContentMapper : WebContentTypeMapper
  348. {
  349. public override WebContentFormat GetMessageFormatForContentType(string contentType)
  350. {
  351. return WebContentFormat.Json;
  352. }
  353. }
  354. }
  355. // different file
  356. namespace Amplify.Flickr
  357. {
  358. using System;
  359. using System.Collections.Generic;
  360. using System.Linq;
  361. using System.Text;
  362. using System.ServiceModel;
  363. using System.ServiceModel.Channels;
  364. using System.ServiceModel.Description;
  365. using System.ServiceModel.Web;
  366. using Amplify.Linq;
  367. public class FlickrClient&lt;T&gt;
  368. {
  369. protected string Secret { get; set; }
  370. protected string Key { get; set; }
  371. protected string Token { get; set; }
  372. protected string Url { get; set; }
  373. protected T Proxy { get; set; }
  374. public FlickrClient(string key, string secret)
  375. {
  376. this.Key = key;
  377. this.Secret = secret;
  378. this.Url = &quot;http://api.flickr.com/services/rest&quot;;
  379. this.Proxy = this.InitializeProxy();
  380. }
  381. public FlickrClient(string key, string secret, string token)
  382. :this(key, secret)
  383. {
  384. this.Token = token;
  385. }
  386. protected virtual T InitializeProxy()
  387. {
  388. // using custom wrapper
  389. CustomBinding binding = new CustomBinding(new WebHttpBinding());
  390. WebMessageEncodingBindingElement property = binding.Elements.Find&lt;WebMessageEncodingBindingElement&gt;();
  391. property.ContentTypeMapper = new JsonContentMapper();
  392. ChannelFactory&lt;T&gt; channel = new ChannelFactory&lt;T&gt;(
  393. binding, this.Url);
  394. channel.Endpoint.Behaviors.Add( new WebHttpBehavior());
  395. return channel.CreateChannel();
  396. }
  397. }
  398. }</pre>
  399. <p>The 3rd issue, to know that all objects are wrapped in a &quot;Response&quot; object. To create a DataContract for the getFrob method on flickr, it took looking at the json to see what it was returning. The object below is the basic form of the Json object that is returned, it also includes the properties in case an error object is returned. </p>
  400. <pre class="code csharp"> using System;
  401. using System.Collections.Generic;
  402. using System.Linq;
  403. using System.Text;
  404. using System.Runtime.Serialization;
  405. [DataContract]
  406. public class FrobResponse
  407. {
  408. [DataMember(Name = &quot;frob&quot;)]
  409. public JsonObject Frob { get; set; }
  410. [DataContract(Name = &quot;frob&quot;)]
  411. public class JsonObject
  412. {
  413. [DataMember(Name = &quot;_content&quot;)]
  414. public string Content { get; set; }
  415. }
  416. [DataMember(Name = &quot;stat&quot;)]
  417. public string Status { get; set; }
  418. [DataMember(Name = &quot;code&quot;)]
  419. public int Code { get; set; }
  420. [DataMember(Name = &quot;message&quot;)]
  421. public string Message { get; set; }
  422. }
  423. // different file
  424. using System;
  425. using System.Collections.Generic;
  426. using System.Linq;
  427. using System.Text;
  428. using System.ServiceModel;
  429. using System.ServiceModel.Web;
  430. [ServiceContract]
  431. public interface IAuthClient
  432. {
  433. [OperationContract,
  434. WebInvoke(
  435. UriTemplate = &quot;/?method=flickr.auth.getFrob&amp;format=json&amp;nojsoncallback=1&amp;api_key={key}&amp;api_sig={signature}&quot;,
  436. ResponseFormat = WebMessageFormat.Json,
  437. BodyStyle = WebMessageBodyStyle.Bare)]
  438. FrobResponse GetFrob(string signature, string key);
  439. [OperationContract,
  440. WebInvoke(
  441. UriTemplate = &quot;/?method=flickr.auth.getToken&amp;format=json&amp;nojsoncallback=1&amp;api_key={key}&amp;frob={frob}&amp;api_sig={signature}&quot;,
  442. ResponseFormat = WebMessageFormat.Json,
  443. BodyStyle = WebMessageBodyStyle.WrappedResponse)]
  444. Auth GetToken(string signature, string key, string frob);
  445. }
  446. // the actual client class.
  447. using System;
  448. using System.Collections.Generic;
  449. using System.Linq;
  450. using System.Text;
  451. using Amplify.Linq;
  452. public class AuthClient : FlickrClient&lt;IAuthClient&gt;
  453. {
  454. public AuthClient(string key, string secret)
  455. :base(key, secret)
  456. { }
  457. public AuthClient(string key, string secret, string token)
  458. :base(key, secret, token)
  459. { }
  460. public string GetFrob()
  461. {
  462. string md5 = new Hash() {
  463. {&quot;api_key&quot;, this.Key},
  464. {&quot;format&quot;, &quot;json&quot;},
  465. {&quot;method&quot;, &quot;flickr.auth.getFrob&quot;},
  466. {&quot;nojsoncallback&quot;, 1}
  467. }.ToMD5(this.Secret);
  468. FrobResponse response = this.Proxy.GetFrob(md5, this.Key);
  469. if (response.Code &gt; 0)
  470. throw new Exception(response.Message);
  471. return response.Frob.Content;
  472. }
  473. }</pre> <p class="blogger-labels">Labels: <a rel='tag' href="http://www.amptools.net/labels/Amplify.aspx">Amplify</a>, <a rel='tag' href="http://www.amptools.net/labels/C#.aspx">C#</a>, <a rel='tag' href="http://www.amptools.net/labels/Code.aspx">Code</a>, <a rel='tag' href="http://www.amptools.net/labels/CSharp.aspx">CSharp</a>, <a rel='tag' href="http://www.amptools.net/labels/Flickr.aspx">Flickr</a>, <a rel='tag' href="http://www.amptools.net/labels/JSON.aspx">JSON</a>, <a rel='tag' href="http://www.amptools.net/labels/REST.aspx">REST</a>, <a rel='tag' href="http://www.amptools.net/labels/WCF.aspx">WCF</a></p>
  474. </div>
  475. <div class="blog-footer">
  476. <a class="comment-link" href="https://www.blogger.com/comment.g?blogID=7043853799247804655&postID=8164722880411458481"location.href=https://www.blogger.com/comment.g?blogID=7043853799247804655&postID=8164722880411458481;><span style="text-transform:lowercase">0 Comments</span></a>
  477. <a class="comment-link" href="http://www.amptools.net/2008/07/using-wcf-to-access-flickr-json-api.aspx#links"><span style="text-transform:lowercase">Links to this post</span></a>
  478. <span class="item-action"><a href="http://www.blogger.com/email-post.g?blogID=7043853799247804655&postID=8164722880411458481" title="Email Post"><img class="icon-action" alt="" src="http://www.blogger.com:80/img/icon18_email.gif" height="13" width="18"/></a></span>
  479. <script type="text/javascript" src="http://w.sharethis.com/widget/?tabs=web%2Cemail&amp;charset=utf-8&amp;services=reddit%2Cdigg%2Cfacebook%2Cmyspace%2Cdelicious%2Cstumbleupon%2Ctechnorati%2Cpropeller%2Cblinklist%2Cmixx%2Cnewsvine%2Cgoogle_bmarks%2Cyahoo_myweb%2Cwindows_live%2Cfurl&amp;style=rotate&amp;publisher=baa2824f-9291-46c0-87b4-6d5a72508a05&amp;headerbg=%23dddddd&amp;inactivebg=%231bb601&amp;inactivefg=%2370eb00%09&amp;linkfg=%231bb601"></script>
  480. </div>
  481. <h2 class="blog-title"><a name="1989566401714559482"></a>
  482. Sample Mixins for HttpRequestBase to use with Asp.Net MVC
  483. <span class="blog-byline">
  484. by: michael herndon, at: 7/16/2008 12:40:00 AM
  485. </span>
  486. </h2>
  487. <div class="blog-content">
  488. <p>Being a semi avid user of rails for my day job, you tend to miss a couple of things that rails has that is not in Asp.Net's MVC framework. It is a great start and the control over the html (minus laziness of whoever ever developed their &quot;Html.DropDownList&quot; extension method, grrr INDENT YOUR NEW LINES!!), is much greater than what webforms gives you. One of the missing things that I miss is the request.xhr?, request.post?, etc methods that end to be helpful when deciding if this is an AJAX call or an actual action call to return the correct page. </p> <p>So how do you determine if the request is an ajax request or just a regular page request. What about enforcing that a page is SSL?&#160; What about doing different things depending if the request is a GET or POST?&#160; </p> <p>So after some googling about headers, rails, and such: here are the first go around of extension methods for HttpRequestBase that should come in handy. </p> <pre class="code csharp">public static class ControllerMixins
  489. {
  490. public static bool IsPost(this HttpRequestBase obj)
  491. {
  492. return obj.Headers[&quot;REQUEST_METHOD&quot;].ToLower() == &quot;post&quot;;
  493. }
  494. public static bool IsGet(this HttpRequestBase obj)
  495. {
  496. return obj.Headers[&quot;REQUEST_METHOD&quot;].ToLower() == &quot;get&quot;;
  497. }
  498. public static bool IsXhr(this HttpRequestBase obj)
  499. {
  500. string value = obj.Headers[&quot;HTTP_X_REQUESTED_WITH&quot;];
  501. return (!string.IsNullOrEmpty(value) &amp;&amp; value.ToLower() == &quot;xmlhttprequest&quot;);
  502. }
  503. public static bool IsSSL(this HttpRequestBase obj)
  504. {
  505. return obj.Headers[&quot;HTTPS&quot;] == &quot;on&quot; ||
  506. obj.Headers[&quot;'HTTP_X_FORWARDED_PROTO'&quot;] == &quot;https&quot;;
  507. }
  508. }</pre> <p class="blogger-labels">Labels: <a rel='tag' href="http://www.amptools.net/labels/Asp.Net.aspx">Asp.Net</a>, <a rel='tag' href="http://www.amptools.net/labels/Asp.Net Mvc.aspx">Asp.Net Mvc</a>, <a rel='tag' href="http://www.amptools.net/labels/C#.aspx">C#</a>, <a rel='tag' href="http://www.amptools.net/labels/Code.aspx">Code</a>, <a rel='tag' href="http://www.amptools.net/labels/CSharp.aspx">CSharp</a>, <a rel='tag' href="http://www.amptools.net/labels/Mixins.aspx">Mixins</a></p>
  509. </div>
  510. <div class="blog-footer">
  511. <a class="comment-link" href="https://www.blogger.com/comment.g?blogID=7043853799247804655&postID=1989566401714559482"location.href=https://www.blogger.com/comment.g?blogID=7043853799247804655&postID=1989566401714559482;><span style="text-transform:lowercase">0 Comments</span></a>
  512. <a class="comment-link" href="http://www.amptools.net/2008/07/sample-mixins-for-httprequestbase-to.aspx#links"><span style="text-transform:lowercase">Links to this post</span></a>
  513. <span class="item-action"><a href="http://www.blogger.com/email-post.g?blogID=7043853799247804655&postID=1989566401714559482" title="Email Post"><img class="icon-action" alt="" src="http://www.blogger.com:80/img/icon18_email.gif" height="13" width="18"/></a></span>
  514. <script type="text/javascript" src="http://w.sharethis.com/widget/?tabs=web%2Cemail&amp;charset=utf-8&amp;services=reddit%2Cdigg%2Cfacebook%2Cmyspace%2Cdelicious%2Cstumbleupon%2Ctechnorati%2Cpropeller%2Cblinklist%2Cmixx%2Cnewsvine%2Cgoogle_bmarks%2Cyahoo_myweb%2Cwindows_live%2Cfurl&amp;style=rotate&amp;publisher=baa2824f-9291-46c0-87b4-6d5a72508a05&amp;headerbg=%23dddddd&amp;inactivebg=%231bb601&amp;inactivefg=%2370eb00%09&amp;linkfg=%231bb601"></script>
  515. </div>
  516. <h2 class="blog-title"><a name="3907268195622759157"></a>
  517. Amplify&#39;s TwitterN, Yet Another C# Twitter REST API Library
  518. <span class="blog-byline">
  519. by: michael herndon, at: 7/13/2008 03:08:00 PM
  520. </span>
  521. </h2>
  522. <div class="blog-content">
  523. <p><a href="http://code.google.com/p/twittern">http://code.google.com/p/twittern</a></p> <p>I put together a C# twitter library that uses WCF's <a href="http://msdn.microsoft.com/en-us/library/system.runtime.serialization.datacontractattribute.aspx">DataContract</a> &amp; <a href="http://msdn.microsoft.com/en-us/library/system.runtime.serialization.datamemberattribute.aspx">DataMembers</a> and .Net 3.5's <a href="http://msdn.microsoft.com/en-us/library/system.runtime.serialization.json.datacontractjsonserializer.aspx">DataContractJsonSerializer</a>.&#160; Its currently in alpha stage, as I need to finish writing the tests, documentation and make a simple WPF client for twitter.&#160; I needed a twitter library for a personal &quot;secret&quot; project of mine and found that most twitter libraries do not keep up with the twitter API and break when using them. Plus they tend to go to great lengths when parsing the xml.&#160; Unfortunately I do not know if this will work on mono yet. It seems that they have &quot;<a href="http://www.mono-project.com/WCF">Olive</a>&quot;, which is mono's version of WCF and I've seen where they have a path for the &quot;DataContractJsonSerializer&quot;.&#160; If there are any one familiar enough with mono, please by all means use the code, join the project.&#160; </p> <p>One design decision that I made was to use Json rather than xml as its more compact and less data to transfer.&#160; I used WCF because with DataContract &amp; DataMembers you can parse Json and you can name your properties the property way with Pascal Case properties and then tell wcf what attributes of json they represent. This way you don't have properties that look like ruby like &quot;screen_name&quot; or&#160; &quot;profile_sidebar_border_color&quot; in your <a href="http://martinfowler.com/eaaCatalog/dataTransferObject.html">Data Transfer Object</a> in order to deserialize the Json response from twitter. </p> <p>&#160;</p> <p>A basic sample of how to use the library is below. </p> <pre class="code csharp">
  524. using Amplify.Twitter;
  525. using System.Security;
  526. // ... stuff
  527. public void Test()
  528. {
  529. SecureString password = new SecureString();
  530. string temp = "password";
  531. for (var i = 0; i &lt; temp.Length; i++)
  532. password.AppendChar(temp[i]);
  533. password.MakeReadOnly();
  534. Twitter.SetCredentials("Username", password);
  535. StatusService service = Twitter.CreateStatusService();
  536. // or StatusService service = new StatusService("Username", password);
  537. List&lt;Status&gt; tweets = service.GetUserTimeline("MichaelHerndon");
  538. }
  539. </pre> <p class="blogger-labels">Labels: <a rel='tag' href="http://www.amptools.net/labels/Amplify.aspx">Amplify</a>, <a rel='tag' href="http://www.amptools.net/labels/C#.aspx">C#</a>, <a rel='tag' href="http://www.amptools.net/labels/CSharp.aspx">CSharp</a>, <a rel='tag' href="http://www.amptools.net/labels/DataContractJsonSerializer.aspx">DataContractJsonSerializer</a>, <a rel='tag' href="http://www.amptools.net/labels/JSON.aspx">JSON</a>, <a rel='tag' href="http://www.amptools.net/labels/REST.aspx">REST</a>, <a rel='tag' href="http://www.amptools.net/labels/Twitter.aspx">Twitter</a>, <a rel='tag' href="http://www.amptools.net/labels/WCF.aspx">WCF</a></p>
  540. </div>
  541. <div class="blog-footer">
  542. <a class="comment-link" href="https://www.blogger.com/comment.g?blogID=7043853799247804655&postID=3907268195622759157"location.href=https://www.blogger.com/comment.g?blogID=7043853799247804655&postID=3907268195622759157;><span style="text-transform:lowercase">3 Comments</span></a>
  543. <a class="comment-link" href="http://www.amptools.net/2008/07/amplify-twittern-yet-another-c-twitter.aspx#links"><span style="text-transform:lowercase">Links to this post</span></a>
  544. <span class="item-action"><a href="http://www.blogger.com/email-post.g?blogID=7043853799247804655&postID=3907268195622759157" title="Email Post"><img class="icon-action" alt="" src="http://www.blogger.com:80/img/icon18_email.gif" height="13" width="18"/></a></span>
  545. <script type="text/javascript" src="http://w.sharethis.com/widget/?tabs=web%2Cemail&amp;charset=utf-8&amp;services=reddit%2Cdigg%2Cfacebook%2Cmyspace%2Cdelicious%2Cstumbleupon%2Ctechnorati%2Cpropeller%2Cblinklist%2Cmixx%2Cnewsvine%2Cgoogle_bmarks%2Cyahoo_myweb%2Cwindows_live%2Cfurl&amp;style=rotate&amp;publisher=baa2824f-9291-46c0-87b4-6d5a72508a05&amp;headerbg=%23dddddd&amp;inactivebg=%231bb601&amp;inactivefg=%2370eb00%09&amp;linkfg=%231bb601"></script>
  546. </div>
  547. <h2 class="blog-title"><a name="7486419527659460638"></a>
  548. Pursuit of Rails like Active Record for C#
  549. <span class="blog-byline">
  550. by: michael herndon, at: 6/12/2008 05:25:00 PM
  551. </span>
  552. </h2>
  553. <div class="blog-content">
  554. <p>After trying <a href="http://msdn.microsoft.com/en-us/library/bb425822.aspx" rel="tag">linq to sql</a>, <a href="http://msdn.microsoft.com/en-us/library/aa697427(VS.80).aspx" rel="tag">the ado.net entity framework</a>, php's <a href="http://codeigniter.com/">code igniter</a> framework, php's <a href="http://www.cakephp.org/" rel="rel">cake framework</a>; I'm realizing how much of rails really depends on the inner workings of ruby itself to do what it is able to do.&#160; I've looked and poked around <a href="http://www.cakephp.org/" rel="rel">Castle's Active Record</a> and it does some heavy lifting, but it still seems to deviate too much from rails's version of active record.&#160; One of the key things of porting a concept, is to keep it as close as possible so that developers can rely more on the same convention without having to relearn the concept in a different domain specific language.&#160; Plus, I cringe a little when it leans too much on using <a href="http://www.hibernate.org/343.html" rel="tag">NHibernate</a>. </p> <p>It goes back to the whole &quot;Don't make me think principle&quot;, that developers often to have to keep in mind when developing for an end user.&#160; At first, I was thinking about creating a port would be simpler using linq with either &quot;linq to sql&quot; or the currently released &quot;ado.net entity framework&quot;. After investigating, it would take a ton of invested time to either write a code generator for visual studio that would changed the way the pocos (plain old c# objects) are generated in order in corporate the changes. Also not to mention that these frameworks heavily rely on a repository pattern, that would probably cause too much pain to change for just one developer.&#160; </p> <p>Square one?&#160; Well close enough. C# and ruby have different strengths and weaknesses. However with enough thought and using C#3.0, I think its completely possible to get something that closely resembles rails enough to give anyone who has worked with rails, something that would be familiar if they needed to work on a project in .Net.&#160; </p> <p class="blogger-labels">Labels: <a rel='tag' href="http://www.amptools.net/labels/Active Record.aspx">Active Record</a>, <a rel='tag' href="http://www.amptools.net/labels/BHAG.aspx">BHAG</a>, <a rel='tag' href="http://www.amptools.net/labels/C#.aspx">C#</a>, <a rel='tag' href="http://www.amptools.net/labels/CSharp.aspx">CSharp</a>, <a rel='tag' href="http://www.amptools.net/labels/Linq To Sql.aspx">Linq To Sql</a>, <a rel='tag' href="http://www.amptools.net/labels/Rails.aspx">Rails</a></p>
  555. </div>
  556. <div class="blog-footer">
  557. <a class="comment-link" href="https://www.blogger.com/comment.g?blogID=7043853799247804655&postID=7486419527659460638"location.href=https://www.blogger.com/comment.g?blogID=7043853799247804655&postID=7486419527659460638;><span style="text-transform:lowercase">0 Comments</span></a>
  558. <a class="comment-link" href="http://www.amptools.net/2008/06/pursuit-of-rails-like-active-record-for.aspx#links"><span style="text-transform:lowercase">Links to this post</span></a>
  559. <span class="item-action"><a href="http://www.blogger.com/email-post.g?blogID=7043853799247804655&postID=7486419527659460638" title="Email Post"><img class="icon-action" alt="" src="http://www.blogger.com:80/img/icon18_email.gif" height="13" width="18"/></a></span>
  560. <script type="text/javascript" src="http://w.sharethis.com/widget/?tabs=web%2Cemail&amp;charset=utf-8&amp;services=reddit%2Cdigg%2Cfacebook%2Cmyspace%2Cdelicious%2Cstumbleupon%2Ctechnorati%2Cpropeller%2Cblinklist%2Cmixx%2Cnewsvine%2Cgoogle_bmarks%2Cyahoo_myweb%2Cwindows_live%2Cfurl&amp;style=rotate&amp;publisher=baa2824f-9291-46c0-87b4-6d5a72508a05&amp;headerbg=%23dddddd&amp;inactivebg=%231bb601&amp;inactivefg=%2370eb00%09&amp;linkfg=%231bb601"></script>
  561. </div>
  562. </div>
  563. <div class="right">
  564. <h3>
  565. Connect
  566. </h3>
  567. <ul>
  568. <li>
  569. <a href="http://www.twitter.com/michaelherndon">
  570. <img src="/content/images/twitter-badge.png" alt="Twitter badge" />
  571. </a>
  572. </li>
  573. <li>
  574. <a href="http://www.facebook.com/profile.php?id=824905532">
  575. <img src="/content/images/facebook-badge.png" alt="Facebook badge" />
  576. </a>
  577. </li>
  578. <li>
  579. <a href="skype:michaelherndon?add">
  580. <img src="http://download.skype.com/share/skypebuttons/buttons/add_green_transparent_118x23.png" alt="Add me to Skype" />
  581. </a>
  582. </li>
  583. </ul>
  584. <h3>
  585. <a href="http://feeds.feedburner.com/amptoolsnet" rel="alternate" type="application/rss+xml">
  586. Subscribe in a reader <img src="http://www.feedburner.com/fb/images/pub/feed-icon32x32.png" style="vertical-align:middle" alt="" />
  587. </a>
  588. </h3>
  589. <ul>
  590. <li>
  591. </li>
  592. <li>
  593. <a href="http://feeds.feedburner.com/amptoolsnet">
  594. <img src="http://feeds.feedburner.com/~fc/amptoolsnet?bg=990066&amp;fg=CCCCCC&amp;anim=0" alt="" />
  595. </a>
  596. </li>
  597. <li>
  598. <a href="http://add.my.yahoo.com/rss?url=http://feeds.feedburner.com/amptoolsnet" title="amptools.net">
  599. <img src="http://us.i1.yimg.com/us.yimg.com/i/us/my/addtomyyahoo4.gif" alt="" />
  600. </a>
  601. </li>
  602. <li>
  603. <a href="http://fusion.google.com/add?feedurl=http://feeds.feedburner.com/amptoolsnet">
  604. <img src="http://buttons.googlesyndication.com/fusion/add.gif" alt="Add to Google Reader or Homepage"/>
  605. </a>
  606. </li>
  607. <li>
  608. <a href="http://www.pageflakes.com/subscribe.aspx?url=http://feeds.feedburner.com/amptoolsnet" title="Add to Pageflakes">
  609. <img src="http://www.pageflakes.com/ImageFile.ashx?instanceId=Static_4&amp;fileName=ATP_blu_91x17.gif" alt="Add to Pageflakes"/>
  610. </a>
  611. </li>
  612. <li>
  613. <a href="http://www.bloglines.com/sub/http://feeds.feedburner.com/amptoolsnet" title="amptools.net" type="application/rss+xml">
  614. <img src="http://www.bloglines.com/images/sub_modern11.gif" alt="Subscribe in Bloglines" />
  615. </a>
  616. </li>
  617. <li>
  618. <a href="http://www.newsgator.com/ngs/subscriber/subext.aspx?url=http://feeds.feedburner.com/amptoolsnet" title="amptools.net">
  619. <img src="http://www.newsgator.com/images/ngsub1.gif" alt="Subscribe in NewsGator Online" />
  620. </a>
  621. </li>
  622. </ul>
  623. <h3 class="sidebar-title">
  624. Previous Posts
  625. </h3>
  626. <ul id="recently">
  627. <li><a href="http://www.amptools.net/2008/11/simple-log-in-amplify.aspx">Simple Log in Amplify </a></li>
  628. <li><a href="http://www.amptools.net/2008/10/gallio-and-mb-unit-release-v304.aspx">Gallio and Mb-Unit release v3.0.4</a></li>
  629. <li><a href="http://www.amptools.net/2008/10/moving-amplify-to-git-hub.aspx">Moving Amplify To Git Hub...</a></li>
  630. <li><a href="http://www.amptools.net/2008/08/getting-datadirectory-folder-in-c-sharp.aspx">Getting the |DataDirectory| folder in C sharp</a></li>
  631. <li><a href="http://www.amptools.net/2008/08/ampliy-fusion-javascript-libraries.aspx">Amplify-Fusion, JavaScript libraries compatibility...</a></li>
  632. <li><a href="http://www.amptools.net/2008/07/amplify-wcf-twitter-api-client-library.aspx">Amplify&#39;s WCF Twitter API Client Library v0.2</a></li>
  633. <li><a href="http://www.amptools.net/2008/07/use-c-to-determine-where-and-what.aspx">Use C# to determine where and what version of java...</a></li>
  634. <li><a href="http://www.amptools.net/2008/07/using-wcf-to-access-flickr-json-api.aspx">Using WCF to access the Flickr JSON API</a></li>
  635. <li><a href="http://www.amptools.net/2008/07/sample-mixins-for-httprequestbase-to.aspx">Sample Mixins for HttpRequestBase to use with Asp....</a></li>
  636. <li><a href="http://www.amptools.net/2008/07/amplify-twittern-yet-another-c-twitter.aspx">Amplify&#39;s TwitterN, Yet Another C# Twitter REST AP...</a></li>
  637. </ul>
  638. <h3 class="sidebar-title">
  639. Archives
  640. </h3>
  641. <ul class="archive-list">
  642. <li><a href="http://www.amptools.net/blogs/michaelherndon/archives/2008_03_30_index.aspx">03.30.2008</a></li>
  643. <li><a href="http://www.amptools.net/blogs/michaelherndon/archives/2008_04_06_index.aspx">04.06.2008</a></li>
  644. <li><a href="http://www.amptools.net/blogs/michaelherndon/archives/2008_06_08_index.aspx">06.08.2008</a></li>
  645. <li><a href="http://www.amptools.net/blogs/michaelherndon/archives/2008_07_06_index.aspx">07.06.2008</a></li>
  646. <li><a href="http://www.amptools.net/blogs/michaelherndon/archives/2008_07_13_index.aspx">07.13.2008</a></li>
  647. <li><a href="http://www.amptools.net/blogs/michaelherndon/archives/2008_07_20_index.aspx">07.20.2008</a></li>
  648. <li><a href="http://www.amptools.net/blogs/michaelherndon/archives/2008_07_27_index.aspx">07.27.2008</a></li>
  649. <li><a href="http://www.amptools.net/blogs/michaelherndon/archives/2008_08_03_index.aspx">08.03.2008</a></li>
  650. <li><a href="http://www.amptools.net/blogs/michaelherndon/archives/2008_08_10_index.aspx">08.10.2008</a></li>
  651. <li><a href="http://www.amptools.net/blogs/michaelherndon/archives/2008_10_26_index.aspx">10.26.2008</a></li>
  652. <li><a href="http://www.amptools.net/blogs/michaelherndon/archives/2008_11_02_index.aspx">11.02.2008</a></li>
  653. </ul>
  654. </div>
  655. </asp:Content>