|
Question : RSReportserver.config file question
|
|
Hi,
I’m using Sql Server 2000 Reporting Services. I want to create a new subscription and run that report on each business day. But I don’t have that option, because I installed without SMTP while installing. Now I want to make changes in rsreportserver.config file. But I don’t see that file in C:\Program Files\Microsoft SQL Server\MSSQL\Reporting Services\ReportServer. How can I install config file or can I run that file in command prompt.
Thanks,
|
|
Answer : RSReportserver.config file question
|
|
As Suku states, your rsreportserver.config should be under that directory. Few ideas...
- Check that your windows explorer is showing hidden and system files. - Do a search on the C drive of the report server for RSREPORTSERVER.CONFIG
Here's the XML code which you place under <Extensions> <Delivery> :
<Extension Name="Report Server Email" Type="Microsoft.ReportingServices.EmailDeliveryProvider.EmailProvider,ReportingServicesEmailDeliveryProvider"> <MaxRetries>3</MaxRetries> <SecondsBeforeRetry>900</SecondsBeforeRetry> <Configuration> <RSEmailDPConfiguration> <SMTPServer>SERVERNAME</SMTPServer> <SMTPServerPort></SMTPServerPort> <SMTPAccountName>ACCOUNTNAME</SMTPAccountName> <SMTPConnectionTimeout></SMTPConnectionTimeout> <SMTPServerPickupDirectory></SMTPServerPickupDirectory> <SMTPUseSSL></SMTPUseSSL> <SendUsing></SendUsing> <SMTPAuthenticate></SMTPAuthenticate> <From>[email protected]</From> <EmbeddedRenderFormats> <RenderingExtension>MHTML</RenderingExtension> </EmbeddedRenderFormats> <PrivilegedUserRenderFormats></PrivilegedUserRenderFormats> <ExcludedRenderFormats> <RenderingExtension>HTMLOWC</RenderingExtension> <RenderingExtension>NULL</RenderingExtension> </ExcludedRenderFormats> <SendEmailToUserAlias></SendEmailToUserAlias> <DefaultHostName></DefaultHostName> <PermittedHosts></PermittedHosts> </RSEmailDPConfiguration> </Configuration> </Extension>
|
|
|
|