User Damovisa - Stack Overflowmost recent 30 from stackoverflow.com2009-12-23T05:49:21Zhttp://stackoverflow.com/feeds/user/77546http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1878142/how-can-i-change-the-unit-tests-that-are-run-for-a-particular-build-configuration1How can I change the unit tests that are run for a particular build configuration?Damovisa2009-12-10T01:37:08Z2009-12-10T01:44:00Z
<p>We have a Visual Studio 2008 solution with a large number of projects in it. For the current product, only some of those projects are being used.</p>
<p>We've created a build configuration for that product so we don't have to build every project in the solution.</p>
<p>I want to be able to easily run all the unit tests that are relevant for this build. There are a large number of tests for projects we don't care about at this point. Because those projects aren't in the build, they won't be compiled and therefore we can't test them.</p>
<p>Is there an easier way to define which tests should be run rather than just picking and choosing them from the Test View?</p>
http://stackoverflow.com/questions/1858217/is-this-possible-in-c/1858258#18582581Answer by Damovisa for Is this possible in C#?Damovisa2009-12-07T06:42:19Z2009-12-07T06:42:19Z<p>No, I don't think you can.</p>
<p>Let's assume that BrainsConsumed is an integer (which looks likely). In that case, the parameter is passed by value - all you get is a copy of the integer you're testing. It has no name apart from the one in the local scope (actual).</p>
<p>This similar question may clarify:</p>
<p><a href="http://stackoverflow.com/questions/72121/finding-the-variable-name-passed-to-a-function-in-c">http://stackoverflow.com/questions/72121/finding-the-variable-name-passed-to-a-function-in-c</a></p>
http://stackoverflow.com/questions/1858038/message-box-in-asp-net/1858154#18581542Answer by Damovisa for Message Box in ASP.NET...Damovisa2009-12-07T06:15:13Z2009-12-07T06:30:50Z<p>You could use the <a href="http://msdn.microsoft.com/en-us/library/system.web.ui.page.registerstartupscript.aspx" rel="nofollow"><code>Page.RegisterStartupScript</code></a> method.</p>
<pre><code>if (UpdateProfile())
Page.RegisterStartupScript("startup", "<script>alert('your profile has been updated..');</script>");
</code></pre>
<p><em>Assuming of course that UpdateProfile() does the work and returns a boolean indicating success :)</em></p>
<p>Alternatively (because that method is obsolete), you could use the <a href="http://msdn.microsoft.com/en-us/library/system.web.ui.clientscriptmanager.registerstartupscript.aspx" rel="nofollow"><code>ClientScriptManager.RegisterStartupScript</code></a> method instead.</p>
<pre><code>if (UpdateProfile())
Page.ClientScript.RegisterStartupScript(this.GetType(), "startup", "<script>alert('your profile has been updated..');</script>", false);
</code></pre>
http://stackoverflow.com/questions/1844106/is-there-an-effective-way-to-determine-whether-equals-on-two-different-but-equa0Is there an effective way to determine whether .Equals on two different but "equal" instances will return true?Damovisa2009-12-04T00:33:24Z2009-12-04T07:28:03Z
<p>I'm attempting to use reflection to determine the result of a call to .Equals on two different but "equal" instances of a type.</p>
<p>My method would be something like:</p>
<pre><code>public static bool TypeComparesProperties(Type t)
{
// return true if (an instance of t).Equals(a different instance of t)
// will be true if all publicly accessible properties of the instances
// are the same
}
</code></pre>
<p>By way of example:</p>
<pre><code>string a = "Test";
string b = "Test";
bool areEqual = a.Equals(b); // areEqual will be true
// so:
TypeComparesProperties(typeof(string)); // should return true
</code></pre>
<p>However, given:</p>
<pre><code>public class MyComplexType
{
public int Id { get; set; }
public string MyString { get; set; }
}
MyComplexType a = new MyComplexType {Id = 1, MyString = "Test"};
MyComplexType b = new MyComplexType { Id = 1, MyString = "Test" };
bool areEqual = a.Equals(b); // areEqual will be false
// so:
TypeComparesProperties(typeof(MyComplexType)); // should return false
</code></pre>
<p>If I implemented <code>IEquatable<MyComplexType></code> on my class as follows, I'd get true instead:</p>
<pre><code>public class MyComplexType : IEquatable<MyComplexType>
{
public int Id { get; set; }
public string MyString { get; set; }
public bool Equals(MyComplexType other)
{
return (Id.Equals(other.Id) && MyString.Equals(other.MyString));
}
}
</code></pre>
<p>I figure I can probably do it by instantiating two instances using reflection, then setting all properties to appropriately typed default values. That's a lot of work though and a lot of overhead, and I think I'd run into problems if there was no empty constructor on the type.</p>
<p>Any other ideas?</p>
<p><hr></p>
<p><strong>Edit:</strong></p>
<p>It seems that people are confused by my intentions. I apologise. Hopefully this will clarify:</p>
<p>I have a method which should compare two objects to the best of its abilities. Simply calling .Equals() won't suffice, because either:</p>
<ol>
<li>The objects will be value types or will implement IEquatable in a nice way and I'll get a true response. Great!</li>
<li>The objects may have all the same properties and be "equal", but because they're different instances, I'll get a false response. <strong>I can't tell whether this false is because the objects are not "equal", or because they're just different instances</strong>.</li>
</ol>
<p>So in my mind, the comparison method should:</p>
<ol>
<li>Examine the object type to see whether it's <code>Equals</code> method will return true for two different instances with the same public properties.</li>
<li>If so, call the <code>Equals</code> method and return the result</li>
<li>If not, have a look at all the properties and fields and compare them as well as I can to determine whether they're equal</li>
</ol>
<p>Now, I understand that I could just skip to step 3, but if there's a way to determine ahead of time whether it's necessary, that'd be a time-saver.</p>
<p><hr></p>
<p><strong>Edit 2:</strong></p>
<p>I'm gonna close this for a couple of reasons:</p>
<ol>
<li>The more I talk about it, the more I realise that what I asked isn't what I really wanted to do</li>
<li>Even if I did want to do this, there's no real shortcut at all. RE the earlier edit, I should just skip to step 3 anyway.</li>
</ol>
<p>Thanks all for your input.</p>
http://stackoverflow.com/questions/1830349/how-can-i-get-a-new-array-from-the-second-item-onwards-in-c2How can I get a new array from the second item onwards in c#?Damovisa2009-12-02T02:43:35Z2009-12-02T03:07:41Z
<p>I originally had this code which I mistakenly thought would do what I wanted it to:</p>
<pre><code>string firstArg = args[0];
string[] otherArgs = args.Except(new string[] { args[0] }).ToArray();
</code></pre>
<p>However, it seems that the .Except method removes duplicates. So if I was to pass through the arguments <code>a b c c</code>, the result of <code>otherArgs</code> would be <code>b c</code> not <code>b c c</code>.</p>
<p>So how can I get a new array with all the elements from the second element onwards?</p>
http://stackoverflow.com/questions/1829992/asp-net-button-and-jquery-works-together/1830023#18300230Answer by Damovisa for ASP.NET button and Jquery works together?Damovisa2009-12-02T00:55:32Z2009-12-02T00:55:32Z<p>If I interpret your question correctly, you want to post back to the server so you can run your code, and when you return, you want to run some jquery. Is that correct?</p>
<p>If so, you'll need to inject some jquery into the response after you do your work.</p>
<p>So your code-behind will delete a record or run an update, then write some jquery to the response which will run when the page is built on the client. You might want to use the <code>Page.RegisterStartupScript</code> method to do this.</p>
<p>An alternative is to go down the ajax route, but that's a bit more complicated.</p>
http://stackoverflow.com/questions/1817325/asp-net-mvc-2-preview-beta-visual-studio-questions/1818681#18186810Answer by Damovisa for ASP.NET MVC 2 Preview/Beta Visual Studio QuestionsDamovisa2009-11-30T09:10:10Z2009-12-01T00:26:30Z<p>This should help: <a href="http://www.hanselman.com/blog/CheesyASPNETMVCProjectUpgraderForVisualStudio2010Beta1.aspx" rel="nofollow">http://www.hanselman.com/blog/CheesyASPNETMVCProjectUpgraderForVisualStudio2010Beta1.aspx</a></p>
<p><strong>Update</strong></p>
<p>I misread the question. Based on <a href="http://haacked.com/archive/2009/11/17/asp.net-mvc-2-beta-released.aspx" rel="nofollow">this post by Phil Haack</a>, it appears you can't migrate from VS 2010 Beta 2 to ASP.NET MVC 2 Beta:</p>
<blockquote>
<p>Unfortunately, because Visual Studio 2010 Beta 2 and ASP.NET MVC 2 Beta share components which are currently not in sync, running ASP.NET MVC 2 Beta on VS10 Beta 2 is not supported.</p>
</blockquote>
http://stackoverflow.com/questions/1818511/does-entity-framwork-round-off-decimal-value-to-nearest-integer/1818652#18186520Answer by Damovisa for Does Entity Framwork round off decimal value to nearest integer?Damovisa2009-11-30T09:05:26Z2009-11-30T09:05:26Z<p>It shouldn't happen is the short answer.</p>
<p>Similar to what Timothy said, it's likely that one of the following is happening:</p>
<ul>
<li>A property of one of your generated classes is defined as an int while the column is a decimal - you can do this by changing the actual type in the entity designer</li>
<li>Somewhere in your code, you're working with ints rather than decimals. In particular, if you're using implicit typing using <code>var</code>, the compiler could be inferring an integral type rather than a decimal type</li>
</ul>
<p>An example to clarify the second point:</p>
<pre><code>var myNumber = 100; // myNumber will be an int
myNumber = myNumber / 3; // myNumber == 33 (an int)
</code></pre>
<p>Can you post some code to give us a better idea?</p>
http://stackoverflow.com/questions/1818565/c-threading-issue/1818588#18185880Answer by Damovisa for C# threading issueDamovisa2009-11-30T08:53:19Z2009-11-30T08:53:19Z<p>The main reason is that the textbox is not owned by the background thread.</p>
<p>Your UI thread owns all the UI objects, and you're spinning up a background thread when a button is pressed. That background thread should not have access to any UI objects.</p>
<p>If you want the value of the textbox to be used, you'll need to pass it to your background thread another way.</p>
<p><a href="http://social.msdn.microsoft.com/Forums/en-US/Vsexpressvcs/thread/47b693a3-1add-4fc7-8459-4232554c7131" rel="nofollow">Have a look here for an explanation (and solution).</a></p>
http://stackoverflow.com/questions/1692754/how-do-you-go-about-charging-for-building-a-website/1794663#179466330Answer by Damovisa for how do you go about charging for building a websiteDamovisa2009-11-25T04:38:19Z2009-11-30T05:54:31Z<p>My advice would be not to quote until you know exactly what you'll be required to write, and <strong>get the customer to sign-off on the scope</strong>. If they change their mind, make sure they understand your quote is no longer valid and it will cost them more money.</p>
<p>Depending on what's required, you might want to stick to raw html/css, utilise a CMS, or even write a web application from scratch.</p>
<p>Based on the above decision and your previous experiences (if any) with those technologies, you could <strong>categorize each function or page</strong> required so that you can estimate how long it will take. Overestimate rather than underestimate. Add on overhead for styles and layout, and some more for deployment and bug fixes and use that as your basis for estimation.</p>
<p>For example, if you're asked to write a site that has 5 fairly static information pages, 10 pages that the customer needs to be able to update, and two pages with fairly complex functionality (e.g. mapping of outlets and and service calculator), you might break it down as follows:</p>
<ul>
<li>Style and layout overhead: 5 days</li>
<li>Static Pages x 5: 1 day per page = 5 days</li>
<li>Editable Pages x 10: 2 days per page = 20 days</li>
<li>Complex Pages x 2: 6 days per page = 12 days</li>
<li>Deployment and changes: 3 days</li>
<li><strong>Total: 45 days</strong></li>
</ul>
<p>Multiply this by an hourly rate you're happy with, and there's your quote.</p>
<p>That said, if you honestly don't know how long things are going to take, you'll be providing a ballpark estimate anyway. <strong>Make your best effort at estimation (break things down as much as you can)</strong>, provide a quote, and cross your fingers you haven't seriously underestimated it. If that happens, make sure you learn from the mistake.</p>
<p><hr></p>
<p><strong>Update:</strong> I stumbled across blog post from T<a href="http://www.thedesigncubicle.com/" rel="nofollow">he Design Cubicle</a> which you might find useful as well. <a href="http://www.thedesigncubicle.com/2009/11/questions-to-ask-clients-before-designing-their-website/" rel="nofollow">Questions to ask clients before designing their website</a>.</p>
http://stackoverflow.com/questions/1800608/design-pattern-for-adding-attributes-to-a-base-class/1800625#18006251Answer by Damovisa for Design pattern for adding attributes to a base classDamovisa2009-11-25T23:19:23Z2009-11-25T23:24:25Z<p>You might be able to do that if you start with a <em>very modified</em> <a href="http://en.wikipedia.org/wiki/Factory%5Fmethod%5Fpattern" rel="nofollow">factory pattern</a>.</p>
<p>I'd create a base class, and whenever the Type property changes as a result of user input, the factory-ish class (I'll call him Bob) is responsible for returning a class of the specified type. You'd call to Bob, passing in the type and the current object, and Bob would return the specific subtype.</p>
<p>For example:</p>
<pre><code>public class MyBase
{
public string Type { get; set; }
public string CommonProperty { get; set; }
}
public class ExtendedClass : MyBase
{
public string ExtraProperty { get; set; }
}
public static class MyNotFactory
{
public static MyBase Create(MyBase baseObject)
{
switch (baseObject.Type)
{
case "Extended":
return baseObject as ExtendedClass;
break;
default:
return baseObject;
break;
}
}
}
</code></pre>
<p>(Note: I haven't checked the code)</p>
<p><strong>Edit:</strong> You know... it's not really a factory pattern at all now I put it in code... I've renamed stuff.</p>
http://stackoverflow.com/questions/1754106/should-i-start-on-asp-net-mvc-1-or-mvc-2-beta5Should I start on ASP.NET MVC 1 or MVC 2 Beta?Damovisa2009-11-18T06:47:21Z2009-11-24T06:22:31Z
<p>I'm just starting to get into ASP.NET MVC, and saw today that the <a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=4817cdb2-88ea-4af4-a455-f06b4c90fd2c&displaylang=en" rel="nofollow">Beta of version 2 has been released</a>.</p>
<p>Should I start on MVC 1 given that there are already a lot of great resources and tutorials? Or should I go straight to MVC 2 to take advantage of whatever improvements have been made?</p>
<p>I'm thinking about breaking this into another question, but I guess the followup question is what are the major differences? Are the version 1 tutorials appropriate to get me into version 2?</p>
<p><strong>Update:</strong></p>
<p>I thought it was worth updating this question to mention that I started running through <a href="http://nerddinnerbook.s3.amazonaws.com/Intro.htm" rel="nofollow">Scott Guthrie's great NerdDinner tutorial</a>. I highly recommend it.</p>
<p>After running through that, I started using it in my own project and almost immediately hit a snag. I wanted to reuse partials across different areas of my site. If the partial belongs to a different controller, no can do. However, MVC 2 has <code>Html.RenderAction</code> which solves the problem for me.</p>
http://stackoverflow.com/questions/1786971/is-asp-net-mvc-appropriate-for-highly-secure-public-facing-sites1Is ASP.NET MVC appropriate for highly-secure public-facing sites?Damovisa2009-11-24T00:08:20Z2009-11-24T03:37:27Z
<p>I'm looking at using ASP.NET MVC for a current project but I have some concerns regarding security.</p>
<p>The site is public-facing through HTTPS and is required to be very secure. Are there any legitimate reasons why I should avoid ASP.NET MVC? Is there anything I need to be aware of if I go down this path?</p>
http://stackoverflow.com/questions/1752786/what-data-structures-can-i-use-to-represent-a-strongly-typed-2d-matrix-of-data-in-1What data structures can I use to represent a strongly-typed 2D matrix of data in .Net?Damovisa2009-11-18T00:13:47Z2009-11-18T00:39:50Z
<p>I'm trying to represent a scoreboard for a competition and am struggling with the best data structures to use.</p>
<p>I have a list of <code>Player</code> objects, a list of <code>Round</code> objects, and for each combination, I need to store a <code>RoundScore</code> object (there are various parts to the score for a round).</p>
<p>What I'd like is some overall <code>Scoreboard</code> object where the following holds:</p>
<p>1 - I can access a collection of <code>RoundScore</code> objects identified by <code>Round</code> keys by providing a <code>Player</code> object. For example, maybe something like:</p>
<pre><code>public IDictionary<Round,RoundScore> PlayerScores(Player player) { ... }
</code></pre>
<p>2 - I can access a collection of <code>RoundScore</code> objects identified by <code>Player</code> keys by providing a <code>Round</code> object. e.g:</p>
<pre><code>public IDictionary<Player,RoundScore> RoundScores(Round round) { ... }
</code></pre>
<p>3 - I can access a single <code>RoundScore</code> object by providing a <code>Player</code> and a <code>Round</code></p>
<p>4 - I can add a new <code>Round</code> and all <code>Players</code> will get a new <code>RoundScore</code> for that round with default values</p>
<p>5 - Similarly, I can add a new <code>Player</code> and all <code>Rounds</code> will have a new <code>RoundScore</code> for that player with default values</p>
<p><hr></p>
<p>I guess what I'm really looking for is a representation of a grid with <code>Rounds</code> on one axis, <code>Players</code> on the other, and <code>RoundScores</code> in the middle.</p>
<p>Is there any data structure (or combination of data structures) already in .Net that I can use for this or will I have to roll my own?</p>
http://stackoverflow.com/questions/1699205/what-version-control-system-should-i-use-for-my-net-express-edition-projects2What version control system should I use for my .Net Express Edition projects?Damovisa2009-11-09T05:14:22Z2009-11-09T06:16:12Z
<p>I want to start using version control properly for my own personal projects written using Visual Studio 2008 Express Editions. I'm using both <a href="http://www.microsoft.com/express/vcsharp/" rel="nofollow">Visual C# Express Edition</a> and <a href="http://www.microsoft.com/express/vwd/" rel="nofollow">Visual Web Developer Express Edition</a>.</p>
<p>I'm almost always the only developer on these projects.</p>
<p>I've previously used <a href="http://subversion.tigris.org/" rel="nofollow">Subversion</a> with Windows Explorer integration provided by <a href="http://tortoisesvn.tigris.org/" rel="nofollow">Tortoise SVN</a> and it worked well, but obviously source control and development were two separate operations.</p>
<p>Is there a better version control system for my situation?</p>
http://stackoverflow.com/questions/1698738/objectpoolt-or-similar-for-net-already-in-a-library/1698798#16987982Answer by Damovisa for ObjectPool<T> or similar for .NET already in a library?Damovisa2009-11-09T02:24:07Z2009-11-09T02:24:07Z<p>CodeProject has a sample ObjectPool implementation. Have a look <a href="http://www.codeproject.com/KB/recipes/ObjectPooling.aspx" rel="nofollow">here</a>. Alternatively, there are some implementations <a href="http://www.csharphelp.com/archives/archive285.html" rel="nofollow">here</a>, <a href="http://www.c-sharpcorner.com/UploadFile/vmsanthosh.chn/109042007094154AM/1.aspx" rel="nofollow">here</a>, and <a href="http://www.codeguru.com/csharp/.net/net%5Fgeneral/patterns/article.php/c4605/" rel="nofollow">here</a>.</p>
http://stackoverflow.com/questions/810442/whats-the-most-efficient-way-to-determine-whether-an-untrimmed-string-is-empty-i10What's the most efficient way to determine whether an untrimmed string is empty in C#?Damovisa2009-05-01T06:53:15Z2009-11-07T13:37:05Z
<p>I have a string that may have whitespace characters around it and I want to check to see whether it is essentially empty.</p>
<p>There are quite a few ways to do this:</p>
<pre><code>1 if (myString.Trim().Length == 0)
2 if (myString.Trim() == "")
3 if (myString.Trim().Equals(""))
4 if (myString.Trim() == String.Empty)
5 if (myString.Trim().Equals(String.Empty))
</code></pre>
<p>I'm aware that this would usually be a clear case of premature optimization, but I'm curious and there's a chance that this will be done enough to have a performance impact.</p>
<p><strong>So which of these is the most efficient method?</strong></p>
<p><strong>Are there any better methods I haven't thought of?</strong></p>
<p><hr /></p>
<p><strong>Edit:</strong> Notes for visitors to this question:</p>
<ol>
<li><p>There have been some amazingly detailed investigations into this question - particularly from Andy and Jon Skeet.</p></li>
<li><p>If you've stumbled across the question while searching for something, it's well worth your while reading at least Andy's and Jon's posts in their entirety.</p></li>
</ol>
<p>It seems that there are a few very efficient methods and the <em>most</em> efficient depends on the contents of the strings I need to deal with.</p>
<p>If I can't predict the strings (which I can't in my case), Jon's <code>IsEmptyOrWhiteSpace</code> methods seem to be faster generally.</p>
<p>Thanks all for your input. I'm going to select Andy's answer as the "correct" one simply because he deserves the reputation boost for the effort he put in and Jon has like eleventy-billion reputation already.</p>
http://stackoverflow.com/questions/1678215/concerned-with-javascript-calendar/1678346#16783460Answer by Damovisa for Concerned with javascript calendarDamovisa2009-11-05T04:26:03Z2009-11-05T04:26:03Z<p>In the <code>setDate()</code> function (line 142?), the format of the date is being set:</p>
<pre><code>var dateString = month+"-"+day+"-"+year;
// var dateString = day + "-" + month + "-" + year;
dateField.value = dateString;
</code></pre>
<p>just change this format to the format you want:</p>
<pre><code>var dateString = day+"-"+month+"-"+year;
</code></pre>
<p>Also, I assume the date is coming through in the format mm-dd-yyyy rather than mm/dd/yyyy as you suggest.</p>
http://stackoverflow.com/questions/1671848/unique-key-value-collection-in-c/1671915#16719150Answer by Damovisa for unique key value collection in C#Damovisa2009-11-04T05:57:45Z2009-11-04T06:03:17Z<p>So you need some kind of collection with a unique key, and each item within this collection is unique.</p>
<p>So really, you're talking about a dictionary where the value within the dictionary is a unique collection.</p>
<p>Assuming you're only talking about strings, I'd be using something like:</p>
<pre><code>Dictionary<string, HashSet<string>>
</code></pre>
<p>Someone correct me if I'm wrong, but I think the advantage of using these generic structures is you can (right off the bat), do this:</p>
<pre><code>Dictionary<string, HashSet<string>> domains = new Dictionary<string, HashSet<string>>();
domains["Domain1"].Add("Machine1");
</code></pre>
http://stackoverflow.com/questions/784606/large-wcf-web-service-request-failing-with-400-http-bad-request2Large WCF web service request failing with (400) HTTP Bad RequestDamovisa2009-04-24T05:12:56Z2009-11-03T14:24:44Z
<p>I've encountered this apparently common problem and have been unable to resolve it.</p>
<p><strong>If I call my WCF web service with a relatively small number of items in an array parameter (I've tested up to 50), everything is fine.</strong></p>
<p><strong>However if I call the web service with 500 items, I get the Bad Request error.</strong></p>
<p>Interestingly, I've run <a href="http://www.wireshark.org/" rel="nofollow">Wireshark</a> on the server and it appears that the request isn't even hitting the server - the 400 error is being generated on the client side.</p>
<p><strong>The exception is:</strong></p>
<pre><code>System.ServiceModel.ProtocolException: The remote server returned an unexpected response: (400) Bad Request. ---> System.Net.WebException: The remote server returned an error: (400) Bad Request.
</code></pre>
<p><strong>The <code>system.serviceModel</code> section of my client config file is:</strong></p>
<pre><code><system.serviceModel>
<bindings>
<wsHttpBinding>
<binding name="WSHttpBinding_IMyService" closeTimeout="00:01:00"
openTimeout="00:01:00" receiveTimeout="00:10:00" sendTimeout="00:01:00"
bypassProxyOnLocal="false" transactionFlow="false" hostNameComparisonMode="StrongWildcard"
maxBufferPoolSize="524288" maxReceivedMessageSize="2147483647"
messageEncoding="Text" textEncoding="utf-8" useDefaultWebProxy="true"
allowCookies="false">
<readerQuotas maxDepth="32" maxStringContentLength="8192" maxArrayLength="2147483647"
maxBytesPerRead="4096" maxNameTableCharCount="16384" />
<reliableSession ordered="true" inactivityTimeout="00:10:00"
enabled="false" />
<security mode="None">
<transport clientCredentialType="Windows" proxyCredentialType="None"
realm="" />
<message clientCredentialType="Windows" negotiateServiceCredential="true"
establishSecurityContext="true" />
</security>
</binding>
</wsHttpBinding>
</bindings>
<client>
<endpoint address="http://serviceserver/MyService.svc"
binding="wsHttpBinding" bindingConfiguration="WSHttpBinding_IMyService"
contract="SmsSendingService.IMyService" name="WSHttpBinding_IMyService" />
</client>
</system.serviceModel>
</code></pre>
<p><strong>On the server side, my web.config file has the following <code>system.serviceModel</code> section:</strong></p>
<pre><code><system.serviceModel>
<services>
<service name="MyService.MyService" behaviorConfiguration="MyService.MyServiceBehaviour" >
<endpoint address="" binding="wsHttpBinding" bindingConfiguration="MyService.MyServiceBinding" contract="MyService.IMyService">
</endpoint>
<endpoint address="mex" binding="mexHttpBinding" contract="IMetadataExchange"/>
</service>
</services>
<bindings>
<wsHttpBinding>
<binding name="MyService.MyServiceBinding">
<security mode="None"></security>
</binding>
</wsHttpBinding>
</bindings>
<behaviors>
<serviceBehaviors>
<behavior name="MyService.MyServiceBehaviour">
<!-- To avoid disclosing metadata information, set the value below to false and remove the metadata endpoint above before deployment -->
<serviceMetadata httpGetEnabled="true"/>
<!-- To receive exception details in faults for debugging purposes, set the value below to true. Set to false before deployment to avoid disclosing exception information -->
<serviceDebug includeExceptionDetailInFaults="true"/>
</behavior>
</serviceBehaviors>
</behaviors>
</system.serviceModel>
</code></pre>
<p>I've <a href="http://stackoverflow.com/questions/740039/c-wcf-wcf-service-returning-a-404-bad-request-when-sending-an-array-of-items" rel="nofollow">looked at</a> a <a href="http://stackoverflow.com/questions/323551/http-bad-request-error-when-requesting-a-wcf-service-contract" rel="nofollow">fairly large</a> <a href="http://rajaramtechtalk.wordpress.com/2008/05/29/systemservicemodelprotocolexception-the-remote-server-returned-an-unexpected-response-400-bad-request/" rel="nofollow">number</a> of <a href="http://www.stonejunction.com/post/2008/12/01/WCF-Call-gives-400-Bad-Request-response.aspx" rel="nofollow">answers</a> to <a href="http://www.experts-exchange.com/Programming/Languages/.NET/Web%5FServices/Q%5F24002313.html" rel="nofollow">this question</a> with <a href="http://joewirtley.blogspot.com/2007/08/maximum-string-content-length-and.html" rel="nofollow">no success</a>.</p>
<p>Can anyone help me with this?</p>
http://stackoverflow.com/questions/1631184/is-there-a-way-to-analyse-how-a-particular-linq-to-objects-query-will-execute0Is there a way to analyse how a particular Linq-to-objects query will execute?Damovisa2009-10-27T14:26:14Z2009-10-29T05:13:34Z
<p>In the past, I've written Linq to SQL queries that haven't performed well. Using SQL Profiler (or similar) I can look at how my query is translated to SQL by intercepting it at the database.</p>
<p><strong>Is there a way to do this with Linq queries that operate solely on objects?</strong></p>
<p>As an example, consider the following Linq query on a list of edges in a directed graph:</p>
<pre><code>var outEdges = from e in Edges
where e.StartNode.Equals(currentNode) &&
!(from d in deadEdges select d.StartNode).Contains(e.EndNode)
select e;
</code></pre>
<p>That code is supposed to select all edges that start from the current node except for those that can lead to a dead edge.</p>
<p>Now, I have a suspicion that this code is inefficient, but I don't know how to prove it apart from analysing the MSIL that's generated. I'd prefer not to do that.</p>
<p>Does anyone know how I could do this without SQL?</p>
<p><strong>Edit:</strong></p>
<p>When I talk about inefficiency, I mean inefficiency in terms of "Big O" notation or asymptotic notation. In the example above, is the code executing the Linq in O(n) or O(n log m) or even O(n.m)? In other words, what's the complexity of the execution path?</p>
<p>With Linq to SQL, I might see (for example) that the second where clause is being translated as a subquery that runs for each edge rather than a more efficient join. I might decide not to use Linq in that case or at least change the Linq so it's more efficient with large data sets.</p>
<p><strong>Edit 2:</strong></p>
<p><a href="http://stackoverflow.com/questions/1606840/is-there-an-application-for-displaying-some-kind-of-query-plan-for-a-linq-to-obje">Found this post</a> - don't know how I missed it in the first place. Just searching for the wrong thing I guess :)</p>
http://stackoverflow.com/questions/1640970/should-i-start-learning-classic-vb-asp-or-net/1641000#16410005Answer by Damovisa for Should I start learning classic VB/ASP or .NET?Damovisa2009-10-29T00:36:07Z2009-10-29T00:36:07Z<p>As someone who has worked with both, and with people who started with both, I'd recommend learning .Net first.</p>
<p>Why?</p>
<ol>
<li><p>If you learn VB6 or classic ASP, you'll get used to the procedural non-object-oriented way of development. This is not a good thing, particularly if you want to move into different (newer) languages later in your career. I've worked with many people who started in procedural languages and really struggle to think in an object-oriented way. It becomes frustrating for all involved.</p></li>
<li><p>It's much easier to go from a .Net language to Java or C++ or even RoR or really anything that's becoming more popular.</p></li>
<li><p>If you're a .Net developer, you can generally write VB6 or classic ASP code. You lose a bit of what you're used to, but it's not difficult.</p></li>
<li><p>If you learn VB6 and classic ASP you'll probably always be able to find work. Will it be work that interests you? Maybe, maybe not. If you get into .Net though, it's an easier transition to new jobs and interesting problems and even new languages if you're so inclined. Microsoft isn't going to let .Net go, but VB6 and ASP.Net will slowly lose their support and community.</p></li>
</ol>
http://stackoverflow.com/questions/1634748/how-can-i-delete-a-query-string-parameter-in-javascript/1635029#16350290Answer by Damovisa for How can I delete a query string parameter in JavaScript?Damovisa2009-10-28T03:21:30Z2009-10-28T03:21:30Z<p>If you're into jQuery, there are some good query string manipulation plugins:</p>
<ul>
<li><a href="http://www.oakcitygraphics.com/jquery/jqURL/jqURLdemo.html?var1=1&var2=2&var3=3" rel="nofollow">http://www.oakcitygraphics.com/jquery/jqURL/jqURLdemo.html?var1=1&var2=2&var3=3</a></li>
<li><a href="http://plugins.jquery.com/project/query-object" rel="nofollow">http://plugins.jquery.com/project/query-object</a></li>
</ul>
http://stackoverflow.com/questions/1628463/how-to-put-a-c-programm-ex-wpf-or-wf-or-with-mono-under-desctop-icons-like-a/1628475#16284751Answer by Damovisa for How to put a C# programm (ex WPF or WF or with Mono) under desctop Icons (like a wallpaper)?Damovisa2009-10-27T02:31:47Z2009-10-27T23:16:23Z<p>Short answer is you can't really do it (in managed C# anyway). If it's possible, you would need to use Interop, and you'd likely be calling something that Windows doesn't offer as an API.</p>
<p>... although... as Ole Jak mentioned, <a href="http://stardock.com/products/fences" rel="nofollow">Stardock</a> looks to be doing it somehow...</p>
<p>The desktop is its own contained item. The same process handles the icons and the wallpaper "behind" those icons.</p>
<p>You are allowed to change the wallpaper to a different image, and you used to be able to create an <a href="http://en.wikipedia.org/wiki/Active%5FDesktop" rel="nofollow">Active Desktop</a> where HTML content would be displayed, but this was discontinued in Vista.</p>
<p>What are you actually trying to do? Maybe there's another way to achieve a similar result?</p>
http://stackoverflow.com/questions/1631254/what-is-the-best-and-most-modern-way-to-write-web-sites-today/1631304#16313040Answer by Damovisa for What is the best and most modern way to write web sites today?Damovisa2009-10-27T14:44:16Z2009-10-27T14:44:16Z<p>If you were after suggestions as to the language, it's really up to you and very dependent on what functions you need to offer, what languages you're comfortable with, and how cheaply you need to deploy it.</p>
<p>In terms of tools, here are a few of my favourites:</p>
<ul>
<li>Blog - I still can't go past <a href="http://wordpress.org/" rel="nofollow">Wordpress</a>. It's even great for a fairly basic CMS.</li>
<li>CMS - As a .Net developer, <a href="http://www.kentico.com" rel="nofollow">Kentico</a> is one of my favourites. For PHP, it's <a href="http://www.drupal.org" rel="nofollow">Drupal</a> for me.</li>
<li>Hand-rolled HTML and Javascript? - <a href="http://notepad-plus.sourceforge.net" rel="nofollow">Notepad++</a> or <a href="http://www.netbeans.org" rel="nofollow">Netbeans</a>.</li>
</ul>
http://stackoverflow.com/questions/1630904/explanation-of-stackoverflow-when-using-read-on-a-small-file-and-a-questionable-w/1630988#16309880Answer by Damovisa for explanation of stackoverflow when using read on a small file and a questionable workaroundDamovisa2009-10-27T13:57:56Z2009-10-27T13:57:56Z<p>Glancing at the code, I'd suggest that it's because the logic is different.</p>
<p>In the example that works, the <code>read(fd,buffer,MAX)</code> method is being executed twice.</p>
<p>Think of it like:</p>
<pre><code>while (dosomething() != 0 || dosomething() != -1)
{
// some work
}
</code></pre>
<p>This loop will be infinite if the dosomething() method is idempotent, however if the first time you run it within the while statement is different than the second, it will break.</p>
<p>That explains how the execution path differs, but I can't figure out why the first option overflows... I'll think about it and update. (or not - it seems it's been answered!)</p>
http://stackoverflow.com/questions/1629079/test-an-application/1629140#16291400Answer by Damovisa for Test an applicationDamovisa2009-10-27T07:04:15Z2009-10-27T07:04:15Z<p>Here are a few links that should introduce testing for you:</p>
<ul>
<li><a href="http://ix.cs.uoregon.edu/~michal/book/index.html" rel="nofollow">http://ix.cs.uoregon.edu/~michal/book/index.html</a></li>
<li><a href="http://cs.gmu.edu/~offutt/softwaretest/powerpoint/" rel="nofollow">http://cs.gmu.edu/~offutt/softwaretest/powerpoint/</a></li>
<li><a href="http://en.wikipedia.org/wiki/Software%5Ftesting" rel="nofollow">http://en.wikipedia.org/wiki/Software_testing</a></li>
</ul>
<p>But I agree with previous comments - it's an incredibly general question and a very broad area.</p>
http://stackoverflow.com/questions/1628576/jquery-gif-animations/1628664#16286640Answer by Damovisa for jQuery GIF AnimationsDamovisa2009-10-27T03:44:53Z2009-10-27T04:42:54Z<p>If it's going to be constant and not event-driven, I'd recommend using gifs.</p>
<p>If, however, the animation is in response to something happening on the page, or if you only want it to start after everything is loaded, then jquery is probably the way to go.</p>
<p>You should just be able to change the image source (or the position offset if you're using a single image) to change the image. Have a look at <a href="http://stackoverflow.com/questions/251204/delay-jquery-effects">some "pause" options</a> in jQuery to delay changes between images.</p>
<p>Untested example (derived from Simon's answer in the link above):</p>
<pre><code>function chg1() { $('#myimage').attr('src', ''); }
function chg2() { $('#myimage').attr('src', 'image1src.jpg'); }
function chg3() { $('#myimage').attr('src', 'image2src.jpg'); }
function chg4() { $('#myimage').attr('src', 'image3src.jpg'); }
function StartAnimation() {
setTimeout(chg1, 2000); // blank after 2 seconds
setTimeout(chg2, 4000); // img 1 after 4 seconds
setTimeout(chg3, 6000); // img 2 after 6 seconds
setTimeout(chg4, 8000); // img 3 after 8 seconds
setTimeout(StartAnimation, 8000); // start again after 8 seconds
}
StartAnimation(); // start it off
</code></pre>
http://stackoverflow.com/questions/1628485/what-does-in-css-mean/1628504#16285044Answer by Damovisa for What does > in CSS mean?Damovisa2009-10-27T02:41:33Z2009-10-27T02:48:24Z<ul>
<li><code>></code> means a direct child</li>
<li><code>*</code> is a universal selector (everything)</li>
<li><code>:not()</code> means anything except what's in the brackets</li>
<li><code>*[]</code> means anything that matches what's in the square brackets</li>
</ul>
<p>In your case:</p>
<pre><code>body > *:not(.toolbar) // means any element immediately under the body tag that isn't of class .toolbar
body > *[selected="true"] // means any element immediately under the body tag where the selected attribute is "true"
</code></pre>
<p><code>></code> and <code>*</code> are defined in the CSS 2.1 specification. The <code>:not</code> pseudo class and the <code>[]</code> selector are defined in the CSS 3 specification.</p>
<p>See: <a href="http://www.w3.org/TR/CSS21/selector.html" rel="nofollow">http://www.w3.org/TR/CSS21/selector.html</a> and <a href="http://www.w3.org/TR/css3-selectors" rel="nofollow">http://www.w3.org/TR/css3-selectors</a>/ for more info.</p>
http://stackoverflow.com/questions/1622783/javascript-jquery-click-handler-returning-false-to-stop-browser-from-following/1622803#16228030Answer by Damovisa for Javascript + jQuery, click handler returning false to stop browser from following linkDamovisa2009-10-26T02:10:05Z2009-10-26T03:55:13Z<p>You can compress that jquery a bit:</p>
<pre><code>$('a.highlight').click(function() { return false; });
</code></pre>
<p>You should also make sure that:</p>
<ul>
<li>There are no other click handlers registered for those elements later on.</li>
<li>The code you have is attaching after the elements have loaded. If they're not completely loaded, they won't be found in the $('a.highlight') selector. The easiest way to do this is to put your code in a <code>$(document).ready(function() { *** code here *** });</code> block.</li>
</ul>
<p><strong>Edit:</strong> As per other responses - the problem was that <code>this</code> represents a DOM object, while <code>$(this)</code> is a jquery object. To use the .click function to attach a handler, you need a jquery object.</p>
<p>In short, using <code>this</code> inside the each loop won't work with what you're trying to do. You'll need to get a jquery representation by using <code>$(this)</code> instead.</p>
http://stackoverflow.com/questions/1858038/message-box-in-asp-net/1858154#1858154Comment by Damovisa on Message Box in ASP.NET...Damovisa2009-12-08T05:29:36Z2009-12-08T05:29:36Z@DevelopingChris - weird!http://stackoverflow.com/questions/1858217/is-this-possible-in-c/1858268#1858268Comment by Damovisa on Is this possible in C#?Damovisa2009-12-07T13:29:06Z2009-12-07T13:29:06Z@silky - it's a lot more readable to me as <code>steve.BrainsEaten.ShouldBe(0)</code> than <code>Assert.AreEqual(0, steve.BrainsEaten, "steve.BrainsEaten doesn't match expected: 0")</code>http://stackoverflow.com/questions/1858038/message-box-in-asp-net/1858044#1858044Comment by Damovisa on Message Box in ASP.NET...Damovisa2009-12-07T06:16:15Z2009-12-07T06:16:15Z@DevelopingChris - I've never had a problem putting real tags in...http://stackoverflow.com/questions/1817325/asp-net-mvc-2-preview-beta-visual-studio-questions/1818681#1818681Comment by Damovisa on ASP.NET MVC 2 Preview/Beta Visual Studio QuestionsDamovisa2009-12-06T23:19:08Z2009-12-06T23:19:08Z@Baddie - have a look in the GAC. In Windows Explorer, just go to C:\windows\assemblyhttp://stackoverflow.com/questions/1844106/is-there-an-effective-way-to-determine-whether-equals-on-two-different-but-equaComment by Damovisa on Is there an effective way to determine whether .Equals on two different but "equal" instances will return true?Damovisa2009-12-06T23:17:54Z2009-12-06T23:17:54Z@Eric - I'm with you, thanks for that explanation. It took a while to absorb, but I got there!http://stackoverflow.com/questions/1844106/is-there-an-effective-way-to-determine-whether-equals-on-two-different-but-equaComment by Damovisa on Is there an effective way to determine whether .Equals on two different but "equal" instances will return true?Damovisa2009-12-04T07:31:20Z2009-12-04T07:31:20ZThanks for your input - it was a poor question in hindsight. I'll tag Marc's answer as correct because it was the closest to what I actually wanted.http://stackoverflow.com/questions/1844106/is-there-an-effective-way-to-determine-whether-equals-on-two-different-but-equa/1845126#1845126Comment by Damovisa on Is there an effective way to determine whether .Equals on two different but "equal" instances will return true?Damovisa2009-12-04T07:29:10Z2009-12-04T07:29:10ZThis is actually closer to what I really wanted to do. My bad. I've updated my question to clarify.http://stackoverflow.com/questions/1844106/is-there-an-effective-way-to-determine-whether-equals-on-two-different-but-equaComment by Damovisa on Is there an effective way to determine whether .Equals on two different but "equal" instances will return true?Damovisa2009-12-04T07:25:42Z2009-12-04T07:25:42ZYeah, I'm getting the impression that skipping to step 3 is probably the only solution. I'd need to instantiate so I can control the properties set. I'm being passed 2 objects of the same type, but they could have any properties at all. *Honestly, the more I think about it, the more I think that this isn't really what I want to do anyway"...http://stackoverflow.com/questions/1844106/is-there-an-effective-way-to-determine-whether-equals-on-two-different-but-equaComment by Damovisa on Is there an effective way to determine whether .Equals on two different but "equal" instances will return true?Damovisa2009-12-04T06:41:24Z2009-12-04T06:41:24ZI've updated my question with more details.
@Marc - if the objects don't have empty constructors, I can't instantiate them using reflection without passing in parameters. As I don't know what parameters are required, I can't instantiate them.http://stackoverflow.com/questions/1844106/is-there-an-effective-way-to-determine-whether-equals-on-two-different-but-equa/1844684#1844684Comment by Damovisa on Is there an effective way to determine whether .Equals on two different but "equal" instances will return true?Damovisa2009-12-04T03:43:00Z2009-12-04T03:43:00ZThanks Joshua, I understand that, but I need to know whether, for a particular reference type, I <b>can</b> use Equals on it to get an "equality". If I just call Equals on two unknown objects and it returns false, I'm none the wiser.http://stackoverflow.com/questions/1844106/is-there-an-effective-way-to-determine-whether-equals-on-two-different-but-equaComment by Damovisa on Is there an effective way to determine whether .Equals on two different but "equal" instances will return true?Damovisa2009-12-04T01:23:53Z2009-12-04T01:23:53ZIn answer to your question, it's basically an attempt to determine whether a given type is "simple" enough to compare using .Equals. I'm receiving two objects from relatively disparate systems (shared type assembly) and I want to compare them as best I can. If I can't use Equals, I'd want to examine the properties and do my best with comparison.http://stackoverflow.com/questions/1844106/is-there-an-effective-way-to-determine-whether-equals-on-two-different-but-equaComment by Damovisa on Is there an effective way to determine whether .Equals on two different but "equal" instances will return true?Damovisa2009-12-04T01:20:22Z2009-12-04T01:20:22ZRE the Halting Problem, do you mean if I was to recursively call this method on each property looking for equality? Otherwise I can't see how it's equivalent...http://stackoverflow.com/questions/1830349/how-can-i-get-a-new-array-from-the-second-item-onwards-in-c/1830354#1830354Comment by Damovisa on How can I get a new array from the second item onwards in c#?Damovisa2009-12-02T02:46:45Z2009-12-02T02:46:45ZThanks for that - first thing I stumbled across after posting this question!http://stackoverflow.com/questions/1829992/asp-net-button-and-jquery-works-together/1830023#1830023Comment by Damovisa on ASP.NET button and Jquery works together?Damovisa2009-12-02T01:28:02Z2009-12-02T01:28:02ZThen yes, what gWiz said I think - use ScriptManager.RegisterStartupScript. to be honest though, I haven't used update panels before so I don't know. You should probably put things like this in the question :).http://stackoverflow.com/questions/1692754/how-do-you-go-about-charging-for-building-a-website/1794533#1794533Comment by Damovisa on how do you go about charging for building a websiteDamovisa2009-12-02T00:03:15Z2009-12-02T00:03:15Z@David - WRT mockups, I highly recommend Balsamiq (<a href="http://www.balsamiq.com/" rel="nofollow">balsamiq.com</a>).