User Alex Marshall - Stack Overflowmost recent 30 from stackoverflow.com2009-12-18T12:48:08Zhttp://stackoverflow.com/feeds/user/32232http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1904483/experience-with-validationaspects-for-c-and-wpf0Experience with ValidationAspects for C# and WPFAlex Marshall2009-12-15T00:24:40Z2009-12-15T00:24:40Z
<p>I've downloaded the examples for the ValidationAspects library from CodePlex.com, but the samples flat out don't work. Nothing gets updated and changed to indicate errors on the forms in the samples. Has anybody had experience with the library ? Am I just missing something simple that I need to add / remove / reconfigure ?</p>
http://stackoverflow.com/questions/1889979/borders-with-captions-in-wpf1Borders with captions in WPFAlex Marshall2009-12-11T18:26:25Z2009-12-11T18:29:56Z
<p>Does anybody know how to get a border in WPF with a caption, i.e. the way web browsers display <fieldset> tags ? Is there an easy way, like setting a property, or am I going to have to make a ControlTemplate ?</p>
http://stackoverflow.com/questions/715065/how-to-configure-ireport-3-5-for-jasperreports-compatibility-with-lower-versions0How to configure iReport 3.5 for JasperReports compatibility with lower versions ?Alex Marshall2009-04-03T18:16:28Z2009-12-09T15:57:09Z
<p>Hello,</p>
<p>Could somebody please tell me how I can configure iReport 3.5 (nb) to use "compatibility mode" and generate report XML for lower versions of JasperReports, ie JasperReports 1.x syntax ? iReport 3.0 had this feature, and now I can't seem to find it in 3.5. Thank you kindly for any responses.</p>
http://stackoverflow.com/questions/1809569/reflectively-determining-if-a-member-type-is-a-number-in-c-1Reflectively determining if a member type is a number in C# [closed]Alex Marshall2009-11-27T16:12:19Z2009-11-27T16:23:08Z
<blockquote>
<p><strong>Possible Duplicate:</strong><br>
<a href="http://stackoverflow.com/questions/1749966/c-how-to-determine-whether-a-type-is-a-number">C# - how to determine whether a Type is a number </a> </p>
</blockquote>
<p>Are there any convenience methods for determining if a Type is the type of a number in C# ? I know that in Java, you could just use something like :</p>
<pre><code>Double myNum = 0.0;
if (Number.class.isAssignableFrom(myNum.getClass()))
{
doStuff();
}
</code></pre>
<p>... but is there a counterpart in C# ? This is made more difficult by the fact that C# has no common Number hierarchy like Java.</p>
http://stackoverflow.com/questions/292437/determine-if-a-reflected-type-can-be-cast-to-another-reflected-type/1809539#18095390Answer by Alex Marshall for Determine if a reflected type can be cast to another reflected typeAlex Marshall2009-11-27T16:06:27Z2009-11-27T16:06:27Z<p>To directly answer your question ...</p>
<blockquote>
<p>If you have two types discovered through reflection is it possible to determine if one can be cast to the other? (implicit and/or explicit)</p>
</blockquote>
<p>... you can use something similar to this :</p>
<pre><code>to.GetType().IsAssignableFrom(from.GetType());
</code></pre>
<p>The Type.IsAssignableFrom() method can be used for exactly your purpose. This would also be considerably less verbose (even if only marginally more performant) than using TypeConverters.</p>
http://stackoverflow.com/questions/1800188/preventing-wpf-treeviews-gotfocus-event-from-bubbling-up-the-tree0Preventing WPF TreeView's GotFocus event from bubbling up the treeAlex Marshall2009-11-25T21:47:07Z2009-11-25T22:30:41Z
<p>I'm trying to write an event handler that fires every time a node in a TreeView gets the focus. The problem I'm running into is that the event handler fires on the TreeViewItem (node) that I click on with the mouse, and then it continues to bubble up the control tree, even though I've set e.Handled = true on the RoutedEventArgs provided to the handler. Does anybody have an idea what the problem could be ? I've double checked my code and I can see no reason why this should be happening.</p>
http://stackoverflow.com/questions/1793109/using-hashsets-with-observablecollection-with-wpf0Using HashSets with ObservableCollection with WPFAlex Marshall2009-11-24T21:42:09Z2009-11-24T23:29:29Z
<p>Hello,</p>
<p>I'm using a ListBox to maintain a list of items in a WPF application. The ListBox data source is a HashSet wrapped in an ObservableCollection. ie, I have the following code :</p>
<pre><code>this.shackSet = new ObservableCollection<Shack>(new HashSet<Shack>());
this.shackListing.ItemsSource = this.shackSet;
</code></pre>
<p>... where shackListing is a ListBox control, and shackSet in an ICollection. However, whenever I add anything to shackSet after the addition of the first item, I see multiple items in the ListBox. ie It's like newly added items are getting added to the list regardless of whether they're added to the set. When I look at the signatures of ICollection#Add :</p>
<pre><code>void Add(T obj);
</code></pre>
<p>... and HashSet#Add :</p>
<pre><code>bool Add(T obj);
</code></pre>
<p>... this leads me to believe there's a bug that affects wrapped HashSets where newly added items get added to the ListBox regardless because the ObservableCollection has no way of telling whether the object was actually added to the underlaying collection because the return type of ICollection#Add is void. Can anybody else confirm this ?</p>
http://stackoverflow.com/questions/1792129/multithreaded-access-to-the-wpf-gui-in-c1Multithreaded access to the WPF GUI in C#Alex Marshall2009-11-24T18:52:26Z2009-11-24T19:23:17Z
<p>Hello,</p>
<p>I'm trying to create a custom, in-house application that is going to access other internal systems which broadcast their names and IP addresses via UDP. I'm trying to create a multi-threaded dialog that polls for UDP messages every 500 ms for 15 seconds, parses the UDP messages and then adds the names of the detected systems to a ListBox in the dialog, updating it in real time. I've already got the UDP scanning code tested and done, the only problem is updating the ListBox across threads. Any time I try to access the ListBox's Items or ItemSource properties, I get a System.InvalidOperationException : "The calling thread cannot access this object because a different thread owns it." </p>
<p>The relevant stack trace portion:</p>
<pre><code> at System.Windows.Threading.Dispatcher.VerifyAccess()
at System.Windows.DependencyObject.SetValue(DependencyProperty dp, Object value)
at System.Windows.Controls.ItemsControl.set_ItemsSource(IEnumerable value)
</code></pre>
<p>This occurs regardless of whether I'm using an ObservableCollection (I know, has nothing to do with the collection type), a HashSet or any other object. Can anybody help me with accessing the GUI across different threads ?</p>
http://stackoverflow.com/questions/1751989/c-lazy-regular-expression-matching0C# Lazy Regular Expression MatchingAlex Marshall2009-11-17T21:35:23Z2009-11-22T09:00:22Z
<p>I have a bunch of files that need to be parsed, and they all have one of two date patterns in the file name (we're upgrading our system, and we need to have the file parser be able to recognize both date formats, new and old).</p>
<p>The filenames look like either <code><fileroot>_yyyyMMdd.log</code> or <code><fileroot>_MMddyy.log</code>, and I need to be able to parse out the numbers to parse the dates, however, whenever I try to use a regular expression like <code>^.*(\\d{6,8}).*$</code> or <code>^.*(\\d{6}|\\d{8}).*$</code> to parse out the numbers of the date, the capture group is always 6 characters in length, even for the file names that are 8 digits.</p>
<p>Is there any way to force the regular expression library in C# to be as exhaustive as possible in trying to match a regular expression? I know how to do it in Java, just not C# / .NET, I'm pretty new at the language.</p>
http://stackoverflow.com/questions/314578/need-an-example-of-a-primary-key-onetoone-mapping-in-hibernate1Need an example of a primary-key @OneToOne mapping in HibernateAlex Marshall2008-11-24T16:01:14Z2009-11-18T08:56:55Z
<p>Can somebody please give me an example of a unidirectional @OneToOne primary-key mapping in Hibernate ? I've tried numerous combinations, and so far the best thing I've gotten is this :</p>
<pre><code>@Entity
@Table(name = "paper_cheque_stop_metadata")
@org.hibernate.annotations.Entity(mutable = false)
public class PaperChequeStopMetadata implements Serializable, SecurityEventAware {
private static final long serialVersionUID = 1L;
@Id
@JoinColumn(name = "paper_cheque_id")
@OneToOne(cascade = {}, fetch = FetchType.EAGER, optional = false, targetEntity = PaperCheque.class)
private PaperCheque paperCheque;
}
</code></pre>
<p>Whenever Hibernate tries to automatically generate the schema for the above mapping, it tries to create the primary key as a blob, instead of as a long, which is the id type of PaperCheque. Can somebody please help me ? If I can't get an exact solution, something close would do, but I'd appreciate any response.</p>
http://stackoverflow.com/questions/1732813/best-practices-for-subversion-and-visual-studio-projects3Best practices for Subversion and Visual Studio projectsAlex Marshall2009-11-14T00:47:35Z2009-11-14T05:48:10Z
<p>I've recently started working on various C# projects in Visual Studio as part of a plan for a large scale system that will be used to replace our current system that's built from a cobbling-together of various programs and scripts written in C and Perl. The projects I'm now working on have reached critical mass for being committed to subversion. I was wondering what should and should not be committed to the repository for Visual Studio projects. I know that it's going to generate various files that are just build-artifacts and don't really need to be committed, and I was wondering if anybody had any advice for properly using SVN with Visual Studio. At the moment, I'm using an SVN 1.6 server with Visual Studio 2010 beta. Any advice, opinions are welcome.</p>
http://stackoverflow.com/questions/1710902/unmodifiable-lists-in-c1Unmodifiable lists in C#Alex Marshall2009-11-10T20:17:57Z2009-11-10T20:29:17Z
<p>In Java, one can use the Collections#unmodifiableList() method to create an unmodifiable list from an existing List object. Is there any counterpart in C# ? I'm new to the language and haven't been able to find anything like this in the MSDN docs.</p>
http://stackoverflow.com/questions/1674215/parsing-unix-time-in-c1Parsing unix time in C#Alex Marshall2009-11-04T14:46:49Z2009-11-04T15:00:25Z
<p>Is there a way to quickly / easily parse Unix time in C# ? I'm brand new at the language, so if this is a painfully obvious question, I apologize. IE I have a string in the format [seconds since Epoch].[milliseconds]. Is there an equivalent to Java's SimpleDateFormat in C# ?</p>
http://stackoverflow.com/questions/1435047/migrate-from-subversion-1-4-to-1-64Migrate from Subversion 1.4 to 1.6Alex Marshall2009-09-16T19:39:06Z2009-10-23T19:20:34Z
<p>Hello,</p>
<p>Can somebody please point me in the right direction for migrating a Subversion 1.4 repository to Subversion 1.6 on a different server ? I'd appreciate any help I can get, I'm not having much luck googling this.</p>
http://stackoverflow.com/questions/1435516/eclipse-compare-menu-options-are-all-disabled1Eclipse 'Compare' menu options are all disabledAlex Marshall2009-09-16T21:15:38Z2009-10-23T19:19:59Z
<p>Hello,</p>
<p>I recently upgraded my Subversion repository to version 1.6 and I'm connecting to it with Eclipse. However, when I check out a project branch and try to compare it with a different revision, (or any other circumstances for that matter) all of the options for comparison are disabled except for comparing with the base revision of the current working copy.</p>
<p>Has anybody else encountered this, or possibly even found a solution ?</p>
http://stackoverflow.com/questions/1588790/best-practices-tips-for-storing-html-tags-in-resource-files/1588839#15888390Answer by Alex Marshall for best practices / tips for storing html tags in resource filesAlex Marshall2009-10-19T14:01:26Z2009-10-19T14:01:26Z<p>If you want to have certain portions bolded or decorated in some other way, you could store them as Markdown strings in your resource file and then apply Markdown to them when rendering the page. In fact, this very site uses the markdown library to great success doing exactly this. That way you wouldn't have to worry about storing HTML in your resource files, and your strings would still be readable if you ever have to use them outside of HTML.</p>
http://stackoverflow.com/questions/1572232/spring-security-securitycontext-authentication-null-in-taglib-and-jsp-but-ok-in/1572759#15727590Answer by Alex Marshall for Spring security - SecurityContext.authentication null in taglib and jsp but ok in controllerAlex Marshall2009-10-15T14:33:45Z2009-10-15T14:33:45Z<p>This may seem like an obvious question, but have you forced the user to log in (ie authenticate) at any point prior to them accessing the page /myaccount.htm ? I didn't see any mappings to a login page requiring anonymous access in your object definition source which is why I ask. If the user can access /myaccount.htm without authenticating, then no principal would have been created in the security context by the time they've accessed the page, hence your NullPointerException. Also, are you using form based authentication ? HTTP BASIC authentication ? Some other type supported by Acegi ?</p>
http://stackoverflow.com/questions/1559860/update-site-creation-automation/1562206#15622060Answer by Alex Marshall for Update Site Creation AutomationAlex Marshall2009-10-13T18:47:46Z2009-10-13T18:47:46Z<p>You may want to try using Maven 2 with a plugin for this sort of thing. It sounds to me like a plugin for exactly this sort of thing should already exist. If not, you could create a maven plugin yourself. There's instructions and documentation on the Apache Maven website for how to do this. I should warn you that, having made a couple Maven plugins myself, you should be prepared to spend at least 5 or 6 hours learning how to write the plugin, and then actually writing it. Alternatively, if you're using ant, you could write an Ant Task to do the same job, or plugin for whichever other build system you may be using.</p>
http://stackoverflow.com/questions/1505164/difficult-temporal-cross-table-database-constraint/1533571#15335711Answer by Alex Marshall for Difficult Temporal Cross-Table Database ConstraintAlex Marshall2009-10-07T19:10:58Z2009-10-07T19:10:58Z<p>Why not just have a 'Locked' column that's a boolean (or single char, 'y', 'n' for example) and tweak your update query to use a subquery :</p>
<pre><code>INSERT INTO Fees (InvoiceID, Amount) VALUES ((SELECT InvoiceID FROM Invoices WHERE InvoiceID = 3 AND NOT Locked), 13.37);
</code></pre>
<p>Assuming you have a not-null constraint on the InvoiceID column, the insertion will fail when the invoice is locked. You can handle the exception in your code and thus prevent fee additions when the invoice is locked. You'll also avoid having to write and maintain complicated triggers and stored procedures as well.</p>
<p>PS. The insertion query above uses MySQL syntax, I'm afraid I'm not that familiar with SQL Server's TQL variant.</p>
http://stackoverflow.com/questions/1511855/reproduce-com-mysql-jdbc-exceptions-jdbc4-communicationsexception-with-a-setup-of/1533460#15334600Answer by Alex Marshall for Reproduce com.mysql.jdbc.exceptions.jdbc4.CommunicationsException with a setup of Spring, hibernate and C3P0Alex Marshall2009-10-07T18:45:46Z2009-10-07T18:45:46Z<p>To reproduce your error, set your connection timeout in your MySQL properties to a very low value, ie 2 ms, and run a query known to have a long processing time. You can set the timeout property either in the MySQL connection string or via a property if you're using properties files to setup your JDBC connection. You can look up the Javadocs on your specific jaxax.sql.DataSource connection and the MySQL docs for the specifics on how to do this.</p>
http://stackoverflow.com/questions/1531765/spring-component-scan-for-classes/1533402#15334020Answer by Alex Marshall for spring component scan for classesAlex Marshall2009-10-07T18:36:23Z2009-10-07T18:36:23Z<p>Probably the best way for you to implement this would be to write your own implementation of the Spring FactoryBean interface, and do all the introspection / reflection and scanning in that implementation to generate the end bean that you want put in the Spring applicationContext.</p>
http://stackoverflow.com/questions/1508967/spring-jsr303-validation-doesnt-work-like-described-in-spring-documentation/1511180#15111802Answer by Alex Marshall for Spring JSR303 validation doesn't work like described in Spring DocumentationAlex Marshall2009-10-02T18:42:58Z2009-10-02T18:42:58Z<p>If you look at the <a href="http://static.springsource.org/spring/docs/3.0.0.RC1/javadoc-api/org/springframework/web/bind/support/ConfigurableWebBindingInitializer.html" rel="nofollow">Javadocs for ConfigurableWebBindingInitializer</a>, its property 'validator' is of type 'org.springframework.validation.Validator'. If you then look at the
<a href="http://static.springsource.org/spring/docs/3.0.0.RC1/javadoc-api/index.html?org/springframework/web/bind/support/ConfigurableWebBindingInitializer.html" rel="nofollow">Javadocs for LocalValidatorFactoryBean</a>, you'll see that it actually implements neither FactoryBean (to create an org.springframework.validation.Validator) nor does it implement org.springframework.validation.Validator itself, so the bean you're giving the 'validator' property of ConfigurableWebBindingInitializer is of the wrong type, as indicated by the error. I suspect this is a (gross?) oversight on the part of the Spring developers, and you should create an issue for this in their JIRA issue tracker at jira.springframework.org</p>
http://stackoverflow.com/questions/1509757/injecting-log4j-loggers-with-spring/1511137#15111372Answer by Alex Marshall for Injecting Log4J loggers with SpringAlex Marshall2009-10-02T18:33:00Z2009-10-02T18:33:00Z<p>In your services-context.xml file, try setting the "logName" property of the "myLog" bean to "com.bla.database". This <em>should</em> match up with the name of the logger defined in your log4j.xml configuration file.</p>
http://stackoverflow.com/questions/1505393/java-web-services-is-axis-necessary/1505540#15055401Answer by Alex Marshall for Java Web Services - Is Axis Necessary?Alex Marshall2009-10-01T18:09:15Z2009-10-01T18:09:15Z<p>As an alternative to Axis, you can use the <a href="http://static.springsource.org/spring-ws/sites/1.5/" rel="nofollow">Spring WebServices</a> framework to run your webservices application within a J2EE container like Tomcat or anything similar. I've found it very easy to use and setup, and if you want to integrate your webservices into another web application later, it's quite easy to do (I've done so myself on two separate occasions).</p>
http://stackoverflow.com/questions/1130944/too-many-open-files-on-tomcat-keystore0"Too many open files" on Tomcat KeystoreAlex Marshall2009-07-15T11:53:53Z2009-09-30T16:00:04Z
<p>Hello,</p>
<p>I've recently started getting an error on our Tomcat servers : "Too Many Open Files" and the error goes on to reference the keystore file used for the server's SSL connector. Does anybody have any idea where this could be coming from ? Our server receives a considerable number of connections, but if I push the maximum acceptable connections past 150, the server won't even start (for whatever reason). Is there any way to get Tomcat to cache the keystore in memory so that connections don't have to read from the file repeatedly ? </p>
http://stackoverflow.com/questions/1493613/best-method-of-triggering-a-shell-script-from-java/1493648#14936480Answer by Alex Marshall for Best method of triggering a shell script from JavaAlex Marshall2009-09-29T16:32:16Z2009-09-29T16:32:16Z<p>For the second option, you can use a servlet, and after you've responded to the HTTP request, you can use java.lang.Runtime.exec() to execute your script. I'd also recommend that you look here : <a href="http://www.javaworld.com/javaworld/jw-12-2000/jw-1229-traps.html" rel="nofollow">http://www.javaworld.com/javaworld/jw-12-2000/jw-1229-traps.html</a></p>
<p>... for some of the problems and pitfalls of using it.</p>
http://stackoverflow.com/questions/1478595/overriding-build-rules-in-make0Overriding build rules in makeAlex Marshall2009-09-25T17:27:34Z2009-09-26T15:16:31Z
<p>I'm using a Makefile to build an embedded project. I've inherited the project from numerous previous developers who haven't been using Make to its full potential, and I'd like to be able to specify the project version in the makefile using defines on the build command. However, there's already a build rule that builds all the object (.o) files. Is there any way to override that build rule for a specific object file so that I can add -D flags to the compiler ?</p>
<p>Another reason I'd like to be able to specify the project version in the makefile is so that I can have it generate artifacts with the build version in the names of the resulting files produced by the build process.</p>
http://stackoverflow.com/questions/1479837/java-need-help-with-this/1479856#14798560Answer by Alex Marshall for Java - Need help with this.Alex Marshall2009-09-25T22:36:41Z2009-09-25T22:36:41Z<p>It's because the System.out.println() method adds a newline character to everything it prints out. If you want the prompt for input to remain on the same line, use System.out.print() (notice that's the print() method, not println()) which does <em>not</em> add a newline to what it sends to standard out. System.out is a static java.io.PrintStream object. You can read the Javadocs on it to help you out here : <a href="http://java.sun.com/javase/6/docs/api/java/io/PrintStream.html" rel="nofollow">http://java.sun.com/javase/6/docs/api/java/io/PrintStream.html</a></p>
http://stackoverflow.com/questions/1473408/how-to-load-access-a-bean-resource-in-a-custom-velocity-tool/1479836#14798360Answer by Alex Marshall for How to load/access a bean (@Resource) in a custom Velocity toolAlex Marshall2009-09-25T22:28:05Z2009-09-25T22:28:05Z<p>What I've done is in the code where I render the Velocity template, I retrieve the message source from the applicationContext using applicationContext.getBean("messageSource") and then I put that MessageSource directly into the the VelocityContext that I use to render my templates under the key "messageSource" :</p>
<pre><code>VelocityContext velocityContext = new VelocityContext();
velocityContext.put("messageSource", applicationContext.getBean("messageSource"));
</code></pre>
<p>Then, anytime I want to render a message key, say in an HTML email, it looks something like :</p>
<pre><code><td>messageSource.getMessage("my.message.key", null, $locale)</td>
</code></pre>
<p>where $locale is a java.util.Locale object that I've also manually placed in the VelocityContext. If I ever need any arguments to the message, then I use the list tool I've put in the context to get an array from the list of arguments I'll typically create right there in the template. As a side note, you can use the helper methods in the
org.springframework.ui.velocity.VelocityEngineUtils class to help you out with rendering Velocity templates in your controllers or webflow code, or wherever else you may be rendering templates.</p>
http://stackoverflow.com/questions/1479020/save-the-document-generated-by-javascript/1479041#14790410Answer by Alex Marshall for Save the document generated by javascript.Alex Marshall2009-09-25T19:05:24Z2009-09-25T19:05:24Z<p>Is your javascript AJAX which fetches the document.writeln() content from the server, or are you already generating that content when the page is served to the user ? Because if it's the former, I see no reason why you can't save any variables / queries in the session of whatever server-side technology your using and then just generate the plain text stuff from those. Otherwise, you'll have to folow voyager's suggestion above.</p>
http://stackoverflow.com/questions/1889979/borders-with-captions-in-wpf/1889994#1889994Comment by Alex Marshall on Borders with captions in WPFAlex Marshall2009-12-11T19:29:36Z2009-12-11T19:29:36ZThat did the trick, thank you very muchhttp://stackoverflow.com/questions/1809569/reflectively-determining-if-a-member-type-is-a-number-in-cComment by Alex Marshall on Reflectively determining if a member type is a number in C#Alex Marshall2009-11-27T19:25:35Z2009-11-27T19:25:35ZBecause I need to implement my own type converters that will use string formats to format the values into strings, because I need to have numbers and dates in a particular, company-standard format.http://stackoverflow.com/questions/1809569/reflectively-determining-if-a-member-type-is-a-number-in-cComment by Alex Marshall on Reflectively determining if a member type is a number in C#Alex Marshall2009-11-27T16:56:05Z2009-11-27T16:56:05ZI'm implementing a generic type exporter that will export objects to Excel by reading attributes on properties and converting the properties of those objects into strings using a string format provided by the attributes.http://stackoverflow.com/questions/1800188/preventing-wpf-treeviews-gotfocus-event-from-bubbling-up-the-tree/1800372#1800372Comment by Alex Marshall on Preventing WPF TreeView's GotFocus event from bubbling up the treeAlex Marshall2009-11-25T22:58:45Z2009-11-25T22:58:45ZI was using focus when I should have been using selected, but I'm still curious : why was the focus event bubbling up even though I had marked the RoutedEventArgs as handled ?http://stackoverflow.com/questions/1793109/using-hashsets-with-observablecollection-with-wpf/1793642#1793642Comment by Alex Marshall on Using HashSets with ObservableCollection with WPFAlex Marshall2009-11-25T01:23:23Z2009-11-25T01:23:23ZDoes Microsoft have any mechanism for submitting feature requests ? It seems to me that an Observable(Hash)Set is something that should already be in the .NET framework.http://stackoverflow.com/questions/1792129/multithreaded-access-to-the-wpf-gui-in-c/1792156#1792156Comment by Alex Marshall on Multithreaded access to the WPF GUI in C#Alex Marshall2009-11-24T19:52:48Z2009-11-24T19:52:48ZWow, that was an amazingly useful answer, and it did the trick. Thank you so much. I'd up-vote your answer a dozen more times if I could.http://stackoverflow.com/questions/1751989/c-lazy-regular-expression-matching/1752098#1752098Comment by Alex Marshall on C# Lazy Regular Expression MatchingAlex Marshall2009-11-17T21:55:24Z2009-11-17T21:55:24Z#1 did the trick, thank you very much for your help.http://stackoverflow.com/questions/1751989/c-lazy-regular-expression-matching/1752034#1752034Comment by Alex Marshall on C# Lazy Regular Expression MatchingAlex Marshall2009-11-17T21:51:48Z2009-11-17T21:51:48ZTried it, doesn't work. The (apparently default) lazy matching of the .NET regex engine gets '091117' when compared against fileroot_20091117.log using that regex.http://stackoverflow.com/questions/1710902/unmodifiable-lists-in-c/1710910#1710910Comment by Alex Marshall on Unmodifiable lists in C#Alex Marshall2009-11-10T20:22:19Z2009-11-10T20:22:19ZExactly what I'm looking for, thank you. I guess I haven't gotten used to how to search the MSDN site yet.http://stackoverflow.com/questions/1572232/spring-security-securitycontext-authentication-null-in-taglib-and-jsp-but-ok-in/1572829#1572829Comment by Alex Marshall on Spring security - SecurityContext.authentication null in taglib and jsp but ok in controllerAlex Marshall2009-10-15T18:30:35Z2009-10-15T18:30:35ZStijn, are you using Acegi's tags or writing your own tag which accesses the currently authenticated principal ?http://stackoverflow.com/questions/1532043/spring-a-bean-that-receives-a-list-of-classes/1532089#1532089Comment by Alex Marshall on spring: a bean that receives a list of ClassesAlex Marshall2009-10-07T18:34:39Z2009-10-07T18:34:39Zskaffman is correct. To give you the gist of matt b's link, the Springframework uses property editors and introspection to determine what type of property you're setting and convert the given values accordingly.http://stackoverflow.com/questions/1509757/injecting-log4j-loggers-with-spring/1513879#1513879Comment by Alex Marshall on Injecting Log4J loggers with SpringAlex Marshall2009-10-05T21:41:18Z2009-10-05T21:41:18ZThere is that too, I'm pretty fond of aspects myself.http://stackoverflow.com/questions/1500424/help-sending-html-e-mail-via-c-windows-mobile-outlook-reads-it-as-gibberish/1500475#1500475Comment by Alex Marshall on Help! Sending HTML e-mail via C# - Windows Mobile Outlook reads it as gibberishAlex Marshall2009-09-30T21:26:49Z2009-09-30T21:26:49ZIf feasible, you may want to just have an external link to the image in your HTML rather than embedding the image directly in the email. Your current strategy for sending mail could result in a lot of unnecessary bandwidth usage for your SMTP server, especially if you're paying a third party service for it.http://stackoverflow.com/questions/1477821/xpath-expression/1477878#1477878Comment by Alex Marshall on XPath ExpressionAlex Marshall2009-09-25T17:19:24Z2009-09-25T17:19:24Z@Yatendra Goel: I've used the WebHarvest library (<a href="http://web-harvest.sourceforge.net" rel="nofollow">web-harvest.sourceforge.net</a>) to great success in past projects. I'd recommend that you start there. It lets you declaratively define scrapers in config files that it then runs, rather than you having to "manually" scrape pages in code written yourself. You can then store the scraped values in variables and retrieve them for use in your code and it's much easier than what you're doing at the moment.http://stackoverflow.com/questions/1477821/xpath-expression/1477878#1477878Comment by Alex Marshall on XPath ExpressionAlex Marshall2009-09-25T15:11:59Z2009-09-25T15:11:59ZFurther to ristonj's response, there are also numerous HTML sanitizers out there for Ruby, Java, [you name it] that will convert SGML documents (like HTML 4.01) to XML which you could run first if you want to scrape pages programmatically.