// endpoints with the
// real http:// address
for (Iterator iterator = servletServices.iterator(); iterator.hasNext();)
{
SOAPService service = (SOAPService) iterator.next();
ServletConnector servletConnector = (ServletConnector) new TransportFactory(muleContext).getConnectorByProtocol("servlet");
String url = servletConnector.getServletUrl();
if (url != null)
{
service.getServiceDescription().setEndpointURL(url + "/" + service.getName());
}
else