sharepoint

Add asp.net pages into sharepoint

How to add or open the asp.net pages from inside sharepoint? I found many info on the web about that, but they all fail or they are not clear. I appreciate your help :) ...

Internationalization and C# method attributes?

I'm working on some SharePoint web parts and I'm trying to make them as locale-independent as possible. I've got all most text in resource files, and I'm looking at the attributes on my Web Part: [WebBrowsable(true), Category("My Category"), WebDisplayName("Display Name here"), WebDescription("Tells you all about it"), Personalizable(Pe...

SharePoint via SOAP using Python

I have been following the solution noted here - as this is exactly what I need to achieve; http://stackoverflow.com/questions/218987/how-can-i-use-sharepoint-via-soap-from-python however when I run one of the last lines of this code I get the following error; >>> client = SoapClient(url, {'opener' : opener}) Traceback (most recent ca...

Add items to list programatically

Hi all, I am using form base authentication in my Sharepoint site. On my login page there are custom fields to be filled by unauthenticated user. These fields i want to add in to my list. I am using following code to insert record in list. protected void AddVendor(object sender, EventArgs e) { string strList = "http://comp01:5353/Li...

SharePoint SoapServerException calling GetListItems web service

Hi, I have the following statement in my code: System.Xml.XmlNode items = lstWebs.GetListItems( "Tasks", string.Empty, listQuery, listViewFields, string.Empty, listQueryOptions, WorkspaceId); When executing this, the following exception occurs: Exception of type 'Microsoft.SharePoint.SoapServer.SoapServerException' was thro...

Regarding SPLongOperation Object In SharePoint 2007

I am using the SPLongOperation Object in my project to introduce a delay while navigating to a new page.The in-built page uses the default css styles and branding. I want to customize this page design and apply my own theme and branding. Please tell me how to apply a custom master page to the page which displays the SharePoint 2007 Spi...

Sharepoint: COM exception thrown when navigating to the root of a new site collection

After a fresh install of WSS 3.0 and creation of a new web application and site collection, I receive the following error when I navigate to the newly create site: [COMException (0x80070005): Access is denied. ] System.DirectoryServices.DirectoryEntry.Bind(Boolean throwIfFail) +557 System.DirectoryServices.DirectoryEntry.Bind() +4...

Migrate SQL Server Tables to Sharepoint Lists

I have some tables (aprox 200) i want migrate and include in Sharepoint lists. I need a automatic process, anyone have a tool or code to generate sharepoint list based on tables? Or please give some links for can help me in my demand. ...

Person & Group custom field type sharepoint

Hi Everybody, I have created a custom field type as it is there in sharepoint OOTB, the difference is only that the end user does not need to check the name i.e I have replaced it with DropDownList. The dropdownlist suggest the no. of users available in the web site for that I have created a FieldClass which inherits from SPFieldUser an...

Sharepoint as Document Management Solution

In your experience how does SharePoint as a back-end Document Management Solution (archiving included) stands compared to other proprietary document management systems. Is it any comparison analysis out there? ...

When I approve a Sharepoint comment, the comment is tagged with my name, and not that of the original submitter

Hi, Share point Services 3 - Issue tracking module. We configured the comments fields as "Append Only" and enabled approval for the list. Now user one creates a new issue and add a comment "works ok" I log in to approve the issue and all the sudden my user name appears as the one who wrote the comments not the original submitter I tr...

Sharepoint Web Services Error GetListItems in Lists.asmx

Arrggh. I've seen like 15 examples that say do it like this: http://stackoverflow.com/questions/583606/sharepoint-web-services-test-if-file-exists I'm on the same machine as the SP site, running as the SP and machine admin, I can happily call GetList, GetListCollection and GetWeb on the SiteData web service, but every time I call GetL...

Object reference not set, ERROR when adding a new webpart

I wanted to try tag cloud in a SharePoint server I maintain, I grabbed Nuage from www.codeplex.com and when I try to install , I get the below error C:>stsadm -o addsolution -filename TagCloud.Sharepoint.Solution.wsp Object reference not set to an instance of an object. TagCloud.Sharepoint.Solution.wsp: The Solution installation failed...

Access SharePoint objects from Delphi

Hello Guys, We need to read and write the objects in SharePoint, such as the appointments (events) in SharePoint, from Delphi, what's the best/easiest way to do it? Any advises are appreciated! Thank you. ...

Upload to a Share point site

Let me share the following scenario: I have a ASP.NET intranet Web-based application that generates Excel reports on server. I want to drop this reports on a Share point portal where this report can be viewed by all users. What all do I need to achieve this through ASP.NET? The SharePoint portal is obviously hosted on another server. T...

Faulty pages created by SiteDefinition

Hi. I'm creating some pages using a SiteDefinition, the markup looks something like this: <File Url="Page.aspx" Name="$Resources:SiteDefinitions,PageName;" Type="GhostableInLibrary"> <Property Name="Title" Value="$Resources:SiteDefinitions,PageTitle;" /> <Property Name="PublishingPageLayout" Value="~SiteCollection/_...

Login failed when a web service tries to communicate with SharePoint 2007

Hi, I created a very simple webservice in ASP.NET 2.0 to query a list in SharePoint 2007 like this: namespace WebService1 { /// <summary> /// Summary description for Service1 /// </summary> [WebService(Namespace = "http://tempuri.org/")] [WebServiceBinding(ConformsTo = WsiProfiles.BasicProfile1_1)] [System.Compon...

Custom field type Document Information panel is not getting loaded

Hi Everybody, I have a custom field type as a dropdownlist which displays the no. of users from the web site. Now I have a document library with this custom field type. When I tries to create a item it opens the MS Word instance and it gives a message as Document Information Panel is unable to load. Please help me in this regard. Than...

Page viewer webpart won't take login parameters

I need to show an external site through our sharepoint portal and have added a Page viewer web part. The problem is that the address includes a login and password used to autologin to the external site but Sharepoint only shows the login page on click. If I click the "Test link" in the web part properties it opens as it should but in a ...

Approve/Reject in email generated by SharePoint

Hi guys, When I make a meeting in Outlook, the recipient gets a approve/reject button in the top of the email. I'd like to do a similar thing with SharePoint: when a task is created, an email is sent to the person the task is assigned to, and the email asks the recipient to either accept or reject the task. I've seen demos of people doin...