sharepoint2007

Has anyone successfully implemented this MSDN solution for Sharepoint External Libraries using Silverlight/WCF?

Has anyone successfully implemented this MSDN solution for Sharepoint external libraries? http://msdn.microsoft.com/en-us/library/dd440954.aspx Some background: We will be providing file upload/download capabilities to both Intranet and Extranet users. In some cases, user uploads will be very large : sometimes twice the WSS3/MOSS2007 2...

Error activating more than one site's Publishing (Site) Feature concurrently

We have a custom self-service SharePoint solution that allows people to come to a provisioning SharePoint app, follow a 3-page wizard, answer a bunch of questions, and based on those questions, calls one of several web services around the world which in turn in the local farm creates a new site collection based on one of 3 site types (Te...

Trouble adding item to a list with a lookup value

I am adding a new item to a list in SharePoint 2007. One of the columns is a lookup into another list. Here is the code: li["LOOKUP"] = new SPFieldLookupValue(1,VALUE); The entry in the list isn't correct and is always using the first value in the other list. When I look at the value of li["LOOKUP"] in the debugger all I get is "1". ...

create infopath form in sharepoint workflow

hello, I have two document libraries(evry one have its own published Infopath form) in sharepoint and two sharepoint workflows attached to each document.for the first workflow(attached to first document) I need at the end to create infopath form for the second document library how can I do this? ...

Submit task form to document library

I have sharepoint workflow with two edit tasks infopath form I need for the second task form to have submit button that submit the task form to another document library,is that possible? ...

Getting List Item URL in Sharepoint 2007

I'm creating a webpart that aggregates a load of content from different lists throughout our site collection what I can't workout is how to get the exact link to each item. All I seem to get back is {site}/{listtitle}/1.000 how do I get this "1.000" to say "pagename.aspx?id=1", is this something I have to work out myself or is there a fu...

Sharepoint 2007 Page Viewer webpart - autoscroll to webpart?

We have a Page Viewer webpart setup to display our Out of Office public folder calendar from Exchange. This is the URL the webpart is setup to point to: http://<servername>/owa/?cmd=contents&module=publicfolders&f=<foldername>/<foldername>/<foldername>/<foldername>/Calendars/out%20of%20office&...

SharePoint 2007 Word Document Conversion Very Slow

I'm calling the SharePoint API (SPFile.Convert - MOSS 2007) to convert a docx to html with the out-of-the-box Word to HTML converter. According to the SharePoint logs, the Launcher Service tries to start the DocXPageConverter.exe process immediately. Then, around 7 minutes later the logs report that the process has been successfully cr...

Creating Custom SharePoint Document Libraries/Lists using VSeWSS 1.3

I want to create custom Document Libraries and Lists using VS2005/VS2008 SharePoint templates,i.e. VSeWSS 1.2/VSeWSS 1.3. For example,I want to create a custom List based on the Calendar template but I also need to add some extra fields(columns) to it. Can anyone tell me how to do this or refer me links to step by step tutorials/articl...

SharePoint: setting fixed image height / width in ItemStyle.xls

Hi, I want to edit ItemStyle.xls so that the CBQW displays images with fixed height and width. But I can't figure out where in the style I should edit this and which attributes to use. Can someone help me out? This is my code: <xsl:template name="DHVNews" match="Row[@Style='DHVNews']" mode="itemstyle"> <xsl:variable name="SafeImage...

Is it possible to debug IIS without affecting all users of the service?

This may seem like a silly question, but we are having an issue debugging IIS in a shared test environment and I'm hoping that someone out there can give us an answer. We have a Windows Server 2003 that is running IIS 6 and sharepoint 2007. We are debugging locally on the server with visual studio 2008. When someone attaches the debug...

How to get the SQL Server name and Role used by Sharepoint Server in Server farm?

I have a sharepoint server farm like the following. Machine1: Test_DB in this machine i have installed SQL Server as named instance. (Test_DB\sqlserver) Machine2: Test_appsrv Application server complete installation Machine3: Test_web in this installed sharepoint as webfront end. In my central admin I am seeing all the ...

How to add the /_vti_bin/Admin.asmx webservice as a service reference in Visual Studio 2008

I'm trying to use the Admin webservice of SharePoint 2007 within a console application. So I add a new service reference to my project pointing to http://&lt;central administration>/_vti_bin/Admin.asmx. But instead of creating the proxy class it ends in an error. Regarding the error message, the service cannot be accessed due to an authe...

ASP.NET MVC Application in Sharepoint 2007 virtual directory.

Hi, I have MOSS 2007 installed at lets say http://localhost:4999/ and I want to have my custom ASP.NET MVC (1.0) application at http://localhost:4999/mvcapp/ - logic dictates that, in IIS, i should create a new application virtual directory under my MOSS site and point it at my custom MVC app. I've done this and it works for executing...

SharePoint Search with Network Load Balancing (NLB)

SharePoint MOSS 2007 on 64 bit OS and SQL. Added a new Web Front End to our farm, all sites seem to work fine - but now we've noticed that the search service has completely stopped working. It works if I change my host file to point to the original WFE, but if I use the NLB IP or the IP of the new WFE, it says "Unable to Connect to the...

authentication integration issue

Hello everyone, I am using SharePoint 2007 Enterprise + Publishing portal template + Windows Server 2008. I am developing using VSTS 2008 + C# + .Net 3.5. I need to implement SSO (Single Sign On feature) with another site. The SSO protocol is like this, The other site will send me information like http://mysitename/default.aspx?Identi...

ValidateUser of Forms Authentication issue

Hello everyone, I am using SharePoint 2007 Enterprise + Publishing portal template + Windows Server 2008. And I am developing using ASP.Net + C# + .Net 3.5 + VSTS 2008 on SharePoint Server 2007. I am developing a custom Forms authentication based on Forms authentication interface. I am learning using Forms Authentication with SharePoint...

Insertion of multiple data

How to insert multiple values into a Sharepoint List Column. I have one sharepoint listcolumn named Technology of type Choices. When i hitted Save button after the selection of mutiple checkboxes, it will stored to that of particular column seperated by a semi column. Help me with a example.. ...

How to set a SPFieldDateTime's value?

I'm trying to duplicate a SPFieldDateTime's value into another SPFieldDateTime in an event handler and I have to admit, I'm stumped. There are no obvious fields I can set in an SPFieldDatetime and the following doesn't change my field's value: { SPListItem task = (SPListItem) properties; task[/* destination field's guid */] = tas...

Forms authentication login page issue

Hello everyone, I am using SharePoint 2007 Enterprise + Publishing portal template + Windows Server 2008. And I am developing using ASP.Net + C# + .Net 3.5 + VSTS 2008 on SharePoint Server 2007. I am developing a custom authentication provider based on Forms authentication. When an anonymous access a page which needs authentication, by ...