DeploymentError

Hi All,
While I am tryng to deploying getting error like this.
Deploying on partition "default" of "/Farm_soa_domain/soa_domain/soa_server1" ...
Deploying on "/Farm_soa_domain/soa_domain/soa_server1" failed!
There was an error deploying the composite on soa_server1: Deployment Failed: Error occurred during deployment of component: ExtractMemberDetails to service engine: implementation.bpel for composite: ExtractmemberDetails: ORABPEL-05250
Error deploying BPEL suitcase.
error while attempting to deploy the BPEL component file "D:\Middleware\SOASuite11gR1PS4\user_projects\domains\soa_domain\servers\soa_server1\dc\soa_5d1a0984-ac78-4cd5-ad66-d8a029843627"; the exception reported is: java.lang.Exception: BPEL 1.1 compilation failed
Pls Help Me Out.I structed here.
Regards'
Vinodh

Vinodh,
Go to your soa server log and see more details.
It might be because of using Xpath function & deployment to a cluster.
See also support ID 1470238.1(metalink) for more explanation.
Arik

Similar Messages

  • Problems with report builder 3.0 in SCCM 2012 R2 CU2

    Hi All
    I have problems with editing  (Using Report builder) existing reports  or creating new ones in SCCM 2012 R2 CU2
    We version of SQL we use is SQL 2008 R2 SP2
    I already asked this question in the SCCM 2012 forum but the problem is not related to SCCM but has something to do with application report builder
    I changed the registry key and edited the Microsoft.ConfigurationManagement.exe.config.xml as described in the following link
    http://blogs.technet.com/b/smartinez/archive/2012/07/03/system-center-2012-configuration-manager-create-report-don-t-work-what-do-i-do-now.aspx
    Afterwards I try to edit an report I see report builder is being downloaded and after it generates the following error “Application did not succeed. Unable to continue”
    Error details are
    Following errors were detected during this operation.
    * [22-7-2014 13:55:07] System.Deployment.Application.InvalidDeploymentException (HashValidation)
    - File, Microsoft.DataWarehouse.dll, has a different computed hash than specified in manifest.
    - Source: System.Deployment
    - Stack trace:
    at System.Deployment.Application.ComponentVerifier.VerifyFileHash(String filePath, Hash hash)
    at System.Deployment.Application.ComponentVerifier.VerifyFileHash(String filePath, HashCollection hashCollection)
    at System.Deployment.Application.ComponentVerifier.VerifyComponents()
    at
    System.Deployment.Application.DownloadManager.DownloadDependencies(SubscriptionState subState, AssemblyManifest deployManifest, AssemblyManifest appManifest, Uri sourceUriBase, String targetDirectory, String group, IDownloadNotification notification, DownloadOptions
    options)
    at System.Deployment.Application.ApplicationActivator.DownloadApplication(SubscriptionState subState, ActivationDescription actDesc, Int64 transactionId, TempDirectory& downloadTemp)
    at System.Deployment.Application.ApplicationActivator.InstallApplication(SubscriptionState& subState, ActivationDescription actDesc)
    at System.Deployment.Application.ApplicationActivator.PerformDeploymentActivation(Uri activationUri, Boolean isShortcut, String textualSubId, String deploymentProviderUrlFromExtension, BrowserSettings browserSettings, String& errorPageUrl)
    at System.Deployment.Application.ApplicationActivator.ActivateDeploymentWorker(Object state)
    And in the SmsAdminUI.log I noticed the following error
    [16, PID:4460][07/21/2014 14:11:43] :[ReportProxy] - User-specified default Reporting Point [Server1.local.nl] could not be found, [Server2.local.nl] is now the default Reporting Point.
    [1, PID:4460][07/21/2014 14:11:11] :System.InvalidOperationException\r\nThere is an error in XML document (1, 1).\r\n at System.Xml.Serialization.XmlSerializer.Deserialize(XmlReader xmlReader, String encodingStyle, XmlDeserializationEvents events)
    I removed the reporting point no luck -> I already installed report builder 3.0 local on my computer still no luck.
    I hope someone can give me some advice , I am lost with this error
    Thx in advance
    Regards
    Johan

    Hi Miss Katherine,
    1. I went through the SQL steps in the link you posted
    2. I updated the Reg Key and Microsoft.ConfigurationManagement.exe.config file with 3.0 on both the
    server and the console machine.
    3. I copied the .DLL file from your OneDrive and replaced the existing one on the server.
    4. I uninstalled and re-installed the reporting role on the server and received the 1015 in the log.
    5. I restarted the server and the client machine
    I do get a slightly different error now after using the new DLL
    Errors With Original DLL
    ERROR DETAILS
    * [9/30/2014 8:42:03 AM] System.Deployment.Application.InvalidDeploymentException (HashValidation)
    - File, Microsoft.DataWarehouse.dll, has a different computed hash than specified in manifest.
    - Source: System.DeploymentERROR DETAILS
    Errors With New DLL
    ERROR DETAILS
    Following errors were detected during this operation.
    * [9/30/2014 9:17:13 AM] System.Deployment.Application.InvalidDeploymentException (RefDefValidation)
    - Reference in the manifest does not match the identity of the downloaded assembly Microsoft.DataWarehouse.dll.
    - Source: System.Deployment

  • XboxLIVEGames on Windows 8.1?

    Don't want this app but cannot uninstall or delete it!
    I have recently bought a new Windows 8.1 laptop and have stumbled across the C:\Program Files\WindowsApps folder and the various provisioned apps there waiting for a user to install the app. I've successfully uninstalled many of the apps in the list (such
    as ChaChaSearch.ChaChaPushNotification and Microsoft.BingFoodAndDrink) using the following PowerShell script:
    # Put your apps that you wish to completely remove here:
    $AppsList = "Microsoft.BingFoodAndDrink"
    ForEach ($App in $AppsList)
        $Packages = Get-AppxPackage | Where-Object {$_.Name -eq $App}
        if ($Packages -ne $null)
              Write-Host "Removing Appx Package: $App"
              foreach ($Package in $Packages)
                    Remove-AppxPackage -package $Package.PackageFullName
        else
              Write-Host "Unable to find package: $App"
        $ProvisionedPackage = Get-AppxProvisionedPackage -online | Where-Object {$_.displayName -eq $App}
        if ($ProvisionedPackage -ne $null)
              Write-Host "Removing Appx Provisioned Package: $App"
              remove-AppxProvisionedPackage -online -packagename $ProvisionedPackage.PackageName
        else
              Write-Host "Unable to find provisioned package: $App"
    When I set the application to uninstall to "Microsoft.XboxLIVEGames" (a few others fail as well), then the script fails with the following error:
    Remove-AppxPackage : Deployment failed with HRESULT: 0x80073CFA, Removal failed. Please contact your software vendor.
    (Exception from HRESULT: 0x80073CFA)
    Package Manager aborted the Remove operation because an invalid argument was passed: Microsoft.XboxLIVEGames.
    NOTE: For additional information, look for [ActivityId] 326e192c-f6ba-0000-9f1a-6e32baf6cf01 in the Event Log or use
    the command line Get-AppxLog -ActivityID 326e192c-f6ba-0000-9f1a-6e32baf6cf01
    At line:1 char:1
    + Remove-AppxPackage Microsoft.XboxLIVEGames
    + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
        + CategoryInfo          : WriteError: (Microsoft.XboxLIVEGames:String) [Remove-AppxPackage], IOException
        + FullyQualifiedErrorId : DeploymentError,Microsoft.Windows.Appx.PackageManager.Commands.RemoveAppxPackageCommand
    If I try an alternate PowerShell command using the full package name:
    Remove-AppxPackage Microsoft.XboxLIVEGames_2.0.100.0_x64__8wekyb3d8bbwe
    then I get a different error:
    Remove-AppxPackage : Deployment failed with HRESULT: 0x80073CF1, Package was not found.
    Windows cannot remove Microsoft.XboxLIVEGames_2.0.100.0_x64__8wekyb3d8bbwe because the current user does not have tha
    package installed. Use Get-AppxPackage to see the list of packages installed.
    NOTE: For additional information, look for [ActivityId] 326e192c-f6ba-0000-b01a-6e32baf6cf01 in the Event Log or use
    the command line Get-AppxLog -ActivityID 326e192c-f6ba-0000-b01a-6e32baf6cf01
    At line:1 char:1
    + Remove-AppxPackage Microsoft.XboxLIVEGames_2.0.100.0_x64__8wekyb3d8bbwe
    + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
        + CategoryInfo          : ObjectNotFound: (Microsoft.XboxL...__8wekyb3d8bbwe:String) [Remove-AppxPackage], PSInva
       idOperationException
        + FullyQualifiedErrorId : DeploymentError,Microsoft.Windows.Appx.PackageManager.Commands.RemoveAppxPackageCommand
    I also cannot delete the C:\Program Files\WindowsApps\Microsoft.XboxLIVEGames_2.0.100.0_x64__8wekyb3d8bbwe folder directly because Windows helpfully informs me (an Administrator, and the ONLY user, on the computer) that it cannot be deleted.
    Any ideas about removing these provisioned apps that are just wasting space on the HDD?
    Thanks,
    Alain

    Hi Alain,
    Firstly please check if it had already uninstalled:
    run Get-AppxPackage command with Power Shell
    If it indeed exists,run this commands(the app version should be same as what it displays as screenshot below):
    Remove-AppxPackage Microsoft.XboxLIVEGames_2.0.139.0_x64__8wekyb3d8bbwe
    Karen Hu
    TechNet Community Support

  • OPC/DSC/Kepware Server

    When I attempt to deploy my application, I receive "Deployment failed: The client process cannot communicate with the configuration server process....."
    I have DSC Run Time module on the target machine and I can read the OPC tags on the Kepware Quick Client so I narrowed it down to something to do with LV.  I've read about the "identity of interactive user" and I do have that checked in the DCOM for the client server.
    Thanks in advance for the help/ideas.

    Daniel, here is the error message I receive.
    The OPC server is located on 192.168.1.10 so it is the same subnet
    Attachments:
    deploymenterror.JPG ‏43 KB

  • PC Settings won't launch Windows 8.1 Pro

    This happens only my user account. I open PC Settings and the Splash screen shows then minimizes itself and nothing happens.
    Microsoft Windows [Version 6.3.9600]
    (c) 2013 Microsoft Corporation. All rights reserved.
    I tried this command
    C:\WINDOWS\system32>powershell -ExecutionPolicy Unrestricted Add-AppxPackage -Di
    sableDevelopmentMode -Register $Env:SystemRoot\ImmersiveControlPanel\AppxManifes
    t.xml
    And got this result:
    Add-AppxPackage : Deployment failed with HRESULT: 0x80073CFE, The package
    repository is corrupted.
    error -528: Windows cannot process a deployment operation because the package
    repository database encountered an ESENT error. Use the Reset Your PC feature
    to recover your PC. See the Application event log for messages with ESENT as
    the event source for more details.
    NOTE: For additional information, look for [ActivityId]
    ecbaddd4-43d8-0000-0be2-baecd843d001 in the Event Log or use the command line
    Get-AppxLog -ActivityID ecbaddd4-43d8-0000-0be2-baecd843d001
    At line:1 char:1
    + Add-AppxPackage -DisableDevelopmentMode -Register
    $Env:SystemRoot\ImmersiveContr ...
    + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    ~~~
        + CategoryInfo          : NotSpecified: (C:\WINDOWS\Imme...ppxManifest.xml
       :String) [Add-AppxPackage], Exception
        + FullyQualifiedErrorId : DeploymentError,Microsoft.Windows.Appx.PackageMa
       nager.Commands.AddAppxPackageCommand
    C:\WINDOWS\system32>

    Update... the restore failed.
                                mounted images.
    WIM COMMANDS:
      /Capture-CustomImage    - Captures customizations into a delta WIM file on a
                                WIMBoot system. Captured directories include all
                                subfolders and data.
      /Get-WIMBootEntry       - Displays WIMBoot configuration entries for the speci
    fied disk volume.
      /Update-WIMBootEntry    - Updates WIMBoot configuration entry for the specifie
    d disk volume.
      /List-Image             - Displays a list of the files and folders in a
                                specified image.
      /Delete-Image           - Deletes the specified volume image from a WIM file
                                that has multiple volume images.
      /Split-Image            - Splits an existing .wim file into multiple
                                read-only split WIM (SWM) files.
      /Export-Image           - Exports a copy of the specified image to another
                                file.
      /Append-Image           - Adds another image to a WIM file.
      /Capture-Image          - Captures an image of a drive into a new WIM file.
                                Captured directories include all subfolders and
                                data.
      /Apply-Image            - Applies an image.
      /Get-MountedWimInfo     - Displays information about mounted WIM images.
      /Get-WimInfo            - Displays information about images in a WIM file.
      /Commit-Wim             - Saves changes to a mounted WIM image.
      /Unmount-Wim            - Unmounts a mounted WIM image.
      /Mount-Wim              - Mounts an image from a WIM file.
      /Remount-Wim            - Recovers an orphaned WIM mount directory.
      /Cleanup-Wim            - Deletes resources associated with mounted WIM
                                images that are corrupted.
    IMAGE SPECIFICATIONS:
      /Online                 - Targets the running operating system.
      /Image                  - Specifies the path to the root directory of an
                                offline Windows image.
    DISM OPTIONS:
      /English                - Displays command line output in English.
      /Format                 - Specifies the report output format.
      /WinDir                 - Specifies the path to the Windows directory.
      /SysDriveDir            - Specifies the path to the system-loader file named
                                BootMgr.
      /LogPath                - Specifies the logfile path.
      /LogLevel               - Specifies the output level shown in the log (1-4).
      /NoRestart              - Suppresses automatic reboots and reboot prompts.
      /Quiet                  - Suppresses all output except for error messages.
      /ScratchDir             - Specifies the path to a scratch directory.
    For more information about these DISM options and their arguments, specify an
    option immediately before /?.
      Examples:
        DISM.exe /Mount-Wim /?
        DISM.exe /ScratchDir /?
        DISM.exe /Image:C:\test\offline /?
        DISM.exe /Online /?
    C:\WINDOWS\system32>dism.exe/online/?
    Deployment Image Servicing and Management tool
    Version: 6.3.9600.17031
    Error: 87
    The online/? option is unknown.
    For more information, refer to the help by running DISM.exe /?.
    The DISM log file can be found at C:\WINDOWS\Logs\DISM\dism.log
    C:\WINDOWS\system32>dism.exe /online /?
    Deployment Image Servicing and Management tool
    Version: 6.3.9600.17031
    Image Version: 6.3.9600.17031
    The following commands may be used to service the image:
    WINDOWS EDITION SERVICING COMMANDS:
      /Optimize-Image         - Performs specified configurations to an offline
                                image.
      /Set-ProductKey         - Sets the product key of the offline image.
      /Get-TargetEditions     - Displays a list of Windows editions that an image
                                can be upgraded to.
      /Get-CurrentEdition     - Displays the edition of the current image.
      /Set-Edition            - Upgrades an image to a higher edition.
    DEFAULT ASSOCIATIONS COMMANDS:
      /Remove-DefaultAppAssociations - Removes the default application associations
                                from a Windows image.
      /Import-DefaultAppAssociations - Imports a set of default application
                                associations to a Windows image.
      /Get-DefaultAppAssociations - Displays the list of default application
                                associations from a Windows image.
      /Export-DefaultAppAssociations - Exports the default application associations
                                from a running operating system.
    APPX SERVICING COMMANDS:
      /Set-ProvisionedAppxDataFile - Places custom data into the specified app
                                package (.appx or .appxbundle). The specified
                                application package must already be in the image.
      /Remove-ProvisionedAppxPackage - Removes app packages (.appx or .appxbundle)
                                from the image. App packages will not be installed
                                when new user accounts are created.
      /Add-ProvisionedAppxPackage - Adds app packages (.appx or .appxbundle) to the
                                image and sets them to install for each new user.
      /Get-ProvisionedAppxPackages - Displays information about app packages
                                (.appx or .appxbundle) in an image that are
                                set to install for each new user.
    UNATTEND SERVICING COMMANDS:
      /Apply-Unattend         - Applies an unattend file to an image.
    DRIVER SERVICING COMMANDS:
      /Remove-Driver          - Removes driver packages from an offline image.
      /Add-Driver             - Adds driver packages to an offline image.
      /Get-DriverInfo         - Displays information about a specific driver
                                in an offline image or a running operating system.
      /Get-Drivers            - Displays information about all drivers in
                                an offline image or a running operating system.
      /Export-Driver          - Export all third-party driver packages from an
                                offline image or a running operating system.
    INTERNATIONAL SERVICING COMMANDS:
      /Set-LayeredDriver      - Sets keyboard layered driver.
      /Set-UILang             - Sets the default system UI language that is used
                                in the mounted offline image.
      /Set-UILangFallback     - Sets the fallback default language for the system
                                UI in the mounted offline image.
      /Set-UserLocale         - Sets the user locale in the mounted offline image.
      /Set-SysLocale          - Sets the language for non-Unicode programs (also
                                called system locale) and font settings in the
                                mounted offline image.
      /Set-InputLocale        - Sets the input locales and keyboard layouts to
                                use in the mounted offline image.
      /Set-TimeZone           - Sets the default time zone in the mounted offline
                                image.
      /Set-AllIntl            - Sets all international settings in the mounted
                                offline image.
      /Set-SKUIntlDefaults    - Sets all international settings to the default
                                values for the specified SKU language in the
                                mounted offline image.
      /Gen-LangIni            - Generates a new lang.ini file.
      /Set-SetupUILang        - Defines the default language that will be used
                                by setup.
      /Get-Intl               - Displays information about the international
                                settings and languages.
    APPLICATION SERVICING COMMANDS:
      /Check-AppPatch         - Displays information if the MSP patches are
                                applicable to the mounted image.
      /Get-AppPatchInfo       - Displays information about installed MSP patches.
      /Get-AppPatches         - Displays information about all applied MSP patches
                                for all installed applications.
      /Get-AppInfo            - Displays information about a specific installed MSI
                                application.
      /Get-Apps               - Displays information about all installed MSI
                                applications.
    PACKAGE SERVICING COMMANDS:
      /Add-Package            - Adds packages to the image.
      /Remove-Package         - Removes packages from the image.
      /Enable-Feature         - Enables a specific feature in the image.
      /Disable-Feature        - Disables a specific feature in the image.
      /Get-Packages           - Displays information about all packages in
                                the image.
      /Get-PackageInfo        - Displays information about a specific package.
      /Get-Features           - Displays information about all features in
                                a package.
      /Get-FeatureInfo        - Displays information about a specific feature.
      /Cleanup-Image          - Performs cleanup and recovery operations on the
                                image.
    For more information about these servicing commands and their arguments,
    specify a command immediately before /?.
         Examples:
             DISM.exe /Image:C:\test\offline /Apply-Unattend /?
             DISM.exe /Image:C:\test\offline /Get-Features /?
             DISM.exe /Online /Get-Drivers /?
    C:\WINDOWS\system32>
    C:\WINDOWS\system32>DISM.exe /Online/Cleanup-image /restorehealth
    Deployment Image Servicing and Management tool
    Version: 6.3.9600.17031
    Error: 87
    The online/cleanup-image option is unknown.
    For more information, refer to the help by running DISM.exe /?.
    The DISM log file can be found at C:\WINDOWS\Logs\DISM\dism.log
    C:\WINDOWS\system32>DISM.exe /Online /Cleanup-image /?
    Deployment Image Servicing and Management tool
    Version: 6.3.9600.17031
    Image Version: 6.3.9600.17031
    /Cleanup-Image /RevertPendingActions
      WARNING! You should use the /RevertPendingActions option only in a
      system-recovery scenario to perform recovery operations on a Windows image
      that did not boot.
        Example:
          DISM.exe /Image:C:\test\offline /Cleanup-Image /RevertPendingActions
    /Cleanup-Image /spsuperseded [/hidesp]
      Use /SPSuperseded to remove any backup files created during the installation
      of a service pack. Use /HideSP to prevent the service pack from being listed
      in the Installed Updates for the operating system.
      WARNING! The service pack cannot be uninstalled after the /SPSuperseded
      operation is completed.
        Example:
          DISM.exe /Image:C:\test\offline /Cleanup-Image /spsuperseded /hidesp
    /Cleanup-Image {/CheckHealth | /ScanHealth | /RestoreHealth}
      Use /CheckHealth to check whether the image has been flagged as corrupted
      by a failed process and whether the corruption can be repaired.
      Use /ScanHealth to scan the image for component store corruption.
      Use /RestoreHealth to scan the image for component store corruption, and
      then perform repair operations automatically.
      Use /Source with /RestoreHealth to specify the location of known good
      versions of files that can be used for the repair. For more information on
      specifying a source location, see
      http://go.microsoft.com/fwlink/?LinkId=243077.
      Use /LimitAccess to prevent DISM from contacting WU/WSUS.
        Example:
          DISM.exe /Online /Cleanup-Image /ScanHealth
          DISM.exe /Image:c:\offline /Cleanup-Image /RestoreHealth
          /Source:c:\test\mount
    /Cleanup-Image /StartComponentCleanup [/ResetBase]
      Use /StartComponentCleanup to clean up the superseded components and reduce
      the size of the component store. Use /ResetBase to reset the base of
      superseded components, which can further reduce the component store size.
      WARNING!  The installed Windows Updates cannot be uninstalled after the
      /StartComponentCleanup with /ResetBase operation is completed.
        Example:
          DISM.exe /Image:C:\test\offline /Cleanup-Image /StartComponentCleanup
    /Cleanup-Image /AnalyzeComponentStore
      Use /AnalyzeComponentStore to create a report of the WinSxS component store.
      For more information about the WinSxS report and how to use the information
      provided in the report, see
      http://go.microsoft.com/fwlink/?LinkId=293367.
        Example:
          DISM.exe /Image:C:\test\offline /Cleanup-Image /AnalyzeComponentStore
    C:\WINDOWS\system32>DISM.exe /Online /Cleanup-image /Restorehealth
    Deployment Image Servicing and Management tool
    Version: 6.3.9600.17031
    Image Version: 6.3.9600.17031
    [==========================100.0%==========================]
    The restore operation failed. Either the repair source was not found or the comp
    onent store cannot be repaired.
    Error: 0x800f081f
    DISM failed. No operation was performed.
    For more information, review the log file.
    The DISM log file can be found at C:\WINDOWS\Logs\DISM\dism.log
    C:\WINDOWS\system32>
    C:\WINDOWS\system32>
    I'm just techie wanna be in Upper Arlington Ohio

Maybe you are looking for