I am trying to get the "PrinterDeliverySample" Extension sample to work. I
assume that the result of compiling then deploying (following all of the
deployment steps) will be another option titled "Printer Delivery Sample" in
the subscription page.
I compiled the solution and copied the .dll to the appropriate directories
then made the updates to the respective files:
RSReportServer.config
---
<Delivery>
<Extension Name="Printer Delivery Sample"
Type="Microsoft.Samples.ReportingServices.PrinterDeliverySample.PrinterDeliveryProvider,Microsoft.Samples.ReportingServices.PrinterDeliverySample">
<Configuration>
<Printers>
<Printer>\\MED-FP-001\MED-PR-LIC01</Printer>
<Printer>\\MED-FP-001\MED-PR-DLP01</Printer>
</Printers>
</Configuration>
</Extension>
---
RSWebApplication.config
--
...
<Extensions>
<DeliveryUI>
<Extension Name="Printer Delivery Sample"
Type="Microsoft.Samples.ReportingServices.PrinterDeliverySample.PrinterDeliveryProvider,Microsoft.Samples.ReportingServices.PrinterDeliverySample"/>
--
rsmgrpolicy
--
...
version="1"
PermissionSetName="CodeGenDirPermissionSet">
<IMembershipCondition
class="UrlMembershipCondition"
version="1"
Url="$CodeGen$/*"
/>
</CodeGroup>
<CodeGroup
class="UnionCodeGroup"
version="1"
PermissionSetName="FullTrust"
Name="PrinterDeliveryCodeGroup"
Description="Code group for my delivery extension">
<IMembershipCondition
class="UrlMembershipCondition"
version="1"
Url="C:\Program Files\Microsoft SQL Server\MSSQL\Reporting
Services\ReportServer\bin\Microsoft.Samples.ReportingServices.PrinterDeliverySample.dll"
/>
</CodeGroup>
--
rssrvrpolicy.config
--
class="UnionCodeGroup"
version="1"
PermissionSetName="FullTrust">
<IMembershipCondition
class="UrlMembershipCondition"
version="1"
Url="$CodeGen$/*"
/>
</CodeGroup>
<CodeGroup
class="UnionCodeGroup"
version="1"
PermissionSetName="FullTrust"
Name="PrinterDeliveryCodeGroup"
Description="Code group for my delivery extension">
<IMembershipCondition
class="UrlMembershipCondition"
version="1"
Url="C:\Program Files\Microsoft SQL Server\MSSQL\Reporting
Services\ReportServer\bin\Microsoft.Samples.ReportingServices.PrinterDeliverySample.dll"
/>
</CodeGroup>
---Can anyone help here?
"DaveM" wrote:
> I am trying to get the "PrinterDeliverySample" Extension sample to work. I
> assume that the result of compiling then deploying (following all of the
> deployment steps) will be another option titled "Printer Delivery Sample" in
> the subscription page.
> I compiled the solution and copied the .dll to the appropriate directories
> then made the updates to the respective files:
> RSReportServer.config
> ---
> <Delivery>
> <Extension Name="Printer Delivery Sample"
> Type="Microsoft.Samples.ReportingServices.PrinterDeliverySample.PrinterDeliveryProvider,Microsoft.Samples.ReportingServices.PrinterDeliverySample">
> <Configuration>
> <Printers>
> <Printer>\\MED-FP-001\MED-PR-LIC01</Printer>
> <Printer>\\MED-FP-001\MED-PR-DLP01</Printer>
> </Printers>
> </Configuration>
> </Extension>
> ---
>
> RSWebApplication.config
> --
> ...
> <Extensions>
> <DeliveryUI>
> <Extension Name="Printer Delivery Sample"
> Type="Microsoft.Samples.ReportingServices.PrinterDeliverySample.PrinterDeliveryProvider,Microsoft.Samples.ReportingServices.PrinterDeliverySample"/>
> --
> rsmgrpolicy
> --
> ...
> version="1"
> PermissionSetName="CodeGenDirPermissionSet">
> <IMembershipCondition
> class="UrlMembershipCondition"
> version="1"
> Url="$CodeGen$/*"
> />
> </CodeGroup>
> <CodeGroup
> class="UnionCodeGroup"
> version="1"
> PermissionSetName="FullTrust"
> Name="PrinterDeliveryCodeGroup"
> Description="Code group for my delivery extension">
> <IMembershipCondition
> class="UrlMembershipCondition"
> version="1"
> Url="C:\Program Files\Microsoft SQL Server\MSSQL\Reporting
> Services\ReportServer\bin\Microsoft.Samples.ReportingServices.PrinterDeliverySample.dll"
> />
> </CodeGroup>
> --
> rssrvrpolicy.config
> --
> class="UnionCodeGroup"
> version="1"
> PermissionSetName="FullTrust">
> <IMembershipCondition
> class="UrlMembershipCondition"
> version="1"
> Url="$CodeGen$/*"
> />
> </CodeGroup>
> <CodeGroup
> class="UnionCodeGroup"
> version="1"
> PermissionSetName="FullTrust"
> Name="PrinterDeliveryCodeGroup"
> Description="Code group for my delivery extension">
> <IMembershipCondition
> class="UrlMembershipCondition"
> version="1"
> Url="C:\Program Files\Microsoft SQL Server\MSSQL\Reporting
> Services\ReportServer\bin\Microsoft.Samples.ReportingServices.PrinterDeliverySample.dll"
> />
> </CodeGroup>
> ---
>
>
Showing posts with label extension. Show all posts
Showing posts with label extension. Show all posts
Tuesday, February 21, 2012
Sample Security Extension and WinForms Application
I'm doing a proof of concept on Security Extensions using the Sample Security
Extension. I've implemented the Sample Security Extension without any
problems. It's worked successfully with our WinForms application, which
manages Reporting Services using the Web Services.
However, the WinForms application uses a browser control and URL Access to
display reports to the user (We do this so the user can have the drill down
capabilities in the reports). Everytime a request is made using URL Access,
the login page is displayed. Is there a way to persist the cookie so the
login page isn't displayed when we use URL Access?Please see the thread below. In a nutshell, you need to find a way to pass
the authentication cookie to the WebBrowser control.
http://groups.google.com/groups?hl=en&lr=&ie=UTF-8&threadm=Oxge94CqEHA.868%40TK2MSFTNGP10.phx.gbl&rnum=1&prev=/groups%3Fq%3Dcookie%2Bwebbrowser%2Bgroup:*.reportingsvcs%26hl%3Den%26lr%3D%26ie%3DUTF-8%26scoring%3Dd%26selm%3DOxge94CqEHA.868%2540TK2MSFTNGP10.phx.gbl%26rnum%3D1
--
Hope this helps.
----
Teo Lachev, MVP [SQL Server], MCSD, MCT
Author: "Microsoft Reporting Services in Action"
Publisher website: http://www.manning.com/lachev
Buy it from Amazon.com: http://shrinkster.com/eq
Home page and blog: http://www.prologika.com/
----
"marcca" <marcca@.discussions.microsoft.com> wrote in message
news:785ECC07-D422-4F5F-8AF4-D41EBA0CB41E@.microsoft.com...
> I'm doing a proof of concept on Security Extensions using the Sample
Security
> Extension. I've implemented the Sample Security Extension without any
> problems. It's worked successfully with our WinForms application, which
> manages Reporting Services using the Web Services.
> However, the WinForms application uses a browser control and URL Access to
> display reports to the user (We do this so the user can have the drill
down
> capabilities in the reports). Everytime a request is made using URL
Access,
> the login page is displayed. Is there a way to persist the cookie so the
> login page isn't displayed when we use URL Access?
Extension. I've implemented the Sample Security Extension without any
problems. It's worked successfully with our WinForms application, which
manages Reporting Services using the Web Services.
However, the WinForms application uses a browser control and URL Access to
display reports to the user (We do this so the user can have the drill down
capabilities in the reports). Everytime a request is made using URL Access,
the login page is displayed. Is there a way to persist the cookie so the
login page isn't displayed when we use URL Access?Please see the thread below. In a nutshell, you need to find a way to pass
the authentication cookie to the WebBrowser control.
http://groups.google.com/groups?hl=en&lr=&ie=UTF-8&threadm=Oxge94CqEHA.868%40TK2MSFTNGP10.phx.gbl&rnum=1&prev=/groups%3Fq%3Dcookie%2Bwebbrowser%2Bgroup:*.reportingsvcs%26hl%3Den%26lr%3D%26ie%3DUTF-8%26scoring%3Dd%26selm%3DOxge94CqEHA.868%2540TK2MSFTNGP10.phx.gbl%26rnum%3D1
--
Hope this helps.
----
Teo Lachev, MVP [SQL Server], MCSD, MCT
Author: "Microsoft Reporting Services in Action"
Publisher website: http://www.manning.com/lachev
Buy it from Amazon.com: http://shrinkster.com/eq
Home page and blog: http://www.prologika.com/
----
"marcca" <marcca@.discussions.microsoft.com> wrote in message
news:785ECC07-D422-4F5F-8AF4-D41EBA0CB41E@.microsoft.com...
> I'm doing a proof of concept on Security Extensions using the Sample
Security
> Extension. I've implemented the Sample Security Extension without any
> problems. It's worked successfully with our WinForms application, which
> manages Reporting Services using the Web Services.
> However, the WinForms application uses a browser control and URL Access to
> display reports to the user (We do this so the user can have the drill
down
> capabilities in the reports). Everytime a request is made using URL
Access,
> the login page is displayed. Is there a way to persist the cookie so the
> login page isn't displayed when we use URL Access?
Labels:
application,
concept,
database,
extension,
extensions,
implemented,
microsoft,
mysql,
oracle,
proof,
sample,
security,
server,
sql,
winforms
Sample Report Delivery Problem
I have done everything in the Readme.htm to setup the delivery extension.
When I go to New Subscrition for a report to try to test I get 'Object
Reference not set to and instance of on object', that displays on the page.
Thanks in advance.
here is a bit of the log file.
w3wp!library!114c!10/8/2004-13:40:36:: e ERROR: Throwing
Microsoft.ReportingServices.Diagnostics.Utilities.ServerConfigurationErrorException:
The Report Server has encountered a configuration error; more details in the
log files, Could not create Extension of type: DeliveryUIname: Printer
Delivery Sample;
Info:
Microsoft.ReportingServices.Diagnostics.Utilities.ServerConfigurationErrorException:
The Report Server has encountered a configuration error; more details in the
log files
w3wp!extensionfactory!114c!10/8/2004-13:40:47:: e ERROR: Exception caught
instantiating report server extension:
Microsoft.ReportingServices.Diagnostics.Utilities.ServerConfigurationErrorException:
The Report Server has encountered a configuration error; more details in the
log files.
w3wp!ui!114c!10/8/2004-13:40:47:: e ERROR: Object reference not set to an
instance of an object.
w3wp!ui!114c!10/8/2004-13:40:47:: e ERROR: HTTP status code --> 500
--Details--
System.NullReferenceException: Object reference not set to an instance of an
object.
at
Microsoft.ReportingServices.UI.SubscriptionPropertiesPage.AddDropDownOfDeliveryProviders()
at
Microsoft.ReportingServices.UI.SubscriptionPropertiesPage.FinalizeControls()Could not create Extension of type: DeliveryUIname: Printer
Delivery Sample
Make sure that the assembly name is correct and located in the bin directory
of the reportmanager.
--
-Daniel
This posting is provided "AS IS" with no warranties, and confers no rights.
"KENWOOD" <KENWOOD@.discussions.microsoft.com> wrote in message
news:F51164DD-2F1A-4D04-8823-4ABFBBDD83C9@.microsoft.com...
> I have done everything in the Readme.htm to setup the delivery extension.
> When I go to New Subscrition for a report to try to test I get 'Object
> Reference not set to and instance of on object', that displays on the
page.
> Thanks in advance.
> here is a bit of the log file.
> w3wp!library!114c!10/8/2004-13:40:36:: e ERROR: Throwing
>
Microsoft.ReportingServices.Diagnostics.Utilities.ServerConfigurationErrorEx
ception:
> The Report Server has encountered a configuration error; more details in
the
> log files, Could not create Extension of type: DeliveryUIname: Printer
> Delivery Sample;
> Info:
>
Microsoft.ReportingServices.Diagnostics.Utilities.ServerConfigurationErrorEx
ception:
> The Report Server has encountered a configuration error; more details in
the
> log files
> w3wp!extensionfactory!114c!10/8/2004-13:40:47:: e ERROR: Exception caught
> instantiating report server extension:
>
Microsoft.ReportingServices.Diagnostics.Utilities.ServerConfigurationErrorEx
ception:
> The Report Server has encountered a configuration error; more details in
the
> log files.
> w3wp!ui!114c!10/8/2004-13:40:47:: e ERROR: Object reference not set to an
> instance of an object.
> w3wp!ui!114c!10/8/2004-13:40:47:: e ERROR: HTTP status code --> 500
> --Details--
> System.NullReferenceException: Object reference not set to an instance of
an
> object.
> at
>
Microsoft.ReportingServices.UI.SubscriptionPropertiesPage.AddDropDownOfDeliv
eryProviders()
> at
>
Microsoft.ReportingServices.UI.SubscriptionPropertiesPage.FinalizeControls()
When I go to New Subscrition for a report to try to test I get 'Object
Reference not set to and instance of on object', that displays on the page.
Thanks in advance.
here is a bit of the log file.
w3wp!library!114c!10/8/2004-13:40:36:: e ERROR: Throwing
Microsoft.ReportingServices.Diagnostics.Utilities.ServerConfigurationErrorException:
The Report Server has encountered a configuration error; more details in the
log files, Could not create Extension of type: DeliveryUIname: Printer
Delivery Sample;
Info:
Microsoft.ReportingServices.Diagnostics.Utilities.ServerConfigurationErrorException:
The Report Server has encountered a configuration error; more details in the
log files
w3wp!extensionfactory!114c!10/8/2004-13:40:47:: e ERROR: Exception caught
instantiating report server extension:
Microsoft.ReportingServices.Diagnostics.Utilities.ServerConfigurationErrorException:
The Report Server has encountered a configuration error; more details in the
log files.
w3wp!ui!114c!10/8/2004-13:40:47:: e ERROR: Object reference not set to an
instance of an object.
w3wp!ui!114c!10/8/2004-13:40:47:: e ERROR: HTTP status code --> 500
--Details--
System.NullReferenceException: Object reference not set to an instance of an
object.
at
Microsoft.ReportingServices.UI.SubscriptionPropertiesPage.AddDropDownOfDeliveryProviders()
at
Microsoft.ReportingServices.UI.SubscriptionPropertiesPage.FinalizeControls()Could not create Extension of type: DeliveryUIname: Printer
Delivery Sample
Make sure that the assembly name is correct and located in the bin directory
of the reportmanager.
--
-Daniel
This posting is provided "AS IS" with no warranties, and confers no rights.
"KENWOOD" <KENWOOD@.discussions.microsoft.com> wrote in message
news:F51164DD-2F1A-4D04-8823-4ABFBBDD83C9@.microsoft.com...
> I have done everything in the Readme.htm to setup the delivery extension.
> When I go to New Subscrition for a report to try to test I get 'Object
> Reference not set to and instance of on object', that displays on the
page.
> Thanks in advance.
> here is a bit of the log file.
> w3wp!library!114c!10/8/2004-13:40:36:: e ERROR: Throwing
>
Microsoft.ReportingServices.Diagnostics.Utilities.ServerConfigurationErrorEx
ception:
> The Report Server has encountered a configuration error; more details in
the
> log files, Could not create Extension of type: DeliveryUIname: Printer
> Delivery Sample;
> Info:
>
Microsoft.ReportingServices.Diagnostics.Utilities.ServerConfigurationErrorEx
ception:
> The Report Server has encountered a configuration error; more details in
the
> log files
> w3wp!extensionfactory!114c!10/8/2004-13:40:47:: e ERROR: Exception caught
> instantiating report server extension:
>
Microsoft.ReportingServices.Diagnostics.Utilities.ServerConfigurationErrorEx
ception:
> The Report Server has encountered a configuration error; more details in
the
> log files.
> w3wp!ui!114c!10/8/2004-13:40:47:: e ERROR: Object reference not set to an
> instance of an object.
> w3wp!ui!114c!10/8/2004-13:40:47:: e ERROR: HTTP status code --> 500
> --Details--
> System.NullReferenceException: Object reference not set to an instance of
an
> object.
> at
>
Microsoft.ReportingServices.UI.SubscriptionPropertiesPage.AddDropDownOfDeliv
eryProviders()
> at
>
Microsoft.ReportingServices.UI.SubscriptionPropertiesPage.FinalizeControls()
Sample Printer Delivery Extension Question
I'm trying to use the printer delivery extension sample that comes with SQL Server Reporting Services. The problem that I am having is that when I am going through to set up the subscription using a printer the printers that I try to select come back with an error that states that the printers are not installed. I have double checked the config file and they are indeed added to the configuration as specified and I have double checked to make sure that the printers are added to the server. In fact one printer is the default for the report server that we are using. Can anyone please assist me or point me in the right direction?
TIA,
MelanieHi Melanie,
Just take note that the code that checks if the printer is installed is case
sensitive. write a simple program using the code the example uses to
compare the installed printer, and check for sure what it is looking for...
"Melanie" <Melanie@.discussions.microsoft.com> wrote in message
news:BD4829E0-2BAE-4710-8617-BDD3DD08D21A@.microsoft.com...
> I'm trying to use the printer delivery extension sample that comes with
SQL Server Reporting Services. The problem that I am having is that when I
am going through to set up the subscription using a printer the printers
that I try to select come back with an error that states that the printers
are not installed. I have double checked the config file and they are indeed
added to the configuration as specified and I have double checked to make
sure that the printers are added to the server. In fact one printer is the
default for the report server that we are using. Can anyone please assist me
or point me in the right direction?
> TIA,
> Melanie|||I have this same problem. What I had to do is log onto the Report Server and launch the Report Manager desktop from there. I could then set up subscriptions to the printers, and they do print out correctly.
"Melanie" wrote:
> I'm trying to use the printer delivery extension sample that comes with SQL Server Reporting Services. The problem that I am having is that when I am going through to set up the subscription using a printer the printers that I try to select come back with an error that states that the printers are not installed. I have double checked the config file and they are indeed added to the configuration as specified and I have double checked to make sure that the printers are added to the server. In fact one printer is the default for the report server that we are using. Can anyone please assist me or point me in the right direction?
> TIA,
> Melanie
TIA,
MelanieHi Melanie,
Just take note that the code that checks if the printer is installed is case
sensitive. write a simple program using the code the example uses to
compare the installed printer, and check for sure what it is looking for...
"Melanie" <Melanie@.discussions.microsoft.com> wrote in message
news:BD4829E0-2BAE-4710-8617-BDD3DD08D21A@.microsoft.com...
> I'm trying to use the printer delivery extension sample that comes with
SQL Server Reporting Services. The problem that I am having is that when I
am going through to set up the subscription using a printer the printers
that I try to select come back with an error that states that the printers
are not installed. I have double checked the config file and they are indeed
added to the configuration as specified and I have double checked to make
sure that the printers are added to the server. In fact one printer is the
default for the report server that we are using. Can anyone please assist me
or point me in the right direction?
> TIA,
> Melanie|||I have this same problem. What I had to do is log onto the Report Server and launch the Report Manager desktop from there. I could then set up subscriptions to the printers, and they do print out correctly.
"Melanie" wrote:
> I'm trying to use the printer delivery extension sample that comes with SQL Server Reporting Services. The problem that I am having is that when I am going through to set up the subscription using a printer the printers that I try to select come back with an error that states that the printers are not installed. I have double checked the config file and they are indeed added to the configuration as specified and I have double checked to make sure that the printers are added to the server. In fact one printer is the default for the report server that we are using. Can anyone please assist me or point me in the right direction?
> TIA,
> Melanie
Sample Printer Delivery Extension
I am trying to test the Sample Printer Delivery EXtension. I have built the
assembly and moved it into the RM and RS bin folders.
My RSReportServer.config file addition looks like this:
<Extension Name="Printer Delivery Sample"
Type="Microsoft.Samples.ReportingServices.PrinterDeliverySample.PrinterDeliveryProvider,Microsoft.Samples.ReportingServices.PrinterDeliverySample"
Visible="True">
<Configuration>
<Printers>
<Printer>\\BUSINESS01\KILLINGTON</Printer>
</Printers>
</Configuration>
</Extension>
My RSWebApplication.config file entry looks like this:
<Extension Name="Printer Delivery Sample"
Type="Microsoft.Samples.ReportingServices.PrinterDeliverySample.PrinterDeliveryUIProvider,Microsoft.Samples.ReportingServices.PrinterDeliverySample"/>
I have restarted the ReportServer service. When I go to report and create a
new subscription, I still see only the Email and FileShare delivery options.
What is missing?
Steve BurtHi,
did you have any luck resolving this? Having the same problem. Seem to
have the correct config settings and security settings but no printer option
displays.
AJ
"Steve Burt" wrote:
> I am trying to test the Sample Printer Delivery EXtension. I have built the
> assembly and moved it into the RM and RS bin folders.
> My RSReportServer.config file addition looks like this:
> <Extension Name="Printer Delivery Sample"
> Type="Microsoft.Samples.ReportingServices.PrinterDeliverySample.PrinterDeliveryProvider,Microsoft.Samples.ReportingServices.PrinterDeliverySample"
> Visible="True">
> <Configuration>
> <Printers>
> <Printer>\\BUSINESS01\KILLINGTON</Printer>
> </Printers>
> </Configuration>
> </Extension>
> My RSWebApplication.config file entry looks like this:
> <Extension Name="Printer Delivery Sample"
> Type="Microsoft.Samples.ReportingServices.PrinterDeliverySample.PrinterDeliveryUIProvider,Microsoft.Samples.ReportingServices.PrinterDeliverySample"/>
> I have restarted the ReportServer service. When I go to report and create a
> new subscription, I still see only the Email and FileShare delivery options.
> What is missing?
> Steve Burt|||I did get the printer to display by rechecking the various config settings.
I now get an exception when I try to create a subscription to the report. It
says that the printer is not available. I thought this might mean the
service account under which the ReportServer is running didn't have the
specific printer configured (this is a network printer, not directly
attached). I checked this and the printer is configured for the service
account.
So no joy thus far.
"AJ" wrote:
> Hi,
> did you have any luck resolving this? Having the same problem. Seem to
> have the correct config settings and security settings but no printer option
> displays.
> AJ
>
> "Steve Burt" wrote:
> > I am trying to test the Sample Printer Delivery EXtension. I have built the
> > assembly and moved it into the RM and RS bin folders.
> >
> > My RSReportServer.config file addition looks like this:
> > <Extension Name="Printer Delivery Sample"
> > Type="Microsoft.Samples.ReportingServices.PrinterDeliverySample.PrinterDeliveryProvider,Microsoft.Samples.ReportingServices.PrinterDeliverySample"
> > Visible="True">
> > <Configuration>
> > <Printers>
> > <Printer>\\BUSINESS01\KILLINGTON</Printer>
> > </Printers>
> > </Configuration>
> > </Extension>
> >
> > My RSWebApplication.config file entry looks like this:
> > <Extension Name="Printer Delivery Sample"
> > Type="Microsoft.Samples.ReportingServices.PrinterDeliverySample.PrinterDeliveryUIProvider,Microsoft.Samples.ReportingServices.PrinterDeliverySample"/>
> >
> > I have restarted the ReportServer service. When I go to report and create a
> > new subscription, I still see only the Email and FileShare delivery options.
> >
> > What is missing?
> > Steve Burt|||Hi Steve,
I think you have to change the service account to an account that's part of
the domain, so that it is possible to see and interact with the other
printers. I also have the same problem. If I was you, I'd try to maken a
"reporting" user and let this user be the reporting service account (be
careful with permissions!)
Hope it helps. Otherwise, there are several other topics concerning this
subject somwhere in the newgroup.
Kind regards, Koen
"Steve Burt" wrote:
> I did get the printer to display by rechecking the various config settings.
> I now get an exception when I try to create a subscription to the report. It
> says that the printer is not available. I thought this might mean the
> service account under which the ReportServer is running didn't have the
> specific printer configured (this is a network printer, not directly
> attached). I checked this and the printer is configured for the service
> account.
> So no joy thus far.
> "AJ" wrote:
> > Hi,
> > did you have any luck resolving this? Having the same problem. Seem to
> > have the correct config settings and security settings but no printer option
> > displays.
> > AJ
> >
> >
> > "Steve Burt" wrote:
> >
> > > I am trying to test the Sample Printer Delivery EXtension. I have built the
> > > assembly and moved it into the RM and RS bin folders.
> > >
> > > My RSReportServer.config file addition looks like this:
> > > <Extension Name="Printer Delivery Sample"
> > > Type="Microsoft.Samples.ReportingServices.PrinterDeliverySample.PrinterDeliveryProvider,Microsoft.Samples.ReportingServices.PrinterDeliverySample"
> > > Visible="True">
> > > <Configuration>
> > > <Printers>
> > > <Printer>\\BUSINESS01\KILLINGTON</Printer>
> > > </Printers>
> > > </Configuration>
> > > </Extension>
> > >
> > > My RSWebApplication.config file entry looks like this:
> > > <Extension Name="Printer Delivery Sample"
> > > Type="Microsoft.Samples.ReportingServices.PrinterDeliverySample.PrinterDeliveryUIProvider,Microsoft.Samples.ReportingServices.PrinterDeliverySample"/>
> > >
> > > I have restarted the ReportServer service. When I go to report and create a
> > > new subscription, I still see only the Email and FileShare delivery options.
> > >
> > > What is missing?
> > > Steve Burt
assembly and moved it into the RM and RS bin folders.
My RSReportServer.config file addition looks like this:
<Extension Name="Printer Delivery Sample"
Type="Microsoft.Samples.ReportingServices.PrinterDeliverySample.PrinterDeliveryProvider,Microsoft.Samples.ReportingServices.PrinterDeliverySample"
Visible="True">
<Configuration>
<Printers>
<Printer>\\BUSINESS01\KILLINGTON</Printer>
</Printers>
</Configuration>
</Extension>
My RSWebApplication.config file entry looks like this:
<Extension Name="Printer Delivery Sample"
Type="Microsoft.Samples.ReportingServices.PrinterDeliverySample.PrinterDeliveryUIProvider,Microsoft.Samples.ReportingServices.PrinterDeliverySample"/>
I have restarted the ReportServer service. When I go to report and create a
new subscription, I still see only the Email and FileShare delivery options.
What is missing?
Steve BurtHi,
did you have any luck resolving this? Having the same problem. Seem to
have the correct config settings and security settings but no printer option
displays.
AJ
"Steve Burt" wrote:
> I am trying to test the Sample Printer Delivery EXtension. I have built the
> assembly and moved it into the RM and RS bin folders.
> My RSReportServer.config file addition looks like this:
> <Extension Name="Printer Delivery Sample"
> Type="Microsoft.Samples.ReportingServices.PrinterDeliverySample.PrinterDeliveryProvider,Microsoft.Samples.ReportingServices.PrinterDeliverySample"
> Visible="True">
> <Configuration>
> <Printers>
> <Printer>\\BUSINESS01\KILLINGTON</Printer>
> </Printers>
> </Configuration>
> </Extension>
> My RSWebApplication.config file entry looks like this:
> <Extension Name="Printer Delivery Sample"
> Type="Microsoft.Samples.ReportingServices.PrinterDeliverySample.PrinterDeliveryUIProvider,Microsoft.Samples.ReportingServices.PrinterDeliverySample"/>
> I have restarted the ReportServer service. When I go to report and create a
> new subscription, I still see only the Email and FileShare delivery options.
> What is missing?
> Steve Burt|||I did get the printer to display by rechecking the various config settings.
I now get an exception when I try to create a subscription to the report. It
says that the printer is not available. I thought this might mean the
service account under which the ReportServer is running didn't have the
specific printer configured (this is a network printer, not directly
attached). I checked this and the printer is configured for the service
account.
So no joy thus far.
"AJ" wrote:
> Hi,
> did you have any luck resolving this? Having the same problem. Seem to
> have the correct config settings and security settings but no printer option
> displays.
> AJ
>
> "Steve Burt" wrote:
> > I am trying to test the Sample Printer Delivery EXtension. I have built the
> > assembly and moved it into the RM and RS bin folders.
> >
> > My RSReportServer.config file addition looks like this:
> > <Extension Name="Printer Delivery Sample"
> > Type="Microsoft.Samples.ReportingServices.PrinterDeliverySample.PrinterDeliveryProvider,Microsoft.Samples.ReportingServices.PrinterDeliverySample"
> > Visible="True">
> > <Configuration>
> > <Printers>
> > <Printer>\\BUSINESS01\KILLINGTON</Printer>
> > </Printers>
> > </Configuration>
> > </Extension>
> >
> > My RSWebApplication.config file entry looks like this:
> > <Extension Name="Printer Delivery Sample"
> > Type="Microsoft.Samples.ReportingServices.PrinterDeliverySample.PrinterDeliveryUIProvider,Microsoft.Samples.ReportingServices.PrinterDeliverySample"/>
> >
> > I have restarted the ReportServer service. When I go to report and create a
> > new subscription, I still see only the Email and FileShare delivery options.
> >
> > What is missing?
> > Steve Burt|||Hi Steve,
I think you have to change the service account to an account that's part of
the domain, so that it is possible to see and interact with the other
printers. I also have the same problem. If I was you, I'd try to maken a
"reporting" user and let this user be the reporting service account (be
careful with permissions!)
Hope it helps. Otherwise, there are several other topics concerning this
subject somwhere in the newgroup.
Kind regards, Koen
"Steve Burt" wrote:
> I did get the printer to display by rechecking the various config settings.
> I now get an exception when I try to create a subscription to the report. It
> says that the printer is not available. I thought this might mean the
> service account under which the ReportServer is running didn't have the
> specific printer configured (this is a network printer, not directly
> attached). I checked this and the printer is configured for the service
> account.
> So no joy thus far.
> "AJ" wrote:
> > Hi,
> > did you have any luck resolving this? Having the same problem. Seem to
> > have the correct config settings and security settings but no printer option
> > displays.
> > AJ
> >
> >
> > "Steve Burt" wrote:
> >
> > > I am trying to test the Sample Printer Delivery EXtension. I have built the
> > > assembly and moved it into the RM and RS bin folders.
> > >
> > > My RSReportServer.config file addition looks like this:
> > > <Extension Name="Printer Delivery Sample"
> > > Type="Microsoft.Samples.ReportingServices.PrinterDeliverySample.PrinterDeliveryProvider,Microsoft.Samples.ReportingServices.PrinterDeliverySample"
> > > Visible="True">
> > > <Configuration>
> > > <Printers>
> > > <Printer>\\BUSINESS01\KILLINGTON</Printer>
> > > </Printers>
> > > </Configuration>
> > > </Extension>
> > >
> > > My RSWebApplication.config file entry looks like this:
> > > <Extension Name="Printer Delivery Sample"
> > > Type="Microsoft.Samples.ReportingServices.PrinterDeliverySample.PrinterDeliveryUIProvider,Microsoft.Samples.ReportingServices.PrinterDeliverySample"/>
> > >
> > > I have restarted the ReportServer service. When I go to report and create a
> > > new subscription, I still see only the Email and FileShare delivery options.
> > >
> > > What is missing?
> > > Steve Burt
Subscribe to:
Posts (Atom)