User Chris Farmer - Stack Overflowmost recent 30 from stackoverflow.com2009-12-03T11:49:24Zhttp://stackoverflow.com/feeds/user/404http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/9953/how-can-i-enable-copy-and-paste-between-my-host-and-vmware-guest-os2How can I enable copy and paste between my host and VMware guest OS?Chris Farmer2008-08-13T15:35:02Z2009-12-03T02:11:10Z
<p>I have a VMware 6 Workstation installation running on my XP 64-bit host OS. I have a 32-bit Windows 2003 guest. I simply want to be able to put something on the clipboard in one world and paste it into the other world, but the clipboards seem entirely distinct. I see the "Guest Isolation" setting for my VM, and it's set to allow both drag/drop and copy/paste to and from the VM, but this doesn't seem to be helping. What else can I try?</p>
<p>Edit: Sorry about the lack of clarity... I did mean simply to put a text-only item on the clipboard. I hadn't even considered something more complex. I was copying/ctrl-c'ing from Notepad and trying to paste that into the other place. No love.</p>
<p>But, I just updated the VMware Tools client app. It seems like I had already installed it, but it may have been old, corrupted, or otherwise hosed. Getting a new version and rebooting (I had already tried rebooting without updating the tools, BTW) worked wonderfully. I can copy my text all around now.</p>
http://stackoverflow.com/questions/1040804/sharepoint-spfolder-subfolders-add-not-actually-adding-a-folder2SharePoint SPFolder.SubFolders.Add not actually adding a folderChris Farmer2009-06-24T20:30:42Z2009-12-03T01:01:11Z
<p>I have a couple document libraries that are just standard libraries -- no associated custom content types or anything. I am trying to add subfolders to them, and in some cases it just doesn't work.</p>
<pre><code>SPFolder parent = library.RootFolder;
SPFolder child = parent.SubFolders.Add(subfoldername);
parent.Update();
bool exists = child.Exists; // This is false
</code></pre>
<p>I can see that it seems to be data-dependent, but I'm still stumped. When I try to add a subfolder with this particular name via my code:</p>
<blockquote>
<p>M1 Spectrum CRC w-out CMN67 E02_files</p>
</blockquote>
<p>it fails to add the folder, even though the Add method seems to execute successfully. When I try to add a folder of this exact name via the standard browser-based SharePoint list UI, I successfully get a folder added, but it has a different name:</p>
<blockquote>
<p>M1 Spectrum CRC w-out CMN67 E02_files_</p>
</blockquote>
<p>Note the trailing underscore in the folder that SharePoint created for me. Why is it doing that? Why is this a particularly problematic case? This is a legal Windows folder name, and it doesn't contain any html-unfriendly characters. So, what's up with this? Am I missing something obvious?</p>
http://stackoverflow.com/questions/54877/jquery-after-selector-question3jQuery "after" selector questionChris Farmer2008-09-10T18:03:12Z2009-11-30T02:08:09Z
<p>I can't seem to figure out a good way to do this, but it seems like it should be simple. I have an element that I want to append a div to. Then I have another element that I want to clone and shove into that intermediate div. Here's what I was hoping to do:</p>
<pre><code>$("#somediv > ul").after("<div id='xxx'></div>").append($("#someotherdiv").clone());
</code></pre>
<p>This seems to be close, but not quite there. The problem with this is that the "append" seems to be operating on the original "#somediv > ul" selector. This sort of makes sense, but it's not what I wanted. How can I most efficiently select that intermediate div that I added with the "after" and put my "#someotherdiv" into it?</p>
http://stackoverflow.com/questions/1783746/how-to-disable-the-editing-of-the-item-after-it-was-approved-in-sharepoint-wss/1785570#17855700Answer by Chris Farmer for How to disable the editing of the item after it was approved in SharePoint (WSS)?Chris Farmer2009-11-23T20:00:54Z2009-11-23T20:00:54Z<p>You could add an <code>ItemUpdating</code> handler and just cancel out of future update operations with a sensible error message for the user. That makes it a little goofy, though, because you're still giving them an opportunity to attempt to edit the item before slamming the door in their face.</p>
<p>OTTOMH, you might want to declare a <a href="http://msdn.microsoft.com/en-us/library/ms459356.aspx" rel="nofollow">custom edit form</a> in your schema.xml file for your list definition. For the edit form, you could direct to a custom application page that would assess the editability of your item. If the item is editable, it redirects to the regular edit form. If it's not editable, it shows the sensible error message.</p>
<p>Unclepaul84's idea is good, especially if you want to make sure that the user doesn't even see the "edit" menu for an item. You would have the responsibility of going through any existing list data and applying those security settings, and if your rules change, you will have to go back and re-apply the correct settings. This might not be a big concern for you, but if your rules might someday change or if your rules are really more dynamic in nature, I think intercepting the edit form might give you better mileage.</p>
http://stackoverflow.com/questions/1758524/how-to-quickly-find-a-sharepoint-document-library-by-id/1758637#17586373Answer by Chris Farmer for How to quickly find a sharepoint document library by id?Chris Farmer2009-11-18T19:57:30Z2009-11-18T19:57:30Z<p>I vote for the manual ID -> URL pair matching in a top-level, well-known list that's visible only to the elevated privileges account.</p>
http://stackoverflow.com/questions/1731601/moss-404-errors-for-some-users-on-certain-sites-sometimes/1732971#17329710Answer by Chris Farmer for MOSS 404 errors for some users on certain sites, sometimes...Chris Farmer2009-11-14T01:58:51Z2009-11-14T01:58:51Z<p>This seems like a longshot, but... could those SharePoint sites be throwing a 404 HttpException? It seems like you'd see that in the SharePoint logs, too, so it's even more unlikely. </p>
<p>At any rate, is your SharePoint logging level set to an appropriately verbose level to debug weird stuff like this?</p>
http://stackoverflow.com/questions/1711176/how-do-i-update-a-sharepoint-list-using-net/1711261#17112612Answer by Chris Farmer for How do I update a sharepoint list using .net?Chris Farmer2009-11-10T21:18:09Z2009-11-12T23:01:03Z<p>pgb's answer is correct. It's pretty simple, really. One caveat with this is that the code that uses the SharePoint object model must be running on the SharePoint server itself -- not a remote machine. If you're trying to interact with a SharePoint list remotely, you would probably want to use web services. SharePoint 2007 has decent coverage of list manipulation in its built-in web services, but if you want more specific functionality you can always roll your own.</p>
<p>A good starting point for the roll-your-own option is here: <a href="http://msdn.microsoft.com/en-us/library/ms464040.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/ms464040.aspx</a></p>
<p>The SDK docs for the Lists web service can be found at <a href="http://msdn.microsoft.com/en-us/library/lists.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/lists.aspx</a></p>
http://stackoverflow.com/questions/1725892/how-to-obtain-spsite-for-remote-server-from-url-username-and-password/1725914#17259142Answer by Chris Farmer for How to obtain SPSite for remote server from URL, username and password?Chris Farmer2009-11-12T22:38:43Z2009-11-12T22:59:36Z<p>You cannot do this from a remote machine. You will have to either be running that code on the SharePoint server machine, or interact with the remote server via the SharePoint web services that are exposed.</p>
<p>Can you be more specific about what you want to do with the SPSite once you get it? This may make it easier to make a judgment about which techniques are more appropriate for you.</p>
<p><hr></p>
<p>Since you say you want to interact with lists on this remote site, I suggest you look into the Lists web service that comes with SharePoint 2007 and WSS 3. This SO question is similar, and there's a link to some resources there:</p>
<p><a href="http://stackoverflow.com/questions/1711176/how-do-i-update-a-sharepoint-list-using-net">http://stackoverflow.com/questions/1711176/how-do-i-update-a-sharepoint-list-using-net</a></p>
http://stackoverflow.com/questions/111388/recommendations-for-a-google-finance-like-interactive-chart-control4Recommendations for a google finance-like interactive chart controlChris Farmer2008-09-21T16:45:20Z2009-11-11T20:23:25Z
<p>I need some sort of interactive chart control for my .NET-based web app. I have some wide XY charts, and the user should be able to interactively scroll and zoom into a specific window on the x axis. Something that acts similar to the google finance control would be nice, but without the need for the date labels or the news event annotations. Also, I'd prefer to avoid Flash, if that's even possible. Can someone please give some recommendations of something that might come close?</p>
<p>EDIT: the "real" google timeline visualization is for date-based data. I just have numeric data. I tried to use that control for non-date data, but it seems to always want to show a date and demands that the first data column actually be a date.</p>
http://stackoverflow.com/questions/1715469/how-to-override-sharepoint-field-rendering-in-editform/1715858#17158582Answer by Chris Farmer for How to override SharePoint field rendering in EditForm?Chris Farmer2009-11-11T15:20:11Z2009-11-11T15:20:11Z<p>It sounds like you're on the right track thinking about control templates. I think you'd find some success just looking on the web for creating a custom SharePoint field type. You probably want to inherit your field type from SPFieldMultiChoice, and your control's ascx file would contain your div and its styling.</p>
<p>For custom field types, you typically need to create:</p>
<ul>
<li>A field type class</li>
<li>A control class to represent the rendered control for your field type</li>
<li>An ascx file to contain the html scaffolding for your rendered control</li>
</ul>
<p>This article seems a good starting point: <a href="http://www.c-sharpcorner.com/Blogs/BlogDetail.aspx?BlogId=1207" rel="nofollow">http://www.c-sharpcorner.com/Blogs/BlogDetail.aspx?BlogId=1207</a></p>
<p>The SharePoint SDK entries on custom field types are also good enough to use as a starting point.</p>
http://stackoverflow.com/questions/1707634/what-event-is-triggered-when-a-document-is-saved-in-a-document-library-in-sharepo/1707666#17076660Answer by Chris Farmer for What event is triggered when a document is saved in a Document Library in SharePoint?Chris Farmer2009-11-10T12:39:52Z2009-11-10T12:39:52Z<p>ItemAdded?</p>
<p>It's a little confusing since one event handler gets called when the document is initially saved and ItemUpdated gets called when you set any custom properties on the item, at least if you're using the default SharePoint web UI. </p>
http://stackoverflow.com/questions/1702895/patent-on-server-side-image-generation/1702953#17029531Answer by Chris Farmer for Patent on server side image generationChris Farmer2009-11-09T18:47:21Z2009-11-09T18:47:21Z<p>It seems like the prior art concept would negate any attempts to enforce this. People were doing this exact thing well before even the application was submitted. It's even sillier than Amazon's click once patent.</p>
http://stackoverflow.com/questions/1680973/does-an-open-source-poker-related-math-library-exist/1681082#16810823Answer by Chris Farmer for Does an open-source poker-related math library exist?Chris Farmer2009-11-05T14:58:47Z2009-11-05T14:58:47Z<p>This is a subset of Dave's list, but I suggest you look at twodimes.net. It is a web app that uses the <strong>pokenum</strong> open source library. It is written in C. It does hand enumeration and stats for several poker varieties. </p>
<p><a href="http://twodimes.net/poker/info/" rel="nofollow">http://twodimes.net/poker/info/</a></p>
http://stackoverflow.com/questions/1625903/visual-studio-2010-script-debugger-doesnt-work-for-me0Visual Studio 2010 script debugger doesn't work for meChris Farmer2009-10-26T16:51:37Z2009-11-05T10:58:20Z
<p>I just installed VS 2010 Beta 2 and wanted to play with an ASP.NET MVC 2 project. I simply added some script (<code>alert('hello');</code>) into the Home controller's index.aspx view, and I can see it executing. When I try to set a breakpoint, however, it never gets hit. I also tried to use the "debugger" keyword, and when I do, I get a disappointing "there is no source code available for the current location" message. I also get this message when I try to independently attach to an IE process where my app is running.</p>
<p>What do I need to do to get a friendly script debugging experience? (I have successfully used Firebug to debug this, but for some reason I prefer the VS debugger.)</p>
<p>Here are some details of my configuration:</p>
<ul>
<li>I am launching my stuff in VS 2010 Beta 2.</li>
<li>IE8 version 8.0.7600.16385 is my default browser.</li>
<li>The "Disable script debugging (Internet Explorer)" advanced option is unchecked.</li>
<li>The "Disable script debugging (Other)" option is unchecked.</li>
<li>In my ASP.NET MVC 2 project's "web" properties tab, the ASP.NET debugger is checked. All others are unchecked.</li>
<li>Visual Studio 2008 script debugging seems to work just fine.</li>
</ul>
http://stackoverflow.com/questions/1666909/which-properties-and-functions-must-be-run-under-elevated-privileges/1670403#16704030Answer by Chris Farmer for Which properties and functions must be run under elevated privileges?Chris Farmer2009-11-03T21:57:33Z2009-11-03T21:57:33Z<p>It's not so much about properties and functions. It is really for any time you are trying to execute a bit of code that the current user would not ordinarily have permission to run. For example, say you wanted to create a subsite based on some user-provided info when the user adds an item to a list. The user doesn't have privs to explicitly create such a site on his own. In a list item event receiver you would use a RunWithElevatedPrivileges block to create this subsite. That way the site gets created as the application pool owner rather than as the logged-in user, and you avoid the security issue. Of course, you will want to be careful what you do in such a block. </p>
http://stackoverflow.com/questions/1638032/integrating-an-existing-asp-net-application-into-sharepoint/1639273#16392731Answer by Chris Farmer for Integrating an existing ASP.NET application into SharePointChris Farmer2009-10-28T18:41:08Z2009-10-28T18:41:08Z<p>Using <a href="http://msdn.microsoft.com/en-us/library/bb418732.aspx" rel="nofollow">Application Pages</a> is a good choice. You can use your existing code for the most part. You'd just have to make sure your aspx page refers to the correct <code>ContentPlaceHolder</code> in order to fit nicely into the SharePoint UI.</p>
http://stackoverflow.com/questions/1633766/how-to-help-the-debugger-see-my-javascript-or-how-to-best-refactor-my-script-to1How to help the debugger see my javascript, or how to best refactor my script to help make it debugger-friendly?Chris Farmer2009-10-27T21:22:54Z2009-10-28T07:57:35Z
<p>I have an ASP.NET MVC project that uses some simple AJAX functionality through jQuery's $.get method like so:</p>
<pre><code>$.get(myUrl, null, function(result) {
$('#myselector').html(result);
});
</code></pre>
<p>The amount of content is relatively low here -- usually a single div with a short blurb of text. Sometimes, however, I am also injecting some javascript into the page. At some point when I dynamically include script into content that was itself dynamically added to the page, the script still runs, but it ceases to be available to the debugger. In VS2008, any breakpoints are ignored, and when I use the "debugger" statement, I get a messagebox saying that "no source code is available at this location." This fails both for the VS2008 debugger and the Firebug debugger in Firefox. I have tried both including the script inline in my dynamic content and also referencing a separate js file from this dynamic content -- both ways seemed to result in script that's unavailable to the debugger.</p>
<p>So, my question is twofold: </p>
<ul>
<li>Is there any way to help the debugger recognize the existence of this script?</li>
<li>If not, what's the best way to include scripts that are used infrequently and in dynamically generated content in a way that is accessible to the debuggers?</li>
</ul>
http://stackoverflow.com/questions/1633361/using-aspcompat-in-a-sharepoint-web-part-page/1633453#16334531Answer by Chris Farmer for Using AspCompat in a SharePoint web part pageChris Farmer2009-10-27T20:27:20Z2009-10-27T20:27:20Z<p>I recently answered <a href="http://stackoverflow.com/questions/1627756/adding-web-page-to-blank-sharepoint-site-definition">this question</a> with some instructions that includes how to supply new site content page templates that you can use to host web parts. I think it's likely to work for you.</p>
<p>In your case, your aspx page template would have that AspCompat directive built-in.</p>
http://stackoverflow.com/questions/1627756/adding-web-page-to-blank-sharepoint-site-definition/1627932#16279321Answer by Chris Farmer for Adding web page to blank sharepoint site definitionChris Farmer2009-10-26T23:39:11Z2009-10-27T05:35:04Z<p>The answer to your first question depends on whether you mean <strong>application pages</strong> or <strong>content pages</strong>. They each have their advantages: application pages are good in that they can run custom server-side code, and content pages are nice because (for example) they can be customized by users, but by default are restricted in what kind of code can be run.</p>
<p>For a pretty good discussion on the differences between the two types in capabilities and restrictions, check out the Windows SharePoint Services SDK and look at the topics called "<a href="http://msdn.microsoft.com/en-us/library/aa979604.aspx" rel="nofollow">Application _layouts page type</a>" and "<a href="http://msdn.microsoft.com/en-us/library/aa979501.aspx" rel="nofollow">Content page type</a>."</p>
<p>As for stapling, it's pretty easy and more flexible than adding new features to a site definition's onet.xml file. This <a href="http://www.sharepointnutsandbolts.com/2007/05/feature-stapling.html" rel="nofollow">article</a> seems a pretty good overview of the alternatives. You might want to make a copy of the blank site definition, rename it, and then use that one in your work, though.</p>
<p><strong>Features with content pages</strong></p>
<p>You'll need three types of things for this:</p>
<ol>
<li>A feature.xml file -- just the boilerplate stuff that refers to the element manifest.</li>
<li>A page template -- this could be the entire aspx page itself, or it could be (for example) a shell of a web part page with <code>WebPartZones</code> defined but no actual web parts (yet).</li>
<li>The element manifest file which refers to your page templates and defines any web parts that should be provisioned as part of activation of your feature.</li>
</ol>
<p>Your feature's folder structure would look something like this:</p>
<pre><code>12
+-- TEMPLATES
+-- FEATURES
+-- YourFeature
+-- PageTemplates
| +-- Page.aspx (simple aspx page)
| +-- WebPartPage.aspx (still simple, but with WebPartZones)
+-- feature.xml
+-- elements.xml
</code></pre>
<p><strong>Feature.xml:</strong></p>
<pre><code><Feature
Id="CFF117BC-9685-4a7b-88D0-523D9DAD21F0"
Title="Custom Pages Feature"
Scope="Web"
xmlns="http://schemas.microsoft.com/sharepoint/">
<ElementManifests>
<ElementManifest Location="elements.xml"/>
</ElementManifests>
</Feature>
</code></pre>
<p><strong>Elements.xml</strong></p>
<pre><code><Elements xmlns="http://schemas.microsoft.com/sharepoint/">
<Module Path="PageTemplates" Url="Pages" >
<File Url="Page.aspx" Type="Ghostable" />
<File Url="WebPartPage.aspx" Name="WebPartPage.aspx" Type="Ghostable" >
<AllUsersWebPart WebPartZoneID="Left" WebPartOrder="0">
<![CDATA[
<WebPart xmlns="http://schemas.microsoft.com/WebPart/v2"
xmlns:cewp="http://schemas.microsoft.com/WebPart/v2/ContentEditor">
<Assembly>Microsoft.SharePoint, Version=12.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c</Assembly>
<TypeName>Microsoft.SharePoint.WebPartPages.ContentEditorWebPart</TypeName>
<Title>Some content that you want to provision with the feature</Title>
<FrameType>TitleBarOnly</FrameType>
<cewp:Content>
Hello world.
</cewp:Content>
</WebPart>
]]>
</AllUsersWebPart>
</File>
</Module>
</Elements>
</code></pre>
<p><strong>Page.aspx</strong></p>
<pre><code><%@ Page MasterPageFile="~masterurl/default.master"
meta:progid="SharePoint.WebPartPage.Document" %>
<asp:Content runat="server" ContentPlaceHolderID="PlaceHolderMain">
Hello World
</asp:Content>
</code></pre>
<p><strong>WebPartPage.aspx</strong></p>
<pre><code><%@ Page Language="C#" MasterPageFile="~masterurl/default.master" Inherits="Microsoft.SharePoint.WebPartPages.WebPartPage,Microsoft.SharePoint,Version=12.0.0.0,Culture=neutral,PublicKeyToken=71e9bce111e9429c" meta:progid="SharePoint.WebPartPage.Document" %>
<%@ Register Tagprefix="WebPartPages"
Namespace="Microsoft.SharePoint.WebPartPages"
Assembly="Microsoft.SharePoint, Version=12.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" %>
<asp:Content ID="main" runat="server" ContentPlaceHolderID="PlaceHolderMain" >
<table width="100%">
<tr>
<td valign="top" style="width:50%">
<WebPartPages:WebPartZone ID="Left" runat="server"
FrameType="TitleBarOnly" Title="Left Web Part Zone" />
</td>
<td valign="top" style="width:50%">
<WebPartPages:WebPartZone ID="Right" runat="server"
FrameType="TitleBarOnly" Title="Right Web Part Zone" />
</td>
</tr>
</table>
</asp:Content>
</code></pre>
<p>If you configure your feature in that way, you should be able to deploy site content pages within that structure.</p>
<p>Also, I highly recommend Ted Pattison's <a href="http://rads.stackoverflow.com/amzn/click/0735623201" rel="nofollow">Inside Windows SharePoint Services</a> book. It covers this topic in much detail, including the important security aspects of site content pages. It's easily worth the purchase price.</p>
http://stackoverflow.com/questions/1627841/sharepoint-feature-activation-value-does-not-fall-within-the-expected-range/1627983#16279831Answer by Chris Farmer for SharePoint Feature Activation - Value does not fall within the expected rangeChris Farmer2009-10-26T23:56:01Z2009-10-26T23:56:01Z<p>Might it be the capital "X" in your content type ID? The built-in ones are lower-case, so that might be something to look at. </p>
<p>Do the server logs give you any hint about what SharePoint is looking for but cannot find here?</p>
http://stackoverflow.com/questions/1428217/bad-screen-redrawing-in-oracle-sql-developer2Bad screen redrawing in Oracle SQL DeveloperChris Farmer2009-09-15T16:29:51Z2009-10-25T20:13:45Z
<p>I have a problem with Oracle SQL Developer. When I use it on a Windows Server 2003 machine, it works fine. When I use it on my Windows 7 desktop, I get a lot of redraw problems in the query results grid when I scroll either horizontally or vertically, like so:</p>
<p><img src="http://img19.imageshack.us/img19/685/9152009105004am.png" alt="alt text" /></p>
<p>This makes it tricky to assess the results of your queries. Clicking on the header and on individual cells causes it to then redraw properly, but it's goofy to not be able to just scroll normally. Is there any way to fix this? I am using the current version of SQL Developer 1.5.5 with the included JVM.</p>
http://stackoverflow.com/questions/1607295/dynamically-setting-the-listid-in-the-sharepointlistview-control/1619994#16199940Answer by Chris Farmer for Dynamically setting the ListId in the <SharePoint:ListView> controlChris Farmer2009-10-25T04:25:22Z2009-10-25T04:25:22Z<p>Having server-side code like you do that gets injected into more server side code is a little weird and seems unlikely to work. What does the SharePoint log say about the list ID that it's trying to load? My guess is that it's not really trying to load the list represented by the GUID that you're setting in your <code>ListGuid</code> variable.</p>
<p>Instead of trying to force some global <code>ListGuid</code> variable to have the correct guid, why not just set the control's <code>ListId</code> property inside your application page's <code>Load</code> event handler? </p>
<p>In the aspx file:</p>
<pre><code><SharePoint:ListView Id="lv" runat="server" />
</code></pre>
<p>In the application page's codebehind:</p>
<pre><code>protected ListView lv
</code></pre>
<p>In the Load event:</p>
<pre><code>SPList list = HelpDesk.Lists["Charge Numbers"];
Guid myguid = list.ID;
lv.ListId = myguid.ToString();
</code></pre>
http://stackoverflow.com/questions/1605083/how-do-i-make-other-classes-derive-from-a-singleton-class/1605127#16051278Answer by Chris Farmer for How do I make other classes derive from a singleton class ?Chris Farmer2009-10-22T05:14:11Z2009-10-22T05:14:11Z<p>Steve Yegge has an amusing <a href="http://steve.yegge.googlepages.com/singleton-considered-stupid" rel="nofollow">article</a> about singletons that mentions subclassing in this quote:</p>
<blockquote>
<p>Then there's the subclassing thing.
It's almost impossible to subclass a
Singleton, and if you manage it, then
you shouldn't have been using a
Singleton in the first place. You
don't <em>even</em> want to go there. I've
walked roads that I dare not recount.
Just pretend you can't do it, and
you'll save yourself amazing amounts
of pain.</p>
</blockquote>
http://stackoverflow.com/questions/1582901/writing-unit-tests-for-methods-which-have-a-degree-of-randomization/1582910#15829102Answer by Chris Farmer for Writing unit tests for methods which have a degree of randomizationChris Farmer2009-10-17T18:40:22Z2009-10-17T18:40:22Z<p>It's hard to tell without knowing your specific case, but maybe you could refactor to inject some random number provider into your object under test. During your test you could use a hardcoded random number seed to get reproducible results.</p>
http://stackoverflow.com/questions/1562392/error-with-home-grown-sharepoint-bdc-entity-definition1Error with home-grown SharePoint BDC entity definitionChris Farmer2009-10-13T19:24:26Z2009-10-13T22:23:39Z
<p>I am trying to create my own application definition xml file for the SharePoint BDC, mostly because I want to become more familiar with the concepts. My application uses an in-house Oracle database, and it contains only one entity which is intended to just retrieve a subset of columns from a single database table. The entity ("Analytical Spectra") contains just one Finder method with one input parameter which is also used as a filter.</p>
<p>Here's my entity:</p>
<pre><code><Entity EstimatedInstanceCount="0" Name="CHEMREG.CHEMREG_SPECTRA" DefaultDisplayName="Analytical Spectra">
<Identifiers>
<Identifier TypeName="System.Decimal" Name="SPECTRA_ID" DefaultDisplayName="SPECTRA_ID" />
</Identifiers>
<Methods>
<Method Name="GetSpectra">
<Properties>
<Property Name="RdbCommandText" Type="System.String">SELECT SPECTRA_ID,
BATCH_ID,
CREATED_BY,
CREATED_DATE,
FILE_NAME,
COMMENTS,
NOTEBOOK_REF,
FINAL,
PDF_PATH,
CHEMIST
FROM CHEMREG.CHEMREG_SPECTRA
WHERE NOTEBOOK_REF LIKE :Notebook_Ref
</Property>
<Property Name="RdbCommandType" Type="System.Data.CommandType">Text</Property>
</Properties>
<FilterDescriptors>
<FilterDescriptor Type="Wildcard" Name="Notebook Ref" />
</FilterDescriptors>
<Parameters>
<Parameter Direction="In" Name=":Notebook_Ref">
<TypeDescriptor TypeName="System.String"
Name="NOTEBOOK_REF"
AssociatedFilter="Notebook Ref">
</TypeDescriptor>
</Parameter>
<Parameter Direction="Return" Name="CHEMREG_SPECTRA">
<TypeDescriptor TypeName="System.Data.IDataReader, System.Data, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" IsCollection="true" Name="CHEMREG_SPECTRADataReader">
<TypeDescriptors>
<TypeDescriptor TypeName="System.Data.IDataRecord, System.Data, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" Name="CHEMREG_SPECTRADataRecord">
<TypeDescriptors>
<TypeDescriptor TypeName="System.Decimal" Name="SPECTRA_ID" IdentifierName="SPECTRA_ID" DefaultDisplayName="Spectra ID" />
<TypeDescriptor TypeName="System.String" Name="BATCH_ID" DefaultDisplayName="Batch ID" />
<TypeDescriptor TypeName="System.String" Name="CREATED_BY" DefaultDisplayName="Created By"/>
<TypeDescriptor TypeName="System.String" Name="CREATED_DATE" DefaultDisplayName="Created Date" />
<TypeDescriptor TypeName="System.String" Name="FILE_NAME" DefaultDisplayName="File Name" />
<TypeDescriptor TypeName="System.String" Name="COMMENTS" DefaultDisplayName="Comments" />
<TypeDescriptor TypeName="System.String" Name="NOTEBOOK_REF" AssociatedFilter="Notebook Ref" DefaultDisplayName="Notebook Ref" />
<TypeDescriptor TypeName="System.Decimal" Name="FINAL" DefaultDisplayName="Final" />
<TypeDescriptor TypeName="System.String" Name="PDF_PATH" DefaultDisplayName="PDF Path" />
<TypeDescriptor TypeName="System.String" Name="CHEMIST" DefaultDisplayName="Chemist" />
</TypeDescriptors>
</TypeDescriptor>
</TypeDescriptors>
</TypeDescriptor>
</Parameter>
</Parameters>
<MethodInstances>
<MethodInstance Name="CHEMREG_SPECTRAFinder" Type="Finder" ReturnParameterName="CHEMREG_SPECTRA" ReturnTypeDescriptorName="CHEMREG_SPECTRADataReader" ReturnTypeDescriptorLevel="0" />
</MethodInstances>
</Method>
</Methods>
</Entity>
</code></pre>
<p>My application can be uploaded into the BDC just fine (with the warning that the SpecificFinder couldn't be found, but I didn't think that was a big deal here... is it?). When I add a Business Data List Web Part to a page and choose my "Analytical Spectra" entity for display, I get an error in the UI that says:</p>
<blockquote>
<p>An error occurred while retrieving data from Analytical Spectra. Administrators, see the server log for more information.</p>
</blockquote>
<p>The server log contains this information, which I find confusing:</p>
<blockquote>
<p>Error while instantiating Filter Type: Microsoft.Office.Server.ApplicationRegistry.Runtime.WildcardFilter
...
Inner exception 1:
System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation. ---> System.InvalidOperationException: Cannot create default instance on a Parameter with DirectionType 'Out', 'Return' or 'SqlReturn'</p>
</blockquote>
<p>I am confused by this because it seems to be complaining about a filter on my return parameter, and I haven't defined a filter on my return parameter. What am I screwing up?</p>
http://stackoverflow.com/questions/1562392/error-with-home-grown-sharepoint-bdc-entity-definition/1563287#15632871Answer by Chris Farmer for Error with home-grown SharePoint BDC entity definitionChris Farmer2009-10-13T22:23:39Z2009-10-13T22:23:39Z<p>Ah, ha. The problem was this entry in the return type definition:</p>
<pre><code><TypeDescriptor TypeName="System.String"
Name="NOTEBOOK_REF"
AssociatedFilter="Notebook Ref"
DefaultDisplayName="Notebook Ref" />
</code></pre>
<p>The output type definition shouldn't refer to a filter. The type descriptor should instead have been:</p>
<pre><code><TypeDescriptor TypeName="System.String"
Name="NOTEBOOK_REF"
DefaultDisplayName="Notebook Ref" />
</code></pre>
<p>Works like a charm after making that change.</p>
http://stackoverflow.com/questions/1545880/javascript-returning-month-as-9-where-it-is-10/1545885#15458859Answer by Chris Farmer for Javascript returning month as 9 where it is 10 Chris Farmer2009-10-09T20:26:22Z2009-10-09T20:26:22Z<p>It's zero-based. January is month 0.</p>
<p><a href="http://www.w3schools.com/jsref/jsref%5FgetMonth.asp" rel="nofollow">http://www.w3schools.com/jsref/jsref%5FgetMonth.asp</a></p>
http://stackoverflow.com/questions/1528026/is-there-a-javascript-or-jquery-script-that-emulates-stack-overflows-flash-messa/1528043#15280432Answer by Chris Farmer for Is there a Javascript or Jquery script that emulates Stack Overflow's flash message (the orange bar on top)?Chris Farmer2009-10-06T20:52:52Z2009-10-06T20:52:52Z<p>Look at the stackoverflow source when you get one of those. Turn your cookies off to get the "first time" message, if you want an easy way. The page references:</p>
<p><a href="http://sstatic.net/so/js/master.js?v=4700" rel="nofollow">http://sstatic.net/so/js/master.js?v=4700</a></p>
<p>And there's a bit of script that calls</p>
<pre><code><script type="text/javascript">
$(function() { notify.showFirstTime(); });
</script>
</code></pre>
<p>That's the script that does it. Go into that master.js file and find that method.</p>
http://stackoverflow.com/questions/439248/running-vmware-in-vmware6Running VMware in VMware?Chris Farmer2009-01-13T15:02:44Z2009-10-05T03:14:46Z
<p>We have a physical machine that runs VMware and hosts a VM we use for SharePoint deployment testing. That machine is old and dying, and my employer's network czars are heavily pushing hosted VMs as a replacement for outdated physical servers. I was curious about whether it's possible to run VMware inside VMware, and if so, whether there are severe performance implications. We don't require extreme performance from this setup, since it's just used for SharePoint testing and the associated SQL Server is on a different box. My guess is that we can't just use the primary hosted VM for our testing because we'll want to roll back occasionally and otherwise have more control over it, and getting buy-in for that from the network folks is unlikely. Does anyone have any experience with this?</p>
<p>edit: I know this nesting certainly isn't the preferred option, but (1) we want the flexibility of being able to use VMware snapshots at will and (2) the network folks will not allow us to arbitrarily roll back to a previous point in time because of the potential for removing mandated security updates. My guess is that a local desktop machine running VMware Workstation might just be the way to go. The hosted option seems attractive if it will work though since it's less machine maintenance for me to deal with.</p>
http://stackoverflow.com/questions/1475404/sql-query-taking-too-long/1475420#14754202Answer by Chris Farmer for sql query taking too longChris Farmer2009-09-25T04:23:03Z2009-09-25T04:23:03Z<p>It's possible that if your table is large, you'd benefit from indexes on F1 and BATCHID in the tbl_TempCatalogue table. It's not clear what DBMS you're using, but most have decent tools to show you an execution plan. If you're doing full table scans on a large table, that may take a long time to run.</p>
<p>Also, you say that the "insert into" is slow, but you include just the code for the select. Is the select slow by itself?</p>
http://stackoverflow.com/questions/1822651/are-there-any-good-reasons-not-to-use-jquery-instead-of-plain-old-javascript/1822665#1822665Comment by Chris Farmer on Are there any good reasons NOT to use jQuery instead of plain old JavaScript?Chris Farmer2009-11-30T22:01:06Z2009-11-30T22:01:06ZI think they'd often be in more of a pickle if you rolled your own cute UI tricks. jQuery probably has a better chance of working correctly cross-browser than your (well, "my" at least) own code.http://stackoverflow.com/questions/1797462/string-compare-where-null-and-empty-are-equal/1797494#1797494Comment by Chris Farmer on String Compare where null and empty are equalChris Farmer2009-11-25T15:02:23Z2009-11-25T15:02:23ZSure, but aren't you going to be replacing hundreds of comparisons anyway? How do you plan to do this replacement of <code>!=</code> without a manual effort?http://stackoverflow.com/questions/1785560/why-does-twitter-limit-the-message-length-to-140-characters/1785564#1785564Comment by Chris Farmer on Why does Twitter limit the message length to 140 characters?Chris Farmer2009-11-23T20:09:15Z2009-11-23T20:09:15Z160 7-bit characters.http://stackoverflow.com/questions/1784729/sending-an-email-using-javaComment by Chris Farmer on Sending an Email Using JavaChris Farmer2009-11-23T17:49:34Z2009-11-23T17:49:34ZCreate an smtp server on your own machine to verify that your code is correct. It's reasonable that the smtp servers you tried would not allow arbitrary machines to relay mail, so the errors you see are not surprising.http://stackoverflow.com/questions/1775661/delete-a-sharepoint-wiki-page-that-has-no-menu/1775961#1775961Comment by Chris Farmer on Delete a Sharepoint Wiki page that has no menuChris Farmer2009-11-21T20:34:01Z2009-11-21T20:34:01ZIt's a pretty extreme measure to delete a site collection when a single item in a single list gets messed up, isn't it?http://stackoverflow.com/questions/1763575/list-view-changeComment by Chris Farmer on List View ChangeChris Farmer2009-11-19T19:00:28Z2009-11-19T19:00:28ZIsn't this the same thing as changing permissions on the list?http://stackoverflow.com/questions/1750893/what-is-optimal-method-for-accessing-function-parameters-in-javascript/1751192#1751192Comment by Chris Farmer on What is optimal method for accessing function parameters in javascript?Chris Farmer2009-11-17T20:31:32Z2009-11-17T20:31:32ZYour senior colleague will, too.http://stackoverflow.com/questions/1747922/do-we-need-sharepoint-to-be-installed-on-same-machine-for-developement/1748029#1748029Comment by Chris Farmer on Do we need sharepoint to be installed on same machine for developement?Chris Farmer2009-11-17T16:07:48Z2009-11-17T16:07:48ZI'd just like to make the point that it's (IMO, of course) just so much easier to do your SharePoint development in VMware or some other virtualized environment. Performance is acceptable on a decent dev workstation, and you have the added benefit of VM snapshots which are occasionally useful to roll back horrible configuration or deployment mistakes.http://stackoverflow.com/questions/1737149/limit-the-number-of-available-visible-content-types-in-document-librariesComment by Chris Farmer on Limit the number of available/visible Content Types in document libraries Chris Farmer2009-11-15T18:26:49Z2009-11-15T18:26:49ZJust curious... what kinds of data are you storing in this list with 50+ associated content types?http://stackoverflow.com/questions/1733243/image-generatorComment by Chris Farmer on Image generatorChris Farmer2009-11-14T04:21:20Z2009-11-14T04:21:20ZThese are apparently generated on the server, so it's important to know what server-side technology you'd be using on your own site.http://stackoverflow.com/questions/1732278/what-are-some-questions-to-ask-when-choosing-between-two-equal-programmers/1732308#1732308Comment by Chris Farmer on What are some questions to ask when choosing between two equal programmers?Chris Farmer2009-11-14T02:37:13Z2009-11-14T02:37:13Z@ChristopheD -- true, but if they have a lot of points, it's easier for you to research the kinds of things they claim to have expertise in. Quite valuable, IMO.http://stackoverflow.com/questions/1720364/what-is-use-of-feature-xml-in-moss2007/1720567#1720567Comment by Chris Farmer on What is use of feature.xml in moss2007?Chris Farmer2009-11-13T06:13:22Z2009-11-13T06:13:22Z+1. This book is a great look at the fundamentals of sharepoint from a dev perspective. Well worth buying. http://stackoverflow.com/questions/1726563/how-to-set-exclusive-permissions-on-a-sharepoint-document-libraryComment by Chris Farmer on how to set exclusive permissions on a SharePoint document library?Chris Farmer2009-11-13T03:59:57Z2009-11-13T03:59:57ZI was trying to write a detailed response, but it occurred to me that I don't think there's enough detail here. Are the doclib-project affiliations static? If they change, how/when will they change? Will they change when documents are added/deleted/modified in the library? Is your question really about how to write code to manage the security groups, or is your question more about catching any changes to the library or its documents?http://stackoverflow.com/questions/1720364/what-is-use-of-feature-xml-in-moss2007Comment by Chris Farmer on What is use of feature.xml in moss2007?Chris Farmer2009-11-12T20:02:54Z2009-11-12T20:02:54ZIt's almost impossible to believe these questions are even real at this point. http://stackoverflow.com/questions/1720305/getting-started-with-sharepoint-2010-for-sharepoint-2007-developersComment by Chris Farmer on Getting started with SharePoint 2010 for SharePoint 2007 DevelopersChris Farmer2009-11-12T06:35:22Z2009-11-12T06:35:22ZWay to snag the low-hanging SharePoint 2010 fruit!