final ServerConfig config = getServerConfig(context);
if (config != null) {
final PathAddress address = PathAddress.pathAddress(operation.require(OP_ADDR));
final String name = address.getLastElement().getValue();
EndpointConfig target = null;
for (EndpointConfig epConfig : config.getEndpointConfigs()) {
if (epConfig.getConfigName().equals(name)) {
target = epConfig;
}
}