Cannot process messages after applying BT 2010 CU6 if BAM tracking profile references BTAHL7 messaging payload schemas

We are unable to process HL7 V2 messages after applying BizTalk 2010 CU 6 in a development environment when we have a BAM tracking profile deployed that references the BTAHL7 messaging payload schemas. The messages process with no issue if we remove the
message payload schema field mappings and use only message context properties. We have replicated this issue using only the default BTAHL7 pipelines and microsoft.com HL7 V2.3 unedited schemas and a very simple BAM activity and tracking
profile. In other words, we've eliminated our customization and still see the issue. The messages fail in the pipeline with the following error:
A pipeline component in the receive pipeline:<BTAHL72XReceivePipeline>,Version=1.0.0.0, Culture=neutral, PublicKeyToken=75be5a91f43bf6c9" is using the message context
properties "BTS.MessageDestination" or "BTS.SuspendMessageOnRoutingFailure" in a unsupported fashion. The pipeline processing is being terminated.
Can anyone help us resolve this issue?
Thanks.

This seems to be a known bug please refer the below discussion-
BizTalk Server 2010 Cumulative Update 6 - Compatibility with BTAHL7?
I would suggest you to uninstall CU6 first, restart the VM, Install CU7 and restart again.
CU 7 will have all the bug fixes for BizTalk 2010 till date.
Cumulative
update package 7 for BizTalk Server 2010
Service Pack
and Cumulative Update list for BizTalk Server 
Please let me know if there is anything that I can do to help.
Thanks,
Prashant
Please mark this post accordingly if it answers your query or is helpful.

