| Author |
Federated Identity
|
Andy Smith
Ranch Hand
Joined: Sep 28, 2003
Posts: 239
|
|
|
Can anyone explain how the fedareated identity is better then the centralizaed one?
|
Share Knowledge to gain it.
SCJP 2, SCWCD 2, SCDJWS, IBM 141 (In Progress), IBM 486 (Next)
|
 |
Dushy Inguva
Ranch Hand
Joined: Jun 24, 2003
Posts: 264
|
|
|
Anyone on this one???
|
SJCP, SCBCD, SJCD, SCDJWS, SCEA (Part I)
|
 |
Dhiren Joshi
Ranch Hand
Joined: Dec 09, 2003
Posts: 463
|
|
Let me try and explain this with a JAXR example . I am not sure what u meant by centralized .. can you clarify on that. This is how I see it ConnectionFactory factory = ConnectionFactory.newInstance(); //configure the ConnectionFactory Properties props = new Properties(); props.setProperty( "javax.xml.registry.lifeCycleManagerURL", "https://uddi.ibm.com/testregistry/publishapi"); props.setProperty( "javax.xml.registry.queryManagerURL", "http://uddi.ibm.com/testregistry/inquiryapi"); props.setProperty( "javax.xml.registry.registry.security.authenticationMethod", "UDDI_GET_AUTHTOKEN"); factory.setProperties(props); //Connect to UDDI test registry Connection connection = factory.createConnection(); The above code creates a single connection to only one inquiryapi or publishapi. For a federated connection you can create connections to other sites for inquiry and publish api and combine them like below. Collection fedCollection = new HashSet(); // Generally federated connections would involve more then two factory connections. Federated connections can help you combine a connection. you can create connections to different inquiryapis fedCollection.add(connection1); fedcollection.add(connection2); FederatedConnection fedConn = factory.createFederatedConnection(fedCollection); fedConn object lets you do all the calls you want which you do with a normal connection only now you have any number of sites interrelated. I hope I didnt confuse you further. HTH Dhiren
|
 |
sandeep kulkarni
Ranch Hand
Joined: Feb 25, 2004
Posts: 36
|
|
|
Federation allows us to perform "distributed" queries on the multiple XML-registries at the same time.This is not possible with normal Connection
|
 |
 |
|
|
subject: Federated Identity
|
|
|