User - Stack Overflow most recent 30 from stackoverflow.com 2009-12-22T21:23:31Z http://stackoverflow.com/feeds/user/15310 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/256407/what-are-your-biggest-complaints-about-sharepoint 37 What are your biggest complaints about Sharepoint? maxam 2008-11-02T02:18:42Z 2009-12-16T16:08:30Z <p>I'm looking into using SharePoint (WSS 3.0, specifically) for the document library and discussion board functionalities.</p> <p>I'd like to ask those of you who have experience in SP (MOSS or WSS, since we might upgrade in the future) for a list of the items that ticked you off or required a difficult workaround.</p> <p>Here's one from me - I found when I implemented forms authentication that a lot of the built-in integration with Microsoft Office disappeared, and I was also unable to use explorer view.</p> http://stackoverflow.com/questions/283221/source-control-lock-vs-merge 12 Source Control - Lock vs. Merge? maxam 2008-11-12T07:08:34Z 2009-11-17T22:02:34Z <p>A lot of programmers who are used Visual Studio have a hard time adjusting to the fact that in other source control systems, files do not need to be locked/checked out to one developer at any given time.</p> <p>Proponents of merging say that allowing two people to work on the same file speeds up productivity since it eliminates queuing up for the same source file. It also avoids cases where code needs to be written but the source is checked out to a guy who just left on a two-week vacation.</p> <p>Locking advocates say that a lot of risk is introduced when more than one person works on the same file simultaneously. Communication and coordination between team members becomes much more necessary when using the merge model, according to them. Plus, a lot of people seem to mistrust automated merges.</p> <p>What is the most compelling reason for you to use one method over the other?</p> http://stackoverflow.com/questions/768030/simple-httpwebrequest-over-ssl-https-gives-404-not-found-under-c/773003#773003 0 Answer by maxam for Simple HttpWebRequest over SSL (https) gives 404 Not Found under C# maxam 2009-04-21T14:58:13Z 2009-04-21T14:58:13Z <p>This doesn't look like it's a problem with the code, since the URL you gave seems to have a valid SSL cert anyway. </p> <p>Trying your two-line snippet with "https://www.google.com" works, so I suggest setting up a web debugging proxy like Fiddler to compare the HTTP Request fields when using HTTP and HTTPS on servicios.mensario.com/enviomasivo/apip. Are you using a reverse proxy on that site?</p> http://stackoverflow.com/questions/744623/what-to-expect-from-a-sharepoint-job-position/744657#744657 3 Answer by maxam for What to expect from a SharePoint job position. maxam 2009-04-13T17:20:25Z 2009-04-13T17:20:25Z <p>Lots of pain :)</p> <p>It really depends on what the company needs from its Sharepoint site. If it's simple site provisioning, using the built-in templates, you'll have an easy time of it. For more complex work such as non-trivial workflows, you'll end up doing a lot of custom programming, and here's where the pain starts - and don't get me started on testing and deployment!</p> http://stackoverflow.com/questions/744604/moss-requirements-gathering/744644#744644 1 Answer by maxam for MOSS Requirements Gathering maxam 2009-04-13T17:17:06Z 2009-04-13T17:17:06Z <p>A big problem in MOSS is that customers aren't really sure how to organize their data (in terms of sites, subsites, etc.) until user data has accumulated and it's too late to re-organize.</p> <p>UI changes (look-and-feel) are relatively easier, so if you really have to nail down one thing, make sure it's how data is to be organized. Example: Will it be one site collection for each line of business or one big site collection with subsites for each LOB? This also affects how data will be secured, and that's also a big pain to revise later.</p> http://stackoverflow.com/questions/744478/how-to-tell-someone-that-their-programming-methodologies-are-obsolete/744576#744576 4 Answer by maxam for How to tell someone that their programming methodologies are obsolete? maxam 2009-04-13T16:55:07Z 2009-04-13T16:55:07Z <p>Assuming you have the proper authority, you can try creating and enforcing a "Best Practices List" containing some items specifically targeted at their habits - under the guise of code uniformity for the team, of course, not that their way of doing stuff is bad ;)</p> http://stackoverflow.com/questions/744418/how-to-log-http-requests-comming-into-iis/744522#744522 2 Answer by maxam for How to log http requests comming into IIS maxam 2009-04-13T16:41:32Z 2009-04-13T16:41:32Z <p>Have you tried using <a href="http://www.fiddler2.com/Fiddler2/" rel="nofollow">Fiddler</a>? Just use your machine name instead of localhost.</p> http://stackoverflow.com/questions/671077/any-problems-using-samba-as-a-windows-domain-controller 0 Any Problems Using Samba as a Windows Domain Controller? maxam 2009-03-22T14:18:38Z 2009-03-22T15:44:54Z <p>We're looking to run a Windows domain using Samba+OpenLDAP on Ubuntu as a domain controller. The documentation out there is a bit spotty and out of date, especially when it comes to installation, which features are supported, and how well.</p> <p>Once this is set up, we hope to be able to use integrated authentication of our IIS sites (including Sharepoint) against the domain controller.</p> <p>Anyone out there who has done this already? Anything specific we should watch out for? Or is it not worth the hassle of trying to set up?</p> http://stackoverflow.com/questions/671068/visual-studio-2008-show-heap/671085#671085 0 Answer by maxam for Visual Studio 2008 - show heap maxam 2009-03-22T14:22:37Z 2009-03-22T14:22:37Z <p>You can view the call stack while debugging, but I assume that's not what you're looking for. You might want to try Windbg and SOS, which are GREAT for debugging memory issues. A bit steep on the learning curve, but the payback is HUGE.</p> <p><a href="http://www.microsoft.com/whdc/DevTools/Debugging/default.mspx" rel="nofollow">Microsoft Debugging Tools for Windows</a></p> http://stackoverflow.com/questions/253267/whens-the-absolute-latest-you-can-call-page-clientscript-registerclientscriptblo/253301#253301 1 Answer by maxam for When's the absolute latest you can call Page.ClientScript.RegisterClientScriptBlock? maxam 2008-10-31T12:17:23Z 2009-01-02T20:21:43Z <p>Even on the main page, you can call it during PreRender. Each control's Render function is called after the main page's PreRender, so the Render function would be a safe place.</p> http://stackoverflow.com/questions/336553/how-to-display-progressbar-if-waithandle-is-used/336561#336561 0 Answer by maxam for How to display progressbar if waithandle is used. maxam 2008-12-03T09:07:13Z 2008-12-03T09:07:13Z <p>Have you tried using the <a href="http://msdn.microsoft.com/en-us/library/system.componentmodel.backgroundworker.aspx" rel="nofollow">BackgroundWorker</a> class instead? You'll need to rewrite the method doing the synchronous task, though.</p> http://stackoverflow.com/questions/332697/asp-net-application-exhibits-strange-behaviour-through-firewall/334449#334449 1 Answer by maxam for ASP.NET application exhibits strange behaviour through firewall maxam 2008-12-02T15:59:01Z 2008-12-02T15:59:01Z <p>Check the IIS logs to see if the request even makes it to your server. The ISA setup might be caching the initial request and serving that up in the succeeding requests.</p> http://stackoverflow.com/questions/331146/how-to-pass-array-from-asp-net-server-side-to-javascript-function-on-client-side/331206#331206 1 Answer by maxam for How to pass array from Asp.net server side to Javascript function on client side maxam 2008-12-01T15:42:24Z 2008-12-01T15:42:24Z <p>Another way would be to use the RegisterArrayDeclaration method of the Page object (deprecated) or in the ClientScriptManager class. See <a href="http://msdn.microsoft.com/en-us/library/system.web.ui.clientscriptmanager.registerarraydeclaration.aspx" rel="nofollow">MSDN</a> for details.</p> http://stackoverflow.com/questions/311596/gotchas-upgrading-from-single-servers-to-web-farms/328752#328752 1 Answer by maxam for Gotchas: Upgrading from single servers to web farms. maxam 2008-11-30T11:20:16Z 2008-11-30T11:20:16Z <p>One other gotcha aside from the Session issues described by the other posters is if the apps are writing to the local file system. Scaling out to a web farm would break the apps if they assume the files are on the local PC. For example, uploaded files might be available or not depending on which server is hit. Changing the paths to point to a shared drive should fix this.</p> http://stackoverflow.com/questions/328727/what-are-the-techniques-you-follow-if-you-are-stuck-with-a-programming-problem/328751#328751 18 Answer by maxam for what are the techniques you follow if you are stuck with a programming problem maxam 2008-11-30T11:16:14Z 2008-11-30T11:16:14Z <p>Go and do something else. No, really. I've found that putting the problem away in the back of my mind helps. I can't count the number of times I thought of a great solution to something I've been working on when I was working on something else, or watching TV, or eating. It seems your brain is still working on the problem in the background.</p> <p>If that fails to solve your problem, try talking to someone. You'd be surprised how often others can give solutions to your problem that are so simple you'd facepalm.</p> http://stackoverflow.com/questions/328743/is-disposing-this-object-enough-or-do-i-need-to-do-more/328744#328744 1 Answer by maxam for Is disposing this object, enough? or do i need to do more? maxam 2008-11-30T11:11:14Z 2008-11-30T11:11:14Z <p>Since AFAIK the Clear() method just calls Dispose, the using block should be enough to ensure that the resources used are released.</p> http://stackoverflow.com/questions/306583/jquery-this-selector-and-children/306608#306608 0 Answer by maxam for jQuery $(this) selector and children? maxam 2008-11-20T19:51:32Z 2008-11-20T19:51:32Z <p>It's been some time, but have you tried $(this).children()[0] ?</p> http://stackoverflow.com/questions/301468/classic-asp-on-server-2008-sql-2008/301715#301715 0 Answer by maxam for Classic ASP On Server 2008 & SQL 2008 maxam 2008-11-19T12:13:50Z 2008-11-20T06:08:57Z <p>Sounds like a problem with ADO. Have you tried installing the latest version or refreshing the install if you already have the latest one?</p> <p>Edit: Sorry, didn't notice you were running Windows Server 2008. That version comes with Windows DAC 6.0, and that can't be reinstalled as far as I know. Since your UDL file works, the only thing I can think of is to make sure the user identity for your ASP site has access to the folders containing the DAC dlls. You can try running FileMon from Sysinternals and checking for access denied entries to those files.</p> http://stackoverflow.com/questions/301555/how-to-attach-to-process-using-vc6-on-win-2003/301692#301692 0 Answer by maxam for How to attach to process using VC6 on win 2003? maxam 2008-11-19T12:05:18Z 2008-11-19T12:05:18Z <p>There is a bug that's been fixed in SP 4. See <a href="http://support.microsoft.com/kb/235434/EN-US/" rel="nofollow">this</a> for details. </p> http://stackoverflow.com/questions/292003/is-the-jquery-intellisense-plugin-available-for-visual-studio-now/292025#292025 2 Answer by maxam for Is the jQuery intellisense plugin available for Visual Studio now? maxam 2008-11-15T02:20:18Z 2008-11-15T02:20:18Z <p>Yes, it is. <a href="http://blogs.msdn.com/webdevtools/archive/2008/10/28/rich-intellisense-for-jquery.aspx" rel="nofollow">Rich Intellisense for JQuery</a>.</p> http://stackoverflow.com/questions/291866/asp-net-auto-executing-page/292018#292018 1 Answer by maxam for ASP.NET auto-executing page maxam 2008-11-15T02:17:29Z 2008-11-15T02:17:29Z <p>Have you considered using a windows service instead? Running your cleanup tasks would take up a thread from the ASP.NET thread pool. Or if you're cleaning up a SQL Server database, maybe a SQL Server Agent job would be better. </p> http://stackoverflow.com/questions/287195/how-to-add-items-to-a-collection-while-consuming-it/287214#287214 0 Answer by maxam for How to add items to a collection while consuming it? maxam 2008-11-13T15:20:22Z 2008-11-13T15:34:55Z <p>Don't change the collection you're looping through via for each. Just use a while loop on the Count property of the list and access the List items by index. This way, even if you add items, the iteration should pick up the changes.</p> <p>Edit: Then again, it sort of depends on whether you WANT the new items you added to be picked up by the loop. If not, then this won't help.</p> <p>Edit 2: I guess the easiest way to do it would be to just change your loop to: foreach (string url in urls.ToArray())</p> <p>This will create an Array copy of your list, and it will loop through this instead of the original list. This will have the effect of not looping over your added items.</p> http://stackoverflow.com/questions/284756/hit-me-with-your-worst-shot/284782#284782 9 Answer by maxam for Hit me with your worst shot. maxam 2008-11-12T18:05:26Z 2008-11-12T18:05:26Z <p><a href="http://thedailywtf.com/" rel="nofollow">The Daily WTF</a>... Oh, sorry, you meant INTENTIONAL? =)</p> http://stackoverflow.com/questions/284753/nuggets-of-wisdom/284768#284768 4 Answer by maxam for Nuggets of wisdom? maxam 2008-11-12T18:00:43Z 2008-11-12T18:00:43Z <p><a href="http://www.codinghorror.com/blog/archives/001172.html" rel="nofollow">Programming is hard, let's go shopping!</a></p> http://stackoverflow.com/questions/284578/design-or-prototype-first/284587#284587 5 Answer by maxam for Design or prototype first? maxam 2008-11-12T16:53:24Z 2008-11-12T16:53:24Z <p>It is always safer to design first, but this does not mean prototyping does not work. The real problem with prototyping is resisting the urge to keep the code you already wrote instead of throwing it away when the time comes to do the design.</p> http://stackoverflow.com/questions/284491/what-is-the-scope-of-a-static-class/284507#284507 0 Answer by maxam for What is the scope of a Static Class? maxam 2008-11-12T16:31:13Z 2008-11-12T16:31:13Z <p>The scope of a static class is limited to the application domain. Each app domain will have its own copy of any static variables you might have. If your "processes" are threads within the same app domain, then they will share the static values. But if they are actual separate Windows processes, then they will have different app domains and hence separate copies. </p> http://stackoverflow.com/questions/284433/strange-error-cs0012-the-type-x-is-defined-in-an-assembly-that-is-not-referenc/284494#284494 1 Answer by maxam for Strange Error - CS0012: The type x is defined in an assembly that is not referenced. maxam 2008-11-12T16:27:16Z 2008-11-12T16:27:16Z <p>When troubleshooting these types of problems, the <a href="http://msdn.microsoft.com/en-us/library/e74a18c4(VS.71).aspx" rel="nofollow">Fusion Log Viewer</a> has always been a great help.</p> http://stackoverflow.com/questions/284452/suggestions-for-someone-starting-javascript-programming/284469#284469 1 Answer by maxam for Suggestions for someone starting JavaScript programming? maxam 2008-11-12T16:21:14Z 2008-11-12T16:21:14Z <p>Here's a link that's quite helpful in getting your javascript up to speed: </p> <p><a href="http://odetocode.com/Articles/473.aspx" rel="nofollow">What ASP.NET Developers Should Know About JavaScript</a></p> http://stackoverflow.com/questions/283591/asp-net-session-destroy-if-he-closes-the-browser/283664#283664 0 Answer by maxam for ASP.net Session Destroy if he closes the browser maxam 2008-11-12T11:30:01Z 2008-11-12T11:30:01Z <p>It sounds like you are using a persistent cookie to store the authentication ticket. Try setting the second parameter (createPersistentCookie) of the SetAuthCookie method to false, i.e. FormsAuthentication.SetAuthCookie("myusername", false); </p> http://stackoverflow.com/questions/283551/trouble-with-sql-query-with-cartesian-product/283641#283641 0 Answer by maxam for Trouble with SQL query with cartesian product maxam 2008-11-12T11:14:00Z 2008-11-12T11:14:00Z <p>SELECT (SELECT(COUNT(*) FROM Z) AS COUNT, X.ID AS IDX, y.ID AS IDY FROM X CROSS JOIN Y ORDER BY 1 DESC, 2, 3</p> http://stackoverflow.com/questions/671077/any-problems-using-samba-as-a-windows-domain-controller Comment by on Any Problems Using Samba as a Windows Domain Controller? 2009-03-24T14:27:40Z 2009-03-24T14:27:40Z Plus, we do have LDAP for authorization in the enterprise. Our WSS (moving forward, Office Sharepoint) uses local integrated auth because we lose a lot of the integration with Office apps via LDAP custom auth. So we'd sort of like to still use LDAP by going with a Samba DC. http://stackoverflow.com/questions/671077/any-problems-using-samba-as-a-windows-domain-controller Comment by on Any Problems Using Samba as a Windows Domain Controller? 2009-03-24T14:24:58Z 2009-03-24T14:24:58Z Well, we're using purely local authentication right now (no domain controller), and are moving to a domain model. If Samba+Linux can get the job done, then so much the better. If not, then we'll have to bite the bullet and go with a Windows DC. http://stackoverflow.com/questions/253267/whens-the-absolute-latest-you-can-call-page-clientscript-registerclientscriptblo/253301#253301 Comment by on When's the absolute latest you can call Page.ClientScript.RegisterClientScriptBlock? 2009-01-02T20:21:15Z 2009-01-02T20:21:15Z Sorry, you're right - that was a big typo. Each control's Render function is called AFTER the main's PreRender, which is why it's safe to call it during PreRender. Thanks for the heads-up! http://stackoverflow.com/questions/284578/design-or-prototype-first/284587#284587 Comment by on Design or prototype first? 2008-11-12T17:30:29Z 2008-11-12T17:30:29Z Agreed! Similar to when you show off the prototype to the clients, and you can't make them understand that just because they see it doesn't mean it's working. http://stackoverflow.com/questions/284382/best-way-to-select-out-of-millions-of-rows-in-an-oracle-db/284399#284399 Comment by on Best way to select out of millions of rows in an Oracle DB 2008-11-12T16:46:02Z 2008-11-12T16:46:02Z Just wanted to point out that running a sort on 15 million rows will take a while. Better have some coffee ready =) http://stackoverflow.com/questions/281881/sessionid-keeps-changing-in-asp-net-mvc-why/283341#283341 Comment by on SessionID keeps changing in ASP.NET MVC why? 2008-11-12T15:41:54Z 2008-11-12T15:41:54Z Only if there was a web farm involved. And if you read the OP's comment in one of the answers, you'll find that adding an item to the session variable did fix the problem. http://stackoverflow.com/questions/283476/best-way-to-break-long-strings-in-c-source-code/283494#283494 Comment by on Best way to break long strings in C# source code 2008-11-12T10:27:18Z 2008-11-12T10:27:18Z Well, I did say &quot;lots&quot; =) But you're right, I should have qualified that further. http://stackoverflow.com/questions/283476/best-way-to-break-long-strings-in-c-source-code/283494#283494 Comment by on Best way to break long strings in C# source code 2008-11-12T10:24:34Z 2008-11-12T10:24:34Z If you are doing lots of concatenation during runtime, then yes, StringBuilder is recommended. But the example above has static strings, so the compiler already optimizes it down to a single string. http://stackoverflow.com/questions/283221/source-control-lock-vs-merge/283245#283245 Comment by on Source Control - Lock vs. Merge? 2008-11-12T07:43:32Z 2008-11-12T07:43:32Z Maverique, I suppose it can also be argued your situation with two programmers refactoring the same code can be prevented by using locking rather than merging. http://stackoverflow.com/questions/256407/what-are-your-biggest-complaints-about-sharepoint Comment by on What are your biggest complaints about Sharepoint? 2008-11-07T21:41:11Z 2008-11-07T21:41:11Z Interesting, I'll have to try this out. Thanks! http://stackoverflow.com/questions/11598/what-is-the-worst-interviewee-answer/112146#112146 Comment by on What is the worst interviewee answer? 2008-11-05T15:30:01Z 2008-11-05T15:30:01Z He DID say he was an expert web programmer... http://stackoverflow.com/questions/11598/what-is-the-worst-interviewee-answer/246153#246153 Comment by on What is the worst interviewee answer? 2008-11-05T15:28:08Z 2008-11-05T15:28:08Z So was he serious? http://stackoverflow.com/questions/256407/what-are-your-biggest-complaints-about-sharepoint/259522#259522 Comment by on What are your biggest complaints about Sharepoint? 2008-11-04T04:11:40Z 2008-11-04T04:11:40Z 18 levels? That's insane! http://stackoverflow.com/questions/256407/what-are-your-biggest-complaints-about-sharepoint/256676#256676 Comment by on What are your biggest complaints about Sharepoint? 2008-11-02T08:57:43Z 2008-11-02T08:57:43Z Great links, Mitch! http://stackoverflow.com/questions/256229/multi-lingual-web-application-how-do-i-detect-the-users-language-in-asp-net/256250#256250 Comment by on Multi-lingual web application - how do I detect the user's language in ASP.NET? 2008-11-02T02:12:06Z 2008-11-02T02:12:06Z Thanks, much appreciated!