Similar Messages

  • Outbound mails fails with error message number 826,Cannot process message,

    Hi
    We are in process of configuring outbound mail.
    Profile parmeteres adapted are icm/server_port_0= PROT=SMTP,PORT=0,
    is/SMTP/virt_host_0=:;and followed the notes 421359 for ICM Parameters
    when we give the SMTP port number as 25,SMTP serveice in SMIC is not working and when we changed to 0 SMTP service is working.
    Now the issue coming is we are not able to send the Mails to any domains and the error message in SOST is
    *message number 826,Cannot process message, no route from XXXXX to XXXXX.com.*
    Please suggest on how to over come the issue,are we missing any parameters or any other configurations.
    All your help is highly Appreciated.
    Regards
    Swetha

    HI
    Did you check in SCOT?
    SCOT>SMTP->Internet
    SCOT>Settings-->Default Domain.
    Please also check if you can telnet the SMTP server.
    Anindya
    Edited by: Anindya Bose on Mar 3, 2010 5:13 PM

  • Adapter PLAINHTTP cannot process message packages

    Hi,
    I'm receiving 10 lines in one message from ERP and then PI splits them to individual messages. When PI tries to send messages using plain HTTP, I got error saying "Adapter PLAINHTTP cannot process message packages".
    Message packaging is not on and SXI_MONITOR shows messages in separate payloads.
    br,
    Tapio

    This is my assumption.
    Multiple messages that result from mapping are sent as one bulk message (grouped together) in the Integration engine. The  messages are really split into  individual mesges only in the adapter engine. Since HTTP adapter live in Integration Engine and you use HTTP as receiver, you get this error.
    Refer the conclusion portion of the link for further explanation.
    /people/jin.shin/blog/2006/02/07/multi-mapping-without-bpm--yes-it146s-possible

  • Error while processing message payload Element PI SXMB_MONI (ECC to TM)

    Dear Experts,
    while processing an XML message in TM using receiver interface IntracompanyTransportationRequestRequest_In , we encounter an error message.
    <SAP:Stack>Error while processing message payload Element &#39;StockTransportOrderReferenceIndicator&#39; missing</SAP:Stack>  
    <SAP:Retry>M</SAP:Retry>
    ssee screenshot attached.
    The field StockTransportOrderReferenceIndicator cannot be located in ECC and I cannot find what the system is expecting to populate here.
    Can somebody propose an approach on how to investigate into this error message for the solution?
    thanks a lot
    Salvador

    Hi Salvador,
    Thanks for your reply. We were able to fix that issue. As of now we have managed to send sales order to TM but getting the following error. Messages are getting failed in SAP TM. Even if the product exists in the system (TM) still the error message persists. I have CIFed location, business partner, product from ECC and everything exists in SAP TM with the same business system group. Kindly advise. Did you happen to face any similar kind of issue during your implementation ?
    Thanks & Regards,
    Aunkur De

  • Error while processing message payload Element 'CategoryCode&#39

    Hi Experts,
    I am trying to integrate SAP ECC with TM. I have transferred the sales order from ECC to TM, but its not triggering order based transportation requirement (OTR) instead giving an error Error while processing message payload Element &#39;CategoryCode&#39 and all the xml messages are stuck in inbound queue. The screen shot of the issue is as appended herewith. Please advise.
    Thanks & Regards,
    Aunkur De

    Hi Aunkur,
    The issue will generally  come when a mandatory field in XML which you are not sending either or missed.
    Please check if all mandatory fields are mapped properly.
    Best regards,
    Rohit

  • Workflow stuck in starting state after applying SharePoint 2010 CU December 2012

    I have custom visual studio workflow which are associated with Custom content type. workflow gets triggered automatically when a file is uploaded to SharePoint. Everything was working fine till when i apply the following CU
    http://blogs.msdn.com/b/joerg_sinemus/archive/2012/12/27/sharepoint-2010-and-december-2012-cu.aspx
    After applying this my workflow get stuck in "Starting" state.
    No error were logged in 14 hive logs.
    Thanks in Advance!

    It took me a while but I came up with a work around.  There is a PowerShell script below that can be used to trigger the workflow.  Hopefully this will hold all of us over until the official fix arrives.
    First remove the auto start on change or new from the affected workflow
    Edit the script below to match your environment
    Add the script to Windows task scheduler with the PowerShell.exe in the command line
    This assumes PowerShell.exe is in the path
    Then add the full path and script name in the add arguements text box
    Script:
    #The purpose of this script is to start the SPD workflow with the windows task scheduler for a trigger
    #This should avoid the check in-out issue caused by the December 2012 SP CU patch
    #This needs to be run on an account with membership in the farm administration group for SharePoint and Shell in SQL
    #You can use a find and replace to replace the server and other names with your actual names
    #There are no status messages being used since this will be a scheduled task in the Windows task scheduler
    #Add SharePoint modules and create variable space
    add-pssnapin microsoft.sharepoint.powershell
    start-spassignment -global
    #Open the web site, list and the workflow
    $site=get-spsite %site url%"
    $web=get-spweb %Web url%
    #Open the %affected% library or list and workflow association
    $%affected%=$web.getlist("%affected%")
    $manager=$site.workflowmanager
    $culture=[system.globalization.cultureinfo]::currentculture
    $wfname="%affected workflow name"
    $association=$%affected%.workflowassociations.getassociationbyname($wfname,$culture)
    $data=$association.associationdata
    $wfrunoption=[microsoft.sharepoint.workflow.spworkflowrunoptions]::synchronous
    #Start workflow
    foreach ($item in $%affected%.items) {
    $site.workflowmanager.startworkflow($item,$association,$data,$wfrunoption)
    stop-spassignment -global

  • Cannot start FIMSynchronizationService after applying ServicePack for SharePoint 2013 Server

    Dear all,
    Yesterday we have applied SP1 for SharePoint 2013 on our SharePoint Farm (1 one server + 1 db server). Unfortunately the FIMSynchronizationService (Forefront Identity Manager Synchronization Service) will not start anymore after applying the SP.
    The SharePoint Services: User Profile Synchronisation Service and User Profile Service are started in Central Admin (can started /stopped without problems). Only the Windows Services FIMSynchronizationService cannot be started anymore.
    What can be the cause of this problem?
    The following application event is visible in the Event Viewer:
    ID 6324
    The server encountered an unexpected error and stopped.
    "BAIL: MMS(1856): sql.cpp(8490): 0x80231334 (The sql connection string has unsupported values.)
    BAIL: MMS(1856): sql.cpp(8533): 0x80231334 (The sql connection string has unsupported values.)
    BAIL: MMS(1856): server.cpp(260): 0x80231334 (The sql connection string has unsupported values.)
    BAIL: MMS(1856): server.cpp(3860): 0x80231334 (The sql connection string has unsupported values.)
    BAIL: MMS(1856): service.cpp(1539): 0x80231334 (The sql connection string has unsupported values.)
    ERR: MMS(1856): service.cpp(988): Error creating com objects. Error code: -2145184972. This is retry number 0.
    BAIL: MMS(1856): clrhost.cpp(283): 0x80131022
    BAIL: MMS(1856): scriptmanagerimpl.cpp(7670): 0x80131022
    BAIL: MMS(1856): server.cpp(251): 0x80131022
    BAIL: MMS(1856): server.cpp(3860): 0x80131022
    BAIL: MMS(1856): service.cpp(1539): 0x80131022
    ERR: MMS(1856): service.cpp(988): Error creating com objects. Error code: -2146234334. This is retry number 1.
    BAIL: MMS(1856): clrhost.cpp(283): 0x80131022
    BAIL: MMS(1856): scriptmanagerimpl.cpp(7670): 0x80131022
    BAIL: MMS(1856): server.cpp(251): 0x80131022
    BAIL: MMS(1856): server.cpp(3860): 0x80131022
    BAIL: MMS(1856): service.cpp(1539): 0x80131022
    ERR: MMS(1856): service.cpp(988): Error creating com objects. Error code: -2146234334. This is retry number 2.
    BAIL: MMS(1856): clrhost.cpp(283): 0x80131022
    BAIL: MMS(1856): scriptmanagerimpl.cpp(7670): 0x80131022
    BAIL: MMS(1856): server.cpp(251): 0x80131022
    BAIL: MMS(1856): server.cpp(3860): 0x80131022
    BAIL: MMS(1856): service.cpp(1539): 0x80131022
    ERR: MMS(1856): service.cpp(988): Error creating com objects. Error code: -2146234334. This is retry number 3.
    BAIL: MMS(1856): service.cpp(1002): 0x80131022
    Forefront Identity Manager 4.0.2450

    1. Try to reboot server and run PSCONFIG wizard.
    2. Check if permission of sync account has not changes (SPECIALLY Replicate directory change )permission on AD or local computer
    3. what account are you logged in with. 
    If possible provide ULS log details
    If this helped you resolve your issue, please mark it Answered
    Hello, thanks for your reply,
    We have done the following:
    1. rebooted server
    2. run psconfig: Psconfig.exe -cmd upgrade -inplace b2b -force -cmd applicationcontent -install -c
    installfeatures
    3. result: complaining about webconfig.accsrv.xml (removed this and tried again, then complaining about other web.config file)
    9/24/2014 19:05:14  9  ERR            Task applicationcontent has failed with an unknown exception
    09/24/2014 19:05:14  9  ERR            Exception: System.IO.InvalidDataException: Het webconfiguratiebestand C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\15\config\WEBCONFIG.ACCSRV.XML
    heeft geen element configuration/configSections/sectionGroup[@name='SharePoint'] of dit element is ongeldig.
       at Microsoft.SharePoint.Administration.SPAspConfigurationFile.CheckMergedActionsConfiguration(XmlDocument xd, String sourceFileName, Boolean createMergedActionsConfiguration)
       at Microsoft.SharePoint.Administration.SPAspConfigurationFile.ApplyActionToXmlDocument(XmlDocument xdAction, XmlDocument xd, String sourceFileName, SupportedXmlDocutmentActions supportedActions)
       at Microsoft.SharePoint.Administration.SPAspConfigurationFile.MergeWebConfig(XmlDocument xdWebConfig, String fileMask)
       at Microsoft.SharePoint.Administration.SPWebService.ApplyApplicationContentToLocalServer()
       at Microsoft.SharePoint.PostSetupConfiguration.ApplicationContentTask.Run()
       at Microsoft.SharePoint.PostSetupConfiguration.TaskThread.ExecuteTask()
    09/24/2014 19:05:14  9  INF            Entering function Common.BuildExceptionMessage
    09/24/2014 19:05:14  9  INF              Entering function StringResourceManager.GetResourceString
    09/24/2014 19:05:14  9  INF                Resource id to be retrieved is ExceptionInfo for language Dutch (Netherlands)
    09/24/2014 19:05:14  9  INF                Resource retrieved id ExceptionInfo is Er is een uitzondering van het type {0} opgetreden. Aanvullende informatie over de uitzondering:
    {1}
    09/24/2014 19:05:14  9  INF              Leaving function StringResourceManager.GetResourceString
    09/24/2014 19:05:14  9  INF            Leaving function Common.BuildExceptionMessage
    09/24/2014 19:05:14  9  INF            Entering function Common.BuildExceptionInformation
    09/24/2014 19:05:14  9  INF              Entering function Common.BuildExceptionMessage
    09/24/2014 19:05:14  9  INF                Entering function StringResourceManager.GetResourceString
    09/24/2014 19:05:14  9  INF                  Resource id to be retrieved is ExceptionInfo for language Dutch (Netherlands)
    09/24/2014 19:05:14  9  INF                  Resource retrieved id ExceptionInfo is Er is een uitzondering van het type {0} opgetreden. Aanvullende informatie over
    de uitzondering: {1}
    09/24/2014 19:05:14  9  INF                Leaving function StringResourceManager.GetResourceString
    09/24/2014 19:05:14  9  INF              Leaving function Common.BuildExceptionMessage
    09/24/2014 19:05:14  9  INF            Leaving function Common.BuildExceptionInformation
    09/24/2014 19:05:14  9  ERR            Er is een uitzondering van het type System.IO.InvalidDataException opgetreden. Aanvullende informatie over de uitzondering: Het webconfiguratiebestand C:\Program
    Files\Common Files\Microsoft Shared\Web Server Extensions\15\config\WEBCONFIG.ACCSRV.XML heeft geen element configuration/configSections/sectionGroup[@name='SharePoint'] of dit element is ongeldig.
    System.IO.InvalidDataException: Het webconfiguratiebestand C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\15\config\WEBCONFIG.ACCSRV.XML heeft geen element configuration/configSections/sectionGroup[@name='SharePoint'] of dit element is
    ongeldig.
       at Microsoft.SharePoint.Administration.SPAspConfigurationFile.CheckMergedActionsConfiguration(XmlDocument xd, String sourceFileName, Boolean createMergedActionsConfiguration)
       at Microsoft.SharePoint.Administration.SPAspConfigurationFile.ApplyActionToXmlDocument(XmlDocument xdAction, XmlDocument xd, String sourceFileName, SupportedXmlDocutmentActions supportedActions)
       at Microsoft.SharePoint.Administration.SPAspConfigurationFile.MergeWebConfig(XmlDocument xdWebConfig, String fileMask)
       at Microsoft.SharePoint.Administration.SPWebService.ApplyApplicationContentToLocalServer()
       at Microsoft.SharePoint.PostSetupConfiguration.ApplicationContentTask.Run()
       at Microsoft.SharePoint.PostSetupConfiguration.TaskThread.ExecuteTask()
    09/24/2014 19:05:14  9  INF            Entering function Common.BuildExceptionInformation
    09/24/2014 19:05:14  9  INF              Entering function Common.BuildExceptionMessage
    09/24/2014 19:05:14  9  INF                Entering function StringResourceManager.GetResourceString
    09/24/2014 19:05:14  9  INF                  Resource id to be retrieved is ExceptionInfo for language Dutch (Netherlands)
    09/24/2014 19:05:14  9  INF                  Resource retrieved id ExceptionInfo is Er is een uitzondering van het type {0} opgetreden. Aanvullende informatie over
    de uitzondering: {1}
    09/24/2014 19:05:14  9  INF                Leaving function StringResourceManager.GetResourceString
    09/24/2014 19:05:14  9  INF              Leaving function Common.BuildExceptionMessage
    09/24/2014 19:05:14  9  INF            Leaving function Common.BuildExceptionInformation
    09/24/2014 19:05:14  9  INF            Entering function get CommandCollection.this[string key]
    09/24/2014 19:05:14  9  INF              Entering function CommandCollectionBase.Get
    09/24/2014 19:05:14  9  INF                Found value in collection for key global
    09/24/2014 19:05:14  9  INF              Leaving function CommandCollectionBase.Get
    09/24/2014 19:05:14  9  INF              Found command global in collection
    09/24/2014 19:05:14  9  INF            Leaving function get CommandCollection.this[string key]
    09/24/2014 19:05:14  9  INF            Entering function get CommandCollection.this[string key]
    09/24/2014 19:05:14  9  INF              Entering function CommandCollectionBase.Get
    09/24/2014 19:05:14  9  INF                Found value in collection for key initialize
    09/24/2014 19:05:14  9  INF              Leaving function CommandCollectionBase.Get
    09/24/2014 19:05:14  9  INF              Found command initialize in collection
    09/24/2014 19:05:14  9  INF            Leaving function get CommandCollection.this[string key]
    09/24/2014 19:05:14  9  INF            Entering function Command.this[string key]
    09/24/2014 19:05:14  9  INF              Entering function CommandCollectionBase.Get
    09/24/2014 19:05:14  9  INF                Found value in collection for key SINGLESERVER
    09/24/2014 19:05:14  9  INF              Leaving function CommandCollectionBase.Get
    09/24/2014 19:05:14  9  INF              Found parameter SINGLESERVER in collection
    09/24/2014 19:05:14  9  INF            Leaving function Command.this[string key]
    09/24/2014 19:05:14  9  INF            Entering function Command.this[string key]
    09/24/2014 19:05:14  9  INF              Entering function CommandCollectionBase.Get
    09/24/2014 19:05:14  9  INF                Found value in collection for key upgradesessionid
    09/24/2014 19:05:14  9  INF              Leaving function CommandCollectionBase.Get
    09/24/2014 19:05:14  9  INF              Found parameter upgradesessionid in collection
    09/24/2014 19:05:14  9  INF            Leaving function Command.this[string key]
    09/24/2014 19:05:14  9  INF            Releasing the farm upgrade lock in common exception handler.
    09/24/2014 19:05:14  9  INF            Entering function TaskBase.OnTaskStop
    09/24/2014 19:05:14  9  INF              Creating the OnTaskStop event for task applicationcontent
    09/24/2014 19:05:14  9  ERR              Task applicationcontent has failed
    09/24/2014 19:05:14  9  INF              friendlyMessage for task applicationcontent is Er is een uitzondering van het type System.IO.InvalidDataException opgetreden. Aanvullende informatie
    over de uitzondering: Het webconfiguratiebestand C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\15\config\WEBCONFIG.ACCSRV.XML heeft geen element configuration/configSections/sectionGroup[@name='SharePoint'] of dit element is ongeldig.
    09/24/2014 19:05:14  9  INF              debugMessage for task applicationcontent is Er is een uitzondering van het type System.IO.InvalidDataException opgetreden. Aanvullende informatie
    over de uitzondering: Het webconfiguratiebestand C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\15\config\WEBCONFIG.ACCSRV.XML heeft geen element configuration/configSections/sectionGroup[@name='SharePoint'] of dit element is ongeldig.
    System.IO.InvalidDataException: Het webconfiguratiebestand C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\15\config\WEBCONFIG.ACCSRV.XML heeft geen element configuration/configSections/sectionGroup[@name='SharePoint'] of dit element is
    ongeldig.
       at Microsoft.SharePoint.Administration.SPAspConfigurationFile.CheckMergedActionsConfiguration(XmlDocument xd, String sourceFileName, Boolean createMergedActionsConfiguration)
       at Microsoft.SharePoint.Administration.SPAspConfigurationFile.ApplyActionToXmlDocument(XmlDocument xdAction, XmlDocument xd, String sourceFileName, SupportedXmlDocutmentActions supportedActions)
       at Microsoft.SharePoint.Administration.SPAspConfigurationFile.MergeWebConfig(XmlDocument xdWebConfig, String fileMask)
       at Microsoft.SharePoint.Administration.SPWebService.ApplyApplicationContentToLocalServer()
       at Microsoft.SharePoint.PostSetupConfiguration.ApplicationContentTask.Run()
       at Microsoft.SharePoint.PostSetupConfiguration.TaskThread.ExecuteTask()
    09/24/2014 19:05:14  9  INF              Entering function TaskBase.FireTaskStateChanged
    09/24/2014 19:05:14  9  INF                Firing the OnTaskStateChanged event for task applicationcontent
    09/24/2014 19:05:14  9  INF                Entering function TaskDriver.TaskStateEventHandler
    09/24/2014 19:05:14  9  INF                  Entering function StringResourceManager.GetResourceString
    09/24/2014 19:05:14  9  INF                    Resource id to be retrieved is ApplicationContentTaskDisplayName for language Dutch (Netherlands)
    09/24/2014 19:05:14  9  INF                    Resource retrieved id ApplicationContentTaskDisplayName is bestanden met inhoud voor toepassingen installeren
    09/24/2014 19:05:14  9  INF                  Leaving function StringResourceManager.GetResourceString
    09/24/2014 19:05:14  9  INF                  Received an TaskStateEventHandler event.  task:applicationcontent TaskBase.State:stopped
    09/24/2014 19:05:14  9  INF                  Entering function TasksQueue.IncrementTaskFailed
    09/24/2014 19:05:14  9  INF                    Incremented the number of tasks failed to 1
    09/24/2014 19:05:14  9  INF                  Leaving function TasksQueue.IncrementTaskFailed
    09/24/2014 19:05:14  9  INF                  Task applicationcontent has stopped and failed.  Total failed is now 1
    09/24/2014 19:05:14  9  INF                Leaving function TaskDriver.TaskStateEventHandler
    09/24/2014 19:05:14  9  INF                Entering function CommandLine.TaskStateEventHandler
    09/24/2014 19:05:14  9  INF                  Received an TaskStateEventHandler event.  task:applicationcontent TaskBase.State:stopped
    09/24/2014 19:05:14  9  INF                  Task applicationcontent has stopped and failed.  Total failed is now 1
    09/24/2014 19:05:14  9  INF                  Entering function StringResourceManager.GetResourceString
    09/24/2014 19:05:14  9  INF                    Resource id to be retrieved is ApplicationContentTaskFailConfigDisplayLabel for language Dutch (Netherlands)
    09/24/2014 19:05:14  9  INF                    Resource retrieved id ApplicationContentTaskFailConfigDisplayLabel is Kan de bestanden met inhoud voor toepassingen
    niet installeren.
    09/24/2014 19:05:14  9  INF                  Leaving function StringResourceManager.GetResourceString
    09/24/2014 19:05:14  9  INF                  Last message from task applicationcontent is Er is een uitzondering van het type System.IO.InvalidDataException opgetreden.
    Aanvullende informatie over de uitzondering: Het webconfiguratiebestand C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\15\config\WEBCONFIG.ACCSRV.XML heeft geen element configuration/configSections/sectionGroup[@name='SharePoint'] of
    dit element is ongeldig.
    09/24/2014 19:05:14  9  INF                Leaving function CommandLine.TaskStateEventHandler
    09/24/2014 19:05:14  9  INF              Leaving function TaskBase.FireTaskStateChanged
    09/24/2014 19:05:14  9  INF            Leaving function TaskBase.OnTaskStop
    09/24/2014 19:05:14  9  INF          Leaving function TaskThread.ExecuteTask
    09/24/2014 19:05:14  1  INF          Entering function StringResourceManager.GetResourceString
    09/24/2014 19:05:14  1  INF            Resource id to be retrieved is ApplicationContentTaskDisplayName for language Dutch (Netherlands)
    09/24/2014 19:05:14  1  INF            Resource retrieved id ApplicationContentTaskDisplayName is bestanden met inhoud voor toepassingen installeren
    09/24/2014 19:05:14  1  INF          Leaving function StringResourceManager.GetResourceString
    09/24/2014 19:05:14  1  ERR          Task bestanden met inhoud voor toepassingen installeren failed, so stopping execution of the engine
    09/24/2014 19:05:14  1  INF          Entering function StringResourceManager.GetResourceString
    09/24/2014 19:05:14  1  INF            Resource id to be retrieved is ApplicationContentTaskFailConfigDisplayLabel for language Dutch (Netherlands)
    09/24/2014 19:05:14  1  INF            Resource retrieved id ApplicationContentTaskFailConfigDisplayLabel is Kan de bestanden met inhoud voor toepassingen niet installeren.
    09/24/2014 19:05:14  1  INF          Leaving function StringResourceManager.GetResourceString
    09/24/2014 19:05:14  1  ERR          Kan de bestanden met inhoud voor toepassingen niet installeren.
    Er is een uitzondering van het type System.IO.InvalidDataException opgetreden. Aanvullende informatie over de uitzondering: Het webconfiguratiebestand C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\15\config\WEBCONFIG.ACCSRV.XML heeft
    geen element configuration/configSections/sectionGroup[@name='SharePoint'] of dit element is ongeldig.
    System.IO.InvalidDataException: Het webconfiguratiebestand C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\15\config\WEBCONFIG.ACCSRV.XML heeft geen element configuration/configSections/sectionGroup[@name='SharePoint'] of dit element is
    ongeldig.
       at Microsoft.SharePoint.Administration.SPAspConfigurationFile.CheckMergedActionsConfiguration(XmlDocument xd, String sourceFileName, Boolean createMergedActionsConfiguration)
       at Microsoft.SharePoint.Administration.SPAspConfigurationFile.ApplyActionToXmlDocument(XmlDocument xdAction, XmlDocument xd, String sourceFileName, SupportedXmlDocutmentActions supportedActions)
       at Microsoft.SharePoint.Administration.SPAspConfigurationFile.MergeWebConfig(XmlDocument xdWebConfig, String fileMask)
       at Microsoft.SharePoint.Administration.SPWebService.ApplyApplicationContentToLocalServer()
       at Microsoft.SharePoint.PostSetupConfiguration.ApplicationContentTask.Run()
       at Microsoft.SharePoint.PostSetupConfiguration.TaskThread.ExecuteTask()
    09/24/2014 19:05:14  1  INF          Entering function TaskDriver.NotifyTaskSummary
    09/24/2014 19:05:14  1  INF            Entering function StringResourceManager.GetResourceString
    09/24/2014 19:05:14  1  INF              Resource id to be retrieved is TotalTasksRan for language Dutch (Netherlands)
    09/24/2014 19:05:14  1  INF              Resource retrieved id TotalTasksRan is Totaal aantal uitgevoerde configuratie-instellingen: {0}
    09/24/2014 19:05:14  1  INF            Leaving function StringResourceManager.GetResourceString
    09/24/2014 19:05:14  1  INF            Entering function TaskDriver.OnTaskDriverNotify
    09/24/2014 19:05:14  1  INF              Sending a task driver notify event: TaskDriverEventArgs.EventCriticalityType: info, TaskDriverEventArgs.EventMessageType: totalran, TaskDriverEventArgs.EventType.notify,
    message: Totaal aantal uitgevoerde configuratie-instellingen: 4
    09/24/2014 19:05:14  1  INF              Entering function TaskDriver.FireOnTaskDriverEvent
    09/24/2014 19:05:14  1  INF                Entering function CommandLine.TaskDriverEventHandler
    09/24/2014 19:05:14  1  INF                  Received a TaskDriverEventHandler: TaskDriverEventArgs.EventCriticalityType info, TaskDriverEventArgs.EventType notify,
    message Totaal aantal uitgevoerde configuratie-instellingen: 4
    09/24/2014 19:05:14  1  INF                Leaving function CommandLine.TaskDriverEventHandler
    09/24/2014 19:05:14  1  INF              Leaving function TaskDriver.FireOnTaskDriverEvent
    09/24/2014 19:05:14  1  INF            Leaving function TaskDriver.OnTaskDriverNotify
    09/24/2014 19:05:14  1  INF            Entering function StringResourceManager.GetResourceString
    09/24/2014 19:05:14  1  INF              Resource id to be retrieved is TotalTasksSucceeded for language Dutch (Netherlands)
    09/24/2014 19:05:14  1  INF              Resource retrieved id TotalTasksSucceeded is Totaal aantal geslaagde configuratie-instellingen: {0}
    09/24/2014 19:05:14  1  INF            Leaving function StringResourceManager.GetResourceString
    09/24/2014 19:05:14  1  INF            Entering function TaskDriver.OnTaskDriverNotify
    09/24/2014 19:05:14  1  INF              Sending a task driver notify event: TaskDriverEventArgs.EventCriticalityType: info, TaskDriverEventArgs.EventMessageType: totalsuccess, TaskDriverEventArgs.EventType.notify,
    message: Totaal aantal geslaagde configuratie-instellingen: 3
    09/24/2014 19:05:14  1  INF              Entering function TaskDriver.FireOnTaskDriverEvent
    09/24/2014 19:05:14  1  INF                Entering function CommandLine.TaskDriverEventHandler
    09/24/2014 19:05:14  1  INF                  Received a TaskDriverEventHandler: TaskDriverEventArgs.EventCriticalityType info, TaskDriverEventArgs.EventType notify,
    message Totaal aantal geslaagde configuratie-instellingen: 3
    09/24/2014 19:05:14  1  INF                Leaving function CommandLine.TaskDriverEventHandler
    09/24/2014 19:05:14  1  INF              Leaving function TaskDriver.FireOnTaskDriverEvent
    09/24/2014 19:05:14  1  INF            Leaving function TaskDriver.OnTaskDriverNotify
    09/24/2014 19:05:14  1  INF            Entering function StringResourceManager.GetResourceString
    09/24/2014 19:05:14  1  INF              Resource id to be retrieved is TotalTasksFailed for language Dutch (Netherlands)
    09/24/2014 19:05:14  1  INF              Resource retrieved id TotalTasksFailed is Totaal aantal mislukte configuratie-instellingen: {0}
    09/24/2014 19:05:14  1  INF            Leaving function StringResourceManager.GetResourceString
    09/24/2014 19:05:14  1  INF            Entering function TaskDriver.OnTaskDriverNotify
    09/24/2014 19:05:14  1  INF              Sending a task driver notify event: TaskDriverEventArgs.EventCriticalityType: info, TaskDriverEventArgs.EventMessageType: totalfail, TaskDriverEventArgs.EventType.notify,
    message: Totaal aantal mislukte configuratie-instellingen: 2
    09/24/2014 19:05:14  1  INF              Entering function TaskDriver.FireOnTaskDriverEvent
    09/24/2014 19:05:14  1  INF                Entering function CommandLine.TaskDriverEventHandler
    09/24/2014 19:05:14  1  INF                  Received a TaskDriverEventHandler: TaskDriverEventArgs.EventCriticalityType info, TaskDriverEventArgs.EventType notify,
    message Totaal aantal mislukte configuratie-instellingen: 2
    09/24/2014 19:05:14  1  INF                Leaving function CommandLine.TaskDriverEventHandler
    09/24/2014 19:05:14  1  INF              Leaving function TaskDriver.FireOnTaskDriverEvent
    09/24/2014 19:05:14  1  INF            Leaving function TaskDriver.OnTaskDriverNotify
    09/24/2014 19:05:14  1  INF          Leaving function TaskDriver.NotifyTaskSummary
    09/24/2014 19:05:14  1  ERR          One or more configuration tasks has failed or some tasks were not run
    09/24/2014 19:05:14  1  INF          Entering function StringResourceManager.GetResourceString
    09/24/2014 19:05:14  1  INF            Resource id to be retrieved is PostSetupConfigurationStoppingSucceeded for language Dutch (Netherlands)
    09/24/2014 19:05:14  1  INF            Resource retrieved id PostSetupConfigurationStoppingSucceeded is De configuratie van SharePoint-producten is gestopt.
    09/24/2014 19:05:14  1  INF          Leaving function StringResourceManager.GetResourceString
    09/24/2014 19:05:14  1  INF          Entering function TaskDriver.OnTaskDriverStopping
    09/24/2014 19:05:14  1  INF            Sending a task driver stopping event: TaskDriverEventArgs.EventCriticalityType info, TaskDriverEventArgs.EventType.stopping, De configuratie van SharePoint-producten
    is gestopt.
    09/24/2014 19:05:14  1  INF            Entering function TaskDriverStateChange.Enter
    09/24/2014 19:05:14  1  INF              Acquiring the writer lock to change the state
    09/24/2014 19:05:14  1  INF              Current state of the task driver is neverrun.  You want to change it to stoppingrun
    09/24/2014 19:05:14  1  INF              Changed state of the task driver to neverrun
    09/24/2014 19:05:14  1  INF              Released the writer lock to change the state
    09/24/2014 19:05:14  1  INF            Leaving function TaskDriverStateChange.Enter
    09/24/2014 19:05:14  1  INF            Entering function TaskDriver.FireOnTaskDriverEvent
    09/24/2014 19:05:14  1  INF              Entering function CommandLine.TaskDriverEventHandler
    09/24/2014 19:05:14  1  INF                Received a TaskDriverEventHandler: TaskDriverEventArgs.EventCriticalityType info, TaskDriverEventArgs.EventType stopping, message
    De configuratie van SharePoint-producten is gestopt.
    09/24/2014 19:05:14  1  INF              Leaving function CommandLine.TaskDriverEventHandler
    09/24/2014 19:05:14  1  INF            Leaving function TaskDriver.FireOnTaskDriverEvent
    09/24/2014 19:05:14  1  INF          Leaving function TaskDriver.OnTaskDriverStopping
    09/24/2014 19:05:14  1  INF        Leaving function TaskDriver.ExecuteTasks
    09/24/2014 19:05:14  1  ERR        One or more configuration tasks has failed to execute
    09/24/2014 19:05:14  1  INF        Entering function TaskDriver.Stop
    09/24/2014 19:05:14  1  INF          Entering function StringResourceManager.GetResourceString
    09/24/2014 19:05:14  1  INF            Resource id to be retrieved is PostSetupConfigurationFailedEventLog for language Dutch (Netherlands)
    09/24/2014 19:05:14  1  INF            Resource retrieved id PostSetupConfigurationFailedEventLog is De configuratie van SharePoint-producten is mislukt. Voor een goede werking moet u de configuratie
    opnieuw uitvoeren. Als u een juiste diagnose wilt stellen van dit probleem, kunt u de gedetailleerde foutinformatie op {0} raadplegen, het probleem oplossen en de configuratiewizard opnieuw uitvoeren.
    09/24/2014 19:05:14  1  INF          Leaving function StringResourceManager.GetResourceString
    09/24/2014 19:05:14  1  ERR          De configuratie van SharePoint-producten is mislukt. Voor een goede werking moet u de configuratie opnieuw uitvoeren. Als u een juiste diagnose wilt stellen van dit
    probleem, kunt u de gedetailleerde foutinformatie op C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\15\LOGS\PSCDiagnostics_9_24_2014_19_4_25_376_763845942.log raadplegen, het probleem oplossen en de configuratiewizard opnieuw uitvoeren.
    09/24/2014 19:05:14  1  INF          Entering function StringResourceManager.GetResourceString
    09/24/2014 19:05:14  1  INF            Resource id to be retrieved is PostSetupConfigurationFailedUserMessage for language Dutch (Netherlands)
    09/24/2014 19:05:14  1  INF            Resource retrieved id PostSetupConfigurationFailedUserMessage is De configuratie van SharePoint-producten is mislukt. U moet de configuratie opnieuw uitvoeren
    voordat u de SharePoint-producten kunt gebruiken. Zie het diagnostisch logboek op {0} en het gebeurtenislogboek van de toepassing voor meer informatie.
    09/24/2014 19:05:14  1  INF          Leaving function StringResourceManager.GetResourceString
    09/24/2014 19:05:14  1  INF          Entering function TaskDriver.OnTaskDriverStop
    09/24/2014 19:05:14  1  INF            Sending a task driver stop event: TaskDriverEventArgs.EventCriticalityType error, TaskDriverEventArgs.EventType.stop, De configuratie van SharePoint-producten
    is mislukt. U moet de configuratie opnieuw uitvoeren voordat u de SharePoint-producten kunt gebruiken. Zie het diagnostisch logboek op C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\15\LOGS\PSCDiagnostics_9_24_2014_19_4_25_376_763845942.log
    en het gebeurtenislogboek van de toepassing voor meer informatie.
    09/24/2014 19:05:14  1  INF            Entering function TaskDriverStateChange.Enter
    09/24/2014 19:05:14  1  INF              Acquiring the writer lock to change the state
    09/24/2014 19:05:14  1  INF              Current state of the task driver is neverrun.  You want to change it to stoppedrunning
    09/24/2014 19:05:14  1  INF              Changed state of the task driver to neverrun
    09/24/2014 19:05:14  1  INF              Released the writer lock to change the state
    09/24/2014 19:05:14  1  INF            Leaving function TaskDriverStateChange.Enter
    09/24/2014 19:05:14  1  INF            Entering function TaskDriver.FireOnTaskDriverEvent
    09/24/2014 19:05:14  1  INF              Entering function CommandLine.TaskDriverEventHandler
    09/24/2014 19:05:14  1  INF                Received a TaskDriverEventHandler: TaskDriverEventArgs.EventCriticalityType error, TaskDriverEventArgs.EventType stop, message De
    configuratie van SharePoint-producten is mislukt. U moet de configuratie opnieuw uitvoeren voordat u de SharePoint-producten kunt gebruiken. Zie het diagnostisch logboek op C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\15\LOGS\PSCDiagnostics_9_24_2014_19_4_25_376_763845942.log
    en het gebeurtenislogboek van de toepassing voor meer informatie.
    09/24/2014 19:05:14  1  INF              Leaving function CommandLine.TaskDriverEventHandler
    09/24/2014 19:05:14  1  INF            Leaving function TaskDriver.FireOnTaskDriverEvent
    09/24/2014 19:05:14  1  INF          Leaving function TaskDriver.OnTaskDriverStop
    09/24/2014 19:05:14  1  INF        Leaving function TaskDriver.Stop
    09/24/2014 19:05:14  1  INF        UnLocking the task driver for exclusive use while we ran tasks
    09/24/2014 19:05:14  1  INF      Leaving function TaskDriver.Run
    09/24/2014 19:05:14  1  ERR      Post setup configuration was not run successfully when using the command line task driver module
    09/24/2014 19:05:14  1  INF    Leaving function PsconfigCommandLineMain.Main
    No idea what to do?

  • LR3: lack of processing feedback after applying noise reduction

    Now with the bigger RAW files (7D's 18Mpix) Lightroom is becoming really slow.
    On several ocassions after applying some noise reduction, and waiting for some 20-30sec for a visible result, I moved the slider back and forth in the wrong assumption that nothing happens, but in fact I was disrupting an ongoing operation. The problem in LR3 is that it does not show any of its tooltips with an information that a noise reducing operation is in progress.
    I hope that the team would improve this in the next version 3.01, we need at least the tooltip to appear.
    Thomas

    i absolutely agree!
    Now, in LR3 you can move the sliders very smoothly - but nothing happens for seconds.
    Same happens with the local adjustment brush. You click on the picture and start to paint but nothing happens. After a few seconds the pin appears and MAYBE the first click for the mask is set. After that you can paint further.
    Another thing is, that it takes longer for a RAW to be loaded. Sometimes i see the "Loading"-Hint for 10 Seconds or more. If i need to scan fast thru hundreds of pictures to clone away some things or make a face a little bit brighter, these loading times feels like ages.
    Both is very annoying and was better in LR2.
    BTW: I think LR3 has a serious memory leak because i can see LR3 slowing down over time. After developing about 20 pictures everything slows down, sometimes to a point where i think LR3 has frozen (no CPU usages, just standing still for 30 seconds or more). When i quit and restart LR3, everything is quick until the next slow down.
    (older iMac 24", white model, 3GB RAM that can be used) - you may see this at a later point if you have 8GB or more RAM of course.

  • Cannot Startup Portal after applying SAP J2EE PL 24

    The EP 6.0 was running OK before. After I have applied PL 21, 22, 23, 24, teh portal despatcher cannot connect to the server anymore.
    I get the following error:
    Any clue whats happen ?
    Thanks,
    Sanjoy.
    >  Checking for synchronization with cluster elements ...
    Start synchronizing application Mobile_HTMLB_for_Java. More details about the sy
    nchronization can be found in INFO log files.
      Synchronization of missing application [Mobile_HTMLB_for_Java] successfully co
    mpleted.
    Start synchronizing application irj. More details about the synchronization can
    be found in INFO log files.
      Error : Background synchronization of application [irj] did not succeed, becau
    se : java.rmi.RemoteException: Error occured while synchronizing application [ir
    j]. Committing deploy to container - servlet_jsp failed.com.inqmy.services.deplo
    y.container.DeploymentException: Can't init application irj. com.inqmy.services.
    servlets_jsp.server.WebApplicationException: ID17103: Can't read web.xml. Or err
    or in web.xml. java.io.FileNotFoundException: C:\usr\sap\DTCJ\j2ee\j2ee_01\clust
    er\server\services\servlet_jsp\work\jspTemp\irj\root\WEB-INF\WEB.XML (The system
    cannot find the file specified); nested exception is:
            com.inqmy.services.deploy.container.DeploymentException: Can't init appl
    ication irj. com.inqmy.services.servlets_jsp.server.WebApplicationException: ID1
    7103: Can't read web.xml. Or error in web.xml. java.io.FileNotFoundException: C:
    \usr\sap\DTCJ\j2ee\j2ee_01\cluster\server\services\servlet_jsp\work\jspTemp\irj\
    root\WEB-INF\WEB.XML (The system cannot find the file specified)
    Start synchronizing application com.sap.netweaver.coll.appl.rtc.streamsrv. More
    details about the synchronization can be found in INFO log files.
      Synchronization of missing application [com.sap.netweaver.coll.appl.rtc.stream
    srv] successfully completed.
      Synchronization of all applications completed!

    The error message is explicit:
    Committing deploy to container - servlet_jsp failed.com.inqmy.services.deplo
    y.container.DeploymentException: Can't init application irj. com.inqmy.services.
    servlets_jsp.server.WebApplicationException: ID17103: Can't read web.xml. Or err
    or in web.xml. java.io.FileNotFoundException: C:\usr\sap\DTCJ\j2ee\j2ee_01\clust
    er\server\services\servlet_jsp\work\jspTemp\irj\root\WEB-INF\WEB.XML (The system
    cannot find the file specified); nested exception is:
    com.inqmy.services.deploy.container.DeploymentException: Can't init appl
    ication irj. com.inqmy.services.servlets_jsp.server.WebApplicationException: ID1
    7103: Can't read web.xml. Or error in web.xml. java.io.FileNotFoundException: C:
    \usr\sap\DTCJ\j2ee\j2ee_01\cluster\server\services\servlet_jsp\work\jspTemp\irj\
    root\WEB-INF\WEB.XML (The system cannot find the file specified)
    You need to figure out what happened to WEB.XML and correct the problem (ie put it back where the JVM expects to find it). You may simply have a format problem which you should check by viewing the file (if it exists) in IE and ensuring it displays properly (IE will give an error if the xml is poorly formatted).
    Nick

  • Cannot color image after applying "Graphic Pen" effect.

    I open a .dng file which was in greyscale. Then converted it to RGB. Applied the effect Graphic Pen. Added a new layer, fill it with red, changed mode to Overylay, and when I tried merging down, or saving as a jpeg, it converts the image right back to B&W. I even tried changing my brush to red and Overlay mode, it just won't let me color the image at all. I've tried hue/saturation, and when I try to save the adjustment, it converts right back to B&W. Any help? Here are some screen shots.
    This is after merging down.

    Hue/saturation has the same problem as overlay, but you can colorize the image checking colorize and by moving the saturation and lightness sliders to the right.
    Did you try the different blending modes with a color fill layer?
    It really depends on the effect you want.
    For example you could set the foreground color in the toolbox to Red and the background color to White.
    Then when you use the graphic pen filter the black pixels will be red and the white pixels white.
    The colors for the sketch filters in the filter gallery are dependent on the colors you have set in the toolbox.
    If you planning on using the image for the web, you could reduce the pixel dimensions of the image (Image>Image Size)
    and then the overlay mode would work for colorizing the image if that's the effect you like.
    The reason that works is that resizing introduces a little bit of blurring (for lack of a better word) around the edges.
    Message was edited by: R_Kelly

  • Cannot download podcasts after applying latest Leopard security update

    Last night I applied the latest security update to my Mac Mini, running the latest version of iTunes and Leopard. This morning I went to update my iTunes library with the latest podcasts. When I did the refresh, it started to download several podcasts, but then stopped them all with a message stating that I did not have the proper permissions. My iTunes library is on a fireware-connected DROBO that has approx. 1.5 TB free space. I have been using this configuration for over 2 months without problems.

    You need to check permissions on the folder that holds your library. Navigate to your music folder, Get Info and make sure permissions are set to READ and WRITE. Then...make sure it's applied to ALL enclosed folders. (Click the Gear for the apply to all option.)

  • Retrieve processed message payload from database

    Hi,
    We need to retrieve the payload of all the messages which have been processed in last 1 month.
    We do not have the message archiving configured currently.
    Could you please let us know how can i retrieve the payload? We can not do it manually as the voulme is really huge.
    Please help with suggestions.
    Thanks,
    Jane

    If you are not archiving the messages then i don't think you can get the payloads for last one month.
    However there is a service using which you can retrieve the payload.
    PI/XI: how to get a PI message from java stack (AAE) in PI 7.11 from ABAP?
    You can write a wrapper around and download multiple payloads.

  • J2EE Engine cannot start after applying SP11 on WAS 6.40

    Hi SAP
    I am upgrading my WAS 6.40 SR1 java instance from SP9 to SP11. At the last stages of the installation the Java instance is stopped & started,at the step where Java instance is started, the 'server' process of the Java instance is not coming up properly. jcmon shows the dispatcher & SDM with status 'running' while server0 is with status 'stopped'.
    Since I'm using ABAP as data source to the J2EE, appears to me that the problem is occuring due to password mismatch for user SAPJSF in R/3 client 168 & between user SAPJSF in J2EE though I'm not sure why the password might change in J2EE after applying SP11.
    Please advice if my reasoning is correct, if no please advice how to solve this problem.
    If yes pls advice how can I change the password for user SAPJSF in J2EE. FYI I already tried changing the password for user SAPJSF using the offline config tool, Under cluster-data-> Instance_ID87066 I select the
    services com.sap.security.core.ume.service, then I select the ume.r3.connection.master.passwd, then the problem is inside the value option I'm not able to input the new password, neither I'm able to delete the old password, so the best thing I can do is Click on Set which opens a small window without any description with 2 options OK & Cancel, here I put the password same as R/3 password & save, after this I re-start the J2EE, but the same problem persists. Please advice on solving the problem.
    Trace file std_server0.out shows that the foll error message......
    Apr 28, 2005 8:09:47 PM com.sap.security.core.persistence
    [SAPEngine_System_Thread[impl:5]_23] Fatal: User Management Engine
    (com.sap.security.core.persistence.datasource.imp.R3Persistence) failed to connect to the ABAP backend system. Check that connection data are correct and the backend system is available. Error message: "Name or password is incorrect. Please re-enter". Connection data (obtained
    from properties of UME service in section "ume.r3.connection.master.": "{
    snc_qop=
    client=168
    abap_debug=
    snc_myname=
    gwserv=
    snc_partnername=
    ashost=CDBNTD03
    group=
    r3name=
    snc_mode=0
    gwhost=
    sysnr=00
    msserv=
    poolmaxsize=10
    snc_lib=
    passwd=********
    poolmaxwait=
    trace=
    receiverid_guest=master
    mshost=
    user=SAPJSF
    lang=
    receiverid=master
    Apr 28, 2005 8:09:47 PM com.sap.security.core.persistence
    [SAPEngine_System_Thread[impl:5]_23] Fatal: Initialization of UME persistence adapter "R3_DATASOURCE" failed.
    service com.sap.security.core.ume.service ================= ERROR
    =================
    Core service com.sap.security.core.ume.service failed. J2EE Engine cannot be started.
    com.sap.engine.frame.ServiceException: Name or password is incorrect.
    Please re-enter at com.sap.security.core.server.ume.service.UMEServiceFrame.start
    (UMEServiceFrame.java:555)
    at com.sap.engine.frame.ApplicationFrameAdaptor.start
    (ApplicationFrameAdaptor.java:31)
    at
    com.sap.engine.core.service630.container.ServiceRunner.startApplicationServiceFrame(ServiceRunner.java:
    201)
    at com.sap.engine.core.service630.container.ServiceRunner.run
    (ServiceRunner.java:142)
    at com.sap.engine.frame.core.thread.Task.run(Task.java:60)
    at com.sap.engine.core.thread.impl5.SingleThread.execute
    (SingleThread.java:73)
    at com.sap.engine.core.thread.impl5.SingleThread.run
    (SingleThread.java:145)
    Caused by:
    com.sap.security.core.persistence.datasource.PersistenceException: Name or password is incorrect. Please re-enter
    at
    com.sap.security.core.persistence.datasource.imp.R3PersistenceBase.newPersistenceException(R3Persistenc
    eBase.java:1707) at
    com.sap.security.core.persistence.datasource.imp.R3PersistenceBase.init (R3PersistenceBase.java:1934)
    std_server0.out (16%)
    Thanks & Rgds,
    Abhishek

    Hi,
    have a look here.
    WebAS - invalid property value

  • Unable to send or receive text messages after apply s/w update on Q10

    After apply software release 10.1.0.4181 (size 6mb) on my Q10, I can no longer send or receive text messages, pls help. At first I thought the text messages were only collapsed, but I am unable to send, receive or open any previous chat. I have rebooted the device multiple times, including removing the battery. When trying to do a text message, system seems stuck on the last message received yesterday, and am unable to open this chat session, reply, compose. I cannot compose for any contact, nor able to receive any text messages. PLs help !!
    Solved!
    Go to Solution.

    I removed my battery again, this time left out for 5 minutes. SMS is now working again. (previously approx 2 min)
    However, the problem I was experincing, I have had before, where I cannot send an sms message. I believe I may have hit a hot key and basically does not allow you to send a message. Typically I reboot at this point and sms works again. I will try your new os option after I verify all is working properly again.  Thank you for your help.

  • Windows Server 2008 hangs in "Applying computer settings" after installing Sharepoint 2010

    Hi!
    I have a server which is designated to be a Sharepoint server, I have successfully installed the server, SQL server R2 and Sharepoint 2010, but right after Sharepoint Server 2010 is installed the nex time I reboot the machine it hangs in "Applying computer
    settings" I have tried reinstalling the server several times, improving the server specs.
    The installations run just fine I can even see the sharepoint site, and make any configuration, the issue comes when I restart the server (for updates for example..)
    Can someone help me with this issue?
    Thanks in advance
    Carlos R Vargas M

    Hi,
    It may take some time for configuration after the new installation. Please wait patiently. If it still hangs, please refer to the following article:
    KB article 2379016
    A computer that is running Windows Vista or Windows Server 2008 stops responding at the "Applying User Settings" stage of the logon process.
    http://support.microsoft.com/kb/2379016
    Tim Quan

Maybe you are looking for