Произошло необработанное исключение в вашем приложении - служба отчетов SSRS 2017 - PullRequest
0 голосов
/ 10 мая 2019

При попытке настроить службу отчетов SSRS у меня появляется ошибка ниже, сразу после подключения к серверу отчетов. Я не могу продолжить настройку сервера отчетов.

            See the end of this message for details on invoking 
            just-in-time (JIT) debugging instead of this dialog box.

            ************** Exception Text **************
            Microsoft.ReportingServices.WmiProvider.WMIProviderException: Report Server WMI Provider error:

            Invalid namespace  ---> System.Management.ManagementException: Invalid namespace 
               at System.Management.ThreadDispatch.Start()
               at System.Management.ManagementScope.Initialize()
               at Microsoft.ReportingServices.WmiProvider.WmiProviders.GetInstance(String machineName, String instanceName, RSWmiNamespaces rsNamespace, ConnectionOptions connOptions, ObjectGetOptions getOptions, String version)
               --- End of inner exception stack trace ---
               at Microsoft.ReportingServices.WmiProvider.WmiProviders.GetInstance(String machineName, String instanceName, RSWmiNamespaces rsNamespace, ConnectionOptions connOptions, ObjectGetOptions getOptions, String version)
               at Microsoft.ReportingServices.WmiProvider.WmiProviders.GetReportServerAdmin(String machineName, String instanceName, ConnectionOptions connOptions, ObjectGetOptions getOptions, String version)
               at Microsoft.ReportingServices.WmiProvider.WmiProviders.GetReportServerAdmin(String machineName, String instanceName, ConnectionOptions connOptions, ObjectGetOptions getOptions)
               at Microsoft.ReportingServices.WmiProvider.WmiProviders.GetReportServerAdmin(String machineName, String instanceName)
               at ReportServicesConfigUI.WMIProvider.RSInstances.GetReportServerAdmin(RSInstance rsinstance)
               at ReportServicesConfigUI.ConfigurationManager.ChangeMachine()
               at ReportServicesConfigUI.ConfigurationManager.LaunchDialog()
               at ReportServicesConfigUI.ConfigurationManager.OnActivated(EventArgs e)
               at System.Windows.Forms.Form.set_Active(Boolean value)
               at System.Windows.Forms.Form.WmActivate(Message& m)
               at System.Windows.Forms.Form.WndProc(Message& m)
               at System.Windows.Forms.Control.ControlNativeWindow.OnMessage(Message& m)
               at System.Windows.Forms.Control.ControlNativeWindow.WndProc(Message& m)
               at System.Windows.Forms.NativeWindow.Callback(IntPtr hWnd, Int32 msg, IntPtr wparam, IntPtr lparam)

  ************** Loaded Assemblies **************
            mscorlib
                Assembly Version: 4.0.0.0
                Win32 Version: 4.6.1086.0 built by: NETFXREL4STAGE
                CodeBase: file:///C:/Windows/Microsoft.NET/Framework/v4.0.30319/mscorlib.dll
            ----------------------------------------
            RSConfigTool
                Assembly Version: 13.0.0.0
                Win32 Version: 13.0.1601.5
                CodeBase: file:///C:/Program%20Files%20(x86)/Microsoft%20SQL%20Server/130/Tools/Binn/RSConfigTool.exe
            ----------------------------------------
            System.Windows.Forms
                Assembly Version: 4.0.0.0
                Win32 Version: 4.6.1038.0 built by: NETFXREL2
                CodeBase: file:///C:/windows/Microsoft.Net/assembly/GAC_MSIL/System.Windows.Forms/v4.0_4.0.0.0__b77a5c561934e089/System.Windows.Forms.dll
            ----------------------------------------
            System
                Assembly Version: 4.0.0.0
                Win32 Version: 4.6.1081.0 built by: NETFXREL3STAGE
                CodeBase: file:///C:/windows/Microsoft.Net/assembly/GAC_MSIL/System/v4.0_4.0.0.0__b77a5c561934e089/System.dll

----------------------------------------

            System.Drawing
                Assembly Version: 4.0.0.0
                Win32 Version: 4.6.1078.0 built by: NETFXREL3STAGE
                CodeBase: file:///C:/windows/Microsoft.Net/assembly/GAC_MSIL/System.Drawing/v4.0_4.0.0.0__b03f5f7f11d50a3a/System.Drawing.dll
            ----------------------------------------
            System.Configuration
                Assembly Version: 4.0.0.0
                Win32 Version: 4.6.1038.0 built by: NETFXREL2
                CodeBase: file:///C:/windows/Microsoft.Net/assembly/GAC_MSIL/System.Configuration/v4.0_4.0.0.0__b03f5f7f11d50a3a/System.Configuration.dll
            ----------------------------------------
            System.Core
                Assembly Version: 4.0.0.0
                Win32 Version: 4.6.1088.0 built by: NETFXREL4STAGE
                CodeBase: file:///C:/windows/Microsoft.Net/assembly/GAC_MSIL/System.Core/v4.0_4.0.0.0__b77a5c561934e089/System.Core.dll
            ----------------------------------------
            System.Xml
                Assembly Version: 4.0.0.0
                Win32 Version: 4.6.1064.2 built by: NETFXREL3STAGE
                CodeBase: file:///C:/windows/Microsoft.Net/assembly/GAC_MSIL/System.Xml/v4.0_4.0.0.0__b77a5c561934e089/System.Xml.dll
            ----------------------------------------
            System.Management
                Assembly Version: 4.0.0.0
                Win32 Version: 4.6.1038.0 built by: NETFXREL2
                CodeBase: file:///C:/windows/Microsoft.Net/assembly/GAC_MSIL/System.Management/v4.0_4.0.0.0__b03f5f7f11d50a3a/System.Management.dll
            ----------------------------------------

************** Отладка JIT ************** Чтобы включить отладку JIT в режиме реального времени, файл .config для этого приложения или компьютера (machine.config)должно иметь значение jitDebugging, установленное в разделе system.windows.forms.Приложение также должно быть скомпилировано с включенной отладкой.

            For example:

            <configuration>
                <system.windows.forms jitDebugging="true" />
            </configuration>

            When JIT debugging is enabled, any unhandled exception
            will be sent to the JIT debugger registered on the computer
            rather than be handled by this dialog box.

Когда я пытаюсь найти machine.confi, я не могу этого получить.Это я что-то не так делаю?На ПК я пытаюсь, у меня нет доступа администратора, так что это связано с доступом администратора?В чем проблема?У кого-нибудь есть такая же проблема?Как я могу решить эту проблему?

...