<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>
<channel>
	<title>@Henning &#187; SSRS</title>
	<atom:link href="http://www.eiben.weite-welt.com/tag/ssrs/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.eiben.weite-welt.com</link>
	<description>Yet another blog - surviving the internet</description>
	<lastBuildDate>Sun, 29 Jan 2012 16:37:44 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Defeading reporting services</title>
		<link>http://www.eiben.weite-welt.com/2008/02/installing_ssrs/</link>
		<comments>http://www.eiben.weite-welt.com/2008/02/installing_ssrs/#comments</comments>
		<pubDate>Mon, 25 Feb 2008 09:51:06 +0000</pubDate>
		<dc:creator>Henning Eiben</dc:creator>
				<category><![CDATA[Software]]></category>
		<category><![CDATA[SQL2005]]></category>
		<category><![CDATA[SSRS]]></category>
		<guid isPermaLink="false">http://blog.eiben.weite-welt.com/2008/02/defeading-reporting-services/</guid>
		<description><![CDATA[I had a real hard time installing SQL-Server 2005 Reporting-Services on this one machine ...   The MSI was executing just fine...]]></description>
			<content:encoded><![CDATA[<p>I had a real hard time installing SQL-Server 2005 Reporting-Services on this one machine &#8230; </p>
<p>The MSI was executing just fine, but the step &#8220;removing backups&#8221; (don&#8217;t know the exact wording in english, since I&#8217;m using a german installation) seems to fail.</p>
<p>This is what the msi logfile has to offer:</p>
<pre class="brush:plain">
Aktion 15:59:51: RSSP_CAInstall.28B19132_4741_4761_840F_AC515130EC08.
Aktion 15:59:52: RollbackCleanup. Sicherungsdateien werden entfernt
CA MSG : Running RSCustomAction
CA MSG : Launching C:\DOKUME~1\ADMINI~1\LOKALE~1\Temp\rsCustomAction.exe with command line parameter /i
CA MSG : rsCustomAction.exe failed to configure, Error code is: 1
Aktion 16:02:48: Rollback. Aktion wird rückgängig gemacht:
</pre>
</p>
<p>After much struggle I finally figrued something. First I installed <code>SharePointRS.msi</code> without the custom actions, by executing:</p>
<pre class="brush:plain">
SharePointRS.msi SKIPCA=1
</pre>
</p>
<p>OK. So next I just run the rsCustomAction.exe (which is located in my temp-folder):</p>
<pre class="brush:plain">
rsCustomAction.exe /i
</pre>
</p>
<p>This finally produced some logfiles and a more details error message. In my case the problem was, that the <code>web.config</code> of my portal-site was write-protected!!</p>
<p>After removing the write-protection I was able to install <code>SharePointRS.msi</code> just fine.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.eiben.weite-welt.com/2008/02/installing_ssrs/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Reporting Services accessed via URL</title>
		<link>http://www.eiben.weite-welt.com/2007/09/reporting-services-accessed-via-url/</link>
		<comments>http://www.eiben.weite-welt.com/2007/09/reporting-services-accessed-via-url/#comments</comments>
		<pubDate>Tue, 04 Sep 2007 10:59:27 +0000</pubDate>
		<dc:creator>Henning Eiben</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[SSRS]]></category>
		<guid isPermaLink="false">http://blog.eiben.weite-welt.com/2007/09/reporting-services-accessed-via-url/</guid>
		<description><![CDATA[Well, a neat feature of MS Reporting Services (SSRS) is, that the reports can be called via a URL directly. This offers the opt...]]></description>
			<content:encoded><![CDATA[<p>Well, a neat feature of MS Reporting Services (SSRS) is, that the reports can be called via a URL directly. This offers the option to &#8220;deep-link&#8221; into a report and preset all needed parameters.</p>
<p>You just simply need to browse to you reportserver <code>http://[servername]/ReportServer/</code>. From here on you can click right to your desired report. Then just add the needed parameters to the URL. There parameters are passed as key/value-pairs, so you need to know the ids of the parameters, as they are defined in the report parameters.</p>
<p>To call a report <code>test.rs</code> with the parameter <code>customer_id</code> and a value of <code>1234</code> you just call the URL <code>http://myreportserver/ReportServer/Pages/ReportViewer.aspx?/test.rs&amp;customer_id=1234</code>. A little more difficult at first glancy might be multi-line parameters. Just add the parameter as many times as you wish. For example to call the above report, but having <code>customer_id</code> declared as a multi-line parameter and thus wanting to pass the values <code>1234</code> and <code>5678</code> just call <code>[...]ReportViewer.aspx?/test.rs&amp;customer_id=1234&amp;customer_id=5678</code>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.eiben.weite-welt.com/2007/09/reporting-services-accessed-via-url/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

