0
1.5kviews
Enterprise service bus and naming service in Apps Fabric Service Bus

Mumbai University >Information Technology>Sem7>Cloud Computing

Marks: 10M

Year: Dec 2011

1 Answer
0
2views
  • An ESB is a software architecture that enables inter-operability among heterogeneous environments using service oriented architecture.

  • It is a system to which all services are connected and can be accessed. It acts as a central bridge or gateway to all applications exposing services underneath it.

enter image description here

Enterprise service bus architecture

It provides following features:

  1. It manages security aspects like authentication and authorization with Federated Identity and access control with .NET ACS, windows CardSpace, windows Identity Foundation(WIF) and Active Directory Federation Service(ADFS)

  2. Consistent service and endpoint naming to simplify relaxing or routing of messages

  3. Service registry to simplify discovery by NAT clients behind firewalls and other users.

  4. A common messaging fabric, which offers multiple communication options, including publish/subscribe or send/listen features.

  5. Messaging with RESTful HTTP Request/Response, SOAP, WS-* and windows communication Framework (WCF) protocols

  6. It is usually operating system & programming language agnostic; for e.g. it should enable inter-operability between Java and .NET applications.

  • Key benefits of ESB:

    1. Faster and cheaper accommodation of existing systems.

    2. Increased flexibility , easier to change as requirements change

    3. Standards based

    4. Scale from point solutions to enterprise wide deployment(distributed bus)

    5. More configuration coding than integration coding

  • Key disadvantages:

    1. ESB may become single point of failure. If the ESB is down, no communication between clients and services can take place.

    2. Extra overhead, and increased latency caused by messages traversing the extra ESB layer, especially as compared to point communication.

  • It provides 3 communication technologies:

    1. Service Bus Relay- It enables to securely expose WCF services that reside within a corporate enterprise network to the public cloud, without having to open up a firewall connection

    2. Service Bus Queue(Brokered Messaging)-Provides a durable first-in, first out data structures to which senders can add from which

    3. listeners can retrieve messages

    4. Service Bus Router-handles delivery of durable messages to all (multicast) or individual subscribers. Listeners, including queues, can subscribe to these messages.

Please log in to add an answer.