User Sam Yates - Stack Overflow most recent 30 from stackoverflow.com 2009-11-30T19:14:29Z http://stackoverflow.com/feeds/user/14911 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1758524/how-to-quickly-find-a-sharepoint-document-library-by-id/1761210#1761210 1 Answer by Sam Yates for How to quickly find a sharepoint document library by id? Sam Yates 2009-11-19T06:07:55Z 2009-11-19T06:07:55Z <p>If you have MOSS Search available, then it might help, depending on the lag you have between these lists getting created and needing to search for them. You could probably map list id as a managed property and do a quick search for list objects with the id in question.</p> <p>For lots of classes of problems it seems like search is the fastest way to rip through huge sets of data. In fact if this approach worked for you, you really wouldn't even need to know the site collection up front. Don't have access to any of my MOSS environments at the moment, so can't verify this will work though.</p> http://stackoverflow.com/questions/1602033/sharepoint-forms-authentication/1628741#1628741 0 Answer by Sam Yates for Sharepoint Forms authentication Sam Yates 2009-10-27T04:10:59Z 2009-10-27T04:10:59Z <p>You need to add your the configuration information for the membership provider to the web.config file for Central Administration. This will allow Central Admin to find from both AD and your own membership. There are <a href="http://technet.microsoft.com/en-us/library/cc288259.aspx" rel="nofollow">examples on Technet</a> for a SQL Server and an LDAP membership provider. Note how it mentions that the membership provider info needs to be added to both the web app's web.config and to Central Admin's. If you're using a Role Manager though, don't put that info in the Central Admin web.config, or at least not unless you really know what you're doing and why. :)</p> <p>Once you do this the people picker should be able to find people from your FBA solution's membership provider. One little caveat if you happen to be using the same AD store (or some kind of replica) for both Windows auth and LDAP auth. You'll need to use the "prefix" of your membership provider name when specifying the user, otherwise the people picker will always lookup the native AD version of that user. For example, looking up "jdoe" will always find "domain\jdoe" first. If you want jdoe from an LDAP provider pointing at that AD, you'll have to explicitly put in "ldap:jdoe" (substituting whatever you called your membership provider in the web.config for "ldap"</p> http://stackoverflow.com/questions/1290814/is-the-onadded-field-event-fired-when-a-content-type-is-added-to-a-list 1 Is the OnAdded field event fired when a content type is added to a list Sam Yates 2009-08-17T22:25:02Z 2009-08-17T22:25:02Z <p>Say I have a custom field type called MyCoolField that I have deployed in a solution. This solution also contains a an SPEventReceivers that has overridden ItemAdded, ItemUpdated, and ItemDeleting. All the specifics of this particular field type are probably not super relevant, but one things to note is that inside of the "OnAdded" method it attempts to add a series of event receivers to its ParentList. </p> <p>After this solution has been deployed, I activate a site-scoped feature that does nothing except add a new site content type - MyContentType. Now, I would not expect any event receivers registered anywhere, since <a href="http://msdn.microsoft.com/en-us/library/microsoft.sharepoint.spcontenttype.parentlist.aspx" rel="nofollow">ParentList is supposed to be null for site content types</a>. So in yet another feature, I go add this MyContentType to a list. The question I have is whether I should expect the OnAdded method to get called now (when adding a content type to the list) or does it only get called when adding the <strong>field</strong> to list/content type? It seems like it is not getting added (the event receivers are not getting registered), but I wanted to make sure that is truly expected behavior and not something else odd going on in this environment.</p> http://stackoverflow.com/questions/1164278/importing-outlook-contacts-into-a-sharepoint-application-page/1183339#1183339 0 Answer by Sam Yates for Importing Outlook contacts into a SharePoint application page Sam Yates 2009-07-25T23:27:26Z 2009-08-13T12:51:35Z <p>Do you really need the Outlook address book control in particular, or just the values in the GAL that Exchange knows about? If it's the latter I suspect you could gin up a reasonable UI to call the <a href="http://msdn.microsoft.com/en-us/library/aa563518.aspx" rel="nofollow">ResolveNames Operation</a> that's part of the Exchange web services. If SOAP isn't your thing and OWA is available to you, you could try an approach that uses more <a href="http://www.codeproject.com/KB/exchange/AccessGAL.aspx" rel="nofollow">REST-style calls to OWA</a>.</p> http://stackoverflow.com/questions/1260784/is-it-possible-to-use-custom-data-types-for-moss-user-profile-properties/1263415#1263415 1 Answer by Sam Yates for Is it possible to use custom data types for MOSS user profile properties? Sam Yates 2009-08-11T22:51:52Z 2009-08-11T22:51:52Z <p>As near as I can tell there is a fixed set of available types for user profile properties. As noted <a href="http://msdn.microsoft.com/en-us/library/microsoft.office.server.userprofiles.property.type.aspx" rel="nofollow">Property class reference docs</a>, these appear to be: BigInteger, Binary, Boolean, Date, DateTime, Email, Float, HTML, Integer, Person, String, unique identifier, or URL. I suppose binary, HTML, and perhaps String may have some potential merit for "roll your own" complex type-style property, but it appears difficult to do anything unhackish.</p> http://stackoverflow.com/questions/1137387/sharepoint-list-calculations/1183684#1183684 0 Answer by Sam Yates for SharePoint List calculations Sam Yates 2009-07-26T03:54:29Z 2009-07-26T03:54:29Z <p>If you have requirements for a display like this, you may find it easier to not store it as a column at all but just do a data form web part using SharePoint Designer (or your web part creation mechanism of choice) that outputs a table view that looks like what you want. I think it should be relatively easy to do that kind of running total with an XSLT template with a variable or two.</p> <p>I don't think there is going to be an efficient way to do this with an actual column.</p> http://stackoverflow.com/questions/1159173/sharepoint-error-whan-adding-user-as-site-owner/1183387#1183387 1 Answer by Sam Yates for SharePoint error whan adding user as site owner. Sam Yates 2009-07-25T23:52:03Z 2009-07-25T23:52:03Z <p>It sounds like maybe stsadm -backup and -restore were used to move the site from another farm? This used to cause a variety of hard-to-debug issues, and was only addressed as of the April Cumulative Update (released right after SP2). Do you know if both your servers have the April Cumulative Update installed?</p> http://stackoverflow.com/questions/1159652/recommendations-for-implementing-aspects-of-social-networking-in-sharepoint/1183374#1183374 0 Answer by Sam Yates for Recommendations for implementing aspects of social networking in SharePoint Sam Yates 2009-07-25T23:46:36Z 2009-07-25T23:46:36Z <p>I'd be very wary about buying large, 3rd-party, social-networking add-ons to MOSS 2007 unless you know you're going to be stuck with that version of SharePoint for a long time. Social Networking is going to be a <em>huge</em> emphasis in SP 2010, and you can bet that whatever the 3rd party solutions do, by definition they won't be leveraging the features built into the new product. </p> http://stackoverflow.com/questions/1095470/how-to-hide-a-custom-field-type-from-new-column-choices 0 How to hide a custom field type from new column choices Sam Yates 2009-07-08T00:00:14Z 2009-07-25T22:35:15Z <p>I'm trying to figure out a clean way to hide a custom field type from the list of available columns when a user goes to add a new column to a list. I only want this field type to show up when a given feature has been activated (the feature could be site, web, or web app scoped for my purposes).</p> <p>One theory (haven't had a chance to try implementing this yet) is that I could set all the ShowOnListAuthoringPages (and similar) properties to "false" in the fldtypes_myfield.xml file, then programmatically set this value to true when a given feature is activated.</p> http://stackoverflow.com/questions/1095470/how-to-hide-a-custom-field-type-from-new-column-choices/1183247#1183247 0 Answer by Sam Yates for How to hide a custom field type from new column choices Sam Yates 2009-07-25T22:35:15Z 2009-07-25T22:35:15Z <p>So, it does look like the only way to do really hide the field times is with attributes in the fldtypes_myfield.xml file. There are a series of properties that affect it's visibility described in <a href="http://msdn.microsoft.com/en-us/library/aa544201.aspx" rel="nofollow">this MSDN page</a>. In my particular case I ended up just using the UserCreatable property and marking it as false. This pretty much means the field type won't show up in the UI anywhere, so you'll need to make a feature or some kind of list/library template that you deploy that makes use of the type. I guess this is an area we can hope for improvement on in SP 2010 (perhaps along with a scoping mechanism for event receivers so they don't have to be "global" in the farm).</p> http://stackoverflow.com/questions/978057/can-i-create-a-countif-calculated-column-in-sharepoint/979516#979516 5 Answer by Sam Yates for Can I create a COUNTIF calculated column in SharePoint? Sam Yates 2009-06-11T05:41:00Z 2009-06-14T14:22:31Z <p>(Edited some wording for clarity per suggestion from <a href="http://stackoverflow.com/users/12389/dariom">dariom</a>).</p> <p>You may be able to get what you want with another list using a not-so-well-known variation of a lookup column.</p> <p>Let's say you have a list called Companies with values in the title column like "Starbucks", "Peets", etc. Now you also have the Customers list you refer to, but the "Company" column is a lookup column pointing to the title column in the Companies list.</p> <p>You can add a count very similar to what you described to your Companies list. Go to your Companies list, add a column of type "Lookup" referring to the Customers list and you'll notice that in the drop-down area where you define the lookup if you point back to the Customers list, you'll have a new option called "Count Related". This is here automatically because it recognizes that the Customers list has a lookup pointing back to this one. Select that Count Related option and now your Companies list will have a column counting how many customers are associated with that company. </p> <p>No coding, Javascript hacks, or anything. Just hidden SharePoint auto-magic.</p> http://stackoverflow.com/questions/976932/sharepoint-exchange-distribution-list-mirroring/979535#979535 2 Answer by Sam Yates for SharePoint/Exchange Distribution List Mirroring? Sam Yates 2009-06-11T05:49:25Z 2009-06-11T05:49:25Z <p>If the SharePoint admin has configured incoming email correctly on the servers and in Central Admin, there should be an "Incoming Email Settings" option in the settings for a SharePoint Discussion List. You just assign an incoming email address, and then you can cc that address on any email discussions threads. As mentioned earlier, the discussion list will attempt to maintain the thread for incoming emails with matching subject lines (at least that's what it appears to do, I've never Reflectored the code for it or anything).</p> <p>Like any other kind of list discussion lists allow you to subscribe to alerts (via email or RSS feed) for new items as well.</p> <p>One thing to note about incoming email into lists/libraries, is that SharePoint basically trusts the "from" address and attributes items to those users just as if they had actually authenticated and put things in via the web interface, which is a little bit sketchy from an audit trail standpoint if you are concerned about that kind of thing.</p> http://stackoverflow.com/questions/273211/is-creating-a-view-on-sharepoint-tables-bad-style/846287#846287 0 Answer by Sam Yates for Is creating a view on SharePoint tables bad style? Sam Yates 2009-05-10T23:03:36Z 2009-05-10T23:03:36Z <p>Well, if the joins you need to do are pretty simple, defining a <a href="http://office.microsoft.com/en-us/sharepointdesigner/HA101154041033.aspx" rel="nofollow">linked data source</a> in SharePoint Designer may work for you</p> http://stackoverflow.com/questions/592403/access-a-sharepoint-website-fom-a-java-application-with-kerberos-authentication/593397#593397 1 Answer by Sam Yates for Access a SharePoint website fom a java Application with Kerberos authentication Sam Yates 2009-02-27T03:22:27Z 2009-02-27T03:22:27Z <p>So just to help you broaden your search for answers a bit, there's nothing SharePoint-specific about the Kerberos authentication used here. In fact SharePoint doesn't really have it's own authentication mechanisms (at least assuming we're talking about WSS 3/MOSS here). It just relies on the underlying ASP.NET/IIS authentication capabilities.</p> <p>Sooo, if you're running your Java ausing a modern JDK, you'll probably have an easy time. See the <a href="http://java.sun.com/javase/6/docs/technotes/guides/net/http-auth.html" rel="nofollow">docs on HTTP authentication mechanisms</a>. There's some nice code snippets in there. One of which I'll reproduce for reference here. Really though, check out the link.</p> <pre><code>import java.io.BufferedReader; import java.io.InputStream; import java.io.InputStreamReader; import java.net.Authenticator; import java.net.PasswordAuthentication; import java.net.URL; public class RunHttpSpnego { static final String kuser = "username"; // your account name static final String kpass = "password"; // your password for the account static class MyAuthenticator extends Authenticator { public PasswordAuthentication getPasswordAuthentication() { // I haven't checked getRequestingScheme() here, since for NTLM // and Negotiate, the usrname and password are all the same. System.err.println("Feeding username and password for " + getRequestingScheme()); return (new PasswordAuthentication(kuser, kpass.toCharArray())); } } public static void main(String[] args) throws Exception { Authenticator.setDefault(new MyAuthenticator()); URL url = new URL(args[0]); InputStream ins = url.openConnection().getInputStream(); BufferedReader reader = new BufferedReader(new InputStreamReader(ins)); String str; while((str = reader.readLine()) != null) System.out.println(str); } } </code></pre> http://stackoverflow.com/questions/528119/sharepoint-how-to-set-permission-level-to-add-item-but-not-view/530931#530931 0 Answer by Sam Yates for Sharepoint - how to set permission level to add item but not view? Sam Yates 2009-02-10T02:53:45Z 2009-02-10T02:53:45Z <p>You didn't really specify which kind of list you're using, but if you look in the list settings under "Advanced Settings" you'll probably find an "Item Level Permissions" section. This will let you choose to limit users to reading (or editing) only the items they've submitted. This goes above and beyond any other ACLs set on the list or it's items.</p> http://stackoverflow.com/questions/247708/sharepoint-2007-analytics-package/248290#248290 0 Answer by Sam Yates for SharePoint 2007 Analytics Package. Sam Yates 2008-10-29T20:24:29Z 2008-10-29T20:24:29Z <p>Take a look at <a href="http://www.nintex.com/en-US/Products/Pages/NintexReporting2008.aspx" rel="nofollow">Nintex Reporting</a>. We just bought it and it seems like a nice enhancement on top of the out of the box usage reporting. They seem to do everything "right" from a supportability point of view too, so you don't have a tool in there monkeying directly with your content databases. </p> <p>I've also heard claims from our Webtrends rep that they have some SharePoint-specific capabilities, if that's a product suite you already happen to use.</p> http://stackoverflow.com/questions/173784/how-can-i-iterate-recursivly-though-a-sharepoint-list-using-webservices/175990#175990 1 Answer by Sam Yates for How can I iterate recursivly though a sharepoint list using webservices? Sam Yates 2008-10-06T20:13:03Z 2008-10-06T20:13:03Z <p>On the GetListItems method, one of the optional parameters is an XMLNode called "QueryOptions". One of the elements you can put in that node is &lt;Folder&gt;. </p> <p>So you should be able to pass in something like:<br> &lt;QueryOptions&gt;<br> &nbsp;&lt;Folder&gt;/My/Path/Here&lt;/Folder&gt;<br> &lt;/QueryOptions&gt;<br></p> <p>I may be off a bit syntatically (didn't try to build and run a query when making this post), but the general idea should be sound. You can see more details on this in the <a href="http://msdn.microsoft.com/en-us/library/lists.lists.getlistitems.aspx" rel="nofollow">MSDN GetListItems Reference</a>.</p> http://stackoverflow.com/questions/103402/how-can-you-have-sharepoint-link-lists-default-to-opening-in-a-new-window/106111#106111 1 Answer by Sam Yates for How can you have SharePoint Link Lists default to opening in a new window? Sam Yates 2008-09-19T22:21:08Z 2008-09-19T22:21:08Z <p>Please think long and hard before doing this. Opening new windows usually violates the principle of least surprise for the user, and doesn't really achieve what people are usually hoping to do by popping a new window (i.e. they don't really "stick" to your original site any better just because it's sitting in a now-hidden window behind the one you popped up).</p> <p>Also, the solution would probably be different depneding on your version of SharePoint. You may want to edit to the question to indicate WSS 2/3, SPS, MOSS, etc.</p> http://stackoverflow.com/questions/11462/sharepoint-wikis/80110#80110 6 Answer by Sam Yates for Sharepoint Wikis Sam Yates 2008-09-17T04:52:14Z 2008-09-17T04:52:14Z <p>We run into this topic <em>all</em> the time, and the first question I have taken to asking people is "Why do you need a wiki"? Almost always the answers are things "ease of editing", "multiple contributors", and "Word is to heavyweight". <em>Very</em> rarely have we seen anyone ask for what I consider to be uniquely wiki-like features (special "magic" markup, fine grained version history showing changes, etc). Also, they usually want some kind of categorization of things, not just completely free-form pages.</p> <p>In the SharePoint world these things should scream "list" at you if you've been working with the tool for a while. There is basically no particular reason to use a wiki for these knowledge base-style applications, especially since "ease of editing" usually directly conflicts with the idea of learning a special markup language for most user. Through a couple of rich-text columns in there, and you're all set. If you really don't like the built-in rich-text editor (yes the image uploading process is clunky and it doesn't work in Firefox), have someone in your organization go drop the 8 Benjamins and go get the <a href="http://www.telerik.com/products/sharepoint/radeditor.aspx" rel="nofollow">RadEditor for SharePoint</a>. It should pretty much handle those concerns.</p> <p>Generally once we've gotten over the "but it needs to be a wiki" dogma, we've had pretty good customer reception to just using lists. In some cases, where a little more of a page templating facility was required we turned to using the WCM features of MOSS, which requires a little more up-front thought about templates, but also has a better out of the box experience for things like content snippets and image handling.</p> http://stackoverflow.com/questions/55669/sharepoint-permissions/79977#79977 1 Answer by Sam Yates for SharePoint Permissions Sam Yates 2008-09-17T04:26:45Z 2008-09-17T04:26:45Z <p>If you are getting thrown off by the fact that the user/group is listed as having "Limited Access" on the ACLs on, say, the parent site/web. That's just a placeholder SharePoint uses to make sure people have access to at least the bare minimum set of objects (e.g. theme and other UI files and the parent web itself) to get to the list or item you actually want them to have access to. </p> <p>As long as the group only has access on a single list, you should have to worry about them having access to anything else.</p> http://stackoverflow.com/questions/61339/getting-user-photo-from-spuser-using-wss-object-model/79922#79922 0 Answer by Sam Yates for Getting user photo from SPUser using WSS Object model Sam Yates 2008-09-17T04:17:59Z 2008-09-17T04:17:59Z <p>If you are strictly talking about WSS 3.0 (and not MOSS), then you really don't have global user profiles per se, but a hiddenh User Information List in each site collection. That mean none of the stuff in the Microsoft.Office.Server namespaces is available to you.</p> <p>However, you can update the User Information List programatically as long as you know the URL to a user's picture. As long as you're running with some kind of elevated privileges, you should be able to <a href="http://www.sharepointblogs.com/jimyang/archive/2006/12/05/update-wss-3-0-user-profile-programmatically.aspx" rel="nofollow">manipulate this list</a> just like you can with any other SharePoint list. Keep in mind that this list is only good for the scope of a site collection, so users would have to make this same update all over the place to actually have a photo URL. Plus users don't get into the User Information List until someone assigns some kind of permission to them, so not every user in your domain will be in there.</p> <p>The clean way to handle this is definitely the User Profile mechanism is MOSS, but if that's an option the question should really be updated to ask about MOSS vs WSS.</p> http://stackoverflow.com/questions/72773/creating-sharepoint-2007-list-items-via-the-web-dav-interface/79838#79838 0 Answer by Sam Yates for Creating SharePoint 2007 list items via the Web Dav interface Sam Yates 2008-09-17T04:00:58Z 2008-09-17T04:00:58Z <p>No, but in my experience most things looking to speak WebDAV to something are pretty much expecting to work with files or documents of some sort. Since non-library lists in SharePoint don't really have an associated file (yeah, they can have attachments, but that's not the same), then effectively the primary construct WebDAV is built around (document) is missing. What would you be Authoring and Versioning?</p> <p>If you are writing your own client, there are <a href="http://msdn.microsoft.com/en-us/library/lists.aspx" rel="nofollow">robust web services</a> for interacting with lists (both the library and non-library varieties)</p> http://stackoverflow.com/questions/72537/auto-number-column-in-sharepoint-list/79813#79813 1 Answer by Sam Yates for Auto number column in SharePoint list Sam Yates 2008-09-17T03:55:19Z 2008-09-17T03:55:19Z <p>If you want something beyond the ID column that's there in all lists, you're probably going to have to resort to an Event Receiver on the list that "calculates" what the value of your unique identified should be or using a custom field type that has the required logic embedded in this. Unfortunately, both of these options will require writing and deploying custom code to the server and deploying assemblies to the GAC, which can be frowned upon in environments where you don't have complete control over the servers.</p> <p>If you don't need the unique identifier to show up immediately, you could probably generate it via a workflow (either with SharePoint Designer or a custom WF workflow built in Visual Studio).</p> <p>Unfortunately, calculated columns, which seem like an obvious solution, won't work for this purpose because the ID is not yet assigned when the calculation is attempted. If you go in after the fact and edit the item, the calculation may achieve what you want, but on initial creation of a new item it will not be calculated correctly.</p> http://stackoverflow.com/questions/1605564/place-javascript-files-in-12-hive-or-in-document-library/1606508#1606508 Comment by Sam Yates on Place javascript files in 12 Hive or in Document Library? Sam Yates 2009-10-27T04:00:22Z 2009-10-27T04:00:22Z Good list. One extra consideration might be how you want to reference the resource files though. Relative links are easier if you know your stuff is in _layouts. http://stackoverflow.com/questions/1605564/place-javascript-files-in-12-hive-or-in-document-library/1619729#1619729 Comment by Sam Yates on Place javascript files in 12 Hive or in Document Library? Sam Yates 2009-10-27T03:56:51Z 2009-10-27T03:56:51Z If you use a solution those files do indeed get &quot;automagically&quot; delivered to all your WFEs. Also, there's no restriction on putting files in the 12 hive. You're just not suppposed to modify the OOTB files. http://stackoverflow.com/questions/1164278/importing-outlook-contacts-into-a-sharepoint-application-page/1183339#1183339 Comment by Sam Yates on Importing Outlook contacts into a SharePoint application page Sam Yates 2009-08-13T12:52:17Z 2009-08-13T12:52:17Z Good catch, thanks. I changed the link. Must have fat-fingered the cut and paste or something (probably too many windows open). http://stackoverflow.com/questions/1095470/how-to-hide-a-custom-field-type-from-new-column-choices/1096708#1096708 Comment by Sam Yates on How to hide a custom field type from new column choices Sam Yates 2009-07-09T13:55:59Z 2009-07-09T13:55:59Z Yeah you're right. The publishing field types still show up. Don't know what I was thinking.