String filename =
AbstractTestCase.basedir + "/test-resources/deployment/soaproleconfiguration";
AxisConfiguration axisConfig = ConfigurationContextFactory
.createConfigurationContextFromFileSystem(filename , filename + "/axis2.xml")
.getAxisConfiguration();
RolePlayer rolePlayer = (RolePlayer)axisConfig.getParameterValue(Constants.SOAP_ROLE_PLAYER_PARAMETER);
assertNotNull(rolePlayer);
assertFalse(rolePlayer.isUltimateDestination());
assertEquals(1, rolePlayer.getRoles().size());
assertEquals("http://my/custom/role", rolePlayer.getRoles().get(0));
}