User Juan Manuel - Stack Overflow most recent 30 from stackoverflow.com 2009-12-10T12:11:00Z http://stackoverflow.com/feeds/user/1782 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1820616/deserializing-an-xml-stream-with-invalid-values 0 Deserializing an xml stream with invalid values Juan Manuel 2009-11-30T15:48:56Z 2009-11-30T16:26:02Z <p>I'm calling a "web service" that gives me as an xml response an invalid node, so when I try to deserialize it, it throws an exception.</p> <p>I'm using the XmlSerializer class, like so:</p> <pre><code>internal class Response&lt;T&gt; { public Response(byte[] xml) { XmlSerializer s = new XmlSerializer(typeof(T)); XmlReader reader = XmlReader.Create(new MemoryStream(xml)); if (s.CanDeserialize(reader)) this.ActualResponse = (T)s.Deserialize(reader); } public T ActualResponse { get; private set; } } </code></pre> <p>and the node I'm having trouble with looks something like this:</p> <pre><code>&lt;autorizacion&gt;FALSE&lt;/autorizacion&gt; </code></pre> <p>The exception I get is</p> <blockquote> <p>System.InvalidOperationException: There is an error in XML document (7, 35). ---> System.FormatException: The string 'FALSE' is not a valid Boolean value..</p> </blockquote> <p>Which is obvious.</p> <p>The question is, how can I deserialize it without having to iterate through all nodes, building my response entity by hand? Is there a way? </p> <p>I don't have control over the server</p> http://stackoverflow.com/questions/1261319/drag-and-drop-files-into-vs-2008-in-win-7 2 Drag and drop files into VS 2008 in Win 7 Juan Manuel 2009-08-11T15:58:22Z 2009-11-27T14:31:17Z <p>I installed VS 2008 Team System on a brand new Windows 7 installation, and I can't drag and drop files to it to open them (ie: .config files)</p> <ul> <li>I could do this on Windows XP</li> <li>I can open them from the File -> Open menu</li> </ul> <p>Do you know of any setting I might be missing? I already had a lot of fun with UAC and having to run VS as an administrator (even though I am one on the local machine) and a lot of other small stuff that's new on windows 7.</p> http://stackoverflow.com/questions/1261319/drag-and-drop-files-into-vs-2008-in-win-7/1808775#1808775 1 Answer by Juan Manuel for Drag and drop files into VS 2008 in Win 7 Juan Manuel 2009-11-27T13:27:05Z 2009-11-27T13:27:05Z <p>I think <a href="http://serverfault.com/questions/39600">this is the issue</a>, I am now debating over disabling UAC, disabling <a href="http://en.wikipedia.org/wiki/User%5FInterface%5FPrivilege%5FIsolation" rel="nofollow">UIPI</a> (although I wouldn't want to compromise the system), or just plain living with it.</p> <p>I'm open to other suggestions as well.</p> http://stackoverflow.com/questions/44737/is-there-a-plugin-for-targetting-net-1-1-with-vs-2008 2 Is there a plugin for targetting .NET 1.1 with VS 2008? Juan Manuel 2008-09-04T20:46:51Z 2009-11-26T12:27:44Z <p>Question in the title...</p> http://stackoverflow.com/questions/58640/great-programming-quotes/1785398#1785398 4 Answer by Juan Manuel for Great programming quotes Juan Manuel 2009-11-23T19:26:10Z 2009-11-23T19:26:10Z <blockquote> <p>Deleted code is debugged code.</p> </blockquote> <p>Jeff Sickel</p> http://stackoverflow.com/questions/30067/should-i-migrate-to-asp-net-mvc 25 Should I migrate to ASP.NET MVC? Juan Manuel 2008-08-27T13:20:15Z 2009-11-19T16:56:09Z <p>Hello, I just listened to the StackOverflow team's 17th podcast, and they talked so highly of <a href="http://www.asp.net/mvc/" rel="nofollow">ASP.NET MVC</a> that I decided to check it out.</p> <p>But first, I want to be sure it's worth it. I already created a base web application (for other developers to build on) for a project that's starting in a few days and wanted to know, based on your experience, if I should take the time to learn the basics of MVC and re-create the base web application with this model.</p> <p>Are there really big pros that'd make it worthwhile?</p> <p>EDIT: It's not an existing project, it's a project about to start, so if I'm going to do it it should be now...</p> http://stackoverflow.com/questions/1708415/connecting-to-a-remote-queue-via-the-hosts-file 0 Connecting to a remote queue via the hosts file Juan Manuel 2009-11-10T14:36:39Z 2009-11-17T13:37:42Z <p>I have different environments for my application (Dev -> Test -> Prod), and I'm using MSMQ.</p> <p>I also have the name of the queues (they are remote queues) I use via config files, in the following format:</p> <pre><code>FormatName:Direct=SERVER_NAME\Private$\MY_QUEUE </code></pre> <p>My problem is that SERVER_NAME is different in the different environments, and I'd like to delegate that problem to the server (ie: for databases I have aliases with the same name in all 3 servers, and they each point to the actual db server)</p> <p>I tried adding the queue server to the hosts file, but it failed with the following error:</p> <blockquote> <p>The queue does not exist or you do not have sufficient permissions to perform the operation.</p> </blockquote> <p>I tried <code>FormatName:Direct</code>, <code>FormatName:OS</code>, and <code>FormatName:TCP</code></p> <p>Any help (workaround, new ideas, how to make that work) would be highly appreciated.</p> <p><em>The objective is to have a single config file that would work in all environments.</em></p> http://stackoverflow.com/questions/128047/motivations-for-choosing-a-career-in-programming 9 Motivations for choosing a career in programming Juan Manuel 2008-09-24T16:01:44Z 2009-11-09T17:22:20Z <p>I've been teaching for a couple of years now a course for high school students (not always computing-oriented schools) using some gaming framework.</p> <p>This has been very useful for trying to get them to pursue a career in the field (which is one of the goals), showing them that programming is not only making bussiness, boring applications.</p> <p>What other aspects of programming can I show them? Besides gaming and bussiness programming?</p> <p>Or to put it other way: What other applications of programming are there in the world besides those two fields?</p> http://stackoverflow.com/questions/529098/removing-duplicate-rows-from-table-in-oracle 1 Removing duplicate rows from table in Oracle Juan Manuel 2009-02-09T17:34:43Z 2009-11-09T06:18:36Z <p>Hi, I'm testing something in Oracle and populated a table with some sample data, but in the process I accidentally loaded duplicate records, so now I can't create a primary key using some of the columns.</p> <p>How can I delete all duplicate rows and leave only one of them? This is in Oracle</p> <p>Thanks</p> http://stackoverflow.com/questions/17125/what-are-real-life-applications-of-yield 5 What are real life applications of yield? Juan Manuel 2008-08-19T22:45:19Z 2009-11-07T11:05:37Z <p>I know what <code>yield</code> does, and I've seen a few examples, but I can't think of real life applications, have you used it to solve some specific problem?</p> <p>(Ideally some problem that cannot be solved some other way)</p> http://stackoverflow.com/questions/1688000/how-can-i-calculate-how-many-nights-are-there-in-a-date-range 1 How can I calculate how many nights are there in a date range? Juan Manuel 2009-11-06T14:36:33Z 2009-11-06T14:39:54Z <p>I need to calculate the quantity of nights (stay at a hotel) from the checkin and checkout dates.</p> <p>What is the best way to do it?</p> <p>ie: If I have</p> <pre><code>Checkin: 12/11/2009 15:00 hs Checkout: 14/11/2009 12:00 hs </code></pre> <p>Doing <code>(Checkout - Checkin).Days</code> would give me 1 night instead of 2</p> <p>I'm thinking of adding a simple <code>if</code> to check the hours (if checkin-time is greater than checkout-time) and add the missing night, but maybe there's a better "algorithm"</p> http://stackoverflow.com/questions/865267/access-exchange-e-mail-in-c 3 Access exchange e-mail in C# Juan Manuel 2009-05-14T19:39:01Z 2009-10-19T14:53:40Z <p>Do you know if there's a way?</p> <p>I've used <a href="http://www.codeproject.com/KB/IP/NetPopMimeClient.aspx%20" rel="nofollow">this library</a> to access a pop3 server, but it doesn't work with an exchange server.</p> <p>Do you know of any other library or piece of code that'll show me how to do it?</p> <p>I cannot change any settings on the server.</p> http://stackoverflow.com/questions/33637/how-does-gps-in-a-mobile-phone-work-exactly 2 How does GPS in a mobile phone work exactly? Juan Manuel 2008-08-28T23:29:57Z 2009-10-07T22:16:28Z <p>I assume it doesn't connect to anything (other than the satelite I guess), is this right? Or it does and has some kind of charge?</p> http://stackoverflow.com/questions/948047/symbol-servers 0 Symbol servers Juan Manuel 2009-06-04T00:48:16Z 2009-09-23T07:25:44Z <p>In <a href="http://stackoverflow.com/questions/947401/947608#947608">this answer</a> the user suggests using Symbol Servers.</p> <p>Can anyone explain how they work and how to set it up (if possible) with TFS 2008?</p> <p>Thanks</p> http://stackoverflow.com/questions/25177/sites-for-getting-freelancer-jobs 14 Sites for getting freelancer jobs Juan Manuel 2008-08-24T16:46:59Z 2009-09-19T18:16:40Z <p>Anyone know of more sites to get freelance short jobs to make some extra cash, like <a href="http://www.odesk.com/w/" rel="nofollow">odesk</a>?</p> <p>Any recommendations?</p> http://stackoverflow.com/questions/36533/vista-speech-recognition-in-multiple-languages 3 Vista speech recognition in multiple languages Juan Manuel 2008-08-31T01:08:48Z 2009-09-17T20:38:42Z <p>Hi, my primary language is spanish, but I use all my software in english, including windows; however I'd like to use speech recognition in spanish.</p> <p>Do you know if there's a way to use vista's speech recognition in other language than the primary os language?</p> http://stackoverflow.com/questions/40994/is-google-chromes-v8-engine-really-that-good 3 Is Google Chrome's V8 engine really that good? Juan Manuel 2008-09-03T01:09:04Z 2009-09-17T16:56:11Z <p>Did anyone have time to take a look at it? </p> <p>I've read a bit and it promises a lot, if it's half what they say, it'll change web programming a lot</p> http://stackoverflow.com/questions/558314/exception-handling-in-asp-net-webforms 2 Exception handling in ASP.NET Webforms Juan Manuel 2009-02-17T19:13:59Z 2009-09-14T12:40:15Z <p>What is the preferred method for handling exceptions in ASP.NET Webforms?</p> <p>You have the Page_Error method that you add (I think) at web.config level, and the entire site gets redirected there when an error occurs.</p> <p>Does that mean you shouldn't use try-catch anywhere in a webforms application? (Assuming you don't want to hide any errors)</p> http://stackoverflow.com/questions/19043/is-accepting-an-answer-discouraging-more-answers 10 Is accepting an answer discouraging more answers? [closed] Juan Manuel 2008-08-20T22:59:23Z 2009-08-28T17:48:52Z <p>Sometimes I read a question that has an accepted answer, and I feel I won't add any value if I answer.</p> <p>Should one wait to accept an answer in order not to discourage a potentially better answer?</p> http://stackoverflow.com/questions/121631/inner-join-vs-where 25 Inner join vs Where Juan Manuel 2008-09-23T15:13:28Z 2009-08-27T12:01:36Z <p>Is there a difference in performance (in oracle) between</p> <pre><code>Select * from Table1 T1 Inner Join Table2 T2 On T1.ID = T2.ID </code></pre> <p>And</p> <pre><code>Select * from Table1 T1, Table2 T2 Where T1.ID = T2.ID </code></pre> <p>?</p> http://stackoverflow.com/questions/1330234/why-are-aspx-code-behind-files-declared-as-partial-classes/1330241#1330241 3 Answer by Juan Manuel for Why are aspx code-behind files declared as partial classes? Juan Manuel 2009-08-25T18:53:14Z 2009-08-25T18:53:14Z <p>Because there are other parts of the class (Designer stuff) that's hidden from the developer</p> <p>For example, instead of this</p> <pre><code>public MyBasePage : System.Web.UI.Page { ... protected System.Web.UI.Label lblName; protected void Page_Load(object sender, EventArgs e) { } ... } </code></pre> <p>ASP.NET creates those declarations in different physical files, leaving this</p> <pre><code>public partial class MyBasePage : System.Web.UI.Page { ... protected void Page_Load(object sender, EventArgs e) { } ... } </code></pre> <p>More info:</p> <ul> <li><a href="http://davidhayden.com/blog/dave/archive/2005/01/19/783.aspx" rel="nofollow">http://davidhayden.com/blog/dave/archive/2005/01/19/783.aspx</a></li> </ul> http://stackoverflow.com/questions/1313673/execute-powershell-as-an-administrator-from-c/1313679#1313679 4 Answer by Juan Manuel for Execute PowerShell as an administrator from C# Juan Manuel 2009-08-21T18:57:58Z 2009-08-21T18:57:58Z <p>Check <a href="http://www.codeproject.com/KB/cs/zetaimpersonator.aspx" rel="nofollow">this</a> out</p> <p>You need to impersonate as an administrator to do it (you will of course need administrator credentials)</p> <p>Check that article, that also comes with code ready to use (I've used it and it works great)</p> <p>Basically, you need to do this:</p> <pre><code>using ( new Impersonator( "myUsername", "myDomainname", "myPassword" ) ) { using (RunspaceInvoke invoker = new RunspaceInvoke()) { invoker.Invoke("Set-ExecutionPolicy Unrestricted"); } } </code></pre> http://stackoverflow.com/questions/58640/great-programming-quotes/1312747#1312747 7 Answer by Juan Manuel for Great programming quotes Juan Manuel 2009-08-21T15:43:04Z 2009-08-21T15:43:04Z <p>“Most software today is very much like an Egyptian pyramid with millions of bricks piled on top of each other, with no structural integrity, but just done by brute force and thousands of slaves.”</p> <p>-- Alan Kay</p> http://stackoverflow.com/questions/1308803/why-is-cloning-in-net-so-difficult 9 Why is cloning (in .NET) so difficult? Juan Manuel 2009-08-20T21:04:55Z 2009-08-20T21:15:21Z <p>In the past I had the need to clone objects, only to find that they don't implement a <code>Clone()</code> method, forcing me to do it by hand (create a new instance and copy all properties from the original to the new one)</p> <p>Why isn't cloning as easy as duplicating the memory block the object is allocated in, and thus have the <code>Clone</code> method in the <code>object</code> class, having all classes in .NET inherit it?</p> http://stackoverflow.com/questions/1240373/how-to-get-current-username-in-net-using-c/1240379#1240379 6 Answer by Juan Manuel for how to get current username in .net using c#? Juan Manuel 2009-08-06T17:41:07Z 2009-08-06T17:41:07Z <pre><code>string userName = System.Security.Principal.WindowsIdentity.GetCurrent().Name; </code></pre> http://stackoverflow.com/questions/18871/what-is-the-biggest-vs-solution-youve-ever-seen 5 What is the biggest VS "solution" you've ever seen? Juan Manuel 2008-08-20T21:16:57Z 2009-07-30T19:20:09Z <p>I once worked for a bank, and the solution contained 40 projects. It was .NET 1.1 and took forever to compile.</p> http://stackoverflow.com/questions/1183301/problem-with-lseek 0 Problem with lseek Juan Manuel 2009-07-25T23:04:04Z 2009-07-26T18:04:47Z <p>Hi, I have the following code in C</p> <pre><code>long from = atol(buffer); printf("From: %ld\n", from); int file_fd = open(fullPath, O_RDONLY); if (file_fd == -1) error("Error opening file"); if (from &gt; -1) { int a = lseek(file_fd, from, SEEK_SET); if (a == -1) error("Error in lseek"); } </code></pre> <p>The lseek operation is returning <strong>Error in lseek: Invalid argument</strong>, as a result of</p> <pre><code>void error(char *msg) { perror(msg); exit(1); } </code></pre> <p>Do you have any idea how can I debug it so I can find out what's wrong? I thought it was very trivial but it's driving me crazy.</p> <p>Thanks</p> http://stackoverflow.com/questions/1166164/is-username-one-word-or-two/1166174#1166174 0 Answer by Juan Manuel for Is "username" one word or two? Juan Manuel 2009-07-22T15:38:58Z 2009-07-22T15:38:58Z <p>I always use <strong>userName</strong></p> http://stackoverflow.com/questions/591556/popups-with-complex-functionality-using-jquery 0 Popups with complex functionality using jQuery Juan Manuel 2009-02-26T17:31:29Z 2009-07-21T15:48:42Z <p>I am using jQuery to simulate a popup, where the user will select a series of filters, which I hope to use to rebind a ListView in the original window.</p> <p>The "popup" is opened via an ajax request and the content is actually a diferent aspx file (the rendered output is injected into a div that acts as the popup).</p> <p>I have another ListView in this popup, and it has pagination.</p> <p>My problem is that since the popup is in reality html content inside a div in the same page, when I try to paginate, the whole page postbacks and is replaced with the aspx that has the filters.</p> <p>How can I fix this? I tried using an update panel to contain the ListView but it didn't work.</p> http://stackoverflow.com/questions/1150111/algortihm-to-determine-weak-good-strong-password/1150114#1150114 2 Answer by Juan Manuel for Algortihm to determine weak/good/strong password Juan Manuel 2009-07-19T15:24:49Z 2009-07-19T15:24:49Z <p><a href="http://simplythebest.net/scripts/ajax/ajax%5Fpassword%5Fstrength.html" rel="nofollow">Here</a>'s one and <a href="http://phiras.wordpress.com/2007/04/08/password-strength-meter-a-jquery-plugin/" rel="nofollow">another</a></p> http://stackoverflow.com/questions/591694/url-encoded-slash-in-url Comment by Juan Manuel on URL-encoded slash in URL Juan Manuel 2009-12-03T19:31:29Z 2009-12-03T19:31:29Z What happens if the original string contained a &quot;-&quot; or a &quot;_&quot;? http://stackoverflow.com/questions/1842133/encrypting-and-urlencoding-text-with-a-slash Comment by Juan Manuel on Encrypting and urlencoding text with a slash Juan Manuel 2009-12-03T19:30:08Z 2009-12-03T19:30:08Z I read them, but still don't understand how to workaround it http://stackoverflow.com/questions/1842133/encrypting-and-urlencoding-text-with-a-slash Comment by Juan Manuel on Encrypting and urlencoding text with a slash Juan Manuel 2009-12-03T19:17:31Z 2009-12-03T19:17:31Z I see... they should improve search, as I couldn't find those questions when I searched http://stackoverflow.com/questions/1820616/deserializing-an-xml-stream-with-invalid-values/1820670#1820670 Comment by Juan Manuel on Deserializing an xml stream with invalid values Juan Manuel 2009-11-30T15:59:21Z 2009-11-30T15:59:21Z Could you provide an example? http://stackoverflow.com/questions/1820616/deserializing-an-xml-stream-with-invalid-values/1820633#1820633 Comment by Juan Manuel on Deserializing an xml stream with invalid values Juan Manuel 2009-11-30T15:52:35Z 2009-11-30T15:52:35Z Can you give me a little more detail? http://stackoverflow.com/questions/1261319/drag-and-drop-files-into-vs-2008-in-win-7/1809110#1809110 Comment by Juan Manuel on Drag and drop files into VS 2008 in Win 7 Juan Manuel 2009-11-27T14:44:33Z 2009-11-27T14:44:33Z I had answered it myself because no one had, but I'm switching the accepted answer from mine as this is more complete. http://stackoverflow.com/questions/1261319/drag-and-drop-files-into-vs-2008-in-win-7/1808775#1808775 Comment by Juan Manuel on Drag and drop files into VS 2008 in Win 7 Juan Manuel 2009-11-27T14:15:06Z 2009-11-27T14:15:06Z I have web projects hosted in iis, one of the cases it is http://stackoverflow.com/questions/1770260/what-kind-of-bird-is-this/1770272#1770272 Comment by Juan Manuel on What kind of bird is this? Juan Manuel 2009-11-20T15:07:37Z 2009-11-20T15:07:37Z -1 for answering joke questions http://stackoverflow.com/questions/1756359/which-people-should-be-followed-up-to-learn-more-on-c-and-net Comment by Juan Manuel on Which people should be followed up to learn more on C# and .NET? Juan Manuel 2009-11-18T14:32:21Z 2009-11-18T14:32:21Z * suggestion = suggesting http://stackoverflow.com/questions/1756359/which-people-should-be-followed-up-to-learn-more-on-c-and-net Comment by Juan Manuel on Which people should be followed up to learn more on C# and .NET? Juan Manuel 2009-11-18T14:31:49Z 2009-11-18T14:31:49Z 4 minutes, 4 answers suggestion Jon Skeet... oh, the humanity... http://stackoverflow.com/questions/1756359/which-people-should-be-followed-up-to-learn-more-on-c-and-net/1756378#1756378 Comment by Juan Manuel on Which people should be followed up to learn more on C# and .NET? Juan Manuel 2009-11-18T14:31:05Z 2009-11-18T14:31:05Z You <i>can</i> delete answers... http://stackoverflow.com/questions/1756359/which-people-should-be-followed-up-to-learn-more-on-c-and-net/1756378#1756378 Comment by Juan Manuel on Which people should be followed up to learn more on C# and .NET? Juan Manuel 2009-11-18T14:29:32Z 2009-11-18T14:29:32Z The first poster didn't http://stackoverflow.com/questions/1708415/connecting-to-a-remote-queue-via-the-hosts-file/1747458#1747458 Comment by Juan Manuel on Connecting to a remote queue via the hosts file Juan Manuel 2009-11-17T13:37:15Z 2009-11-17T13:37:15Z Excellent, I can replace the string to connect to the queue with the ip by reading it with the Dns class! http://stackoverflow.com/questions/1708415/connecting-to-a-remote-queue-via-the-hosts-file/1710859#1710859 Comment by Juan Manuel on Connecting to a remote queue via the hosts file Juan Manuel 2009-11-10T20:24:07Z 2009-11-10T20:24:07Z Interesting suggestion, hadn't thought of that http://stackoverflow.com/questions/1708415/connecting-to-a-remote-queue-via-the-hosts-file/1710370#1710370 Comment by Juan Manuel on Connecting to a remote queue via the hosts file Juan Manuel 2009-11-10T20:22:53Z 2009-11-10T20:22:53Z I tried all that, as it says in my question...