Ogre Psalm33

1,069
reputation
183 views

Registered User

name Ogre Psalm33
member for 1 year
seen 17 mins ago
website
location Florida, USA
age 42
The way of a foolish programmer seems right to him,
but a wise man listens to advice of his fellow coders!
  -Proverbs 12:15 (Paraphrased :-)
Dec
9
answered The ProxyFactoryFactory was not configured
Dec
2
comment How to execute an .SQL script file using c#
Great! This solution worked for me for being able to drop and recreate a database, and add tables (via the referenced SQL script file).
Nov
24
comment What does error ORA-12571 (TNS:packet writer failure) mean in a Web Service?
Some 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.
Nov
11
comment Predicting that the program will crash
Nice - I always like seeing some code samples when someone answers a question.
Nov
2
awarded  Critic
Nov
2
comment Sql Server equivalent to Oracle’s CREATE OR REPLACE VIEW
I 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.
Oct
29
revised The most sophisticated way for creating comma-separated Strings from a Collection/Array/List?
Clarified code example (angle-brackets to comment)
Oct
27
revised Declaring a looooong single line string in C#
Minor grammar typo fix
Oct
26
accepted Declaring a looooong single line string in C#
Oct
21
comment Declaring a looooong single line string in C#
Ah, @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).
Oct
21
revised Declaring a looooong single line string in C#
Clarified usage of StringBuilder.
Oct
21
answered Declaring a looooong single line string in C#
Oct
19
comment What does error ORA-12571 (TNS:packet writer failure) mean in a Web Service?
This 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. :-)
Oct
19
comment What does error ORA-12571 (TNS:packet writer failure) mean in a Web Service?
Aha, 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.
Oct
16
comment What does error ORA-12571 (TNS:packet writer failure) mean in a Web Service?
Yep, that was the first link I found, that's where I got the "loose cable connection" and "IP address conflict" rabbit-trail answers from.
Oct
16
asked What does error ORA-12571 (TNS:packet writer failure) mean in a Web Service?
Oct
14
comment Declaring a looooong single line string in C#
I'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: blog.briandicroce.com/2008/02/…
Oct
14
comment Declaring a looooong single line string in C#
Dunno 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.
Oct
12
accepted Secure password solution for a web service authenticating against Active Directory?
Oct
9
awarded  Notable Question
Oct
8
answered Nunit Test Generator
Oct
6
comment Session variables in ASP.NET MVC
Gah! I read this too late! I already wrote my own wrapper class to generically wrap Session or Context-type data!
Oct
6
comment ASP.net MVC - ViewModel object and Session variables
This 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.
Oct
1
answered How to get assembly version of another project from app.config ?
Sep
21
comment What should every developer know about legal matters?
Ok, 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!
Sep
21
comment ASP.NET - MVC Routing - Different link in development than in hosting environment.
This 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!
Sep
18
comment How to handle checkboxes in ASP.NET MVC forms?
Explained in this link: aspnetpro.com/articles/2009/…
Sep
17
awarded  Yearling
Sep
16
comment How Can I Reconstruct URL/Route in ASP.NET MVC From Saved Data?
I'm curious Jason as to what solution you settled on? If you could post that here as another answer, it might be helpful to people like me landing here via google. :-)
Sep
15
comment In Visual Studio, how to visualize code line length for non-test code only?
I've reviewed code where I had to constantly horizontally scroll the diff to look at the differences. Not fun.
Sep
14
comment C# vs Java Enum (for those new to C#)
Nice! This feels only slightly clunky, but is otherwise a very acceptable method for adding extra data to an enum. I'm frankly amazed that it took someone this long to mention this great solution!
Sep
8
accepted ASP.NET MVC: Validation messages set in TryUpdateModel not showning ValidationSummary
Sep
4
revised ASP.NET MVC: Validation messages set in TryUpdateModel not showning ValidationSummary
added 52 characters in body
Sep
1
answered ASP.NET MVC: Validation messages set in TryUpdateModel not showning ValidationSummary
Sep
1
asked ASP.NET MVC: Validation messages set in TryUpdateModel not showning ValidationSummary
Aug
24
awarded  Notable Question
Aug
19
comment More private than private? (C#)
I like this approach! And I could even see the logic behind it. I.e.: Buick.Engine should not care how the parent Car handles Car._engine.
Aug
12
answered How do you mock UnitOfWork from Rhino.Commons?
Aug
12
accepted NHibernate, saving IDictionary : TransientObjectException
Aug
11
comment How do I make TDD in Visual Studio less painful?
I'm glad I'm not the only one who things that about Visual Studio. I'm a recent convert (or conscript) from doing Java development in Eclipse, JDeveloper, NetBeans and now doing C#. I opened Visual Studio for the first time to start writing code and immediately asked "Hey, where's all the standard IDE functionality??" I'm so glad I found ReSharper.
Aug
11
awarded  Notable Question
Aug
10
answered NHibernate, saving IDictionary : TransientObjectException
Aug
7
awarded  Notable Question
Jul
24
awarded  Nice Answer
Jul
22
comment Are functional languages and programming models like MVC just the next big fad?
I've been using MVC in C++ and Java on several large projects for more than 10 years (first as a roll-our-own MVC in C++/Java, then later using Struts in Java). Definitely not a new fad.
Jul
16
revised simple generic list in java
minor fix.
Jul
15
answered simple generic list in java
Jul
14
comment How can I set a css class in Html.TextBox helper?
This is great! I love the fact that google is indexing these pretty well now. I found this solution within 60 seconds of asking myself "how do I set the class attribute?"
Jul
14
comment How to hide (remove) a base class’s methods in C#?
C++ is the definitive "you can do anything you want" language, with a lot of surprising flexibility. Including the flexibility to shoot yourself in the foot, hang yourself, run yourself over with a bus...
Jul
14
comment How to hide (remove) a base class’s methods in C#?
That's a slick idea. This is along the lines of what we're already doing (using NHibernate, MVC, Dependency Injection, ...), so we already have interfaces for the repositories (class C). That keeps the clients of Class C in the dark about what's under-the-covers. All that's left to worry about is how C is implemented. In our case, there will be many "C"-level child classes (repositories for different objects). So our ideal is probably having B be a wrapper/adapter to A. Unfortunately, A has a lot of methods to decide if we want to hide or expose in B.