Details
-
Improvement
-
Status: Closed
-
Major
-
Resolution: Fixed
-
Java-SCA-2.0-Beta3
-
None
-
All
Description
The EndpointReferenceBuilderImpl uses this code when it's trying to decide if a target is a domain target or not.
try {
getSCATargetParts(uri);
// the target uri might be an SCA target so create an endpoint
// so that the binder can test it against the fully populated
// registry
endpoint = createEndpoint(component, uri);
if (binding instanceof SCABinding)
endpointRef.setStatus(EndpointReference.Status.WIRED_TARGET_IN_BINDING_URI);
} catch (Exception ex)
Seems a bit missleading and I want change so we don't rely on internal exception throwing.