21 03 2013
If you’re doing development against PerformancePoint Services API, whether in a custom ASP.NET site, a Console Application, make sure you have the Bpm configSection within your web.config (or App.config). You want to add the following configSection to your config file:
1 2 3 4 5 |
<configSections> <sectionGroup name="Bpm"> <section name="FCODaoProviders" type="System.Configuration.DictionarySectionHandler" /> </sectionGroup> </configSections> |
And you also want to include this under the root element of your […]