iis 8 - Crystal report not working in iis 8 -
my application developed in visual studio 2010 windows8. study working fine when using visual studio development server. not working in iis server. tried solutions pasting aspnet_client folder app path,also adding next in web.config file
<configsections> <sectiongroup name="businessobjects"> <sectiongroup name="crystalreports"> <section name="rptbuildprovider" type="crystaldecisions.shared.rptbuildproviderhandler, crystaldecisions.shared, version=13.0.2000.0, culture=neutral, publickeytoken=692fbea5521e1304, custom=null" /> <section name="crystalreportviewer" type="system.configuration.namevaluesectionhandler" /> </sectiongroup> </sectiongroup> </configsections> <businessobjects> <crystalreports> <rptbuildprovider> <add embedrptinresource="true" /> </rptbuildprovider> <crystalreportviewer> <add key="resourceuri" value="/crystalreportviewers13" /> </crystalreportviewer> </crystalreports> </businessobjects>
stil not working. please help .thanks in advance.
make sure path /aspnet_client/
resolves in url, after copied directory application directory. if aspnet_client url resolves, such http://servername/yourapplication/aspnet_client/
create sure entry in web.config matches.
instead of:
<add key="resourceuri" value="/crystalreportviewers13" />
change to:
<add key="resourceuri" value="~/yourapplication/aspnet_client/crystalreportviewers13" />
but if url resolves, don't need it.
crystal-reports iis-8
No comments:
Post a Comment