User Andy S - Stack Overflowmost recent 30 from stackoverflow.com2009-12-22T18:24:29Zhttp://stackoverflow.com/feeds/user/3759http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1817799/c-queue-and-multithreading/1818026#18180260Answer by Andy S for C# - Queue and multithreadingAndy S2009-11-30T05:48:23Z2009-11-30T05:48:23Z<p>As others have said, you'd probably be best served using MSMQ. I'd take it step further and encourage you to write your service using WCF and deploy it to IIS. It's not exactly easy, but Microsoft has already done so much of the work that you'd like to do.</p>
<p>Tom Hollander has a great series of articles on setting up MSMQ, WCF and IIS here:</p>
<p><a href="http://blogs.msdn.com/tomholl/archive/2008/07/12/msmq-wcf-and-iis-getting-them-to-play-nice-part-1.aspx" rel="nofollow">http://blogs.msdn.com/tomholl/archive/2008/07/12/msmq-wcf-and-iis-getting-them-to-play-nice-part-1.aspx</a></p>
http://stackoverflow.com/questions/1580635/c-html-css-selector/1763833#17638332Answer by Andy S for C# html/css selectorAndy S2009-11-19T14:53:37Z2009-11-19T14:53:37Z<p><a href="http://code.google.com/p/fizzler/" rel="nofollow">Fizzler</a> is exactly what you're looking for...</p>
http://stackoverflow.com/questions/1716939/should-i-recompile-the-libraries-for-net-4-0/1717044#17170440Answer by Andy S for Should I recompile the libraries for .NET 4.0?Andy S2009-11-11T18:06:46Z2009-11-11T18:06:46Z<p>It depends. I'd say if you don't have a lot of external dependencies, go for it. Just be aware that your customers will need to have .NET 4 on their systems. That might not be a big deal if you're selling software, but if you're deploying to an internal enterprise, you'll need buy in from IT staff. </p>
<p>If you do have a lot of external dependencies (O/RM, IoC container, logging, etc.) and those dependencies are not compiled for .NET 4, you'll end up with multiple versions of the CLR loaded in your app. You might want to profile your app and see how it performs before making the leap.</p>
http://stackoverflow.com/questions/1705201/how-to-open-ie-with-post-info-in-csharp/1705226#17052262Answer by Andy S for How to open IE with post info in CSharp?Andy S2009-11-10T02:06:21Z2009-11-10T02:15:45Z<p>Drop a web browser on your form. It should have a default name of "webBrowser1" - you can change that if you like. Set the "Visible" property to "False". Double-click the form title bar to auto generate a load event in the code. </p>
<p>Call the Navigate method, which has this signature:</p>
<pre><code>void Navigate(string urlString, string targetFrameName, byte[] postData, string additionalHeaders);
</code></pre>
<p>Like this:</p>
<pre><code>private void Form1_Load(object sender, EventArgs e)
{
webBrowser1.Navigate("http://www.google.com/", "_blank", Encoding.Default.GetBytes("THIS IS SOME POST DATA"), "");
}
</code></pre>
<p>You can pass any array of bytes you want in there... Encoding.Default.GetBytes() is just a fast way to pass a string through. </p>
<p>The trick is to use "_blank" for the target frame.</p>
http://stackoverflow.com/questions/1665533/communicate-between-two-windows-forms-in-c/1665545#16655450Answer by Andy S for Communicate between two windows forms in C#Andy S2009-11-03T06:13:32Z2009-11-03T06:13:32Z<p>You might try <a href="http://www.codeplex.com/AutoMapper" rel="nofollow">AutoMapper</a>. Keep your options in a separate class and then use AutoMapper to shuttle the data between the class and the form.</p>
http://stackoverflow.com/questions/1662309/good-examples-of-mvvm-template/1662527#16625271Answer by Andy S for Good examples of MVVM TemplateAndy S2009-11-02T17:14:04Z2009-11-02T17:14:04Z<p>Have you looked at <a href="http://www.codeplex.com/caliburn" rel="nofollow">Caliburn</a>? The ContactManager sample has a lot of good stuff in it. The generic WPF samples also provide a good overview of commands. The documentation is fairly good and the forums are active. Recommended!</p>
http://stackoverflow.com/questions/1540281/c-a-problem-with-mythread-and-the-timer-control/1540542#15405421Answer by Andy S for [C#] A problem with MyThread and the Timer ControlAndy S2009-10-08T21:16:21Z2009-10-08T21:16:21Z<p>Only the main thread can update the UI. Assuming you have your clock initialized correctly (as others have pointed out) and that "clock_Tick" is being invoked from your 2nd thread, you need to rewrite it like this:</p>
<pre><code>private void clock_Tick(object sender, EventArgs e)
{
// InvokeRequired will be true on every thread EXCEPT the UI thread
if (label6.InvokeRequired)
{
// Issue an asynchoronous request to the UI thread to perform the update
label6.BeginInvoke(new MethodInvoker(this.clock_Tick), sender, e);
}
else
{
// Actually do the update
label6.Text = ByteCount.ToString() + " B/s";
}
}
</code></pre>
<p>That's for WinForms.. the WPF syntax is slightly different, but functionally the same.</p>
<p>Here's an article on the whole affair: <a href="http://weblogs.asp.net/justin%5Frogers/pages/126345.aspx" rel="nofollow">http://weblogs.asp.net/justin%5Frogers/pages/126345.aspx</a></p>
<p>Good luck!</p>
http://stackoverflow.com/questions/42251/whither-managed-extensibility-framework-for-net10Whither Managed Extensibility Framework for .NET?Andy S2008-09-03T18:19:10Z2009-07-17T00:31:25Z
<p>Has anyone worked much with Microsoft's Managed Extensibility Framework (MEF)? Kinda sounds like it's trying to be all things to all people - It's an add-in manager! It's duck typing! I'm wondering if anyone has an experience with it, positive or negative.</p>
<p>We're currently planning on using an generic IoC implementation ala MvcContrib for our next big project. Should we throw MEF in the mix?</p>
http://stackoverflow.com/questions/164342/should-repositories-implement-iqueryablet6Should repositories implement IQueryable<T>?Andy S2008-10-02T20:13:27Z2009-06-03T09:43:28Z
<p>I'm considering one of two IRepository interfaces, one that is a descendant of IQueryable and one that contains IQueryable. </p>
<p>Like this:</p>
<pre><code>public interface IRepository<T> : IQueryable<T>
{
T Save(T entity);
void Delete(T entity);
}
</code></pre>
<p>Or this:</p>
<pre><code>public interface IRepository<T>
{
T Save(T entity);
void Delete(T entity);
IQueryable<T> Query();
}
</code></pre>
<p>LINQ usage would be:</p>
<pre><code>from dos
in ServiceLocator.Current.GetInstance<IRepository<DomainObject>>()
where dos.Id == id
select dos
</code></pre>
<p>Or...</p>
<pre><code>from dos
in ServiceLocator.Current.GetInstance<IRepository<DomainObject>>().Query
where dos.Id == id
select dos
</code></pre>
<p>I kinda like the first one, but it's problematic to mock. How have other people implemented LINQable, mockable repositories?</p>
http://stackoverflow.com/questions/42251/whither-managed-extensibility-framework-for-net/57884#578845Answer by Andy S for Whither Managed Extensibility Framework for .NET?Andy S2008-09-11T23:14:40Z2009-04-13T01:05:00Z<p>This post refers to the Managed Extensibility Framework Preview 2.</p>
<p>So, I had a run through MEF and wrote up a quick "Hello World", which is presented below. I gotta say it was totally easy to dive into and understand. The catalog system is great and makes extending MEF itself very straight forward. It's trivial to point it at a directory of addin assemblies and let it handle the rest. MEF's heritage ala Prism certainly shows through, but I think it would be odd if it didn't, given that both frameworks are about composition.</p>
<p>I think the thing that sticks in my craw the most is the "magic" of _container.Compose(). If you look in at the HelloMEF class, you'll see that the greetings field is never initialized by any of the code, which just feels funny. I think I prefer the way IoC containers work, where you explicitly ask the container to build an object for you. I wonder if some sort of "Nothing" or "Empty" generic initializer might be in order. i.e.</p>
<pre><code>private IGreetings greetings = CompositionServices.Empty<IGreetings>();
</code></pre>
<p>That at least fills the object with "something" until such time as the container composition code runs to fill it with a real "something". I don't know - it smacks a little bit of Visual Basic's Empty or Nothing keywords, which I always disliked. If anyone else has some thoughts on this, I'd like to hear them. Maybe it's something I just need to get over. It is marked with a big fat [Import] attribute, so it's not like it's a complete mystery or anything. </p>
<p>Controlling object lifetime isn't obvious, but everything is a singleton by default unless you add a [CompositionOptions] attribute to the exported class. That let's you specify either Factory or Singleton. It would be nice to see Pooled added to this list at some point.</p>
<p>I'm not really clear on how the duck typing features work. It seems more like meta-data injection upon object creation rather than duck typing. And it looks like you can only add in one additional duck. But like I said, I'm not really clear on how these feature work just yet. Hopefully I can come back and fill this in later.</p>
<p>I think it would be a good idea to shadow copy the DLLs that are loaded by DirectoryPartCatalog. Right now the DLLs are locked once MEF gets a hold of them. This would also allow you to add a directory watcher and catch updated addins. That would be pretty sweet...</p>
<p>Finally, I'm worried about how trusted the addin DLLs are and how, or if, MEF will behave in a partial trust environment. I suspect applications using MEF will require full trust. It might also be prudent to load the addins up in their own AppDomain. I know it smacks a bit of System.AddIn, but it would allow very clear separation between user addins and system addins.</p>
<p>Okay - enough blathering. Here's Hello World in MEF and C#. Enjoy!</p>
<pre><code>using System;
using System.ComponentModel.Composition;
using System.Reflection;
namespace HelloMEF
{
public interface IGreetings
{
void Hello();
}
[Export(typeof(IGreetings))]
public class Greetings : IGreetings
{
public void Hello()
{
Console.WriteLine("Hello world!");
}
}
class HelloMEF : IDisposable
{
private readonly CompositionContainer _container;
[Import(typeof(IGreetings))]
private IGreetings greetings = null;
public HelloMEF()
{
var catalog = new AggregateCatalog();
catalog.Catalogs.Add(new AssemblyCatalog(Assembly.GetExecutingAssembly()));
_container = new CompositionContainer(catalog);
var batch = new CompositionBatch();
batch.AddPart(this);
container.Compose(batch);
}
public void Run()
{
greetings.Hello();
}
public void Dispose()
{
_container.Dispose();
}
static void Main()
{
using (var helloMef = new HelloMEF())
helloMef.Run();
}
}
}
</code></pre>
http://stackoverflow.com/questions/703364/testing-the-persistence-layer-in-a-ddd-tdd-application2Testing the persistence layer in a DDD/TDD applicationAndy S2009-03-31T22:39:09Z2009-04-09T19:32:55Z
<p>If I have the following domain object:</p>
<pre><code>public class Customer
{
public virtual Guid Id { get; set; }
public virtual string Name { get; set; }
public virtual ISet<Order> Orders { get; set; }
public Customer()
{
Orders = new HashedSet<Order>();
}
public virtual void AddOrder(Order order)
{
order.Customer = this;
Orders.Add(order);
}
}
</code></pre>
<p>with the following NHibernate mapping:</p>
<pre><code><hibernate-mapping xmlns="urn:nhibernate-mapping-2.2" namespace="Examples" assembly="Examples">
<class name="Customer">
<id name="Id">
<generator class="guid.comb" />
</id>
<property name="Name" length="50"/>
<set name="Orders" table="CustomerOrder" cascade="all-delete-orphan" lazy="true">
<key column="CustomerId"/>
<many-to-many class="Order" column="OrderId"/>
</set>
</class>
</hibernate-mapping>
</code></pre>
<p>Is there any value in this test?</p>
<pre><code>[Test]
public Save_NameWritten_SameNameIsReadback()
{
var expected = new Customer { Name = "Fred Quimby" };
_repo.Save(c);
var actual = _repo.Find(expected.Id);
Assert.AreEqual(expected.Name, actual.Name);
}
</code></pre>
<p>Do folks commonly test their persistence layer like this? Making sure that each field is persisted individually? I'm honestly not sure what best practice is for something like this. I can see testing something with long strings and parent/child relationships - but what about integers and dates? Is this overkill?</p>
<p>I'm just talking about the persistence layer here, not the business logic in the domain layer. For that, I would mock the repository, whereas here I'm verifying that the repository actually saved the thing that I told it to save. What if someone forgets to map a field, or they have a bogus string length in the mapping?</p>
<p>Are there any tools to automatically generate these kinds of tests in .NET? Or is that "bad"?</p>
http://stackoverflow.com/questions/169330/simple-way-to-programmatically-get-all-stored-procedures/169410#1694100Answer by Andy S for Simple way to programmatically get all stored proceduresAndy S2008-10-04T00:18:14Z2008-10-04T00:18:14Z<p>I think this is what you're really looking for:</p>
<pre><code>select SPECIFIC_NAME,ROUTINE_DEFINITION from information_schema.routines
</code></pre>
<p>There are a ton of other useful columns in there too...</p>
http://stackoverflow.com/questions/154748/does-the-cost-of-msdn-subscriptions-represent-a-deterrent-to-net-adoption/155001#1550012Answer by Andy S for Does the cost of MSDN Subscriptions represent a deterrent to .NET adoptionAndy S2008-09-30T20:42:27Z2008-09-30T20:42:27Z<p>It's not a barrier to entry, but it certainly represents a glass ceiling. You get a lot of things with the Express editions, but not EVERYTHING. There's a lot of little perks that come with the Pro versions - addins for instance +cough+ Resharper +cough+. I'd say you need Visual Studio 20xx Pro at a minimum to do any mid-range to Enterprise level development.</p>
<p>The cost of MS developer tools was the sole reason behind my Year of Linux. It's tough seeing all the free development tools for Linux, OS X and Java. If my job didn't depend on keeping up to date with .NET, I'd leave it for dead in a heartbeat.</p>
http://stackoverflow.com/questions/17512/computer-language-puns-and-jokes/36619#36619117Answer by Andy S for Computer Language puns and jokesAndy S2008-08-31T03:53:20Z2008-09-21T19:50:53Z<p>Let's not forget this old chestnut...</p>
<p><img src="http://www.evilaliens.com/images/software_engineering_explained.gif" alt="alt text" /></p>
http://stackoverflow.com/questions/61008/what-steps-should-be-necessary-to-optimize-a-poorly-performing-query/61018#610182Answer by Andy S for What steps should be necessary to optimize a poorly performing query?Andy S2008-09-14T00:24:33Z2008-09-14T00:24:33Z<p>Indexes may be a good place to start. The low hanging fruit can be knocked down with the SQL Server Index Tuning Wizard.</p>
http://stackoverflow.com/questions/57804/nhibernate-mappingexception-no-persister-for/57995#5799515Answer by Andy S for NHibernate.MappingException: No persister for: Andy S2008-09-12T00:20:28Z2008-09-12T00:20:28Z<p>Sounds like you forgot to add a mapping assembly to the session factory configuration..</p>
<p>If you're using app.config...</p>
<pre><code>.
.
<property name="show_sql">true</property>
<property name="query.substitutions">true 1, false 0, yes 'Y', no 'N'</property>
<mapping assembly="Project.DomainModel"/> <!-- Here -->
</session-factory>
.
.
</code></pre>
http://stackoverflow.com/questions/57962/whats-your-experience-with-flash-drives/57979#579791Answer by Andy S for What's your experience with Flash drives?Andy S2008-09-12T00:06:18Z2008-09-12T00:06:18Z<p>We used to use them all the time (back when 128MB flash drive was huge) and the only downside was the price. Other than that, they were fantastic. We could upgrade firmware by simply swapping out the card.</p>
http://stackoverflow.com/questions/47533/reading-from-a-socket-in-c/47583#475832Answer by Andy S for Reading from a socket in C#Andy S2008-09-06T15:46:40Z2008-09-06T15:46:40Z<p>Your best bet is probably TcpClient. There's a great sample that does exactly what you're doing right in the .NET Documentation here:</p>
<p><a href="http://msdn.microsoft.com/en-us/library/system.net.sockets.tcpclient.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/system.net.sockets.tcpclient.aspx</a></p>
<p>Good luck to you!</p>
http://stackoverflow.com/questions/36568/automated-builds/36631#366310Answer by Andy S for Automated BuildsAndy S2008-08-31T04:30:10Z2008-08-31T04:30:10Z<p>You might want to consider CI-Factory. It's a continuous integration environment builder that uses CruiseControl.NET and a dozen other tools. There's an excellent screencast here: <a href="http://www.dnrtv.com/default.aspx?showID=64" rel="nofollow">http://www.dnrtv.com/default.aspx?showID=64</a></p>
http://stackoverflow.com/questions/36580/something-other-than-c/36626#366260Answer by Andy S for Something other than C#Andy S2008-08-31T04:07:45Z2008-08-31T04:07:45Z<p>JavaScript - GOOD JavaScript programming is remarkably difficult, even with jQuery, et. al.</p>
<p>F# - Up and coming functional programming language from MS, still uses .NET</p>
<p>Spec# - Contract-based programming with strong static program verification - pretty interesting concepts that may bubble up into .NET later.</p>
<p>WPF - There is a TON to learn about WPF. It's not just about drawing pretty pictures. Especially if you can partner with a designer to add flare.</p>
<p>Good luck!</p>
http://stackoverflow.com/questions/36600/viewing-directx-application-remotely/36615#366152Answer by Andy S for Viewing DirectX application remotelyAndy S2008-08-31T03:39:53Z2008-08-31T03:39:53Z<p>I think you can still use all of the normal D3D tools, but you won't be able to render to a surface associated with the screen. You'll have to render to a DIB (or some such) and Blt it with GDI to a normal window HDC. RDC/VNC/Citrix should all work with this technique.</p>
<p>Performance will definitely suffer - but that's going to be the case over remote desktop anyway. In fact, if I were you, I would mock up a VERY simple prototype and demonstrate the performance before committing to it. </p>
<p>Good luck!</p>
http://stackoverflow.com/questions/687/keyboard-for-programmers/36062#360620Answer by Andy S for Keyboard for programmersAndy S2008-08-30T15:54:02Z2008-08-30T15:54:02Z<p>My three favorites:</p>
<ul>
<li>ORIGINAL Microsoft Natural Keyboard</li>
<li>MacBook Pro Keyboard</li>
<li>Das Keyboard</li>
</ul>
<p>I'm most efficient with the Natural Keyboard. However, I had to use my ThinkPad's keyboard for the first time in a few months and I'm really surprised how much faster I am on the MacBook's keyboard now. I think once you get used to the chording motions with Fn, you can move real fast with it. Also, I love the backlit keys - gorgeous. Das Keyboard for the cool factor - but it's very noisy.</p>
http://stackoverflow.com/questions/1705201/how-to-open-ie-with-post-info-in-csharp/1705241#1705241Comment by Andy S on How to open IE with post info in CSharp?Andy S2009-11-10T02:16:14Z2009-11-10T02:16:14ZThat performs a GET, not a POSThttp://stackoverflow.com/questions/1668719/c-multi-threading-acquire-read-lock-necessaryComment by Andy S on C# multi-threading: Acquire read lock necessary?Andy S2009-11-03T17:12:09Z2009-11-03T17:12:09ZCan you provide a specific example? There are lots of issues around this... Otherwise, "it depends" is the correct answer.http://stackoverflow.com/questions/330395/dns-problem-nslookup-works-ping-doesnt/330409#330409Comment by Andy S on DNS problem, nslookup works, ping doesn'tAndy S2008-12-04T21:09:30Z2008-12-04T21:09:30ZThis was exactly what I was looking for. Thanks!http://stackoverflow.com/questions/164342/should-repositories-implement-iqueryablet/164380#164380Comment by Andy S on Should repositories implement IQueryable<T>?Andy S2008-10-03T20:58:47Z2008-10-03T20:58:47ZThis is what I ended up doing.. Mocking Example 1 is just too painful, with Moq anyway.http://stackoverflow.com/questions/42251/whither-managed-extensibility-framework-for-net/57415#57415Comment by Andy S on Whither Managed Extensibility Framework for .NET?Andy S2008-10-02T16:58:59Z2008-10-02T16:58:59ZMicrosoft has just relicensed MEF under MS-PL - it's wide open now!http://stackoverflow.com/questions/154748/does-the-cost-of-msdn-subscriptions-represent-a-deterrent-to-net-adoption/154832#154832Comment by Andy S on Does the cost of MSDN Subscriptions represent a deterrent to .NET adoptionAndy S2008-09-30T20:43:53Z2008-09-30T20:43:53ZI've got two reasons: VisualSVN and Resharper.http://stackoverflow.com/questions/57804/nhibernate-mappingexception-no-persister-for/57897#57897Comment by Andy S on NHibernate.MappingException: No persister for: Andy S2008-09-12T00:15:48Z2008-09-12T00:15:48ZHow was it fixed?http://stackoverflow.com/questions/42251/whither-managed-extensibility-framework-for-net/57415#57415Comment by Andy S on Whither Managed Extensibility Framework for .NET?Andy S2008-09-11T23:24:46Z2008-09-11T23:24:46ZYeah, I saw that. I would like to see MS open up the license a bit more. For us, it won't matter because we're a giant Windows shop - but it's certainly important many people out there.