Thursday, March 29, 2012
Drawing line between table rows and columns
Drawing error when rendering report in PDF
We had run SQL Server Report Services Service PAck2 and after installing that we are not able to open reports in PDF format. it gives drawing error .
Any help in this regard is appreciated.What the exact error message ?
HTH, Jens Suessmeyer.
http://www.sqlserver2005.de|||Hi Jens
The exact error message would be "A Drawing Error Occured"
As I had told we are having SQL Server 2000, SQL Server 2000 Reporting Services. Somebody in the forum suggested to install service pack2 which we did for earlier another issue where it was printing extra pages in both Excel and PDF. So after installing sp2 the PDF got messed up.
Any help in this regard is appreciated
Thanks|||
Hi,
This is probably an error in SP2, you can get a fix from Microsoft by contacting them on the mentioned ways here: http://support.microsoft.com/kb/912424/en-us
This is a PDF Error, probably a ressources not reachable or an out-of-memory error.
http://support.microsoft.com/kb/912424/en-us
HTH, jens Suessmeyer.
http://www.sqlserver2005.de
|||HiThanks Jens the link helped us solve the issue.There is another related issue which if you could show us a little direction in solving it. Here is the issue
We are working on SQL Server Reporting Services 2000. We designed a
report and exported the same into excel. The original report has lets
say one page information, then before printing when we see print
preview it shows up an extra blank page and similarly if the there are
two pages in the report ,in the preview we are seeing 4 pages ie two
extra blank pages. Any help to solve this issue would be appreciated.
The same thing we are exporting in PDF format also and here to same
issue.
We are in need of a solution. It would be of great help if you could help us in getting a solution to this issue.
We have SQL Server 2000 and SQL Server 2000 Reporting services and Microsoft Office 2003
Thanks
|||Thats a really common problem. You defined the report margins to big. If the report exceeds the page format it will break the report to multiple pages. So make sure that the visible area of your report (and the additional borders) does not exceed the format specified on the report properties. Sizing the report will let you keep your report on one page per report page. Its something like playing around with the margins and sizes to fit all your data on one page.
HTH, jens Suessmeyer.
http://www.sqlserver2005.de
Draw Horizontal Line at Threshold
percentage and the report is sorted in ascending order by this
percentage. I want to draw a single red horizontal line at a
threshold, let's say 95% so that any record lower than 95% would be
above the line and any record higher would be below the line. How can
I do this?On Apr 4, 6:54 am, robertpet...@.hotmail.com wrote:
> I have a table in reporting services. I have a field that calcuates a
> percentage and the report is sorted in ascending order by this
> percentage. I want to draw a single red horizontal line at a
> threshold, let's say 95% so that any record lower than 95% would be
> above the line and any record higher would be below the line. How can
> I do this?
I would suggest adding an extra query/stored procedure return field/
column to include in the report that is used as a flag for the
percentages. Have the flag set for the minimum row at or above 95%.
Then in the report, set the table properties (F4) (BorderColor->Top
and BorderStyle->Top) according to that flag. Something like these
expressions should work:
For BorderColor:Top:
=iif(Fields!Flag.Value = 1, "Red", "White")
For BorderStyle:Top:
=iif(Fields!Flag.Value = 1, "Solid", "None")
Hope this is helpful.
Regards,
Enrique Martinez
Sr. Software Consultantsql
Tuesday, March 27, 2012
DPE Error on Report Server
the datasource in the reports. We have changed the config files and added
the code group also added the name to the data section of the
rsreportserver.config file. We have strong named the dll and added it to the
GAC. The report runs fine in debug designer mode but will not run through
the report server or report manager. We get the following error.
An error has occurred during report processing. (rsProcessingAborted) Get
Online Help
An attempt has been made to use a data extension 'ISIS WS Data' that is not
registered for this report server. (rsDataExtensionNotFound) Get Online HelpCheck the documentation about how to deploy a similar DPE.
[WebService Data Processing Extension]
http://www.rdlcomponents.com/DTE/default.aspx
Thanks
Jerry
"Deb Taylor" wrote:
> We have created a DPE that returns data from a Web Services and uses it as
> the datasource in the reports. We have changed the config files and added
> the code group also added the name to the data section of the
> rsreportserver.config file. We have strong named the dll and added it to the
> GAC. The report runs fine in debug designer mode but will not run through
> the report server or report manager. We get the following error.
> An error has occurred during report processing. (rsProcessingAborted) Get
> Online Help
> An attempt has been made to use a data extension 'ISIS WS Data' that is not
> registered for this report server. (rsDataExtensionNotFound) Get Online Help
>|||I did all that I'm now getting a 401 unauthorized error.
"Jerry" wrote:
> Check the documentation about how to deploy a similar DPE.
> [WebService Data Processing Extension]
> http://www.rdlcomponents.com/DTE/default.aspx
> Thanks
> Jerry
> "Deb Taylor" wrote:
> > We have created a DPE that returns data from a Web Services and uses it as
> > the datasource in the reports. We have changed the config files and added
> > the code group also added the name to the data section of the
> > rsreportserver.config file. We have strong named the dll and added it to the
> > GAC. The report runs fine in debug designer mode but will not run through
> > the report server or report manager. We get the following error.
> >
> > An error has occurred during report processing. (rsProcessingAborted) Get
> > Online Help
> > An attempt has been made to use a data extension 'ISIS WS Data' that is not
> > registered for this report server. (rsDataExtensionNotFound) Get Online Help
> >|||Generally this error message means you need to log on (enter a valid user ID
and password) somewhere first. If you have just entered these and then
immediately see a 401 error, it means that one or both of your user ID and
password were invalid for whatever reason (entered incorrectly, user ID
suspended etc.).
Jerry
--
[Call a WebService from SQL Server 2000]
www.rdlcomponents.com
"Deb Taylor" wrote:
> I did all that I'm now getting a 401 unauthorized error.
> "Jerry" wrote:
> > Check the documentation about how to deploy a similar DPE.
> >
> > [WebService Data Processing Extension]
> > http://www.rdlcomponents.com/DTE/default.aspx
> >
> > Thanks
> > Jerry
> >
> > "Deb Taylor" wrote:
> >
> > > We have created a DPE that returns data from a Web Services and uses it as
> > > the datasource in the reports. We have changed the config files and added
> > > the code group also added the name to the data section of the
> > > rsreportserver.config file. We have strong named the dll and added it to the
> > > GAC. The report runs fine in debug designer mode but will not run through
> > > the report server or report manager. We get the following error.
> > >
> > > An error has occurred during report processing. (rsProcessingAborted) Get
> > > Online Help
> > > An attempt has been made to use a data extension 'ISIS WS Data' that is not
> > > registered for this report server. (rsDataExtensionNotFound) Get Online Help
> > >
Downloading sql server 2005
I am a beginner who downloaded Microsoft SQL server 2005 (for reporting services) to my Windows XP Professional (32-bit systems), but it asks me to install the service packs as well...
Its confusing to know which ones... So Windows XP Service Pack 2 is already installed.
I could not find Windows 2000 Service Pack 4 for my version though.
Downloaded Windows Server 2003 Service Pack 1, which requires Windows Server 2003 as well... true?
Do I also need Asp.net and IIS?
I would be very grateful for some help... to clarify which components needed.
With your setup you need to:
1. Install IIS and .net 2.0
2. Install SQL Server 2005 Developer or Standard edition. The Developer edition has all features of the Enterprise edition and can run on Windows XP.
Downloading RS
Hello,
I have SQL Server Standard installed in one of our Windows Server 2003, where should I request or download real version of Reporting Services? I do not want to install trial version to avoid re-installation in the future.
Thanks,
You need a minimum of SQL Server Developer edition for RS|||Yes, but even more than that - you have to "fill in" a form and MS will send the CD to you for a "full" production version of MSRS!This is the only way I know of in order to get a full licensed copy of MSRS - and not have to worry about the "trial" version!
I have made numerous post about this exact topic - but the "moderator" keeps rejecting! - but -
Since it is a "lucky" Irish day -
Best Regards
Downloading Reporting services
I have downloaded an eval version of Reporting services
from microsoft.com . But the file is corrupted and will
not run on my pc. Can any one help where can I get the
latest and greatest version other than microsoft.com ?
Thanks a lot for your help.
- SThis link details how you can get a version of RS besides downloading.
What problem were you seeing running the downloaded version?
--
-Daniel
This posting is provided "AS IS" with no warranties, and confers no rights.
"Sunil" <sunilor@.hotmail.com> wrote in message
news:244801c49cc6$44b5cf80$a401280a@.phx.gbl...
> Hello,
> I have downloaded an eval version of Reporting services
> from microsoft.com . But the file is corrupted and will
> not run on my pc. Can any one help where can I get the
> latest and greatest version other than microsoft.com ?
>
> Thanks a lot for your help.
> - S|||Forgot to post the link. :)
http://www.microsoft.com/sql/reporting/howtobuy/default.asp
--
-Daniel
This posting is provided "AS IS" with no warranties, and confers no rights.
"Sunil" <sunilor@.hotmail.com> wrote in message
news:244801c49cc6$44b5cf80$a401280a@.phx.gbl...
> Hello,
> I have downloaded an eval version of Reporting services
> from microsoft.com . But the file is corrupted and will
> not run on my pc. Can any one help where can I get the
> latest and greatest version other than microsoft.com ?
>
> Thanks a lot for your help.
> - S
Downloading from AS 400
I am trying to use Integration Services for something I've never done before; i.e., download a few files from an AS 400 and then turn around an email them to a user.
My basic problem is that I don't know where to start to get the files from the AS400 to a directory on the SQL Server. I have an Iseries ODBC connection configured correctly that will let me get to the files. Do I use a file system task to get the files from the AS 400 or do I use a data flow task? Don't know what task to start with. Once I get the files into a directory on the SQL server I don't think I will have any trouble emailing them.
I know it's a silly question but I've looked at a couple of books without any obvious answer popping out.
Steve Wells
if you are trying to get he files as files then your most likely solution woudl be to use FTP to transfer them. The ODBC connectivity, such as it is in SSIS, is for accessing data as rowsets.
Donald Farmer
Sunday, March 25, 2012
Download/Install SQL RS 2005 Alone--not the whole chunk of SQL2005
Is there anywhere that I could download trial version of SQL 2005 Reporting
services alone...not the whole junk of SQL Server 2005. I need just the
Reporting services. another question is I have SQL 2005 Developer Edition
CTP(community tchnology preview) DVD and I am looking at a way to upgrade
only reporting services from 2000 to 2005.But the set up wont let me do just
that. It insists that I upgrade the server also. Please let me know!!!Hi,
You can only download the complete package of SQL Server 2005 and I believe
it will be by its release. Reporting Service 2005 is a part of SQL Server
2005. Compare it to the Analysis Server part: you can't download it seperate
from the SQL Server part.
For your upgrading problem: Maybe it is a 'feature' of the CTP install,
haven't tried it this way. But you could try to install the SQL Server 2005
at a new instance and make SRS to install/upgrade at the instance of the 2000
version.
Hope this would help you.
Jan Pieter Posthuma
"Balaji" wrote:
> Hey all,
> Is there anywhere that I could download trial version of SQL 2005 Reporting
> services alone...not the whole junk of SQL Server 2005. I need just the
> Reporting services. another question is I have SQL 2005 Developer Edition
> CTP(community tchnology preview) DVD and I am looking at a way to upgrade
> only reporting services from 2000 to 2005.But the set up wont let me do just
> that. It insists that I upgrade the server also. Please let me know!!!
>
Download Windows server
I am confused ...downloaded Microsoft SQL server 2005 (for reporting services) to my Windows 2002 (32-bit systems), but it asks me to install the service packs as well...
So Windows XP Service Pack 2 is already installed.
And I need to download Windows server 2000 or 2003 R2, but where could I find a free trial version?
Do I also need Asp.net and IIS?
I would be very grateful for some help... to clarify which components needed.
Since you're wanting RS, you'll need to install SQL Server Express with Advanced Services. Here's the link:
http://msdn.microsoft.com/vstudio/express/sql/compare/default.aspx
This product is supported on XP SP2, so you won't need to do any OS upgrades.
Thanks,
Sam Lester (MSFT)
I get the following answer though "Your OS does nor support the Service Pack required for this SQL server release."
So my OS is 2002...
How do I check which SP required?
I did not find any .net Framework 2.0 SP.|||I managed to download SQL Server 2005 Express Edition with Advanced
Services SP1, and noticed Reporting services are available but how about "Analysis services" ?
|||
Analysis Services does not ship with any of the Express SKUs. It is part of the other SKUs (Enterprise, Standard, etc). If you want to play around with it, you can download the evaluation version found here:
http://www.microsoft.com/sql/downloads/trial-software.mspx
Thanks,
Sam Lester (MSFT)
Download SQL Reporting Services
Yes, I had license of MS SQL Server 2000"sam" <samuellai@.ajikl.com.my> wrote in message
news:eBacSBsgFHA.3692@.TK2MSFTNGP09.phx.gbl...
> Where can I download SQL Server 2000 Reporting Service?
> Yes, I had license of MS SQL Server 2000
>
I downloaded it through my company's MSDN Subscription. I checked
Microsoft's website, the only version available there is the evaluation
version. Kind of silly, really, to have a product that you might not have to
license, but it's not available in an easy way...
Anyway, the evaluation edition is here:
http://www.microsoft.com/downloads/details.aspx?familyid=BA517C01-2E2F-4BC7-84AF-149B7637F807&displaylang=en
Maybe you can email MS Customer support and ask for it?
Kaisa M. Lindahl|||Just be aware, the evaluation version can't be upgraded - it has to be
reinstalled. And yes you do have to download the full version via your
MSDN subscription or contact Microsoft if you don't.
Chris
Kaisa M. Lindahl wrote:
> "sam" <samuellai@.ajikl.com.my> wrote in message
> news:eBacSBsgFHA.3692@.TK2MSFTNGP09.phx.gbl...
> > Where can I download SQL Server 2000 Reporting Service?
> >
> > Yes, I had license of MS SQL Server 2000
> >
> I downloaded it through my company's MSDN Subscription. I checked
> Microsoft's website, the only version available there is the
> evaluation version. Kind of silly, really, to have a product that you
> might not have to license, but it's not available in an easy way...
> Anyway, the evaluation edition is here:
> http://www.microsoft.com/downloads/details.aspx?familyid=BA517C01-2E2F
> -4BC7-84AF-149B7637F807&displaylang=en
> Maybe you can email MS Customer support and ask for it?
> Kaisa M. Lindahl
Download Reporting Services for SQL 2000?
page was the 120-days trial for Reporting Service and SP1, SP2.
http://www.microsoft.com/downloads/details.aspx?familyid=BA517C01-2E2F-4BC7-84AF-149B7637F807&displaylang=en#instructions
Is there a place to download the release version instead of the 120 days
trial?
Thanks!
AlbertAlbert,
See
http://www.microsoft.com/sql/reporting/howtobuy/default.mspx#XSLTsection132121120120
for the information you need.
As far as I am aware there is no download option for a non-time
limited version of RS2000.
Andrew Watt
MVP - InfoPath
On Thu, 6 Oct 2005 09:35:07 -0700, Albert
<Albert@.discussions.microsoft.com> wrote:
>We have license for SQL 2000 but all I can find on the Microsoft download
>page was the 120-days trial for Reporting Service and SP1, SP2.
>http://www.microsoft.com/downloads/details.aspx?familyid=BA517C01-2E2F-4BC7-84AF-149B7637F807&displaylang=en#instructions
>Is there a place to download the release version instead of the 120 days
>trial?
>Thanks!
>Albert|||Thanks a lot!
Albert
"Andrew Watt [MVP - InfoPath]" wrote:
> Albert,
> See
> http://www.microsoft.com/sql/reporting/howtobuy/default.mspx#XSLTsection132121120120
> for the information you need.
> As far as I am aware there is no download option for a non-time
> limited version of RS2000.
> Andrew Watt
> MVP - InfoPath
> On Thu, 6 Oct 2005 09:35:07 -0700, Albert
> <Albert@.discussions.microsoft.com> wrote:
> >We have license for SQL 2000 but all I can find on the Microsoft download
> >page was the 120-days trial for Reporting Service and SP1, SP2.
> >
> >http://www.microsoft.com/downloads/details.aspx?familyid=BA517C01-2E2F-4BC7-84AF-149B7637F807&displaylang=en#instructions
> >
> >Is there a place to download the release version instead of the 120 days
> >trial?
> >
> >Thanks!
> >
> >Albert
>|||If you are an MSDN Subscriber, you should be able to download it through the
MSDN Subscriber downloads. It's stored under Server -> SQL Server -> SQL
Server 2000 -> SQL Server 2000 Reporting Services. You can also download SP
1 and 2 from the same place.
It might depend on what subscription level you are on, but if your company
is a subscriber, check it out.
Kaisa M. Lindahl
"Albert" <Albert@.discussions.microsoft.com> wrote in message
news:7509ED44-FE5C-4BBA-B22E-7143B9EAE224@.microsoft.com...
> We have license for SQL 2000 but all I can find on the Microsoft download
> page was the 120-days trial for Reporting Service and SP1, SP2.
> http://www.microsoft.com/downloads/details.aspx?familyid=BA517C01-2E2F-4BC7-84AF-149B7637F807&displaylang=en#instructions
> Is there a place to download the release version instead of the 120 days
> trial?
> Thanks!
> Albert
Download Reporting Services
I have SQL Server 2000 . where I can download Reporting Services and how to install it? because in microsoft.com all explanations are very confused.
thanks
You can download Evaluation Edition and SP2:
SQL Server 2000 Reporting Services Evaluation Edition
SQL Server 2000 Reporting Services Service Pack 2 (SP2)
For SQL Server 2000 Reporting Services installation CD please contact your local Microsoft sales office
Thursday, March 22, 2012
download location
We'd like to get access to Reporting Services for SQL2k. Where can I
download? (all i can find is the download to the trial)Did you get any response on this
I'm in the same boat, I can find the Service Packs, but I can't find the
base software.
Any direction will be much appreciated.
"john doe" wrote:
> We own SQL 2000 Std server license.
> We'd like to get access to Reporting Services for SQL2k. Where can I
> download? (all i can find is the download to the trial)
>
>
Download link still available for SQL Server 2000 Reporting Services from my SQL 2000?
I can't seem to find the download link for SQL Server 2000 Reporting
Services from my SQL 2000. Where is it? I feel like an idiot.
--
SpinI don't recall anything other than the Evaluation Edition ever being
downloadable from http://www.microsoft.com but you can find all the SQL
Server 2000 Reporting Services downloads at
http://www.microsoft.com/sql/technologies/reporting/downloads.mspx,
including the Evaluation Edition.
--
Sincerely,
Steve Dybing
This posting is provided "AS IS" with no warranties, and confers no rights.
Please reply to the newsgroups only, thanks.
"Spin" <Spin@.spin.com> wrote in message
news:478crcFeau66U1@.individual.net...
> Hi,
> I can't seem to find the download link for SQL Server 2000 Reporting
> Services from my SQL 2000. Where is it? I feel like an idiot.
> --
> Spin
>
Download link still available for SQL Server 2000 Reporting Services from my SQL 2000?
I can't seem to find the download link for SQL Server 2000 Reporting
Services from my SQL 2000. Where is it? I feel like an idiot.
Spin
I don't recall anything other than the Evaluation Edition ever being
downloadable from http://www.microsoft.com but you can find all the SQL
Server 2000 Reporting Services downloads at
http://www.microsoft.com/sql/technol...ownloads.mspx,
including the Evaluation Edition.
Sincerely,
Steve Dybing
This posting is provided "AS IS" with no warranties, and confers no rights.
Please reply to the newsgroups only, thanks.
"Spin" <Spin@.spin.com> wrote in message
news:478crcFeau66U1@.individual.net...
> Hi,
> I can't seem to find the download link for SQL Server 2000 Reporting
> Services from my SQL 2000. Where is it? I feel like an idiot.
> --
> Spin
>
Download link still available for SQL Server 2000 Reporting Services from my SQL 2000?
I can't seem to find the download link for SQL Server 2000 Reporting
Services from my SQL 2000. Where is it? I feel like an idiot.
SpinI don't recall anything other than the Evaluation Edition ever being
downloadable from http://www.microsoft.com but you can find all the SQL
Server 2000 Reporting Services downloads at
http://www.microsoft.com/sql/techno...downloads.mspx,
including the Evaluation Edition.
Sincerely,
Steve Dybing
This posting is provided "AS IS" with no warranties, and confers no rights.
Please reply to the newsgroups only, thanks.
"Spin" <Spin@.spin.com> wrote in message
news:478crcFeau66U1@.individual.net...
> Hi,
> I can't seem to find the download link for SQL Server 2000 Reporting
> Services from my SQL 2000. Where is it? I feel like an idiot.
> --
> Spin
>sql
Download a report from Reporting Services.
Hi,
I have a report that′s already in the reporting service (2000 and 2005 - both systems), that I need edit in order to make some changes, but the person who did the report already deleted the source. I only have the one that had been uploaded to the reporting services. In there i only see an option to upload the report, but not to download.
Is there any way that i can download the report from the reporting services?
Thanks.
Yes, you can download the .RDL file using the "Edit" link on the Report Manager report properties page, the SOAP API method GetReportDefinition, and in Management Studio by right-clicking on the report and selecting "Edit Report".
Keep in mind that the RDL you get out of the server will be exactly the RDL you last published, but it will NOT include changes made to data sources and parameters after the RDL was published.
Sunday, March 11, 2012
Double Sided?
I am using SQL Reporting Services 2000 - is it possible to make a report that prints double sided?This has nothing to do with report settings. This is a printer setting. If it supports double sided priniting then reporting services reports can be printed double sided.|||Hi, yes the printer does support duplex printing, but I can't see how to make a report that prints on two sides.
Friday, March 9, 2012
double authentication to get to a report? 2nd auth fails?
Srvr 2000(SP3). On the server is a group of ID's from my company's domain.
This group is given the Browser role which works to a point of navigating
folders.
When the user chooses a report they are re-authenticated and the
authentication fails. In looking at the URL I notice everything is fine with
https://{server}/Reports/Pages/Folder.aspx but when you click on a report
https://{server}/Reports/Pages/Report.aspx is called and the authentication
pops up and declines the user (even though it's a valid login using
domain\user).
Other issues:
I received an error during set up which I found the work around for in an
MSDN KB. The reason why I mention it is that is has you create the virutal
directories manually after the fact so perhaps a permissions was missed?I have also started to have this problem. Although it is only on a large
dataset. Smaller reports seem to work fine.
Please post a solution if you get one.
-- Jesse
"Peter Capazzi" <PeterCapazzi@.discussions.microsoft.com> wrote in message
news:EC3D5EA2-DFD8-4554-89A1-EEC4B2BC3A2D@.microsoft.com...
>I recently implemented Reporting Services (w/ SP1) on a 2003 Server w/ SQL
> Srvr 2000(SP3). On the server is a group of ID's from my company's domain.
> This group is given the Browser role which works to a point of navigating
> folders.
> When the user chooses a report they are re-authenticated and the
> authentication fails. In looking at the URL I notice everything is fine
> with
> https://{server}/Reports/Pages/Folder.aspx but when you click on a report
> https://{server}/Reports/Pages/Report.aspx is called and the
> authentication
> pops up and declines the user (even though it's a valid login using
> domain\user).
> Other issues:
> I received an error during set up which I found the work around for in an
> MSDN KB. The reason why I mention it is that is has you create the virutal
> directories manually after the fact so perhaps a permissions was missed?|||I continued to work on this and found a solution... I gave the group
permission to ReportServer by right clicking in IIS Mgr and using permissions
there.
** I gave Read, Execute, and List Folders permissions. Is that too much? **
Jesse:
I would think if one user ID can access one report then that means all of
the permissions are set up to generate a report. I would look in the security
tab under properties and ensure the role that's attached to the group (or
user id) is there.
Also, do the reports use embedded ID's for pulling queries? Check that the
user ID in the Data Source has the proper permissions to the table... just
log into SQL Anlalyzer with the ID and execute the query there.
That's my 2 cents...
"Jesse Beveridge" wrote:
> I have also started to have this problem. Although it is only on a large
> dataset. Smaller reports seem to work fine.
> Please post a solution if you get one.
> -- Jesse
> "Peter Capazzi" <PeterCapazzi@.discussions.microsoft.com> wrote in message
> news:EC3D5EA2-DFD8-4554-89A1-EEC4B2BC3A2D@.microsoft.com...
> >I recently implemented Reporting Services (w/ SP1) on a 2003 Server w/ SQL
> > Srvr 2000(SP3). On the server is a group of ID's from my company's domain.
> > This group is given the Browser role which works to a point of navigating
> > folders.
> >
> > When the user chooses a report they are re-authenticated and the
> > authentication fails. In looking at the URL I notice everything is fine
> > with
> > https://{server}/Reports/Pages/Folder.aspx but when you click on a report
> > https://{server}/Reports/Pages/Report.aspx is called and the
> > authentication
> > pops up and declines the user (even though it's a valid login using
> > domain\user).
> >
> > Other issues:
> > I received an error during set up which I found the work around for in an
> > MSDN KB. The reason why I mention it is that is has you create the virutal
> > directories manually after the fact so perhaps a permissions was missed?
>
>