I have a Flow in MULE which contains a HTTP inbound and component class like below :
<flow name="MetaService">
<http:inbound-endpoint address="http://localhost:8000/jcore/meta/user"
transformer-refs="HttpParams" responseTransformer-refs="JavaObjectToJson">
</http:inbound-endpoint>
<component class = "com.jcore.Meta" />
</flow>
Now if i have to accept request for another URL, like "localhost:8000/jcore/meta/user2", i have to create another flow..!!
Is there any option in MULE like "localhost:8000/jcore/meta/{variable}" , where in i can read that variable and call the appropriate component class according to that..??