Requested registry access is not allowed when opening Infopath Forms on Sharepoint 2013

Hello Technet Community.
I hope this will help anybody out there that experienced this problem after patching Sharepoint 2013.
I have a distributed 3-tier Sharepoint 2013 environment. All of a sudden, after the last round of patched released on 7-Jul-2014, opening Infopath forms would throw a "something went wrong" error.
Looking at the ULS logs, you would see the error "Requested registry access is not allowed.".
I have looked at tons of posts on different blogs, and all pointed out that you need to grant "read" permissions to the application pool user (in my case a service account in AD) to the registry key (and subkeys):
HLKM/Software/Office Server/15.0
That indeed works, but it is not the proper way to do it. You should grant "read" permissions to this local group:
WSS_WPG
And special permissions to this local group:
WSS_ADMIN_WPG
Here is a snapshot of the special permissions needed
By the way, the WSS_PWG local group contains the app pool service account.
I do not know why patching Sharepoint removed these permissions from the registry keys, but oh well...
Anyway, Sharepoint is now happy and Infopath forms work as expected.
Claudio

Check if your service account or infopath service account has access to server and specially registry
http://blogs.technet.com/b/spsforum/archive/2011/11/02/quick-solution-5-requested-registry-access-is-not-allowed.aspx
To solve the issue, please follow these steps:
Use the Process Monitor to monitor the registry, once you get the following ACCESS DENIED message(You can filter the result with “Result contains Access Denied”):  
Date & Time:      <date time>
Event Class:        Registry
Operation: RegOpenKey
Result:  ACCESS DENIED
Path:     HKLM\SOFTWARE\Microsoft\Office Server\14.0
TID:        2020
Duration:             0.0000297
Desired Access:                Read
Open Registry Editor (Start > Run, type regedit)
Open key: HKLM\SOFTWARE\Microsoft\Office Server\14.0(got from Process Monitor from step 1)
Assign the SharePoint Timer Service account the Read permission to this key
One can open registry using regedit command. In Registery editor go to 
HKEY_LOCAL_MACHINE\Software\Microsoft\Shared Tools\15\Secure\FarmAdmin
Check central  administration app pool Identity  have permission on FarmAdmin. Permission can be check on right clicking FarmAdmin --> Permissions.
If this helped you resolve your issue, please mark it Answered

