active questions tagged sharepoint - Stack Overflowmost recent 30 from stackoverflow.com2009-12-11T07:40:59Zhttp://stackoverflow.com/feeds/tag/sharepointhttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1883279/newbie-sharepoint-website-question1Newbie Sharepoint website questionunknown (yahoo)2009-12-10T19:13:16Z2009-12-11T02:47:11Z
<p>I am used to building java web applications.
I am used to MCV.
As I learn how to build a Sharepoint site, is it ok to think of building Sharepoint sites similarly, particulary where there is business logic layer, that, for instance, would grab data from various DBs, do some logic, then go to a certain page?</p>
http://stackoverflow.com/questions/1885062/roadmap-of-what-to-learn-for-a-sharepoint-developer1Roadmap of what to learn for a Sharepoint Developerdotnetdev2009-12-11T00:27:30Z2009-12-11T02:40:04Z
<p>Hi,</p>
<p>I work with MOSS on a daily basis, but to be a "Sharepoint Developer", what would the roadmap of tasks I need to master/concepts I need to know? So I've learnt webparts, featurs, and how to deploy them (I'm going to actually practise this very soon but have some technical issues to solve on my workstation), but I haven't seen an actual full roadmap of what I would need to know.</p>
<p>I would be grateful for some sort of list of what I need to master.</p>
<p>Thanks</p>
http://stackoverflow.com/questions/1883937/doesuserhavepermissions-returns-false-for-domain-domain-users0DoesUserHavePermissions returns false for "DOMAIN\domain users"webwires2009-12-10T20:52:16Z2009-12-11T02:00:53Z
<p>Very strange edge case that has me perplexed. I have a web service that returns a list of permissions for a list of site urls. To determine if a user has permissions to the site I use the following code.</p>
<pre><code>[WebMethod]
public GetSiteListPermissionsResponseCollection GetSiteListPermissions(string[] siteList)
{
GetSiteListPermissionsResponseCollection siteListReturn = new GetSiteListPermissionsResponseCollection();
foreach (string key in siteList)
{
string escapedKey = Uri.EscapeUriString(key);
if (Uri.IsWellFormedUriString(escapedKey, UriKind.Absolute))
{
bool originalCatchValue = SPSecurity.CatchAccessDeniedException;
SPSecurity.CatchAccessDeniedException = false;
try
{
using (SPSite site = new SPSite(escapedKey, SPContext.Current.Site.SystemAccount.UserToken))
{
using (SPWeb web = site.OpenWeb())
{
siteListReturn.Add(new GetSiteListPermissionsResponse(key, web.DoesUserHavePermissions(SPContext.Current.Web.CurrentUser.LoginName, SPBasePermissions.Open).ToString()));
}
}
}
catch
{
siteListReturn.Add(new GetSiteListPermissionsResponse(key, false.ToString()));
}
finally
{
SPSecurity.CatchAccessDeniedException = originalCatchValue;
}
}
}
return siteListReturn;
}
</code></pre>
<p>This works fairly well but we ran into a very strange instance in which DoesUserHavePermissions returns False. If the "DOMAIN\domain users" is used to provide access then at ONE PARTICULAR SITE the reult is false. All other sites seem to work fine.</p>
<p>You can add the user directly and it instantly returns a true for access but for some reason this site and this one site only will not return a true response when "domain users" is used to provide access privledges.</p>
<p>Any clues?</p>
http://stackoverflow.com/questions/1884178/sharepoint-search-server-not-installed-on-wss-3-0-box-how-do-i-add-it0sharepoint search server not installed on wss 3.0 box how do i add it?allen2009-12-10T21:31:04Z2009-12-10T22:57:34Z
<p>hi,</p>
<p>I have wss 3.0 set up and in use, but the search is not working. most of the troubleshooting starts with "open central administration, click Operations then Services On Server, then start and stop WSS Search Server".. but there is no search server listed.. only services are central admin, help search, incoming email, and web app.</p>
<p>any ideas?</p>
<p>thanks!!</p>
http://stackoverflow.com/questions/1881451/tell-if-user-exists-in-sharepoint-group-through-web-service0Tell if user exists in SharePoint Group through web serviceJosh2009-12-10T14:48:00Z2009-12-10T20:23:51Z
<p>I am working on an internal web application that will use predefined SharePoint groups for determining a user's security level. I have done some research and found SharePoint's "usergroup" web service which has the method "GetUserCollectionFromGroup()" which will list all of the users in a given SharePoint group. </p>
<p>The problem I am having is some of the predefined SharePoint groups have Active Directory groups added to them, not the individual users. So, when I call GetUserCollectionFromGroup("Members") I get back a single entry for the Active Directory group "DOMAIN\domain users\". Is there a way to check if either a user or an Active Directory group that the user belongs to is a member of a SharePoint group using only SharePoint web services? Or will I need to check the SharePoint group and then lookup any and all Active Directory groups to see if this user is a member there also?</p>
http://stackoverflow.com/questions/855168/timeout-problems-with-microsoft-office-sharepoint-server-2007-query-web-service2Timeout problems with Microsoft Office SharePoint Server 2007 Query Web ServiceAlexandre2009-05-12T22:22:22Z2009-12-10T19:58:44Z
<p>We are having issues with the MOSS 2007 Web Service. Specifically, the Query/QueryEx method of the API. </p>
<p>We are using the SQL Syntax to query sharepoint, and for most cases, our search execution time is very fast. However, when we add filters and sorts, things start slowing down. In some cases we even get an error.</p>
<p>For example, this MSSQLFT query will give a System.ServiceProcess.TimeoutException exception about 50% of the time. The timeout will occur around the 10 seconds mark.</p>
<pre><code>SELECT WorkId, Rank, ... , PerforceFolder, PerforceDateSubmitted FROM SCOPE()
WHERE "scope"='Tech_Depot' AND (FileExtension = 'cpp' )
ORDER BY PerforceDateSubmitted, Rank DESC
</code></pre>
<p>Is there any settings / query parameter / etc... we can use to allow a bigger SEARCH execution time on the sharepoint back-end? </p>
http://stackoverflow.com/questions/1883430/accessing-sharepoint-authentication-information-from-net-activex-control0Accessing SharePoint authentication information from .NET ActiveX controlPhilipp Schmid2009-12-10T19:38:23Z2009-12-10T19:53:53Z
<p>We have a <strong>.NET ActiveX control</strong> which is embedded inside a <strong>custom SharePoint page</strong>.
The user has to authenticate (<strong>Windows Authentication</strong> not Forms Authentication) to access this page. </p>
<p>Our ActiveX control is making <strong>web service calls back to the SharePoint server</strong>. Because the <strong>SharePoint server does not allow anonymous access</strong>, we need to provide credentials as part of the web services call. If the user is checking the 'Remember Password' checkbox when prompted for credentials, then we can access those credentials via the <strong>CredentialCache.DefaultNetworkCredentials</strong>. However, if they <strong>do not check that checkbox</strong>, we need <strong>another mechanism</strong> to get a hold of valid credentials (which must exist since we are embedded in a page that can only be accessed via authentication).</p>
<p>How can we access the credential information (probably stored in a cookie) we need to authenticate against SharePoint so we can access the web services?</p>
http://stackoverflow.com/questions/1882923/cant-unpublish-pages-access-denied-error0Cant unpublish pages access denied error78lro2009-12-10T18:11:59Z2009-12-10T19:51:39Z
<p>I get the sharepoint access denied page when I try to use the unpublish option on a list item in the pages library.</p>
<p>We are using approval workflow and publishing, as well as versioning on the pages library.</p>
<p>If I navigate to the version history page, the unpublish version works correctly.</p>
<p>Can anyone advise on this?</p>
<p>All the best</p>
http://stackoverflow.com/questions/1875058/how-to-retrieve-attachment-file-name-in-display-form-of-custom-list-form-with-sha0How to retrieve attachment file name in display form of custom list form with SharePoint Designerkisin2009-12-09T16:28:21Z2009-12-10T16:22:54Z
<p>I have created custom list and modified display form of list for display attached image of list.<br>
I have place HTML image control on display form but I can’t get attachment URL path which I can assign to Image control. I tried to some level hardcode like: </p>
<p>“<a href="http://Server" rel="nofollow">http://Server</a> Name/SiteName/Lists/ListName/Attachments/{@ID}/<strong>???</strong>” </p>
<p>I can get ID value so it can be work but the last thing file name, I am not able to get the attached file name.<br>
Do I need to write code to get path? If yes then which event I have to inherited</p>
http://stackoverflow.com/questions/1796875/sharepoint-send-an-email-to-users-specified-in-a-field0SharePoint send an email to users specified in a FieldMark Anthony2009-11-25T13:20:42Z2009-12-10T16:00:22Z
<p>I have a SharePoint list of Issues and have set a column (called Alert) to a “Person or Group” (allowing multiple names). </p>
<p>I would like the system to send an email to all the users listed in the Alert field, if the respective Issue is modified.</p>
<p>How do I set the Workflow to send an email the users as specified by the data in the Alert field (if there is any)? I know how to use the Workflow etc – the problem the “To” part of the Workflow's email.</p>
<p>(Sorry if this item has already been tackled – I've searched Stack Overflow and Googled around but could not find an answer)</p>
<p>Preferably through SharePoint Designer. i.e. preferably with no Code.</p>
<p>Regards.</p>
http://stackoverflow.com/questions/1880958/sharepoint-custom-list-with-timestamp-field0Sharepoint Custom List with TimeStamp Fieldpistacchio2009-12-10T13:28:07Z2009-12-10T15:58:42Z
<p>Hello,</p>
<p>I'm making a custom SharePoint List. I need a TimeStamp Field, but the only available type, by default, is DateTime.</p>
<p>Any help?</p>
http://stackoverflow.com/questions/1881530/sharepoint-designer-how-do-i-disable-auto-insertion-of-image-size-attributes0SharePoint Designer: how do I disable auto insertion of image size attributes?David Högberg2009-12-10T15:00:02Z2009-12-10T15:41:56Z
<p>I'm hand-editing HTML files in a plain text editor (vim) via SharePoint Designer. Problem is, as soon as I save the files, SharePoint automatically adds width and height attributes to all the img-tags.</p>
<p>Anyone know if it's possible to disable this "feature"?</p>
<p>I don't want it to mess around with my code. Yeah, shouldn't be using SharePoint Designer then, I know - problem is that's not an option.</p>
http://stackoverflow.com/questions/1819243/adding-values-to-an-infopath-xml-schema1Adding values to an InfoPath XML schemaharryovers2009-11-30T11:21:37Z2009-12-10T14:51:12Z
<p>hi,
I have an InfoPath form in a SharePoint workflow. I'm trying to use a blank copy of the XML produced by the InfoPath to create new instances of the form for the document library to start the workflow, thats not where my problem is. I have an app which copies the file to the document library but when i try to populate the XML i get this error:</p>
<blockquote>
<p>Data at the root level is invalid.
Line 1, position 1 </p>
</blockquote>
<p>at the line which reads</p>
<pre><code>doc.LoadXml("copiedFile.xml");
</code></pre>
<p>I have no idea why it does the, as to my knowledge the XML is well formed (as this is done automatically by InfoPath) so i can't see where the problem is.</p>
<p>the first four lines of the XML are as follows:</p>
<pre><code><?xml version="1.0" encoding="utf-8"?>
<?mso-infoPathSolution name="urn:schemas-microsoft-com:office:infopath:InfoPathForm:-myXSD-2009-10-12T13-20-27" solutionVersion="1.1.0.84" productVersion="12.0.0.0" PIVersion="1.0.0.0" href="http://seed-dev1/FormServerTemplates/InfoPathForm%5B3%5D.xsn"?>
<?mso-application progid="InfoPath.Document" versionProgid="InfoPath.Document.2"?>
<my:myFields xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:dfs="http://schemas.microsoft.com/office/infopath/2003/dataFormSolution" xmlns:xhtml="http://www.w3.org/1999/xhtml" xmlns:my="http://schemas.microsoft.com/office/infopath/2003/myXSD/2009-10-12T13:20:27" xmlns:xd="http://schemas.microsoft.com/office/infopath/2003" xml:lang="en-US">
</code></pre>
http://stackoverflow.com/questions/1752854/partcover-and-typemock-integration1Partcover and Typemock integrationAndrew2009-11-18T00:31:57Z2009-12-10T13:37:36Z
<p>Hi,</p>
<p>I was wondering if someone has some ideas about how to integrate typemock and partcover.</p>
<p>We have unit tests which use typemock in our c# sharepoint based application and we would like to run them via partcover and be able to see the coverage details.</p>
<p>I have been able to run the typemock tests via partcover, however, partcover is not able to display the coveraged details for the code that was tested?</p>
<p>The way I have gotten the tests to run via partcover is to make Partcover run the Typemock runner which in turn runs MSTest.</p>
<p>My partcover browser settings are as follows:</p>
<p>ExecutableFile: *Path to typemock*\TMockRunner.exe</p>
<p>Working Directory: *A folder that already exists*</p>
<p>Working Arguments: *Path to MSTest*\MSTest.exe /noisolation /testcontainer:*Path to DLL*</p>
<p>Any ideas would be great especially on how partcover retrieves coverage details.</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/1881019/sharepoint-xml-web-part-access-denied0SharePoint: XML web part, access deniedunkown2009-12-10T13:35:46Z2009-12-10T13:35:46Z
<p>I have created a blank collaboration site and a blog as a sub-site. I want to show the blog posts in the blank collaboration site using the XML web part but I am getting this error:</p>
<blockquote>
<p>Cannot retrieve the URL specified in
the XML Link property. For more
assistance, contact your site
administrator.</p>
</blockquote>
<p>I have googled about it and it seems to be some problems for the application pool to access the page. I am however using Kerberos (at least I chose that in the setup and the system admin is saying that the users are prepared for that) and if I have understood it right this kind of problems should not occur since SharePoint should pass the user instead of using its own user. Have I misunderstood this or is it something else that can be wrong?</p>
http://stackoverflow.com/questions/1880906/how-to-add-a-custom-web-part-to-a-webpart-page-through-code2How to add a custom web part to a webpart page through code?MNM2009-12-10T13:12:54Z2009-12-10T13:12:54Z
<p>I wanna how to add a custom web part to a webpart page through code? The custom web part is already deployed to the SharePoint site. It's a MOSS instance.</p>
http://stackoverflow.com/questions/1326814/deploying-sharepoint-solution-using-vsewss0Deploying SharePoint Solution using VSeWSSunknown (yahoo)2009-08-25T08:26:19Z2009-12-10T12:55:46Z
<p>I have a development WSS 3.0 site that I wanted to move to a Production server. I am using VSeWSS 1.2 to do my deployment. I generated the SharePoint solution of the site with SharePoint Solution Generator 2008. When deploying it locally it works fine, but when I tried to deploy it to the remote Production server it would not deploy. </p>
<p>I then had to install VS and the VSeWSS on the Production server and deploy from there because of time constraints. I have seen references where the generated SharePoint solutions are able to deploy fine to remote servers. </p>
<p>What strategies should be used to effectively deploy SharePoint solutions to remote servers with the generated SharePoint solutions when using SharePoint Solution Generator 2008 in VSeWSS 1.2?</p>
http://stackoverflow.com/questions/1443042/what-control-from-infopath-2007-maps-as-spfieldlookup-or-spfieldlookupcollection0What control from InfoPath 2007 maps as SPFieldLookUp or SPFieldLookUpCollection field?Alexandr2009-09-18T07:31:40Z2009-12-10T09:01:17Z
<p>Hi.</p>
<p>Does anyone know what control from InfoPath 2007 maps as SPFieldLookUp or SPFieldLookUpCollection field in SharePoint?</p>
<p>Any idea is accepted.</p>
<p>Thnx.</p>
http://stackoverflow.com/questions/1877333/how-to-handle-alternative-themes-for-visual-impaired-users0How to handle alternative themes for visual impaired usersSteveC2009-12-09T22:19:20Z2009-12-10T04:40:20Z
<p>Has anyone got an thoughts on how to handle theming a WSS site for a single user who is visually impaired ... she uses high contrast settings for Word, etc. </p>
<p>But still leave the usual theme for everyone else </p>
http://stackoverflow.com/questions/451684/sharepoint-problem-saving-a-file-over-an-existing-file-in-a-document-library1Sharepoint problem saving a file over an existing file in a document libraryjoegtp2009-01-16T19:44:09Z2009-12-09T23:56:32Z
<p>I have an existing document in a document library and I'm trying to overwrite that file in code using code like this:</p>
<pre><code>byte[] data = ...
SPListItem li = ...
li.File.SaveBinary(data);
</code></pre>
<p>When I run this code I get:</p>
<pre><code>Microsoft.SharePoint.SPException: The security validation for this page is invalid. Click Back in your Web browser, refresh the page, and try your operation again. ---> System.Runtime.InteropServices.COMException (0x8102006D): The security validation for this page is invalid. Click Back in your Web browser, refresh the page, and try your operation again.
at Microsoft.SharePoint.Library.SPRequestInternalClass.PutFile(String bstrUrl, String bstrWebRelativeUrl, Object varFile, PutFileOpt PutFileOpt, String bstrCreatedBy, String bstrModifiedBy, Int32 iCreatedByID, Int32 iModifiedByID, Object varTimeCreated, Object varTimeLastModified, Object varProperties, String bstrCheckinComment, UInt32& pdwVirusCheckStatus, String& pVirusCheckMessage)
at Microsoft.SharePoint.Library.SPRequest.PutFile(String bstrUrl, String bstrWebRelativeUrl, Object varFile, PutFileOpt PutFileOpt, String bstrCreatedBy, String bstrModifiedBy, Int32 iCreatedByID, Int32 iModifiedByID, Object varTimeCreated, Object varTimeLastModified, Object varProperties, String bstrCheckinComment, UInt32& pdwVirusCheckStatus, String& pVirusCheckMessage)
--- End of inner exception stack trace ---
at Microsoft.SharePoint.Library.SPRequest.PutFile(String bstrUrl, String bstrWebRelativeUrl, Object varFile, PutFileOpt PutFileOpt, String bstrCreatedBy, String bstrModifiedBy, Int32 iCreatedByID, Int32 iModifiedByID, Object varTimeCreated, Object varTimeLastModified, Object varProperties, String bstrCheckinComment, UInt32& pdwVirusCheckStatus, String& pVirusCheckMessage)
at Microsoft.SharePoint.SPFile.SaveBinary(Byte[] file, String checkInComment, Boolean checkRequiredFields, Boolean bIsMigrate, Boolean bIsPublish, SPUser modifiedBy, DateTime timeLastModified, SPVirusCheckStatus& virusCheckStatus, String& virusCheckMessage)
at Microsoft.SharePoint.SPFile.SaveBinary(Byte[] file, Boolean checkRequiredFields, Boolean bIsMigrate, Boolean bIsPublish, SPUser modifiedBy, DateTime timeLastModified)
at Microsoft.SharePoint.SPFile.SaveBinary(Byte[] file, Boolean checkRequiredFields)
at Microsoft.SharePoint.SPFile.SaveBinary(Byte[] file)
at TestClass.UploadFile()
</code></pre>
<p>I'm running this code on a form hosted in the same site as sharepoint and the user that is running the code can upload the file manually just fine. Do I need to delete the file first? Check it out?</p>
http://stackoverflow.com/questions/1781596/will-moss-2007-custom-app-run-fine-on-sharepoint-20101Will MOSS 2007 custom app run fine on sharepoint 2010?Brij2009-11-23T07:28:21Z2009-12-09T22:02:47Z
<p>I have some questions related to new sharepoint version:</p>
<ol>
<li>Will custom MOSS 2007 app run fine on sharepoint 2010?</li>
<li>Will The apps developed using VSEWSS/WSPBuilder work fine without modification?</li>
<li>Do we need to upgrade VS 2008 app for sharepoint to VS 2010?</li>
<li>Do we need to modify the deployed customization of MOSS 2007 during upgrading Sharepoint 2010?</li>
<li>Does the existing MOSS 2007 app work for sharepoint 2010?</li>
<li>What points are needed to be considered to develop app for Both MOSS 2007 and sharepoint 2010?</li>
</ol>
<p>Thanks</p>
http://stackoverflow.com/questions/1876982/sharepoint-xslt-dynamic-filtering0Sharepoint XSLT Dynamic filteringTeckniX2009-12-09T21:21:46Z2009-12-09T21:39:51Z
<p>I'm trying to create a dynamic row filter based on a variable. I have the following code:</p>
<pre><code><xsl:variable name="filter" select="contain(@Title, 'title1') or contain(@Title, 'title2')"/>
<xsl:variable name="Rows" select="/dsQueryResponse/Rows/Row[string($filter)]" />
</code></pre>
<p>This unfortunately doesn't seem to work and I end up with all rows. I'm guessing the filter doesn't actually get applied, since I can copy and paste the output of the $filter variable, copy and paste it in the Row[] and it works as expected.</p>
<p>Anyone tried to do this before?</p>
<p>In case you're wondering the filter variable is actually created using a template that splits a string like:
title1 - title2 - title3
and returns a string like:
contain(@Title, 'title1') or contain(@Title, 'title2') or contain(@Title, 'title3')</p>
<p>Any help would be greatly appreciated!</p>
http://stackoverflow.com/questions/1720305/getting-started-with-sharepoint-2010-for-sharepoint-2007-developers2Getting started with SharePoint 2010 for SharePoint 2007 DevelopersKusek2009-11-12T06:30:56Z2009-12-09T20:36:00Z
<p>Do you know some quick links that will help a SharePoint 2007 Developers to get started with SharePoint 2010.</p>
<p>Let me start with the links I know.</p>
<ol>
<li><a href="http://blog.ksenthil.net/archive/2009/11/06/sharepoint-2010-ndash-resources.aspx" rel="nofollow">General Information on SharePoint 2010</a></li>
<li><a href="http://channel9.msdn.com/learn/courses/SharePoint2010Developer/" rel="nofollow">Must watch videos for SharePoint 2010</a></li>
</ol>
http://stackoverflow.com/questions/1875607/filter-duplicate-options-from-select-dropdown0Filter duplicate options from select dropdownafewscoops2009-12-09T17:47:59Z2009-12-09T19:39:53Z
<p>I have a dropdown selector generated from a list and want to filter the options to remove the duplicate entries. e.g. I want to filter ...</p>
<pre><code><select name="company">
<option "1">Microsoft</option>
<option "2">Microsoft</option>
<option "3">Microsoft</option>
<option "4">Microsoft</option>
<option "5">Apple</option>
<option "6">Apple</option>
<option "7">Google</option>
</select>
</code></pre>
<p>... down to present the user with something like...</p>
<pre><code><select name="company">
<option "1">Microsoft</option>
<option "5">Apple</option>
<option "7">Google</option>
</select>
</code></pre>
<p>(The data comes from a Sharepoint Lookup on another list and I'm thinking I can use jquery to keep only the unique options without having to go into the guts of what's going on.) Can I remove options like this? Thanks.</p>
http://stackoverflow.com/questions/915565/looking-for-microsoft-index-server-asp-net-samples0Looking for Microsoft Index Server ASP.NET samplesttyp002009-05-27T12:58:36Z2009-12-09T17:35:46Z
<p>i am not a programmer, but i can frankenstein code snippets with sufficient proficiency that if, by the grace of a few good souls, i could come across some sample ASP code that acts as a GUI to the ms index server, i could certainly make it work and look good.</p>
<p>if anyone can offer any help, i would do a backflip. but i won't put it on youtube. there's enough faceplant videos out there.</p>
<p>summary: does anyone know where i can find index server asp pages? the more complete, the better. snippets are more than welcome.</p>
<p>btw: io tagged this as sharepoint since this is so similar. some moss admins will certainly be able to lend me a hand!</p>
http://stackoverflow.com/questions/1863367/why-do-i-get-this-error-in-spfieldcollection-addfieldasxml-the-specified-fie-1Why do I get this error in SPFieldCollection.AddFieldAsXml()? "The specified field name is too long"Chloraphil2009-12-07T22:31:26Z2009-12-09T17:03:52Z
<p>I am getting an error when I call SPFieldCollection.AddFieldAsXml(). </p>
<p>Why is that? Here is the string I'm using:</p>
<blockquote>
<p>"<Field Type='Note' Required='FALSE' NumLines='6' RichText='FALSE' Sortable='FALSE' ID='{aaaaaaaa-aaaa-aaaa-aaaa-aaaaaaaaaaaa}' StaticName='tempField' Name='tempField' />"</p>
</blockquote>
<p>Naturally, I'm using a different guid.</p>
<p>EDIT: MOSS2007/WSS3.0
EDIT2: Rephrased as question.</p>
http://stackoverflow.com/questions/1874927/tfs-2010-and-sharepoint-licensing0TFS 2010 and Sharepoint (Licensing)Ray2009-12-09T16:09:02Z2009-12-09T16:14:29Z
<p>Hello,</p>
<p>If I use MOSS 2007 or Sharepoint Services 3.0 with TFS do I need a license or is there an implicit license with TFS, like there is for SQL Server.</p>
<p>Thanks,</p>
<p>ray.</p>
http://stackoverflow.com/questions/824202/sharepoint-how-to-get-top-5-records-by-using-caml-query-from-a-list3SharePoint: How to get Top 5 records by using CAML query from a list.DotNet User2009-05-05T10:08:53Z2009-12-09T16:12:41Z
<p>Hi there, </p>
<p>I have already created a webpart to show the data from list, but I really want is to only show top 5 records from that list (by using CAML query).</p>
<p>Does anyone know how to do this? Many thanks. </p>
<pre><code><Query>
<OrderBy>
<FieldRef Name='ID' Ascending='False' />
</OrderBy>
</Query>
</code></pre>
http://stackoverflow.com/questions/1874236/get-correct-created-field-for-version-of-file-in-sharepoint1Get "Correct" Created field for version of file in SharepointChris2009-12-09T14:24:16Z2009-12-09T15:56:31Z
<p>Hi All, </p>
<p>I've just encountered what appears to be a really annoying "feature" in SharePoint (it may be by design, but the scope of that is probably beyond this question).</p>
<p>I am helping to develop an application that retrieves files and their version history for specific files stored on SharePoint. This information is uploaded to a data warehouse, one of the critical fields we need to capture is the time the file version was originally uploaded (i.e. created) onto SharePoint.</p>
<p>Initially this appeared to be fairly straight forward, using the (SharePoint WebServices) version service (versions.asmx) we called:</p>
<pre><code>SPVersion.GetVersions(fullpath);
</code></pre>
<p>Which returns us an XML result similar to below (including a field called "created"):</p>
<pre>
<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<soap:Body>
<GetVersionsResponse xmlns="http://schemas.microsoft.com/sharepoint/soap/">
<GetVersionsResult>
<results xmlns="http://schemas.microsoft.com/sharepoint/soap/">
<list id="{guid}"/>
<versioning enabled="1"/>
<settings url="http://SITE/_layouts/LstSetng.aspx?List={guid}"/>
<result version="@6.0" url="http://SITE/PATH/FILENAME" created="12/8/2009 11:58 AM" createdBy="DOMAIN\USER" size="149504" comments=""/>
<result version="1.0" url="http://SITE/_vti_history/id/PATH/FILENAME" created="12/7/2009 4:10 PM" createdBy="DOMAIN\USER" size="148992" comments=""/>
<result version="2.0" url="http://SITE/_vti_history/id/PATH/FILENAME" created="12/8/2009 11:32 AM" createdBy="DOMAIN\USER" size="149504" comments=""/>
<result version="3.0" url="http://SITE/_vti_history/id/PATH/FILENAME" created="12/8/2009 11:45 AM" createdBy="DOMAIN\USER" size="149504" comments=""/>
<result version="4.0" url="http://SITE/_vti_history/id/PATH/FILENAME" created="12/8/2009 11:49 AM" createdBy="DOMAIN\USER" size="149504" comments=""/>
<result version="5.0" url="http://SITE/_vti_history/id/PATH/FILENAME" created="12/8/2009 11:58 AM" createdBy="DOMAIN\USER" size="149504" comments=""/>
</results>
</GetVersionsResult>
</GetVersionsResponse>
</soap:Body>
</soap:Envelope>
</pre>
<p>All well and good, until you look closely at the created field - versions 5 & 6 have exactly the same created date. Further investigation revealed to me that ALL versions of the document have a created datetime that matches the actual created datetime for the next version of the document. I.E. When I check SharePoint and look at the version history I can see version 2 was actually created at 16:10, the time that is showing above for version 1.</p>
<p>I am assuming that the created field is NOT actually the created field, but is a modified field that takes into account when the file was modified and made an "older" version.</p>
<p>Has anyone encountered this problem and found a reliable way to get the versions service to return the actual time of creation of the file, or - using the information above - is there a reliable mechanism to get the time on the file? </p>
<p>Note that we cannot use the SharePoint API / DLL's for this project.</p>
<p>Thanks
Chris</p>
http://stackoverflow.com/questions/1848462/developing-a-website-for-3-mln-users-sharepoint-or-pure-asp-net5Developing a website for 3 mln. users: SharePoint OR pure ASP.NET?micha122009-12-04T17:28:13Z2009-12-09T15:03:11Z
<p>Hi guys,</p>
<p>We need to develop quite a <strong>powerful web application</strong> for an investment bank. The bank IT would like us to build it on top of the <strong>SharePoint platform</strong>, but we would prefer to do <strong>pure ASP.NET</strong> programming.</p>
<p>The web-app should have the following characteristics.</p>
<p><strong>1)</strong> It will be a site for bank's clients that will allow them to view their stock portfolios, get miscellaneous reports with graphs and charts, etc.</p>
<p><strong>2)</strong> The web-app will also allow clients to send orders to the bank to buy stocks and perform other financial operations.</p>
<p><strong>3)</strong> The number of users will be approximately <strong>3 000 000</strong> (total) and <strong>20 000</strong> at any one time.</p>
<p>We have never made any SharePoint programming, but as far as I know, SharePoint is primarily designed to create intranet sites for colleagues to communicate with each other and work more efficiently, to maintain a document library, etc.</p>
<p>However, the bank IT told us that SharePoint has in fact lots of other features that will help us make the project more efficiently - for example, it seems that <strong>SharePoint</strong> has some <strong>built-in scalability</strong> and high availability technologies.</p>
<p>I heard saying that SharePoint development is very tedious, that the platform cannot be very easily customized, etc.</p>
<p><strong>The question is</strong>: is it better to create our web-app on pure ASP.NET and deal with scalability and other issues ourselves, or base it on SharePoint - taking into account that the web-app we need to create is non-standard and complex?</p>
<p>Thank you,
Mikhail.</p>
<p><strong>UPDATE</strong></p>
<p>In the answers, someone suggested using ASP.NET MVC. My another question is: should we use "classic" ASP.NET or ASP.NET MVC for such project (if we leave out the SharePoint option)?</p>