results = new ArrayList<String>( parameters.size() );
for( String parameter : parameters ) {
String url = lookupServiceUrl( parameter );
if( url != null ) {
Template template = Parser.parse( url );
Host host = template.getHost();
if( host != null ) {
String hostStr = host.getFirstValue().getPattern();
if( hostmap != null ) {
switch( context.getDirection() ) {
case IN:
parameter = hostmap.resolveInboundHostName( hostStr );
break;