User akmad - Stack Overflowmost recent 30 from stackoverflow.com2009-12-23T00:50:42Zhttp://stackoverflow.com/feeds/user/1314http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/59816/mappoint-2009-load-performance1MapPoint 2009 Load Performanceakmad2008-09-12T19:42:26Z2009-12-16T08:57:49Z
<p>I'm having some problems integrating MS MapPoint 2009 into my WinForms .Net 2.0 application in C#. I've added the ActiveX MapPoint control onto a form and have no problems getting it to display a maps and locations; my concern is the time it takes to load a map once it is created. </p>
<p>The tests on my development machine have shown the average load time to be between 3 and 5 seconds, during which the application is totally locked. While this isn't totally unacceptable, it's an awfully long time to lose control of the application. Also, because the GUI thread is locked, I cannot show a loading dialog or something to mask the load time. </p>
<p>The line that hangs is this: (where axMappointControl1 is the MapPoint control)</p>
<pre><code>axMappointControl1.NewMap(MapPoint.GeoMapRegion.geoMapNorthAmerica);
</code></pre>
<p>I've tried executing the NewMap method on another thread but the GUI thread still ends up being blocked.</p>
<p>My questions are: </p>
<ul>
<li>What can I do to speed up MapPoint when it loads?</li>
<li>Is there any way to load MapPoint so that it won't block the GUI thread?</li>
</ul>
<p>Any help is greatly appreciated.</p>
http://stackoverflow.com/questions/1910749/question-serializing-and-deserializing-the-significants-and-when-to-use-it/1910820#19108200Answer by akmad for Question: Serializing and deserializing, the significants and when to use itakmad2009-12-15T22:18:35Z2009-12-15T22:18:35Z<p>You've got a few questions here. </p>
<p>First, is it mandatory to use serialization when using web services: I'd say yes. Serializing something usually (always?) refers to taking some object from memory and translating it to another format; for example, from memory to a file on a disk drive. With this (crappy) definition, a web service will, at the very least internally, be serializing some objects based on the request (to determine what method is be called, etc). If your web site has any parameters or return values those also must be serialized.</p>
<p>Second, serializing to a binary format is usually for size and speed. It's generally much faster to serialize an object (in .Net) to a binary object and also much smaller than an xml representation.</p>
http://stackoverflow.com/questions/1909543/c-multiple-settings-files-with-same-interface/1910764#19107640Answer by akmad for C# multiple settings files with same interfaceakmad2009-12-15T22:09:54Z2009-12-15T22:09:54Z<p>I'm not sure if you can do what you through the designer generated settings, but I don't use them often so I could be wrong. However, there is another way you could do this: creating your own <a href="http://msdn.microsoft.com/en-us/library/system.configuration.configurationsection.aspx" rel="nofollow">ConfigurationSection</a>.</p>
<p>Here is an example:</p>
<pre><code>public class MyProperties : ConfigurationSection {
[ConfigurationProperty("A")]
public MySettings A
{
get { return (MySettings )this["A"]; }
set { this["A"] = value; }
}
[ConfigurationProperty("B")]
public MySettings B
{
get { return (MySettings )this["B"]; }
set { this["B"] = value; }
}
}
public class MySettings : ConfigurationElement {
[ConfigurationProperty("greeting")]
public string Greeting
{
get { return (string )this["greeting"]; }
set { this["greeting"] = value; }
}
}
</code></pre>
<p>And then your app.config/web.config needs the following:</p>
<pre><code><?xml version="1.0" encoding="utf-8" ?>
<configuration>
<configSections>
<section name="mySettings" type="Namespace.MyProperties, Assembly"/>
</configSections>
<mySettings>
<A greeting="Hello from A!" />
<B greeting="Hello from B" />
</mySettings>
</configuration>
</code></pre>
<p>There may be typos in that but the overall idea is there. Hope that helps.</p>
http://stackoverflow.com/questions/1907981/increasing-performance-on-data-validation/1908078#19080781Answer by akmad for Increasing performance on data validationakmad2009-12-15T15:07:41Z2009-12-15T15:07:41Z<p>It sounds like your core logic is something like this:</p>
<ol>
<li>Validate <code>TypeB</code> (call <code>TryFirstMethod</code>).</li>
<li>If not valid, display error message.</li>
<li>If valid (and, presumably, other members are valid as well) then to perform operation on the data (as part of <code>FirstMethod</code>?).</li>
<li>The data operation (<code>FirstMethod</code>) re-validates the input.</li>
</ol>
<p>If this is (somewhat) correct, you should be able to change your design into something like:</p>
<ol>
<li>Call <code>FirstMethod</code>.</li>
<li>Validate data.</li>
<li>If invalid, throw validation exception.</li>
<li>If valid, perform data operation.</li>
</ol>
<p>Your UI would then call <code>FirstMethod</code> and expect that the operation was successful unless an exception was thrown, in which case you'd display your validation messages as you do currently. With this design you only perform the validation a single time.</p>
http://stackoverflow.com/questions/1907924/extension-method-on-datacontext-linq-to-sql/1907952#19079522Answer by akmad for Extension method on datacontext Linq to sqlakmad2009-12-15T14:49:13Z2009-12-15T14:49:13Z<p>Something like this should work:</p>
<pre><code>public static IQueryable myExtensionMethod(this DataContext dc)
{
...
}
</code></pre>
http://stackoverflow.com/questions/1764483/sql-join-table-naming-convention/1764571#17645711Answer by akmad for SQL Join Table Naming Conventionakmad2009-11-19T16:24:15Z2009-11-19T16:24:15Z<p>It seems like the mapping table is storing all the roles that each user is a member of. If this is correct I would call the table <code>UserRoles</code>.</p>
<p>This correctly (IMO) pluralizes the intent of the table rather than <code>UsersRoles</code> which just sounds odd.</p>
http://stackoverflow.com/questions/1731207/c-array-of-objects/1731239#17312392Answer by akmad for C# Array of objectsakmad2009-11-13T19:13:27Z2009-11-13T19:13:27Z<p>In the first code block you are not creating a new <code>address</code> object in the first element of the array; thus the null reference exception when you attempt to set the city member. The fix for this is:</p>
<pre><code>address[] _a = new address[1];
_a[0] = new address();
_a[0].city = ...
</code></pre>
<p>In the second code block you are not creating an array in the <code>_req.addresses</code> member. The fix for that is:</p>
<pre><code>...
_req.addresses = new address[1];
_req.addresses[0] = _address;
</code></pre>
<p>Hope this helps!</p>
http://stackoverflow.com/questions/1730855/attaching-to-a-factory-instantiated-singleton-event-what-would-be-a-clean-appro/1731019#17310191Answer by akmad for Attaching to a factory instantiated singleton event - what would be a clean approach?akmad2009-11-13T18:29:34Z2009-11-13T18:29:34Z<p>Depending on how coupled you want these types to be, you could attach to the event in a static constructor. Then it would only be possible to get executed a single time (per AppDomain I think). Something like this:</p>
<pre><code>public class MyConsumer
{
static MyConsumer()
{
Factory.Resolve<Singleton>().DoWork += WorkMethod;
}
private static void WorkMethod(...) { ... }
}
</code></pre>
<p>The (over) use of static methods is a little off-putting, but depending on your requirements that may be ok.</p>
<p>I'll just add that the other answers here are also fine, but make sure you think about any threading issues. </p>
http://stackoverflow.com/questions/1704082/writing-drive-c-in-windows-7-vista/1704131#17041315Answer by akmad for Writing drive C: in Windows 7/Vistaakmad2009-11-09T21:52:58Z2009-11-09T21:52:58Z<p>Building on the answer from Ben S, check out the <a href="http://msdn.microsoft.com/en-us/library/14tx8hby.aspx" rel="nofollow">Environment.GetFolderPath</a> method.</p>
<p>This method allows you to abstract away the specific location and just use a known <a href="http://msdn.microsoft.com/en-us/library/system.environment.specialfolder.aspx" rel="nofollow">SpecialFolder</a> path instead (ie SpecialFolder.ApplicationData).</p>
http://stackoverflow.com/questions/1703637/c-abstract-dispose-method/1703769#17037690Answer by akmad for C# abstract Dispose methodakmad2009-11-09T20:57:43Z2009-11-09T20:57:43Z<p>While it does seem a little like nit-picking, the advice is valid. You are already indicating that you expect any sub-types of ConnectionAccessor will have <em>something</em> that they need to dispose. Therefore, it does seem better to ensure that the proper cleanup is done (in terms of the GC.SuppressFinalize call) by the base class rather than relying on each subtype to do it.</p>
<p>I use the dispose pattern mentioned in Bruce Wagners book <a href="http://rads.stackoverflow.com/amzn/click/0321245660" rel="nofollow">Effective C#</a> which is basically:</p>
<pre><code>public class BaseClass : IDisposable
{
private bool _disposed = false;
~BaseClass()
{
Dispose(false);
}
public void Dispose()
{
Dispose(true);
GC.SuppressFinalize(true);
}
protected virtual void Dispose(bool disposing)
{
if (_disposed)
return;
if (disposing)
{
//release managed resources
}
//release unmanaged resources
_disposed = true;
}
}
public void Derived : BaseClass
{
private bool _disposed = false;
protected override void Dispose(bool disposing)
{
if (_disposed)
return;
if (disposing)
{
//release managed resources
}
//release unmanaged resources
base.Dispose(disposing);
_disposed = true;
}
</code></pre>
http://stackoverflow.com/questions/1703513/asp-net-and-c-constant-processing-behind-the-site-possible/1703594#17035941Answer by akmad for ASP.NET and C# constant processing behind the site possible?akmad2009-11-09T20:33:48Z2009-11-09T20:33:48Z<p>The the web site and database you're on the right track, ASP.Net and MySql will work just fine for the type of project you are describing. However, the processing bit doesn't fit very well into the ASP.net model.</p>
<p>I would recommend that you think about creating a <a href="http://www.devsource.com/c/a/Architecture/Writing-a-Managed-Windows-Service-with-C/" rel="nofollow">Windows Service</a> to do whatever processing you need to do. It sounds like you want your processor to work on remote video streams so you'll need to consider how you'll get those live streams to you service and how many concurrent streams you could realistically process. </p>
<p>Perhaps it may make sense to have a client application or service that your users would run locally which would ping your hosted service when it detected a movement? In that case you'll likely want to look at hosting a <a href="http://msdn.microsoft.com/en-us/netframework/aa663324.aspx" rel="nofollow">WCF service</a> which can be done in IIS or any standalone application (such as the aforementioned Windows Service).</p>
http://stackoverflow.com/questions/1703387/whats-the-best-way-to-implement-a-search/1703468#17034680Answer by akmad for What's the best way to implement a search?akmad2009-11-09T20:15:51Z2009-11-09T20:15:51Z<p>This is a pretty loaded question given the lack of detail. If you just need a simple search over a few tables/columns then a single (cludgy) search SP may be enough for you. </p>
<p>That said, if you need more features such as:</p>
<ul>
<li>Searching a large set of tables</li>
<li>Support for large amounts of data</li>
<li>Searching over forms of a word</li>
<li>Logical operations</li>
<li>etc</li>
</ul>
<p>then you might want to look into Full-Text Search (which is a part of MS Sql 2000 and above). The initial investment to get up to speed with Full-Text Search can be a bit offsetting, but compared to implementing the above features you'll likely save yourself a ton of time and energy.</p>
<p>Here are some Full-Text Search links to get you started:</p>
<ul>
<li><a href="http://msdn.microsoft.com/en-us/library/ms142571.aspx" rel="nofollow">Msdn Page</a></li>
<li><a href="http://beingoyen.blogspot.com/2008/09/full-text-search-step-by-step-tutorial.html" rel="nofollow">Initial Set Up</a></li>
<li><a href="http://www.asp.net/Learn/sql-videos/video-115.aspx" rel="nofollow">Set Up Video</a></li>
</ul>
<p>Hope that helps.</p>
http://stackoverflow.com/questions/1701504/how-can-i-add-time-values-in-asp-net/1701570#17015701Answer by akmad for How can I add time values in ASP.NET?akmad2009-11-09T15:01:32Z2009-11-09T15:01:32Z<p>I would start by looking at the <a href="http://msdn.microsoft.com/en-us/library/system.datetime.aspx" rel="nofollow">DateTime</a> and <a href="http://msdn.microsoft.com/en-us/library/system.timespan.aspx" rel="nofollow">TimeSpan</a> structures. Using these types you can pretty easily perform most Date/Time operations.</p>
<p>Specifically look at these methods:</p>
<ul>
<li><a href="http://msdn.microsoft.com/en-us/library/3z48198e.aspx" rel="nofollow">TryParse</a>: Get extract Date/Time information from a string</li>
<li><a href="http://msdn.microsoft.com/en-us/library/system.timespan.add.aspx" rel="nofollow">TimeSpan.Add</a></li>
<li><a href="http://msdn.microsoft.com/en-us/library/system.datetime.add.aspx" rel="nofollow">DateTime.Add</a></li>
</ul>
<p>A simple example would be:</p>
<pre><code>public TimeSpan? AddTime(string time1, string time2)
{
TimeSpan ts1;
TimeSpan ts2;
if (TimeSpan.TryParse(time1, out ts1) &&
TimeSpan.TryParse(time2, out ts2))
{
return ts1.Add(ts2);
}
return null;
}
</code></pre>
http://stackoverflow.com/questions/1701377/what-to-log-when-an-exception-is-raised/1701474#17014740Answer by akmad for What to log when an exception is raisedakmad2009-11-09T14:48:24Z2009-11-09T14:48:24Z<p>In general I only log the exception message and stack trace and I try to log enough debug information so that I can tell what happened from the context. Usually this is more than enough detail to figure out what went wrong.</p>
<p>In cases where I simply cannot figure out how an exception is occurring, I add additional debug logging of applicable variable values. Granted, this only works because I have an easy availability to the application and can temporarily swap out the assembly if needed. If don't have that type of accessibility then you might want to take a look at <a href="http://www.gibraltarsoftware.com/See/" rel="nofollow">Gibraltar</a>. It provides a wealth of debug information that can be sent from remote clients and has all sorts of nifty forms to view it.</p>
http://stackoverflow.com/questions/1701216/is-there-any-advantage-of-using-volatile-keyword-in-contrast-to-use-the-interlock/1701300#17013000Answer by akmad for Is there any advantage of using volatile keyword in contrast to use the Interlocked class?akmad2009-11-09T14:29:06Z2009-11-09T14:29:06Z<p>I won't attempt to be an authority on this subject but I would highly recommend that you take a look at <a href="http://www.yoda.arachsys.com/csharp/threads/volatility.shtml" rel="nofollow">this article</a> by the vaunted Jon Skeet.</p>
<p>Also take a look at the final part of <a href="http://stackoverflow.com/questions/154551/volatile-vs-interlocked-vs-lock/154803#154803">this answer</a> which details what <code>volatile</code> should be used for.</p>
http://stackoverflow.com/questions/1690361/building-interpreter-of-a-document-format/1690765#16907651Answer by akmad for Building Interpreter Of a Document Formatakmad2009-11-06T21:56:55Z2009-11-09T14:12:06Z<p>Sounds like a good learning project and you've got some good pointers here already. I would just add that you should remember that there is a difference between a document file language and a document format. </p>
<p>Consider <a href="http://en.wikipedia.org/wiki/Office%5FOpen%5FXML" rel="nofollow">OOXML</a>, it is a document format that is built on top of XML (what I'd describe as the file language). If your purpose is to learn about building your own document format then I'd highly recommend starting with XML so that you don't have to reinvent a language parser. This will let you focus on the concerns around building the format.</p>
<p>That said, good on you if you want to play around with creating your own language; just wanted to make sure you realized that they are different beasts.</p>
<p>Here are some links that will help you get started using XML in C#:</p>
<ul>
<li><a href="http://msdn.microsoft.com/en-us/beginner/bb308812.aspx" rel="nofollow">Xml Tutorial (video)</a></li>
<li><a href="http://msdn.microsoft.com/en-us/library/hf9hbf87.aspx" rel="nofollow">XML Document overview</a></li>
<li><a href="http://msdn.microsoft.com/en-us/library/9d83k261.aspx" rel="nofollow">Reading Xml data with an XmlReader</a></li>
<li><a href="http://msdn.microsoft.com/en-us/library/4d1k42hb.aspx" rel="nofollow">Writing Xml data with an XmlWriter</a></li>
</ul>
http://stackoverflow.com/questions/628751/unit-testing-code-that-doesnt-execute-immediately/1690695#16906950Answer by akmad for Unit Testing code that doesn't execute immediatelyakmad2009-11-06T21:45:38Z2009-11-06T21:45:38Z<p>As a couple of other answers have indicated, long-running tests are generally a bad idea. To facilitate testing this component you should consider that you really have two distinct things that you're trying to test.</p>
<ol>
<li>When you register a timed delegate execution the proper time is set. This likely needs to be tested with various combinations of timeouts and numbers of delegates.</li>
<li>The delegate is executed in the proper manner.</li>
</ol>
<p>Separating the tests in the manner would allow you to test that your timing mechanism works as expected with a small number of short timeouts (testing all the cases you need to consider). Remember that you'll likely need a little bit of leeway in the actual time that it takes to execute a given delegate based on the current load on the system and how complex your component code is (that is in <code>IntervalManager</code>).</p>
http://stackoverflow.com/questions/1688757/c-windows-application-developer-3rd-party-tools/1688874#16888743Answer by akmad for C# Windows Application Developer - 3rd Party Toolsakmad2009-11-06T16:51:11Z2009-11-06T16:51:11Z<p>The answer to this question depends on how you define "3rd party tools". I usually take that to mean products from companies other than MS but excluding free open source software. When it comes to 3rd party products (for-profit) I cannot think of any common products that I've used or been asked to learn over the last decade that I've been doing .Net development. Most MS shops I've worked with turn to MS solutions (for good or ill depending on your personal view).</p>
<p>That said, in recent years the number and quality of the various FOSS solutions out there has risen dramatically. I use the following whenever I can:</p>
<ul>
<li>Logging: <a href="http://logging.apache.org/log4net/index.html" rel="nofollow">log4net</a></li>
<li>Inversion of Control Container (plus more): <a href="http://www.castleproject.org/container/index.html" rel="nofollow">Castle Windsor</a></li>
<li>ORM: <a href="https://www.hibernate.org/343.html" rel="nofollow">NHibernate</a></li>
<li>Unit Testing: <a href="http://www.nunit.org/index.php" rel="nofollow">NUnit</a></li>
<li>Mocks for unit testing: <a href="http://www.ayende.com/projects/rhino-mocks.aspx" rel="nofollow">Rhino Mocks</a></li>
</ul>
<p>For most of these projects there are many other options, these are just my current favorites. Learn to use these (and <strong>WHY</strong> they are needed) and you'll be many steps above the average .Net developer (sad but all to true). </p>
http://stackoverflow.com/questions/1688473/dtos-vs-serializing-persisted-entities/1688638#16886380Answer by akmad for DTOs vs Serializing Persisted Entitiesakmad2009-11-06T16:19:23Z2009-11-06T16:19:23Z<p>I've been in this scenario multiple times before and can speak from experience on both sides. Originally I was just serializing my entities and sending them as is. This worked fine from a functional standpoint but the more I looked into it the more I realized that I was sending more data than I needed to and I was losing the ability to vary the implementation on either side. In subsequent service applications I've taken to created DTOs whose only purpose is to get data to and from the web service. </p>
<p>Outside of any interop, having to think about all the fields that are being sent over the wire is very helpful (to me) to make sure I'm not sending data that isn't needed or worse, should not get down to the client.</p>
<p>As others have mentioned, <a href="http://automapper.codeplex.com/" rel="nofollow">AutoMapper</a> is a great tool for entity to DTO mapping.</p>
http://stackoverflow.com/questions/1688222/doubts-regarding-memory-management-in-net/1688408#16884082Answer by akmad for doubts regarding Memory management in .netakmad2009-11-06T15:43:44Z2009-11-06T15:43:44Z<p>This is a good question and one that a lot of developers don't seem to understand.</p>
<p>At a high level, managed resources are resources that are allocated and tracked by .Net. The memory used by the resource comes from a pool allocated to .Net and the .Net runtime tracks all references between managed resources. This tracking (I'm sure this is the wrong term, but will suffice here) allows the .Net runtime to know when a given resource is no longer being used and thus eligible to be released. Unmanaged resources therefore, are resources allocated outside of that .Net managed pool and not tracked by the runtime. Most often, these are references to OS or external application resources. There are all sorts of complicated reasons why the .Net runtime cannot "see" into an unmanaged resource, but I like to think of it like this: .Net is a walled development garden that you must enter to use. You can poke a hole in that wall to see outside (ie, PInvoke) but you cannot own a resource on the other side.</p>
<p>Now, on to the second part of your question. Bill Wagner has a great discussion on how to implement Dispose methods and why in his book <a href="http://rads.stackoverflow.com/amzn/click/0321245660" rel="nofollow">Effective C#</a>. There are also some really good answers about this <a href="http://stackoverflow.com/questions/339063/what-is-the-difference-between-using-idisposable-vs-a-destructor-in-c/339077#339077">here</a> and <a href="http://stackoverflow.com/questions/898828/c-finalize-dispose-pattern/898867#898867">here</a>.</p>
<p>Hope this helps.</p>
http://stackoverflow.com/questions/1308723/asp-net-is-my-path-virtual/1308733#13087332Answer by akmad for asp.net - Is my path virtual?akmad2009-08-20T20:52:22Z2009-08-20T20:52:22Z<p>Would the <a href="http://msdn.microsoft.com/en-us/library/system.io.path.ispathrooted.aspx" rel="nofollow">Path.IsPathRooted</a> method work?</p>
<p>You're resulting code would be:</p>
<pre><code>public void Foo(String path)
{
if(!Path.IsPathRooted(path))
{
path = Server.MapPath(path);
}
// do stuff with path
}
</code></pre>
http://stackoverflow.com/questions/1305988/c-hierarchical-iteration-works-differently/1306024#13060240Answer by akmad for C#-Hierarchical Iteration works differentlyakmad2009-08-20T12:56:28Z2009-08-20T13:17:44Z<p>In your example, you can iterate over the cars array because it is an Array, <del>which obviously implements IEnumerable</del> (See Jons comment below). Your class CarStore is child of the Car type (which I assume is a child of object and does not implement the IEnumerable interface). You cannot enumerate over the CarStore class because you did not implement the IEnumerable interface. </p>
<p>If you don't explicitly specify what thing you want to enumerate on the CarStore type how is the runtime supposed to figure it out? </p>
http://stackoverflow.com/questions/1306050/c-search-with-resemblance-affinity/1306099#13060991Answer by akmad for C# search with resemblance / affinityakmad2009-08-20T13:11:12Z2009-08-20T13:11:12Z<p>Depending on how often you'll need to do this search, the brute force iterate and compare method might be fast enough. Twenty thousand records really isn't all that much and unless the number of requests is large your performance may be acceptable. </p>
<p>That said, you'll have to implement the comparison logic yourself and if you want a large degree of flexibility (or if you need find you have to work on performance) you might want to look at something like <a href="http://incubator.apache.org/lucene.net/" rel="nofollow">Lucene.Net</a>. Most of the text search engines I've seen and worked with have been more file-based, but I think you can index in-memory objects as well (however I'm not sure about that).</p>
<p>Good luck!</p>
http://stackoverflow.com/questions/1302590/c-usercontrol-depending-on-user-class-library/1302637#13026371Answer by akmad for c# usercontrol depending on user class libraryakmad2009-08-19T21:07:36Z2009-08-19T21:07:36Z<p>I'm not quite sure I understand your question. If you're asking whether you have to reference all dependent assemblies when you use a given Control, the answer is yes you do. </p>
<p>Perhaps you can explain why referencing these dependent assemblies is an issue as that might be the root issue here.</p>
<p>If you're asking something else please clarify...</p>
http://stackoverflow.com/questions/1302424/uploading-files-in-wcf-services-approaches/1302541#13025412Answer by akmad for Uploading files in WCF services approaches akmad2009-08-19T20:46:16Z2009-08-19T20:46:16Z<p>As you seem to know, you'll generally want your services to be "chunky" as opposed to "chatty". The answer in your specific scenario will depend on:</p>
<ul>
<li>How large the total of all the files is.</li>
<li>If and how you use the acknowledgments you're currently getting. If you need to update a UI a each file is uploaded you'll find it difficult to keep level of detail if you send them all at once.</li>
<li>What type of reliability/retryability you need. Right now, if your service or connection dies you can simply resend the files that didn't get sent. If you batch all the files together you'll have to start all over again, which may or may not be a big issue.</li>
</ul>
<p>If you can, you might want to look at the support for sending Streams with WCF:</p>
<ul>
<li><a href="http://msdn.microsoft.com/en-us/library/ms731913.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/ms731913.aspx</a></li>
<li><a href="http://www.haveyougotwoods.com/archive/2008/04/14/wcf-message-streaming.aspx" rel="nofollow">http://www.haveyougotwoods.com/archive/2008/04/14/wcf-message-streaming.aspx</a></li>
</ul>
<p>By sending a Stream you get the size benefits of zipping up the entire batch of files, while still retaining the ability to know your progress within the upload.</p>
<p>I'm not sure of any specific issues regarding increasing the maximum message size, beyond the impact it has on memory usage. Lastly, I would say that you should be zipping up these files regardless of if you send them all together. </p>
http://stackoverflow.com/questions/1300647/c-generics-string-array-processing/1300685#13006853Answer by akmad for C# - Generics- string array processingakmad2009-08-19T15:24:51Z2009-08-19T15:24:51Z<p>Here is a very simple implementation:</p>
<pre><code>public T[] Combine<T>(IEnumerable<T> a, IEnumerable<T> b)
{
List<T> result = new List<T>(a);
result.AddRange(b);
return result.ToArray();
}
</code></pre>
http://stackoverflow.com/questions/1296375/a-net-custom-attribute-to-perform-impersonation/1296428#12964282Answer by akmad for A .NET custom attribute to perform impersonation?akmad2009-08-18T20:49:35Z2009-08-18T20:49:35Z<p>I don't think an attribute is the best way to implement a feature like this. For the most part attributes merely act as meta-data on types and members (Aspect Oriented stuff aside). You'd need to write something to check for that attribute, and re-route the method call accordingly. If you already have some AOP code in place this shouldn't be much of a chore, but if you don't you'd likely be much better served by something like this:</p>
<pre><code>public void DoWorkAsUser(tokenHandle, Action op)
{
WindowsIdentity newId = new WindowsIdentity(tokenHandle);
WindowsImpersonationContext impersonatedUser = newId.Impersonate();
op();
impersonatedUser.Undo();
}
</code></pre>
<p>And then call it like this:</p>
<pre><code>DoWorAsUser(token, MyMethod);
</code></pre>
<p>This allows you to centralize the impersonation code without having to mess around with reflection, codeweaving, etc.</p>
http://stackoverflow.com/questions/1296166/wcf-communication-though-named-pipes-with-non-net-app/1296232#12962320Answer by akmad for WCF Communication though named pipes with non .net Appakmad2009-08-18T20:15:15Z2009-08-18T20:15:15Z<p>You'll want to keep your contract as simple as possible (in terms of what types you expose). Though I have not tried this myself, I know that this type of functionality is supported (.Net to Java is a common usage) and relatively easy to do. </p>
<p>You don't mention which side (.Net or Ruby) will be the server, but I would expect that this will be much easier to do if you host the service in WCF and consume it from ruby. Going the other way around <em>may</em> be a bit more of a pain because mucking with the internals of WCF can be a bit of a pain.</p>
http://stackoverflow.com/questions/1287925/best-practices-organizing-a-visual-studio-solution/1288329#12883291Answer by akmad for Best practices organizing a Visual Studio solutionakmad2009-08-17T14:39:53Z2009-08-17T14:39:53Z<p>I set my solution folders up a bit differently than you. At the top level I have the following folders:</p>
<pre><code>\build
\lib
\src
</code></pre>
<p>The build folder has build scripts (NAnt, MSBuild, etc). Any 3rd party assemblies (or anything I'm not building in the solution) get put into the lib folder, in an appropriate sub-folder. For example, I'll have log4net, NUnit, RhinoMocks folders in the lib folder, each containing the files needed for that dependency. The src folder has the solution and all project files.</p>
<p>I like this structure because it clearly delineates between the project code and the other stuff that is required by the project. Also, I usually set up some custom build tasks to copy the resulting assemblies for my project into either a \deploy or \lib\ folder. This way you don't have to hunt in the \src\\bin\\ folder to get a built assembly or the whole project; however this seems a bit beyond the scope of your question.</p>
<p>Btw... I didn't come up with this structure on my own, I think I started off using <a href="http://treesurgeon.codeplex.com/" rel="nofollow">Tree Surgeon</a> and evolved my process from there.</p>
http://stackoverflow.com/questions/22907/which-is-better-ad-hoc-queries-or-stored-procedures/22970#2297017Answer by akmad for Which is better: Ad hoc queries, or stored procedures?akmad2008-08-22T17:32:28Z2009-08-10T03:45:31Z<p>In my experience writing mostly WinForms Client/Server apps these are the simple conclusions I've come to:</p>
<p><strong>Use Stored Procedures:</strong></p>
<ol>
<li>For any complex data work. If you're going to be doing something truly requiring a cursor or temp tables it's usually fastest to do it within SQL Server.</li>
<li>When you need to lock down access to the data. If you don't give table access to users (or role or whatever) you can be sure that the only way to interact with the data is through the SP's you create.</li>
</ol>
<p><strong>Use ad-hoc queries:</strong></p>
<ol>
<li>For CRUD when you don't need to restrict data access (or are doing so in another manner).</li>
<li>For simple searches. Creating SP's for a bunch of search criteria is a pain and difficult to maintain. If you can generate a reasonably fast search query use that.</li>
</ol>
<p>In most of my applications I've used both SP's and ad-hoc sql, though I find I'm using SP's less and less as they end up being code just like C#, only harder to version control, test, and maintain. I would recommend using ad-hoc sql unless you can find a specific reason not to.</p>
http://stackoverflow.com/questions/1907981/increasing-performance-on-data-validation/1908078#1908078Comment by akmad on Increasing performance on data validationakmad2009-12-15T19:16:56Z2009-12-15T19:16:56ZExceptions are expensive compared to what? If the validation procedure is, as you state, complex then the cost of throwing an exception is likely negligible in comparison. If the cost of throwing an exception does meaningfully affect then just return a ValidationResult as you are in TryFirstMethod.http://stackoverflow.com/questions/1766098/i-want-to-make-a-function-or-macro-that-will-return-the-current-code-location-in/1766455#1766455Comment by akmad on i want to make a function or macro that will return the current code location in the format of namespace.class.function()akmad2009-11-19T21:01:41Z2009-11-19T21:01:41ZThis is definitely the easiest way to get the StackTrace; but note that it'll be pretty slow. Make sure you don't over use this!http://stackoverflow.com/questions/1709075/database-design-exposing-primary-key/1709165#1709165Comment by akmad on Database design - exposing Primary Key akmad2009-11-10T16:32:09Z2009-11-10T16:32:09Z... and that's why every field in the db should be a varchar. You know, just in case.
I kid, I kid!http://stackoverflow.com/questions/1690207/is-there-a-good-free-graphical-web-config-editorComment by akmad on Is there a good "free" graphical web.config editor?akmad2009-11-06T20:35:40Z2009-11-06T20:35:40ZDoes "free" equal mostly free or really free? I guess I'm asking what's with the quotes.http://stackoverflow.com/questions/1688757/c-windows-application-developer-3rd-party-tools/1688874#1688874Comment by akmad on C# Windows Application Developer - 3rd Party Toolsakmad2009-11-06T17:00:56Z2009-11-06T17:00:56ZIndeed sir, you undoubtedly are.http://stackoverflow.com/questions/1688757/c-windows-application-developer-3rd-party-tools/1688786#1688786Comment by akmad on C# Windows Application Developer - 3rd Party Toolsakmad2009-11-06T16:51:48Z2009-11-06T16:51:48Z@philip haha... I was thinking the same thing.http://stackoverflow.com/questions/1082532/how-to-tryparse-for-enum-valueComment by akmad on How to TryParse for Enum value?akmad2009-09-24T15:09:06Z2009-09-24T15:09:06Z@Amby, the cost of simply entering a try/catch block is negligible. The cost of THROWING an exception isn't, but then that's supposed to be exceptional, no?
Also, don't say "we never know"... profile the code and find out. Don't waste your time wondering if something is slow, FIND OUT!http://stackoverflow.com/questions/1308723/asp-net-is-my-path-virtual/1308733#1308733Comment by akmad on asp.net - Is my path virtual?akmad2009-08-20T21:04:03Z2009-08-20T21:04:03ZLike you said, this is mostly a problem of terminology. You are using "virtual" but a more correct term would be "relative". Any path that doesn't have an absolute path (ie C:\Folder\file.txt) would therefore have to be relative to the current directory.http://stackoverflow.com/questions/1302424/uploading-files-in-wcf-services-approaches/1302541#1302541Comment by akmad on Uploading files in WCF services approaches akmad2009-08-20T18:11:01Z2009-08-20T18:11:01ZYou are correct about only being able to use a single parameter when passing a stream, however you can get around that by using the [MessageHeader(MustUnderstand = true)] attribute on a message type field. See <a href="http://kjellsj.blogspot.com/2007/02/wcf-streaming-upload-files-over-http.html" rel="nofollow">kjellsj.blogspot.com/2007/02/…</a> for an example.
http://stackoverflow.com/questions/1305988/c-hierarchical-iteration-works-differently/1306024#1306024Comment by akmad on C#-Hierarchical Iteration works differentlyakmad2009-08-20T13:15:29Z2009-08-20T13:15:29Z@Jon... oops, thanks for the info! @Greg... didn't know that either, I've always just implemented the interface. However, I think that just creating a method with a compatible signature is not clear and is something I would definitely flag in a code review. Nice to know it's there though! http://stackoverflow.com/questions/1305988/c-hierarchical-iteration-works-differently/1306004#1306004Comment by akmad on C#-Hierarchical Iteration works differentlyakmad2009-08-20T12:57:31Z2009-08-20T12:57:31ZWhile I totally agree with your advice to not use prefixes, that seems a little orthogonal to the question at hand.http://stackoverflow.com/questions/1296375/a-net-custom-attribute-to-perform-impersonation/1296428#1296428Comment by akmad on A .NET custom attribute to perform impersonation?akmad2009-08-19T21:17:57Z2009-08-19T21:17:57ZYou're welcome! I didn't put it in the example, but make sure you wrap your 'op' call in a try finally block and dispose the WindowsIdentity and WindowsImpersonationContext objects.http://stackoverflow.com/questions/1300647/c-generics-string-array-processing/1300671#1300671Comment by akmad on C# - Generics- string array processingakmad2009-08-19T15:26:46Z2009-08-19T15:26:46ZNice! There is so many nice new methods that came along to support LINQ.http://stackoverflow.com/questions/1299743/is-there-a-code-generation-tool-that-accepts-excel-files-as-inputComment by akmad on Is there a code generation tool that accepts Excel files as input?akmad2009-08-19T13:12:33Z2009-08-19T13:12:33ZI have no input on the question... but having a excel file that "contains definitions of functions that need to be generated in C#" seems like something you'd read about on thedailywtf.com. Eek!http://stackoverflow.com/questions/98080/what-is-the-best-logging-solution-for-a-c-net-3-5-project/98093#98093Comment by akmad on What is the best logging solution for a C# .NET 3.5 projectakmad2009-08-17T18:42:11Z2009-08-17T18:42:11ZI think the problem that people are eluding to is the definitive nature of the response with absolutely no discussion as to why. IMO the "answer" to this type of question should be a well-rounded discussion of the alternatives out there, along with the relative merits of each.
Remember that this is not just for you, but also for other people who may ask this question in the future.