Similar Messages

  • The type initializer for 'System.Data.SqlClient.SqlConnection' threw an exception. InnerException: Requested registry access is not allowed.

    I have read some of the other posts for people that got this error, but none seem to apply to me.
    My program has been working for weeks.  I made some minor changes, and started getting the error (full details below).
    I did a TFS "undo pending changes" and still getting the same error, even after logging off.  The one odd thing is that I did change my Windows password this week. The connection string is using a SQL user id and password that has no issues.
    I'm an Admin own my own box (running WIn XP SP3).  I even tried "Run as Admin" on Visual Studio.
    I'm doing a Debug-Start, running a Console-Test-Program that calls a WCF service, which on local machine is hosted by "ASP.NET Development Server".
    We have two other developers, one has the same problem, one does not.  In theory, we have all done "get latest" and are running the same code.
    The SQL Connection is related to a trace database; we are using this library http://ukadcdiagnostics.codeplex.com which has worked fine for months.
    When I do "Start Run" in Visual Studio, I get this error:
    {"The type initializer for 'System.Data.SqlClient.SqlConnection' threw an exception. "}
    with InnerException: {"The type initializer for 'System.Data.SqlClient.SqlConnectionFactory' threw an exception."}
    and it has InnerException: {"Requested registry access is not allowed. "}
    Outmost StackTrace:
       at System.Data.SqlClient.SqlConnection..ctor()
       at System.Data.SqlClient.SqlConnection..ctor(String connectionString)
       at FRB.Diagnostics.Listeners.SqlDataAccessCommand..ctor(String connectionString, String commandText, CommandType commandType)
       at FRB.Diagnostics.Listeners.SqlDataAccessAdapter.CreateCommand()
       at FRB.Diagnostics.Listeners.SqlTraceListener.TraceEventCore(TraceEventCache eventCache, String source, TraceEventType eventType, Int32 id, String message)
       at FRB.Diagnostics.Listeners.CustomTraceListener.FilterTraceEventCore(TraceEventCache eventCache, String source, TraceEventType eventType, Int32 id, String message)
       at FRB.Diagnostics.Listeners.CustomTraceListener.TraceEvent(TraceEventCache eventCache, String source, TraceEventType eventType, Int32 id, String format, Object[] args)
       at System.Diagnostics.TraceSource.TraceEvent(TraceEventType eventType, Int32 id, String format, Object[] args)
       at System.Diagnostics.TraceSource.TraceInformation(String message)
       at FRB.EC.AdminService.AdminService.TestHelloWorldWithTrace(String name)
       at SyncInvokeTestHelloWorldWithTrace(Object , Object[] , Object[] )
       at System.ServiceModel.Dispatcher.SyncMethodInvoker.Invoke(Object instance, Object[] inputs, Object[]& outputs)
       at System.ServiceModel.Dispatcher.DispatchOperationRuntime.InvokeBegin(MessageRpc& rpc)
    Second Inner StackTrace:
       at System.Data.SqlClient.SqlConnection..cctor()
    Third Inner StackTrace:
          at System.Data.SqlClient.SqlConnectionFactory..cctor()
    When I do "Run as Admin", I get this error:
    {"Could not load file or assembly 'FRB.EFDataAccess, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null' or one of its dependencies. Access is denied. "}
    Server stack trace:
       at System.ServiceModel.Channels.ServiceChannel.ThrowIfFaultUnderstood(Message reply, MessageFault fault, String action, MessageVersion version, FaultConverter faultConverter)
       at System.ServiceModel.Channels.ServiceChannel.HandleReply(ProxyOperationRuntime operation, ProxyRpc& rpc)
       at System.ServiceModel.Channels.ServiceChannel.Call(String action, Boolean oneway, ProxyOperationRuntime operation, Object[] ins, Object[] outs, TimeSpan timeout)
       at System.ServiceModel.Channels.ServiceChannelProxy.InvokeService(IMethodCallMessage methodCall, ProxyOperationRuntime operation)
       at System.ServiceModel.Channels.ServiceChannelProxy.Invoke(IMessage message)
    Exception rethrown at [0]:
       at System.Runtime.Remoting.Proxies.RealProxy.HandleReturnMessage(IMessage reqMsg, IMessage retMsg)
       at System.Runtime.Remoting.Proxies.RealProxy.PrivateInvoke(MessageData& msgData, Int32 type)
       at FRB.EC.AdminService.ConsoleTester.svcRef.IAdminService.GetDispositionStatusTypeList()
       at FRB.EC.AdminService.ConsoleTester.svcRef.AdminServiceClient.GetDispositionStatusTypeList() in C:\SourceEagleConnect\EagleConnect\Dev\WCFServices\FRB.EC.AdminService.ConsoleTester\Service References\svcRef\Reference.cs:line 2459
       at FRB.EC.AdminService.ConsoleTester.ConsoleProgram.GetDispositionStatusTypeList() in C:\SourceEagleConnect\EagleConnect\Dev\WCFServices\FRB.EC.AdminService.ConsoleTester\ConsoleProgram.cs:line 565
       at FRB.EC.AdminService.ConsoleTester.ConsoleProgram.ExecuteNewRelease103QueryMethods() in C:\SourceEagleConnect\EagleConnect\Dev\WCFServices\FRB.EC.AdminService.ConsoleTester\ConsoleProgram.cs:line 189
       at FRB.EC.AdminService.ConsoleTester.ConsoleProgram.Main(String[] args) in C:\SourceEagleConnect\EagleConnect\Dev\WCFServices\FRB.EC.AdminService.ConsoleTester\ConsoleProgram.cs:line 76
       at System.AppDomain._nExecuteAssembly(RuntimeAssembly assembly, String[] args)
       at System.AppDomain.ExecuteAssembly(String assemblyFile, Evidence assemblySecurity, String[] args)
       at Microsoft.VisualStudio.HostingProcess.HostProc.RunUsersAssembly()
       at System.Threading.ThreadHelper.ThreadStart_Context(Object state)
       at System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state, Boolean ignoreSyncCtx)
       at System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state)
       at System.Threading.ThreadHelper.ThreadStart()
    I am also posting the web.config/app.config, but I would rather not focus on that since there were absolutely no changes to it between the time it was working and the time it began failing. 
    Client app.config
    <?xml version="1.0" encoding="utf-8" ?>
    <configuration>
      <connectionStrings>
      </connectionStrings>
      <system.serviceModel>
        <behaviors>
          <serviceBehaviors>
            <behavior name="ServiceBehavior">
              <serviceMetadata httpGetEnabled="true"/>
              <serviceDebug includeExceptionDetailInFaults="false"/>
              <serviceAuthorization impersonateCallerForAllOperations="true"/>
            </behavior>
          </serviceBehaviors>
          <endpointBehaviors>
            <behavior name="FRB.AllowImpersonate">
              <clientCredentials>
                <windows allowedImpersonationLevel="Impersonation"/>
              </clientCredentials>
            </behavior>
          </endpointBehaviors>
        </behaviors>
        <bindings>
          <wsHttpBinding>
            <binding name="WSHttpBinding_IAdminService" closeTimeout="00:01:00"
              openTimeout="00:01:00" receiveTimeout="00:10:00" sendTimeout="00:01:00"
              bypassProxyOnLocal="false" transactionFlow="false" hostNameComparisonMode="StrongWildcard"
              maxBufferPoolSize="524288" maxReceivedMessageSize="5565536"
              messageEncoding="Text" textEncoding="utf-8" useDefaultWebProxy="true"
              allowCookies="false">
              <readerQuotas maxDepth="32" maxStringContentLength="8192" maxArrayLength="16384"
                maxBytesPerRead="4096" maxNameTableCharCount="16384" />
              <reliableSession ordered="true" inactivityTimeout="00:10:00"
                enabled="false" />
              <security mode="Message">
                <transport clientCredentialType="Windows" proxyCredentialType="None"
                  realm="" />
                <message clientCredentialType="Windows" negotiateServiceCredential="true"
                  algorithmSuite="Default" />
              </security>
            </binding>
          </wsHttpBinding>
        </bindings>
            <client>
                  <endpoint address="http://localhost:3588/AdminService.svc" binding="wsHttpBinding"
                        bindingConfiguration="WSHttpBinding_IAdminService" contract="svcRef.IAdminService"
                        name="WSHttpBinding_IAdminService">
                        <identity>
                              <dns value="localhost" />
                        </identity>
                  </endpoint>
            </client>
        </system.serviceModel>
    </configuration>
    web.config of WCF service:
      <?xml version="1.0"?>
    <configuration>
        <configSections>
        <section name="FRB.Diagnostics" type="FRB.Diagnostics.Configuration.UkadcDiagnosticsSection, FRB.Diagnostics"/>
      </configSections>
        <appSettings>
           <!-- whatever goes here -->
        </appSettings>
        <!-- connection string section -->
      <connectionStrings>
        <add name="log" connectionString="Data Source=myserver;Initial Catalog=ECWCFLOG_SharedDev;User ID=myuser;Password=mypass;MultipleActiveResultSets=True" providerName="System.Data.SqlClient"/>
        <add name="DBConn" connectionString="Data Source=myserver;Initial Catalog=ECData_SharedDev;User ID=myuser;Password=mypass;MultipleActiveResultSets=True" providerName="System.Data.SqlClient"/>
        <add name="EagleConnectEntities" connectionString="metadata=res://*/EagleConnect.csdl|res://*/EagleConnect.ssdl|res://*/EagleConnect.msl;provider=System.Data.SqlClient;provider connection string=&quot;Data Source=myserver;Initial
    Catalog=ECData_SharedDev;User ID=myuser;Password=mypass;MultipleActiveResultSets=True&quot;" providerName="System.Data.EntityClient"/>
      </connectionStrings>
        <!-- FRB.Diagnostics logging section -->
        <FRB.Diagnostics>
            <sqlTraceListeners>
                <sqlTraceListener name="sqlTraceListenerSettings"
                            connectionStringName="log"
                            commandText="INSERT INTO LogStore VALUES(@Source, @ActivityId, @ProcessId, @ThreadId, @EventType, @Message, @Timestamp)"
                            commandType="Text">
                    <parameters>
                        <parameter name="@Source" propertyToken="{Source}"/>
                        <parameter name="@ActivityId" propertyToken="{ActivityId}"/>
                        <parameter name="@ProcessId" propertyToken="{ProcessId}"/>
                        <parameter name="@ThreadId" propertyToken="{ThreadId}"/>
                        <parameter name="@EventType" propertyToken="{EventType}" callToString="true"/>
                        <parameter name="@Message" propertyToken="{Message}"/>
                        <parameter name="@Timestamp" propertyToken="{DateTime}"/>
              <!-- <parameter name="@UserId" propertyToken="{WindowsIdentity}"/> -->
            </parameters>
                </sqlTraceListener>
            </sqlTraceListeners>
            <smtpTraceListeners>
                <smtpTraceListener name="smtpTraceListenerSettings"
                             host="vssmtp"
                             port="25"
                             from="[email protected]"
                             to="[email protected]"
                             subject="AdminService Logging Event: {EventType}, {MachineName}"
                             body="{Message}&#xA;=======&#xA;Process={ProcessId},&#xA;Thread={ThreadId},&#xA;ActivityId={ActivityId}"/>
            </smtpTraceListeners>
        </FRB.Diagnostics>
        <!-- System.Diagnostics logging section -->
        <system.diagnostics>
            <sources>
                <source name="FRB.EC.AdminService" switchValue="All">
                    <listeners>
                        <clear/>
                        <add name="ods"/>
                        <add name="smtp"/>
                        <add name="sql"/>
                    </listeners>
                </source>
                <source name="System.ServiceModel" switchValue="Off" propagateActivity="true">
                    <listeners>
                        <add name="ignored" type="System.Diagnostics.ConsoleTraceListener"/>
                    </listeners>
                </source>
            </sources>
            <sharedListeners>
                <!-- OutputDebugStringTraceListener -->
                <add name="ods"
               type="FRB.Diagnostics.Listeners.OutputDebugStringTraceListener, FRB.Diagnostics"
               initializeData="{ActivityId}|{EventType}: {Message} - {DateTime}, Process={ProcessId}, Thread={ThreadId}"/>
                <!-- SqlTraceListener -->
                <add name="sql"
               type="FRB.Diagnostics.Listeners.SqlTraceListener, FRB.Diagnostics"
               initializeData="sqlTraceListenerSettings"
               traceOutputOptions="Timestamp"/>
                <!-- SmtpTraceListener -->
                <add name="smtp"
               type="FRB.Diagnostics.Listeners.SmtpTraceListener, FRB.Diagnostics"
               initializeData="smtpTraceListenerSettings">
                       <filter type="System.Diagnostics.EventTypeFilter"
                       initializeData="Error"/>
                </add>
            </sharedListeners>
            <trace autoflush="true"/>
        </system.diagnostics>
        <system.web>
        <compilation debug="true" targetFramework="4.0">
        </compilation>
            <roleManager enabled="true" defaultProvider="AspNetWindowsTokenRoleProvider"/>
        </system.web>
        <system.serviceModel>
            <services>
                <service name="FRB.EC.AdminService.AdminService"
                   behaviorConfiguration="FRB.EC.AdminService.AdminServiceBehavior">
                    <!-- Service Endpoints -->
                    <endpoint address="" binding="wsHttpBinding"
                      bindingConfiguration="wsHttpEndpointBinding"
                      contract="FRB.EC.AdminService.IAdminService">
                        <!--
                  Upon deployment, the following identity element should be removed or replaced to reflect the
                  identity under which the deployed service runs. 
                  If removed, WCF will infer an appropriate identity automatically.
              -->
                        <identity>
                            <dns value="localhost"/>
                        </identity>
                    </endpoint>
                    <endpoint address="mex" binding="mexHttpBinding" contract="IMetadataExchange"/>
                </service>
            </services>
            <bindings>
                <wsHttpBinding>
                    <binding name="wsHttpEndpointBinding"
                     maxBufferPoolSize="2147483647"
                     maxReceivedMessageSize="500000000">
                        <readerQuotas maxDepth="2147483647"
                            maxStringContentLength="2147483647"
                            maxArrayLength="2147483647"
                            maxBytesPerRead="2147483647"
                            maxNameTableCharCount="2147483647"/>
                        <security>
                            <message clientCredentialType="Windows"/>
                        </security>
                    </binding>
                </wsHttpBinding>
            </bindings>
            <behaviors>
                <serviceBehaviors>
                    <behavior name="FRB.EC.AdminService.AdminServiceBehavior">
                        <!-- To avoid disclosing metadata information, set the value below to false and
                   remove the metadata endpoint above before deployment -->
                        <serviceMetadata httpGetEnabled="true"/>
                        <!-- To receive exception details in faults for debugging purposes, set the value below to true. 
                   Set to false before deployment to avoid disclosing exception information -->
                        <serviceDebug includeExceptionDetailInFaults="true"/>
                        <serviceCredentials>
                        </serviceCredentials>
                        <!--<serviceAuthorization principalPermissionMode="UseAspNetRoles"
                    roleProviderName="AspNetWindowsTokenRoleProvider"/>-->
                        <serviceAuthorization principalPermissionMode="UseWindowsGroups"
                                    impersonateCallerForAllOperations="true"/>
                    </behavior>
                    <behavior name="FRB.EC.AdminService.IAdminServiceTransportBehavior">
                        <!-- To avoid disclosing metadata information, set the value below to false and
                   remove the metadata endpoint above before deployment -->
                        <serviceMetadata httpGetEnabled="true"/>
                        <!-- To receive exception details in faults for debugging purposes, set the value below to true. 
                   Set to false before deployment to avoid disclosing exception information -->
                        <serviceDebug includeExceptionDetailInFaults="false"/>
                        <serviceCredentials>
                            <clientCertificate>
                                <authentication certificateValidationMode="PeerTrust"/>
                                <!--<authentication certificateValidationMode="Custom" customCertificateValidatorType="DataFactionServices.FRBX509CertificateValidator"/>-->
                            </clientCertificate>
                            <serviceCertificate findValue="WCfServer"
                                    storeLocation="LocalMachine"
                                    storeName="My" x509FindType="FindBySubjectName"/>
                        </serviceCredentials>
                    </behavior>
                </serviceBehaviors>
            </behaviors>
            <serviceHostingEnvironment multipleSiteBindingsEnabled="true"/>
        </system.serviceModel>
        <system.webServer>
            <modules runAllManagedModulesForAllRequests="true"/>
        </system.webServer>
    </configuration>
    Thanks for any help.
    Neal

    I think I found it... this is sure a strange error for what is really happening.
    Apparently it had happened to me before, and fortuantely, I actually added the following comment:
                // Above is related to the WCFLOG SQL Diagnostics Trace 
                // If you get error here an inner exception "requested registry access is not allowed"
                // inside exception "type initializer for System.Data.SqlClient.SqlConnection"
                // then make sure you have impersonation enabled in your client.
                // See AdminConsole web.config or FRB.EC.AdminService.ConsoleTester.app.config for examples
    Now I think I will do a try catch and spit out the same text.
    Still testing to assure that this really was the issue.
          <endpointBehaviors>
            <behavior name="FRB.AllowImpersonate ">
              <clientCredentials>
                <windows allowedImpersonationLevel="Impersonation"/>
              </clientCredentials>
            </behavior>
          </endpointBehaviors>
    The line below in BOLD below is what somehow seemed to disappear from my app.config - probably due to a TFS human error - still checking that also:
            <client>
                  <endpoint address="http://localhost:4998/AdminService.svc"
                                  behaviorConfiguration="FRB.AllowImpersonate"
                                  binding="wsHttpBinding"
                                  bindingConfiguration="WSHttpBinding_IAdminService"
                                 contract="svcRef.IAdminService"
                            name="WSHttpBinding_IAdminService">
                        <identity>
                              <dns value="localhost" />
                        </identity>
                  </endpoint>
            </client>
    Here's how I "idiot-proofed" this error for now, to give an error that actually at least points to a solution:
            public SqlDataAccessCommand(string connectionString, string commandText, CommandType commandType)
                try
                    _connection = new SqlConnection(connectionString);
                    // Above is related to the WCFLOG SQL Diagnostics Trace  
                    // If you get error here an inner exception "requested registry access is not allowed"
                    // inside exception "type initializer for System.Data.SqlClient.SqlConnection"
                    // then make sure you have impersonation enabled in your client.
                    // See AdminConsole web.config or FRB.EC.AdminService.ConsoleTester.app.config for examples
                catch (Exception ex)
                    if (ex.ToString().Contains("The type initializer for"))
                    throw new System.ApplicationException(@"
                    Your client app <endpoint> must be cofigured have a
                  'behaviorConfiguration' attribute like this:
                    behaviorConfiguration='FRB.AllowImpersonate'
                   that points back to a behavior that has this syntax:         
              <behavior name='FRB.AllowImpersonate'>
                 <clientCredentials>
                     <windows allowedImpersonationLevel='Impersonation'/>
                 </clientCredentials>
              </behavior>
              ", ex);
                   else
                        throw ex;
                _command = _connection.CreateCommand();
                _command.CommandText = commandText;
                _command.CommandType = commandType;
                // TODO _command.CommandTimeout = ;
    Neal

  • The timer service encountered an exception checking for the upgrade mode registry key. Requested registry access is not allowed.

    Once in a while i get the error
    Event ID 6463
    The timer service encountered an exception checking for the upgrade mode registry key. Requested registry access is not allowed.
    This also happens when i restart the timer service.
    I already cleared the SharePoint cache (xml's) but no success with that.
    Environment is
    SharePoint 2013 SP1 + CU Dec 2014

    This is a brand new SP13 with SP1 installation after binaries installation i also installed Dec 2014 CU and then created the SP farm.
    The Apppool/Timer account is member of WSS_ADMIN_WPG.
    Issue can be reproduced with restarting SharePoint Timer Service.
    Hereby the Process Monitor output. Hence i filtered it on NOT SUCCESS and Path contains the word UPGRADE
    11:37:57,4244851 OWSTIMER.EXE
    6272 RegQueryValue
    HKLM\SOFTWARE\Microsoft\Shared Tools\Web Server Extensions\15.0\WSS\UpgradeLogLevelOverride
    NAME NOT FOUND Length: 144
    11:37:57,6632057 OWSTIMER.EXE
    6272 RegOpenKey
    HKLM\SOFTWARE\Microsoft\Fusion\PublisherPolicy\Default\v4.0_policy.15.0.Microsoft.Office.Access.Services.Moss.Upgrade__71e9bce111e9429c
    NAME NOT FOUND Desired Access: Read
    11:37:57,6632889 OWSTIMER.EXE
    6272 RegOpenKey
    HKLM\SOFTWARE\Microsoft\Fusion\PublisherPolicy\Default\policy.15.0.Microsoft.Office.Access.Services.Moss.Upgrade__71e9bce111e9429c
    NAME NOT FOUND Desired Access: Read
    11:37:57,7140763 OWSTIMER.EXE
    6272 RegOpenKey
    HKLM\SOFTWARE\Microsoft\Fusion\PublisherPolicy\Default\v4.0_policy.15.0.Microsoft.PerformancePoint.Scorecards.Upgrade__71e9bce111e9429c
    NAME NOT FOUND Desired Access: Read
    11:37:57,7141089 OWSTIMER.EXE
    6272 RegOpenKey
    HKLM\SOFTWARE\Microsoft\Fusion\PublisherPolicy\Default\policy.15.0.Microsoft.PerformancePoint.Scorecards.Upgrade__71e9bce111e9429c
    NAME NOT FOUND Desired Access: Read
    11:37:57,7313089 OWSTIMER.EXE
    6272 RegOpenKey
    HKLM\SOFTWARE\Microsoft\Fusion\PublisherPolicy\Default\v4.0_policy.15.0.Microsoft.SharePoint.Portal.Upgrade__71e9bce111e9429c
    NAME NOT FOUND Desired Access: Read
    11:37:57,7313403 OWSTIMER.EXE
    6272 RegOpenKey
    HKLM\SOFTWARE\Microsoft\Fusion\PublisherPolicy\Default\policy.15.0.Microsoft.SharePoint.Portal.Upgrade__71e9bce111e9429c
    NAME NOT FOUND Desired Access: Read
    11:37:59,2026527 OWSTIMER.EXE
    6272 RegQueryValue
    HKLM\SOFTWARE\Microsoft\Shared Tools\Web Server Extensions\15.0\WSS\MS_InternalUse_Only_UpgradeableVersion
    NAME NOT FOUND Length: 144
    11:37:59,2109400 OWSTIMER.EXE
    6272 RegQueryValue
    HKLM\SOFTWARE\Microsoft\Shared Tools\Web Server Extensions\15.0\WSS\MS_InternalUse_Only_UpgradeableVersion
    NAME NOT FOUND Length: 144
    11:38:05,3534303 OWSTIMER.EXE
    6272 RegQueryValue
    HKLM\SOFTWARE\Microsoft\Shared Tools\Web Server Extensions\15.0\WSS\MS_InternalUse_Only_UpgradeableVersion
    NAME NOT FOUND Length: 144
    11:38:05,3537846 OWSTIMER.EXE
    6272 RegQueryValue
    HKLM\SOFTWARE\Microsoft\Shared Tools\Web Server Extensions\15.0\WSS\MS_InternalUse_Only_UpgradeableVersion
    NAME NOT FOUND Length: 144
    11:38:05,3594290 OWSTIMER.EXE
    6272 RegQueryValue
    HKLM\SOFTWARE\Microsoft\Shared Tools\Web Server Extensions\15.0\WSS\MS_InternalUse_Only_UpgradeableVersion
    NAME NOT FOUND Length: 144
    11:38:05,3597316 OWSTIMER.EXE
    6272 RegQueryValue
    HKLM\SOFTWARE\Microsoft\Shared Tools\Web Server Extensions\15.0\WSS\MS_InternalUse_Only_UpgradeableVersion
    NAME NOT FOUND Length: 144
    11:38:05,3653094 OWSTIMER.EXE
    6272 RegQueryValue
    HKLM\SOFTWARE\Microsoft\Shared Tools\Web Server Extensions\15.0\WSS\MS_InternalUse_Only_UpgradeableVersion
    NAME NOT FOUND Length: 144
    11:38:05,3656118 OWSTIMER.EXE
    6272 RegQueryValue
    HKLM\SOFTWARE\Microsoft\Shared Tools\Web Server Extensions\15.0\WSS\MS_InternalUse_Only_UpgradeableVersion
    NAME NOT FOUND Length: 144

  • Sharepoint and SSRS integration Error Requested registry access is not allowed.

    I have integrated SSRS with sharepoint foundation 2010, it was running fine but suddenly its starts giving me error as -
    "An unexpected error occurred while connecting to the report server. Verify that the Reporting Services Service Application mapped to this web application is available OR the report server is available
    and configured for SharePoint Integrated mode. --> The report server cannot decrypt the symmetric key that is used to access sensitive or encrypted data in a report server database. You must either restore a backup key or delete all encrypted content. --->
    Microsoft.ReportingServices.Library.ReportServerDisabledException: The report server cannot decrypt the symmetric key that is used to access sensitive or encrypted data in a report server database. You must either restore a backup key or delete all encrypted
    content. ---> System.Security.SecurityException: Requested registry access is not allowed."
    Now i am not able to read reports or cant access all database options in sharepoint,it says
    registry access is not allowed
    I tried to reset encryption key and allowed all access to registry keys buts its giving same error .
    Please suggest me what should i do now, i stuck here...

    Hi Bhagyashri,
    From your description, there have two questions in the environment:
    "Requested registry access is not allowed" while access SharePoint sites
    and "The report server cannot decrypt the symmetric key that is used to access sensitive or encrypted data in a report server database" while viewing reports
    For the first issue, the cause is the SharePoint web service account can't access some registry keys.
    For the second issue, the cause is that the report database was restored from another server, and the encryption key was not restored correctly.
    To fix the issue, please:
    Follow "solutions" in this article
    http://blogs.technet.com/b/spsforum/archive/2011/11/02/quick-solution-5-requested-registry-access-is-not-allowed.aspx to fix "Requested registry access is not allowed"
    Restore the encryption key again, or please delete the key and then reset every credential setting in SSRS data source connection
    Thanks,
    Jinchun Chen
    Jinchun Chen(JC)
    TechNet Community Support

  • Error at connect :Requested registry access is not allowed

    I have a Windows service running as a domain admin connecting with Client 10.2.0.100.
    My connection string look as follows :
    user id=xxx;data source=xxx;password=xxx;Statement Cache Size=30;Min Pool size=0
    This error (Requested registry access is not allowed) only occurs sometimes.
    Maybe after the service has been idle for a while???
    Thanks in advance,
    Philippe

    Problem was caused by corrupted user profile. Removing current profile and reinstalling SCORCH solved.
    Egils Zonde from Technet

  • ECP not connecting with Edge Tranpost role ("Requested registry access is not allowed,". )

    I installed and configured an Edge Transport server.
    In ECP under servers if I click to access the Edge Transport server I get a warning message pop up that says "An error occurred while accessing the registry on the server "FQDN". The error that occurred is: "Requested registry access is
    not allowed,".
    If I answer "Okay" I get the standard info and am allowed to enter a product key which did save. Operation appears normal and mail-flow is functioning.
    Any help is much obliged.

    Hi,
    Agree with Amit Tank, we can use ECP to manage Edge Transport server. However, Edge Transport does not come with a separate EAC or ECP component, and we can manage Edge Transport from the Exchange 2013 SP1 ECP which is CAS 2013 server.
    Thanks,
    Angela Shi
    TechNet Community Support

  • Error during Upgrade advisor Progress "Requested registry access is not allowed. (mscorlib)"

    Hello ,
            I have  installed  " SQL Server 2012 Upgrade Advisor" successfully on my local system. A Successfull connection was establised to SQL Server insatnce  on Remote Server through Upgrade Advisor
    ,On click of Run  below error is raised
    ===================================
    Requested registry access is not allowed. (mscorlib)
    Program Location:
       at System.ThrowHelper.ThrowSecurityException(ExceptionResource resource)
       at Microsoft.Win32.RegistryKey.OpenSubKey(String name, Boolean writable)
       at Microsoft.Win32.RegistryKey.OpenSubKey(String name)
       at Microsoft.SqlServer.UpgradeAdvisor.SqlDetection.GetClusterInfo()
       at Microsoft.SqlServer.UpgradeAdvisor.SqlDetection.GetSqlInstances()
       at Microsoft.SqlServer.UpgradeAdvisor.SqlDetection.EngineExists()
       at Microsoft.SqlServer.UpgradeAdvisor.AnalyzerEngine.GetAnalyzer(AnalyzerType analyzerType)
       at Microsoft.SqlServer.UpgradeAdvisor.AnalyzerEngine.RunAnalyzer(AnalyzerType analyzerType, String& reportFile)

     Yes  instance and upgrade advisor version are same (64 bit ).edition of SQL Server is   Enterprise Edition (64-bit)
     Upgrading from  SQL Server 2008 to SQL server 2012.
    1) provided with Server Name  and  component 
    SQL SERVER was Checked.
    2) Clicked on Next , Instance Name and SQL Server Authentication 
    was selected.
    3) Login Ceredentials provided and Clicked on Next.
    4) Only one Database to analyze was checked and Clicked Next.
    5) On Click of Run below error occured.
    On click of Advance Information of error   >> ALL Messages :
    ===================================
    Requested registry access is not allowed. (mscorlib)
    Program Location:
       at System.ThrowHelper.ThrowSecurityException(ExceptionResource resource)
       at Microsoft.Win32.RegistryKey.OpenSubKey(String name, Boolean writable)
       at Microsoft.Win32.RegistryKey.OpenSubKey(String name)
       at Microsoft.SqlServer.UpgradeAdvisor.SqlDetection.GetClusterInfo()
       at Microsoft.SqlServer.UpgradeAdvisor.SqlDetection.GetSqlInstances()
       at Microsoft.SqlServer.UpgradeAdvisor.SqlDetection.EngineExists()
       at Microsoft.SqlServer.UpgradeAdvisor.AnalyzerEngine.GetAnalyzer(AnalyzerType analyzerType)
       at Microsoft.SqlServer.UpgradeAdvisor.AnalyzerEngine.RunAnalyzer(AnalyzerType analyzerType, String& reportFile)
    Log file Error Message :
    12/01/2014 17:17:47 UA <Error>System.Security.SecurityException: Requested registry access is not allowed.
       at System.ThrowHelper.ThrowSecurityException(ExceptionResource resource)
       at Microsoft.Win32.RegistryKey.OpenSubKey(String name, Boolean writable)
       at Microsoft.Win32.RegistryKey.OpenSubKey(String name)
       at Microsoft.SqlServer.UpgradeAdvisor.SqlDetection.GetClusterInfo()
       at Microsoft.SqlServer.UpgradeAdvisor.SqlDetection.GetSqlInstances()
       at Microsoft.SqlServer.UpgradeAdvisor.SqlDetection.EngineExists()
       at Microsoft.SqlServer.UpgradeAdvisor.AnalyzerEngine.GetAnalyzer(AnalyzerType analyzerType)
       at Microsoft.SqlServer.UpgradeAdvisor.AnalyzerEngine.RunAnalyzer(AnalyzerType analyzerType, String& reportFile)
    The Zone of the assembly that failed was:
    MyComputer</Error>

  • Error on powershell: "Requested registry access is not allowed"

    Hi!
    Suddenly after reboot all runbooks fail on all .net activities. I tried even an empty powershell single activity, and that too fails with: "Requested registry access is not allowed"
    Please help!
    Egils Zonde from Technet

    Problem was caused by corrupted user profile. Removing current profile and reinstalling SCORCH solved.
    Egils Zonde from Technet

  • After Feb 2015 CU viewing list items results in error : requested registry access is not allowed

    Hello All,
    We recently (Monday) updated our farm to the feb 2015 CU.  Since then we have been getting calls in from users that cannot access list items.  They receive a correlation error.  Looking at the logs the correlation error points to a critical
    error: "Requested registry access is not allowed"
    Doing some googling, others have seen this error but it is usually associated with managed accounts.
    Has anyone else encountered this issue/error?  Have you found a solution?
    Thanks for your help
    environment: SharePoint 2013 enterprise : 6 farm servers : OWA : project server : SQL 2012 always on backend

    This would be the service account running the Web Application failing to access the registry key(s). What you should do is set up
    Process Monitor to look at Registry keys, and look for ACCESS DENIED.
    One thing you could just try out would be to run:
    Initialize-SPResourceSecurity
    Also, do you mean the March 2015 CU? 
    Trevor Seward
    Follow or contact me at...
    This post is my own opinion and does not necessarily reflect the opinion or view of Microsoft, its employees, or other MVPs.

  • Creating the site content type failed when publish Infopath form to Sharepoint 2013

    I have an InfoPath 2013 form trying to publish it to SharePoint 2013.  When I click on publishing an error message appears stating "Creating the site content type failed".  I can't figure out why this
    is happening, any help on this one?
    Also it appears the form template is uploaded when I go to the library settings under advance.  When I see the .xsn file and click on it, it opens in InfoPath but not in sp.

    Rettajm, could you please find any errors in ULS?

  • Requested registry access is not allowed

    I have inherited a project from someone who no longer works here.  I see how the debugger works in Visual Studio.
    My computer has Visual Studio 2012 running on Windows 7.  The computer where are application was created runs Visual Studio 2010 on Windows XP.
    The program runs in debug mode on the XP computer without any problems.
    On my computer it always gets an exception at the point where the registry is accessed.
    I have executed the following:
    1. Download and install the SubInACL utility.
    2.Create a new text file named fix_registry_permissions.cmd and add the following text to it and save it.
    cd /d "%programfiles%\Windows Resource Kits\Tools" subinacl /subkeyreg HKEY_LOCAL_MACHINE /grant=administrators=f /grant=system=f
    subinacl /subkeyreg HKEY_CURRENT_USER /grant=administrators=f /grant=system=f subinacl /subkeyreg HKEY_CLASSES_ROOT /grant=administrators=f /grant=system=f subinacl /subdirectories %SystemDrive% /grant=administrators=f /grant=system=f subinacl /subdirectories
    %windir%\*.* /grant=administrators=f /grant=system=f
    3. Run the file by double-clicking on it.
    I have also executed:
    Press WINDOW+R to open the Run window, type "regedit" (no quotes) and press ENTER to execute. If a UAC dialog appears choose Yes to open
    the Registry Editor with elevated priveledges.
    2. Navigate to HKEY_CURRENT_USER\Software\Classes.
    3. Create a new key named ".vbproj"
    4. Run VS 2010 as an administrator.
    5. Try creating a VB project.
    Neither fix works for me.

    the project is using C#, WPF.  The project can be built successfully and does run on any computer.  The only time I get the registry error is when I try to use the debug feature.  It always jumps to the exception.
    The code is:
                #region read data folder location from registry
    try
                    regKey = hklm.OpenSubKey("Software\\ThermoGenesis\\XpressTRAK\\Data",
    true);
    if (regKey.GetValue("DataFolderPath")
    == null)
    GVariables.dataFolderDir = System.IO.Directory.GetParent(
                                System.Reflection.Assembly.GetExecutingAssembly().Location).ToString();
    //create the key
                        regKey.SetValue("DataFolderPath",
    GVariables.dataFolderDir);
    else
    GVariables.dataFolderDir =
    Convert.ToString(
                            regKey.GetValue("DataFolderPath"));
    catch (Exception
    ex)
    MessageBox.Show(ex.Message,
    GVariables.msgCaption);
    if (regKey !=
    null)
                        regKey.Close();
    return
    false;
                #endregion

  • Not able to open infopath form connected with database in sharepoint 2010

    Hi,
     I have created one infopath form which is connected with sql server database.
    Now when i am trying to open this form from sharepoint,its giving me following error:
    Please help to solve this issue.
    Thanks & Regards
    rajni

    Hello,
    If i understood you correctly, you have SP list and there are some records. Now you want to open your infopath form when clicks on add new item in the same list. I am still confuse about "from table 'Account'" this line. Are you saying that you are fetching
    records from SQL table to PS list?
    Anyway, you can modify the existing list form infopath so you could be able to open the infopath form instead of default newform.aspx page. Later you can create a new data connection in that customize form to display data in table format from same list.
    You can follow this video for connection:
    https://www.youtube.com/watch?v=6NySzgGhnaw
    http://office.microsoft.com/en-us/infopath-help/add-a-data-connection-to-a-sharepoint-document-library-or-list-HP010093160.aspx
    Let me know if i misunderstood you
    Hemendra:Yesterday is just a memory,Tomorrow we may never see
    Please remember to mark the replies as answers if they help and unmark them if they provide no help

  • Infopath form for sharepoint 2013 lags when searching for person or group.

    Dear all,
    After implementing a infopath form on sharepoint, the search for person or group column lags when I search for someone the second time. (The first time won't lag). Is there a fix to this? And is there a way to modify the search for person or group function
    to sharepoint OOTB person or group search? I think the OOTB one is a lot better. Thanks all.
    Timothy Liu

    Have a look at this thread which discussed a same question:
    http://social.msdn.microsoft.com/forums/sharepoint/en-US/c55f4245-b2b0-410b-94fc-2afd1ef80da8/preventing-users-from-editing-other-users-infopath-forms
    thanks,
    Flynn

  • InfoPath Filler 2010 will not open a form in SharePoint 2013

    I'm having a problem with the coexistence of SharePoint 2013 and Office 2010, specifically InfoPath.
    We are running SharePoint 2013 Standard, so we do not have access to web-enabled InfoPath forms, which is okay since all of our client machines have InfoPath Filler as part of their Office 2010 install.
    The problem is I have created a form and published it to a SharePoint 2013 library but when I try to create a new document in the library I get a page cannot be displayed error or the page just hangs. 
    However, as a troubleshooting step, I installed InfoPath 2013 on my client machine and when I access the library and create a new document it opens the form successfully. 
    I've changed the settings of the library so it uses the client application instead of trying to open in the browser, I've changed the trust settings to every possible configuration I can think of but I cannot get InfoPath 2010 to open a form published to
    SharePoint 2013.
    Is this a known compatibility issue, a bug, or am I missing something?
    Thanks,
    Kevin

    I encountered this issue recently. Some of our suers have upgraded to Office 2013 but a lot still are on office 2010. I did not want a solution that relied heavily on the users to do something, like upgrade to 2013 or modify 2010. That's not ideal.
    I realized the solution was very simple. I edited the InfoPath template within the document library in sharepoint > Form Options > Compatibility, change it to InfoPath filler form 2010. It still works for me and I have version 2013, so now it allows
    users with older versions to use it as well. I confirmed with the affected users that they can now access the form.

  • Error message when opening infopath form

    I have a browser enabled infopath form loading in a Form webPart in a webpart page with another connecting web part. When users try to open the form they get:
    "An error occurred querying a data source"
    An entry has been added to the Windows event log of the server.
    Log ID:7893
    Correlation ID:42ed9f77-2bb5-4164-9c71-d8c13fadecb6
    After following the correlation ID in SharePoint log file I found these entries:
    06/02/2012 21:40:42.51 w3wp.exe (0x19F8)                       
    0x1970  SharePoint Foundation        
            Monitoring                   
         b4ly               
    High       Leaving Monitored Scope (PostResolveRequestCacheHandler). Execution Time=1456.48337845783               
    42ed9f77-2bb5-4164-9c71-d8c13fadecb6
    06/02/2012 21:40:42.59 w3wp.exe (0x19F8)                      
    0x1970  SharePoint Foundation        
            General                      
             72nz               
    Medium              
    Videntityinfo::isFreshToken reported failure.    
    42ed9f77-2bb5-4164-9c71-d8c13fadecb6
    06/02/2012 21:40:43.37 w3wp.exe (0x19F8)    
    0x1970  SharePoint Foundation        
            Monitoring                   
         b4ly               
    High       Leaving Monitored Scope (Activate web part connections). Execution Time=778.345021899529 
    42ed9f77-2bb5-4164-9c71-d8c13fadecb6
    06/02/2012 21:40:54.15 w3wp.exe (0x19F8)                      
    0x1970  InfoPath Forms Services      
            Runtime - Data Connections   
    7tfk        Medium 
    Data adapter failed during OnLoad: The operation has timed out              
    42ed9f77-2bb5-4164-9c71-d8c13fadecb6
    06/02/2012 21:40:54.15 w3wp.exe (0x19F8)                      
    0x1970  InfoPath Forms Services      
            Runtime - Data Connections   
    eq8m    Warning              
    The following data connection (0#.w|abc\test1) has timed out(User: BA Forms, Form Name: , IP:
    http://XXXX/new.aspx?ItemId=18, Request: urn:schemas-microsoft-com:office:infopath:BA-Forms:-myXSD-2012-02-15T04-39-46, Form ID: (null)).               
    42ed9f77-2bb5-4164-9c71-d8c13fadecb6
    This error just happens in the first load and if user reload the form there is no error.
    This problem happens if for a while around 30 min no one open the form.
    The weird thing is all data connections seem work fine because all fields can get their data from web service call.
    Does anybody knows how I can get rid of this error message in the first time of loading the from?
    Thanks,

    i receive error in uls
    02/04/2015 14:07:01.44  w3wp.exe (0x15C0)                        0x1764 SharePoint Foundation        
     Monitoring                     nasq Medium   Entering monitored scope (Request (GET:http://drims.dri.local:80/_layouts/FormServer.aspx?XsnLocation=http://drims.dri.local/popis/Forms/template.xsn&SaveLocation=http%3A%2F%2Fdrims%2Edri%2Elocal%2Fpopis&ClientInstalled=true&Source=http%3A%2F%2Fdrims%2Edri%2Elocal%2Fpopis%2FForms%2FAllItems%2Easpx&DefaultItemOpen=1)) 
    02/04/2015 14:07:01.44  w3wp.exe (0x15C0)                        0x1764 SharePoint Foundation        
     Logging Correlation Data       xmnv Medium   Name=Request (GET:http://drims.dri.local:80/_layouts/FormServer.aspx?XsnLocation=http://drims.dri.local/popis/Forms/template.xsn&SaveLocation=http%3A%2F%2Fdrims%2Edri%2Elocal%2Fpopis&ClientInstalled=true&Source=http%3A%2F%2Fdrims%2Edri%2Elocal%2Fpopis%2FForms%2FAllItems%2Easpx&DefaultItemOpen=1) 9823355e-8a6c-4741-971e-a9e064249485
    02/04/2015 14:07:01.44  w3wp.exe (0x15C0)                        0x1764 SharePoint Foundation        
     Logging Correlation Data       xmnv Medium   Site=/ 9823355e-8a6c-4741-971e-a9e064249485
    02/04/2015 14:07:01.45  w3wp.exe (0x15C0)                        0x1764 InfoPath Forms Services      
     Runtime                        5vax Verbose  FormServerPage BeginProcessRequest:
    http://drims.dri.local/_layouts/FormServer.aspx?XsnLocation=http://drims.dri.local/popis/Forms/template.xsn&SaveLocation=http://drims.dri.local/popis&ClientInstalled=true&Source=http://drims.dri.local/popis/Forms/AllItems.aspx&DefaultItemOpen=1 9823355e-8a6c-4741-971e-a9e064249485
    02/04/2015 14:07:01.45  w3wp.exe (0x15C0)                        0x1764 InfoPath Forms Services      
     Runtime                        wdqk Verbose  GlobalStorage.Enter: New context - FormControl   Total contexts - 1 9823355e-8a6c-4741-971e-a9e064249485
    02/04/2015 14:07:01.45  w3wp.exe (0x15C0)                        0x1764 InfoPath Forms Services      
     Runtime                        8z3p Verbose  Calling GlobalStorage.SetItem with index IsConversionInProgress value type Boolean. 9823355e-8a6c-4741-971e-a9e064249485
    02/04/2015 14:07:01.45  w3wp.exe (0x15C0)                        0x1764 InfoPath Forms Services      
     Runtime                        57zo Verbose  XmlFormView: Entering OnInit 9823355e-8a6c-4741-971e-a9e064249485
    02/04/2015 14:07:01.45  w3wp.exe (0x15C0)                        0x1764 InfoPath Forms Services      
     Runtime                        wdqm Verbose  GlobalStorage.Leave: Old context - FormControl   Total contexts after
    Leave - 0 9823355e-8a6c-4741-971e-a9e064249485
    02/04/2015 14:07:01.45  w3wp.exe (0x15C0)                        0x1764 InfoPath Forms Services      
     Runtime                        57zq Verbose  XmlFormView: Leaving OnInit 9823355e-8a6c-4741-971e-a9e064249485
    02/04/2015 14:07:01.45  w3wp.exe (0x15C0)                        0x1764 InfoPath Forms Services      
     Runtime                        5vat Verbose  FormServerPage OnInit Enter:
    http://drims.dri.local/_layouts/FormServer.aspx?XsnLocation=http://drims.dri.local/popis/Forms/template.xsn&SaveLocation=http://drims.dri.local/popis&ClientInstalled=true&Source=http://drims.dri.local/popis/Forms/AllItems.aspx&DefaultItemOpen=1 9823355e-8a6c-4741-971e-a9e064249485
    02/04/2015 14:07:01.45  w3wp.exe (0x15C0)                        0x1764 InfoPath Forms Services      
     Runtime                        wdqk Verbose  GlobalStorage.Enter: New context - {F888E1A1-20CA-470d-A2F4-498A9ECD1C67}  
    Total contexts - 1 9823355e-8a6c-4741-971e-a9e064249485
    02/04/2015 14:07:01.45  w3wp.exe (0x15C0)                        0x1764 InfoPath Forms Services      
     Runtime                        wdqm Verbose  GlobalStorage.Leave: Old context - {F888E1A1-20CA-470d-A2F4-498A9ECD1C67}  
    Total contexts after Leave - 0 9823355e-8a6c-4741-971e-a9e064249485
    02/04/2015 14:07:01.45  w3wp.exe (0x15C0)                        0x1764 InfoPath Forms Services      
     Runtime                        8z3p Verbose  Calling GlobalStorage.SetItem with index IsConversionInProgress value type Boolean. 9823355e-8a6c-4741-971e-a9e064249485
    02/04/2015 14:07:01.45  w3wp.exe (0x15C0)                        0x1764 InfoPath Forms Services      
     Runtime                        8z3p Verbose  Calling GlobalStorage.SetItem with index SiteAndWebCache value type SiteAndWebCache. 9823355e-8a6c-4741-971e-a9e064249485
    02/04/2015 14:07:01.45  w3wp.exe (0x15C0)                        0x1764 InfoPath Forms Services      
     Runtime                        adv7 Verbose  XmlFormView: Entering OnDataBinding 9823355e-8a6c-4741-971e-a9e064249485
    02/04/2015 14:07:01.45  w3wp.exe (0x15C0)                        0x1764 InfoPath Forms Services      
     Runtime                        wdqk Verbose  GlobalStorage.Enter: New context - FormControl   Total contexts - 1 9823355e-8a6c-4741-971e-a9e064249485
    02/04/2015 14:07:01.45  w3wp.exe (0x15C0)                        0x1764 InfoPath Forms Services      
     Runtime                        5vav Verbose  FormServerPage CreateChildControls Enter:
    http://drims.dri.local/_layouts/FormServer.aspx?XsnLocation=http://drims.dri.local/popis/Forms/template.xsn&SaveLocation=http://drims.dri.local/popis&ClientInstalled=true&Source=http://drims.dri.local/popis/Forms/AllItems.aspx&DefaultItemOpen=1 9823355e-8a6c-4741-971e-a9e064249485
    02/04/2015 14:07:01.45  w3wp.exe (0x15C0)                        0x1764 InfoPath Forms Services      
     Runtime                        5vaw Verbose  FormServerPage CreateChildControls Leave:
    http://drims.dri.local/_layouts/FormServer.aspx?XsnLocation=http://drims.dri.local/popis/Forms/template.xsn&SaveLocation=http://drims.dri.local/popis&ClientInstalled=true&Source=http://drims.dri.local/popis/Forms/AllItems.aspx&DefaultItemOpen=1 9823355e-8a6c-4741-971e-a9e064249485
    02/04/2015 14:07:01.45  w3wp.exe (0x15C0)                        0x1764 InfoPath Forms Services      
     Runtime                        8geg Verbose  MetaInformationByUrl:scanned 63 of 63 formTemplates for URL=http://drims.dri.local/popis/Forms/template.xsn,
    fileName= template.xsn, matching=NONE 9823355e-8a6c-4741-971e-a9e064249485
    02/04/2015 14:07:01.47  w3wp.exe (0x15C0)                        0x1764 InfoPath Forms Services      
     Runtime                        wdqk Verbose  GlobalStorage.Enter: New context - FormControl   Total contexts - 2 9823355e-8a6c-4741-971e-a9e064249485
    02/04/2015 14:07:01.47  w3wp.exe (0x15C0)                        0x1764 InfoPath Forms Services      
     Runtime                        8z3p Verbose  Calling GlobalStorage.SetItem with index CultureData value type RequestCultureData. 9823355e-8a6c-4741-971e-a9e064249485
    02/04/2015 14:07:01.47  w3wp.exe (0x15C0)                        0x1764 InfoPath Forms Services      
     Runtime                        0000 Verbose  XmlFormView: ShouldDisableFirstRequestOptimization for form:IW:/POPIS/FORMS/TEMPLATE.XSN,
    tag:K6W976CD4PLNJLrTYJOckzrMg3etJQ3uFbc8sT1x138 first request optimized:True on page:/_layouts/FormServer.aspx?XsnLocation=http://drims.dri.local/popis/Forms/template.xsn&SaveLocation=http%3A%2F%2Fdrims%2Edri%2Elocal%2Fpopis&ClientInstalled=true&Source=http%3A%2F%2Fdrims%2Edri%2Elocal%2Fpopis%2FForms%2FAllItems%2Easpx&DefaultItemOpen=1
    . 9823355e-8a6c-4741-971e-a9e064249485
    02/04/2015 14:07:01.47  w3wp.exe (0x15C0)                        0x1764 InfoPath Forms Services      
     Runtime - State Service        8ykk Verbose  KEY: b967a19babe048c7bc0180dbd0a52d6e_1d793db6afc2409c88f1c180994563ae 9823355e-8a6c-4741-971e-a9e064249485
    02/04/2015 14:07:01.47  w3wp.exe (0x15C0)                        0x1764 InfoPath Forms Services      
     Runtime                        8z3p Verbose  Calling GlobalStorage.SetItem with index EditingSessionId value type String. 9823355e-8a6c-4741-971e-a9e064249485
    02/04/2015 14:07:01.47  w3wp.exe (0x15C0)                        0x1764 InfoPath Forms Services      
     Runtime                        8ykj Verbose  Creating document with editingSessionId: b967a19babe048c7bc0180dbd0a52d6e_1d793db6afc2409c88f1c180994563ae 9823355e-8a6c-4741-971e-a9e064249485
    02/04/2015 14:07:01.47  w3wp.exe (0x15C0)                        0x1764 InfoPath Forms Services      
     Runtime                        8z3p Verbose  Calling GlobalStorage.SetItem with index TimeZoneId value type UInt16. 9823355e-8a6c-4741-971e-a9e064249485
    02/04/2015 14:07:01.47  w3wp.exe (0x15C0)                        0x1764 InfoPath Forms Services      
     Runtime                        8z3p Verbose  Calling GlobalStorage.SetItem with index XmlForm value type XmlFormHost. 9823355e-8a6c-4741-971e-a9e064249485
    02/04/2015 14:07:01.47  w3wp.exe (0x15C0)                        0x1764 InfoPath Forms Services      
     Runtime                        8z3p Verbose  Calling GlobalStorage.SetItem with index FormState value type FormStateBag. 9823355e-8a6c-4741-971e-a9e064249485
    02/04/2015 14:07:01.47  w3wp.exe (0x15C0)                        0x1764 InfoPath Forms Services      
     Conversion and Deployment      93wz Verbose  Recursion: Entering schema validation. FormTemplate: urn:schemas-microsoft-com:office:infopath:popis:-myXSD-2015-01-21T07-22-46 9823355e-8a6c-4741-971e-a9e064249485
    02/04/2015 14:07:01.47  w3wp.exe (0x15C0)                        0x1764 InfoPath Forms Services      
     Conversion and Deployment      93x0 Verbose  Recursion: Leaving schema validation. FormTemplate: urn:schemas-microsoft-com:office:infopath:popis:-myXSD-2015-01-21T07-22-46 9823355e-8a6c-4741-971e-a9e064249485
    02/04/2015 14:07:01.91  w3wp.exe (0x15C0)                        0x1764 Secure Store Service         
     Secure Store                   elo9 Medium   Entering SecureStoreProviderFactory.GetDefaultSecureStoreProviderName 9823355e-8a6c-4741-971e-a9e064249485
    02/04/2015 14:07:01.91  w3wp.exe (0x15C0)                        0x1764 Secure Store Service         
     Secure Store                   elp1 Medium   Leaving SecureStoreProviderFactory.GetDefaultSecureStoreProviderName 9823355e-8a6c-4741-971e-a9e064249485
    02/04/2015 14:07:01.91  w3wp.exe (0x15C0)                        0x1764 SharePoint Foundation        
     Topology                       e5mc Medium   WcfSendRequest: RemoteAddress: 'https://vm-drims1:32844/9efec30f2e474b37a620610e7ffef5b3/SecureStoreService.svc/https'
    Channel: 'Microsoft.Office.SecureStoreService.Server.ISecureStoreServiceApplication' Action: 'http://schemas.microsoft.com/sharepoint/2009/06/securestoreservice/ISecureStoreServiceApplication/GetUserApplication' MessageId: 'urn:uuid:a65080f1-c38a-416f-a234-ab364197d7e1' 9823355e-8a6c-4741-971e-a9e064249485
    02/04/2015 14:07:02.01  w3wp.exe (0x15C0)                        0x1764 SharePoint Foundation        
     Monitoring                     b4ly High     Leaving Monitored Scope (ExecuteWcfOperation:http://schemas.microsoft.com/sharepoint/2009/06/securestoreservice/ISecureStoreServiceApplication/GetUserApplication).
    Execution Time=112,764052414483 9823355e-8a6c-4741-971e-a9e064249485
    02/04/2015 14:07:02.01  w3wp.exe (0x15C0)                        0x1764 SharePoint Foundation        
     Monitoring                     b4ly High     Leaving Monitored Scope (ExecuteOnChannel: GetApplication). Execution Time=113,705233486379 9823355e-8a6c-4741-971e-a9e064249485
    02/04/2015 14:07:02.01  w3wp.exe (0x15C0)                        0x1764 SharePoint Foundation        
     Topology                       e5mc Medium   WcfSendRequest: RemoteAddress: 'https://vm-drims2:32844/9efec30f2e474b37a620610e7ffef5b3/SecureStoreService.svc/https'
    Channel: 'Microsoft.Office.SecureStoreService.Server.ISecureStoreServiceApplication' Action: 'http://schemas.microsoft.com/sharepoint/2009/06/securestoreservice/ISecureStoreServiceApplication/GetCredentials' MessageId: 'urn:uuid:de38ae0e-e451-40ca-8ba5-7f2eb0c1d730' 9823355e-8a6c-4741-971e-a9e064249485
    02/04/2015 14:07:02.12  w3wp.exe (0x15C0)                        0x1764 SharePoint Foundation        
     Monitoring                     b4ly High     Leaving Monitored Scope (ExecuteWcfOperation:http://schemas.microsoft.com/sharepoint/2009/06/securestoreservice/ISecureStoreServiceApplication/GetCredentials).
    Execution Time=107,606972394536 9823355e-8a6c-4741-971e-a9e064249485
    02/04/2015 14:07:02.12  w3wp.exe (0x15C0)                        0x1764 SharePoint Foundation        
     Monitoring                     b4ly High     Leaving Monitored Scope (ExecuteOnChannel: GetCredentials). Execution Time=109,635721858504 9823355e-8a6c-4741-971e-a9e064249485
    02/04/2015 14:07:02.12  w3wp.exe (0x15C0)                        0x1764 InfoPath Forms Services      
     Runtime - Data Connections     6wdh Verbose  WebServiceQuery: Begin soln=urn:schemas-microsoft-com:office:infopath:popis:-myXSD-2015-01-21T07-22-46 adapter=current user 9823355e-8a6c-4741-971e-a9e064249485
    02/04/2015 14:07:02.12  w3wp.exe (0x15C0)                        0x1764 InfoPath Forms Services      
     Runtime - Data Connections     6qh7 Verbose  Web Request: Begins url=http://drims.dri.local/_vti_bin/userprofileservice.asmx action=http://microsoft.com/webservices/SharePointPortalServer/UserProfileService/GetUserProfileByName 9823355e-8a6c-4741-971e-a9e064249485
    02/04/2015 14:07:02.12  w3wp.exe (0x15C0)                        0x1764 InfoPath Forms Services      
     Runtime - Data Connections     13zc Verbose  Web Request:  Preparing SOAP message 9823355e-8a6c-4741-971e-a9e064249485
    02/04/2015 14:07:02.12  w3wp.exe (0x15C0)                        0x1764 InfoPath Forms Services      
     Runtime - Data Connections     13zd Verbose  Web Request:  Preparing WebRequest 9823355e-8a6c-4741-971e-a9e064249485
    02/04/2015 14:07:02.12  w3wp.exe (0x15C0)                        0x1764 InfoPath Forms Services      
     Runtime - Data Connections     1dhr Verbose  Web Request:  Writing request stream 9823355e-8a6c-4741-971e-a9e064249485
    02/04/2015 14:07:02.12  w3wp.exe (0x15C0)                        0x1764 InfoPath Forms Services      
     Runtime - Data Connections     13zf Verbose  Web Request:  Getting response 9823355e-8a6c-4741-971e-a9e064249485
    02/04/2015 14:07:04.12  w3wp.exe (0x15C0)                        0x1914 SharePoint Foundation        
     Topology                       e5mc Medium   WcfSendRequest: RemoteAddress: 'http://vm-drims:32843/9a369b2ae1ce44f88d48e93d62e5f772/MetadataWebService.svc'
    Channel: 'Microsoft.SharePoint.Taxonomy.IMetadataWebServiceApplication' Action: 'http://schemas.microsoft.com/sharepoint/taxonomy/soap/IDataAccessReadOnly/GetChanges' MessageId: 'urn:uuid:0346e221-d65e-4b5c-8be9-46f3d7f225b1' 
    02/04/2015 14:07:04.84  w3wp.exe (0x15C0)                        0x1838 SharePoint Portal Server       Runtime                      
     8gp7 Medium   Topology cache updated. (AppDomain: /LM/W3SVC/1229331659/ROOT-1-130675275570041108) 
    02/04/2015 14:07:12.33  w3wp.exe (0x15C0)                        0x1764 InfoPath Forms Services      
     Runtime - Data Connections     13zg Verbose  Web Request:  WebException Caught 9823355e-8a6c-4741-971e-a9e064249485
    02/04/2015 14:07:12.33  w3wp.exe (0x15C0)                        0x1764 InfoPath Forms Services      
     Runtime - Data Connections     13zi Verbose  Web Request:  Copying response to DOMs 9823355e-8a6c-4741-971e-a9e064249485
    02/04/2015 14:07:12.33  w3wp.exe (0x15C0)                        0x1764 InfoPath Forms Services      
     Runtime - Data Connections     13zi Verbose  Web Request:  Copying response to DOMs 9823355e-8a6c-4741-971e-a9e064249485
    02/04/2015 14:07:12.33  w3wp.exe (0x15C0)                        0x1764 InfoPath Forms Services      
     Runtime - Data Connections     6qh8 Verbose  Web Request: Ends url=http://drims.dri.local/_vti_bin/userprofileservice.asmx action=http://microsoft.com/webservices/SharePointPortalServer/UserProfileService/GetUserProfileByName 9823355e-8a6c-4741-971e-a9e064249485
    02/04/2015 14:07:12.33  w3wp.exe (0x15C0)                        0x1764 InfoPath Forms Services      
     Runtime - Data Connections     6wdi Verbose  WebServiceQuery: End 9823355e-8a6c-4741-971e-a9e064249485
    02/04/2015 14:07:12.33  w3wp.exe (0x15C0)                        0x1764 InfoPath Forms Services      
     Runtime - Data Connections     7tfk Medium   Data adapter failed during OnLoad: The operation has timed out 9823355e-8a6c-4741-971e-a9e064249485
    02/04/2015 14:07:12.33  w3wp.exe (0x15C0)                        0x1764 InfoPath Forms Services      
     Runtime - Data Connections     eq8m Warning  The following data connection (DRI\gljubic) has timed out(User: popis, Form Name: , IP:
    http://drims.dri.local/_layouts/FormServer.aspx?XsnLocation=http://drims.dri.local/popis/Forms/template.xsn&SaveLocation=http://drims.dri.local/popis&ClientInstalled=true&Source=http://drims.dri.local/popis/Forms/AllItems.aspx&DefaultItemOpen=1,
    Request: urn:schemas-microsoft-com:office:infopath:popis:-myXSD-2015-01-21T07-22-46, Form ID: (null)). 9823355e-8a6c-4741-971e-a9e064249485
    i used your solution for this my problem but nothing.
    plz help me
    i changed settings for infopath forms service, but nothing
    what i do?

Maybe you are looking for

  • Associative array Basics

    I have a SELECT query like SELECT ename, sal from emp; I want the ename column values from the output of the above query to be populated into an Associative array. So i did the following steps DECLARE TYPE ename_type IS TABLE OF VARCHAR2(10) INDEX BY

  • How to reload prototype and keep parameters?

    Hello, i changed from Labview 7.11 to the newest labview 2012. Now i have some express-vi-teststeps in Teststand 2012. In the testplan it says that i have to update the prototypes because they were configured with labview 7.1.1 and are not compatible

  • My desktop computer says failure configuring window updates reverting changes..Please help

    My h.p pavilion desktop computer says this ( failure configuring windows up dates do not turn off u r computer ) it's been this way for over 3 hours now I have tried restarting it  and turning it off they didn't work..so can please someone help me an

  • Object in URL not valid

    Hello, I hope that someone can help me with my problem: I have a BSP-Application where I have attachments. and if I want to show one attachment i most of the time get the error object... in URL not valid. For example: BSP Exception: Das Objekt 7D4925

  • Stichwörter in Bridge CS3 im/exportieren

    Guten Tag zusammen ich habe ein Problem. Wenn ich im Register "Stichwörter" das Menü aufmache, habe ich nur folgende Einträge: "Neues Stichwort - Neues Stichwortset - Umbenennen - Löschen - Suchen ...". Die Einträge "Importieren... - Leeren und Impor