User taoufik - Stack Overflow most recent 30 from stackoverflow.com 2009-12-23T07:40:25Z http://stackoverflow.com/feeds/user/95976 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1649282/calling-an-oracle-store-procedure-with-nhibernate 0 Calling an Oracle store procedure with nHibernate taoufik 2009-10-30T11:30:08Z 2009-10-30T20:47:14Z <p>I've got a stored procedure in Oracle:</p> <pre><code>procedure Test(results OUT gencursor, id in number) is v_cursor gencursor; begin OPEN v_cursor FOR select id, name, age from tblcustomers s where s.id = id; results:=v_cursor; end Test; </code></pre> <p>Now, i'd like to execute this procedure using nHibernate <code>ISession.CreateSQLQuery</code>. All the examples I've seen until now use <code>ISession.GetNamedQuery()</code>. </p> <p>So, I'd want to do something like (<code>ToDataTable</code> is my own extension method on <code>IQuery</code>, I have more extension methods which I'd want to stay using in combination with stored procedures):</p> <pre><code> var result = session .CreateSQLQuery("call MyPackage.Test(:id)") .SetDecimal("id", 33) .ToDataTable(); </code></pre> <p>The code above throw the following exception:</p> <blockquote> <p>"could not execute query [ call MyPackage.Test(?) ] Name:id - Value:33 [SQL: call MyPackage.Test(?)]"</p> </blockquote> <p>I've also tried:</p> <pre><code> var result = session .CreateSQLQuery("call MyPackage.Test(:result, :id)") .SetDecimal("id", 33) .ToDataTable(); </code></pre> <p>That one throw the exception:</p> <blockquote> <p>Not all named parameters have been set: [result] [call MyPackage.Test(:result, :id)]</p> </blockquote> http://stackoverflow.com/questions/1578070/what-options-are-there-for-a-quick-embedded-db-in-net/1578373#1578373 0 Answer by taoufik for What options are there for a quick embedded DB in .NET? taoufik 2009-10-16T14:24:14Z 2009-10-16T14:24:14Z <p>If it doesn't have to be a SQL-compatible database, then I'd also look at Db4o. Db4o is an object database for Java and .NET. The .NET version is completely written in C#.</p> http://stackoverflow.com/questions/1573453/i-need-to-implement-c-deep-copy-constructors-with-inheritance-what-patterns-are/1573657#1573657 -1 Answer by taoufik for I need to implement C# deep copy constructors with inheritance. What patterns are there to choose from? taoufik 2009-10-15T16:50:54Z 2009-10-15T17:33:50Z <p>You should use the <code>MemberwiseClone</code> method instead:</p> <pre><code>public class ParentObj : ICloneable { protected int myA; public virtual Object Clone() { ParentObj newObj = this.MemberwiseClone() as ParentObj; newObj.myA = this.MyA; // not required, as value type (int) is automatically already duplicated. return newObj; } } public class ChildObj : ParentObj { protected int myB; public override Object Clone() { ChildObj newObj = base.Clone() as ChildObj; newObj.myB = this.MyB; // not required, as value type (int) is automatically already duplicated return newObj; } } </code></pre> http://stackoverflow.com/questions/1573407/c-newbie-with-datetime-variable-i-want-to-set-to-null/1573621#1573621 1 Answer by taoufik for C# newbie with DateTime variable I want to set to null taoufik 2009-10-15T16:44:19Z 2009-10-15T16:44:19Z <p>.NET doesn't have a method out of the box for this. You'd need to have a helper method like:</p> <pre><code>public string Format(DateTime? date, string format) { if (date == null) return string.Empty; return date.Value.ToString(format); } </code></pre> <p>Or even better, an extension method for <code>DateTime?</code>:</p> <pre><code>public static class DateTimeExtensionMethods { public static string ToString(this DateTime? date, string format) { if (date == null) return string.Empty; return date.Value.ToString(format); } } </code></pre> <p>Then to use your extension method, just use the code you have in your question and make sure the namespace of the <code>DateTimeExtensionMethods</code> is imported into your class.</p> http://stackoverflow.com/questions/1572687/is-this-delegate-usage-good-or-bad/1572913#1572913 0 Answer by taoufik for Is this delegate usage good or bad? taoufik 2009-10-15T14:53:57Z 2009-10-15T14:53:57Z <p>I'd go for a generic method <code>Render(HtmlTextWriter)</code> and define all other parameters as properties of the class:</p> <pre><code>interface IRenderable { void Render(HtmlTextWriter writer); } class ListComponent : IRenderable { public List&lt;IRenderable&gt; Items { get; set; } public string Title { get; set; } public void Render(HtmlTextWriter writer) { writer.RenderBeginTag(HtmlTextWriterTag.Fieldset); writer.RenderBeginTag(HtmlTextWriterTag.Legend); writer.HtmlEncode(Title); writer.RenderEndTag();//end Legend writer.AddAttribute(HtmlTextWriterAttribute.Class, "resultList"); writer.RenderBeginTag(HtmlTextWriterTag.Ul); foreach (var item in Items) { writer.RenderBeginTag(HtmlTextWriterTag.Li); item.Render(writer); writer.RenderEndTag();//li } writer.RenderEndTag();//ul writer.RenderEndTag(); //fieldset } } </code></pre> http://stackoverflow.com/questions/1561224/linq-to-sql-many-one-relationship/1561454#1561454 0 Answer by taoufik for Linq to Sql Many-One relationship taoufik 2009-10-13T16:42:07Z 2009-10-13T16:42:07Z <p>This is the n+1 problem. nHibernate has a solution for this, which is called join-fetch querying. What it basically does is a outer-join query between order and order-line, which will result in the product of the row counts of the two tables.</p> <p>I don't think Linq2SQL does have a solution for it. But you can still use your stored procedure to generate the join-fetch output, and have some Linq2Objects code to distinct the unique orders and the order-lines out of the result.</p> http://stackoverflow.com/questions/1497011/c-multiple-generic-listt-combining-them/1497104#1497104 0 Answer by taoufik for C# Multiple Generic List<t> - Combining Them?! taoufik 2009-09-30T09:46:47Z 2009-09-30T09:46:47Z <p>Depends on what you want:</p> <p>Inner join (only display <code>AuditImage</code> if it has a <code>Audit</code>):</p> <pre><code>var innerJoin = from image in images join audit in audits on image.ImageID equals audit.ImageID select new { image.ImageID, AuditImageId = audit.ImageID }; </code></pre> <p>Left join (display <code>AuditImage</code> even if it does not have a <code>Audit</code>):</p> <pre><code>var leftJoin = from image in images join audit in audits on image.ImageID equals audit.ImageID into auditCats from auditCat in auditCats.DefaultIfEmpty(new Audit()) select new { image.ImageID, AuditImageId = auditCat.ImageID }; </code></pre> http://stackoverflow.com/questions/1356991/transactionscope-in-net-application/1492998#1492998 0 Answer by taoufik for TransactionScope in .NET application taoufik 2009-09-29T14:42:57Z 2009-09-29T14:42:57Z <p>TransactionScope supports (hybrid) fast local transactions with the option to promote them to more expensive distributed transactions, when ever required. For distributed transactions, MSDTC is required. </p> <p>A reason for promoting to distributed transactions is if you involve a second database in the same TransactionScope.</p> <p>Oracle Data Provider version 10.2.0.3 and higher do support local transactions + distributed transactions (same as for SQL Server 2005 and higher). Older versions of ODP.NET only support distributed transactions.</p> http://stackoverflow.com/questions/1491613/linq-to-xml-query-in-c/1491643#1491643 1 Answer by taoufik for LINQ to XML query in c# taoufik 2009-09-29T10:05:23Z 2009-09-29T10:05:23Z <p>Your root element is already 'status'. Therefore the following code:</p> <pre><code>return (from e in document.Root.Elements("status") select e.Element("id").Element("name").Value).SingleOrDefault().ToString(); </code></pre> <p>needs to read:</p> <pre><code>return document.Root.Element("id").Value; </code></pre> http://stackoverflow.com/questions/796076/nhibernate-projection-to-dto/1486560#1486560 0 Answer by taoufik for NHibernate Projection to DTO taoufik 2009-09-28T11:25:45Z 2009-09-28T11:25:45Z <p>In nHibernate 2.1, the .List() method actually already returns a List type, so you can just cast:</p> <pre><code>var list = (List&lt;EmployeeOrder&gt;)criteriaSelect.List&lt;EmployeeOrder&gt;(); </code></pre> <p>However, if you want to be future safe and not depend on assumptions based on the implementation of the current nHibernate, I'd write an extension method accepting ICriteria:</p> <pre><code> public static List&lt;T&gt; ToList&lt;T&gt;(this ICriteria criteria) { return criteria.List&lt;T&gt;().ToList(); } </code></pre> http://stackoverflow.com/questions/1486128/uploading-picture/1486466#1486466 0 Answer by taoufik for uploading picture taoufik 2009-09-28T11:01:07Z 2009-09-28T11:01:07Z <p>Assuming you'd want to save the images in the database as well... You need to allow the user to select an image from his/her own harddisk (Open File Dialog), and then read the bytes and send them to the database (ADO.NET's <code>DbCommand</code>). ADO.NET supports streams for BLOBS.</p> <p>Here is a example of the Open File Dialog:</p> <pre><code> OpenFileDialog openFileDialog1 = new OpenFileDialog(); openFileDialog1.InitialDirectory = "c:\\"; openFileDialog1.Filter = "images (*.png)|*.png|All files (*.*)|*.*"; openFileDialog1.FilterIndex = 2; openFileDialog1.RestoreDirectory = true; if (openFileDialog1.ShowDialog() == DialogResult.OK) { try { using (Stream myStream = openFileDialog1.OpenFile()) { if (myStream != null) { // do something with the stream bytes here.... } } } catch (Exception ex) { MessageBox.Show("Error: Could not read file from disk. Original error: " + ex.Message); } } </code></pre> http://stackoverflow.com/questions/1477430/create-an-iphone-push-notifcation-web-service-in-asp-net-c/1486185#1486185 1 Answer by taoufik for Create an iPhone push notifcation web service in asp.net c# taoufik 2009-09-28T09:36:10Z 2009-09-28T09:36:10Z <p>iPhone 3.0 and higher supports push notification via Apple's server, see <a href="http://developer.apple.com/iphone/program/sdk/apns.html" rel="nofollow">SDK</a>. I'd suggest you do use that technology, as that allows your app to receive messages while not running and does not result in using more batrery power than your iphone already does.</p> <p>Further, as Rex M already mentioned above, Web services does not support push-technology out of the box. A way to do push over web services is what Microsoft exchange uses: to make a server call, and then to have the server block (i.e. not answer back) until the server has an update for the client. So:</p> <ol> <li>Client does request to server</li> <li>Connection between client and server is open</li> <li>Server blocks the request.</li> <li>After a while, the server wants to update the client, and then finally responds to the client.</li> </ol> <p>In this model, the client needs to guard the connection between the server and the client. If for any reason dropped, the client need to start a new connection. A reason for the connection being dropped, would be that the firewall in the middle times out or may be even IIS times out.</p> http://stackoverflow.com/questions/958726/in-agile-dev-how-do-you-organize-user-stories/958799#958799 0 Answer by taoufik for In agile dev, how do you organize user stories? taoufik 2009-06-06T01:45:15Z 2009-06-06T01:45:15Z <p>I start with identifying what scenario's the users are going to perform with the application. Normally, these are quite predicatable. A user logs in to a website with a certain task in his/her head and wants to fulfill that task. </p> <p>I'd limit myself to a scenario as one list of sequential steps. For example, user logs in, user select product, user chooses quantity, user checks out, end.</p> <p>Having the scenario's written down can also help you to determine what parts of the application are more important that others, and which scenario's can be easily be implemented "in-between". And finally, which scenario's could be a show stopper for the launch of the application.</p> http://stackoverflow.com/questions/946746/run-message-loop-while-waiting-for-waithandle/947036#947036 3 Answer by taoufik for Run Message Loop while waiting for WaitHandle taoufik 2009-06-03T20:30:03Z 2009-06-03T20:30:03Z <p>I'd run the whole "Complicated-function-that-can-not-be-split" in a separate background thread, and have it to report to the GUI only when it needs to (using Invoke/BeginInvoke methods on a control). </p> <p>In a more enhanced version, you should run your complicated function in a non-UI controller that does not depend on the UI, and is easier to unit test. Calling back to the UI and showing the result in the UI, can easily be reached by having the UI to subrscribe to events made available by the controller.</p> http://stackoverflow.com/questions/850358/how-do-i-control-a-power-strips-power-from-c/850389#850389 1 Answer by taoufik for How do I control a Power Strip's power from C#? taoufik 2009-05-11T22:31:14Z 2009-05-11T22:31:14Z <p>You need an IO board with a relais protection (so that you can switch 230/110V)</p> <p>There are many out there. I've used the Velleman board (available in Europe), which works with Windows XP/2003. It has examples of how to do P/Invoke from C#.</p> <p>Try in google "DIGITAL OUTPUT BOARD with relais"</p> http://stackoverflow.com/questions/850327/how-to-insert-into-a-table-with-just-one-identity-column/850340#850340 8 Answer by taoufik for How to insert into a table with just one IDENTITY column taoufik 2009-05-11T22:14:04Z 2009-05-11T22:14:04Z <p>Here you go:</p> <pre><code>INSERT INTO GroupTable DEFAULT VALUES </code></pre> http://stackoverflow.com/questions/849590/where-do-i-put-dependency-creation-for-a-presenter-class-in-a-passive-view-archit/849819#849819 0 Answer by taoufik for Where do I put dependency creation for a Presenter class in a Passive View architecture? taoufik 2009-05-11T20:03:41Z 2009-05-11T20:03:41Z <p>I'd go for a repository or a factory for now. It would be testable immediately. In the future, you can replace its implementation to go to a DI library.</p> <pre><code>public class DomainObjectsRepository { /// &lt;summary&gt; /// can not be instantiated, use &lt;see cref="Instance"/&gt; instead. /// &lt;/summary&gt; protected DomainObjectsRepository() { } static DomainObjectsRepository() { Instance = new DomainObjectsRepository(); } public static DomainObjectsRepository Instance { get; set; } public virtual ICustomerDao GetCustomerDao() { return new CustomerDao(); } } public class DomainObjectsRepositoryMock : DomainObjectsRepository { public override ICustomerDao GetCustomerDao() { return new CustomerDaoMock(); } } </code></pre> http://stackoverflow.com/questions/849043/fastest-way-to-add-new-node-to-end-of-an-xml/849411#849411 5 Answer by taoufik for Fastest way to add new node to end of an xml? taoufik 2009-05-11T18:28:24Z 2009-05-11T18:28:24Z <p>You need to use the XML inclusion technique.</p> <p>Your error.xml (doesn't change, just a stub. Used by XML parsers to read):</p> <pre><code>&lt;?xml version="1.0"?&gt; &lt;!DOCTYPE logfile [ &lt;!ENTITY logrows SYSTEM "errorrows.txt"&gt; ]&gt; &lt;Errors&gt; &amp;logrows; &lt;/Errors&gt; </code></pre> <p>Your errorrows.txt file (changes, the xml parser doesn't understand it):</p> <pre><code>&lt;Error&gt;....&lt;/Error&gt; &lt;Error&gt;....&lt;/Error&gt; &lt;Error&gt;....&lt;/Error&gt; </code></pre> <p>Then, to add an entry to errorrows.txt:</p> <pre><code>using (StreamWriter sw = File.AppendText("logerrors.txt")) { XmlTextWriter xtw = new XmlTextWriter(sw); xtw.WriteStartElement("Error"); // ... write error messge here xtw.Close(); } </code></pre> <p>Or you can even use .NET 3.5 XElement, and append the text to the <code>StreamWriter</code>:</p> <pre><code>using (StreamWriter sw = File.AppendText("logerrors.txt")) { XElement element = new XElement("Error"); // ... write error messge here sw.WriteLine(element.ToString()); } </code></pre> <p>See also <a href="http://msdn.microsoft.com/en-us/library/aa302289.aspx" rel="nofollow">Microsoft's article Efficient Techniques for Modifying Large XML Files</a></p> http://stackoverflow.com/questions/842918/whats-the-best-programming-ide-for-c-or-mono-under-ubuntu/842952#842952 2 Answer by taoufik for What's the best programming IDE for C++ or Mono under Ubuntu? taoufik 2009-05-09T08:29:39Z 2009-05-09T08:29:39Z <p><a href="http://www.kdevelop.org/" rel="nofollow">KDevelop</a> is quite complete for purely C/C++ development.</p> <p>For C#, I'd just go for MonoDevelop, as there is no other alternative which supports code-completion. <a href="http://www.icsharpcode.net/OpenSource/SD/" rel="nofollow">SharpDevelop</a> would be nice to try under Wine.</p> http://stackoverflow.com/questions/842580/cool-ui-templateing-vs-jquery-templating/842802#842802 1 Answer by taoufik for Cool UI templateing VS Jquery Templating taoufik 2009-05-09T06:14:16Z 2009-05-09T08:12:06Z <p>Both samples use JSON, which you get for free when you use .NET Web Services. So the amount of data which goes over the wire will be the same.</p> <p>On the client-side, don't know about about the client-side performance of the library generated by <a href="http://msdn.microsoft.com/en-us/library/system.web.script.services.scriptserviceattribute.aspx" rel="nofollow">ScriptServiceAttribute</a>, but the differences between doing it yourself and using that library should probably be marginal.</p> <p>The Ecnosia example uses jTemplates. jTemplates can give you a good boost in performance when it comes to fetching large lists and displaying them in repeating sections (like html tables).</p> <p><hr /></p> <p><strong>reply to <em>devmania</em>:</strong></p> <p>Scott's version applies the template server-side, and then sends html+data formatted to the client. The html here can be a real overhead (in case of a table, think about all the tr's, td's, style properties, spacing between tags...). </p> <p>jTemplates renders client-side. The data is send in the more data efficient and compact JSON format (just the data, not the html). The template that jTemplates has to read is also much smaller, as it only contains the definitions for first row.</p> <p>Yes, it is much easier to render server-side. Server-side can also be more flexible in rendering, as you can access data sources which you don't have on the client-side.</p> <p>Client-side can in many cases be more efficient. Further, with some javascript, you can make it as flexible as server-side rendering. But, I reckon complex client-side rendering would take more time to develop.</p> http://stackoverflow.com/questions/838097/fastest-way-to-enumerate-through-turned-on-bits-of-an-integer/842892#842892 4 Answer by taoufik for Fastest way to enumerate through turned on bits of an integer taoufik 2009-05-09T07:52:56Z 2009-05-09T07:52:56Z <p>The <code>IEnumerable</code> is not going to perform. Optimization of some examples in this topic:</p> <p>First one (fastest - 2.35 seconds for 10M runs, range 1..10M):</p> <pre><code>static uint[] MulDeBruijnBitPos = new uint[32] { 0, 1, 28, 2, 29, 14, 24, 3, 30, 22, 20, 15, 25, 17, 4, 8, 31, 27, 13, 23, 21, 19, 16, 7, 26, 12, 18, 6, 11, 5, 10, 9 }; static uint[] GetExponents(uint value) { uint[] data = new uint[32]; int enabledBitCounter = 0; while (value != 0) { uint m = (value &amp; (0 - value)); value ^= m; data[enabledBitCounter++] = MulDeBruijnBitPos[(m * (uint)0x077CB531U) &gt;&gt; 27]; } Array.Resize&lt;uint&gt;(ref data, enabledBitCounter); return data; } </code></pre> <p>Another version (second fastest - 3 seconds for 10M runs, range 1..10M):</p> <pre><code>static uint[] GetExponents(uint value) { uint[] data = new uint[32]; int enabledBitCounter = 0; for (uint i = 0; value &gt; 0; ++i) { if ((value &amp; 1) == 1) data[enabledBitCounter++] = i; value &gt;&gt;= 1; } Array.Resize&lt;uint&gt;(ref data, enabledBitCounter); return data; } </code></pre> http://stackoverflow.com/questions/842718/match-closest-phrase-in-sql/842775#842775 2 Answer by taoufik for Match closest phrase in SQL taoufik 2009-05-09T05:34:07Z 2009-05-09T05:34:07Z <p>Assuming you're using T-SQL in a MS SQL Server environment, then you should use <a href="http://msdn.microsoft.com/en-us/library/ms142571.aspx" rel="nofollow">Full Text Search</a> technology. It gives you the speed and keeps you away from reinventing the wheel.</p> http://stackoverflow.com/questions/842664/are-there-any-disadvantages-to-using-ajax/842762#842762 0 Answer by taoufik for Are there any disadvantages to using AJAX? taoufik 2009-05-09T05:24:08Z 2009-05-09T05:24:08Z <p>Yes, Ajax is not supported by old browsers or browsers which don't have javascript enabled. Nowadays, most of the browsers do have support for Ajax -- even mobile browser like the one on the IPhone. </p> <p>The biggest issue for me is that Ajax adds complexity to the project. </p> <p>There are many ajax libraries out there, which are suppose to make life easier. In most cases, these libraries are easy to use to create a "Hello World" application. One of the main issues which is most of the times kept asside by Ajax libraries is (client-side) error handling/logging.</p> <p>For larger projects, the developer has to understand the internals of the library, which adds a new learning discipline to the project.</p> http://stackoverflow.com/questions/837541/svn-to-zip-on-the-fly/842715#842715 2 Answer by taoufik for SVN to ZIP on the fly taoufik 2009-05-09T04:58:39Z 2009-05-09T04:58:39Z <p>I found a solution, and would want to share it with you, in case someone else would want to achieve the same solution.</p> <p>After analyzing <a href="http://websvn.tigris.org/" rel="nofollow">WebSvn</a>, I found out that they use the SVN Export Directory functionality to download the source to a local folder, and then zip the directory, on the fly. The performance is quite well.</p> <p>My solution in C# below, is using <a href="http://sharpsvn.open.collab.net/" rel="nofollow">SharpSVN</a> and <a href="http://dotnetzip.codeplex.com/" rel="nofollow">DotNetZip</a>. The full source code can be found on <a href="http://www.activesoft.nl:8080/svn/blog/trunk/SvnExportDirectory/" rel="nofollow">my SVN repository</a>.</p> <pre><code>using System; using System.Collections.Generic; using System.Linq; using System.Text; using SharpSvn; using Ionic.Zip; using System.IO; using SharpSvn.Security; namespace SvnExportDirectory { public class SvnToZip { public Uri SvnUri { get; set; } public string Username { get; set; } public string Password { get; set; } private bool passwordSupplied; public SvnToZip() { } public SvnToZip(Uri svnUri) { this.SvnUri = svnUri; } public SvnToZip(string svnUri) : this(new Uri(svnUri)) { } public void ToFile(string zipPath) { if (File.Exists(zipPath)) File.Delete(zipPath); using (FileStream stream = File.OpenWrite(zipPath)) { this.Run(stream); } } public MemoryStream ToStream() { MemoryStream ms = new MemoryStream(); this.Run(ms); ms.Seek(0, SeekOrigin.Begin); return ms; } private void Run(Stream stream) { string tmpFolder = Path.Combine(Path.GetTempPath(), Guid.NewGuid().ToString()); try { using (SvnClient client = new SvnClient()) { //client.Authentication.Clear(); client.Authentication.UserNamePasswordHandlers += Authentication_UserNamePasswordHandlers; SvnUpdateResult res; bool downloaded = client.Export(SvnTarget.FromUri(SvnUri), tmpFolder, out res); if (downloaded == false) throw new Exception("Download Failed"); } using (ZipFile zipFile = new ZipFile()) { zipFile.AddDirectory(tmpFolder, GetFolderName()); zipFile.Save(stream); } } finally { if (File.Exists(tmpFolder)) File.Delete(tmpFolder); } } private string GetFolderName() { foreach (var potential in SvnUri.Segments.Reverse()) { if (string.Equals(potential, "trunk", StringComparison.InvariantCultureIgnoreCase) == false) return potential; } return null; } void Authentication_UserNamePasswordHandlers(object sender, SvnUserNamePasswordEventArgs e) { if (passwordSupplied) { e.Break = true; } else { if (this.Username != null) e.UserName = this.Username; if (this.Password != null) e.Password = this.Password; passwordSupplied = true; } } } } </code></pre> http://stackoverflow.com/questions/837541/svn-to-zip-on-the-fly 1 SVN to ZIP on the fly taoufik 2009-05-07T23:22:47Z 2009-05-09T04:58:39Z <p>I've installed VisualSVN on my Windows 2003 server, and have configured it to provide anonymous read-access. From my understanding VisualSVN just uses apache and the official SVN Repository server underneath.</p> <p>Now, I'd like to extend the SVN web page to provide "download HEAD as ZIP" functionality. Web portals like <a href="http://svn-web-control.svn.sourceforge.net/viewvc/svn-web-control/trunk/" rel="nofollow" title="sourceforge - Download GNU tarball">SourceForge</a> and <a href="http://downloadsvn.codeplex.com/SourceControl/ListDownloadableCommits.aspx" rel="nofollow" title="CodePlex - Download">Codeplex</a> do provide this functionality. </p> <p>Is there a plugin for the SVN Repository server for this? Or may be a separate web client (preferably ASP.NET)?</p> http://stackoverflow.com/questions/818767/backgroundworker-onworkcompleted-throws-cross-thread-exception/818805#818805 1 Answer by taoufik for BackgroundWorker OnWorkCompleted throws cross-thread exception taoufik 2009-05-04T04:49:52Z 2009-05-04T04:49:52Z <p>The <code>BackgroundWorker</code> checks whether the delegate instance, points to a class which supports the interface <code>ISynchronizeInvoke</code>. Your DAL layer probably does not implement that interface. Normally, you would use the <code>BackgroundWorker</code> on a <code>Form</code>, which does support that interface.</p> <p>In case you want to use the <code>BackgroundWorker</code> from the DAL layer and want to update the UI from there, you have three options:</p> <ul> <li>you'd stay calling the <code>Invoke</code> method </li> <li>implement the interface <code>ISynchronizeInvoke</code> on the DAL class, and redirect the calls manually (it's only three methods and a property)</li> <li>before invoking the <code>BackgroundWorker</code> (so, on the UI thread), to call <code> SynchronizationContext.Current</code> and to save the content instance in an instance variable. The <code>SynchronizationContext</code> will then give you the <code>Send</code> method, which will exactly do what <code>Invoke</code> does.</li> </ul> http://stackoverflow.com/questions/807991/why-cant-ienumerators-be-cloned/809389#809389 0 Answer by taoufik for Why can't IEnumerator's be cloned? taoufik 2009-04-30T22:20:59Z 2009-04-30T22:20:59Z <p>This might help. It needs some code to call the Dispose() on the IEnumerator:</p> <pre><code>class Program { static void Main(string[] args) { //var list = MyClass.DequeueAll().ToList(); //var list2 = MyClass.DequeueAll().ToList(); var clonable = MyClass.DequeueAll().ToClonable(); var list = clonable.Clone().ToList(); var list2 = clonable.Clone()ToList(); var list3 = clonable.Clone()ToList(); } } class MyClass { static Queue&lt;string&gt; list = new Queue&lt;string&gt;(); static MyClass() { list.Enqueue("one"); list.Enqueue("two"); list.Enqueue("three"); list.Enqueue("four"); list.Enqueue("five"); } public static IEnumerable&lt;string&gt; DequeueAll() { while (list.Count &gt; 0) yield return list.Dequeue(); } } static class Extensions { public static IClonableEnumerable&lt;T&gt; ToClonable&lt;T&gt;(this IEnumerable&lt;T&gt; e) { return new ClonableEnumerable&lt;T&gt;(e); } } class ClonableEnumerable&lt;T&gt; : IClonableEnumerable&lt;T&gt; { List&lt;T&gt; items = new List&lt;T&gt;(); IEnumerator&lt;T&gt; underlying; public ClonableEnumerable(IEnumerable&lt;T&gt; underlying) { this.underlying = underlying.GetEnumerator(); } public IEnumerator&lt;T&gt; GetEnumerator() { return new ClonableEnumerator&lt;T&gt;(this); } IEnumerator IEnumerable.GetEnumerator() { return this.GetEnumerator(); } private object GetPosition(int position) { if (HasPosition(position)) return items[position]; throw new IndexOutOfRangeException(); } private bool HasPosition(int position) { lock (this) { while (items.Count &lt;= position) { if (underlying.MoveNext()) { items.Add(underlying.Current); } else { return false; } } } return true; } public IClonableEnumerable&lt;T&gt; Clone() { return this; } class ClonableEnumerator&lt;T&gt; : IEnumerator&lt;T&gt; { ClonableEnumerable&lt;T&gt; enumerable; int position = -1; public ClonableEnumerator(ClonableEnumerable&lt;T&gt; enumerable) { this.enumerable = enumerable; } public T Current { get { if (position &lt; 0) throw new Exception(); return (T)enumerable.GetPosition(position); } } public void Dispose() { } object IEnumerator.Current { get { return this.Current; } } public bool MoveNext() { if(enumerable.HasPosition(position + 1)) { position++; return true; } return false; } public void Reset() { position = -1; } } } interface IClonableEnumerable&lt;T&gt; : IEnumerable&lt;T&gt; { IClonableEnumerable&lt;T&gt; Clone(); } </code></pre> http://stackoverflow.com/questions/807846/are-there-any-articles-or-advice-on-creating-a-c-chat-server-with-a-c-client/807861#807861 0 Answer by taoufik for Are there any articles or advice on creating a C++ chat server with a C# client? taoufik 2009-04-30T16:35:20Z 2009-04-30T16:35:20Z <p>If it is running all in one windows domain, you might consider DCOM. Otherwise, I'd go for web services (SOAP toolkit for C++) or maybe REST.</p> http://stackoverflow.com/questions/803242/understanding-events-and-event-handlers-in-c/803485#803485 4 Answer by taoufik for understanding events and event handlers in C# taoufik 2009-04-29T17:45:36Z 2009-04-29T23:06:46Z <p>C# knows two terms, <code>delegate</code> and <code>event</code>. Let's start with the first one.</p> <h2>Delegate</h2> <p>A <code>delegate</code> is a reference to a method. Just like you can create a reference to an instance:</p> <pre><code>MyClass instance = myFactory.GetInstance(); </code></pre> <p>You can use a delegate to create an reference to a method:</p> <pre><code>Action myMethod = myFactory.GetInstance; </code></pre> <p>Now that you have this reference to a method, you can call the method via the reference:</p> <pre><code>MyClass instance = myMethod(); </code></pre> <p>But why would you? You can also just call <code>myFactory.GetInstance()</code> directly. In this case you can. But suppose that you don't want to call this method youself, but want to give it other classes to call. Those other classes don't know about the type of <code>myFactory</code>. In that case, you'll need to let the other classes know about the type of your <code>myFactory</code>:</p> <pre><code>TheOtherClass toc; //... toc.SetFactory(myFactory); class TheOtherClass { public void SetFactory(MyFactory factory) { // set here } } </code></pre> <p>Thanks to delegates, you don't have to expose the type of my factory:</p> <pre><code>TheOtherClass toc; //... Action factoryMethod = myFactory.SetFactory; toc.SetFactoryMethod(factoryMethod); class TheOtherClass { public void SetFactory(Action factoryMethod) { // set here } } </code></pre> <p>Thus, you can give a delegate to some other class to use, without exposing your type to them. The only thing you're exposing is the signature of your method (how many parameters you have and such). </p> <p>"Signature of my method", where did I hear that before? O yes, interfaces!!! interfaces describe the signature of a whole class. Think of delegates as describing the signature of only one method!</p> <p>Another large difference between an interface and a delegate, is that when you're writing your class, you don't have to say to C# "this method implements that type of delegate". With interfaces you do need to say "this class implements that type of an interface".</p> <p>Further, a delegate reference can (with some restrictions) reference multiple methods. An object reference can always only reference to one object.</p> <h2>Event</h2> <p>Events are just properties (like the get;set; properties to instance fields) which expose subscription to the delegate from other objects. These properties, however don't support get;set;. Instead they support add;remove;</p> <p>So you can have:</p> <pre><code> Action myField; public event Action MyProperty { add { myField += value; } remove { myField -= value; } } </code></pre> <h2>Usage in UI (WinForms)</h2> <p>So, now we know that a delegate is a reference to a method and that we can have an event to let the world know that they can give us their methods to be referenced from our delegate, and we are a UI button, then: we can ask anyone who is interested in whether I was clicked, to register their method with us (via the event we exposed). We can use all those methods that were given to us, and reference them by our delegate. And then, we'll wait and wait.... until a user comes and clicks on that button, then we'll have enough reason to invoke the delegate. And because the delegate references all those methods given to us, all those methods will be invoked. We don't know what those methods do, nor we know which class implements those method. All we do care about is that someone was interested in us being clicked, and gave us a reference to a method that complied with our desired signature.</p> <p>Heaving said this, languages like Java don't have delegates. They use interfaces instead. The way they do that is to ask anyone who is interested in 'us being clicked', to implement a certain interface (with a certain method we can call), then give us the whole instance that implements the interface. We can that keep a list of all objects implementing this interface, and can call their 'certain method we can call' whenever we get clicked.</p> http://stackoverflow.com/questions/803878/c-ienumerator-yield-structure-potentially-bad/803972#803972 6 Answer by taoufik for C# IEnumerator/yield structure potentially bad? taoufik 2009-04-29T19:48:33Z 2009-04-29T20:35:56Z <p>You're not always unsafe with the IEnumerable. If you leave the framework call <code>GetEnumerator</code> (which is what most of the people will do), then you're safe. Basically, you're as safe as the carefullness of the code using your method:</p> <pre><code>class Program { static void Main(string[] args) { // safe var firstOnly = GetList().First(); // safe foreach (var item in GetList()) { if(item == "2") break; } // safe using (var enumerator = GetList().GetEnumerator()) { for (int i = 0; i &lt; 2; i++) { enumerator.MoveNext(); } } // unsafe var enumerator2 = GetList().GetEnumerator(); for (int i = 0; i &lt; 2; i++) { enumerator2.MoveNext(); } } static IEnumerable&lt;string&gt; GetList() { using (new Test()) { yield return "1"; yield return "2"; yield return "3"; } } } class Test : IDisposable { public void Dispose() { Console.WriteLine("dispose called"); } } </code></pre> <p>Whether you can affort to leave the database connection open or not depends on your architecture as well. If the caller participates in an transaction (and your connection is auto enlisted), then the connection will be kept open by the framework anyway. </p> <p>Another advantage of <code>yield</code> is (when using a server-side cursor), your code doesn't have to read all data (example: 1,000 items) from the database, if your consumer wants to get out of the loop earlier (example: after the 10th item). This can speed up querying data. Especially in an Oracle environment, where server-side cursors are the common way to retrieve data.</p> http://stackoverflow.com/questions/399340/label-on-checkboxes-is-there-a-reason-why-more-websites-dont-use-it/399590#399590 Comment by taoufik on <label> on checkboxes: is there a reason why more websites don't use it? taoufik 2009-11-18T11:21:07Z 2009-11-18T11:21:07Z All these examples work in IE6. I'd say, the last two work 100%, the first one tries to be explicit twice, say 200% ;) http://stackoverflow.com/questions/942262/add-empty-value-to-a-dropdownlist-in-asp-net-mvc/1219705#1219705 Comment by taoufik on Add empty value to a DropDownList in ASP.net MVC taoufik 2009-11-16T17:35:20Z 2009-11-16T17:35:20Z I guess the question is regarding asp.net MVC! http://stackoverflow.com/questions/1649282/calling-an-oracle-store-procedure-with-nhibernate/1649492#1649492 Comment by taoufik on Calling an Oracle store procedure with nHibernate taoufik 2009-10-30T19:01:02Z 2009-10-30T19:01:02Z I guess I'm more struggling with mapping the ouput cursor with nHibernate. How does your approach handle output results? I read in the manual that the requirements are the output should be in the first parameter (as a cursor). http://stackoverflow.com/questions/1573453/i-need-to-implement-c-deep-copy-constructors-with-inheritance-what-patterns-are/1573594#1573594 Comment by taoufik on I need to implement C# deep copy constructors with inheritance. What patterns are there to choose from? taoufik 2009-10-15T17:32:30Z 2009-10-15T17:32:30Z Copy-constructor is not part any C# best practices. One should use <code>ICloneable</code> and <code>MemberwiseClone</code> instead. http://stackoverflow.com/questions/1573453/i-need-to-implement-c-deep-copy-constructors-with-inheritance-what-patterns-are/1573657#1573657 Comment by taoufik on I need to implement C# deep copy constructors with inheritance. What patterns are there to choose from? taoufik 2009-10-15T17:29:30Z 2009-10-15T17:29:30Z @Pavel: the idea is the answer the question, and not to rewrite his code or to answer any unasked question. this.base =&gt; base; whether you use <code>as</code> or <code>(ChildObj)</code> is a preference a developer has. I think <code>(ChildObj)</code> looks horrible. and yes, you don't need to copy any value-type fields. But once again, this is not part of his question. http://stackoverflow.com/questions/1573453/i-need-to-implement-c-deep-copy-constructors-with-inheritance-what-patterns-are/1573657#1573657 Comment by taoufik on I need to implement C# deep copy constructors with inheritance. What patterns are there to choose from? taoufik 2009-10-15T17:16:31Z 2009-10-15T17:16:31Z It will work fine. Basically, any ChildObj object is both a ParentObj and a ChildObj. If you'd have a reference to a ChildObj, and would call MemberwiseClone (independent of where you call it from) on it, you'd get an object which is both ParentObj and a ChildObj as well. Therefore, &quot;newObj.myA = this.myA;&quot; will be completely valid. http://stackoverflow.com/questions/1572407/why-is-namespace-not-recognised Comment by taoufik on Why is namespace not recognised? taoufik 2009-10-15T15:01:36Z 2009-10-15T15:01:36Z Are you sure you don't have a class with the name <code>MyCompany</code>? http://stackoverflow.com/questions/1561224/linq-to-sql-many-one-relationship/1561454#1561454 Comment by taoufik on Linq to Sql Many-One relationship taoufik 2009-10-14T08:38:15Z 2009-10-14T08:38:15Z That's half of the solution. The other half is to specify that nHibernate should use join-fetch strategy to get the data (other way a bag supports is lazy-loading strategy). You can specify that in the xml or in the hql (the query). See <a href="https://www.hibernate.org/315.html" rel="nofollow">hibernate.org/315.html</a> and <a href="http://docs.jboss.org/hibernate/core/3.3/reference/en/html/queryhql.html#queryhql-joins" rel="nofollow">docs.jboss.org/hibernate/core/&hellip;</a> http://stackoverflow.com/questions/842718/match-closest-phrase-in-sql/842775#842775 Comment by taoufik on Match closest phrase in SQL taoufik 2009-05-09T06:19:02Z 2009-05-09T06:19:02Z Officially, not yet. You can use LINQ calling a stored procedure or Check this link for a custom solution <a href="http://sqlblogcasts.com/blogs/simons/archive/2008/12/18/LINQ-to-SQL---Enabling-Fulltext-searching.aspx" rel="nofollow">sqlblogcasts.com/blogs/simons/&hellip;</a> http://stackoverflow.com/questions/842465/streamreader-read-ahead-one-line-but-dont-consume/842554#842554 Comment by taoufik on streamreader read ahead one line but don't consume? taoufik 2009-05-09T05:42:36Z 2009-05-09T05:42:36Z I would initialize the <code>BufferedLines</code> before usage :) and also, I'd use another name for PeekLine(), as the name suggests that it would always return the same line (the next line from the position of the last ReadLine). Voted +1 already http://stackoverflow.com/questions/837541/svn-to-zip-on-the-fly Comment by taoufik on SVN to ZIP on the fly taoufik 2009-05-08T10:32:58Z 2009-05-08T10:32:58Z @stukelly - I don't have access to serverfault.com, and further, I'm a developer and I'm prepared to develop a good custom solution. So, I'm not only after off-the-shelf products. http://stackoverflow.com/questions/837541/svn-to-zip-on-the-fly/838193#838193 Comment by taoufik on SVN to ZIP on the fly taoufik 2009-05-08T10:31:18Z 2009-05-08T10:31:18Z That's an idea. I have though about the on-the-fly custom solution, but was afraid it wouldn't perform well. Is SourceForge not just using SVN? Or do they have their own software which just bridges SVN? The offline solution is too much of a configuration, I'm afraid. I want to generate a zipfile from any directory I want. If there is a good alternative to SVN which can do this, I'm happy to switch. http://stackoverflow.com/questions/837541/svn-to-zip-on-the-fly/838232#838232 Comment by taoufik on SVN to ZIP on the fly taoufik 2009-05-08T10:28:03Z 2009-05-08T10:28:03Z I didn't know this, thanks for that. But it is not the solution to my problem. I'm really looking for a server-side solution to be served via the web. Like SourceForge/Codeplex do that. http://stackoverflow.com/questions/837231/what-the-minimum-technical-skills-for-a-senior-web-developer Comment by taoufik on What the "minimum" technical skills for a "Senior Web Developer"? taoufik 2009-05-07T23:28:12Z 2009-05-07T23:28:12Z I guess when you know the difference between producing code and delivering solutions http://stackoverflow.com/questions/818785/return-values-from-dialog-box/818795#818795 Comment by taoufik on Return values from dialog box taoufik 2009-05-04T04:58:15Z 2009-05-04T04:58:15Z I always was defining properties on the modal dialog and then read them back from the main form. Your solution looks more cleaner (for only one return parameter), however it does not return the return value of ShowModel. So, you don't know whether the user just clicked on the X, or really did change something.