user1513337
user1513337

Reputation: 33

How Mule Standalone actually works?

I am new to Mule, and I am trying to understand the difference between the mule standalone vs embedded. I have read of topics regarding this but I was not able to answer one question. How the Mule standalone actually work? how it handles web services? does it have an application server's functionality? does it have an embedded or bundled app server?

Upvotes: 3

Views: 2566

Answers (1)

David Dossot
David Dossot

Reputation: 33413

Mule Standalone Server is a proprietary application server that hosts Mule-specific applications packaged in a specific format.

Alternatively, Mule can be embedded in another application (like a JavaEE Web Application) very much like Spring Web Flow can be embedded: add Maven dependencies and tie Mule to the container via a bootstrap class (like a Servlet Context Listener for JavaEE Web Applications).

Independently of the deployment scenario (standalone or embedded), a Mule application can do many things including exposing web services.

Upvotes: 6

Related Questions