Cross Domain Web App Authentication

I have two web apps that are running within different domains. They both use j_security for authentication. Is it possible to link from one web app to the other without requiring the user to reauthenticate? I tried setting the security credential to the same on both servers, which didn't work. Do I have to have to do something with cookies and do the roles need to be defined the same on both servers? Is what I am trying to do even possible without a third party single sign on product?

1)Enable domain wide security credentails same for both the domain.
2) Have user and groups and roles the same in both servers.

Similar Messages

  • Cross Domain user security Authentication in Oracle Weblogic Server 10.3.3

    Now i have configure the cross domain user configuration in the oracle weblogic 10.3.3 server. But i am not able to configure.
    I have mentioned the below oracle document to configure the cross domain configuration.
    http://download.oracle.com/docs/cd/E12840_01/wls/docs103/secmanage/domain.html#domain_interop
    http://download.oracle.com/docs/cd/E14571_01/web.1111/e13752/toc.htm#INTRO120
    http://download.oracle.com/docs/cd/E14571_01/apirefs.1111/e13952/taskhelp/security/EnableTrustBetweenDomains.html
    http://download.oracle.com/docs/cd/E12840_01/wls/docs103/ConsoleHelp/taskhelp/security/ConfigureConnectionFiltering.html
    http://download.oracle.com/docs/cd/E12840_01/wls/docs103/security/con_filtr.html#wp1030656
    Regards,
    S.Vinoth Babu

    sorry,wrong forum
    move to Weblogic Server Section
    Edited by: inchlin on Apr 1, 2009 9:39 AM

  • Sharepoint Client Context Retrieval From a Web app authenticated with Ping Federate

    Hi All,
    We are developing a WCF which would read value from a SharePoint list where web application only has Ping Federate authentication in all Zones. We have to use client object model since WCF would be hosted in a different server.We are not able to get data as
    when clientContext.ExecuteQuery(); is called it throws forbidden error. We have followed the below blog http://travisspencer.com/blog/2010/03/getting-a-token-from-pingfeder.html how ever  we are getting reply <faultstring>Unable to determine partner
    SP connection by AppliesTo: url</faultstring>. While we are calling the using the below blog were getting forbidden error at _layouts/authenticate.aspx itself. 
     http://fredericloud.com/2011/01/11/connecting-to-sharepoint-with-claims-authentication/
    Please let le me know if you have any working examples or documents regarding the same. 
    Thanks & Regards, Balu

    Hi,
    Does the account in use has the permission to access the SharePoint list? By default, we will come across the “Access Denied” if the current account has no access to a SharePoint
    object.
    For the authentication issue with SharePoint Client Object Model, you can try to set the credential to ClientContext object with the help of
    NetworkCredential Class.
    More information about authentication with SharePoint Client Object Model:
    http://bramdejager.wordpress.com/2013/08/02/using-csom-and-powershell-to-query-sharepoint-online-or-on-premise/
    http://sharepointdragons.com/2012/04/20/authentication-when-using-the-sharepoint-client-object-model/
    Thanks
    Patrick Liang
    Forum Support
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact
    [email protected]
    Patrick Liang
    TechNet Community Support

  • Web app authentication - realm-name in login-config

    I work with WL 7 sp1 on linux
    I created an authentication provider, and it worked great
    as I added it to the default realm,
    and asked for BASIC authentication.
    Still when I tried to change the realm-name to MyOtherRealm,
    it showed this name in the browser window,
    but did not activate my login module.
    I run getRealm in the servlet and got weblogicDEFAULT although I specifically
    asked for another realm
    Is it a known problem ? BEA please help

    I'm not an expert on SJWS, but maybe this helps:
    In AD the membership is stored in the 'member' attribute (not uniquemember), the objectclass is 'group' instead of 'groupofuniquenames' bbut you should rather use 'objectcategory=group' as this is not a MV attribute, same for samAccountName instead of cn.
    Dependent on your ASD size the 'member=%d' filter should work. However this doesn't perform on bigger ADs.
    Regards
    Frerich
    Btw. Has anybody an idea how to configure iPlanet web server against AD? It is searching for UID as default but I need 'em to search for samAccountName...

  • ReportViewer & IReportServerCredentials WORKS within Domain; FAILS with Cross-Domain request:HTTP status 401: Unauthorized

    The IReportServerCredentials approach with the ReportViewer control is working fine within a domain, but I get a 401 not authorized error for a Web IIS server trying to call a SSRS server in another domain. I've see plenty of helpful postings on the use
    of IReportServerCredentials but nothing that provides suggestions for this cross domain issue. Hope someone has some ideas on this one. Thanking you in advance for your response.
    Using VS 2008 VB.NET web app with ReportViewer control Version=8.0.0.0.
    Outside domainA Web Server IIS 8. OS = Windows NT 6.2;
    Inside domainA Windows 7 desktop; Inside domainA Windows Server 2003
    SSRS using windows authentication and on SQL Server 2012. OS = Windows NT 6.2
    The processing described below successfully produces a report when the web server app runs on a machine in the same domain as the SSRS server. For the "same domain" web app, both Win 7 desktop VS 2008 development server and Windows 2003 IIS 6 have
    been tested successfully.
    The report fails with error "The request failed with HTTP status 401: not authorized " when the web app is run from a windows IIS 8 machine (outward or Internet facing web server) that is not in the domain of the SSRS server. The ReportViewer control
    credentials (provided by IReportServerCredentials and taken from the web.config file) match a domain account in the same domain as the SSRS
    server and one that has browser permission on the report folder. The same credentials are used successfully for reports requested from within the SSRS domain.
    One interesting thing is that on the Internet facing web server, I can access the report via a browser request. So it is possible to have a user request coming from the Internet facing machine get through the SSRS windows authentication. Just does not
    work for the ReportViewer.
    Using IReportServerCredentials interface per example provided by Microsoft msdn site. Code listed below.
    IReportServerCredentials would appear to be a viable approach because it can pass credentials of a windows account known to the SSRS server, but not known to the client machine. By the way, database calls to SQL Server in domainA using a SQL Server
    native login account work fine. So the network support communication to a domain that the web server does not belong to.
    <Serializable()> _
    Public NotInheritable Class MyReportServerCredentials
        Implements IReportServerCredentials
        Public ReadOnly Property ImpersonationUser() As System.Security.Principal.WindowsIdentity _
            Implements IReportServerCredentials.ImpersonationUser
            Get
                'Use the default windows user.  Credentials will be
                'provided by the NetworkCredentials property.
                Return Nothing
            End Get
        End Property
        Public ReadOnly Property NetworkCredentials() As ICredentials _
                Implements IReportServerCredentials.NetworkCredentials
            Get
                'Read the user information from the web.config file. 
                'By reading the information on demand instead of storing
                'it, the credentials will not be stored in session,
                'reducing the vulnerable surface area to the web.config
                'file, which can be secured with an ACL.
                'User name
                Dim userName As String = _
                    ConfigurationManager.AppSettings("MyReportViewerUser")
                If (String.IsNullOrEmpty(userName)) Then
                    Throw New Exception("Missing user name from web.config file")
                End If
                'Password
                Dim password As String = _
                    ConfigurationManager.AppSettings("MyReportViewerPassword")
                If (String.IsNullOrEmpty(password)) Then
                    Throw New Exception("Missing password from web.config file")
                End If
                'Domain
                Dim domain As String = _
                    ConfigurationManager.AppSettings("MyReportViewerDomain")
                If (String.IsNullOrEmpty(domain)) Then
                    Throw New Exception("Missing domain from web.config file")
                End If
                Return New NetworkCredential(userName, password, domain)
            End Get
        End Property
        Public Function GetFormsCredentials(ByRef authCookie As Cookie, _
                       ByRef userName As String, _
                       ByRef password As String, _
                       ByRef authority As String) As Boolean _
            Implements IReportServerCredentials.GetFormsCredentials
            authCookie = Nothing
            userName = Nothing
            password = Nothing
            authority = Nothing
            'Not using form credentials
            Return False
        End Function
    End Class
    'Set the ReportViewer values and retrieve the report from the SSRS server into a pdf file on the client machine.
    ProposalRptViewer.ProcessingMode = Microsoft.Reporting.WebForms.ProcessingMode.Remote
    ' Set the ReportViewer ReportServerCredentials from the MyReportServerCredentials Class.
    ' Note the credentials are for a domain account defined in the same domain that the SSRS server belongs to and one that has browser permission on the report folder.
    ProposalRptViewer.ServerReport.ReportServerCredentials = _
         New MyReportServerCredentials()
    ProposalRptViewer.ServerReport.ReportServerUrl = New Uri(System.Configuration.ConfigurationManager.AppSettings(Web.[Global].CfgKeyReportServerURL))
    ProposalRptViewer.ServerReport.ReportPath = System.Configuration.ConfigurationManager.AppSettings(Web.[Global].CfgKeyReportPathProposal)
    ProposalRptViewer.ShowCredentialPrompts = False     ' disable prompting for data source credentials
    Dim paramList As New Generic.List(Of ReportParameter)
    Dim pInfo As ReportParameterInfoCollection
    pInfo = ProposalRptViewer.ServerReport.GetParameters()
    paramList.Add(New ReportParameter("ProposalID", ProposalID, True))paramList.Add(New ReportParameter("Entity", Entity, True))
    paramList.Add(New ReportParameter("intRatesPage", intRatesPage1, True))
    ProposalRptViewer.ServerReport.SetParameters(paramList)
    ' Process and render the report
    ProposalRptViewer.ServerReport.Refresh()
    Dim mimeType As String = Nothing
    Dim encoding As String = Nothing
    Dim streams As String() = Nothing
    Dim extension As String = Nothing
    Dim warnings As Microsoft.Reporting.WebForms.Warning() = Nothing
    Dim returnValue As Byte()
    ' Render the proposal Rate Page 1 report to a Byte Array output in pdf file format.
    returnValue = ProposalRptViewer.ServerReport.Render("PDF", Nothing, mimeType, encoding, extension, streams, warnings)
    An error only occurs for web server not in the domain of SSRS Server:
    The request failed with HTTP status 401: Unauthorized.
    Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.
    Exception Details: System.Net.WebException: The request failed with HTTP status 401: Unauthorized.
    Source Error:
    An unhandled exception was generated during the execution of the current web request. Information regarding the origin and location of the exception can be identified using the exception stack
    trace below.
    Stack Trace:
    [WebException: The request failed with HTTP status 401: Unauthorized.]
       Microsoft.SqlServer.ReportingServices2005.Execution.RSExecutionConnection.GetSecureMethods() +236
       Microsoft.SqlServer.ReportingServices2005.Execution.RSExecutionConnection.IsSecureMethod(String methodname) +58
       Microsoft.SqlServer.ReportingServices2005.Execution.RSExecutionConnection.SetConnectionSSLForMethod(String methodname) +16
       Microsoft.SqlServer.ReportingServices2005.Execution.RSExecutionConnection.LoadReport(String Report, String HistoryID) +226
       Microsoft.Reporting.WebForms.ServerReport.GetExecutionInfo() +192
       Microsoft.Reporting.WebForms.ServerReport.SetParameters(IEnumerable`1 parameters) +136
       DeltaRater.Web.ViewRates.btnCreateProposal_Click(Object sender, EventArgs e) in C:\alex\~~_____Rapid_Rater\SourceDir_VS2008_Jan17_2014\DRR\ViewRates.aspx.vb:911
       System.Web.UI.WebControls.Button.OnClick(EventArgs e) +115
       System.Web.UI.WebControls.Button.RaisePostBackEvent(String eventArgument) +140
       System.Web.UI.Page.RaisePostBackEvent(IPostBackEventHandler sourceControl, String eventArgument) +29
       System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +2981
    Version Information: Microsoft .NET Framework Version:2.0.50727.8009; ASP.NET Version:2.0.50727.8010

    I got the answer to my question by following suggestions by Irb on another technical forum.
    From web server (not on same domain), I was passing credentials of a domain account on the SSRS server. Irb suggested I create a local account on the SSRS server and pass those credentials. I tried this but got the same results.
    This approach worked for web server in SSRS domain, but failed with 401 Unauthorized for web server outside the SSRS domain. Per suggestion for local account on SSRS server, I tried passing empty string "" as the domain via IReportServerCredentials.
    Again this works for web server in the same domain as SSRS. But I get the 401 Unauthorized error when the web server is outside the domain. In testing and checking similar posts, I discovered an additional piece was required for the report request to work
    across domains. The default user did not have authority to send the request and/or receive the report. Adding the following in <system.web> section of web.config file was needed.
    <identity impersonate="true" userName="localwindowsuser" password="#########"/>          where "localwindowsuser" is a windows user defined on the web server.
    I never needed this extra piece when the web server ran in the same domain as the SSRS server. I thank Irb for making me go through the details of additional tests because that is how I stumbled across an identity comment and ultimately got things working.

  • Calling secured web service, cross domain security

    Hey all,
    I am trying to call a secured service, for which i need to enable cross domain security.
    I have followed the steps described in
    http://download.oracle.com/docs/cd/E15523_01/web.1111/e13707/domain.htm#i1176046
    i.e. enabling trust between weblogic server domains.
    The problem is: -
    User authentication is working fine, but i am not able to invoke the operation.
    Here is the content of log file
    [2010-04-01T12:15:58.109+05:30] [AdminServer] [WARNING] [] [org.apache.myfaces.trinidadinternal.context.RequestContextImpl] [host: sjandhya-idc1] [nwaddr: 10.177.219.95] [tid: [ACTIVE].ExecuteThread: '8' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: <anonymous>] [ecid: 0000IUs7bmy1f_JLMm0Fye1Bg7vS000325,0] [APP: em] [TARGET: /Farm_test_domain/test_domain/AdminServer/em] [TARGET_TYPE: j2ee_application] Could not find partial trigger port from RichTreeTable[org.apache.myfaces.trinidad.component.UIXTree$RowKeyFacesBeanWrapper@146ad85, id=treetablerequest] with the supported partialTriggers syntax. The partial trigger was found with the deprecated syntax. Please use the supported syntax.
    [2010-04-01T12:15:58.109+05:30] [AdminServer] [WARNING] [] [org.apache.myfaces.trinidadinternal.context.RequestContextImpl] [host: sjandhya-idc1] [nwaddr: 10.177.219.95] [tid: [ACTIVE].ExecuteThread: '8' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: <anonymous>] [ecid: 0000IUs7bmy1f_JLMm0Fye1Bg7vS000325,0] [APP: em] [TARGET: /Farm_test_domain/test_domain/AdminServer/em] [TARGET_TYPE: j2ee_application] Could not find partial trigger service from RichTreeTable[org.apache.myfaces.trinidad.component.UIXTree$RowKeyFacesBeanWrapper@146ad85, id=treetablerequest] with the supported partialTriggers syntax. The partial trigger was found with the deprecated syntax. Please use the supported syntax.
    [2010-04-01T12:15:58.125+05:30] [AdminServer] [WARNING] [] [org.apache.myfaces.trinidadinternal.context.RequestContextImpl] [host: sjandhya-idc1] [nwaddr: 10.177.219.95] [tid: [ACTIVE].ExecuteThread: '8' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: <anonymous>] [ecid: 0000IUs7bmy1f_JLMm0Fye1Bg7vS000325,0] [APP: em] [TARGET: /Farm_test_domain/test_domain/AdminServer/em] [TARGET_TYPE: j2ee_application] Could not find partial trigger invoke from RichTreeTable[org.apache.myfaces.trinidad.component.UIXTree$RowKeyFacesBeanWrapper@146ad85, id=treetablerequest] with the supported partialTriggers syntax. The partial trigger was found with the deprecated syntax. Please use the supported syntax.
    [2010-04-01T12:15:58.125+05:30] [AdminServer] [WARNING] [] [org.apache.myfaces.trinidadinternal.context.RequestContextImpl] [host: sjandhya-idc1] [nwaddr: 10.177.219.95] [tid: [ACTIVE].ExecuteThread: '8' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: <anonymous>] [ecid: 0000IUs7bmy1f_JLMm0Fye1Bg7vS000325,0] [APP: em] [TARGET: /Farm_test_domain/test_domain/AdminServer/em] [TARGET_TYPE: j2ee_application] Could not find partial trigger invoke_footer from RichTreeTable[org.apache.myfaces.trinidad.component.UIXTree$RowKeyFacesBeanWrapper@146ad85, id=treetablerequest] with the supported partialTriggers syntax. The partial trigger was found with the deprecated syntax. Please use the supported syntax.
    [2010-04-01T12:15:58.125+05:30] [AdminServer] [WARNING] [] [org.apache.myfaces.trinidadinternal.context.RequestContextImpl] [host: sjandhya-idc1] [nwaddr: 10.177.219.95] [tid: [ACTIVE].ExecuteThread: '8' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: <anonymous>] [ecid: 0000IUs7bmy1f_JLMm0Fye1Bg7vS000325,0] [APP: em] [TARGET: /Farm_test_domain/test_domain/AdminServer/em] [TARGET_TYPE: j2ee_application] Could not find partial trigger operation from RichTreeTable[org.apache.myfaces.trinidad.component.UIXTree$RowKeyFacesBeanWrapper@146ad85, id=treetablerequest] with the supported partialTriggers syntax. The partial trigger was found with the deprecated syntax. Please use the supported syntax.
    [2010-04-01T12:15:58.125+05:30] [AdminServer] [WARNING] [] [org.apache.myfaces.trinidadinternal.context.RequestContextImpl] [host: sjandhya-idc1] [nwaddr: 10.177.219.95] [tid: [ACTIVE].ExecuteThread: '8' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: <anonymous>] [ecid: 0000IUs7bmy1f_JLMm0Fye1Bg7vS000325,0] [APP: em] [TARGET: /Farm_test_domain/test_domain/AdminServer/em] [TARGET_TYPE: j2ee_application] Could not find partial trigger request_xml_choice_toggle from RichTreeTable[org.apache.myfaces.trinidad.component.UIXTree$RowKeyFacesBeanWrapper@146ad85, id=treetablerequest] with the supported partialTriggers syntax. The partial trigger was found with the deprecated syntax. Please use the supported syntax.
    [2010-04-01T12:15:59.031+05:30] [AdminServer] [NOTIFICATION] [] [oracle.wsm.agent.WSMAgent] [host: sjandhya-idc1] [nwaddr: 10.177.219.95] [tid: [ACTIVE].ExecuteThread: '8' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: <anonymous>] [ecid: 0000IUs7bmy1f_JLMm0Fye1Bg7vS000325,0] [APP: em] [TARGET: /Farm_test_domain/test_domain/AdminServer/em] [TARGET_TYPE: j2ee_application] WSMAgent is initialized for category=management, function=agent.function.client, topologyNodePath=/wls/em/EJBs/default/COMPONENTs/default/WEBSERVICECLIENTs/ItemCostService/PORTs/ItemCostServiceSoapHttpPort/INTERCEPTORs/, isJ2EE=true
    [2010-04-01T12:15:59.046+05:30] [AdminServer] [NOTIFICATION] [] [oracle.wsm.security.policy.scenario.executor.SecurityScenarioExecutor] [host: sjandhya-idc1] [nwaddr: 10.177.219.95] [tid: [ACTIVE].ExecuteThread: '8' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: <anonymous>] [ecid: 0000IUs7bmy1f_JLMm0Fye1Bg7vS000325,0] [APP: em] [TARGET: /Farm_test_domain/test_domain/AdminServer/em] [TARGET_TYPE: j2ee_application] Recipient Alias property not configured in the policy. Defaulting to encrypting with signers certificate.
    [2010-04-01T12:15:59.046+05:30] [AdminServer] [NOTIFICATION] [] [oracle.wsm.agent.WSMAgent] [host: sjandhya-idc1] [nwaddr: 10.177.219.95] [tid: [ACTIVE].ExecuteThread: '8' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: <anonymous>] [ecid: 0000IUs7bmy1f_JLMm0Fye1Bg7vS000325,0] [APP: em] [TARGET: /Farm_test_domain/test_domain/AdminServer/em] [TARGET_TYPE: j2ee_application] WSMAgent is initialized for category=security, function=agent.function.client, topologyNodePath=/wls/em/EJBs/default/COMPONENTs/default/WEBSERVICECLIENTs/ItemCostService/PORTs/ItemCostServiceSoapHttpPort/INTERCEPTORs/, isJ2EE=true
    [2010-04-01T12:15:59.328+05:30] [soa_server1] [NOTIFICATION] [] [oracle.soa.mediator.serviceEngine] [host: sjandhya-idc1] [nwaddr: 10.177.219.95] [tid: [ACTIVE].ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: all_function_all_data] [ecid: 0000IUs7bmy1f_JLMm0Fye1Bg7vS000325,0:3] [WEBSERVICE_PORT.name: ItemCostServiceSoapHttpPort] [APP: soa-infra] [composite_name: calling_secured_web_service] [J2EE_MODULE.name: fabric] [component_instance_id: 3B28BA003D5A11DFBF807548C0B7C19C] [component_name: Mediator1] [J2EE_APP.name: soa-infra] [WEBSERVICE.name: ItemCostService] [composite_instance_id: 30022] [TARGET: /Farm_test_domain/test_domain/soa_server1/soa-infra] [TARGET_TYPE: oracle_soainfra] MediatorServiceEngine received a request for operation = retrieveItemCost
    [2010-04-01T12:16:02.109+05:30] [soa_server1] [WARNING] [] [oracle.soa.mediator.common] [host: sjandhya-idc1] [nwaddr: 10.177.219.95] [tid: [ACTIVE].ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: all_function_all_data] [ecid: 0000IUs7bmy1f_JLMm0Fye1Bg7vS000325,0:3] [WEBSERVICE_PORT.name: ItemCostServiceSoapHttpPort] [APP: soa-infra] [composite_name: calling_secured_web_service] [J2EE_MODULE.name: fabric] [component_instance_id: 3B28BA003D5A11DFBF807548C0B7C19C] [component_name: Mediator1] [J2EE_APP.name: soa-infra] [WEBSERVICE.name: ItemCostService] [composite_instance_id: 30022] [TARGET: /Farm_test_domain/test_domain/soa_server1/soa-infra] [TARGET_TYPE: oracle_soainfra] Payload after BaseActionHander.requestMessage :{parameters=oracle.xml.parser.v2.XMLElement@137ba0c}
    [2010-04-01T12:16:02.109+05:30] [soa_server1] [WARNING] [] [oracle.soa.mediator.common] [host: sjandhya-idc1] [nwaddr: 10.177.219.95] [tid: [ACTIVE].ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: all_function_all_data] [ecid: 0000IUs7bmy1f_JLMm0Fye1Bg7vS000325,0:3] [WEBSERVICE_PORT.name: ItemCostServiceSoapHttpPort] [APP: soa-infra] [composite_name: calling_secured_web_service] [J2EE_MODULE.name: fabric] [component_instance_id: 3B28BA003D5A11DFBF807548C0B7C19C] [component_name: Mediator1] [J2EE_APP.name: soa-infra] [WEBSERVICE.name: ItemCostService] [composite_instance_id: 30022] [TARGET: /Farm_test_domain/test_domain/soa_server1/soa-infra] [TARGET_TYPE: oracle_soainfra] Properties after BaseActionHander.requestMessage :{ReferenceInstance=[email protected]9371, to=http://adc60091fems.us.oracle.com:6079/cstItemCosts/ItemCostService, oracle.fabric.security.identity.subject=Subject:[[
    Principal: CrossDomainConnectors
    Principal: all_function_all_data
    Principal: authenticated-role
    Private Credential: Subject:
    Principal: all_function_all_data
    Principal: CrossDomainConnectors
    , tracking.compositeInstanceId=30022, tracking.ecid=0000IUs7bmy1f_JLMm0Fye1Bg7vS000325, tracking.conversationId=null, tracking.compositeInstanceCreatedTime=Thu Apr 01 12:15:59 IST 2010, action=http://xmlns.oracle.com/apps/scm/costing/itemCosts/service/ItemCostService/retrieveItemCostRequest, tracking.parentComponentInstanceId=reference:30019, MESH_METRICS=null, tracking.parentReferenceId=mediator:3B28BA003D5A11DFBF807548C0B7C19C:3B4087C03D5A11DFBF807548C0B7C19C:req, transport.http.remoteAddress=10.177.219.95}
    [2010-04-01T12:16:02.125+05:30] [soa_server1] [WARNING] [] [oracle.soa.mediator.common] [host: sjandhya-idc1] [nwaddr: 10.177.219.95] [tid: [ACTIVE].ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: all_function_all_data] [ecid: 0000IUs7bmy1f_JLMm0Fye1Bg7vS000325,0:3] [WEBSERVICE_PORT.name: ItemCostServiceSoapHttpPort] [APP: soa-infra] [composite_name: calling_secured_web_service] [J2EE_MODULE.name: fabric] [component_instance_id: 3B28BA003D5A11DFBF807548C0B7C19C] [component_name: Mediator1] [J2EE_APP.name: soa-infra] [WEBSERVICE.name: ItemCostService] [composite_instance_id: 30022] [TARGET: /Farm_test_domain/test_domain/soa_server1/soa-infra] [TARGET_TYPE: oracle_soainfra] Headers after BaseActionHander.requestMessage :[]
    [2010-04-01T12:16:03.562+05:30] [soa_server1] [ERROR] [] [oracle.soa.mediator.serviceEngine] [host: sjandhya-idc1] [nwaddr: 10.177.219.95] [tid: [ACTIVE].ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: all_function_all_data] [ecid: 0000IUs7bmy1f_JLMm0Fye1Bg7vS000325,0:3] [WEBSERVICE_PORT.name: ItemCostServiceSoapHttpPort] [APP: soa-infra] [composite_name: calling_secured_web_service] [J2EE_MODULE.name: fabric] [component_instance_id: 3B28BA003D5A11DFBF807548C0B7C19C] [component_name: Mediator1] [J2EE_APP.name: soa-infra] [WEBSERVICE.name: ItemCostService] [composite_instance_id: 30022] [TARGET: /Farm_test_domain/test_domain/soa_server1/soa-infra] [TARGET_TYPE: oracle_soainfra] Rolling back transaction due to ORAMED-03303:[Unexpected exception in case execution]Unexpected exception in request response operation "retrieveItemCost" on reference "Service1". Possible Fix:Check whether the reference service is properly configured and running or look at exception for analysing the reason or contact oracle support.
    [2010-04-01T12:16:03.578+05:30] [soa_server1] [ERROR] [] [oracle.soa.mediator.serviceEngine] [host: sjandhya-idc1] [nwaddr: 10.177.219.95] [tid: [ACTIVE].ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: all_function_all_data] [ecid: 0000IUs7bmy1f_JLMm0Fye1Bg7vS000325,0:3] [WEBSERVICE_PORT.name: ItemCostServiceSoapHttpPort] [APP: soa-infra] [composite_name: calling_secured_web_service] [J2EE_MODULE.name: fabric] [component_instance_id: 3B28BA003D5A11DFBF807548C0B7C19C] [component_name: Mediator1] [J2EE_APP.name: soa-infra] [WEBSERVICE.name: ItemCostService] [composite_instance_id: 30022] [TARGET: /Farm_test_domain/test_domain/soa_server1/soa-infra] [TARGET_TYPE: oracle_soainfra] Got an exception: oracle.fabric.common.FabricInvocationException: javax.xml.ws.soap.SOAPFaultException: FailedCheck : failure in security check[[
    oracle.tip.mediator.infra.exception.MediatorException: ORAMED-03303:[Unexpected exception in case execution]Unexpected exception in request response operation "retrieveItemCost" on reference "Service1". Possible Fix:Check whether the reference service is properly configured and running or look at exception for analysing the reason or contact oracle support.
    at oracle.tip.mediator.service.SyncRequestResponseHandler.handleFault(SyncRequestResponseHandler.java:207)
    at oracle.tip.mediator.service.SyncRequestResponseHandler.process(SyncRequestResponseHandler.java:123)
    at oracle.tip.mediator.service.ActionProcessor.onMessage(ActionProcessor.java:64)
    at oracle.tip.mediator.dispatch.MessageDispatcher.executeCase(MessageDispatcher.java:124)
    at oracle.tip.mediator.dispatch.InitialMessageDispatcher.processCase(InitialMessageDispatcher.java:514)
    at oracle.tip.mediator.dispatch.InitialMessageDispatcher.processCases(InitialMessageDispatcher.java:417)
    at oracle.tip.mediator.dispatch.InitialMessageDispatcher.processCases(InitialMessageDispatcher.java:301)
    at oracle.tip.mediator.dispatch.InitialMessageDispatcher.dispatch(InitialMessageDispatcher.java:137)
    at oracle.tip.mediator.serviceEngine.MediatorServiceEngine.process(MediatorServiceEngine.java:779)
    at oracle.tip.mediator.serviceEngine.MediatorServiceEngine.request(MediatorServiceEngine.java:650)
    at oracle.integration.platform.blocks.mesh.SynchronousMessageHandler.doRequest(SynchronousMessageHandler.java:139)
    at oracle.integration.platform.blocks.mesh.MessageRouter.request(MessageRouter.java:179)
    at oracle.integration.platform.blocks.mesh.MeshImpl$2.run(MeshImpl.java:167)
    at java.security.AccessController.doPrivileged(Native Method)
    at javax.security.auth.Subject.doAs(Subject.java:396)
    at oracle.integration.platform.blocks.mesh.MeshImpl.doRequestAsSubject(MeshImpl.java:165)
    at oracle.integration.platform.blocks.mesh.MeshImpl.request(MeshImpl.java:141)
    at sun.reflect.GeneratedMethodAccessor1762.invoke(Unknown Source)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:597)
    at org.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:296)
    at org.springframework.aop.framework.ReflectiveMethodInvocation.invokeJoinpoint(ReflectiveMethodInvocation.java:177)
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:144)
    at oracle.integration.platform.metrics.PhaseEventAspect.invoke(PhaseEventAspect.java:59)
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:166)
    at org.springframework.aop.framework.JdkDynamicAopProxy.invoke(JdkDynamicAopProxy.java:204)
    at $Proxy184.request(Unknown Source)
    at oracle.integration.platform.blocks.soap.WebServiceEntryBindingComponent.doMessageProcessing(WebServiceEntryBindingComponent.java:1169)
    at oracle.integration.platform.blocks.soap.WebServiceEntryBindingComponent.processIncomingMessage(WebServiceEntryBindingComponent.java:768)
    at oracle.integration.platform.blocks.soap.FabricProvider.processMessage(FabricProvider.java:113)
    at oracle.j2ee.ws.server.provider.ProviderProcessor.doEndpointProcessing(ProviderProcessor.java:1160)
    at oracle.j2ee.ws.server.WebServiceProcessor$1.run(WebServiceProcessor.java:896)
    at java.security.AccessController.doPrivileged(Native Method)
    at javax.security.auth.Subject.doAsPrivileged(Subject.java:517)
    at oracle.security.jps.internal.jaas.AccActionExecutor.execute(AccActionExecutor.java:47)
    at oracle.security.jps.internal.jaas.CascadeActionExecutor$SubjectPrivilegedExceptionAction.run(CascadeActionExecutor.java:79)
    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:363)
    at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:147)
    at weblogic.security.Security.runAs(Security.java:61)
    at oracle.security.jps.wls.jaas.WlsActionExecutor.execute(WlsActionExecutor.java:48)
    at oracle.security.jps.internal.jaas.CascadeActionExecutor.execute(CascadeActionExecutor.java:52)
    at oracle.security.jps.internal.jaas.AbstractSubjectSecurity.executeAs(AbstractSubjectSecurity.java:105)
    at oracle.j2ee.ws.server.provider.GenericProviderPlatform.runAs(GenericProviderPlatform.java:302)
    at oracle.j2ee.ws.server.WebServiceProcessor.invokeEndpointImplementation(WebServiceProcessor.java:903)
    at oracle.j2ee.ws.server.provider.ProviderProcessor.doRequestProcessing(ProviderProcessor.java:561)
    at oracle.j2ee.ws.server.WebServiceProcessor.processRequest(WebServiceProcessor.java:216)
    at oracle.j2ee.ws.server.WebServiceProcessor.doService(WebServiceProcessor.java:179)
    at oracle.j2ee.ws.server.WebServiceServlet.doPost(WebServiceServlet.java:417)
    at oracle.integration.platform.blocks.soap.FabricProviderServlet.doPost(FabricProviderServlet.java:480)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:727)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:820)
    at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:227)
    at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:125)
    at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:292)
    at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:26)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
    at oracle.dms.wls.DMSServletFilter.doFilter(DMSServletFilter.java:326)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
    at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3592)
    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
    at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:121)
    at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2202)
    at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2108)
    at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1432)
    at weblogic.work.ExecuteThread.execute(ExecuteThread.java:201)
    at weblogic.work.ExecuteThread.run(ExecuteThread.java:173)
    Caused by: oracle.fabric.common.FabricInvocationException: javax.xml.ws.soap.SOAPFaultException: FailedCheck : failure in security check
    at oracle.integration.platform.blocks.soap.WebServiceExternalBindingComponent.throwFabricInvocationException(WebServiceExternalBindingComponent.java:414)
    at oracle.integration.platform.blocks.soap.WebServiceExternalBindingComponent.throwFabricInvocationExceptionForSoapFault(WebServiceExternalBindingComponent.java:410)
    at oracle.integration.platform.blocks.soap.WebServiceExternalBindingComponent.processSOAPFault(WebServiceExternalBindingComponent.java:393)
    at oracle.integration.platform.blocks.soap.WebServiceExternalBindingComponent.processOutboundMessage(WebServiceExternalBindingComponent.java:252)
    at oracle.integration.platform.blocks.soap.WebServiceExternalBindingComponent.sendSOAPMessage(WebServiceExternalBindingComponent.java:635)
    at oracle.integration.platform.blocks.soap.WebServiceExternalBindingComponent.request(WebServiceExternalBindingComponent.java:525)
    at oracle.integration.platform.blocks.mesh.SynchronousMessageHandler.doRequest(SynchronousMessageHandler.java:139)
    at oracle.integration.platform.blocks.mesh.MessageRouter.request(MessageRouter.java:179)
    at oracle.integration.platform.blocks.mesh.MeshImpl$2.run(MeshImpl.java:167)
    at java.security.AccessController.doPrivileged(Native Method)
    at javax.security.auth.Subject.doAs(Subject.java:396)
    at oracle.integration.platform.blocks.mesh.MeshImpl.doRequestAsSubject(MeshImpl.java:165)
    at oracle.integration.platform.blocks.mesh.MeshImpl.request(MeshImpl.java:141)
    at sun.reflect.GeneratedMethodAccessor1762.invoke(Unknown Source)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:597)
    at org.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:296)
    at org.springframework.aop.framework.ReflectiveMethodInvocation.invokeJoinpoint(ReflectiveMethodInvocation.java:177)
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:144)
    at oracle.integration.platform.metrics.PhaseEventAspect.invoke(PhaseEventAspect.java:71)
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:166)
    at org.springframework.aop.framework.JdkDynamicAopProxy.invoke(JdkDynamicAopProxy.java:204)
    at $Proxy184.request(Unknown Source)
    at oracle.tip.mediator.serviceEngine.MediatorServiceEngine.request2Mesh(MediatorServiceEngine.java:981)
    at oracle.tip.mediator.service.BaseActionHandler.requestProcess(BaseActionHandler.java:202)
    at oracle.tip.mediator.service.BaseActionHandler.requestProcess(BaseActionHandler.java:94)
    at oracle.tip.mediator.service.BaseActionHandler.requestProcess(BaseActionHandler.java:74)
    at oracle.tip.mediator.service.SyncRequestResponseHandler.process(SyncRequestResponseHandler.java:74)
    ... 64 more
    Caused by: javax.xml.ws.soap.SOAPFaultException: FailedCheck : failure in security check
    at oracle.j2ee.ws.client.jaxws.DispatchImpl.throwJAXWSSoapFaultException(DispatchImpl.java:882)
    at oracle.j2ee.ws.client.jaxws.DispatchImpl.invoke(DispatchImpl.java:715)
    at oracle.j2ee.ws.client.jaxws.OracleDispatchImpl.synchronousInvocationWithRetry(OracleDispatchImpl.java:226)
    at oracle.j2ee.ws.client.jaxws.OracleDispatchImpl.invoke(OracleDispatchImpl.java:97)
    at oracle.integration.platform.blocks.soap.AbstractWebServiceBindingComponent.dispatchRequest(AbstractWebServiceBindingComponent.java:450)
    at oracle.integration.platform.blocks.soap.WebServiceExternalBindingComponent.processOutboundMessage(WebServiceExternalBindingComponent.java:185)
    ... 88 more
    [2010-04-01T12:16:03.578+05:30] [soa_server1] [ERROR] [] [oracle.soa.mediator.serviceEngine] [host: sjandhya-idc1] [nwaddr: 10.177.219.95] [tid: [ACTIVE].ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: all_function_all_data] [ecid: 0000IUs7bmy1f_JLMm0Fye1Bg7vS000325,0:3] [WEBSERVICE_PORT.name: ItemCostServiceSoapHttpPort] [APP: soa-infra] [composite_name: calling_secured_web_service] [J2EE_MODULE.name: fabric] [component_instance_id: 3B28BA003D5A11DFBF807548C0B7C19C] [component_name: Mediator1] [J2EE_APP.name: soa-infra] [WEBSERVICE.name: ItemCostService] [composite_instance_id: 30022] [TARGET: /Farm_test_domain/test_domain/soa_server1/soa-infra] [TARGET_TYPE: oracle_soainfra] Updating fault processing DMS metrics
    [2010-04-01T12:16:03.656+05:30] [soa_server1] [NOTIFICATION] [] [oracle.soa.mediator.serviceEngine] [host: sjandhya-idc1] [nwaddr: 10.177.219.95] [tid: [ACTIVE].ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: all_function_all_data] [ecid: 0000IUs7bmy1f_JLMm0Fye1Bg7vS000325,0:3] [WEBSERVICE_PORT.name: ItemCostServiceSoapHttpPort] [APP: soa-infra] [composite_name: calling_secured_web_service] [J2EE_MODULE.name: fabric] [component_instance_id: 3B28BA003D5A11DFBF807548C0B7C19C] [component_name: Mediator1] [J2EE_APP.name: soa-infra] [WEBSERVICE.name: ItemCostService] [composite_instance_id: 30022] [TARGET: /Farm_test_domain/test_domain/soa_server1/soa-infra] [TARGET_TYPE: oracle_soainfra] MediatorServiceEngine returning a response for operation = retrieveItemCost
    [2010-04-01T12:16:03.656+05:30] [soa_server1] [NOTIFICATION] [] [oracle.wsm.agent.WSMAgent] [host: sjandhya-idc1] [nwaddr: 10.177.219.95] [tid: [ACTIVE].ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: all_function_all_data] [ecid: 0000IUs7bmy1f_JLMm0Fye1Bg7vS000325,0:3] [WEBSERVICE_PORT.name: ItemCostServiceSoapHttpPort] [APP: soa-infra] [J2EE_MODULE.name: fabric] [J2EE_APP.name: soa-infra] [WEBSERVICE.name: ItemCostService] [TARGET: /Farm_test_domain/test_domain/soa_server1/soa-infra] [TARGET_TYPE: oracle_soainfra] Message Type is normalized, exiting agent.processFault()
    [2010-04-01T12:16:03.656+05:30] [soa_server1] [NOTIFICATION] [] [oracle.wsm.agent.WSMAgent] [host: sjandhya-idc1] [nwaddr: 10.177.219.95] [tid: [ACTIVE].ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: all_function_all_data] [ecid: 0000IUs7bmy1f_JLMm0Fye1Bg7vS000325,0:3] [WEBSERVICE_PORT.name: ItemCostServiceSoapHttpPort] [APP: soa-infra] [J2EE_MODULE.name: fabric] [J2EE_APP.name: soa-infra] [WEBSERVICE.name: ItemCostService] [TARGET: /Farm_test_domain/test_domain/soa_server1/soa-infra] [TARGET_TYPE: oracle_soainfra] Message Type is normalized, exiting agent.processFault()
    [2010-04-01T12:16:04.296+05:30] [soa_server1] [ERROR] [OWS-04115] [oracle.webservices.service] [host: sjandhya-idc1] [nwaddr: 10.177.219.95] [tid: [ACTIVE].ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: <anonymous>] [ecid: 0000IUs7bmy1f_JLMm0Fye1Bg7vS000325,0:3] [APP: soa-infra] [arg: FabricProvider] [arg: javax.xml.rpc.soap.SOAPFaultException: FailedCheck : failure in security check] [TARGET: /Farm_test_domain/test_domain/soa_server1/soa-infra] [TARGET_TYPE: oracle_soainfra] An error occurred for port: FabricProvider: javax.xml.rpc.soap.SOAPFaultException: FailedCheck : failure in security check.
    [2010-04-01T12:16:04.312+05:30] [AdminServer] [NOTIFICATION] [] [oracle.sysman.emSDK.webservices.wsdlapi.dispatch.DispatchUtil] [host: sjandhya-idc1] [nwaddr: 10.177.219.95] [tid: [ACTIVE].ExecuteThread: '8' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: <anonymous>] [ecid: 0000IUs7bmy1f_JLMm0Fye1Bg7vS000325,0] [APP: em] [TARGET: /Farm_test_domain/test_domain/AdminServer/em] [TARGET_TYPE: j2ee_application] Dispatch.invoke failed.Exception stack trace written to trace file.
    [2010-04-01T12:16:04.343+05:30] [AdminServer] [ERROR] [EM-00453] [oracle.sysman.emas.model.wsmgt.WSTestModel] [host: sjandhya-idc1] [nwaddr: 10.177.219.95] [tid: [ACTIVE].ExecuteThread: '8' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: <anonymous>] [ecid: 0000IUs7bmy1f_JLMm0Fye1Bg7vS000325,0] [APP: em] [TARGET: /Farm_test_domain/test_domain/AdminServer/em] [TARGET_TYPE: j2ee_application] Failed to invoke operation
    [2010-04-01T12:16:04.343+05:30] [AdminServer] [ERROR] [EM-00453] [oracle.sysman.emas.view.wsmgt.WSView] [host: sjandhya-idc1] [nwaddr: 10.177.219.95] [tid: [ACTIVE]*.ExecuteThread: '8' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: <anonymous>] [ecid: 0000IUs7bmy1f_JLMm0Fye1Bg7vS000325,0] [APP: em] [TARGET: /Farm_test_domain/test_domain/AdminServer/em] [TARGET_TYPE: j2ee_application] Failed to invoke operation*
    [2010-04-01T12:16:04.359+05:30] [AdminServer] [NOTIFICATION:24] [] [oracle.sysman.core.app.menu.XMLMenuManager] [host: sjandhya-idc1] [nwaddr: 10.177.219.95] [tid: [ACTIVE].ExecuteThread: '8' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: <anonymous>] [ecid: 0000IUs7bmy1f_JLMm0Fye1Bg7vS000325,0] [APP: em] [TARGET: /Farm_test_domain/test_domain/AdminServer/em] [TARGET_TYPE: j2ee_application] The Document for grid menu is not found.
    [2010-04-01T12:16:04.531+05:30] [AdminServer] [WARNING] [] [org.apache.myfaces.trinidad.bean.PropertyKey] [host: sjandhya-idc1] [nwaddr: 10.177.219.95] [tid: [ACTIVE].ExecuteThread: '8' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: <anonymous>] [ecid: 0000IUs7bmy1f_JLMm0Fye1Bg7vS000325,0] [APP: em] [TARGET: /Farm_test_domain/test_domain/AdminServer/em] [TARGET_TYPE: j2ee_application] Unserializable value:oracle.sysman.core.view.tgtctls.common.DefaultTreeModel@15622f9 for key:UINodePropertyKey[value,17]
    Thanks
    Nitin

    Thanks again Billy,
    I have configured a wallet with all the necessary certificates. Actually I have purchased a VeriSign trusted certificate and convert that into Oracle Wallet (p12) using openssl with appropriate password. And I'm calling UTL_HTTP.set_wallet('<path_to_wallet>','<pass_to_open_it>');
    I have send my public key to them (web service company) and they need me to send my certificate with every request so that they can authenticate.
    You are saying we don't have to write any code for TLS/SSL UTL_HTTP will take care of that, thats really good.
    One more thing I want to mention here...
    In Internet Explorer - When I am importing my certificate without my private key and trying to access web service I'm getting 404 page not found error.
    But when I'm importing my certificate with the private key, I can see WSDL and all other methods offered by that web service.
    I'm guessing Oracle Wallet that I'm creating with my certificate will store private key also. B'coz it is showing me User Certificate in Ready state.
    ORA-00600 is not giving me proper location where I can find any error in my code.
    Thanks
    -Smith

  • Business Process Apps using cross domain CSOM or REST calls: which one is the easiest to use?

    Hi
    I have build a  few (on prem) provider hosted and  SharePoint hosted apps to really surface data held in host web. Now, I want to do something a bit more complex by starting to build a process follow that makes a number of cross domain calls -
    the success handler of the preceding call setting up the next cross domain call  and so on . 
    For example:
    Document Library 1
    Document 1, Content type ct_1 (various attributes set inc taxonomy, lookup etc)
    I want to copy this document and any set fields to ……..
    Document Library 2
    Document 2, Content type ct_2 (inherits from ct_1) ( ( various attributes, set as above) 
     I just wondered if this was achievable with
    client side REST or would this be better with
    CSOM :-( Thos I am stating to hate CSOM ;-.I did have a look at server side code ( csom/rest) and I thought quite verbose and a backwards step plus not really amenable to later moving to Angular or Knockout- tho please let me know if this initial assumption
    is wrong.  
    One controversial view
    would be to code up a full  farm trust web part because the server side apis are well understood. Also,  one or two dlls are are likely to be difficult to migrate at some stage - assuming  V Next does not mechanisms to
    prevent full trust farm solutions complete with bard wire and watchtowers ;-)
    The other option thought of would be a 2013 w/f but I would a fancy form to go with this as I would want to capture user
    input
    Be interested to hear the thoughts from the community 
    Daniel, WSL
    Freelance consultant

    Hi,
    According to your post, my understanding is that you have cross-domain problems in apps for SharePoint.
    There are many different techniques to overcome cross-domain issues in JavaScript.
    You can use Rest to resolve it. Please refer to:
    Cross Domain and SharePoint Hosted Apps using REST
    More information:
    Solving cross-domain problems in apps for SharePoint
    Cross Domain and SharePoint Hosted Apps using CSOM
    Thanks,
    Linda Li                
    Forum Support
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact
    [email protected]
    Linda Li
    TechNet Community Support

  • How and when to load cross-domain.xml for web services.

    I'm accessing some 3rd party web services and so I need them to have a cross-domain.xml file, which they have done.
    In order to access their web services, am I correct that I need to load the cross-domain.xml file they put on their web server, and if so, is my code to do so below correct, which I put in my creationComplete handler function?
    Note, of course the IP address in my code is not 0.0.0.0.
    Do I need all these lines, and am I doing this correctly?
    Currently I am getting a SecurityErrorEvent.
    Security.allowDomain("0.0.0.0");
    Security.loadPolicyFile("http://0.0.0.0/crossdomain.xml");
    var request:URLRequest = new URLRequest("http://0.0.0.0/crossdomain.xml");
    var loader:URLLoader = new URLLoader();
    loader.addEventListener(Event.COMPLETE, policyLoaded);
    loader.addEventListener(IOErrorEvent.IO_ERROR, policyIOError);
    loader.addEventListener(SecurityErrorEvent.SECURITY_ERROR, policySecurityError);
    loader.load(request);

    Okay, I found that when I put the crossdomain.xml file at the root of my web site file area my hosting company provides, I do not specifically need to load the crossdomain.xml file.
    But if I want finer control over who has access to what, and I put the crossdomain.xml file in the same directory as my Flex app SWF file, what lines of the following code (or additional lines I don't know about) should I put in my app creationComplete handler function to load the crossdomain.xml file?
    Note, of course the IP address in my code is not 0.0.0.0.
    Do I need all these lines, and am I doing this correctly?
    Security.allowDomain("0.0.0.0");
    Security.loadPolicyFile("http://0.0.0.0/myAppFolder/crossdomain.xml");
    var request:URLRequest = new URLRequest("http://0.0.0.0/myAppFolder/crossdomain.xml");
    var loader:URLLoader = new URLLoader();
    loader.addEventListener(Event.COMPLETE, policyLoaded);
    loader.addEventListener(IOErrorEvent.IO_ERROR, policyIOError);
    loader.addEventListener(SecurityErrorEvent.SECURITY_ERROR, policySecurityError);
    loader.load(request);

  • I am developing a flex web application which needs to access Other domain ,is there any other way other than cross domain policy available ? please help

    i am developing a flex web application which needs to access Other domain (Payment Gateway API),is there any other way other than cross domain policy available ? please help.
    we donot have access other domain thats why we want other solution..

    All the paths to CFCs are the same in my live production site.  Can you be more specific as to what you mean by "RemoteClass aliases in your AS Classes and CFCs (if any) are correct."?  How will the app know that the CFC is on http://myLiveSite.com instead of http://myDevSite.com?  The only line of code that I have noticed that points to a URL is the endpoint in a file called _Super_XXX.as.  And at the top of that file it says that the file is not meant for editting.
    To clarify...I see your app/code all exists on a server access via a web browser so I can understand that everything still works when deployed.  Mine is a mobile app so when I am developing and testing on my local computer the URL points to my local development machine.  However when I deploy it to a mobile device like a tablet and run the app, it needs to be able to access a cfc on a remote server via a different URL ie. my http://myLiveSite.com/myCFC.cfc instead of http://localhost/myCFC.cfc
    Thanks for your help!  I will now take a look at your thread.
    Message was edited by: ace0215

  • Cross Domain Call in SharePoint Hosted app.

    Hi, I am very new in SharePoint 2013 App dev and want to understand when actually Cross domain calls are required and how we can achieve it. 
    Getting host web site title from a sharepoint hosted app needs a cross domain call?
    My point of confusion is some places I have seen we have to load SPRequestExecutor for getting data from host web  but I am able to get it using changing the context to host web and then getting the title without using SPRequestExecutor:
     appContextSite = new SP.AppContextSite(ctx, spHostUrl);
       Nweb = appContextSite.get_web();
       //Nweb = ctx.get_web();
       ctx.load(Nweb); 
    What is the difference between the two( using SPRequestExecutor and not using) and what places we need to use it and where we can get data without it ?
    please help me to resolve this confusion.
    Thanks

    Hi vmishr11,
    When you use SP.RequestExecutor, it will execute asynchronously to get data from host web. It will use like below:
    var executor = new SP.RequestExecutor(appweburl);
    executor.executeAsync(
    url:
    appweburl +
    "/_api/web/lists/getbytitle('Announcements')/items",
    method: "GET",
    headers: { "Accept": "application/json; odata=verbose" },
    success: successHandler,
    error: errorHandler
    For SP.AppContextSite, it will execute in order to get data.
    Here is a detailed article for your reference:
    How to: Access SharePoint 2013 data from apps using the cross-domain library
    Best Regards
    Zhengyu Guo
    TechNet Community Support

  • Cross Domain without an app is it possible?

    is it possible to make a cross domain call using javascript in SharePoint 2013? Please note that building a SharePoint hosted app is not an option for me. I just need to add a content editor webpart and make a call to List on site A from Site B. 
    Please help,

    Hi,
    For making a cross domain call in SharePoint, you can refer to the methods as below:
    Create Cross-Domain Proxy Page for Client-Side Scripts:
    http://www.sharepointjohn.com/sharepoint-2010-cross-domain-proxy-page-for-client-side-scripts/
    Enable cross domain call in web service Application:
    http://www.adobe.com/devnet/adobe-media-server/articles/cross-domain-xml-for-streaming.html
    For more information, you can refer to the thread:
    https://social.technet.microsoft.com/Forums/en-US/fc2dd1bf-9ac2-4f15-b521-626d06c2524b/cross-site-collection-rest-call-without-an-app?forum=sharepointdevelopment
    http://stackoverflow.com/questions/9469980/sharepoint-getlistitems-across-domain?rq=1
    http://stackoverflow.com/questions/9573790/cross-subdomain-sharepoint-list-access?rq=1
    Thanks,
    Eric
    Forum Support
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact
    [email protected]
    Eric Tao
    TechNet Community Support

  • Can i use office web app server without adding to a domain ?

    spserver.local is my domain controller webapp.spsserver.local is my office web app server(OWA)(IP:79.123.161.xxx )
    I manage to use office web app with sharepoint 2013 my OWA is in a domain (spserver.local) and it's address is http://webapp.spserver.local/hosting/discovery There
    is no problem. But I want to seperate OWA with Sharepoint and its domain I want to remove the domain.Is it possible?
    For example my OWA's ip is 79.123.161.xxx
    I want to work like this: http://79.123.161.xxx/hosting/discovery
    When I enter the path http://79.123.161.xxx/hosting/discovery there
    is an iis message "File or directory not found."

    Are you asking if you can have your OWA in different domain compared to SharePoint server domain or are you asking that your OWA does not belong to any domain and you still want to use it with SharePoint?
    If your question is regarding using OWA in different domain then I think (someone can correct me if I am wrong) OWA can run into different domain. You just need to add your SharePoint Server host domain to the Allow List for an Office Web Apps Server farm.
    http://technet.microsoft.com/en-us/library/jj219459.aspx
    If your question is related to OWA not belonging to any domain then I do not think that will work and its not supported scenario. If you read the following article it states
    "All servers in the Office Web Apps Server farm must be part of a domain. They can be in the same domain (recommended) or in domains that are in the same forest. However, Office Web Apps Server won’t work if you try to install it on a domain controller."
    http://technet.microsoft.com/en-us/library/jj219435.aspx
    Amit

  • The test couldn't sign in to Outlook Web App due to an authentication failure. Extest_ account.

    Hi.
    I'm using SCOM 2012 R2 and have imported the Exchange server 2010 MP.
    I have runned the TestCasConnectivityUser.ps1 script and almost everything is okay except for the OWA test login.
    The OWA rule is working for some time until (I think) SCOM is doing a automatic password reset of the extest_ account. Then I get the OWA error below. The other test connectivity are working. Any suggestions.
    One or more of the Outlook Web App connectivity tests had warnings. Detailed information:
    Target: xxx|xxx
    Error: The test couldn't sign in to Outlook Web App due to an authentication failure.
    URL: https://xxx.com/OWA/
    Mailbox: xxxx
    User: extest_xxx
    Details:
    [22:50:08.936] : The TrustAnySSLCertificate flag was specified, so any certificate will be trusted.
    [22:50:08.936] : Sending the HTTP GET logon request without credentials for authentication type verification.
    [22:50:09.154] : The HTTP request succeeded with result code 200 (OK).
    [22:50:09.154] : The sign-in page is from ISA Server, not Outlook Web App.
    [22:50:09.154] : The server reported that it supports authentication method FBA.
    [22:50:09.154] : This virtual directory URL type is External or Unknown, so the authentication type won't be checked.
    [22:50:09.154] : Trying to sign in with method 'Fba'.
    [22:50:09.154] : Sending HTTP request for logon page 'https://xxx.com/CookieAuth.dll?Logon'.
    [22:50:09.154] : The HTTP request succeeded with result code 200 (OK).
    [22:50:09.373] : The test couldn't sign in to Outlook Web App due to an authentication failure.
    URL: https://xxx.com/OWA/
    Mailbox: xxx
    User: extest_xxx
    [22:50:09.373] : Test failed for URL 'https://xxx/OWA/'.
    Authentication Method: FBA
    Mailbox Server: xxx
    Client Access Server Name: xxx
    Scenario: Logon
    Scenario Description: Sign in to Outlook Web App and verify the response page.
    User Name: extest_xxx
    Performance Counter Name: Logon Latency
    Result: Skipped
    Site: xxx
    Latency: -00:00:00.0010000
    Secure Access: True
    ConnectionType: Plaintext
    Port: 0
    Latency (ms): -1
    Virtual Directory Name: owa (Default Web Site)
    URL: https://xxx.com/OWA/
    URL Type: External
    Error:
    The test couldn't sign in to Outlook Web App due to an authentication failure.
    URL: https://xxx.com/OWA/
    Mailbox: xxx
    User: extest_xxx
    Diagnostic command: "Test-OwaConnectivity -TestType:External -MonitoringContext:$true -TrustAnySSLCertificate:$true -LightMode:$true"
    EventSourceName: MSExchange Monitoring OWAConnectivity External
    Knowledge:
    http://go.microsoft.com/fwlink/?LinkID=67336&id=CB86B85A-AF81-43FC-9B07-3C6FC00D3D42
    Computer: xxx
    Impacted Entities (3):
    OWA Service - xxx, xxx - xxx, Exchange
    Knowledge:     View additional knowledge...
    External Knowledge Sources
    For more information, see the respective topic at the Microsoft Exchange Server TechCenter
    Thanks
    MHem

    Hi,
    Based on the error, it looks like an OWA authentication failure.
    Have you tried post this to LYNC forums?
    We
    are trying to better understand customer views on social support experience, so your participation in this
    interview project would be greatly appreciated if you have time.
    Thanks for helping make community forums a great place.

  • Office Web Apps and Forms Based Authentication

    Is it possible to use Office Web Apps Server 2013 to give external SharePoint Foundation 2013 clients access to Office documents in a View only capacity?
    Does FBA work with Office Web Apps or would external users have to at least have a Windows CAL in AD if we are just using SharePoint Foundation?

    Hi,
    It may be possible.
    Here are some links for your situation:
    http://technet.microsoft.com/en-us/library/ff431682(v=office.15).aspx
    http://blogs.technet.com/b/office_web_apps_server_2013_support_blog/archive/2014/03/20/office-web-apps-2013-errors-previewing-viewing-editing-documents-when-using-fba-in-the-extended-zone-but-not-the-default-zone.aspx
    http://technet.microsoft.com/en-us/library/ee806890(v=office.15).aspx
    Office Web Apps can be used only by SharePoint 2013 web applications that use claims-based authentication.
    There is a known issue when using Office Web App in the extended zone with FBA, but not the default zone. Please configure FBA authentication in the Default zone in case of that.
    Hope it helps.
    Regards,
    Rebecca Tu
    TechNet Community Support

  • Offie Web Apps 2013 randomly fail to render a file with an authentication issue on Firefox

    Hello,
    I’m facing an issue when refreshing a SharePoint page with an embedded Office file (rendered through Office web apps).
    When I refresh the page, the Office Web Apps frame doesn’t render the file (randomly) and returns an error (in the frame. Everything around the frame in SharePoint is OK):
    “Sorry you don’t have access to this content”
    Just after receiving the error, if I refresh the page again, everything works for a couple of tries and then the error show up again...
    Here is my configuration:
    SharePoint 2013 Server SP1 (15.0.4569.1000) farm English version
    Office Web Apps farm English version
    SSL Offloading through load balancer for both farm
    Issue:
    1<sup>st</sup> load of the page with IE, Chrome and Firefox > OK
    Page refresh with IE/Chrome > OK
    Page refresh with Firefox > random KOs
    Tests:
    Test with FireFox version 24/27/32 > same results
    Test from Windows/OSx > same results
    Test with 1 WFE and 1 WAC server > same results
    Test with network.negotiate-auth.allow-insecure-ntlm-v1;True
    on FF > same results
    In the ULS logs, I found this entry which seems strange even though I’m authenticated on SharePoint (see the complet log below):
    Non-OAuth request. IsAuthenticated=False, UserIdentityName=, ClaimsCount=0
    Followed by
    System.UnauthorizedAccessException:   Access is denied. (Exception from HRESULT: 0x80070005 (E_ACCESSDENIED)),   StackTrace:   
    at   Microsoft.SharePoint.SPWeb.InitWeb()      
    at Microsoft.SharePoint.SPWeb.get_WebTemplateConfiguration()    
    at   Microsoft.SharePoint.WebControls.ScriptLink.InitJs_Register(Page page)    
    at   Microsoft.SharePoint.WebControls.ScriptLink.RegisterForControl(Control ctrl,   Page page, String name, Boolean localizable, Boolean defer, Boolean   loadAfterUI, String language, Boolean injectNoDefer, Boolean   controlRegistration,
    Boolean loadInlineLast, Boolean ignoreFileNotFound)    
    at   Microsoft.SharePoint.WebControls.ScriptLink.Register(Control ctrl, Page page,   String name, Boolean localizable, Boolean defer, Boolean loadAfterUI, String   language, String uiVersion, String ctag)    
    Microsoft recommendations about FireFox:
    Lastest versions of IE, Chrome and Firefox should work
    http://technet.microsoft.com/en-us/library/cc263526(v=office.15).aspx
    Other details:
    I’m not testing with the farm account.
    Some of my company’s users need to use Firefox as their everyday browser.
    Again, everything works with IE and Chrome.

    Search "17efba9c-d283-80e1-2ddf-9311dd77dd1c" (41 hits   in 1 file)
    Line 44019: 09/22/2014 11:50:04.86 
    w3wp.exe (0x15EC)                       
    0x0AAC
    SharePoint Foundation         
    Logging Correlation Data      
    xmnv
    Medium  
    Name=Request   (GET:https://intranet.mycompany.com:443/poles/crc/wiki/_layouts/15/WopiFrame.aspx?sourcedoc=/poles/crc/wiki/Documents/confidentiality%20-%20data%20protection_SDE_2014.05.06_v1.0.pptx&action=embedview&wdAr=1.3333333333333332)
    17efba9c-d283-80e1-2ddf-9311dd77dd1c
    Line 44020: 09/22/2014 11:50:04.86 
    w3wp.exe (0x15EC)                       
    0x0AAC
    SharePoint Foundation         
    Authentication Authorization  
    agb9s
    Medium  
    Non-OAuth request. IsAuthenticated=False, UserIdentityName=,   ClaimsCount=0
    17efba9c-d283-80e1-2ddf-9311dd77dd1c
    Line 44021: 09/22/2014 11:50:04.86 
    w3wp.exe (0x15EC)                       
    0x0AAC
    SharePoint Foundation         
    Logging Correlation Data      
    xmnv
    Medium  
    Site=/poles/crc
    17efba9c-d283-80e1-2ddf-9311dd77dd1c
    Line 44022: 09/22/2014 11:50:04.86 
    w3wp.exe (0x15EC)                       
    0x0AAC
    SharePoint Foundation         
    Authentication Authorization  
    aib35
    Medium  
    SPShareByLinkHandler.Initialize : Not a ShareByLink request - missing   access token
    17efba9c-d283-80e1-2ddf-9311dd77dd1c
    Line 44028: 09/22/2014 11:50:04.87 
    w3wp.exe (0x15EC)                       
    0x0AAC
    SharePoint Foundation         
    Authentication Authorization  
    aib35
    Medium  
    SPShareByLinkHandler.Initialize : Not a ShareByLink request - missing   access token
    17efba9c-d283-80e1-2ddf-9311dd77dd1c
    Line 44030: 09/22/2014 11:50:04.87 
    w3wp.exe (0x15EC)                       
    0x0AAC
    SharePoint Foundation         
    General                       
    aat87
    Monitorable
    17efba9c-d283-80e1-2ddf-9311dd77dd1c
    Line 44032: 09/22/2014 11:50:04.87 
    w3wp.exe (0x15EC)                       
    0x0AAC
    SharePoint Foundation         
    General                       
    8e2s
    Medium  
    Unknown SPRequest error occurred. More information: 0x80070005
    17efba9c-d283-80e1-2ddf-9311dd77dd1c
    Line 44033: 09/22/2014 11:50:04.87 
    w3wp.exe (0x15EC)                       
    0x0AAC
    SharePoint Foundation         
    General                       
    aix9j
    High    
    SPRequest.GetPageListId: UserPrincipalName=, AppPrincipalName=   ,bstrUrl=https://intranet.mycompany.com/poles/crc/wiki/_layouts/15/WopiFrame.aspx?sourcedoc=/poles/crc/wiki/Documents/confidentiality   - data protection_SDE_2014.05.06_v1.0.pptx&action=embedview&wdAr=1.3333333333333332
    17efba9c-d283-80e1-2ddf-9311dd77dd1c
    Line 44034: 09/22/2014 11:50:04.87 
    w3wp.exe (0x15EC)                       
    0x0AAC
    SharePoint Foundation         
    General                       
    ai1wu
    Medium  
    System.UnauthorizedAccessException: Access is denied. (Exception from   HRESULT: 0x80070005 (E_ACCESSDENIED)), StackTrace:   
    at   Microsoft.SharePoint.SPContext.get_ListId()    
    at Microsoft.SharePoint.SPContext.get_List()    
    at   Microsoft.SharePoint.WebControls.ScriptLink.InitJs_Register(Page page)    
    at   Microsoft.SharePoint.WebControls.ScriptLink.RegisterForControl(Control ctrl,   Page page, String name, Boolean localizable, Boolean defer, Boolean   loadAfterUI, String language, Boolean injectNoDefer, Boolean
      controlRegistration, Boolean loadInlineLast, Boolean ignoreFileNotFound)    
    at   Microsoft.SharePoint.WebControls.ScriptLink.Register(Control ctrl, Page page,   String name, Boolean localizable, Boolean defer, Boolean loadAfterUI, String   language, String uiVersion, String ctag)    
      at Micros...
    17efba9c-d283-80e1-2ddf-9311dd77dd1c
    Line 44035: 09/22/2014 11:50:04.87*
    w3wp.exe (0x15EC)                       
    0x0AAC
    SharePoint Foundation         
    General                       
    ai1wu
    Medium  
    ...oft.SharePoint.WebControls.ScriptLink.Register(String uiVersion,   Control ctrl, Page page, String name, Boolean localizable, Boolean   defer)    
    at   Microsoft.SharePoint.WebControls.ScriptLink.Register(Control ctrl, Page page,   String name, Boolean localizable, Boolean defer)    
    at   Microsoft.SharePoint.WebControls.ScriptLink.GetOnDemandScriptKey(String   strKey, String strFile, Boolean registerDependencies, Control ctrl, Page page)    
    at   Microsoft.SharePoint.WebControls.ScriptLink.RegisterOnDemand(Control ctrl,   Page page, String strKey, String strFile, Boolean localizable)    
    at Microsoft.SharePoint.WebControls.ScriptLink.RegisterOnDemand(Page   page, String strFile, Boolean localizable)      
    at   Microsoft.SharePoint.WebControls.ScriptLink.RegisterForControl(Control ctrl,   Page page, String name, ...
    17efba9c-d283-80e1-2ddf-9311dd77dd1c
    Line 44036: 09/22/2014 11:50:04.87*
    w3wp.exe (0x15EC)                       
    0x0AAC
    SharePoint Foundation         
    General                       
    ai1wu
    Medium  
    ...Boolean localizable, Boolean defer, Boolean loadAfterUI, String   language, Boolean injectNoDefer, Boolean controlRegistration, Boolean   loadInlineLast, Boolean ignoreFileNotFound)    
    at Microsoft.SharePoint.WebControls.ScriptLink.Register(Control   ctrl, Page page, String name, Boolean localizable, Boolean defer, Boolean   loadAfterUI, String language, String uiVersion, String ctag)    
    at   Microsoft.SharePoint.WebControls.ScriptLink.RegisterOnDemand(Control ctrl,   Page page, String strKey, String strFile, Boolean localizable)    
    at   Microsoft.SharePoint.WebControls.ScriptLink.OnLoad(EventArgs e)    
    at System.Web.UI.Control.LoadRecursive()    
    at   System.Web.UI.Control.LoadRecursive()      
    at System.Web.UI.Control.LoadRecursive()    
    at System.Web.UI.Control.LoadRecursive()     at System.Web.UI.Co...
    17efba9c-d283-80e1-2ddf-9311dd77dd1c
    Line 44037: 09/22/2014 11:50:04.87*
    w3wp.exe (0x15EC)                       
    0x0AAC
    SharePoint Foundation         
    General                       
    ai1wu
    Medium  
    ...ntrol.LoadRecursive()     at   System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint,   Boolean includeStagesAfterAsyncPoint)      
    at System.Web.UI.Page.ProcessRequest(Boolean   includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)    
    at   System.Web.UI.Page.ProcessRequest()      
    at System.Web.UI.Page.ProcessRequest(HttpContext context)    
    at   System.Web.HttpServerUtility.ExecuteInternal(IHttpHandler handler, TextWriter   writer, Boolean preserveForm, Boolean setPreviousPage, VirtualPath path,   VirtualPath filePath, String physPath, Exception error, String   queryStringOverride)    
    at   System.Web.HttpServerUtility.Execute(String path, TextWriter writer, Boolean   preserveForm)    
    at   System.Web.HttpServerUtility.Transfer(String path)    
    at Microsoft.SharePoint.Utiliti...
    17efba9c-d283-80e1-2ddf-9311dd77dd1c
    Line 44038: 09/22/2014 11:50:04.87*
    w3wp.exe (0x15EC)                       
    0x0AAC
    SharePoint Foundation         
    General                       
    ai1wu
    Medium  
    ...es.SPUtility.TransferToErrorPage(String message, String linkText,   String linkUrl)    
    at   Microsoft.SharePoint.ApplicationPages.WOPIFrameHelper.OnLoadHelper(WOPIFrame   frame)    
    at   Microsoft.SharePoint.ApplicationPages.WOPIFrameHelper.OnLoad(WOPIFrame   frame)    
    at   System.Web.UI.Control.LoadRecursive()      
    at System.Web.UI.Page.ProcessRequestMain(Boolean   includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)    
    at   System.Web.UI.Page.ProcessRequest(Boolean includeStagesBeforeAsyncPoint,   Boolean includeStagesAfterAsyncPoint)      
    at System.Web.HttpContext.InvokeCancellableCallback(WaitCallback   callback, Object state)    
    at   System.Web.UI.Page.LegacyAsyncPageBeginProcessRequest(HttpContext context, AsyncCallback   callback, Object extraData)    
    at   System.Web.HttpApplication.CallHa...
    17efba9c-d283-80e1-2ddf-9311dd77dd1c
    Line 44039: 09/22/2014 11:50:04.87*
    w3wp.exe (0x15EC)                       
    0x0AAC
    SharePoint Foundation         
    General                       
    ai1wu
    Medium  
    ...ndlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute()    
    at   System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean&   completedSynchronously)    
    at   System.Web.HttpApplication.PipelineStepManager.ResumeSteps(Exception   error)    
    at   System.Web.HttpApplication.BeginProcessRequestNotification(HttpContext   context, AsyncCallback cb)    
    at   System.Web.HttpRuntime.ProcessRequestNotificationPrivate(IIS7WorkerRequest   wr, HttpContext context)    
    at   System.Web.Hosting.PipelineRuntime.ProcessRequestNotificationHelper(IntPtr   rootedObjectsPointer, IntPtr nativeRequestContext, IntPtr moduleData, Int32   flags)    
    at   System.Web.Hosting.PipelineRuntime.ProcessRequestNotification(IntPtr   rootedObjectsPointer, IntPtr nativeRequestContext, IntPtr moduleData, Int32   flags)    
    at Sys...
    17efba9c-d283-80e1-2ddf-9311dd77dd1c
    Line 44040: 09/22/2014 11:50:04.87*
    w3wp.exe (0x15EC)                       
    0x0AAC
    SharePoint Foundation         
    General                       
    ai1wu
    Medium  
    ...tem.Web.Hosting.UnsafeIISMethods.MgdIndicateCompletion(IntPtr   pHandler, RequestNotificationStatus& notificationStatus)    
    at   System.Web.Hosting.UnsafeIISMethods.MgdIndicateCompletion(IntPtr pHandler,   RequestNotificationStatus& notificationStatus)    
    at   System.Web.Hosting.PipelineRuntime.ProcessRequestNotificationHelper(IntPtr   rootedObjectsPointer, IntPtr nativeRequestContext, IntPtr moduleData, Int32   flags)    
    at   System.Web.Hosting.PipelineRuntime.ProcessRequestNotification(IntPtr   rootedObjectsPointer, IntPtr nativeRequestContext, IntPtr moduleData, Int32   flags)  
    17efba9c-d283-80e1-2ddf-9311dd77dd1c
    Line 44041: 09/22/2014 11:50:04.87 
    w3wp.exe (0x15EC)                       
    0x0AAC
    SharePoint Foundation         
    General                       
    8e2s
    Medium  
    Unknown SPRequest error occurred. More information: 0x80070005
    17efba9c-d283-80e1-2ddf-9311dd77dd1c
    Line 44042: 09/22/2014 11:50:04.87 
    w3wp.exe (0x15EC)                       
    0x0AAC
    SharePoint Foundation         
    General                       
    aix9j
    High    
    SPRequest.OpenWeb: UserPrincipalName=, AppPrincipalName=   ,bstrUrl=https://intranet.mycompany.com/poles/crc/wiki/_layouts/15/WopiFrame.aspx?sourcedoc=/poles/crc/wiki/Documents/confidentiality   - data protection_SDE_2014.05.06_v1.0.pptx&action=embedview&wdAr=1.3333333333333332
    17efba9c-d283-80e1-2ddf-9311dd77dd1c
    Line 44043: 09/22/2014 11:50:04.89 
    w3wp.exe (0x15EC)                       
    0x0AAC
    SharePoint Foundation         
    General                       
    ai1wu
    Medium  
    System.UnauthorizedAccessException: Access is denied. (Exception from   HRESULT: 0x80070005 (E_ACCESSDENIED)), StackTrace:   
    at   Microsoft.SharePoint.SPWeb.InitWeb()      
    at Microsoft.SharePoint.SPWeb.get_WebTemplateConfiguration()    
    at   Microsoft.SharePoint.WebControls.ScriptLink.InitJs_Register(Page page)    
    at   Microsoft.SharePoint.WebControls.ScriptLink.RegisterForControl(Control ctrl,   Page page, String name, Boolean localizable, Boolean defer, Boolean   loadAfterUI, String language, Boolean injectNoDefer, Boolean   controlRegistration,
    Boolean loadInlineLast, Boolean ignoreFileNotFound)    
    at   Microsoft.SharePoint.WebControls.ScriptLink.Register(Control ctrl, Page page,   String name, Boolean localizable, Boolean defer, Boolean loadAfterUI, String   language, String uiVersion, String ctag)    
    17efba9c-d283-80e1-2ddf-9311dd77dd1c
    Line 44044: 09/22/2014 11:50:04.89*
    w3wp.exe (0x15EC)                       
    0x0AAC
    SharePoint Foundation         
    General                       
    ai1wu
    Medium  
    ...at Microsoft.SharePoint.WebControls.ScriptLink.Register(String   uiVersion, Control ctrl, Page page, String name, Boolean localizable, Boolean   defer)    
    at   Microsoft.SharePoint.WebControls.ScriptLink.Register(Control ctrl, Page page,   String name, Boolean localizable, Boolean defer)    
    at   Microsoft.SharePoint.WebControls.ScriptLink.GetOnDemandScriptKey(String   strKey, String strFile, Boolean registerDependencies, Control ctrl, Page   page)    
    at   Microsoft.SharePoint.WebControls.ScriptLink.RegisterOnDemand(Control ctrl,   Page page, String strKey, String strFile, Boolean localizable)    
    at Microsoft.SharePoint.WebControls.ScriptLink.RegisterOnDemand(Page   page, String strFile, Boolean localizable)      
    at   Microsoft.SharePoint.WebControls.ScriptLink.RegisterForControl(Control ctrl,   Page page, Stri...
    17efba9c-d283-80e1-2ddf-9311dd77dd1c
    Line 44045: 09/22/2014 11:50:04.89*
    w3wp.exe (0x15EC)                       
    0x0AAC
    SharePoint Foundation         
    General                       
    ai1wu
    Medium  
    ...ng name, Boolean localizable, Boolean defer, Boolean loadAfterUI,   String language, Boolean injectNoDefer, Boolean controlRegistration, Boolean   loadInlineLast, Boolean ignoreFileNotFound)    
    at Microsoft.SharePoint.WebControls.ScriptLink.Register(Control   ctrl, Page page, String name, Boolean localizable, Boolean defer, Boolean   loadAfterUI, String language, String uiVersion, String ctag)    
    at Microsoft.SharePoint.WebControls.ScriptLink.RegisterOnDemand(Control   ctrl, Page page, String strKey, String strFile, Boolean localizable)    
    at   Microsoft.SharePoint.WebControls.ScriptLink.OnLoad(EventArgs e)    
    at   System.Web.UI.Control.LoadRecursive()      
    at System.Web.UI.Control.LoadRecursive()    
    at   System.Web.UI.Control.LoadRecursive()      
    at System.Web.UI.Control.LoadRecursive()    
    at System....
    17efba9c-d283-80e1-2ddf-9311dd77dd1c
    Line 44046: 09/22/2014 11:50:04.89*
    w3wp.exe (0x15EC)                       
    0x0AAC
    SharePoint Foundation         
    General                       
    ai1wu
    Medium  
    ...Web.UI.Control.LoadRecursive()      
    at System.Web.UI.Page.ProcessRequestMain(Boolean   includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)    
    at System.Web.UI.Page.ProcessRequest(Boolean   includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)    
    at   System.Web.UI.Page.ProcessRequest()      
    at System.Web.UI.Page.ProcessRequest(HttpContext context)    
    at   System.Web.HttpServerUtility.ExecuteInternal(IHttpHandler handler, TextWriter   writer, Boolean preserveForm, Boolean setPreviousPage, VirtualPath path,   VirtualPath filePath, String physPath, Exception error, String   queryStringOverride)    
    at   System.Web.HttpServerUtility.Execute(String path, TextWriter writer, Boolean   preserveForm)    
    at   System.Web.HttpServerUtility.Transfer(String path)    
    at Microsoft.SharePoin...
    17efba9c-d283-80e1-2ddf-9311dd77dd1c
    Line 44047: 09/22/2014 11:50:04.89*
    w3wp.exe (0x15EC)                       
    0x0AAC
    SharePoint Foundation         
    General                       
    ai1wu
    Medium  
    ...t.Utilities.SPUtility.TransferToErrorPage(String message, String   linkText, String linkUrl)    
    at   Microsoft.SharePoint.ApplicationPages.WOPIFrameHelper.OnLoadHelper(WOPIFrame   frame)    
    at   Microsoft.SharePoint.ApplicationPages.WOPIFrameHelper.OnLoad(WOPIFrame   frame)    
    at   System.Web.UI.Control.LoadRecursive()      
    at System.Web.UI.Page.ProcessRequestMain(Boolean   includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)    
    at   System.Web.UI.Page.ProcessRequest(Boolean includeStagesBeforeAsyncPoint,   Boolean includeStagesAfterAsyncPoint)      
    at System.Web.HttpContext.InvokeCancellableCallback(WaitCallback   callback, Object state)    
    at   System.Web.UI.Page.LegacyAsyncPageBeginProcessRequest(HttpContext context, AsyncCallback   callback, Object extraData)    
    at   System.Web.HttpApplicati...
    17efba9c-d283-80e1-2ddf-9311dd77dd1c
    Line 44048: 09/22/2014 11:50:04.89*
    w3wp.exe (0x15EC)                       
    0x0AAC
    SharePoint Foundation         
    General                       
    ai1wu
    Medium  
    ...on.CallHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute()    
    at   System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean&   completedSynchronously)    
    at   System.Web.HttpApplication.PipelineStepManager.ResumeSteps(Exception   error)    
    at   System.Web.HttpApplication.BeginProcessRequestNotification(HttpContext   context, AsyncCallback cb)    
    at   System.Web.HttpRuntime.ProcessRequestNotificationPrivate(IIS7WorkerRequest   wr, HttpContext context)    
    at   System.Web.Hosting.PipelineRuntime.ProcessRequestNotificationHelper(IntPtr   rootedObjectsPointer, IntPtr nativeRequestContext, IntPtr moduleData, Int32   flags)    
    at   System.Web.Hosting.PipelineRuntime.ProcessRequestNotification(IntPtr   rootedObjectsPointer, IntPtr nativeRequestContext, IntPtr moduleData, Int32   flags) 
    17efba9c-d283-80e1-2ddf-9311dd77dd1c
    Line 44049: 09/22/2014 11:50:04.89*
    w3wp.exe (0x15EC)                       
    0x0AAC
    SharePoint Foundation         
    General                       
    ai1wu
    Medium  
    ...   at   System.Web.Hosting.UnsafeIISMethods.MgdIndicateCompletion(IntPtr pHandler,   RequestNotificationStatus& notificationStatus)    
    at System.Web.Hosting.UnsafeIISMethods.MgdIndicateCompletion(IntPtr   pHandler, RequestNotificationStatus& notificationStatus)    
    at   System.Web.Hosting.PipelineRuntime.ProcessRequestNotificationHelper(IntPtr   rootedObjectsPointer, IntPtr nativeRequestContext, IntPtr moduleData, Int32   flags)    
    at   System.Web.Hosting.PipelineRuntime.ProcessRequestNotification(IntPtr   rootedObjectsPointer, IntPtr nativeRequestContext, IntPtr moduleData, Int32   flags)  
    17efba9c-d283-80e1-2ddf-9311dd77dd1c
    Line 44051: 09/22/2014 11:50:04.89 
    w3wp.exe (0x15EC)                       
    0x0AAC
    SharePoint Foundation         
    General                       
    ajji6
    High    
    Unable to write SPDistributedCache call usage entry.
    17efba9c-d283-80e1-2ddf-9311dd77dd1c
    Line 44052: 09/22/2014 11:50:04.89 
    w3wp.exe (0x15EC)                       
    0x0AAC
    SharePoint Foundation         
    General                       
    8e2s
    Medium  
    Unknown SPRequest error occurred. More information: 0x80070005
    17efba9c-d283-80e1-2ddf-9311dd77dd1c
    Line 44053: 09/22/2014 11:50:04.89 
    w3wp.exe (0x15EC)                       
    0x0AAC
    SharePoint Foundation         
    General                       
    aix9j
    High    
    SPRequest.OpenWeb: UserPrincipalName=, AppPrincipalName=   ,bstrUrl=https://intranet.mycompany.com/poles/crc/wiki/_layouts/15/WopiFrame.aspx?sourcedoc=/poles/crc/wiki/Documents/confidentiality   - data protection_SDE_2014.05.06_v1.0.pptx&action=embedview&wdAr=1.3333333333333332
    17efba9c-d283-80e1-2ddf-9311dd77dd1c
    Line 44057: 09/22/2014 11:50:04.89 
    w3wp.exe (0x15EC)                       
    0x0AAC
    SharePoint Foundation         
    General                       
    ai1wu
    Medium  
    System.UnauthorizedAccessException: Access is denied. (Exception from   HRESULT: 0x80070005 (E_ACCESSDENIED)), StackTrace:   
    at   Microsoft.SharePoint.SPWeb.InitWeb()      
    at Microsoft.SharePoint.SPWeb.get_EnableMinimalDownload()    
    at   Microsoft.SharePoint.WebControls.DeltaPage.RenderToBase(HtmlTextWriter   writer)    
    at   Microsoft.SharePoint.WebControls.DeltaPage.Render(HtmlTextWriter writer)    
    at   System.Web.UI.Control.RenderControlInternal(HtmlTextWriter writer,   ControlAdapter adapter)    
    at   System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint,   Boolean includeStagesAfterAsyncPoint)      
    at System.Web.UI.Page.ProcessRequest(Boolean   includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)    
    at   System.Web.UI.Page.ProcessRequest()      
    at System.Web.UI.Page.P...
    17efba9c-d283-80e1-2ddf-9311dd77dd1c
    Line 44058: 09/22/2014 11:50:04.89*
    w3wp.exe (0x15EC)                       
    0x0AAC
    SharePoint Foundation         
    General                       
    ai1wu
    Medium  
    ...rocessRequest(HttpContext context)      
    at System.Web.HttpServerUtility.ExecuteInternal(IHttpHandler handler,   TextWriter writer, Boolean preserveForm, Boolean setPreviousPage, VirtualPath   path, VirtualPath filePath, String physPath, Exception error, String   queryStringOverride)    
    at   System.Web.HttpServerUtility.Execute(String path, TextWriter writer, Boolean   preserveForm)    
    at System.Web.HttpServerUtility.Transfer(String   path)    
    at   Microsoft.SharePoint.Utilities.SPUtility.TransferToErrorPage(String message,   String linkText, String linkUrl)    
    at   Microsoft.SharePoint.ApplicationPages.WOPIFrameHelper.OnLoadHelper(WOPIFrame   frame)    
    at   Microsoft.SharePoint.ApplicationPages.WOPIFrameHelper.OnLoad(WOPIFrame   frame)    
    at System.Web.UI.Control.LoadRecursive()    
    at System.Web.UI.Page.Pro...
    17efba9c-d283-80e1-2ddf-9311dd77dd1c
    Line 44059: 09/22/2014 11:50:04.89*
    w3wp.exe (0x15EC)                       
    0x0AAC
    SharePoint Foundation         
    General                       
    ai1wu
    Medium  
    ...cessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean   includeStagesAfterAsyncPoint)    
    at   System.Web.UI.Page.ProcessRequest(Boolean includeStagesBeforeAsyncPoint,   Boolean includeStagesAfterAsyncPoint)      
    at System.Web.HttpContext.InvokeCancellableCallback(WaitCallback   callback, Object state)    
    at   System.Web.UI.Page.LegacyAsyncPageBeginProcessRequest(HttpContext context, AsyncCallback   callback, Object extraData)    
    at   System.Web.HttpApplication.CallHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute()    
    at System.Web.HttpApplication.ExecuteStep(IExecutionStep   step, Boolean& completedSynchronously)      
    at   System.Web.HttpApplication.PipelineStepManager.ResumeSteps(Exception   error)    
    at System.Web.HttpApplication.BeginProcessRequestNotification(HttpContext   ...
    17efba9c-d283-80e1-2ddf-9311dd77dd1c
    Line 44060: 09/22/2014 11:50:04.89*
    w3wp.exe (0x15EC)                       
    0x0AAC
    SharePoint Foundation         
    General                       
    ai1wu
    Medium  
    ...context, AsyncCallback cb)       at   System.Web.HttpRuntime.ProcessRequestNotificationPrivate(IIS7WorkerRequest   wr, HttpContext context)    
    at   System.Web.Hosting.PipelineRuntime.ProcessRequestNotificationHelper(IntPtr   rootedObjectsPointer, IntPtr nativeRequestContext, IntPtr moduleData, Int32   flags)    
    at   System.Web.Hosting.PipelineRuntime.ProcessRequestNotification(IntPtr   rootedObjectsPointer, IntPtr nativeRequestContext, IntPtr moduleData, Int32   flags)    
    at   System.Web.Hosting.UnsafeIISMethods.MgdIndicateCompletion(IntPtr pHandler,   RequestNotificationStatus& notificationStatus)    
    at   System.Web.Hosting.UnsafeIISMethods.MgdIndicateCompletion(IntPtr pHandler,   RequestNotificationStatus& notificationStatus)    
    at System.Web.Hosting.PipelineRuntime.ProcessRequestNotificationHelper(IntPtr   ro...
    17efba9c-d283-80e1-2ddf-9311dd77dd1c
    Line 44061: 09/22/2014 11:50:04.89*
    w3wp.exe (0x15EC)                       
    0x0AAC
    SharePoint Foundation         
    General                       
    ai1wu
    Medium  
    ...otedObjectsPointer, IntPtr nativeRequestContext, IntPtr moduleData,   Int32 flags)    
    at   System.Web.Hosting.PipelineRuntime.ProcessRequestNotification(IntPtr   rootedObjectsPointer, IntPtr nativeRequestContext, IntPtr moduleData, Int32   flags)  
    17efba9c-d283-80e1-2ddf-9311dd77dd1c
    Line 44062: 09/22/2014 11:50:04.89 
    w3wp.exe (0x15EC)                       
    0x0AAC
    SharePoint Foundation         
    General                       
    8e2s
    Medium  
    Unknown SPRequest error occurred. More information: 0x80070005
    17efba9c-d283-80e1-2ddf-9311dd77dd1c
    Line 44063: 09/22/2014 11:50:04.89 
    w3wp.exe (0x15EC)                       
    0x0AAC
    SharePoint Foundation         
    General                       
    aix9j
    High    
    SPRequest.OpenWeb: UserPrincipalName=, AppPrincipalName=   ,bstrUrl=https://intranet.mycompany.com/poles/crc/wiki/_layouts/15/WopiFrame.aspx?sourcedoc=/poles/crc/wiki/Documents/confidentiality   - data protection_SDE_2014.05.06_v1.0.pptx&action=embedview&wdAr=1.3333333333333332
    17efba9c-d283-80e1-2ddf-9311dd77dd1c
    Line 44064: 09/22/2014 11:50:04.89 
    w3wp.exe (0x15EC)                       
    0x0AAC
    SharePoint Foundation         
    General                       
    ai1wu
    Medium  
    System.UnauthorizedAccessException: Access is denied. (Exception from   HRESULT: 0x80070005 (E_ACCESSDENIED)), StackTrace:   
    at   Microsoft.SharePoint.SPWeb.InitWeb()      
    at Microsoft.SharePoint.SPWeb.get_EnableMinimalDownload()    
    at   Microsoft.SharePoint.WebControls.DeltaPage.RenderToBase(HtmlTextWriter   writer)    
    at   Microsoft.SharePoint.WebControls.DeltaPage.Render(HtmlTextWriter writer)    
    at   System.Web.UI.Control.RenderControlInternal(HtmlTextWriter writer,   ControlAdapter adapter)    
    at   System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint,   Boolean includeStagesAfterAsyncPoint)      
    at System.Web.UI.Page.ProcessRequest(Boolean   includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)    
    at   System.Web.UI.Page.ProcessRequest()      
    at System.Web.UI.Page.P...
    17efba9c-d283-80e1-2ddf-9311dd77dd1c
    Line 44065: 09/22/2014 11:50:04.89*
    w3wp.exe (0x15EC)                       
    0x0AAC
    SharePoint Foundation         
    General                       
    ai1wu
    Medium  
    ...rocessRequest(HttpContext context)      
    at System.Web.HttpServerUtility.ExecuteInternal(IHttpHandler handler,   TextWriter writer, Boolean preserveForm, Boolean setPreviousPage, VirtualPath   path, VirtualPath filePath, String physPath, Exception error, String   queryStringOverride)    
    at   System.Web.HttpServerUtility.Execute(String path, TextWriter writer, Boolean   preserveForm)    
    at System.Web.HttpServerUtility.Transfer(String   path)    
    at   Microsoft.SharePoint.Utilities.SPUtility.TransferToErrorPage(String message,   String linkText, String linkUrl)    
    at   Microsoft.SharePoint.ApplicationPages.WOPIFrameHelper.OnLoadHelper(WOPIFrame   frame)    
    at   Microsoft.SharePoint.ApplicationPages.WOPIFrameHelper.OnLoad(WOPIFrame   frame)    
    at System.Web.UI.Control.LoadRecursive()    
    at System.Web.UI.Page.Pro...
    17efba9c-d283-80e1-2ddf-9311dd77dd1c
    Line 44066: 09/22/2014 11:50:04.89*
    w3wp.exe (0x15EC)                       
    0x0AAC
    SharePoint Foundation         
    General                       
    ai1wu
    Medium  
    ...cessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean   includeStagesAfterAsyncPoint)    
    at   System.Web.UI.Page.ProcessRequest(Boolean includeStagesBeforeAsyncPoint,   Boolean includeStagesAfterAsyncPoint)      
    at System.Web.HttpContext.InvokeCancellableCallback(WaitCallback   callback, Object state)    
    at   System.Web.UI.Page.LegacyAsyncPageBeginProcessRequest(HttpContext context, AsyncCallback   callback, Object extraData)    
    at   System.Web.HttpApplication.CallHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute()    
    at System.Web.HttpApplication.ExecuteStep(IExecutionStep   step, Boolean& completedSynchronously)      
    at   System.Web.HttpApplication.PipelineStepManager.ResumeSteps(Exception   error)    
    at System.Web.HttpApplication.BeginProcessRequestNotification(HttpContext   ...
    17efba9c-d283-80e1-2ddf-9311dd77dd1c
    Line 44067: 09/22/2014 11:50:04.89*
    w3wp.exe (0x15EC)                       
    0x0AAC
    SharePoint Foundation         
    General                       
    ai1wu
    Medium  
    ...context, AsyncCallback cb)       at   System.Web.HttpRuntime.ProcessRequestNotificationPrivate(IIS7WorkerRequest   wr, HttpContext context)    
    at   System.Web.Hosting.PipelineRuntime.ProcessRequestNotificationHelper(IntPtr   rootedObjectsPointer, IntPtr nativeRequestContext, IntPtr moduleData, Int32   flags)    
    at   System.Web.Hosting.PipelineRuntime.ProcessRequestNotification(IntPtr   rootedObjectsPointer, IntPtr nativeRequestContext, IntPtr moduleData, Int32   flags)    
    at   System.Web.Hosting.UnsafeIISMethods.MgdIndicateCompletion(IntPtr pHandler,   RequestNotificationStatus& notificationStatus)    
    at   System.Web.Hosting.UnsafeIISMethods.MgdIndicateCompletion(IntPtr pHandler,   RequestNotificationStatus& notificationStatus)    
    at System.Web.Hosting.PipelineRuntime.ProcessRequestNotificationHelper(IntPtr   ro...
    17efba9c-d283-80e1-2ddf-9311dd77dd1c
    Line 44068: 09/22/2014 11:50:04.89*
    w3wp.exe (0x15EC)                       
    0x0AAC
    SharePoint Foundation         
    General                       
    ai1wu
    Medium  
    ...otedObjectsPointer, IntPtr nativeRequestContext, IntPtr moduleData,   Int32 flags)    
    at   System.Web.Hosting.PipelineRuntime.ProcessRequestNotification(IntPtr   rootedObjectsPointer, IntPtr nativeRequestContext, IntPtr moduleData, Int32   flags)  
    17efba9c-d283-80e1-2ddf-9311dd77dd1c
    Line 44069: 09/22/2014 11:50:04.89 
    w3wp.exe (0x15EC)                       
    0x0AAC
    SharePoint Foundation         
    Micro Trace                   
    uls4
    Medium  
    Micro Trace Tags: 0 nasq,1 agb9s,1 aib35,13 aib35,2 aat87,0 aix9j,0   ai1wu,0 aix9j,0 ai1wu,3 ajji6,1 aix9j,0 ai1wu,0 aix9j,0 ai1wu
    17efba9c-d283-80e1-2ddf-9311dd77dd1c
    Line 44070: 09/22/2014 11:50:04.89 
    w3wp.exe (0x15EC)                       
    0x0AAC
    SharePoint Foundation         
    Monitoring                    
    b4ly
    Medium  
    Leaving Monitored Scope (Request   (GET:https://intranet.mycompany.com:443/poles/crc/wiki/_layouts/15/WopiFrame.aspx?sourcedoc=/poles/crc/wiki/Documents/confidentiality%20-%20data%20protection_SDE_2014.05.06_v1.0.pptx&action=embedview&wdAr=1.3333333333333332)).
      Execution Time=33.433439166151
    17efba9c-d283-80e1-2ddf-9311dd77dd1c

Maybe you are looking for

  • Mode not available on user portal

    If we setup the default for users to be OTP how do they change to OTP+pin and set a PIN? I turned all the users options on for the portal but the MODE option did not show up If I set myself up as an admin then I get a mode option for the user I searc

  • Transfering photo library from old iMac to new iMac

    I just got a new 24" iMac and want to transfer my photo library (~2000 photos) from my older iMac. Is there an easy way for me to do this which will keep all my photos still organized in albums? Or is there no way around it and I will have to reorgan

  • Creating Indexes in Cluster Tables

    Hi,    I want to  enable the index for the a cluster table..how is it possible..As we see for transparent tables like MSEG ,index tab is enabled but tables like BSEG the option is disabled..Please help me find a solution.. Regards Maria

  • Problem with starting my phone back up

    Hello I'll shortly sum up the problems with my blackberry curve 9360. My phone is 4 months old I bought it in a Belgian shop. I havn't had many problems with it before, I barely added any apps besides 2 free youtube players one about a month ago and

  • Existing Flex License

    I'm an existing Flex 2 customer, and would very much like to migrate m development to Linux. However, I need to generate applications, which use flex charting, and would like to get rid of the 'Flex Charting Trial' message. Is there a way to reuse th