User Ogre Psalm33 - Stack Overflowmost recent 30 from stackoverflow.com2009-12-22T09:48:16Zhttp://stackoverflow.com/feeds/user/13140http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/973979/the-proxyfactoryfactory-was-not-configured/1874125#18741250Answer by Ogre Psalm33 for The ProxyFactoryFactory was not configuredOgre Psalm332009-12-09T14:05:01Z2009-12-09T14:05:01Z<p>I got this error after publishing my project via Visual Studio 2008's right-click "Publish..." feature, when trying to push our MVC/NHibernate project out to our web server. Turned out I just needed to set the correct options in the publish dialog. In particular, in the "Copy" section, specify "All files in the source project folder", and then it started working. "Only files needed to run this application" was not good enough, perhaps VS was not smart enough to figure out which DLLs were being lazy loaded?</p>
http://stackoverflow.com/questions/205555/the-most-sophisticated-way-for-creating-comma-separated-strings-from-a-collection/205817#2058173Answer by Ogre Psalm33 for The most sophisticated way for creating comma-separated Strings from a Collection/Array/List?Ogre Psalm332008-10-15T18:13:37Z2009-10-29T14:02:10Z<p>I just looked at code that did this today. This is a variation on AviewAnew's answer.</p>
<pre><code>collectionOfStrings = /* source string collection */;
String csList = StringUtils.join(collectionOfStrings.toArray(), ",");
</code></pre>
http://stackoverflow.com/questions/1565847/declaring-a-looooong-single-line-string-in-c/1598480#15984801Answer by Ogre Psalm33 for Declaring a looooong single line string in C#Ogre Psalm332009-10-21T02:44:49Z2009-10-27T17:49:34Z<p>It depends on how the string is going to wind up being used. All the answers here are valid, but context is important. If long string "s" is going to be logged, it should be surrounded with a logging guard test, such as this Log4net example:</p>
<pre><code>if (log.IsDebug) {
string s = "blah blah blah" +
// whatever concatenation you think looks the best can be used here,
// since it's guarded...
}
</code></pre>
<p>If the long string s is going to be displayed to a user, then <em>Developer Art</em>'s answer is the best choice...those should be in resource file.</p>
<p>For other uses (generating SQL query strings, writing to files [but consider resources again for these], etc...), where you are concatenating more than just literals, consider StringBuilder as <em>Wael Dalloul</em> suggests, especially if your string might possibly wind up in a function that just may, at some date in the distant future, be called many many times in a time-critical application (All those invocations add up). I do this, for example, when building a SQL query where I have parameters that are variables. </p>
<p>Other than that, no, I don't know of anything that both looks pretty and is easy to type (though the word wrap suggestion is a nice idea, it may not translate well to diff tools, code print outs, or code review tools). Those are the breaks. (I personally use the plus-sign approach to make the line-wraps neat for our print outs and code reviews).</p>
http://stackoverflow.com/questions/1579605/what-does-error-ora-12571-tnspacket-writer-failure-mean-in-a-web-service0What does error ORA-12571 (TNS:packet writer failure) mean in a Web Service?Ogre Psalm332009-10-16T18:24:21Z2009-10-19T13:46:10Z
<p><strong>Background</strong>: I'm calling a Web Service written in ASP.NET that queries an Oracle database. I know the Web Service itself works, because I've used it before other applications. So I have a web application in Visual Studio that I've been switching back and forth to point from a 'DEV' web service to a production configured version of the same web service for testing. Pointing to the 'DEV' configured web service is no problem, but calling the production version I always get an exception calling the service:</p>
<pre><code>SoapException was unhandled by user code
Server was unable to process request. ---> could not execute query
[ SELECT this_.FIELD1 as FIELD1_18_0_, this_.FIELD2 as FIELD12_18_0_ FROM ABC.TABLE_A this_ WHERE this_.FIELD1 like :p0 ORDER BY this_.FIELD1 asc ]
Positional parameters: #0>00073%
[SQL: SELECT this_.FIELD1 as FIELD1_18_0_, this_.FIELD2 as FIELD12_18_0_ FROM ABC.TABLE_A this_ WHERE this_.FIELD1 like :p0 ORDER BY this_.FIELD1] ---> ORA-12571: TNS:packet writer failure
</code></pre>
<p>I ran the SQL queries against the appropriate database (cut and pasted straight out of the exception message) and the query came back with the expected data. I've tried updating and re-adding the Web Service reference both as a "Service Reference" (.NET 3.0+ way) and as a "Web Reference" (Older .NET way), and both give the same error.</p>
<p><strong>Question</strong>: So, what does a "ORA-12571: TNS:packet writer failure" error mean in the context of a Web Service? Looking up the Oracle Error number gives some very vague possible causes such as "loose cable connection" or "IP address conflict". I'm fairly certain it's neither of these, since a different application is currently successfully using that Web Service. Possibly some kind of configuration error, or maybe something more subtle? Anyone else seen this vexing Oracle error number being attributed to something web-service related?</p>
http://stackoverflow.com/questions/1245132/nunit-test-generator/1539350#15393500Answer by Ogre Psalm33 for Nunit Test GeneratorOgre Psalm332009-10-08T17:34:56Z2009-10-08T17:34:56Z<p>Just downloaded and installed Novel's <a href="http://forge.novell.com/modules/xfmod/project/?nunitgenaddin" rel="nofollow">NUnitGenAddIn</a>. It's kind of old-ish (seems to have been last updated in 2006), but once I tweaked the NUnitGenAddIn.AddIn file (change the Assembly path and update the Visual Studio version number to 9.0), it does exactly what I wanted: right-click generation of reasonable unit-test stubs from within Visual Studio 2008. Dunno if that works for what you want, but definitely free (GNU Lesser GPL).</p>
http://stackoverflow.com/questions/469287/c-vs-java-enum-for-those-new-to-c15C# vs Java Enum (for those new to C#)Ogre Psalm332009-01-22T14:19:13Z2009-10-01T21:28:13Z
<p>I've been programming in Java for a while and just got thrown onto a project that's written entirely in C#. I'm trying to come up to speed in C#, and noticed enums used in several places in my new project, but at first glance, C#'s enums seem to be more simplistic than the Java 1.5+ implementation. Can anyone enumerate the differences between C# and Java enums, and how to overcome the differences? (I don't want to start a language flame war, I just want to know how to do some things in C# that I used to do in Java). For example, could someone post a C# counterpart to Sun's famous Planet enum example?</p>
<pre><code>public enum Planet {
MERCURY (3.303e+23, 2.4397e6),
VENUS (4.869e+24, 6.0518e6),
EARTH (5.976e+24, 6.37814e6),
MARS (6.421e+23, 3.3972e6),
JUPITER (1.9e+27, 7.1492e7),
SATURN (5.688e+26, 6.0268e7),
URANUS (8.686e+25, 2.5559e7),
NEPTUNE (1.024e+26, 2.4746e7),
PLUTO (1.27e+22, 1.137e6);
private final double mass; // in kilograms
private final double radius; // in meters
Planet(double mass, double radius) {
this.mass = mass;
this.radius = radius;
}
public double mass() { return mass; }
public double radius() { return radius; }
// universal gravitational constant (m3 kg-1 s-2)
public static final double G = 6.67300E-11;
public double surfaceGravity() {
return G * mass / (radius * radius);
}
public double surfaceWeight(double otherMass) {
return otherMass * surfaceGravity();
}
}
// Example usage (slight modification of Sun's example):
public static void main(String[] args) {
Planet pEarth = Planet.EARTH;
double earthRadius = pEarth.radius(); // Just threw it in to show usage
// Argument passed in is earth Weight. Calculate weight on each planet:
double earthWeight = Double.parseDouble(args[0]);
double mass = earthWeight/pEarth.surfaceGravity();
for (Planet p : Planet.values())
System.out.printf("Your weight on %s is %f%n",
p, p.surfaceWeight(mass));
}
// Example output:
$ java Planet 175
Your weight on MERCURY is 66.107583
Your weight on VENUS is 158.374842
[etc ...]
</code></pre>
http://stackoverflow.com/questions/1203739/how-to-get-assembly-version-of-another-project-from-app-config/1503738#15037381Answer by Ogre Psalm33 for How to get assembly version of another project from app.config ?Ogre Psalm332009-10-01T12:41:39Z2009-10-01T12:41:39Z<p>We use NAnt to build our applications. This may be overkill for your problem, especially if you don't already use NAnt to build your app. But there is a nant task called xmlpoke that can be used to set values in any xml file at build time. E.g.: part of my NAnt build script looks like this:</p>
<pre><code><target name="updateconfig">
<!-- Grab the mySvcSoap value from the already deployed
appropriate config file -->
<xmlpeek
file="${deployment.dir}/Config/appSettings.config"
xpath="/appSettings/add[@key = 'MyServiceSoap']/@value"
property="MySvcSoap"/>
<echo message="MyServiceSoap = ${MySvcSoap}"/>
<!-- Stick the peeked value into the web.config file system.serviceModel
configuration. -->
<xmlpoke
file="${deployment.dir}/web.config"
xpath="/configuration/system.serviceModel/client/endpoint[@name = 'MyServiceSoap']/@address"
value="${MySvcSoap}" />
</target>
</code></pre>
<p>You can get more info from the <a href="http://nant.sourceforge.net/release/latest/help/tasks/xmlpoke.html" rel="nofollow">NAnt xmlpoke</a> documentation page.</p>
http://stackoverflow.com/questions/1362435/asp-net-mvc-validation-messages-set-in-tryupdatemodel-not-showning-validationsum0ASP.NET MVC: Validation messages set in TryUpdateModel not showning ValidationSummaryOgre Psalm332009-09-01T13:16:59Z2009-09-04T12:32:27Z
<p>I've been trying to follow the validation tutorials and examples on the web, such as from <a href="http://davidhayden.com/blog/dave/archive/2008/09/08/ASPNETMVCUpdateModelTryUpdateModelDataBinding.aspx" rel="nofollow">David Hayden's Blog</a> and the official <a href="http://www.asp.net/mvc" rel="nofollow">ASP.Net MVC Tutorials</a>, but I can't get the below code to display the actual validation errors. If I have a view that looks something like this:</p>
<pre><code><%@ Page Title="" Language="C#" MasterPageFile="~/Views/Shared/Site.Master" Inherits="System.Web.Mvc.ViewPage<MvcApplication1.Models.Parent>" %>
<%-- ... content stuff ... --%>
<%= Html.ValidationSummary("Edit was unsuccessful. Correct errors and retry.") %>
<% using (Html.BeginForm()) {%>
<%-- ... "Parent" editor form stuff... --%>
<p>
<label for="Age">Age:</label>
<%= Html.TextBox("Age", Model.Age)%>
<%= Html.ValidationMessage("Age", "*")%>
</p>
<%-- etc... --%>
</code></pre>
<p>For a model class that looks like this:</p>
<pre><code>public class Parent
{
public String FirstName { get; set; }
public String LastName { get; set; }
public int Age { get; set; }
public int Id { get; set; }
}
</code></pre>
<p>Whenever I enter an invalid Age (since Age is declared as an int), such as "xxx" (non-integer), the view <em>does</em> correctly display the message "Edit was unsuccessful. Correct errors and retry" at the top of the screen, as well as highlighting the Age text box and put a red asterisk next to it, indicating the error. However, no list of error messages is displayed with the ValidationSummary. When I do my own validation (e.g.: for LastName below), the message displays correctly, but the built-in validation of TryUpdateModel does not seem to display a message when a field has an illegal value.</p>
<p>Here is the action invoked in my controller code:</p>
<pre><code> [AcceptVerbs(HttpVerbs.Post)]
public ActionResult EditParent(int id, FormCollection collection)
{
// Get an updated version of the Parent from the repository:
Parent currentParent = theParentService.Read(id);
// Exclude database "Id" from the update:
TryUpdateModel(currentParent, null, null, new string[]{"Id"});
if (String.IsNullOrEmpty(currentParent.LastName))
ModelState.AddModelError("LastName", "Last name can't be empty.");
if (!ModelState.IsValid)
return View(currentParent);
theParentService.Update(currentParent);
return View(currentParent);
}
</code></pre>
<p>What did I miss?</p>
http://stackoverflow.com/questions/1362435/asp-net-mvc-validation-messages-set-in-tryupdatemodel-not-showning-validationsum/1364017#13640170Answer by Ogre Psalm33 for ASP.NET MVC: Validation messages set in TryUpdateModel not showning ValidationSummaryOgre Psalm332009-09-01T18:48:50Z2009-09-04T12:32:27Z<p>I downloaded and looked at the <a href="http://www.codeplex.com/aspnet" rel="nofollow">ASP.NET MVC v1.0 source code</a> from Microsoft, and discovered that, either by accident or by design, there isn't a way to do what I want to do, at least by default. Apparently during a call to UpdateModel or TryUpdateModel, if validation of an integer (for example) fails, an ErrorMessage is not explicitly set in the ModelError associated with the ModelState for the bad value, but instead the Exception property is set. According to the code from the MVC ValidationExtensions, the following code is used to fetch the error text:</p>
<pre><code>string errorText = GetUserErrorMessageOrDefault(htmlHelper.ViewContext.HttpContext, modelError, null /* modelState */);
</code></pre>
<p>Notice the null parameter for the modelState is passed. The GetUserErrorMEssageOrDefault method then begins like this:</p>
<pre><code>private static string GetUserErrorMessageOrDefault(HttpContextBase httpContext, ModelError error, ModelState modelState) {
if (!String.IsNullOrEmpty(error.ErrorMessage)) {
return error.ErrorMessage;
}
if (modelState == null) {
return null;
}
// Remaining code to fetch displayed string value...
}
</code></pre>
<p>So, if the ModelError.ErrorMessage property is empty (which I verified that it is when trying to set a non-integer value to a declared int), MVC goes on to check the ModelState, which we already discovered is null, thus null is returned for any Exception ModelError. So, at this point, my 2 best work-around ideas to this issue are:</p>
<ol>
<li>Create a custom Validation extension that correctly returns an appropriate message when ErrorMessage is not set, but Exception is set.</li>
<li>Create a pre-processing function that is called in the controller if ModelState.IsValid returns false. The pre-processing function would look for values in the ModelState where the ErrorMessage is not set, but the Exception is set, and then derive an appropriate message using the ModelState.Value.AttemptedValue.</li>
</ol>
<p>Any other ideas?</p>
http://stackoverflow.com/questions/724500/how-do-you-mock-unitofwork-from-rhino-commons/1267262#12672621Answer by Ogre Psalm33 for How do you mock UnitOfWork from Rhino.Commons?Ogre Psalm332009-08-12T16:28:51Z2009-08-12T16:28:51Z<p>I had a similar need, because I wanted to test the logic <em>around</em> the persistence without actually testing the persistence of the data. I found I could mock/stub the <code>UnitOfWork</code> easily using these 2 lines in the SetUp portion of my tests:</p>
<pre><code>IUnitOfWork theStubUnitOfWork = MockRepository.GenerateStub<IUnitOfWork>();
UnitOfWork.RegisterGlobalUnitOfWork(theStubUnitOfWork);
</code></pre>
http://stackoverflow.com/questions/1103435/nhibernate-saving-idictionary-transientobjectexception/1255495#12554950Answer by Ogre Psalm33 for NHibernate, saving IDictionary : TransientObjectExceptionOgre Psalm332009-08-10T15:20:43Z2009-08-10T15:20:43Z<p>I think you need to persist the Entity objects that are referenced by the Case first, before you try to persist the Case. I had a similar issue that I solved this way. For example, using the Rhino NHRepository:</p>
<pre><code>[Test]
public void Can_add_new_case()
{
var newCase = new Case();
var entity1 = new Entity();
var entity2 = new Entity();
newCase.EntityCollection.Add(entity1, Roles.Role1);
newCase.EntityCollection.Add(entity2, Roles.Role2);
Rhino.Commons.NHRepository<Entity> entityRepository = new NHRepository<Entity>();
Rhino.Commons.NHRepository<Case> caseRepository = new NHRepository<Case>();
using (UnitOfWork.Start())
{
entityRepository.SaveOrUpdate(entity1);
entityRepository.SaveOrUpdate(entity2);
caseRepository.SaveOrUpdate(newCase);
}
}
</code></pre>
http://stackoverflow.com/questions/1132985/simple-generic-list-in-java/1133633#11336331Answer by Ogre Psalm33 for simple generic list in javaOgre Psalm332009-07-15T20:01:00Z2009-07-16T17:41:45Z<p>This declaration:</p>
<pre><code>List<?> getOuterList() { }
</code></pre>
<p>is telling the compiler "I really don't know what kind of list I'm going to get back". Then you essentially execute</p>
<pre><code>list<dunno-what-this-is>.add((MyObject)myObject)
</code></pre>
<p>It can't add a MyObject to the List of something that it doesn't know what type it is.</p>
<p>This declaration:</p>
<pre><code>protected List<? extends Object> getOuterList() { ... }
</code></pre>
<p>tells the compiler "This is a list of things that are subtypes of Object". So again, of course you can't cast to "MyObject" and then add to a list of Objects. Because all the compiler knows is that the list can contain Objects.</p>
<p>You <strong>could</strong> however, do something like this:</p>
<pre><code>List<? super MyObject>.getOuterList() { ... }
</code></pre>
<p>and then successfully add a MyObject. That's because now the compiler knows the List is a list of MyObject, or any supertype of MyObject, so it can surely accept MyObject.</p>
<p><strong>Edit:</strong> As for your DogKennel example, this code snippet I think does what you want:</p>
<pre><code>protected List<GreyHound> greyHounds;
// We only want a List of GreyHounds here:
public List<GreyHound> getGreyHounds() {
return this.greyHounds;
}
// The list returned can be a List of any type of Dog:
public List<? extends Dog> getDogs() {
return getGreyHounds();
}
</code></pre>
http://stackoverflow.com/questions/1125746/how-to-hide-remove-a-base-classs-methods-in-c0How to hide (remove) a base class's methods in C#?Ogre Psalm332009-07-14T14:24:27Z2009-07-14T15:49:37Z
<p>The essence of the problem is, given a class hierarchy like this:</p>
<pre><code>class A
{
protected void MethodToExpose()
{}
protected void MethodToHide(object param)
{}
}
class B : A
{
new private void MethodToHide(object param)
{}
protected void NewMethodInB()
{}
}
class C : B
{
public void DoSomething()
{
base.MethodToHide("the parameter"); // This still calls A.MethodToHide()
base.MethodToExpose(); // This calls A.MethodToExpose(), but that's ok
base.NewMethodInB();
}
}
</code></pre>
<p>How can I prevent any classes that inherit from class "B" from seeing the method <code>A.MethodToHide()</code>? In C++, this was easy enough by using a declaration such as <code>class B : private A</code>, but this syntax is not valid in C#.</p>
<p>For those interested (or wondering what I'm <em>really</em> trying to do), what we're trying to do is create a wrapper for for Rhino.Commons.NHRepository that hides the methods we don't want to expose to our group of developers, so we can have a cookie-cutter way of developing our app that new developers can easily follow. So yes, I believe the "Is-A" test is valid for the whole chain (WidgetRepository Is-A BaseRepository Is-A NHRepository).</p>
<p><strong>Edit</strong>: I should have mentioned, for the sake of argument, that class A is an API class outside of our control. Otherwise the problem gets considerably easier.</p>
http://stackoverflow.com/questions/1002472/rhino-commons-and-rhino-mocks-reference-documents1Rhino Commons and Rhino Mocks Reference Documents?Ogre Psalm332009-06-16T16:03:45Z2009-06-16T17:16:59Z
<p>Ok, is it just me, or does there seem to be a lack of (easy to find) reference documentation for Rhino Commons and Rhino Mocks? My coworkers have started using Rhino Mocks and Rhino Commons (particularly the NHibernate stuff), and I found a few tutorial-ish examples, which were good. But when I see them making use of a class in their code--let's pick something like Rhino.Commons.NHRepository, for example--I have been having a hard time just finding someplace on the web that tells me what Rhino.Commons.NHRepository is or what it does. I like to learn by looking at real examples, but using this approach, it's very handy to look at what the full docs are for a class, instead of just the current context.</p>
<p>Similarly, I saw <code>IaMockedRepository.Expect(...)</code> being used in some code, but it took me forever to finally find <a href="http://ayende.com/Blog/archive/2008/05/16/Rhino-Mocks--Arrange-Act-Assert-Syntax.aspx" rel="nofollow">this page that explains the AAA syntax</a> for Rhino Mocks, which made it clear to me.</p>
<p>I've found the <a href="http://ayende.com/wiki/Rhino%2BCommons.ashx" rel="nofollow">Ayende.com wiki on Rhino Commons</a>, but that seems to have a number of broken links. To me, the Rhino libraries seem like a great set of libraries in need of some desperate community help in the documentation area (Of course, as we all know, documentation is not the forte of most coders, and incomplete docs are all too common). Does anyone know if this is something in the works, someplace that some volunteer documenters are needed, or is there some great reference docs out there that I have somehow missed to Rhino Mocks and Rhino Commons? </p>
http://stackoverflow.com/questions/975535/how-can-i-iterate-through-a-list-of-rows-returned-from-a-select-statement-in-sql/975745#9757456Answer by Ogre Psalm33 for How can I iterate through a list of rows returned from a select statement in SQL?Ogre Psalm332009-06-10T13:52:53Z2009-06-10T13:52:53Z<p>The other answers are essentially correct. Good SQL code generally requires a different way of thinking than how procedural or object-oriented programmers are used to thinking. SQL is optimized to perform operations on sets of data. Your <code>DELETE FROM table2 WHERE ...</code> statement is sent to the back-end database, where the database knows how to most efficiently take that statement and perform the operation across the whole set of results at once.</p>
<p>One of the reasons for this is because many large-scale applications have a front-end (user interface), a server that accepts the user requests (e.g.: web server), and a back end database server. It would be in efficient for the SQL code being executed on the web server (where your SQL script may originate from) to have to make single requests to the back end to delete each item in the table in a loop. The messages sent from the web server to the database server would look something like this (pseudo-code messages):</p>
<pre><code>web server -> Find all elements matching criteria -> database
web server <- (return of matching elements) <- database
web server -> Delete element[0] from myTable -> database
web server <- (delete result was ok) <- database
web server -> Delete element[1] from myTable -> database
web server <- (delete result was ok) <- database
....
</code></pre>
<p>Whereas, the SQL approach would produce messages back and forth that would look more like:</p>
<pre><code>web server -> Find all elements matching criteria -> database
and delete them.
web server <- (delete result was ok) <- database
</code></pre>
http://stackoverflow.com/questions/942005/tracking-file-level-versioning-in-builds-using-visual-studio-and-net1Tracking File-level Versioning in builds using Visual Studio and .NET?Ogre Psalm332009-06-02T21:27:08Z2009-06-03T04:07:43Z
<p>I want a tool or a technique to be able to answer the question "What version of file X was used to build Assembly abc.dll?" I recently moved to a .NET development group, and it seems like this question comes up all the time, in one form or another, and we don't quite have a handle on it. Someone will say something like "Hey, is your latest code on the test server?" and the answer is inevitably something like "I don't know".</p>
<p>Back in the old days of Unix development (I'm dating myself here), the SCCS source control system had <a href="http://docs.sun.com/app/docs/doc/816-0210/6m6nb7mkd?a=view#USAGE" rel="nofollow">special keywords</a> such as %I% (version) and %M% (module name) that you could place in your file, that would be replaced with the appropriate SCCS version information whenever the file was checked out. So a neat trick you could do was assign a constant string to "%I% %M%" in your source file, compile, and then run the <a href="http://linux.about.com/library/cmd/blcmdl1%5Fstrings.htm" rel="nofollow">Unix "strings" command</a> on your resulting library to determine what versions of what files were used to build that file.</p>
<p>I did a quick test to roll-my-own in a C# class file, like this:</p>
<pre><code>public const String VERSION_STRING = "*VERSION* = MyClass 1.0";
</code></pre>
<p>Then ran this command line on my DLL directory:</p>
<pre><code>>for %f in (*.dll) do find "VERSION" %f
</code></pre>
<p>But the results were:</p>
<pre><code>---------- MYASSEMBLY.DLL
VERSION_STRING
</code></pre>
<p>Which is not quite what I was after (it gave me the name of the constant, but none of the version info I had tried to manually embed in the class).</p>
<p>For what it's worth, we're currently using Clearcase for our version control (currently the company standard). Clearcase has some tools that may be able to help us here (such as <a href="http://www.ipnom.com/ClearCase-Commands/clearaudit.html" rel="nofollow">clearaudit</a>), but that would require some effort towards refinement and retooling of our build process. I should also mention we're considering piloting a switch to subversion. So I guess solutions that work with .NET in any of various version control systems or build environments (MSBuild, NAnt, CruiseControl) are fair game.</p>
<p>Are there any other, particularly .NET-centric, solutions out there, for tracking what version of what file went into what assembly?</p>
http://stackoverflow.com/questions/831726/windows-equivalent-of-ls-asterisk-directory-wildcarding0Windows equivalent of ls * (asterisk) directory wildcarding?Ogre Psalm332009-05-06T21:00:54Z2009-05-07T20:46:19Z
<p>Another question from an long-time Unix/Linux user who finds himself in a Windows world. First let me explain exactly what I'm trying to do. I'm using the Windows cmd.exe shell, and I want to list all directories below the current directory that contain a bin\Debug hierarchy, and determine if they contain any files (e.g.: trying to figure out if my NAnt clean target is working properly). My hierarchy might look something like this:</p>
<pre><code>\Current
\DirA
\bin
\Debug
(some files under debug)
\Release
\DirB
\bin
\Debug
\DirC
\bin
\Release
</code></pre>
<p>In Unix, <code>ls */bin/Debug</code> would just give me a list of all the stuff in <code>DirA/bin/Debug</code>, and show me the fact that <code>DirB/bin/Debug</code> is empty. I've tried different contortions in the cmd shell, but keep winding up with stuff like:</p>
<pre>
> dir *\bin\Debug
The filename, directory name, or volume label syntax is incorrect.
> dir *\*\*
The filename, directory name, or volume label syntax is incorrect.
</pre>
<p>Is there something subtle I don't understand about the dir command, or is it just limited that way?</p>
<p>Yes, I realize I can just switch to explorer, navigate, right-click, and probably eventually craft a search that does what I want, but I'm more interested in the quick-n-dirty command-line solution.</p>
http://stackoverflow.com/questions/180158/how-do-i-time-a-methods-execution-in-java7How do I time a method's execution in Java?Ogre Psalm332008-10-07T20:10:25Z2009-05-05T13:10:21Z
<p>It seems like it should be simpler than it is to get a method's execution time. Is there a Timer utility class for things like timing how long a task takes, etc? Most of the searches on Google return results for timers that schedule threads and tasks, which is not what I want.</p>
http://stackoverflow.com/questions/763413/architecture-for-a-machine-database/770678#7706783Answer by Ogre Psalm33 for Architecture for a machine databaseOgre Psalm332009-04-21T01:07:02Z2009-04-21T01:07:02Z<p>This sounds like a great LDAP problem looking for a solution. LDAP is designed for this kind of thing: a catalog of items that is optimized for data searches and retrieval (but not necessarily writes). There are many LDAP servers to choose from (OpenLDAP, Sun's OpenDS, Microsoft Active Directory, just to name a few ...), and I've seen LDAP used to catalog servers before. LDAP is very standardized and a "database" of information that is usually searched or read, but not frequently updated, is the strong-suit of <a href="http://en.wikipedia.org/wiki/LDAP" rel="nofollow">LDAP</a>.</p>
http://stackoverflow.com/questions/769510/is-there-a-parameter-i-can-use-in-java-that-works-with-all-for-each-loops/769768#7697680Answer by Ogre Psalm33 for Is there a parameter I can use in Java that works with all for-each loops?Ogre Psalm332009-04-20T19:28:50Z2009-04-20T19:40:46Z<p>There's a little know feature of Java Generics in Java 1.5+ where you can use <code><? extends Subtype></code> in your method calls and constructors. You could use <code><? extends Object></code>, and then anything that deals with those would have access only to methods on Object. What you might really want is something more like this:</p>
<pre><code>List<? extends MyCrustaceans> seaLife = new ArrayList<? extends MyCrustaceans>();
MyShrimp s = new MyShrimp("bubba");
seaLife.add(s);
DoStuff(seaLife);
...
public static void DoStuff(List<? extends MyCrustaceans> seaLife)
{
for (MyCrustaceans c : seaLife) {
System.out.println(c);
}
}
</code></pre>
<p>So if you have a base class (like MyCrustaceans), you can use any methods of that base class in DoStuff (or of the Object class, if your parameter is <code><? extends Object></code>). There's a similar feature of <code><? super MyType></code>, where it accepts a parameter that is a supertype of the given type, instead of a subtype. There's some restrictions on what you can use "extends" and "super" for in this fashion. Here's a <a href="http://java.sun.com/j2se/1.5/pdf/generics-tutorial.pdf" rel="nofollow">good place to find more info</a>.</p>
http://stackoverflow.com/questions/250166/noclassdeffounderror-while-trying-to-run-my-jar-with-java-exe-jar-whats-wrong6NoClassDefFoundError while trying to run my jar with java.exe -jar...what's wrong?Ogre Psalm332008-10-30T13:26:53Z2009-04-20T15:18:24Z
<p>I have an application that I'm trying to wrap into a jar for easier deployment. The application compiles and runs fine (in a Windows cmd window) when run as a set of classes reachable from the CLASSPATH. But when I jar up my classes and try to run it with java 1.6 in the same cmd window, I start getting exceptions:</p>
<pre><code>C:\dev\myapp\src\common\datagen>C:/apps/jdk1.6.0_07/bin/java.exe -classpath C:\myapp\libs\commons -logging-1.1.jar -server -jar DataGen.jar
Exception in thread "main" java.lang.NoClassDefFoundError: org/apache/commons/logging/LogFactory
at com.harris.myapp.fomc.common.datagen.DataGenerationTest.<clinit>(Unknown Source)
Caused by: java.lang.ClassNotFoundException: org.apache.commons.logging.LogFactory
at java.net.URLClassLoader$1.run(URLClassLoader.java:200)
at java.security.AccessController.doPrivileged(Native Method)
at java.net.URLClassLoader.findClass(URLClassLoader.java:188)
at java.lang.ClassLoader.loadClass(ClassLoader.java:306)
at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:276)
at java.lang.ClassLoader.loadClass(ClassLoader.java:251)
at java.lang.ClassLoader.loadClassInternal(ClassLoader.java:319)
... 1 more
</code></pre>
<p>The funny thing is, the offending LogFactory seems to be in commons-logging-1.1.jar, which is in the class path specified. The jar file (yep, it's really there):</p>
<pre><code>C:\dev\myapp\src\common\datagen>dir C:\myapp\libs\commons-logging-1.1.jar
Volume in drive C is Local Disk
Volume Serial Number is ECCD-A6A7
Directory of C:\myapp\libs
12/11/2007 11:46 AM 52,915 commons-logging-1.1.jar
1 File(s) 52,915 bytes
0 Dir(s) 10,956,947,456 bytes free
</code></pre>
<p>The contents of the commons-logging-1.1.jar file:</p>
<pre><code>C:\dev\myapp\src\common\datagen>jar -tf C:\myapp\libs\commons-logging-1.1.jar
META-INF/
META-INF/MANIFEST.MF
org/
org/apache/
org/apache/commons/
org/apache/commons/logging/
org/apache/commons/logging/impl/
META-INF/LICENSE.txt
META-INF/NOTICE.txt
org/apache/commons/logging/Log.class
org/apache/commons/logging/LogConfigurationException.class
org/apache/commons/logging/LogFactory$1.class
org/apache/commons/logging/LogFactory$2.class
org/apache/commons/logging/LogFactory$3.class
org/apache/commons/logging/LogFactory$4.class
org/apache/commons/logging/LogFactory$5.class
org/apache/commons/logging/LogFactory.class
... (more classes in commons-logging-1.1 ...)
</code></pre>
<p>Yep, commons-logging has the LogFactory class. And finally, the contents of my jar's manifest:</p>
<pre><code>Manifest-Version: 1.0
Ant-Version: Apache Ant 1.6.5
Created-By: 10.0-b23 (Sun Microsystems Inc.)
Main-Class: com.harris.myapp.fomc.common.datagen.DataGenerationTest
Class-Path: commons-logging-1.1.jar commons-lang.jar antlr.jar toplink
.jar GroboTestingJUnit-1.2.1-core.jar junit.jar
</code></pre>
<p>This has stumped me, and any coworkers I've bugged for more than a day now. Just to cull the answers, for now at least, third party solutions to this are probably out due to licensing restrictions and company policies (e.g.: tools for creating exe's or packaging up jars). The ultimate goal is to create a jar that can be copied from my development Windows box to a Linux server (with any dependent jars) and used to populate a database (so classpaths may wind up being different between development and deployment environments). Any clues to this mystery would be greatly appreciated!</p>
http://stackoverflow.com/questions/731528/secure-password-solution-for-a-web-service-authenticating-against-active-director1Secure password solution for a web service authenticating against Active Directory?Ogre Psalm332009-04-08T19:46:15Z2009-04-09T17:33:54Z
<p>An application I'm modifying has a Web Service, and one of the web methods on that web methods is used to authenticate a user against active directory. So the current code called by the AuthenticateUser web method looks something like this:</p>
<pre><code>string domainAndUsername = aDomain + @"\\" + username;
string ldsPath = buildLdsPath(searchBase);
DirectoryEntry entry = new DirectoryEntry(ldsPath, domainAndUsername,
password);
try
{
//Bind to the native AdsObject to force authentication.
object obj = entry.NativeObject;
DirectorySearcher search = new DirectorySearcher(entry);
search.Filter = "(sAMAccountName=" + username + ")";
search.PropertiesToLoad.Add("cn");
SearchResult result = search.FindOne();
// more code to validate the result, etc...
}
</code></pre>
<p>When I started looking at this code, the first thing that worried me is the arguments to the web method look like this:</p>
<pre><code>[WebMethod]
public ResultObj AddRole(string roleToAdd, string username, string password)
{
// code that calls above Authentication fragment...
}
</code></pre>
<p>So the current web service is expecting a password string, presumably <strong>sent in the clear</strong> over the network as XML, when the request is made to the service.asmx page.</p>
<p>Has anyone dealt with this type of issue before? Are there alternative Active Directory authentication mechanisms I could use that would avoid having to pass in a plain-text password? The best option I could come up with on my own is to invoke the WebMethod using an encrypted password, and have the code on the other side decrypt it. However, I'd prefer a better solution--e.g.: is there some way to do search for a DirectoryEntry using a one-way hash instead of a password?</p>
<p><strong>Edit:</strong></p>
<p><em>Additional Details:</em> To this point I haven't considered SSL as this is a tool that is internal to our company, so it seems like overkill, and possibly problematic (it'll be running on a company intranet, and not externally visible). The only reason I'm even worried about the security of sending plain-text passwords is the escalating amount of (possibly password-sniffing) malware present even on company intranets these days.</p>
http://stackoverflow.com/questions/731528/secure-password-solution-for-a-web-service-authenticating-against-active-director/735173#7351730Answer by Ogre Psalm33 for Secure password solution for a web service authenticating against Active Directory?Ogre Psalm332009-04-09T17:33:54Z2009-04-09T17:33:54Z<p>For our particular situation, because both the client and the web service are running on our company Intranet, a solution that may work for us is to handle the Authentication on the client end using the Integrated Windows NTLM authentication, and then then just have the client supply the credentials to the Web Service. Here is the client code:</p>
<pre><code>public void AddRole(string roleName)
{
webSvc.Credentials = CredentialCache.DefaultCredentials;
// Invoke the WebMethod
webSvc.AddRole(roleName);
}
</code></pre>
<p>The web method will now look like this:</p>
<pre><code>[WebMethod]
public ResultObj AddRole(string roleToAdd)
{
IIdentity identity = Thread.CurrentPrincipal.Identity;
if (!identity.IsAuthenticated)
{
throw new UnauthorizedAccessException(
ConfigurationManager.AppSettings["NotAuthorizedErrorMsg"]);
}
// Remaining code to add role....
}
</code></pre>
<p>Again, I must stress this solution will probably only work if the server trusts the client, and both talk to the same Active Directory server. For public Web Services, one of the other answers given is going to be a better solution.</p>
<p>For further information, see:</p>
<ul>
<li><a href="http://support.microsoft.com/kb/813834" rel="nofollow">Microsoft Support Article on passing credentials</a></li>
<li><a href="http://msdn.microsoft.com/en-us/library/aa302383.aspx" rel="nofollow">MSDN Article on Building Secure Applications</a></li>
<li><a href="http://msdn.microsoft.com/en-us/library/aa480475.aspx" rel="nofollow">MSDN Article on Windows Authentication</a> - includes info on correctly configuring the web service to use the Windows Principal and Identity objects needed.</li>
</ul>
http://stackoverflow.com/questions/476163/nant-or-msbuild-which-one-to-choose-and-when/483505#48350515Answer by Ogre Psalm33 for Nant or MSBuild, which one to choose and when?Ogre Psalm332009-01-27T14:08:16Z2009-03-25T20:43:34Z<p>I've done a similar investigation this week. Here's what I've been able to determine:</p>
<p><strong>NANT:</strong></p>
<ul>
<li>Cross-platform (supports Linux/Mono). May be handy for installing a web site to multiple targets (i.e.: Linux Apache and Windows IIS), for example.</li>
<li>95% similar in syntax to Ant (easy for current Ant users or Java builders to pick up)</li>
<li>Integration with NUnit for running unit tests as part of the build, and with NDoc for producting documentation.</li>
</ul>
<p><strong>MSBuild:</strong></p>
<ul>
<li>Built-in to .NET.</li>
<li>Integrated with Visual Studio</li>
<li>Easy to get started with MSBuild in Visual Studio - it's all behind the scenes. If you want to get deeper, you can hand edit the files.</li>
</ul>
<p><strong>Subjective Differences:</strong> <em>(YMMV)</em></p>
<ul>
<li>NAnt documentation is a little more straight forward. E.g.: The <a href="http://msdn.microsoft.com/en-us/library/7z253716.aspx" rel="nofollow">MSBuild Task Reference</a> lists "Csc Task - Describes the Csc task and its parameters. " (thanks for the "help"?), vs the <a href="http://nant.sourceforge.net/release/latest/help/tasks/" rel="nofollow">NAnt Task Reference</a> "csc - Compiles C# programs."</li>
<li>Not easy to figure out how to edit the build script source (<em>.</em>proj file) directly from within Visual Studio. With NAnt I just have Visual Studio treat the .build script as an xml file.</li>
<li>Apparently, in Visual Studio, Web Application Projects don't get a <em>.</em>proj file by default, so I had great difficulty figuring out how to even get MSBuild to run on mine to create a deployment script.</li>
<li>NAnt is not built-in to Visual Studio, and has to be added, either with an Add-In, or as an "External Tool". This is a bit of a pain to set up.</li>
<li>(Edit:) One of my coworkers brought this up--if you want to set up a build machine using <a href="http://cruisecontrol.sourceforge.net/" rel="nofollow">CruiseControl</a> for continuous integration, CruiseControl integrates with NAnt nicely out of the box. I'm not aware of a MSBuild plug-in for CruiseControl (that doesn't mean there isn't one).</li>
</ul>
http://stackoverflow.com/questions/448002/why-does-c-listt-find-seemingly-return-nullreferenceexception1Why does C# List<T>.Find seemingly return NullReferenceException?Ogre Psalm332009-01-15T19:01:00Z2009-01-15T19:33:04Z
<p>First off, according to <a href="http://msdn.microsoft.com/en-us/library/x0b5b5bc.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/x0b5b5bc.aspx</a>, the List.Find method is only listed as throwing ArgumentNullException. However I have the following test code which, when using Find with an anonymous delegate, throws a NullReferenceException when the object being searched for is not found.</p>
<pre><code>namespace MyTestNS
{
class MyTestClass
{
[TestMethod()]
public void ArrayMatchTest()
{
List<A> objArray = new List<A>();
objArray.Add(new A("1","one"));
objArray.Add(new A("2", "two"));
string findStr = "3";
string foundVal;
// Find using an anonymous delegate:
foundVal = objArray.Find(delegate(A a) // <- System.NullReferenceException: Object reference not set to an instance of an object..
{
if (a.name == findStr)
return true;
else return false;
}).value;
}
}
}
</code></pre>
<p>I don't understand why I'm getting a NullReferenceException instead of the Find just not finding the item and returning null. I'm 90% sure it's some subtle coding error on my part that I just haven't seen, but this has been bugging me all day, please help!</p>
<p>EDIT:
I should mention I inherited this convoluted code form someone else, so the twisty code you see above is a somewhat simplified version of whats failing in my real code.</p>
http://stackoverflow.com/questions/106053/how-to-make-a-batch-file-to-act-like-a-simple-grep-using-perl6How to make a Batch file to act like a simple grep using Perl?Ogre Psalm332008-09-19T22:10:05Z2008-11-10T21:41:59Z
<p>I already know the obvious answer to this question: "just download <insert favorite windows grep or grep-like tool here>". However, I work in an environment with strict controls by the local IT staff as to what we're allowed to have on our computers. Suffice it to say: I have access to Perl on Windows XP. Here's a quick Perl script I came up with that does what I want, but I haven't figured up how to set up a batch file such that I can either pipe a command output into it, or pass a file (or list of files?) as an argument after the "expression to grep":</p>
<pre>
perl -n -e "print $_ if (m![expression]!);" [filename]
</pre>
<p>How do I write a batch script that I can do something like, for example:</p>
<pre>
dir | grep.bat mypattern
grep.bat mypattern myfile.txt
</pre>
<p><strong>EDIT</strong>: Even though I marked another "answer", I wanted to give kudos to <a href="http://stackoverflow.com/questions/106053/how-to-make-a-batch-file-to-act-like-a-simple-grep-using-perl#106099">Ray Hayes answer</a>, as it is really the "Windows Way" to do it, even if another answer is technically closer to what I wanted.</p>
http://stackoverflow.com/questions/391523/what-are-some-good-free-programming-books/266077#2660771Answer by Ogre Psalm33 for What are some good free programming books?Ogre Psalm332008-11-05T18:07:13Z2008-11-05T18:07:13Z<p>What about <a href="http://en.wikibooks.org/wiki/Wikibooks_portal" rel="nofollow">Wikibooks</a>? I've noticed quite a few programming-related books on there.</p>
http://stackoverflow.com/questions/262255/why-isnt-all-government-sponsored-software-open-source/262327#2623270Answer by Ogre Psalm33 for Why isn't all government sponsored software open source?Ogre Psalm332008-11-04T16:20:11Z2008-11-04T16:20:11Z<p>For US government-sponsored projects which are broadly applicable, I commonly see a license like this:</p>
<p>Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so.</p>
<p>(That's the license for <a href="http://clipsrules.sourceforge.net/" rel="nofollow">CLIPS</a>).</p>
<p>For other stuff, I think it's a matter of specialization, safety, etc. For example, working on the space shuttle program, there's no great reasons to "open source" the software that flies the shuttle. The software is highly specialized (who's going to build their own shuttle?), and they probably don't want to roll in anonymous community changes because of flight safety issues.</p>
http://stackoverflow.com/questions/258954/java-out-with-the-old-in-with-the-new/259441#2594417Answer by Ogre Psalm33 for Java: Out with the Old, In with the New ...Ogre Psalm332008-11-03T18:04:23Z2008-11-03T18:04:23Z<p>Generic collections make coding much more bug-resistant.
OLD:</p>
<pre><code>Vector stringVector = new Vector();
stringVector.add("hi");
stringVector.add(528); // oops!
stringVector.add(new Whatzit()); // Oh my, could spell trouble later on!
</code></pre>
<p>NEW:</p>
<pre><code>ArrayList<String> stringList = new ArrayList<String>();
stringList.add("hello again");
stringList.add(new Whatzit()); // Won't compile!
</code></pre>
http://stackoverflow.com/questions/251778/misused-design-patterns/251823#2518234Answer by Ogre Psalm33 for Misused design patternsOgre Psalm332008-10-30T21:21:00Z2008-10-30T21:21:00Z<p>Actually, what I see most often is the <em>lack</em> of use of an appropriate pattern. Typical scenario: me: "Hey, module A already has a piece of code that loops through a set of objects and performs database operation X on them, why didn't you reuse that code?" coder: "well, but I had to do operation Y on those objects." me: "what about using refactoring it to use the Command pattern to execute X or Y as appropriate?"</p>
<p>I once saw usage of the Subject-Observer pattern get out of hand. It was implemented between processes using the database to persistently store the Subject. Because of the sheer number of updates to the subject, and the number of observers, the load on the database was tremendous, and caused an unforeseen system-wide slowdown.</p>
http://stackoverflow.com/questions/650098/how-to-execute-an-sql-script-file-using-c/1728859#1728859Comment by Ogre Psalm33 on How to execute an .SQL script file using c#Ogre Psalm332009-12-02T13:31:04Z2009-12-02T13:31:04ZGreat! This solution worked for me for being able to drop and recreate a database, and add tables (via the referenced SQL script file).http://stackoverflow.com/questions/1579605/what-does-error-ora-12571-tnspacket-writer-failure-mean-in-a-web-service/1582890#1582890Comment by Ogre Psalm33 on What does error ORA-12571 (TNS:packet writer failure) mean in a Web Service?Ogre Psalm332009-11-24T21:46:27Z2009-11-24T21:46:27ZSome additional information, in case anyone else ever stumbles across this issue. The above fix (updating the Oracle driver to 9.2) helped on our "test" server, but did not fix the production server. We are using NHibernate as our ORM solution, and we eventually discovered that the test server and production server had different versions of .NET (.NET 3.5 SP1 vs .NET 3.5 w/no SP). We updated the prod server with .NET 3.5 SP1, and voila, the issue went away on there as well. Long story short: (Web Service using NHibernate), we had to update Oracle to 9.2 and .NET to 3.5 SP1.http://stackoverflow.com/questions/988848/predicting-that-the-program-will-crash/988874#988874Comment by Ogre Psalm33 on Predicting that the program will crashOgre Psalm332009-11-11T14:52:24Z2009-11-11T14:52:24ZNice - I always like seeing some code samples when someone answers a question.http://stackoverflow.com/questions/1662600/why-does-visual-studio-2008-tell-me-9-8999999999999995-0-000000000000000555/1663725#1663725Comment by Ogre Psalm33 on Why does Visual Studio 2008 tell me .9 - .8999999999999995 = 0.00000000000000055511151231257827?Ogre Psalm332009-11-02T22:04:24Z2009-11-02T22:04:24ZLOL. Significand, mantissa, and addle-pate all used in reference to the same question! Vocabulary overload!http://stackoverflow.com/questions/163246/sql-server-equivalent-to-oracles-create-or-replace-view/939013#939013Comment by Ogre Psalm33 on Sql Server equivalent to Oracle's CREATE OR REPLACE VIEWOgre Psalm332009-11-02T20:15:52Z2009-11-02T20:15:52ZI don't think the question was intended as a DB comparison question. I got here via a Google search for 'sql server create or replace', formerly being an Oracle SQL developer, now finding himself in a SQL Server world trying to figure out how to do things.http://stackoverflow.com/questions/1565847/declaring-a-looooong-single-line-string-in-c/1598480#1598480Comment by Ogre Psalm33 on Declaring a looooong single line string in C#Ogre Psalm332009-10-21T14:49:48Z2009-10-21T14:49:48ZAh, @280Z28 is of course correct! I added some clarification as to when to use the StringBuilder approach (when you have variables mixed in with your ltierals).http://stackoverflow.com/questions/1579605/what-does-error-ora-12571-tnspacket-writer-failure-mean-in-a-web-service/1582890#1582890Comment by Ogre Psalm33 on What does error ORA-12571 (TNS:packet writer failure) mean in a Web Service?Ogre Psalm332009-10-19T13:06:55Z2009-10-19T13:06:55ZThis is closest to the actual solution, and got me thinking down the right path. The real problem was that the Oracle driver on our production server is only an Oracle 8.x driver, but the database that the Web Service was trying to communicate with was an Oracle 9.2 database. So apparently a driver to database version mismatch can cause the ORA-12571 error. If you want to edit your answer to include driver version mismatch as a possible cause, it might be helpful to future persons searching for a similar solution. :-)http://stackoverflow.com/questions/1579605/what-does-error-ora-12571-tnspacket-writer-failure-mean-in-a-web-service/1582859#1582859Comment by Ogre Psalm33 on What does error ORA-12571 (TNS:packet writer failure) mean in a Web Service?Ogre Psalm332009-10-19T13:01:45Z2009-10-19T13:01:45ZAha, you are very much correct! I was thinking my client was incorrectly configured for the web service, but the real problem was the web service itself not communicating correctly to Oracle.http://stackoverflow.com/questions/1579605/what-does-error-ora-12571-tnspacket-writer-failure-mean-in-a-web-serviceComment by Ogre Psalm33 on What does error ORA-12571 (TNS:packet writer failure) mean in a Web Service?Ogre Psalm332009-10-16T20:23:25Z2009-10-16T20:23:25ZYep, that was the first link I found, that's where I got the "loose cable connection" and "IP address conflict" rabbit-trail answers from.http://stackoverflow.com/questions/1565847/declaring-a-looooong-single-line-string-in-c/1565877#1565877Comment by Ogre Psalm33 on Declaring a looooong single line string in C#Ogre Psalm332009-10-14T17:20:35Z2009-10-14T17:20:35ZI'm not sure there's enough context in the question to determine the situation. Is this a one-off message at application start-up? Or is it a log message in a method being called 100 times a second? In that case, performance matters. Reference actual performance measurements: <a href="http://blog.briandicroce.com/2008/02/04/stringbuilder-vs-string-performance-in-net/" rel="nofollow">blog.briandicroce.com/2008/02/…</a>http://stackoverflow.com/questions/1565847/declaring-a-looooong-single-line-string-in-c/1565877#1565877Comment by Ogre Psalm33 on Declaring a looooong single line string in C#Ogre Psalm332009-10-14T12:40:53Z2009-10-14T12:40:53ZDunno why this response was rated so low. It has example code, and using StringBuilder is a good practice to be in, as over many concatenations, it is more efficient.http://stackoverflow.com/questions/560084/session-variables-in-asp-net-mvc/560115#560115Comment by Ogre Psalm33 on Session variables in ASP.NET MVCOgre Psalm332009-10-06T20:06:50Z2009-10-06T20:06:50ZGah! I read this too late! I already wrote my own wrapper class to generically wrap Session or Context-type data!http://stackoverflow.com/questions/673324/asp-net-mvc-viewmodel-object-and-session-variables/1385958#1385958Comment by Ogre Psalm33 on ASP.net MVC - ViewModel object and Session variablesOgre Psalm332009-10-06T19:50:17Z2009-10-06T19:50:17ZThis is how I had to accomplish the same thing. User performs a search, then edits one of the items from the search, possibly a sequence of multiple pages, and in the end must be returned the original search results. Session variable for the win.http://stackoverflow.com/questions/1396191/what-should-every-developer-know-about-legal-matters/1448419#1448419Comment by Ogre Psalm33 on What should every developer know about legal matters?Ogre Psalm332009-09-21T21:42:31Z2009-09-21T21:42:31ZOk, we all know the "ask a lawyer" responses are (hopefully) common sense when it comes down to the details. That aside, this is an excellent summary answer...the KDE matrix link alone is a very handy reference!http://stackoverflow.com/questions/789275/asp-net-mvc-routing-different-link-in-development-than-in-hosting-environment/789351#789351Comment by Ogre Psalm33 on ASP.NET - MVC Routing - Different link in development than in hosting environment.Ogre Psalm332009-09-21T15:11:41Z2009-09-21T15:11:41ZThis was a helpful answer to me as well--deploying mvc applications to an IIS 6.0 server within our company, but where I don't have permissions to tweak the file extension mappings. I added the .aspx extension to my RegisterRoutes method in Global.asax.cs, and "voila!" it works!