Joe Johnson

iis

Integrating MOSS 2007 and SQL 2008 Reporting Services

Joe Johnson - 08/07/2009

Recently, a customer was curious about implementing Microsoft Office SharePoint Server 2007 inside of their organization. While working with one of their external clients, they were exposed to the collaboration and versioning features of the software and were captivated by the simplicity of the software. As they are TechNet subscribers and Registered Partners with Microsoft, there were no licensing costs for their internal use, so we implemented the software on a VMware ESXi virtual server running Windows 2003 R2 and SQL Server 2008.

SQL 2008 introduces a new aspect to the Reporting Services component: SharePoint Integrated mode. Curious, I read more into this feature and found that it was added to ease the past pain of getting MOSS 2007 and SQL 2005 Reporting Services to integrate properly. Because, though, you need to install SQL 2008 before you install MOSS 2007, I was in a bit of a “chicken before the egg” situation: how can I connect SRS to MOSS when MOSS cannot be installed until SQL is installed? The answer is that I just need to change the configuration once the setup is complete!

SharePoint Integrated Warning Box
When you install SQL 2008 with SRS in SharePoint Integrated Mode and MOSS is not installed, you get the following error message.

Step 1: Install Reporting Services Add-in for SharePoint on the MOSS Server

Once SQL and MOSS are installed on their respective servers correctly, download and install the Microsoft SQL Server 2008 Reporting Services Add-in for SharePoint on the MOSS application server. This add-in basically provides a Report Viewer Web Part that provides report viewing capability, export to other rendering formats, page navigation, search, print, and zoom.

Step 2: Configure Report Server in SharePoint Central Admin Tool.

Once the add-in is installed and ready to go, we need to tell SharePoint to use the reports server in the Central Administration utility. On the MOSS server, open the Programs menu, choose Microsoft Office Server, and then SharePoint 3.0 Central Administration. This will open the Central Administration utility in a browser window. You will need to login using credentials that have access to the Central Administration utility.

In Central Administration, go to Site Actions in the top corner and choose Site Settings:
Site Settings

Under Site Settings, choose “Site collection features”:
Site collection features

Find the Report Server Integration Feature on the list and ensure it is Active (click Activate if it is not marked as Active):

Report Server Integration Feature

Step 3: Set Report Services Permission to Access Server Farm

Still in the Central Administration utility, click on the Application Management tab on the top of the screen. Locate the Reporting Services section, and click the Grant database access link. Enter the appropriate database server name (in my case, it is the same as the application server), choose your instance (in my case, the Default Instance) and click OK.

Grant Database Access

You will be prompted for a user account and a password; you must choose a user account with sysadmin access to the Reporting Services server (I used my domain admin account). This is a one-time login to gather info on the instance, and it will not continue to use your credentials to access SRS.

Step 4: Configure Reporting Services Integration

To activate Reporting Services in MOSS, you need to provide the URL to the SRS install to MOSS. From the Application Management tab in the Central Administration utility, click on “Manage integration settings” under Reporting Services. Here, enter the URL to the SRS installation (in my example, the SQL server is named www01 so my URL is http://www01/ReportServer). If your reports will use Windows Authentication, you must choose Windows Authentication here. If you will be using trusted connections in the published reports, you can use Trusted Account in the Authentication Mode. Press OK when you have entered the URL and chosen an authentication method.

Conclusion

And now you are set! You can publish your reports from Visual Studio and then view them in the MOSS Report Viewer Web-part that was installed and made available by the Reporting Services Add-in for SharePoint. Again, if you have issues or questions please don’t hesitate to contact me or leave a comment.

Prepend “www.” to URL

Joe Johnson - 05/07/2009

Even the setup of this very blog was wrought with an un-documented issue with URL rewriting. Most SEO experts worth their titles know that Google and other search engines recognize “www.domain.com” and “domain.com” as two distinct sites and split your results and ranking between the two. The ultimate goal is to try and combine your traffic down to one distict URL and prevent dispersing your rank. In the case of my blog, I chose to redirect all traffic to www.jomofojo.co, which means if someone types some url without a www, it should be redirected automatically.

A simple redirect will take any URL containing jomofojo.co and send it to http://www.jomofojo.co. This is not optimal if someone is trying to get to my Contact page (https://jomofojo.co/contact.asp) and is instead sent to my home page (http://www.jomofojo.co). A context-sensitive redirect will maintain any trailing path on the URL when redirecting to the new host (so https://jomofojo.co/contact.asp becomes http://www.jomofojo.co/contact.asp). From a systems-management perspective, the simple redirect is far easier to implement with three lines of code in my header. However, from a user-experience perspective, the latter option is 1000 times more efficient and friendly, but it requires coding on every page of my site or configuration changes to my web server. Below you’ll find options for how to implement this change for either your web server or in the code of your site.

Code Approach: ASP

For ASP, merely add the following to the top of every ASP page in your site, or paste it to a single file and include it before the <html> tag in each of your pages:

[vb]<%
If InStr(Request.ServerVariables("SERVER_NAME"),"www") = 0 Then
Response.Status="301 Moved Permanently"
Response.AddHeader "Location","http://www."
& Request.ServerVariables("HTTP_HOST")
& Request.ServerVariables("REQUEST_URI")
Response.End
End if
%>[/vb]

Code Approach: PHP

For PHP, merely add the following to the top of every PHP page in your site, or paste it to a single file and include it before the <html> tag in each of your pages:

[php]<?php
if(strpos($_SERVER[‘SERVER_NAME’], "www") === false)
{
header("HTTP/1.1 301 Moved Permanently");
header("Location: http://www." . $_SERVER[‘HTTP_HOST’] . $_SERVER[‘REQUEST_URI’]);
exit;
}
?>[/php]

Server Approach: Apache

In order to redirect to the www URL in Apache, you must install and configure the mod_rewrite plugin. Once that is complete, create a new .htaccess in the root of your site and add the following lines, where domain.com is your domain:

[code]
RewriteEngine On
RewriteCond %{HTTP_HOST} ^domain\.com
RewriteRule (.*) http://www.domain.com/$1 [R=301,L]
[/code]

Server Approach: IIS

By default, IIS 6 and earlier did not come with a URL rewriting utility. Helicon has a product named ISAPI_Rewrite for sale that does an excellent job and uses most of the same syntax as mod_rewrite in Apache. The correct httpd.ini configuration for ISAPI_Rewrite 3.0 and later is:

[code]
RewriteEngine on

RewriteCond %{HTTPS} (on)?
RewriteCond %{HTTP:Host} ^(?!www\.)(.+)$ [NC]
RewriteCond %{REQUEST_URI} (.+)
RewriteRule .? http(?%1s)://www.%2%3 [R=301,L]
[/code]

Conclusion

That about covers it. If you have difficulty implementing any of the solutions above, please feel free to contact me or leave a comment.