Class used for retrieving metadata at runtime. The intended usage is:
MetadataClient mClient = new MetadataClient();
Metadata mData = mClient.retrieveMetadata(someAddress);
Utility methods will be added for common usages of the metadata. For
instance, the service and port QNames from the endpoint can be
retrieved from the metadata with:
Map<QName, List<PortInfo>> names = mClient.getServiceAndPortNames(mData);
|