{
WebserviceDescriptionType[] wsDescArray = webservices.getWebserviceDescriptionArray( );
WebserviceDescriptionType[] targetWsDescArray = targetWebservices.getWebserviceDescriptionArray( );
for ( int i = 0; i < wsDescArray.length; i++ )
{
WebserviceDescriptionType wsDesc = wsDescArray[i];
String wsDescName = wsDesc.getWebserviceDescriptionName( ).getStringValue( );
WebserviceDescriptionType targetWsDesc = getWebserviceDescription( targetWsDescArray, wsDescName );
if ( targetWsDesc == null )
{
targetWsDesc = targetWebservices.addNewWebserviceDescription( );
}
targetWsDesc.set( wsDesc );
}
}