Nota
El acceso a esta página requiere autorización. Puede intentar iniciar sesión o cambiar directorios.
El acceso a esta página requiere autorización. Puede intentar cambiar los directorios.
Cuando la operación importar configuración del servidor que contiene el agente de administración de servicios web (MA) finaliza con el error "No se pueden recuperar los parámetros de configuración de la extensión", es necesario comprobar los archivos de configuración exportados.
El error se debe a una limitación en el servicio de sincronización. El servicio no puede importar la configuración del servidor con la MA de servicios web y devuelve el error "No se pueden recuperar los parámetros de configuración de la extensión". En algunos casos, ma de servicios web puede contener una configuración no válida que debe corregirse.
Solución del problema
Copie los archivos de configuración del servidor en el servidor de destino.
En el servidor de destino, copie el script de PowerShellWebServiceMA_apply_before_import_server_configuration.ps1 en la carpeta que contiene los archivos exportados para la configuración del servidor.
Ejecute el script de PowerShell WebServiceMA_apply_before_import_server_configuration.ps1.
Script de PowerShell
# ---------------------------------------------------------------------
# <copyright file="WebServiceMA_apply_before_import_server_configuration.ps1" company="Microsoft">
# Copyright (c). All rights reserved.
# </copyright>
# ---------------------------------------------------------------------
# If the script doesn't work, check the ExecutionPolicy
# by using the following commands:
#
# - Get-ExecutionPolicy
# - Set-ExecutionPolicy RemoteSigned
#
function Get-MIMInstallationPath {
<#
.SYNOPSIS
Get the installation path of MIM from the Windows registry.
.DESCRIPTION
Get the installation path of MIM from the Windows registry:
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\
Forefront Identity Manager\2010\Synchronization Service\
and the paramter Location.
.EXAMPLE
$path = Get-MIMInstallationPath
#>
try
{
$MIMpath = Get-ItemProperty -Path "Registry::HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Forefront Identity Manager\2010\Synchronization Service\"
}
catch
{
$ErrorMessage = $_.Exception.Message
throw "Get-MIMInstallationPath exception: $ErrorMessage"
}
Write-Output "$($MIMpath.Location)Synchronization Service\Extensions\"
}
function Get-WsconfigFilesNamesFromExtensionsFolder([string] $path) {
<#
.SYNOPSIS
Get the comma-separated list of *.wsconfig files from Extensions folder.
.DESCRIPTION
Get the comma-separated list of *.wsconfig files from Extensions folder.
.PARAMETER path
The path to the Extensions folder that contains the *.wsconfig files.
.EXAMPLE
$wsconfigFiles = Get-WsconfigFilesNamesFromExtensionsFolder("./")
#>
if( [string]::IsNullOrEmpty($path) )
{
throw "Get-WsconfigFilesNamesFromExtensionsFolder error: the input variable Path cannot be empty."
}
try
{
$files = Get-ChildItem $path -filter "*.wsconfig" -name | ForEach-Object {$_ -replace ".wsconfig", ""}
$wsconfigFiles=$files -join ","
}
catch
{
$ErrorMessage = $_.Exception.Message
Write-Host "Get-WsconfigFilesNamesFromExtensionsFolder exception: $ErrorMessage"
Write-Output ""
}
Write-Output $wsconfigFiles
}
function Set-AvailableWebServiceProjects([string] $path) {
<#
.SYNOPSIS
Patch exported wsconfig files for Web Service project management agent.
.DESCRIPTION
The script tries to find the config files of Web Service management agents and tries to fix Web Service project configuration parameter.
.PARAMETER path
The path to the folder that contains the exported config files of management agents.
.EXAMPLE
$count = Set-AvailableWebServiceProjects("./")
#>
if( [string]::IsNullOrEmpty($path) )
{
throw "Set-AvailableWebServiceProjects: path variable is empty"
}
try
{
$countPatchedFiles=0
$files = Get-ChildItem $path -filter "MA-{*}.xml" -name
foreach ($file in $files)
{
[xml]$xmlConfig = Get-Content $file
$connectorName = $xmlConfig."saved-ma-configuration"."ma-data"."ma-listname"
if($connectorName -ne "Web Service (Microsoft)" )
{
continue
}
$parameters = $xmlConfig."saved-ma-configuration"."ma-data"."private-configuration"."MAConfig"."parameter-definitions"
$target = ($parameters."parameter"|where {$_.name -eq "Web Service project" -and $_.use -eq "connectivity" -and $_.type -eq "drop-down"})
if($target -eq $null)
{
continue
}
$extensionsFolderPath = Get-MIMInstallationPath
$wsconfigFiles = Get-WsconfigFilesNamesFromExtensionsFolder($extensionsFolderPath)
if($wsconfigFiles -eq '')
{
continue
}
$target.validation = [string]$wsconfigFiles
$defaultConfig = $wsconfigFiles.Split("{,}")
$target."default-value" = $defaultConfig[0]
$fileFullPath = "$path$file"
Set-ItemProperty $fileFullPath -name IsReadOnly -value $false
$xmlConfig.Save($fileFullPath)
Set-ItemProperty $fileFullPath -name IsReadOnly -value $true
$countPatchedFiles++
}
}
catch
{
$ErrorMessage = $_.Exception.Message
throw "Set-AvailableWebServiceProjects exception: $ErrorMessage"
}
Write-Output $countPatchedFiles
}
##########################################
#### Main ####
##########################################
cls
try
{
$currentFolder = (Get-Location).path + "\"
$countPatchedFiles = Set-AvailableWebServiceProjects($currentFolder)
Write-Host "Count of patched Web Service config files:" $countPatchedFiles
}
catch
{
$ErrorMessage = $_.Exception.Message
Write-Host "The script was run with excetion: $ErrorMessage"
}
[void](Read-Host 'Press Enter to exit…')