active questions tagged moss - Stack Overflowmost recent 30 from stackoverflow.com2009-12-22T17:08:05Zhttp://stackoverflow.com/feeds/tag/mosshttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1940841/getting-the-spweb-for-a-spauditentry0Getting the SPWeb for a SPAuditEntryKit Menke2009-12-21T15:45:32Z2009-12-21T18:35:36Z
<p>I'm currently building an app that will parse all of the Audit entries in a site collection and send out a pretty email to users.</p>
<p>My problem is that the emails should be based on a particular web (essentially an email summarizing the changes that happened to each subsite). Apparently, there is no information in the SPAuditEntry object about the web it came from except for the DocLocation property.</p>
<p>This means I can get any of the following DocLocations (ItemType = Document, Event = Update):</p>
<ul>
<li>sites/MySiteCollection/Documents/This is a test.doc</li>
<li>sites/MySiteCollection/Reporting Templates/audit.xml</li>
<li>sites/MySiteCollection/Lists/Reporting Metadata/1_.000</li>
<li>sites/MySiteCollection/MySubSite1/Lists/Announcements/2_.000</li>
<li>sites/MySiteCollection/MySubSite1/Template Documents/SampleTestEmail.doc</li>
</ul>
<p>I'm thinking I can probably figure out the web from the URL by using SPSite.AllWebs.Names if I have to. </p>
<p><strong>Q: How do I figure out which SPWeb a particular SPAuditEntry comes from?</strong></p>
http://stackoverflow.com/questions/20389/deploying-infopath-forms-to-different-sharepoint-servers2Deploying InfoPath forms to different SharePoint serversTundey2008-08-21T16:12:45Z2009-12-18T14:35:28Z
<p>How do you manage deploying InfoPath forms to different sharepoint servers? Is there a better way to deal all the data connections being site-specific without opening the forms, editing the data connections and republishing for each environment?</p>
http://stackoverflow.com/questions/1923831/sharepoint-file-not-found-error0Sharepoint File Not Found errorsavageguy2009-12-17T18:57:01Z2009-12-17T18:57:01Z
<p>I can't seem to find any relevant information on this exception. It seems to come and go on a specific site, any ideas?</p>
<pre><code>[FileNotFoundException]: File Not Found.
at Microsoft.SharePoint.ApplicationRuntime.SPLocalFileInfo.get_CacheKey()
at Microsoft.SharePoint.ApplicationRuntime.GhostedFileTemplateInfo.get_CacheKey()
at Microsoft.SharePoint.ApplicationRuntime.SPDatabaseFile.GetFileCacheKey(HttpContext context, SPRequestModuleData requestData)
at Microsoft.SharePoint.ApplicationRuntime.SPDatabaseFile.EnsureCacheKeyAndViewStateHash(HttpContext context, SPRequestModuleData requestData)
at Microsoft.SharePoint.ApplicationRuntime.SPDatabaseFile.GetVirtualPathProviderCacheKey(HttpContext context, SPRequestModuleData requestData)
at Microsoft.SharePoint.ApplicationRuntime.SPVirtualFile.GetVirtualPathProviderCacheKey(String virtualPath)
at Microsoft.SharePoint.ApplicationRuntime.SPVirtualPathProvider.GetCacheKey(String virtualPath)
at Microsoft.SharePoint.Publishing.Internal.CmsVirtualPathProvider.GetCacheKey(String virtualPath)
at System.Web.Compilation.BuildManager.GetCacheKeyFromVirtualPath(VirtualPath virtualPath, Boolean& keyFromVPP)
at System.Web.Compilation.BuildManager.GetVPathBuildResultInternal(VirtualPath virtualPath, Boolean noBuild, Boolean allowCrossApp, Boolean allowBuildInPrecompile)
at System.Web.Compilation.BuildManager.GetVPathBuildResultWithNoAssert(HttpContext context, VirtualPath virtualPath, Boolean noBuild, Boolean allowCrossApp, Boolean allowBuildInPrecompile)
at System.Web.Compilation.BuildManager.GetVirtualPathObjectFactory(VirtualPath virtualPath, HttpContext context, Boolean allowCrossApp, Boolean noAssert)
at System.Web.Compilation.BuildManager.CreateInstanceFromVirtualPath(VirtualPath virtualPath, Type requiredBaseType, HttpContext context, Boolean allowCrossApp, Boolean noAssert)
at System.Web.UI.PageHandlerFactory.GetHandlerHelper(HttpContext context, String requestType, VirtualPath virtualPath, String physicalPath)
at System.Web.HttpApplication.MapHttpHandler(HttpContext context, String requestType, VirtualPath path, String pathTranslated, Boolean useAppConfig)
[HttpException]: Exception of type 'System.Web.HttpException' was thrown.
at System.Web.HttpApplication.MapHttpHandler(HttpContext context, String requestType, VirtualPath path, String pathTranslated, Boolean useAppConfig)
at System.Web.HttpApplication.MapHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute()
at System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously)
</code></pre>
http://stackoverflow.com/questions/1909337/account-doesnt-sync-with-ad-moss-wss-user-profile-sync0Account doesn't sync with AD - MOSS - WSS User Profile syncBryan2009-12-15T18:15:55Z2009-12-17T07:16:16Z
<p>I'm working on a project that uses MOSS 2007. We have user profiles set up to sync from AD and see the following behavior.</p>
<p>Take the user Jane Doe and her account MYDOMAIN\JaneDoe </p>
<ol>
<li>She becomes part of a site collection</li>
<li>Her settings look fine when clicking My Settings or when another user looks at her info by clicking on her under People and Groups</li>
<li>She gets married and is renamed Jane Married with account MYDOMAIN\JaneMarried</li>
<li>The Shared Service Provider User Profile incremental import occurs</li>
<li>The profile looks good in the Shared Service Provider </li>
<li>The User Profile Synchronization Timer Job runs</li>
<li>The changes to Name and User name show properly in the My Settings or People and Groups but the Account field still has the old value until the new id (MYDOMAIN\JaneMarried) is added to the All Users.</li>
</ol>
<p>Any ideas on where we might be missing something from a config standpoint? Or is there a SharePoint bug?</p>
<p>Thanks</p>
http://stackoverflow.com/questions/895106/custom-field-type-derived-from-spfieldcalculated1Custom field type derived from SPFieldCalculatedashwnacharya2009-05-21T20:56:27Z2009-12-16T20:08:12Z
<p>I am trying to create a custom field type which will display values based on another field in the same list. (basically, display some images based on the value of the source column)</p>
<p>Since this column derives it's data entirely on the basis of another column, i need to make sure the column values are not stored in the database. </p>
<p>So, i think i need to create a custom field type which derives from SPFieldCalculated class.</p>
<p>But, when i try to do so, I get an error message
"The type 'Microsoft.SharePoint.SPFieldCalculated' has no constructors defined"</p>
<p>How do i create a custom field tpye deriving from SPFieldCalculated?
If this is not possible, can somebody at least tell me how do i go about satisfying my requirement?</p>
http://stackoverflow.com/questions/132030/deployment-of-custom-content-type-forms-cqwp-and-xsl2Deployment of custom content type, forms, cqwp, and xsl.mortenbpost2008-09-25T07:57:51Z2009-12-16T19:57:20Z
<p>Right now I have a visual studio project which contains a custom content type that I made. It also contains all the necessary files for making a sharepoint solution (wsp) file and a script to generate this. </p>
<p>Now, I would like to do 2 things. </p>
<p>First, I'd like to create a custom display form for the content type and include it in my solution so that it is automatically deployed when I deploy my solution. How do I include this in my solution and make my content type use it?</p>
<p>Secondly, you can query this type with the CQWP. I've thought about exporting it, adding more common view fields, and then modifying the XSL that is used to render it. How do I include this into my solution so that it is also deployed. I know i can export the CQWP webpart once it's all setup and include it in my project as a feature. But what abuot the XSL?</p>
<p>Looking forward to see your suggestions, cheers.</p>
<p>Did as described in the first answer. Worked like a charm.</p>
http://stackoverflow.com/questions/1914788/how-to-test-localization-in-sharepoint0How to test localization in SharePoint?JL2009-12-16T13:55:49Z2009-12-16T14:00:29Z
<p>I have created a feature with the description localized. </p>
<p>Now I want to be able to test this localization. At first I thought, let me just change the location of the computer in the control panel, but this seemed to have no effect. </p>
<p>So my question is - how can I test a location in SharePoint?</p>
<p>Another way to ask this question would be what is localization in MOSS based on?</p>
<p>Thanks in advance</p>
<p>Also just to clarify, I have localized the feature, and it is currently pulling from default(english) so that is all set, and I have created another Czech resource file. Not interested in how to implement localization, I need to know how to test it only....</p>
http://stackoverflow.com/questions/1909627/how-to-get-current-user-groups-in-moss0How to get current user groups in moss?saritha2009-12-15T19:06:34Z2009-12-16T00:44:24Z
<p>Hi - I hope you can solve my problem.</p>
<p>I am trying to set item level pemrissions for sharepoint list and document libraraies using event handler ,but i couldn't do it.please help me this is my code.I need to assign permissions to the item based on login user .to which group he belongs to.I can't retrieve the currentuser groups. this is my code.</p>
<pre><code>public override void ItemAdded(SPItemEventProperties properties)
{
using (SPSite _site = new SPSite(properties.WebUrl))
{
using (SPWeb spWeb = _site.OpenWeb(properties.RelativeWebUrl))
{
SPUser currentUser = spWeb.CurrentUser;
SPListItem listItem = properties.ListItem;
listItem.BreakRoleInheritance(true);
SPGroupCollection spgroup = currentUser.Groups;
foreach (SPGroup group in spgroup)
{
SPRoleAssignment roleAssignment = new SPRoleAssignment((SPPrincipal)group);
SPRoleDefinition roleDefinition = spWeb.RoleDefinitions.GetByType(SPRoleType.Contributor);
roleAssignment.RoleDefinitionBindings.Add(roleDefinition);
listItem.RoleAssignments.Add(roleAssignment);
spWeb.AllowUnsafeUpdates = true;
listItem.Update();
spWeb.AllowUnsafeUpdates = false;
}
}
}
}
</code></pre>
http://stackoverflow.com/questions/1910689/sharepoint-css-development-strategy1sharepoint css development strategybushman2009-12-15T21:57:00Z2009-12-16T00:10:52Z
<p>I work for a large company that has adopted sharepoint. I have been tasked with customizing and branding the site/subsites with CSS. My experience with sharepoint is minimal.</p>
<p>The development cycle is as follows:<br>
1. Usability Requirements and design are delivered to The sharepoint developer.<br>
2. The sharepoint developers comes up with the HTML<br>
3. And I have to style that html as well as the sharepoint generated HTML. <br>
4. Goes to test<br></p>
<p>This is driving me crazy-- The primary reason behind this cycle is that the "sharepoint developers" dont know CSS. The development environment is craziness itself. The css development is not centralized, it is VM based... So, I have to go developer by developer and log into their vm to work on their code.</p>
<p>TI go line by line some custom and some out of the box code to style it. The sites I am working on require EXTREMELY large amount of customization -- This is what is paying my bills so I just work hard -- but I am going mad in the process.</p>
<p>Can you guys share how you went about sharepoint customization. What kind of Development methodology and process did you use for sharepoint CSS. Do you believe that the Developers should be doing CSS customization and why? </p>
<p>No answer is useless, so please share. Thank you.</p>
http://stackoverflow.com/questions/1910877/sharepoint-wss-how-to-localize-a-feature0SharePoint / WSS: How to localize a featureJL2009-12-15T22:27:48Z2009-12-15T23:51:14Z
<p>I have a WSP package that contains some features. </p>
<p>I need to be able to localize the following in the features:</p>
<ol>
<li>Site Column Field Display Names</li>
<li>Description of Content Types</li>
<li>List Instance Description</li>
<li>List Schema Fields</li>
</ol>
<p>I am looking for a method to achieve all of this as easily as possible.</p>
http://stackoverflow.com/questions/1902846/sharepoint-hide-port-number-in-a-sharepoint-site-url0Sharepoint: Hide port number in a sharepoint site url? [closed]TheGambler2009-12-14T19:06:58Z2009-12-14T19:20:00Z
<p>I've just gotten started with sharepoint( moss 2007 ) and created my first sharepoint site. My team is using the site and when I set it up the url was something like ( http:\myserv:40567\mysite\site\index.html ). I want to make the url prettier by dropping the port number. </p>
<p>How do I do this? </p>
<p>I've read tutorials on using access mapping, but it doesn't seem to work.</p>
http://stackoverflow.com/questions/1901630/create-list-in-existing-site-collection-from-a-feature1Create list in existing site collection from a featureunknown (google)2009-12-14T15:39:07Z2009-12-14T15:42:31Z
<p>I have created a feature, a publishing site, in Visual Studio to MOSS - this feature contains a masterpage, some page-templates, some site columns (grouped to match each page-template) and som custom list templates etc. I have also created a site collection, some sites and pages based on my feature.</p>
<p>Now I have upgraded the code in my feature - I wanted a ListInstance to be created based on my custom list template. When I have upgraded my SharePoint (using WSPBuilder), the ListInstance and default data are visible if I create a new site collection, but existing site collection does not get the ListInstance and data. Is there anything I can do to update existing site collections to contain the ListInstance when upgrading?</p>
http://stackoverflow.com/questions/420064/remove-scope-dropdown-from-osssearchresults-aspx-in-sharepoint-moss0Remove scope dropdown from OSSSearchResults.aspx in SharePoint MOSS78lro2009-01-07T12:07:08Z2009-12-14T14:10:36Z
<p>When searching in SharePoint the results are returned to a page called OSSSearchResults.aspx.</p>
<p>This page has a scope dropdown for the search i.e. Site:Departments</p>
<p>How can I remove this scope so that the whole site collection is always searching, irrespective of the site I am within?</p>
<p>All the best</p>
http://stackoverflow.com/questions/1889408/can-i-use-net-4-with-sharepoint-20073Can I use .NET 4 with SharePoint 2007?mattblodgett2009-12-11T17:02:15Z2009-12-14T10:13:14Z
<p>I'm on a team that's currently building a MOSS 2007 based application (which relies on .NET 2), and we'd like to leverage the Entity Framework v4 (which relies on .NET 4).</p>
<p>Is this possible?</p>
http://stackoverflow.com/questions/1706688/mht-files-doesnt-appear-on-moss-search0mht files doesnt appear on moss search.Ishay2009-11-10T09:38:43Z2009-12-12T14:53:46Z
<p>Hi
The moss search dosent find a mht files ,
I installed ifilter to mht on the server and iisreset and it dosent work ,
Any idea ?
Ishay . </p>
http://stackoverflow.com/questions/1881451/tell-if-user-exists-in-sharepoint-group-through-web-service1Tell if user exists in SharePoint Group through web serviceJosh2009-12-10T14:48:00Z2009-12-12T06:40:48Z
<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/508229/how-can-i-include-value-of-sharepoints-version-column-in-a-word-document4How can I include value of sharepoint's version column in a word document?Daniel LeCheminant2009-02-03T18:03:29Z2009-12-11T20:28:13Z
<p>I'm trying to work out a way to display the contents of the version column from sharepoint (i.e. the value that changes every time a file is checked in) as a field (or something similar) inside of a word document.</p>
<p>Ideally, I'd like to know how to configure sharepoint so I could click something like "Insert > Quick Parts > Document Property > Version", and it would include the version in the document. The goal is to make it easier for someone to corrolate a printed version of a document with the version history of sharepoint.</p>
<p>I <em>have</em> been able to add editable text columns to the Document content-type and have them show up as document property quick parts. I've also been able to add a calculated column which gets the version as a text string... however this calculated colum <em>isn't</em> showing up in word as a document property. (Perhaps I'm missing a setting on the calculated column)</p>
http://stackoverflow.com/questions/1889015/design-to-custom-list-in-sharepoint0Design to custom list in sharepointunknown (google)2009-12-11T16:00:11Z2009-12-11T18:32:20Z
<p>I have created a feature, a publishing site, in Visual Studio to MOSS - this feature contains a masterpage, some pages, some site columns (grouped to match each page) etc. I have also created a site collection, some sites and pages based on my template.</p>
<p>My next step is to create some definitions to contain very specific page content - therefore I have created a custom list template (a small extension to the custom list template) and from this template I have created a list and added some items to this list. On one of my pages I have a WebPart and to this WebPart I can add my list - so far so good. But how can I chance the design of how my items are shown when visitors a viewing the page? Right now they see a borring list but I wish to completely redesing this view?</p>
http://stackoverflow.com/questions/560347/how-to-apply-custom-action-in-ecb-only-for-document-item1how to apply custom action in ECB only for document itemAnoop2009-02-18T09:14:07Z2009-12-11T18:09:54Z
<p>I have added a menu item in edit control block(ECB) in document library(using following msdn article <a href="http://msdn.microsoft.com/en-us/library/ms473643.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/ms473643.aspx</a>)</p>
<p>Now i found that the custom action(menu Item) in ECB is displayed for both document item and document folder. So how to apply custom action only for document item?</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/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/1870559/deploying-an-net-app-that-uses-sharepoint-assemblies0Deploying an .Net App that uses Sharepoint AssembliesDavid Reis2009-12-08T23:17:10Z2009-12-09T02:20:35Z
<p>I'm working on a tool written in C# to help administrate MOSS (Microsoft Office Sharepoint Server). It does do by using classes provided by the sharepoint om, such as the ones in namespaces Microsoft.SharePoint.Administration or Microsoft.Office.Server.</p>
<p>The specific assemblies are:<br>
Microsoft.Office.Server.dll<br>
Microsoft.Office.Server.Search.dll<br>
Microsoft.SharePoint.dll</p>
<p>My problem is how do I install this tool on a MOSS server in a way in which it can find the assemblies it needs when it loads. AFAIK these assemblies are in %ProgramFiles%\Common Files\Microsoft Shared\web server extensions\12\ISAPI, but they could also be somewhere else, wherever the admin installed Sharepoint. </p>
<p>To solve tis I can think of the following ways:</p>
<ol>
<li>Install the app to %ProgramFiles%\Common Files\Microsoft Shared\web server extensions\12\ISAPI. This would work on the common case, but it would mix my binaries with Sharepoints, which I would prefer to avoid. It would also fail if the admin has choosen a different path for Sharepoint, though I could solve that by checking the registry at install time for the correct path. </li>
<li>Install the app to its own folder and use a cofiguration file to refer to the MOSS Assembly, using the codeBase element.</li>
<li>Deploy the MOSS assemblies together with my application. They would be then duplicated in the target machine. This should work, but there are a couple of probems: First, I'm not sure if I can legally redstribute the dlls even though they will only work if MOSS is installed; and second, this might cause problems onc another service pack comes out, since the versions of my redistributted Dlls and the system's ones would get out of sync.</li>
</ol>
<p>Has anyone faced this? How did you solve it? Any thoughts at all?</p>
http://stackoverflow.com/questions/1648447/why-does-onload-createchildcontrols-order-change-at-postback1Why does OnLoad / CreateChildControls order change at postback?spa2009-10-30T07:20:49Z2009-12-08T22:56:33Z
<p>The web part lifecycle is <a href="http://platinumdogs.wordpress.com/2008/10/14/sharepoint-webpart-lifecycle-events/" rel="nofollow">described</a> like this:</p>
<blockquote>
<p>On Page Load</p>
<ol>
<li>Constructor</li>
<li>OnInit</li>
<li>OnLoad</li>
<li>ConnectionConsumer method is called if web part is connectable</li>
<li>CreateChildControls ...</li>
</ol>
<p>On 1st Postback (PostBack click
handler sets ViewState via public
Property)</p>
<ol>
<li>Constructor</li>
<li>OnInit</li>
<li>CreateChildControls</li>
<li>OnLoad</li>
<li>PostBack click handling ...</li>
</ol>
<p>On 2nd Postback (PostBack click
handler sets ViewState via public
Property)</p>
<ol>
<li>Constructor</li>
<li>OnInit</li>
<li>LoadViewState</li>
<li>CreateChildControls</li>
<li>OnLoad ...</li>
</ol>
</blockquote>
<p>As you can see the OnLoad and CreateChildControls change their order. This introduces some difficulties in my code as I need to gather various data which I used to do in the OnLoad element. </p>
<p>Is there any reason why the order is changed in the post back phase?</p>
http://stackoverflow.com/questions/1646021/how-to-association-workflow-on-creating-of-list-definition1How to association workflow on creating of list definitionAvinash2009-10-29T19:30:41Z2009-12-08T18:00:03Z
<p>Hi,</p>
<p>I have my custom content type, and list definition. Once we create a list from this template, by default I wish to enable "Require content approval for submitted items", "Create major and minor (draft) versions", "Enable scheduling of items in this list " and approval workflow association.</p>
<p>My list look as :-</p>
<p></p>
<p>Also i tried added all view fields which is available in "C:\Program Files\Common Files\microsoft shared\Web Server Extensions\12\TEMPLATE\FEATURES\Publishing" schema.
But still does not work.</p>
<p>In Sharepoint site, i created a list enable all required property and work flow association save as list temlate. After that i opened manifest file from list template and copied workflow association attribute details.
But still does not work. </p>
<p>could any one guide me please?</p>
<p>Thanks
Avinash</p>
http://stackoverflow.com/questions/1866810/customizing-sharepoint-search-box0Customizing Sharepoint Search Boxdex2009-12-08T12:59:05Z2009-12-08T13:23:19Z
<p>I followed <a href="http://www.novolocus.com/2008/01/10/changing-the-smallsearchinputbox-delegate-control/" rel="nofollow">some</a> <a href="http://clintcherry.spaces.live.com/blog/cns!AEC0DCBC460E45B9!421.entry" rel="nofollow">tutorial</a> to change the way Sharepoint Search Box is shown on screen.</p>
<p>My first problem is, after modifying the <code>SearchArea.xml</code> file, is there a way to force the reload? The frequency of reload seems very random.</p>
<p>Bonus question: is it the best way to do it?
It's the easiest I've found, but having to change the file on the client's production server when the project is deployed doesn't seems very optimized.</p>
http://stackoverflow.com/questions/205893/sharepoint-interview-questions24SharePoint interview questionsashwnacharya2008-10-15T18:38:17Z2009-12-08T09:14:32Z
<p>Let's have a list of some good interview questions for SharePoint developers. Please provide one question per entry, and if possible, the answers.</p>
<p>Also, please feel free to suggest corrections if the provided answers are wrong.</p>
<p>I will go first: </p>
<p>Q: How does SharePoint store pages?</p>
<p>A: <a href="http://stackoverflow.com/questions/125805/how-to-locate-sharepoint-document-library-source-page-on-the-server#127138">How-to-locate-sharepoint-document-library-source-page-on-the-server?</a></p>
http://stackoverflow.com/questions/1833316/sharepoint-moving-from-enterprise-to-standard0SharePoint - moving from Enterprise to StandardMayo2009-12-02T14:41:44Z2009-12-08T04:42:54Z
<p>We've been happily running on MOSS 2007 Enterprise for quite a while. However, we're faced with the need to move our 2007 instance to a different farm running standard.</p>
<p>What should I be looking for in our existing implementation that would prevent us from accomplishing this feat? I realize there are <a href="http://office.microsoft.com/en-us/SharePointtechnology/fx101758691033.aspx" rel="nofollow">charts offering comparisons between the two products</a>, but I need to make this assessment quickly and I haven't needed to compare the two editions before this week.</p>
<p>Basically, I'm going to be looking at our critical sites to determine if they use anything that would prevent us from going to standard.</p>
<p>Also acceptable is a response stating that moving content/functionality from an existing MOSS 2007 Enterprise farm to a new MOSS 2007 Standard farm is not feasible (along with elaboration on why this is the case). I've copied our production content/functionality to a new farm running Enterprise but never to one running Standard.</p>
http://stackoverflow.com/questions/1832038/install-windows-service-for-a-sharepoint-application0Install Windows service for a Sharepoint applicationVinay2009-12-02T10:32:26Z2009-12-08T04:39:35Z
<p>Hi,</p>
<p>I have written a Windows service to send mails to users in a Sharepoint list based on some condition.</p>
<p>The development server is a stand-alone Sharepoint installation and the Windows service works fine. But,the Production environment has the application(Sharepoint) and Database(SQL) residing on different servers.</p>
<p>So when the Windows service tries to open the list it says " Cannot open database "WSS_Content80" requested by the login. The login failed."
Pease let me know how to proceed.I am struck with this issue for a long time now..</p>
http://stackoverflow.com/questions/1859274/an-item-with-the-same-key-has-already-been-added-at-microsoft-sharepoint-porta0An item with the same key has already been added. at Microsoft.SharePoint.Portal.Search.Admin.Pages.SearchAdminPageBase.ErrorHandler(Object sender, EventArgs e) Rupert2009-12-07T10:52:26Z2009-12-07T22:32:48Z
<p>When I go to the Search Settings page in Shared Services Administration I get the following error:</p>
<pre><code>An item with the same key has already been added. at Microsoft.SharePoint.Portal.Search.Admin.Pages.SearchAdminPageBase.ErrorHandler(Object sender, EventArgs e)
at Microsoft.SharePoint.Portal.Search.Admin.Pages.SearchSSPAdminPageBase.OnError(EventArgs e)
at System.Web.UI.Page.HandleError(Exception e)
at System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
at System.Web.UI.Page.ProcessRequest(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
at System.Web.UI.Page.ProcessRequest()
at System.Web.UI.Page.ProcessRequestWithNoAssert(HttpContext context)
at System.Web.UI.Page.ProcessRequest(HttpContext context)
at ASP._layouts_searchsspsettings_aspx.ProcessRequest(HttpContext context) in c:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\Temporary ASP.NET Files\root\a42c7134\78054c78\App_Web_searchsspsettings.aspx.2a428413.ycx33rzy.0.cs:line 0
at System.Web.HttpApplication.CallHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute()
at System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously)
</code></pre>
<p>Any idea how I can get rid of this error?</p>
http://stackoverflow.com/questions/1848587/sharepoint-feature-environment-dependant-uat-prod-properties0Sharepoint feature environment-dependant (UAT, PROD) propertiesAnton Polyakov2009-12-04T17:54:00Z2009-12-06T21:02:23Z
<p>Hi all</p>
<p>I'm developing a feature for MOSS which stores some environment-specific config data in feature.xml (like connection string).</p>
<p>I would like to have a separate .properties file for each environment and make it automatically substitute appropriate values to where needed (like feature.xml) while building.
Is that possible and what tools can I use (I suppose, NAnt?)</p>
<p>Thank you!</p>
<p>Regards,
Anton</p>