Alex Marshall

658
reputation
132 views

Registered User

name Alex Marshall
member for 1 year
seen 2 days ago
website
location Great white north
age
Jack-of-all trades developer from Canada. I've worked on numerous types of projects from embedded systems right up to enterprise web applications, in numerous languages : assembly, C/C++/C#, Java, Ruby, Perl, Python, PHP ... and many of the underlaying 4GLs and techonoliges that support them like SQL, XML, HQL, and many more.
Nov
27
comment Reflectively determining if a member type is a number in C#
Because 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.
Nov
27
comment Reflectively determining if a member type is a number in C#
I'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.
Nov
27
asked Reflectively determining if a member type is a number in C#
Nov
27
answered Determine if a reflected type can be cast to another reflected type
Nov
25
comment Preventing WPF TreeView’s GotFocus event from bubbling up the tree
I 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 ?
Nov
25
asked Preventing WPF TreeView’s GotFocus event from bubbling up the tree
Nov
25
comment Using HashSets with ObservableCollection with WPF
Does 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.
Nov
24
asked Using HashSets with ObservableCollection with WPF
Nov
24
comment Multithreaded access to the WPF GUI in C#
Wow, 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.
Nov
24
asked Multithreaded access to the WPF GUI in C#
Nov
17
comment C# Lazy Regular Expression Matching
#1 did the trick, thank you very much for your help.
Nov
17
comment C# Lazy Regular Expression Matching
Tried 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.
Nov
17
asked C# Lazy Regular Expression Matching
Nov
14
asked Best practices for Subversion and Visual Studio projects
Nov
10
comment Unmodifiable lists in C#
Exactly what I'm looking for, thank you. I guess I haven't gotten used to how to search the MSDN site yet.
Nov
10
asked Unmodifiable lists in C#
Nov
5
awarded  Popular Question
Nov
4
asked Parsing unix time in C#
Oct
29
awarded  Yearling
Oct
19
answered best practices / tips for storing html tags in resource files
Oct
15
comment Spring security - SecurityContext.authentication null in taglib and jsp but ok in controller
Stijn, are you using Acegi's tags or writing your own tag which accesses the currently authenticated principal ?
Oct
15
answered Spring security - SecurityContext.authentication null in taglib and jsp but ok in controller
Oct
13
answered Update Site Creation Automation
Oct
7
answered Difficult Temporal Cross-Table Database Constraint
Oct
7
answered Reproduce com.mysql.jdbc.exceptions.jdbc4.CommunicationsException with a setup of Spring, hibernate and C3P0
Oct
7
answered spring component scan for classes
Oct
7
comment spring: a bean that receives a list of Classes
skaffman 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.
Oct
6
accepted Injecting Log4J loggers with Spring
Oct
5
comment Injecting Log4J loggers with Spring
There is that too, I'm pretty fond of aspects myself.
Oct
2
accepted How to load/access a bean (@Resource) in a custom Velocity tool
Oct
2
answered Spring JSR303 validation doesn’t work like described in Spring Documentation
Oct
2
answered Injecting Log4J loggers with Spring
Oct
1
answered Java Web Services - Is Axis Necessary?
Sep
30
comment Help! Sending HTML e-mail via C# - Windows Mobile Outlook reads it as gibberish
If 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.
Sep
29
answered Best method of triggering a shell script from Java
Sep
25
accepted Importing and using external schema using XML Beans
Sep
25
answered Java - Need help with this.
Sep
25
answered How to load/access a bean (@Resource) in a custom Velocity tool
Sep
25
answered Save the document generated by javascript.
Sep
25
asked Overriding build rules in make
Sep
25
comment XPath Expression
@Yatendra Goel: I've used the WebHarvest library (web-harvest.sourceforge.net) 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.
Sep
25
comment XPath Expression
Further 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.
Sep
25
answered XPath Expression
Sep
25
comment Can Make undefine a variable ?
@Jonathan Leffler: I'm using an embedded OS, RTXC. The compiler tells me that the problem is coming from one of the kernel libraries : librtxc.a. 'nm -g librtxc.a' tells me that the reference is in rtxcasm.o. The libraries are being recompiled from scratch with the CBUG variable being undefined, yet somehow a reference to _isrcnt remains. I've checked all the references to isrcnt, and they're all properly enclosed with #ifdef CBUG tags, so I can see no reason why any _isrcnt symbol should be compiled into the rtxcasm.o object file. Incidentially, thank you for 'nm -g', I was unaware of it
Sep
25
comment Spring ApplicationContext taking up grotesque amounts of memory
Thank you very much for your response, it's much appreciated.
Sep
24
accepted Formating MySQL date string in JSP using JSTL formatDate
Sep
24
answered Formating MySQL date string in JSP using JSTL formatDate
Sep
24
answered Ajax callback to refresh/reload part of a page
Sep
24
comment Can Make undefine a variable ?
Unfortunately I've done both of those and the linking problem still persists. I've checked every usage of the variable and guaranteed that they're all enclosed within #ifdef blocks, and I've ensure that every last a, o, and so built by the project is cleared out of the build directory (and / or built fresh). Thank you for your response nonetheless
Sep
24
asked Can Make undefine a variable ?