I am trying to expose multiple service interfaces via a single endpoint in mule as per this configuration: Each service interface has a slightly different url (1) http://localhost/services/Login (2) http://localhost/services/Admin
However I get the error "Soap 1.1 endpoint already registered on address"
Any tips on how to do this? I merely want to use the cxf service to marshall/unmarshall between SOAP and Java and at a later date to provide ws-security.
<flow name="flow_Services">
<http:inbound-endpoint address="http://localhost/services" exchange-pattern="request-response">
<choice>
<when expression="inbound:http.request=/services/Login" evaluator="header">
<cxf:jaxws-service serviceClass="com.ws.client.generated.Login" />
<component><spring-object bean="Login"/></component>
</when>
<when expression="inbound:http.request=/services/Admin" evaluator="header">
<cxf:jaxws-service serviceClass="com.ws.client.generated.Admin" />
<component><spring-object bean="Admin"/></component>
</when>
</choice>