tobsen

455
Reputation
115 views

Registered User

Name tobsen
Member for 1 year
Seen 32 mins ago
Website
Location
Age
Nov
25
comment Using a “take-home” coding component in interview process
If he takes StackOverflow into account I guess he's the right guy for the job anyways ;-)
Nov
25
comment Can’t delete file - c#
Or use the using directive in order to not forget to close/dispose the webclient: using (WebClient w = new WebClient()) { w.DownloadFile("file.com/exfile.jpg";, "exfile.jpg"); }
Nov
20
comment Build merge module without Devenv from .vdproj
Thanks for pointing that out. However this is really annoying, imo: "However, heat is considerably less useful after initial project setup, because there is no way to preserve component GUIDs when repeating the process to acquire new files."
Nov
20
comment passing by reference not working
Instead of WriteLines, have a look at a TestRunner (www.testdriven.net or rehsarper) which allows you to run the tests from within the IDE while in Debug mode.
Nov
20
answered Using App.config to set strongly-typed variables
Nov
20
answered How can I make the xmlserializer only serialize plain xml?
Nov
20
comment Sample application for microsoft surface?
You can also download the surface SDK if you have msdn subscription. Also the Academic Alliance (MSDNAA) subscription (msdn.microsoft.com/en-us/academic/…) might get you there.
Oct
25
answered Any other object-to-object mapping solutions other than AutoMapper in .NET?
Oct
25
comment Object to object mapper
+1 for mentioning an alternative.
Oct
12
awarded  Yearling
Oct
9
comment Why is xml so prominently featured in IOC containers?
That's the reason why I also favor XML: one doesn't need to recompile to change the behavior of a system (e.g. substitute a dependency, add an logging aspect etc.). Too bad the Java guys have things like SpringIDE but .Net still has nothing comparable. So we have to use XSDs and UnitTests. IMO IoC-Containers which are purely configurable in code and not via external configuration files (Ninject, LinFu?) are missing an important part of IoC. To my mind, Attributes are also not the way to go: instead of removing dependencies from your class you add a dependency to an IoC container.
Oct
9
comment Build merge module without Devenv from .vdproj
Faisal Mohamood MSFT, Manager on the MSBuild team said: "[...] deployment projects are not supported via the MSBuild task, [...] We expect to work on enabling this scenario in one of the future releases." He said that years ago in this msdn conversation snurl.com/seu1c . So I wouldn't be surprised at all. In fact I am surprised that MSBuild still seems to be unable to compile vdproj.
Oct
9
comment Build merge module without Devenv from .vdproj
Is there a userfriendly way to build mergemodules? I am not keen on putting lots of xml together manually.
Oct
8
comment Can I see the currently checked out revision number in Tortoise SVN ?
I'll +1 on this answer because this SO-answer is returned by google when I searched for "svn currently checked out revision". And you answered at least that ;-)
Oct
8
asked Build merge module without Devenv from .vdproj
Oct
5
answered log4net and mailing
Sep
25
comment C# Interesting Key File Question
ROT-* is neither secure nor is it something which could help the poster because you didn't provide additonal information of what ROT is or how to implement that in c#.
Sep
4
comment nant exclude folder
Where should I add this? Can you provide a full example or adjust your question accordingly please?
Aug
25
comment What is the best way to support multiple databases for a .Net product?
Then please +1 vote the answers which you liked/helped the most or atleast pick one and accept it as the answer to your question. Tia.
Aug
21
answered Logging framework being injected into classes
Aug
21
comment What are the best characteristics of a datalayer framework for WPF/MVVM applications?
+1 because you pointed out that persistence methods do not work well inside of the object and that PI (persistence ignorant) PONOs (plain old net objects, (also POCO, plain old CLR objects)) can be used instead.
Aug
21
answered What is the best way to support multiple databases for a .Net product?
Aug
21
comment How many runtimes (CLRs) can be loaded in a single process?
Maybe you can add a reference?
Aug
4
accepted Generating RESTful API documentation from a WCF Service
Aug
1
answered Generating RESTful API documentation from a WCF Service
Jul
11
answered C# iPhone push server?
Jul
11
comment File logger in C#
When it comes to logging, personal taste does play a huge role, imo (who hasn't found himself writing a loggerclass sometime in his/her developer carrer?). I think an abstraction as commonlogging is handy when a project/team isn't clear about logging requirements or if different software components from various source are used. in the latter case bridged logging allows for cleaner logfiles and easier logmaintenance. But you are right RichardOD, after all log4net is pretty much complete ;-)
Jul
11
comment Waiting to get exclusive access of file before moving it in C#
This does involve try/catching when creating the FileStream, doesn't it? There must be a better solution, but I can't find it either :-/
Jul
11
comment Preferred logging infrastructure for .Net
The latest CommonLogging version can be found here netcommon.sourceforge.net and the documentation here: netcommon.sourceforge.net/docs/2.0.0/…
Jul
11
answered File logger in C#
Jun
21
comment How to reference Spring.Net’s ObjectFactory in the config?
Thanks zoidbeck :) I just found out that the HibernateTransactionManager already implements IObjectFactoryAware so I don't need to set the ObjectFactory property at all! Thanks for pointing me at the right direction.
Jun
21
revised How to reference Spring.Net’s ObjectFactory in the config?
edited tags
Jun
21
answered How to deal with null request scoped objects in Spring.NET
Jun
21
asked How to reference Spring.Net’s ObjectFactory in the config?
Jun
19
comment Spring.NET Error: There is no parser registered for namespace
that's why I wish we had a Spring IDE for spring.Net like the Java guys have....
Jun
19
answered Creating new Objects With SPRING.Net