// default built-in transports
String scheme = context.getAddress().getURI().getScheme();
if (scheme != null) {
if(scheme.equalsIgnoreCase("http") || scheme.equalsIgnoreCase("https"))
return new HttpTransportPipe(context.getCodec(), context.getBinding());
}
throw new WebServiceException("Unsupported endpoint address: "+context.getAddress()); // TODO: i18n
}