public ConfigurationContext getPariticipantAxis2ConfigurationContext()

in src/org/apache/kandula/utility/KandulaConfiguration.java [160:178]


	public ConfigurationContext getPariticipantAxis2ConfigurationContext()
			throws AbstractKandulaException {
		if (participantConfigurationContext == null) {
			try {
				if (coordinatorAxis2Conf != null && coordinatorAxis2Conf != "") {

					participantConfigurationContext = ConfigurationContextFactory
							.createConfigurationContextFromFileSystem(participantRepository,
									participantAxis2Xml);
				}

			} catch (DeploymentException e) {
				throw new KandulaGeneralException(e);
			} catch (AxisFault e1) {
				throw new KandulaGeneralException(e1);
			}
		}
		return participantConfigurationContext;
	}