Ignore:
Timestamp:
03/11/15 16:26:00 (9 years ago)
Author:
pharms
Message:
  • update of service name map to also support client names specifying the receiver port only
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/autoquest-plugin-http/src/main/java/de/ugoe/cs/autoquest/plugin/http/eventcore/SOAPEventType.java

    r1907 r1910  
    131131             
    132132            if (value == null) { 
    133                 key = "clientName.receiver." + exchange.getReceiver().getHost(); 
     133                key = "clientName.receiver.server." + exchange.getReceiver().getHost(); 
    134134                value = urlNameMap.getProperty(key); 
    135135            } 
     
    137137            if (value == null) { 
    138138                key += ":" + exchange.getReceiver().getPort(); 
     139                value = urlNameMap.getProperty(key); 
     140            } 
     141             
     142            if (value == null) { 
     143                key = "clientName.receiver.port." + exchange.getReceiver().getPort(); 
    139144                value = urlNameMap.getProperty(key); 
    140145            } 
Note: See TracChangeset for help on using the changeset viewer.