Entries categorized 'Blog' ↓

SPS installation woes

Searching google groups for "failed to create portal successfully"group:microsoft.public.sharepoint.portalserver.* returns 120 results "portal creation failed" group:microsoft.public.sharepoint.portalserver.* returns 86 results. I have read most of them and few seem to offer any resolution, there are...

SPS installation woes →

Custom DataProcessing Extensions - problem with the Refresh Fields button?

In my previous post I stated that I had succeeded in converting a Reporting Services Data Processing Extension for reporting on ad-hoc data from a serialized ADO.Net DataSet into VB.Net. I have since extended this with an extra parameter (IDataParameterCollection) to allow the report designer to define...

Custom DataProcessing Extensions - problem with the Refresh Fields button? →

A WSS Data Processing Extension for Reporting Services?

Having decided to use Windows SharePoint Services (WSS) as a company-wide document repository I'm thinking I'm probably going to need to report on the documents and list content (in combination with data from other enterprise systems) and not just rely on SharePoint Search, so Reporting Services seems...

A WSS Data Processing Extension for Reporting Services? →

Frontpage RPC for check-in check-out etc.

Although I'm now happy with my custom web service, codewheeney isn't and has posted that he/she has worked out how to use the FrontPage RPC calls to do the same stuff without resorting to web services. I thought I'd post in case anyone else was interested and maybe we could persuade codewheeney to share...

Frontpage RPC for check-in check-out etc. →

Why is SPListItem always ReadOnly?

Dim targetWeb As SPWeb = SPControl.GetContextWeb(Context) .Webs.Item("sites/IT") Dim docLib As SPDocumentLibrary = CType (targetWeb.Lists.Item( New Guid(targetFolderGUID)), SPDocumentLibrary) Dim docLibFile As SPFile = docLib.RootFolder.Files.Add(fileName, fileContents) Dim docItem As SPListItem = docLibFile...

Why is SPListItem always ReadOnly? →

Problems uploading documents with a custom web service

The other day I got some code from the following article: http://msdn.microsoft.com/library/default.asp?url=/library/en-us/odc_SP2003_ta/html/ODC_WritingCustomWebServicesforSPPT.asp It is supposed to allow me to upload a document into a library of my choice except that the document completely disappeared...

Problems uploading documents with a custom web service →

Connectable Page Viewer Web Part

Currently watching this thread with great interest - I love the new Google Groups Great work guys, here's one person who's definitely interested in the final solution! ;-) respect to: Mike Walsh Bart Waeterschoot and Ian Morrish UPDATE: Respect also, of course, to Jim Duncan . Mads Nissen has also now...

Connectable Page Viewer Web Part →

Towards a Fault Tracking application in WSS

I have been mulling over this for a long time so I thought I'd start a post and see where it went, and I'll keep this up to date (or write an article) if I get somewhere with it. I am the sole developer in an IT team of 5, our other main function therefore is systems admin and support for all IT systems...

Towards a Fault Tracking application in WSS →

Reporting Services - using parameters with Data Processing Extensions

I had been reading in Bryan Keller's post "How hard is it to write Reporting Services Extensions?" The documentation for Reporting Services includes a sample, however, that sample does not cover the use of data extensions that handle parameters. This is the only area where it gets confusing. Hopefully...

Reporting Services - using parameters with Data Processing Extensions →

Using the Form Web Part to pass parameters to a DataView Web Part

I have been reading this article Building XML Data-Driven Web Sites with FrontPage 2003 ...and in the section on adding Data View Web Parts, it states that, when adding a connection to a SQL Stored Proc, or a Web Service: "you can supply parameters at runtime. The Default Value combo box supplies several...

Using the Form Web Part to pass parameters to a DataView Web Part →