sharepoint

SharePoint: Issues with Orphans when Retracting MasterPage Feature Solution

When I deactivate a feature, or even just after removing a Solution package, I can still choose to select the Master Page which belonged to the feature I removed. This is a problem for me. The only way to get rid of the hanging reference is to open SharePoint Designer and to browse to the sites _catalog directory then remove the .master...

Cannot set up audiences containing members of a AD Group on SharePoint 2007

Hello, I am having a problem where in SharePoint 2007 after verifying the profile import was successful and the AD group is there, I go to audiences and try to create a rule where the user must be a member of said AD group. The problem is that when i get to the point of searching for the group to set up the rule, SharePoint can't find t...

Does streaming media in SharePoint pose a performance risk?

Can anyone comment on the performance implications of storing streaming media in a SharePoint 2007 document library? I’ve heard this can be detrimental to the performance of the farm due to the media being streamed from storage in a SQL DB. Has anyone had any firsthand experience with this and if so, what alternatives have you used to p...

InfoPath 2007 drop down populates from MOSS07 list, but doesn't Alphabetize

We have an InfoPath 2007 form that populates a drop down from a SharePoint 2007 list of Employees. However, when opening the form in the browser (like it is designed to do) it does not alphabetize the drop down. But if i open the form on my computer, it does. Anyone else come across this issue and have a solution to it? I am wondering...

How to retrieve the list of sharepoint sites, user has access to , from a windows application.

I have to retrieve a list of all the share point sites to which i have access from a windows application (C#) .I am planning to use Share point web sericves but I am new to share point. Any pointer which share point web service(s) could provide me the required information. ...

How do I debug a .net Fatal Execution Engine Error?

As a developer, I'm trying to setup a development environment on our brand new VMWare ESX server. Things are not working out: somewhere during the SharePoint Product & Technologies Configuration Wizard, the application just disappears, and in the event log I find the following error: .NET Runtime version 2.0.50727.3082 - Fatal Execution...

SPSite in web service throws 401 error

I have this code: using ( var site = new SPSite( myUrl ) ) { using ( var web = site.AllWebs[0] ) { // read-only operations } } The "myUrl" is top domain url with WSS 3.0. The authentication is set to Windows. If I run this code from command-line under "external_app_user" account, all is fine. But if I run this code from w...

Create SharePoint web page outside of document library

I'm reasonably new to SharePoint 2007 and trying to move from an ASP.NET to SharePont way of thinking has been an interesting experience! I would like to create a page at the same level as the default.aspx page in a subsite. The "SharePoint way" of doing things involves putting the page into a document library. I am reluctant to do this...

Set value of datetime field to null

So, I´ve got an issue that someone might have solved (or so I hope). I have a datetime field that I use in a contenttype (on a listtemplate) that has its own editform. Here´s a walkthrough of what happens: Adding a value to the datetime column and saving the updated value shows up (as expected). Updating the datetime column and addin...

Can I deploy SharePoint solutions with 32 bit assemblies on a 64 bit SharePoint farm?

Our development environment is all 32 bit, but our production SharePoint farms are all 64 bit. Can we just deploy the SharePoint solutions straight to the 64 bit platform, or do we need to recompile everything? ...

Setting SharePoint List Metadata

Metadata seems to be used frequently to describe a SharePoint list's structure. That structure allows the storage of data at the list item level. How can I specify information about the list itself without relying on an additional column? Ideally I want something like SPList.Properties ["Mykey"] = "MyValue" PropertiesXml isn't setta...

SharePoint web services "Unable to connect to the remote server"

Hi All, I'm getting an error when attempting to call SharePoint's webservices on one of our platforms. To start, we have Development (DEV), Testing (QA) and Production (PROD) SharePoint servers. The QA and PROD servers are pretty much identical. We have an ASP.NET web service that sits out as a seperate application on each of them. Our...

Accessing the Sharepoint Lists Web Service from .NET

I have an InfoPath form with custom submit code to update a Sharepoint list by calling the Sharepoint Lists web service. The code runs without any exceptions, and I was able to set breakpoints to make sure that the variables contain the correct values before being sent to the web service. The values never get added to the Sharepoint li...

Backup to Another Farm with MOSS SP2

There seems to be no end to conflicting information out there regarding whether or not it is necessary to use "setsitelock" when backing up a site collection for deployment to another farm, if both farms have SP2 installed. According to Bob Fox's blog (comments disabled), it is no longer necessary: http://bobfox.securespsite.com/foxblog...

Batch Element in Sharepoint to Delete a List item when you do not know the ID

I want to delete an item in a list when it matches some critera using UpdateListItems web service. I dont know the ID of the list item that I want to delete but do know the criteria. For example in SQL I could do: DELETE FROM listName WHERE LastName='Bauer' AND FirstName='Jack' How would you write a Batch Element to do this? Update ...

Infopath saveas in sharepoint overwriting

I need help getting an infopath form to not overwrite existing files going to a sharepoint library. I have an infopath form with a custom submit. In the submit I am doing "me.saveas(http:\mysharepointlibrary\FormDropDownValue) This is working just fine. But, if I create a new form and pick the same drop down value I can't get the for...

Sharepoint : Find a list based on a content type in a web part?

Is it possible to find, in a Web Part, if a list is made from a specific content type? Or, find all lists that are from a specific content type would do the trick too! ...

TimerJob's schedule time format is unspecified instead of beeing local time

We have a problem with the scheduling of our timer jobs. The jobs we have developed run only one time after that they delete themselves. To schedule the jobs we filter the web application's SPJobDefinitionCollection for our timer job type and look for the one with the latest schedule time via the NextOccurrence() method of the job's Sche...

Determining User's role in a SharePoint site/workspace using the webservices API

How do I figure out the role(s) of a user in a site using the webservices API? All I have to go on is the username and domain. I've found that the PermissionsService.Permissions.GetPermissionCollection(url,"Web") will return a collection of permitted users and groups with their permissions masks but I still need to figure out if the us...

How to get fields from secondary list that are not identifed in the lookup into a single view?

I have 2 lists in SharePoint and one of them is a list of applications and another is tasks. The task list has a lookup column pointed at the App List: Name column. My App list contains some other information such as Department Name. TASK LIST - Work Number - Resource - Name - Priority - Application Name (Lookup to Application List) -...