├── .github ├── CODEOWNERS ├── ISSUE_TEMPLATE │ ├── bug.yml │ ├── config.yml │ ├── improvement.yml │ ├── new-feature.yml │ └── task.yml └── workflows │ ├── all-tests.yml │ ├── cluster-tests.yml │ ├── coverage.yml │ ├── jdk-17-tests.yml │ ├── jdk-21-tests.yml │ ├── smoke-tests.yml │ └── windows-tests.yml ├── .gitignore ├── .travis.yml ├── LICENSE ├── LICENSE.txt ├── README.md ├── SECURITY.md ├── codecov.yml ├── components ├── business-adaptors │ ├── org.wso2.micro.integrator.business.messaging.hl7 │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ ├── java │ │ │ └── org │ │ │ │ └── wso2 │ │ │ │ └── micro.integrator │ │ │ │ └── business │ │ │ │ └── messaging │ │ │ │ └── hl7 │ │ │ │ ├── common │ │ │ │ ├── HL7Constants.java │ │ │ │ ├── HL7MessagePreprocessor.java │ │ │ │ ├── HL7ProcessingContext.java │ │ │ │ ├── HL7Utils.java │ │ │ │ └── data │ │ │ │ │ ├── EventPublishConfigHolder.java │ │ │ │ │ ├── MessageData.java │ │ │ │ │ ├── conf │ │ │ │ │ ├── EventPublisherConfig.java │ │ │ │ │ ├── HL7MessagePublisherConfig.java │ │ │ │ │ └── ServerConfig.java │ │ │ │ │ ├── publisher │ │ │ │ │ └── HL7EventPublisher.java │ │ │ │ │ └── utils │ │ │ │ │ ├── EventConfigUtil.java │ │ │ │ │ └── StreamDefUtil.java │ │ │ │ ├── message │ │ │ │ ├── HL7MessageBuilder.java │ │ │ │ ├── HL7MessageFormatter.java │ │ │ │ └── internal │ │ │ │ │ └── HL7MessageServiceComponent.java │ │ │ │ ├── store │ │ │ │ ├── JDBCConsumer.java │ │ │ │ ├── JDBCProducer.java │ │ │ │ ├── JDBCStore.java │ │ │ │ ├── JDBCUtils.java │ │ │ │ ├── entity │ │ │ │ │ ├── PersistentHL7Message.java │ │ │ │ │ └── TransferableHL7Message.java │ │ │ │ ├── jpa │ │ │ │ │ ├── JPAConsumer.java │ │ │ │ │ ├── JPAProducer.java │ │ │ │ │ └── JPAStore.java │ │ │ │ └── util │ │ │ │ │ ├── SerializableMessageContext.java │ │ │ │ │ └── SerializerUtils.java │ │ │ │ └── transport │ │ │ │ ├── HL7Endpoint.java │ │ │ │ ├── HL7TransportListener.java │ │ │ │ ├── HL7TransportOutInfo.java │ │ │ │ ├── HL7TransportSender.java │ │ │ │ └── utils │ │ │ │ ├── HL7MessageProcessor.java │ │ │ │ └── WorkerThreadFactory.java │ │ │ └── resources │ │ │ ├── META-INF │ │ │ └── persistence.xml │ │ │ └── hl7-transports.xml │ └── pom.xml ├── crypto-service │ ├── org.wso2.micro.integrator.crypto.impl │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ └── java │ │ │ │ └── org │ │ │ │ └── wso2 │ │ │ │ └── micro │ │ │ │ └── integrator │ │ │ │ └── crypto │ │ │ │ └── impl │ │ │ │ ├── DefaultCryptoService.java │ │ │ │ └── internal │ │ │ │ └── CryptoImplComponent.java │ │ │ └── test │ │ │ ├── java │ │ │ └── org │ │ │ │ └── wso2 │ │ │ │ └── micro │ │ │ │ └── integrator │ │ │ │ └── crypto │ │ │ │ └── impl │ │ │ │ ├── DefaultCryptoServiceTest.java │ │ │ │ ├── MockKeyResolver.java │ │ │ │ └── SimpleCryptoProvider.java │ │ │ └── resources │ │ │ ├── keystore.jks │ │ │ └── testng.xml │ ├── org.wso2.micro.integrator.crypto.provider │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ └── java │ │ │ │ └── org │ │ │ │ └── wso2 │ │ │ │ └── micro │ │ │ │ └── integrator │ │ │ │ └── crypto │ │ │ │ └── provider │ │ │ │ ├── ContextIndependentKeyResolver.java │ │ │ │ ├── KeyStoreBasedInternalCryptoProvider.java │ │ │ │ ├── SymmetricKeyInternalCryptoProvider.java │ │ │ │ └── internal │ │ │ │ └── DefaultCryptoProviderComponent.java │ │ │ └── test │ │ │ ├── java │ │ │ └── org │ │ │ │ └── wso2 │ │ │ │ └── micro │ │ │ │ └── integrator │ │ │ │ └── crypto │ │ │ │ └── provider │ │ │ │ └── KeyStoreBasedInternalCryptoProviderTest.java │ │ │ └── resources │ │ │ └── keystore.jks │ └── pom.xml ├── data │ ├── data-services │ │ ├── org.wso2.micro.integrator.dataservices.capp.deployer │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── java │ │ │ │ └── org │ │ │ │ └── wso2 │ │ │ │ └── micro │ │ │ │ └── integrator │ │ │ │ └── dataservices │ │ │ │ └── capp │ │ │ │ └── deployer │ │ │ │ ├── DataServiceCappDeployer.java │ │ │ │ └── internal │ │ │ │ └── DataServiceCappDeployerServiceComponent.java │ │ ├── org.wso2.micro.integrator.dataservices.common │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── java │ │ │ │ └── org │ │ │ │ └── wso2 │ │ │ │ └── micro │ │ │ │ └── integrator │ │ │ │ └── dataservices │ │ │ │ └── common │ │ │ │ ├── DBConstants.java │ │ │ │ ├── RDBMSUtils.java │ │ │ │ └── conf │ │ │ │ └── DynamicAuthConfiguration.java │ │ ├── org.wso2.micro.integrator.dataservices.core │ │ │ ├── README.txt │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ ├── main │ │ │ │ ├── java │ │ │ │ │ └── org │ │ │ │ │ │ └── wso2 │ │ │ │ │ │ └── micro │ │ │ │ │ │ └── integrator │ │ │ │ │ │ └── dataservices │ │ │ │ │ │ └── core │ │ │ │ │ │ ├── DBDeployer.java │ │ │ │ │ │ ├── DBInOnlyMessageReceiver.java │ │ │ │ │ │ ├── DBInOutMessageReceiver.java │ │ │ │ │ │ ├── DBUtils.java │ │ │ │ │ │ ├── DSSessionManager.java │ │ │ │ │ │ ├── DataHolder.java │ │ │ │ │ │ ├── DataServiceConnection.java │ │ │ │ │ │ ├── DataServiceDocLitWrappedSchemaGenerator.java │ │ │ │ │ │ ├── DataServiceFactory.java │ │ │ │ │ │ ├── DataServiceFault.java │ │ │ │ │ │ ├── DataServiceProcessor.java │ │ │ │ │ │ ├── DataServiceUser.java │ │ │ │ │ │ ├── DataServices.xsd │ │ │ │ │ │ ├── FaultyServiceRectifier.java │ │ │ │ │ │ ├── JDBCPoolSQLConfig.java │ │ │ │ │ │ ├── TLConnectionStore.java │ │ │ │ │ │ ├── WSDLToDataService.java │ │ │ │ │ │ ├── XSLTTransformer.java │ │ │ │ │ │ ├── auth │ │ │ │ │ │ ├── AbstractAuthorizationProvider.java │ │ │ │ │ │ ├── AuthorizationProvider.java │ │ │ │ │ │ ├── ConfigurationBasedAuthenticator.java │ │ │ │ │ │ ├── DynamicUserAuthenticator.java │ │ │ │ │ │ ├── JWTAuthorizationProvider.java │ │ │ │ │ │ └── UserStoreAuthorizationProvider.java │ │ │ │ │ │ ├── boxcarring │ │ │ │ │ │ ├── RequestBox.java │ │ │ │ │ │ └── TLParamStore.java │ │ │ │ │ │ ├── datasource │ │ │ │ │ │ ├── AbstractCustomDataSourceReader.java │ │ │ │ │ │ ├── CustomDataSourceBase.java │ │ │ │ │ │ ├── CustomQueryBasedDS.java │ │ │ │ │ │ ├── CustomQueryDataSourceReader.java │ │ │ │ │ │ ├── CustomTabularDataSourceReader.java │ │ │ │ │ │ ├── DataColumn.java │ │ │ │ │ │ ├── DataRow.java │ │ │ │ │ │ ├── DataTable.java │ │ │ │ │ │ ├── EchoDataSource.java │ │ │ │ │ │ ├── FixedDataRow.java │ │ │ │ │ │ ├── InMemoryDataSource.java │ │ │ │ │ │ ├── QueryResult.java │ │ │ │ │ │ └── TabularDataBasedDS.java │ │ │ │ │ │ ├── description │ │ │ │ │ │ ├── config │ │ │ │ │ │ │ ├── CSVConfig.java │ │ │ │ │ │ │ ├── CassandraConfig.java │ │ │ │ │ │ │ ├── Config.java │ │ │ │ │ │ │ ├── ConfigFactory.java │ │ │ │ │ │ │ ├── ConfigSerializer.java │ │ │ │ │ │ │ ├── CustomQueryBasedDSConfig.java │ │ │ │ │ │ │ ├── CustomQueryCarbonDataSourceConfig.java │ │ │ │ │ │ │ ├── ExcelConfig.java │ │ │ │ │ │ │ ├── GSpreadConfig.java │ │ │ │ │ │ │ ├── InlineCustomQueryBasedDSConfig.java │ │ │ │ │ │ │ ├── JNDIConfig.java │ │ │ │ │ │ │ ├── MongoConfig.java │ │ │ │ │ │ │ ├── RDBMSConfig.java │ │ │ │ │ │ │ ├── RDFConfig.java │ │ │ │ │ │ │ ├── SQLCarbonDataSourceConfig.java │ │ │ │ │ │ │ ├── SQLConfig.java │ │ │ │ │ │ │ ├── SparqlEndpointConfig.java │ │ │ │ │ │ │ ├── TabularDataBasedConfig.java │ │ │ │ │ │ │ └── WebConfig.java │ │ │ │ │ │ ├── event │ │ │ │ │ │ │ ├── EventTrigger.java │ │ │ │ │ │ │ ├── EventTriggerFactory.java │ │ │ │ │ │ │ ├── EventTriggerSerializer.java │ │ │ │ │ │ │ └── XPathEventTrigger.java │ │ │ │ │ │ ├── operation │ │ │ │ │ │ │ ├── Operation.java │ │ │ │ │ │ │ ├── OperationFactory.java │ │ │ │ │ │ │ └── OperationSerializer.java │ │ │ │ │ │ ├── query │ │ │ │ │ │ │ ├── CSVQuery.java │ │ │ │ │ │ │ ├── CassandraQuery.java │ │ │ │ │ │ │ ├── CustomQueryBasedDSQuery.java │ │ │ │ │ │ │ ├── ExcelQuery.java │ │ │ │ │ │ │ ├── ExpressionQuery.java │ │ │ │ │ │ │ ├── GSpreadQuery.java │ │ │ │ │ │ │ ├── MongoQuery.java │ │ │ │ │ │ │ ├── Query.java │ │ │ │ │ │ │ ├── QueryFactory.java │ │ │ │ │ │ │ ├── QuerySerializer.java │ │ │ │ │ │ │ ├── RdfFileQuery.java │ │ │ │ │ │ │ ├── SPARQLQuery.java │ │ │ │ │ │ │ ├── SQLDataServicesConnection.java │ │ │ │ │ │ │ ├── SQLQuery.java │ │ │ │ │ │ │ ├── SparqlEndpointQuery.java │ │ │ │ │ │ │ ├── SparqlQueryBase.java │ │ │ │ │ │ │ └── WebQuery.java │ │ │ │ │ │ ├── resource │ │ │ │ │ │ │ ├── Resource.java │ │ │ │ │ │ │ ├── ResourceFactory.java │ │ │ │ │ │ │ └── ResourceSerializer.java │ │ │ │ │ │ └── xa │ │ │ │ │ │ │ ├── DSSXATransactionManager.java │ │ │ │ │ │ │ └── XADataSourceInfo.java │ │ │ │ │ │ ├── dispatch │ │ │ │ │ │ ├── BatchDataServiceRequest.java │ │ │ │ │ │ ├── BatchRequestParticipant.java │ │ │ │ │ │ ├── BoxcarringDataServiceRequest.java │ │ │ │ │ │ ├── DataServiceRequest.java │ │ │ │ │ │ ├── DispatchStatus.java │ │ │ │ │ │ ├── RequestBoxRequest.java │ │ │ │ │ │ └── SingleDataServiceRequest.java │ │ │ │ │ │ ├── engine │ │ │ │ │ │ ├── CallQuery.java │ │ │ │ │ │ ├── CallableRequest.java │ │ │ │ │ │ ├── DSOMDataSource.java │ │ │ │ │ │ ├── DataEntry.java │ │ │ │ │ │ ├── DataService.java │ │ │ │ │ │ ├── DataServiceSerializer.java │ │ │ │ │ │ ├── ExternalParam.java │ │ │ │ │ │ ├── ExternalParamCollection.java │ │ │ │ │ │ ├── InternalParam.java │ │ │ │ │ │ ├── InternalParamCollection.java │ │ │ │ │ │ ├── OutputElement.java │ │ │ │ │ │ ├── OutputElementGroup.java │ │ │ │ │ │ ├── ParamValue.java │ │ │ │ │ │ ├── QueryParam.java │ │ │ │ │ │ ├── Result.java │ │ │ │ │ │ ├── ResultSetWrapper.java │ │ │ │ │ │ ├── SQLDialect.java │ │ │ │ │ │ ├── StaticOutputElement.java │ │ │ │ │ │ └── XMLWriterHelper.java │ │ │ │ │ │ ├── internal │ │ │ │ │ │ ├── DSAxis2ConfigurationContextObserver.java │ │ │ │ │ │ ├── DSDummyService.java │ │ │ │ │ │ └── DataServicesDSComponent.java │ │ │ │ │ │ ├── jmx │ │ │ │ │ │ ├── DataServiceInstance.java │ │ │ │ │ │ └── DataServiceInstanceMBean.java │ │ │ │ │ │ ├── odata │ │ │ │ │ │ ├── CassandraDataHandler.java │ │ │ │ │ │ ├── DataColumn.java │ │ │ │ │ │ ├── EDMProvider.java │ │ │ │ │ │ ├── MongoDataHandler.java │ │ │ │ │ │ ├── NavigationKeys.java │ │ │ │ │ │ ├── NavigationTable.java │ │ │ │ │ │ ├── ODataAdapter.java │ │ │ │ │ │ ├── ODataConstants.java │ │ │ │ │ │ ├── ODataDataHandler.java │ │ │ │ │ │ ├── ODataEntry.java │ │ │ │ │ │ ├── ODataServiceFault.java │ │ │ │ │ │ ├── ODataServiceHandler.java │ │ │ │ │ │ ├── ODataServiceRegistry.java │ │ │ │ │ │ ├── ODataUtils.java │ │ │ │ │ │ ├── QueryOptions.java │ │ │ │ │ │ ├── RDBMSDataHandler.java │ │ │ │ │ │ ├── StreamingEntityIterator.java │ │ │ │ │ │ ├── expression │ │ │ │ │ │ │ ├── ExpressionVisitorImpl.java │ │ │ │ │ │ │ ├── ExpressionVisitorODataEntryImpl.java │ │ │ │ │ │ │ ├── operand │ │ │ │ │ │ │ │ ├── TypedOperand.java │ │ │ │ │ │ │ │ ├── UntypedOperand.java │ │ │ │ │ │ │ │ └── VisitorOperand.java │ │ │ │ │ │ │ ├── operation │ │ │ │ │ │ │ │ ├── BinaryOperator.java │ │ │ │ │ │ │ │ ├── MethodCallOperator.java │ │ │ │ │ │ │ │ └── UnaryOperator.java │ │ │ │ │ │ │ └── primitive │ │ │ │ │ │ │ │ └── EdmNull.java │ │ │ │ │ │ └── serializer │ │ │ │ │ │ │ ├── OData.java │ │ │ │ │ │ │ ├── ODataImpl.java │ │ │ │ │ │ │ ├── ODataJsonSerializer.java │ │ │ │ │ │ │ ├── ODataSerializer.java │ │ │ │ │ │ │ ├── ODataWritableContent.java │ │ │ │ │ │ │ └── ODataXmlSerializer.java │ │ │ │ │ │ ├── script │ │ │ │ │ │ ├── DSGenerator.java │ │ │ │ │ │ ├── DSSqlTypes.java │ │ │ │ │ │ ├── DynamicSqlUtils.java │ │ │ │ │ │ └── PaginatedTableInfo.java │ │ │ │ │ │ ├── sqlparser │ │ │ │ │ │ ├── DataManipulator.java │ │ │ │ │ │ ├── LexicalConstants.java │ │ │ │ │ │ ├── SQLParserUtil.java │ │ │ │ │ │ ├── analysers │ │ │ │ │ │ │ ├── AnalyzerFactory.java │ │ │ │ │ │ │ ├── KeyWordAnalyzer.java │ │ │ │ │ │ │ ├── SelectAnalyser.java │ │ │ │ │ │ │ └── WhereAnalyzer.java │ │ │ │ │ │ └── mappers │ │ │ │ │ │ │ └── SelectMapper.java │ │ │ │ │ │ ├── tools │ │ │ │ │ │ └── DSTools.java │ │ │ │ │ │ └── validation │ │ │ │ │ │ ├── ValidationContext.java │ │ │ │ │ │ ├── ValidationException.java │ │ │ │ │ │ ├── Validator.java │ │ │ │ │ │ ├── ValidatorExt.java │ │ │ │ │ │ └── standard │ │ │ │ │ │ ├── ArrayTypeValidator.java │ │ │ │ │ │ ├── DoubleRangeValidator.java │ │ │ │ │ │ ├── GenericValidator.java │ │ │ │ │ │ ├── LengthValidator.java │ │ │ │ │ │ ├── LongRangeValidator.java │ │ │ │ │ │ ├── PatternValidator.java │ │ │ │ │ │ └── ScalarTypeValidator.java │ │ │ │ └── resources │ │ │ │ │ ├── META-INF │ │ │ │ │ └── component.xml │ │ │ │ │ └── org │ │ │ │ │ └── wso2 │ │ │ │ │ └── ws │ │ │ │ │ └── dataservice │ │ │ │ │ └── admin │ │ │ │ │ └── database.xml │ │ │ │ └── test │ │ │ │ ├── java │ │ │ │ └── org │ │ │ │ │ └── wso2 │ │ │ │ │ └── micro │ │ │ │ │ └── integrator │ │ │ │ │ └── dataservices │ │ │ │ │ └── core │ │ │ │ │ └── test │ │ │ │ │ ├── DataServiceBaseTestCase.java │ │ │ │ │ ├── csv │ │ │ │ │ ├── BAM_DAY_DIM.csv │ │ │ │ │ ├── BAM_HOUR_DIM.csv │ │ │ │ │ ├── BAM_MONTH_DIM.csv │ │ │ │ │ ├── BAM_OPERATION_STAT_DAY_FACT.csv │ │ │ │ │ ├── BAM_OPERATION_STAT_HOUR_FACT.csv │ │ │ │ │ ├── BAM_OPERATION_STAT_YEAR_FACT.csv │ │ │ │ │ ├── BAM_QTR_DIM.csv │ │ │ │ │ ├── BAM_SERVER_STAT_MONTH_FACT.csv │ │ │ │ │ ├── BAM_SERVER_STAT_QTR_FACT.csv │ │ │ │ │ ├── BAM_SERVER_STAT_YEAR_FACT.csv │ │ │ │ │ ├── BAM_SERVICE_STAT_HOUR_FACT.csv │ │ │ │ │ ├── BAM_SERVICE_STAT_MONTH_FACT.csv │ │ │ │ │ ├── BAM_SERVICE_STAT_QTR_FACT.csv │ │ │ │ │ ├── BAM_SERVICE_STAT_YEAR_FACT.csv │ │ │ │ │ ├── CSVFinalizeTest.java │ │ │ │ │ ├── CSVInitTest.java │ │ │ │ │ ├── CSVServiceTest.java │ │ │ │ │ └── CSVTestSuite.java │ │ │ │ │ ├── excel │ │ │ │ │ ├── ExcelFinalizeTest.java │ │ │ │ │ ├── ExcelInitTest.java │ │ │ │ │ ├── ExcelServiceTest.java │ │ │ │ │ └── ExcelTestSuite.java │ │ │ │ │ ├── generic │ │ │ │ │ ├── GenericExceptionTest.java │ │ │ │ │ ├── GenericFinalizeTest.java │ │ │ │ │ ├── GenericInitTest.java │ │ │ │ │ └── GenericTestSuite.java │ │ │ │ │ ├── sql │ │ │ │ │ ├── AbstractAdvancedStoredProcServiceTest.java │ │ │ │ │ ├── AbstractBasicServiceTest.java │ │ │ │ │ ├── AbstractBinaryDataServiceTest.java │ │ │ │ │ ├── AbstractDMLServiceTest.java │ │ │ │ │ ├── AbstractInputMappingServiceTest.java │ │ │ │ │ ├── AbstractNestedQueryServiceTest.java │ │ │ │ │ ├── AbstractResourceServiceTest.java │ │ │ │ │ ├── AbstractStoredProcedureServiceTest.java │ │ │ │ │ ├── AbstractUDTTest.java │ │ │ │ │ ├── h2 │ │ │ │ │ │ ├── H2BasicTest.java │ │ │ │ │ │ ├── H2DMLServiceTest.java │ │ │ │ │ │ ├── H2FinalizeTest.java │ │ │ │ │ │ ├── H2InitTest.java │ │ │ │ │ │ ├── H2InputMappingServiceTest.java │ │ │ │ │ │ ├── H2NestedQueryTest.java │ │ │ │ │ │ ├── H2ResourceServiceTest.java │ │ │ │ │ │ ├── H2StoredProcedureServiceTest.java │ │ │ │ │ │ ├── H2TestSuite.java │ │ │ │ │ │ └── H2TestUtils.java │ │ │ │ │ ├── mysql │ │ │ │ │ │ ├── MySQLAdvancedStoredProcServiceTest.java │ │ │ │ │ │ ├── MySQLBasicTest.java │ │ │ │ │ │ ├── MySQLBinaryDataServiceTest.java │ │ │ │ │ │ ├── MySQLDMLServiceTest.java │ │ │ │ │ │ ├── MySQLFinalizeTest.java │ │ │ │ │ │ ├── MySQLInitTest.java │ │ │ │ │ │ ├── MySQLInputMappingServiceTest.java │ │ │ │ │ │ ├── MySQLNestedQueryTest.java │ │ │ │ │ │ ├── MySQLResourceServiceTest.java │ │ │ │ │ │ ├── MySQLStoredProcedureServiceTest.java │ │ │ │ │ │ └── MySQLTestSuite.java │ │ │ │ │ └── oracle │ │ │ │ │ │ ├── OracleAdvancedStoredProcServiceTest.java │ │ │ │ │ │ ├── OracleBasicTest.java │ │ │ │ │ │ ├── OracleBinaryDataServiceTest.java │ │ │ │ │ │ ├── OracleDMLServiceTest.java │ │ │ │ │ │ ├── OracleFinalizeTest.java │ │ │ │ │ │ ├── OracleInitTest.java │ │ │ │ │ │ ├── OracleInputMappingServiceTest.java │ │ │ │ │ │ ├── OracleNestedQueryTest.java │ │ │ │ │ │ ├── OracleStoredProcedureServiceTest.java │ │ │ │ │ │ ├── OracleTestSuite.java │ │ │ │ │ │ └── OracleUDTTest.java │ │ │ │ │ ├── tools │ │ │ │ │ ├── ToolsFinalizeTest.java │ │ │ │ │ ├── ToolsInitTest.java │ │ │ │ │ ├── ToolsTest.java │ │ │ │ │ └── ToolsTestSuite.java │ │ │ │ │ └── util │ │ │ │ │ ├── DSComponentExtension.java │ │ │ │ │ ├── OddLengthValidator.java │ │ │ │ │ ├── SimpleHttpServerExtension.java │ │ │ │ │ ├── TestUtils.java │ │ │ │ │ └── UtilServer.java │ │ │ │ └── resources │ │ │ │ ├── axis2.xml │ │ │ │ ├── carbon.xml │ │ │ │ ├── csv │ │ │ │ ├── BAM_DAY_DIM.csv │ │ │ │ ├── BAM_HOUR_DIM.csv │ │ │ │ ├── BAM_MONTH_DIM.csv │ │ │ │ ├── BAM_OPERATION_STAT_DAY_FACT.csv │ │ │ │ ├── BAM_OPERATION_STAT_HOUR_FACT.csv │ │ │ │ ├── BAM_OPERATION_STAT_MONTH_FACT.csv │ │ │ │ ├── BAM_OPERATION_STAT_QTR_FACT.csv │ │ │ │ ├── BAM_OPERATION_STAT_YEAR_FACT.csv │ │ │ │ ├── BAM_QTR_DIM.csv │ │ │ │ ├── BAM_SERVER_STAT_DAY_FACT.csv │ │ │ │ ├── BAM_SERVER_STAT_HOUR_FACT.csv │ │ │ │ ├── BAM_SERVER_STAT_MONTH_FACT.csv │ │ │ │ ├── BAM_SERVER_STAT_QTR_FACT.csv │ │ │ │ ├── BAM_SERVER_STAT_YEAR_FACT.csv │ │ │ │ ├── BAM_SERVICE_STAT_DAY_FACT.csv │ │ │ │ ├── BAM_SERVICE_STAT_HOUR_FACT.csv │ │ │ │ ├── BAM_SERVICE_STAT_MONTH_FACT.csv │ │ │ │ ├── BAM_SERVICE_STAT_QTR_FACT.csv │ │ │ │ ├── BAM_SERVICE_STAT_YEAR_FACT.csv │ │ │ │ ├── BAM_YEAR_DIM.csv │ │ │ │ ├── customers.csv │ │ │ │ ├── offices.csv │ │ │ │ └── product_lines.csv │ │ │ │ ├── dataServices.xml │ │ │ │ ├── excel │ │ │ │ ├── customers.xlsx │ │ │ │ ├── customers_noheader_with_ints.xls │ │ │ │ └── offices.xls │ │ │ │ ├── log4j.properties │ │ │ │ ├── sql │ │ │ │ ├── CreateH2TestDB.sql │ │ │ │ ├── CreateMySQLTestDB.sql │ │ │ │ ├── CreateOracleTables.sql │ │ │ │ ├── CreateOracleTestDB.sql │ │ │ │ ├── CreateTables.sql │ │ │ │ ├── Customers.sql │ │ │ │ ├── DropOracleUser.sql │ │ │ │ ├── Employees.sql │ │ │ │ ├── H2StoredFuncs.sql │ │ │ │ ├── H2StoredProcs.sql │ │ │ │ ├── MySQLStoredFuncs.sql │ │ │ │ ├── MySQLStoredProcs.sql │ │ │ │ ├── Offices.sql │ │ │ │ ├── OracleStoredFuncs.sql │ │ │ │ ├── OracleStoredProcs.sql │ │ │ │ ├── OracleType.sql │ │ │ │ ├── OrderDetails.sql │ │ │ │ ├── Orders.sql │ │ │ │ ├── Payments.sql │ │ │ │ ├── ProductLines.sql │ │ │ │ └── Products.sql │ │ │ │ ├── test-dbs-back │ │ │ │ ├── MySQLAdvancedStoredProcService.dbs │ │ │ │ ├── MySQLBasicService.dbs │ │ │ │ ├── MySQLBinaryDataService.dbs │ │ │ │ ├── MySQLDMLService.dbs │ │ │ │ ├── MySQLInputMappingService.dbs │ │ │ │ ├── MySQLNestedQueryStoredProcService.dbs │ │ │ │ ├── OracleAdvancedStoredProcService.dbs │ │ │ │ ├── OracleBasicService.dbs │ │ │ │ ├── OracleBinaryDataService.dbs │ │ │ │ ├── OracleDMLService.dbs │ │ │ │ ├── OracleInputMappingService.dbs │ │ │ │ ├── OracleNestedQueryStoredProcService.dbs │ │ │ │ └── OracleUDTService.dbs │ │ │ │ ├── test-dbs │ │ │ │ ├── CSVService.dbs │ │ │ │ ├── ExcelService.dbs │ │ │ │ ├── H2BasicService.dbs │ │ │ │ ├── H2DMLService.dbs │ │ │ │ ├── H2InputMappingService.dbs │ │ │ │ └── H2NestedQueryStoredProcService.dbs │ │ │ │ └── xsd │ │ │ │ ├── customers.xsd │ │ │ │ ├── offices.xsd │ │ │ │ ├── order_count.xsd │ │ │ │ ├── order_details_nested.xsd │ │ │ │ ├── order_details_nested_with_date_time.xsd │ │ │ │ ├── orders.xsd │ │ │ │ ├── orders_with_date_time.xsd │ │ │ │ ├── payment_info_nested.xsd │ │ │ │ ├── payment_info_nested_with_date_time.xsd │ │ │ │ ├── payments.xsd │ │ │ │ ├── payments_with_date_time.xsd │ │ │ │ ├── product_lines.xsd │ │ │ │ └── products.xsd │ │ ├── org.wso2.micro.integrator.dataservices.odata.endpoint │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── java │ │ │ │ └── org │ │ │ │ └── wso2 │ │ │ │ └── micro │ │ │ │ └── integrator │ │ │ │ └── dataservices │ │ │ │ └── odata │ │ │ │ └── endpoint │ │ │ │ ├── ODataAxisEngine.java │ │ │ │ ├── ODataEndpoint.java │ │ │ │ ├── ODataPassThroughHandler.java │ │ │ │ ├── ODataServletRequest.java │ │ │ │ ├── ODataServletResponse.java │ │ │ │ └── ODataTransportSender.java │ │ ├── org.wso2.micro.integrator.dataservices.sql.driver │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── java │ │ │ │ └── org │ │ │ │ └── wso2 │ │ │ │ └── micro │ │ │ │ └── integrator │ │ │ │ └── dataservices │ │ │ │ └── sql │ │ │ │ └── driver │ │ │ │ ├── TConnection.java │ │ │ │ ├── TConnectionFactory.java │ │ │ │ ├── TCustomConnection.java │ │ │ │ ├── TDatabaseMetaData.java │ │ │ │ ├── TDriver.java │ │ │ │ ├── TDriverUtil.java │ │ │ │ ├── TExcelConnection.java │ │ │ │ ├── TGSpreadConnection.java │ │ │ │ ├── TPreparedStatement.java │ │ │ │ ├── TResultSet.java │ │ │ │ ├── TResultSetMetaData.java │ │ │ │ ├── TStatement.java │ │ │ │ ├── internal │ │ │ │ └── SQLDriverDSComponent.java │ │ │ │ ├── parser │ │ │ │ ├── Condition.java │ │ │ │ ├── Constants.java │ │ │ │ ├── EntityList.java │ │ │ │ ├── Parser.java │ │ │ │ ├── ParserException.java │ │ │ │ └── ParserUtil.java │ │ │ │ ├── processor │ │ │ │ ├── reader │ │ │ │ │ ├── AbstractFixedDataReader.java │ │ │ │ │ ├── CustomDataReader.java │ │ │ │ │ ├── DataCell.java │ │ │ │ │ ├── DataReader.java │ │ │ │ │ ├── DataReaderFactory.java │ │ │ │ │ ├── DataRow.java │ │ │ │ │ ├── DataTable.java │ │ │ │ │ ├── ExcelDataReader.java │ │ │ │ │ ├── FixedDataTable.java │ │ │ │ │ └── GSpreadDataReader.java │ │ │ │ └── writer │ │ │ │ │ ├── DataWriter.java │ │ │ │ │ ├── DataWriterFactory.java │ │ │ │ │ └── ExcelDataWriter.java │ │ │ │ ├── query │ │ │ │ ├── ColumnInfo.java │ │ │ │ ├── ConditionalQuery.java │ │ │ │ ├── ParamInfo.java │ │ │ │ ├── Query.java │ │ │ │ ├── QueryFactory.java │ │ │ │ ├── create │ │ │ │ │ ├── CreateQuery.java │ │ │ │ │ ├── ExcelCreateQuery.java │ │ │ │ │ └── GSpreadCreateQuery.java │ │ │ │ ├── delete │ │ │ │ │ ├── CustomDeleteQuery.java │ │ │ │ │ ├── DeleteQuery.java │ │ │ │ │ ├── ExcelDeleteQuery.java │ │ │ │ │ └── GSpreadDeleteQuery.java │ │ │ │ ├── drop │ │ │ │ │ ├── DropQuery.java │ │ │ │ │ ├── ExcelDropQuery.java │ │ │ │ │ └── GSpreadDropQuery.java │ │ │ │ ├── insert │ │ │ │ │ ├── CustomInsertQuery.java │ │ │ │ │ ├── ExcelInsertQuery.java │ │ │ │ │ ├── GSpreadInsertQuery.java │ │ │ │ │ └── InsertQuery.java │ │ │ │ ├── select │ │ │ │ │ ├── CustomSelectQuery.java │ │ │ │ │ ├── ExcelSelectQuery.java │ │ │ │ │ ├── GSpreadSelectQuery.java │ │ │ │ │ └── SelectQuery.java │ │ │ │ └── update │ │ │ │ │ ├── CustomUpdateQuery.java │ │ │ │ │ ├── ExcelUpdateQuery.java │ │ │ │ │ ├── GSpreadUpdateQuery.java │ │ │ │ │ └── UpdateQuery.java │ │ │ │ └── util │ │ │ │ ├── GSpreadFeedProcessor.java │ │ │ │ └── WorkBookOutputWriter.java │ │ └── pom.xml │ └── pom.xml ├── javax.cache │ ├── pom.xml │ └── src │ │ └── main │ │ └── java │ │ ├── javax │ │ └── cache │ │ │ ├── Cache.java │ │ │ ├── CacheBuilder.java │ │ │ ├── CacheConfiguration.java │ │ │ ├── CacheException.java │ │ │ ├── CacheLifecycle.java │ │ │ ├── CacheLoader.java │ │ │ ├── CacheManager.java │ │ │ ├── CacheManagerFactory.java │ │ │ ├── CacheStatistics.java │ │ │ ├── CacheWriter.java │ │ │ ├── Caching.java │ │ │ ├── CachingShutdownException.java │ │ │ ├── InvalidConfigurationException.java │ │ │ ├── OptionalFeature.java │ │ │ ├── Status.java │ │ │ ├── event │ │ │ ├── CacheEntryCreatedListener.java │ │ │ ├── CacheEntryEvent.java │ │ │ ├── CacheEntryExpiredListener.java │ │ │ ├── CacheEntryListener.java │ │ │ ├── CacheEntryListenerException.java │ │ │ ├── CacheEntryReadListener.java │ │ │ ├── CacheEntryRemovedListener.java │ │ │ ├── CacheEntryUpdatedListener.java │ │ │ └── packageinfo │ │ │ ├── mbeans │ │ │ ├── CacheMXBean.java │ │ │ ├── CacheStatisticsMXBean.java │ │ │ └── packageinfo │ │ │ ├── packageinfo │ │ │ ├── spi │ │ │ ├── AnnotationProvider.java │ │ │ ├── CachingProvider.java │ │ │ └── packageinfo │ │ │ └── transaction │ │ │ ├── IsolationLevel.java │ │ │ ├── Mode.java │ │ │ ├── TransactionException.java │ │ │ └── packageinfo │ │ └── org │ │ └── wso2 │ │ └── carbon │ │ └── caching │ │ └── impl │ │ ├── AnnotationProviderImpl.java │ │ ├── CacheBuilderImpl.java │ │ ├── CacheCleanupTask.java │ │ ├── CacheConfigurationImpl.java │ │ ├── CacheEntry.java │ │ ├── CacheEntryEventImpl.java │ │ ├── CacheImpl.java │ │ ├── CacheInvalidator.java │ │ ├── CacheMXBeanImpl.java │ │ ├── CacheManagerFactoryImpl.java │ │ ├── CacheStatisticsImpl.java │ │ ├── CachingAxisConfigurationObserver.java │ │ ├── CachingConstants.java │ │ ├── CachingProviderImpl.java │ │ ├── CarbonCacheManager.java │ │ ├── Constants.java │ │ ├── DataHolder.java │ │ ├── DistributedMapProvider.java │ │ ├── MapEntryListener.java │ │ ├── TenantCacheManager.java │ │ ├── Util.java │ │ ├── clustering │ │ ├── ClusterCacheInvalidationRequest.java │ │ └── ClusterCacheInvalidationRequestSender.java │ │ ├── eviction │ │ ├── EvictionAlgorithm.java │ │ ├── EvictionUtil.java │ │ ├── LeastRecentlyUsedEvictionAlgorithm.java │ │ ├── MostRecentlyUsedEvictionAlgorithm.java │ │ └── RandomEvictionAlgorithm.java │ │ └── internal │ │ └── CachingServiceComponent.java ├── mediation │ ├── data-publishers │ │ ├── org.wso2.micro.integrator.analytics.data.publisher.util │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── java │ │ │ │ └── org │ │ │ │ └── wso2 │ │ │ │ └── micro │ │ │ │ └── integrator │ │ │ │ └── analytics │ │ │ │ └── data │ │ │ │ └── publisher │ │ │ │ └── util │ │ │ │ ├── AnalyticsDataPublisherConstants.java │ │ │ │ └── PublisherUtil.java │ │ ├── org.wso2.micro.integrator.analytics.messageflow.data.publisher │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ ├── main │ │ │ │ └── java │ │ │ │ │ └── org │ │ │ │ │ └── wso2 │ │ │ │ │ └── micro │ │ │ │ │ └── integrator │ │ │ │ │ └── analytics │ │ │ │ │ └── messageflow │ │ │ │ │ └── data │ │ │ │ │ └── publisher │ │ │ │ │ ├── data │ │ │ │ │ └── MessageFlowObserverStore.java │ │ │ │ │ ├── internal │ │ │ │ │ ├── MediationStatisticsComponent.java │ │ │ │ │ └── MessageFlowDataPublisherDataHolder.java │ │ │ │ │ ├── observer │ │ │ │ │ ├── AnalyticsMediationFlowObserver.java │ │ │ │ │ ├── MessageFlowObserver.java │ │ │ │ │ ├── TenantInformation.java │ │ │ │ │ └── jmx │ │ │ │ │ │ ├── JMXMediationFlowObserver.java │ │ │ │ │ │ └── data │ │ │ │ │ │ ├── StatisticCollectionViewMXBean.java │ │ │ │ │ │ ├── StatisticsCompositeObject.java │ │ │ │ │ │ └── SummeryStatisticObject.java │ │ │ │ │ ├── producer │ │ │ │ │ ├── AnalyticsCustomDataProvider.java │ │ │ │ │ └── AnalyticsDataProviderHolder.java │ │ │ │ │ ├── publish │ │ │ │ │ ├── ConfigurationPublisher.java │ │ │ │ │ ├── DataBridgePublisher.java │ │ │ │ │ ├── StatisticsPublisher.java │ │ │ │ │ ├── ei │ │ │ │ │ │ └── EIStatisticsPublisher.java │ │ │ │ │ └── elasticsearch │ │ │ │ │ │ ├── ElasticConstants.java │ │ │ │ │ │ ├── ElasticStatisticsPublisher.java │ │ │ │ │ │ └── schema │ │ │ │ │ │ ├── ElasticDataSchema.java │ │ │ │ │ │ └── ElasticDataSchemaElement.java │ │ │ │ │ ├── services │ │ │ │ │ ├── MediationConfigReporterThread.java │ │ │ │ │ └── MessageFlowReporterThread.java │ │ │ │ │ └── util │ │ │ │ │ ├── MediationDataPublisherConstants.java │ │ │ │ │ └── MediationPublisherException.java │ │ │ │ └── test │ │ │ │ └── java │ │ │ │ └── org │ │ │ │ └── wso2 │ │ │ │ └── micro │ │ │ │ └── integrator │ │ │ │ └── analytics │ │ │ │ └── messageflow │ │ │ │ └── data │ │ │ │ └── publisher │ │ │ │ └── publish │ │ │ │ └── elasticsearch │ │ │ │ ├── ElasticStatisticsTest.java │ │ │ │ ├── SampleCustomDataProvider.java │ │ │ │ └── TestElasticStatisticsPublisher.java │ │ ├── org.wso2.micro.integrator.observability │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── java │ │ │ │ └── org │ │ │ │ └── wso2 │ │ │ │ └── micro │ │ │ │ └── integrator │ │ │ │ └── observability │ │ │ │ ├── metric │ │ │ │ ├── handler │ │ │ │ │ ├── DSMetricHandler.java │ │ │ │ │ ├── MetricHandler.java │ │ │ │ │ ├── MetricReporter.java │ │ │ │ │ └── prometheus │ │ │ │ │ │ └── reporter │ │ │ │ │ │ ├── PrometheusReporter.java │ │ │ │ │ │ └── PrometheusReporterV1.java │ │ │ │ └── publisher │ │ │ │ │ ├── MetricAPI.java │ │ │ │ │ ├── MetricFormatter.java │ │ │ │ │ └── MetricResource.java │ │ │ │ └── util │ │ │ │ ├── MetricConstants.java │ │ │ │ └── MetricUtils.java │ │ └── pom.xml │ ├── extensions │ │ ├── org.wso2.micro.integrator.security.handlers │ │ │ ├── pom.xml │ │ │ └── utsecurity │ │ │ │ ├── pom.xml │ │ │ │ └── src │ │ │ │ ├── META-INF │ │ │ │ └── module.xml │ │ │ │ └── org │ │ │ │ └── wso2 │ │ │ │ └── micro │ │ │ │ └── integrator │ │ │ │ └── security │ │ │ │ └── pox │ │ │ │ ├── POXSecurityHandler.java │ │ │ │ └── SecurityConstants.java │ │ ├── org.wso2.micro.integrator.transport.handlers │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── java │ │ │ │ └── org │ │ │ │ └── wso2 │ │ │ │ └── micro │ │ │ │ └── integrator │ │ │ │ └── transport │ │ │ │ └── handlers │ │ │ │ ├── AbstractHttpGetRequestProcessor.java │ │ │ │ ├── Axis2HttpGetRequestProcessor.java │ │ │ │ ├── DataHolder.java │ │ │ │ ├── PassThroughNHttpGetProcessor.java │ │ │ │ ├── requestprocessors │ │ │ │ └── swagger │ │ │ │ │ └── format │ │ │ │ │ ├── MIServerConfig.java │ │ │ │ │ ├── MediaTypeMixin.java │ │ │ │ │ ├── SwaggerGenerator.java │ │ │ │ │ ├── SwaggerJsonProcessor.java │ │ │ │ │ └── SwaggerYamlProcessor.java │ │ │ │ └── utils │ │ │ │ ├── RequestProcessorDispatcherUtil.java │ │ │ │ ├── SwaggerException.java │ │ │ │ ├── SwaggerProcessorConstants.java │ │ │ │ └── SwaggerUtils.java │ │ └── pom.xml │ ├── inbound-endpoints │ │ ├── org.wso2.micro.integrator.inbound.endpoint.osgi │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── java │ │ │ │ └── org │ │ │ │ └── wso2 │ │ │ │ └── carbon │ │ │ │ └── inbound │ │ │ │ └── endpoint │ │ │ │ └── osgi │ │ │ │ └── service │ │ │ │ ├── InboundEndpointService.java │ │ │ │ ├── InboundEndpointServiceDSComponent.java │ │ │ │ ├── InboundEndpointServiceImpl.java │ │ │ │ └── ServiceReferenceHolder.java │ │ ├── org.wso2.micro.integrator.inbound.endpoint.persistence │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── java │ │ │ │ └── org │ │ │ │ └── wso2 │ │ │ │ └── carbon │ │ │ │ └── inbound │ │ │ │ └── endpoint │ │ │ │ └── persistence │ │ │ │ ├── InboundEndpointInfoDTO.java │ │ │ │ ├── InboundEndpointsDataStore.java │ │ │ │ ├── PersistenceUtils.java │ │ │ │ └── service │ │ │ │ ├── InboundEndpointPersistenceService.java │ │ │ │ ├── InboundEndpointPersistenceServiceDSComponent.java │ │ │ │ └── InboundEndpointPersistenceServiceImpl.java │ │ ├── org.wso2.micro.integrator.inbound.endpoint │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ ├── main │ │ │ │ ├── java │ │ │ │ │ └── org │ │ │ │ │ │ └── wso2 │ │ │ │ │ │ └── carbon │ │ │ │ │ │ └── inbound │ │ │ │ │ │ └── endpoint │ │ │ │ │ │ ├── EndpointListenerLoader.java │ │ │ │ │ │ ├── common │ │ │ │ │ │ ├── AbstractInboundEndpointManager.java │ │ │ │ │ │ ├── Constants.java │ │ │ │ │ │ ├── InboundEndpointManager.java │ │ │ │ │ │ ├── InboundOneTimeTriggerEventBasedProcessor.java │ │ │ │ │ │ ├── InboundOneTimeTriggerRequestProcessor.java │ │ │ │ │ │ ├── InboundRequestProcessorImpl.java │ │ │ │ │ │ ├── InboundTask.java │ │ │ │ │ │ ├── OneTimeTriggerAbstractCallback.java │ │ │ │ │ │ ├── OneTimeTriggerInboundTask.java │ │ │ │ │ │ └── PinnedPollingTask.java │ │ │ │ │ │ ├── inboundfactory │ │ │ │ │ │ └── InboundRequestProcessorFactoryImpl.java │ │ │ │ │ │ ├── internal │ │ │ │ │ │ └── http │ │ │ │ │ │ │ └── api │ │ │ │ │ │ │ ├── APIResource.java │ │ │ │ │ │ │ ├── ConfigurationLoader.java │ │ │ │ │ │ │ ├── Constants.java │ │ │ │ │ │ │ ├── InternalAPI.java │ │ │ │ │ │ │ ├── InternalAPICORSConfiguration.java │ │ │ │ │ │ │ ├── InternalAPIDispatcher.java │ │ │ │ │ │ │ └── InternalAPIHandler.java │ │ │ │ │ │ └── protocol │ │ │ │ │ │ ├── PollingConstants.java │ │ │ │ │ │ ├── Utils.java │ │ │ │ │ │ ├── file │ │ │ │ │ │ ├── FileInjectHandler.java │ │ │ │ │ │ ├── FilePollingConsumer.java │ │ │ │ │ │ ├── FileTask.java │ │ │ │ │ │ └── VFSProcessor.java │ │ │ │ │ │ ├── generic │ │ │ │ │ │ ├── GenericConstants.java │ │ │ │ │ │ ├── GenericEventBasedConsumer.java │ │ │ │ │ │ ├── GenericEventBasedListener.java │ │ │ │ │ │ ├── GenericInboundListener.java │ │ │ │ │ │ ├── GenericOneTimeTask.java │ │ │ │ │ │ ├── GenericPollingConsumer.java │ │ │ │ │ │ ├── GenericProcessor.java │ │ │ │ │ │ └── GenericTask.java │ │ │ │ │ │ ├── grpc │ │ │ │ │ │ ├── GRPCInjectHandler.java │ │ │ │ │ │ ├── GRPCResponseSender.java │ │ │ │ │ │ ├── InboundGRPCConstants.java │ │ │ │ │ │ ├── InboundGRPCListener.java │ │ │ │ │ │ └── util │ │ │ │ │ │ │ ├── Event.java │ │ │ │ │ │ │ ├── EventOrBuilder.java │ │ │ │ │ │ │ ├── EventServiceGrpc.java │ │ │ │ │ │ │ └── EventServiceOuterClass.java │ │ │ │ │ │ ├── hl7 │ │ │ │ │ │ ├── HL7MessagePreprocessor.java │ │ │ │ │ │ ├── codec │ │ │ │ │ │ │ └── HL7Codec.java │ │ │ │ │ │ ├── context │ │ │ │ │ │ │ ├── MLLPContext.java │ │ │ │ │ │ │ └── MLLPContextFactory.java │ │ │ │ │ │ ├── core │ │ │ │ │ │ │ ├── CallableTask.java │ │ │ │ │ │ │ ├── HL7Processor.java │ │ │ │ │ │ │ ├── InboundHL7IOReactor.java │ │ │ │ │ │ │ ├── InboundHL7Listener.java │ │ │ │ │ │ │ ├── MLLPConstants.java │ │ │ │ │ │ │ ├── MLLPSourceHandler.java │ │ │ │ │ │ │ ├── MLLProtocolException.java │ │ │ │ │ │ │ └── MultiIOHandler.java │ │ │ │ │ │ ├── management │ │ │ │ │ │ │ └── HL7EndpointManager.java │ │ │ │ │ │ └── util │ │ │ │ │ │ │ ├── Axis2HL7Constants.java │ │ │ │ │ │ │ ├── HL7Configuration.java │ │ │ │ │ │ │ ├── HL7ExecutorServiceFactory.java │ │ │ │ │ │ │ └── HL7MessageUtils.java │ │ │ │ │ │ ├── http │ │ │ │ │ │ ├── InboundCorrelationEnabledHttpServerWorker.java │ │ │ │ │ │ ├── InboundHttpConfiguration.java │ │ │ │ │ │ ├── InboundHttpConstants.java │ │ │ │ │ │ ├── InboundHttpListener.java │ │ │ │ │ │ ├── InboundHttpResponseSender.java │ │ │ │ │ │ ├── InboundHttpServerWorker.java │ │ │ │ │ │ ├── InboundHttpSourceHandler.java │ │ │ │ │ │ ├── config │ │ │ │ │ │ │ └── WorkerPoolConfiguration.java │ │ │ │ │ │ └── management │ │ │ │ │ │ │ └── HTTPEndpointManager.java │ │ │ │ │ │ ├── https │ │ │ │ │ │ └── InboundHttpsListener.java │ │ │ │ │ │ ├── httpssecurewebsocket │ │ │ │ │ │ └── InboundHttpsSecureWebsocketListener.java │ │ │ │ │ │ ├── httpwebsocket │ │ │ │ │ │ ├── InboundHttpWebSocketConstants.java │ │ │ │ │ │ ├── InboundHttpWebsocketListener.java │ │ │ │ │ │ └── management │ │ │ │ │ │ │ └── HttpWebsocketEndpointManager.java │ │ │ │ │ │ ├── jms │ │ │ │ │ │ ├── BytesMessageDataSource.java │ │ │ │ │ │ ├── BytesMessageInputStream.java │ │ │ │ │ │ ├── BytesMessageOutputStream.java │ │ │ │ │ │ ├── JMSConstants.java │ │ │ │ │ │ ├── JMSExceptionWrapper.java │ │ │ │ │ │ ├── JMSInjectHandler.java │ │ │ │ │ │ ├── JMSPollingConsumer.java │ │ │ │ │ │ ├── JMSProcessor.java │ │ │ │ │ │ ├── JMSReplySender.java │ │ │ │ │ │ ├── JMSTask.java │ │ │ │ │ │ ├── JMSUtils.java │ │ │ │ │ │ ├── factory │ │ │ │ │ │ │ ├── CachedJMSConnectionFactory.java │ │ │ │ │ │ │ └── JMSConnectionFactory.java │ │ │ │ │ │ └── jakarta │ │ │ │ │ │ │ ├── BytesMessageDataSource.java │ │ │ │ │ │ │ ├── BytesMessageInputStream.java │ │ │ │ │ │ │ ├── BytesMessageOutputStream.java │ │ │ │ │ │ │ ├── CachedJakartaConnectionFactory.java │ │ │ │ │ │ │ ├── JMSExceptionWrapper.java │ │ │ │ │ │ │ ├── JakartaConnectionFactory.java │ │ │ │ │ │ │ ├── JakartaInjectHandler.java │ │ │ │ │ │ │ ├── JakartaReplySender.java │ │ │ │ │ │ │ └── JakartaUtils.java │ │ │ │ │ │ ├── kafka │ │ │ │ │ │ ├── AbstractKafkaMessageListener.java │ │ │ │ │ │ ├── InjectHandler.java │ │ │ │ │ │ ├── KAFKAConstants.java │ │ │ │ │ │ ├── KAFKAInjectHandler.java │ │ │ │ │ │ ├── KAFKAMessageListener.java │ │ │ │ │ │ ├── KAFKAPollingConsumer.java │ │ │ │ │ │ ├── KAFKAProcessor.java │ │ │ │ │ │ ├── KAFKATask.java │ │ │ │ │ │ ├── KafkaMessageContext.java │ │ │ │ │ │ └── SimpleKafkaMessageListener.java │ │ │ │ │ │ ├── mqtt │ │ │ │ │ │ ├── MqttAsyncCallback.java │ │ │ │ │ │ ├── MqttClientManager.java │ │ │ │ │ │ ├── MqttConnectionConsumer.java │ │ │ │ │ │ ├── MqttConnectionFactory.java │ │ │ │ │ │ ├── MqttConnectionListener.java │ │ │ │ │ │ ├── MqttConstants.java │ │ │ │ │ │ ├── MqttInjectHandler.java │ │ │ │ │ │ ├── MqttListener.java │ │ │ │ │ │ ├── MqttMessageContext.java │ │ │ │ │ │ └── MqttTask.java │ │ │ │ │ │ ├── rabbitmq │ │ │ │ │ │ ├── AcknowledgementMode.java │ │ │ │ │ │ ├── RabbitMQConnectionFactory.java │ │ │ │ │ │ ├── RabbitMQConstants.java │ │ │ │ │ │ ├── RabbitMQConsumer.java │ │ │ │ │ │ ├── RabbitMQException.java │ │ │ │ │ │ ├── RabbitMQInjectHandler.java │ │ │ │ │ │ ├── RabbitMQListener.java │ │ │ │ │ │ ├── RabbitMQMessageContext.java │ │ │ │ │ │ ├── RabbitMQRecoveryListener.java │ │ │ │ │ │ └── RabbitMQTask.java │ │ │ │ │ │ ├── securewebsocket │ │ │ │ │ │ └── InboundSecureWebsocketListener.java │ │ │ │ │ │ └── websocket │ │ │ │ │ │ ├── AbstractSubprotocolHandler.java │ │ │ │ │ │ ├── InboundWebsocketChannelContext.java │ │ │ │ │ │ ├── InboundWebsocketChannelInitializer.java │ │ │ │ │ │ ├── InboundWebsocketConfiguration.java │ │ │ │ │ │ ├── InboundWebsocketConstants.java │ │ │ │ │ │ ├── InboundWebsocketEventExecutor.java │ │ │ │ │ │ ├── InboundWebsocketListener.java │ │ │ │ │ │ ├── InboundWebsocketResponseSender.java │ │ │ │ │ │ ├── InboundWebsocketSourceHandler.java │ │ │ │ │ │ ├── PipelineHandlerBuilderUtil.java │ │ │ │ │ │ ├── SubprotocolBuilderUtil.java │ │ │ │ │ │ ├── WebsocketLogUtil.java │ │ │ │ │ │ ├── configuration │ │ │ │ │ │ └── NettyThreadPoolConfiguration.java │ │ │ │ │ │ ├── management │ │ │ │ │ │ ├── WebsocketEndpointManager.java │ │ │ │ │ │ ├── WebsocketEventExecutorManager.java │ │ │ │ │ │ └── WebsocketSubscriberPathManager.java │ │ │ │ │ │ ├── pipelinehandlers │ │ │ │ │ │ └── SamplePipelineHandler.java │ │ │ │ │ │ ├── ssl │ │ │ │ │ │ ├── InboundWebsocketSSLConfiguration.java │ │ │ │ │ │ └── SSLHandlerFactory.java │ │ │ │ │ │ └── subprotocols │ │ │ │ │ │ └── EchoSubprotocolHandler.java │ │ │ │ └── resources │ │ │ │ │ └── META-INF │ │ │ │ │ ├── io.netty.versions.properties │ │ │ │ │ ├── native │ │ │ │ │ ├── io_grpc_netty_shaded_netty_tcnative_windows_x86_64.dll │ │ │ │ │ ├── libio_grpc_netty_shaded_netty_tcnative_linux_x86_64.so │ │ │ │ │ ├── libio_grpc_netty_shaded_netty_tcnative_osx_x86_64.jnilib │ │ │ │ │ └── libio_grpc_netty_shaded_netty_transport_native_epoll_x86_64.so │ │ │ │ │ └── services │ │ │ │ │ ├── io.grpc.LoadBalancerProvider │ │ │ │ │ ├── io.grpc.ManagedChannelProvider │ │ │ │ │ ├── io.grpc.NameResolverProvider │ │ │ │ │ ├── io.grpc.ServerProvider │ │ │ │ │ └── org.apache.synapse.inbound.InboundRequestProcessorFactory │ │ │ │ └── test │ │ │ │ ├── java │ │ │ │ ├── endpoint │ │ │ │ │ └── protocol │ │ │ │ │ │ └── jms │ │ │ │ │ │ ├── JMSBrokerController.java │ │ │ │ │ │ ├── JMSTestsUtils.java │ │ │ │ │ │ └── tests │ │ │ │ │ │ ├── JMSConnectionFactoryTestCase.java │ │ │ │ │ │ ├── JMSPollingConsumerQueueTest.java │ │ │ │ │ │ ├── JMSPollingConsumerTopicTest.java │ │ │ │ │ │ ├── JMSReplySenderTest.java │ │ │ │ │ │ └── JMSUtilsTest.java │ │ │ │ ├── internal │ │ │ │ │ └── http │ │ │ │ │ │ └── api │ │ │ │ │ │ ├── ConfigurationLoaderTestCase.java │ │ │ │ │ │ ├── DispatcherTestCase.java │ │ │ │ │ │ ├── SampleInternalAPI.java │ │ │ │ │ │ ├── SampleInternalApiHandler.java │ │ │ │ │ │ ├── SampleInternalApiHandlerWithAllResources.java │ │ │ │ │ │ ├── SampleInternalApiHandlerWithCustomResources.java │ │ │ │ │ │ ├── SampleInternalApiHandlerWithNoResources.java │ │ │ │ │ │ └── SampleResource.java │ │ │ │ └── org │ │ │ │ │ └── wso2 │ │ │ │ │ └── micro │ │ │ │ │ └── integrator │ │ │ │ │ └── inbound │ │ │ │ │ └── endpoint │ │ │ │ │ └── protocol │ │ │ │ │ └── file │ │ │ │ │ ├── FilePollingConsumerParameterizedTest.java │ │ │ │ │ ├── FilePollingConsumerTest.java │ │ │ │ │ ├── FilePollingConsumerTestSuite.java │ │ │ │ │ └── TestFileInjectHandler.java │ │ │ │ └── resources │ │ │ │ ├── fileInbound │ │ │ │ ├── testFileAsUri │ │ │ │ │ ├── in │ │ │ │ │ │ └── a.txt │ │ │ │ │ └── out │ │ │ │ │ │ └── sample.txt │ │ │ │ ├── testFileSizeLimit │ │ │ │ │ └── in │ │ │ │ │ │ ├── a.txt │ │ │ │ │ │ └── b.txt │ │ │ │ ├── testFilesInChildren │ │ │ │ │ ├── in │ │ │ │ │ │ ├── a.txt │ │ │ │ │ │ ├── b.txt │ │ │ │ │ │ ├── child1 │ │ │ │ │ │ │ ├── a.txt │ │ │ │ │ │ │ └── b.txt │ │ │ │ │ │ └── child2 │ │ │ │ │ │ │ ├── a.txt │ │ │ │ │ │ │ └── b.txt │ │ │ │ │ └── out │ │ │ │ │ │ └── sample.txt │ │ │ │ ├── testFilesInChildrenRecursively │ │ │ │ │ ├── in │ │ │ │ │ │ ├── a.txt │ │ │ │ │ │ ├── b.txt │ │ │ │ │ │ └── child1 │ │ │ │ │ │ │ ├── a.txt │ │ │ │ │ │ │ ├── b.txt │ │ │ │ │ │ │ └── child2 │ │ │ │ │ │ │ ├── a.txt │ │ │ │ │ │ │ └── b.txt │ │ │ │ │ └── out │ │ │ │ │ │ └── sample.txt │ │ │ │ └── testFilesInParent │ │ │ │ │ ├── in │ │ │ │ │ ├── a.txt │ │ │ │ │ └── b.txt │ │ │ │ │ └── out │ │ │ │ │ └── sample.txt │ │ │ │ └── internal │ │ │ │ └── http │ │ │ │ └── api │ │ │ │ ├── internal-apis-without-user-store.xml │ │ │ │ └── internal-apis.xml │ │ └── pom.xml │ ├── mediators │ │ ├── cache-mediator │ │ │ └── org.wso2.carbon.mediator.cache │ │ │ │ ├── pom.xml │ │ │ │ └── src │ │ │ │ ├── main │ │ │ │ ├── java │ │ │ │ │ └── org │ │ │ │ │ │ └── wso2 │ │ │ │ │ │ └── carbon │ │ │ │ │ │ └── mediator │ │ │ │ │ │ └── cache │ │ │ │ │ │ ├── CachableResponse.java │ │ │ │ │ │ ├── CacheManager.java │ │ │ │ │ │ ├── CacheMediator.java │ │ │ │ │ │ ├── CacheMediatorFactory.java │ │ │ │ │ │ ├── CacheMediatorSerializer.java │ │ │ │ │ │ ├── CachingConstants.java │ │ │ │ │ │ ├── CachingException.java │ │ │ │ │ │ ├── MediatorCacheInvalidator.java │ │ │ │ │ │ ├── MediatorCacheInvalidatorMBean.java │ │ │ │ │ │ ├── digest │ │ │ │ │ │ ├── DOMHASHGenerator.java │ │ │ │ │ │ ├── DigestGenerator.java │ │ │ │ │ │ ├── HttpRequestHashGenerator.java │ │ │ │ │ │ └── REQUESTHASHGenerator.java │ │ │ │ │ │ └── util │ │ │ │ │ │ └── HttpCachingFilter.java │ │ │ │ └── resources │ │ │ │ │ └── META-INF │ │ │ │ │ └── services │ │ │ │ │ ├── org.apache.synapse.config.xml.MediatorFactory │ │ │ │ │ └── org.apache.synapse.config.xml.MediatorSerializer │ │ │ │ └── test │ │ │ │ └── java │ │ │ │ └── org.wso2.carbon.mediator.cache │ │ │ │ └── CacheMediatorTest.java │ │ ├── dataservices-mediator │ │ │ └── org.wso2.micro.integrator.mediator.dataservice │ │ │ │ ├── pom.xml │ │ │ │ └── src │ │ │ │ └── main │ │ │ │ ├── java │ │ │ │ └── org │ │ │ │ │ └── wso2 │ │ │ │ │ └── micro │ │ │ │ │ └── integrator │ │ │ │ │ └── mediator │ │ │ │ │ └── dataservice │ │ │ │ │ ├── DataServiceCallMediator.java │ │ │ │ │ ├── DataServiceCallMediatorConstants.java │ │ │ │ │ ├── DataServiceCallMediatorFactory.java │ │ │ │ │ └── DataServiceCallMediatorSerializer.java │ │ │ │ └── resources │ │ │ │ └── META-INF │ │ │ │ └── services │ │ │ │ ├── org.apache.synapse.config.xml.MediatorFactory │ │ │ │ └── org.apache.synapse.config.xml.MediatorSerializer │ │ ├── entitlement-mediator │ │ │ └── org.wso2.micro.integrator.identity.entitlement.mediator │ │ │ │ ├── pom.xml │ │ │ │ └── src │ │ │ │ └── main │ │ │ │ ├── java │ │ │ │ └── org │ │ │ │ │ └── wso2 │ │ │ │ │ └── micro │ │ │ │ │ └── integrator │ │ │ │ │ └── identity │ │ │ │ │ └── entitlement │ │ │ │ │ ├── mediator │ │ │ │ │ ├── EntitlementConstants.java │ │ │ │ │ ├── EntitlementMediator.java │ │ │ │ │ ├── callback │ │ │ │ │ │ ├── EntitlementCallbackHandler.java │ │ │ │ │ │ ├── KerberosEntitlementCallbackHandler.java │ │ │ │ │ │ ├── SAMLEntitlementCallbackHandler.java │ │ │ │ │ │ ├── UTEntitlementCallbackHandler.java │ │ │ │ │ │ └── X509EntitlementCallbackHandler.java │ │ │ │ │ └── config │ │ │ │ │ │ └── xml │ │ │ │ │ │ ├── EntitlementMediatorFactory.java │ │ │ │ │ │ └── EntitlementMediatorSerializer.java │ │ │ │ │ └── proxy │ │ │ │ │ ├── AbstractEntitlementServiceClient.java │ │ │ │ │ ├── Attribute.java │ │ │ │ │ ├── IdentityCacheEntry.java │ │ │ │ │ ├── IdentityCacheKey.java │ │ │ │ │ ├── PEPProxy.java │ │ │ │ │ ├── PEPProxyCache.java │ │ │ │ │ ├── PEPProxyConfig.java │ │ │ │ │ ├── PEPProxyFactory.java │ │ │ │ │ ├── ProxyConstants.java │ │ │ │ │ ├── XACMLRequetBuilder.java │ │ │ │ │ ├── exception │ │ │ │ │ └── EntitlementProxyException.java │ │ │ │ │ ├── generatedCode │ │ │ │ │ ├── AuthenticationException.java │ │ │ │ │ ├── AuthenticatorService.java │ │ │ │ │ ├── EntitlementException.java │ │ │ │ │ └── EntitlementThriftClient.java │ │ │ │ │ ├── json │ │ │ │ │ └── JSONEntitlementServiceClient.java │ │ │ │ │ ├── soap │ │ │ │ │ ├── authenticationAdmin │ │ │ │ │ │ ├── Authenticator.java │ │ │ │ │ │ └── SOAPEntitlementServiceClient.java │ │ │ │ │ ├── basicAuth │ │ │ │ │ │ └── BasicAuthEntitlementServiceClient.java │ │ │ │ │ └── util │ │ │ │ │ │ └── EntitlementServiceStubFactory.java │ │ │ │ │ ├── thrift │ │ │ │ │ ├── Authenticator.java │ │ │ │ │ └── ThriftEntitlementServiceClient.java │ │ │ │ │ └── wsxacml │ │ │ │ │ ├── WSXACMLEntitlementServiceClient.java │ │ │ │ │ └── X509CredentialImpl.java │ │ │ │ └── resources │ │ │ │ └── META-INF │ │ │ │ └── services │ │ │ │ ├── org.apache.synapse.config.xml.MediatorFactory │ │ │ │ └── org.apache.synapse.config.xml.MediatorSerializer │ │ ├── oauth-mediator │ │ │ └── org.wso2.micro.integrator.mediator.oauth │ │ │ │ ├── pom.xml │ │ │ │ └── src │ │ │ │ └── main │ │ │ │ ├── java │ │ │ │ └── org │ │ │ │ │ └── wso2 │ │ │ │ │ └── micro │ │ │ │ │ └── integrator │ │ │ │ │ └── mediator │ │ │ │ │ └── oauth │ │ │ │ │ ├── OAuth2TokenValidationServiceClient.java │ │ │ │ │ ├── OAuthConstants.java │ │ │ │ │ ├── OAuthMediator.java │ │ │ │ │ ├── OAuthServiceClient.java │ │ │ │ │ └── config │ │ │ │ │ └── xml │ │ │ │ │ ├── OAuthMediatorFactory.java │ │ │ │ │ └── OAuthMediatorSerializer.java │ │ │ │ └── resources │ │ │ │ └── META-INF │ │ │ │ └── services │ │ │ │ ├── org.apache.synapse.config.xml.MediatorFactory │ │ │ │ └── org.apache.synapse.config.xml.MediatorSerializer │ │ └── pom.xml │ ├── pom.xml │ ├── registry │ │ ├── org.wso2.micro.integrator.registry │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ ├── main │ │ │ │ └── java │ │ │ │ │ └── org │ │ │ │ │ └── wso2 │ │ │ │ │ └── micro │ │ │ │ │ └── integrator │ │ │ │ │ └── registry │ │ │ │ │ ├── MediationRegistryEntryImpl.java │ │ │ │ │ ├── MicroIntegratorRegistry.java │ │ │ │ │ ├── MicroIntegratorRegistryConstants.java │ │ │ │ │ ├── MicroIntegratorRegistryListener.java │ │ │ │ │ ├── RegistryHelper.java │ │ │ │ │ └── Resource.java │ │ │ │ └── test │ │ │ │ └── java │ │ │ │ └── org │ │ │ │ └── wso2 │ │ │ │ └── micro │ │ │ │ └── integrator │ │ │ │ └── registry │ │ │ │ └── TestMicroIntegratorRegistry.java │ │ └── pom.xml │ ├── security │ │ ├── org.wso2.micro.integrator.mediation.security │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── java │ │ │ │ └── org │ │ │ │ └── wso2 │ │ │ │ └── micro │ │ │ │ └── integrator │ │ │ │ └── mediation │ │ │ │ └── security │ │ │ │ └── vault │ │ │ │ ├── CipherInitializer.java │ │ │ │ ├── CipherToolException.java │ │ │ │ ├── CiphertextRepository.java │ │ │ │ ├── EnvironmentSecretRepository.java │ │ │ │ ├── FileSecretRepository.java │ │ │ │ ├── RegistrySecretRepository.java │ │ │ │ ├── SecretCipherHander.java │ │ │ │ ├── SecretSrcData.java │ │ │ │ ├── SecureVaultCacheContext.java │ │ │ │ ├── SecureVaultConstants.java │ │ │ │ ├── SecureVaultLookupHandler.java │ │ │ │ ├── SecureVaultLookupHandlerImpl.java │ │ │ │ ├── SecureVaultUtils.java │ │ │ │ ├── SynapseSecurityServiceComponent.java │ │ │ │ ├── VaultType.java │ │ │ │ ├── external │ │ │ │ ├── ExternalVaultConfigLoader.java │ │ │ │ ├── ExternalVaultException.java │ │ │ │ ├── ExternalVaultLookupHandler.java │ │ │ │ └── hashicorp │ │ │ │ │ ├── HashiCorpVaultConstant.java │ │ │ │ │ ├── HashiCorpVaultLookupFunction.java │ │ │ │ │ ├── HashiCorpVaultLookupHandlerImpl.java │ │ │ │ │ └── HashiCorpVaultLookupXPathFunctionProvider.java │ │ │ │ ├── util │ │ │ │ └── SecureVaultUtil.java │ │ │ │ └── xpath │ │ │ │ ├── SecureVaultLookupXPathFunctionProvider.java │ │ │ │ └── VaultLookupFunction.java │ │ └── pom.xml │ ├── startup │ │ ├── mediation-startup │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── java │ │ │ │ └── org │ │ │ │ └── wso2 │ │ │ │ └── micro │ │ │ │ └── integrator │ │ │ │ └── mediation │ │ │ │ └── startup │ │ │ │ ├── StartupAdminService.java │ │ │ │ ├── StartupUtils.java │ │ │ │ └── internal │ │ │ │ └── StartupAdminServiceComponent.java │ │ └── pom.xml │ ├── tasks │ │ ├── org.wso2.micro.integrator.mediation.ntask │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── java │ │ │ │ └── org │ │ │ │ └── wso2 │ │ │ │ └── micro │ │ │ │ └── integrator │ │ │ │ └── mediation │ │ │ │ └── ntask │ │ │ │ ├── Constants.java │ │ │ │ ├── NTaskAdapter.java │ │ │ │ ├── NTaskTaskManager.java │ │ │ │ ├── TaskBuilder.java │ │ │ │ ├── TaskServiceObserver.java │ │ │ │ └── internal │ │ │ │ └── NtaskService.java │ │ ├── org.wso2.micro.integrator.ntask.core │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── java │ │ │ │ └── org │ │ │ │ └── wso2 │ │ │ │ └── micro │ │ │ │ └── integrator │ │ │ │ └── ntask │ │ │ │ ├── common │ │ │ │ ├── TaskConstants.java │ │ │ │ └── TaskException.java │ │ │ │ ├── coordination │ │ │ │ ├── TaskCoordinationException.java │ │ │ │ └── task │ │ │ │ │ ├── ClusterCommunicator.java │ │ │ │ │ ├── CoordinateTaskRunTimeException.java │ │ │ │ │ ├── CoordinatedTask.java │ │ │ │ │ ├── TaskEventListener.java │ │ │ │ │ ├── resolver │ │ │ │ │ ├── ActivePassiveResolver.java │ │ │ │ │ ├── RoundRobinResolver.java │ │ │ │ │ ├── TaskLocationResolver.java │ │ │ │ │ └── TaskNodeResolver.java │ │ │ │ │ ├── scehduler │ │ │ │ │ └── CoordinatedTaskScheduler.java │ │ │ │ │ └── store │ │ │ │ │ ├── TaskStore.java │ │ │ │ │ ├── cleaner │ │ │ │ │ └── TaskStoreCleaner.java │ │ │ │ │ └── connector │ │ │ │ │ ├── RDMBSConnector.java │ │ │ │ │ └── TaskQueryHelper.java │ │ │ │ └── core │ │ │ │ ├── AbstractTask.java │ │ │ │ ├── Task.java │ │ │ │ ├── TaskInfo.java │ │ │ │ ├── TaskManager.java │ │ │ │ ├── TaskManagerFactory.java │ │ │ │ ├── TaskManagerId.java │ │ │ │ ├── TaskRepository.java │ │ │ │ ├── TaskStartupHandler.java │ │ │ │ ├── TaskUtils.java │ │ │ │ ├── impl │ │ │ │ ├── AbstractQuartzTaskManager.java │ │ │ │ ├── FileBasedTaskRepository.java │ │ │ │ ├── LocalTaskActionListener.java │ │ │ │ ├── NonConcurrentTaskQuartzJobAdapter.java │ │ │ │ ├── QuartzCachedThreadPool.java │ │ │ │ ├── TaskQuartzJobAdapter.java │ │ │ │ └── standalone │ │ │ │ │ ├── ScheduledTaskManager.java │ │ │ │ │ └── ScheduledTasksManagerFactory.java │ │ │ │ ├── internal │ │ │ │ ├── CoordinatedTaskScheduleManager.java │ │ │ │ ├── DataHolder.java │ │ │ │ └── TasksDSComponent.java │ │ │ │ └── service │ │ │ │ ├── TaskService.java │ │ │ │ └── impl │ │ │ │ └── TaskServiceImpl.java │ │ └── pom.xml │ └── transports │ │ ├── org.wso2.micro.integrator.websocket.transport │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ └── java │ │ │ └── org │ │ │ └── wso2 │ │ │ └── micro │ │ │ └── integrator │ │ │ └── websocket │ │ │ └── transport │ │ │ ├── SubprotocolBuilderUtil.java │ │ │ ├── WebSocketClientHandler.java │ │ │ ├── WebsocketConnectionFactory.java │ │ │ ├── WebsocketConstants.java │ │ │ ├── WebsocketTransportListener.java │ │ │ ├── WebsocketTransportSender.java │ │ │ ├── internal │ │ │ └── WebsocketTransportServiceComponent.java │ │ │ ├── service │ │ │ ├── SecureWebsocketTransportService.java │ │ │ ├── ServiceReferenceHolder.java │ │ │ └── WebsocketTransportService.java │ │ │ └── utils │ │ │ ├── LogUtil.java │ │ │ └── SSLUtil.java │ │ └── pom.xml ├── org.wso2.micro.integrator.bootstrap │ ├── pom.xml │ └── src │ │ ├── main │ │ └── java │ │ │ └── org │ │ │ └── wso2 │ │ │ └── micro │ │ │ └── integrator │ │ │ └── bootstrap │ │ │ ├── Bootstrap.java │ │ │ ├── CarbonSecurityManager.java │ │ │ ├── CheckinClientBootstrap.java │ │ │ ├── SystemRestarter.java │ │ │ └── logging │ │ │ └── filters │ │ │ └── MicroIntegratorLogFilter.java │ │ └── test │ │ └── java │ │ └── org │ │ └── wso2 │ │ └── micro │ │ └── integrator │ │ ├── bootstrap │ │ ├── BootstrapTest.java │ │ ├── CarbonSecurityManagerTest.java │ │ └── CheckinClientBootstrapTest.java │ │ └── server │ │ └── Main.java ├── org.wso2.micro.integrator.coordination │ ├── pom.xml │ └── src │ │ └── main │ │ └── java │ │ └── org │ │ └── wso2 │ │ └── micro │ │ └── integrator │ │ └── coordination │ │ ├── ClusterCoordinator.java │ │ ├── ClusterEventListener.java │ │ ├── CoordinationStrategy.java │ │ ├── MemberEventListener.java │ │ ├── RDBMSCommunicationBusContextImpl.java │ │ ├── RDBMSCoordinationStrategy.java │ │ ├── RDBMSMemberEventCallBack.java │ │ ├── RDBMSMemberEventListenerTask.java │ │ ├── RDBMSMemberEventProcessor.java │ │ ├── exception │ │ └── ClusterCoordinationException.java │ │ ├── node │ │ └── NodeDetail.java │ │ ├── query │ │ └── QueryManager.java │ │ └── util │ │ ├── CommunicationBusContext.java │ │ ├── MemberEvent.java │ │ ├── MemberEventType.java │ │ ├── RDBMSConstantUtils.java │ │ └── StringUtil.java ├── org.wso2.micro.integrator.core │ ├── pom.xml │ └── src │ │ ├── main │ │ └── java │ │ │ └── org │ │ │ └── wso2 │ │ │ └── micro │ │ │ ├── application │ │ │ └── deployer │ │ │ │ ├── AppDeployerConstants.java │ │ │ │ ├── AppDeployerUtils.java │ │ │ │ ├── Axis2DeployerProvider.java │ │ │ │ ├── CarbonApplication.java │ │ │ │ ├── Feature.java │ │ │ │ ├── config │ │ │ │ ├── ApplicationConfiguration.java │ │ │ │ ├── Artifact.java │ │ │ │ ├── CappFile.java │ │ │ │ └── RegistryConfig.java │ │ │ │ ├── handler │ │ │ │ ├── AppDeploymentHandler.java │ │ │ │ └── DefaultAppDeployer.java │ │ │ │ └── service │ │ │ │ ├── ApplicationManagerService.java │ │ │ │ └── CappDeploymentService.java │ │ │ ├── base │ │ │ ├── CarbonContextHolderBase.java │ │ │ └── DiscoveryService.java │ │ │ ├── context │ │ │ └── CarbonContext.java │ │ │ ├── core │ │ │ ├── AbstractAdmin.java │ │ │ ├── ArtifactUnloader.java │ │ │ ├── CarbonAxisConfigurator.java │ │ │ ├── CarbonConfigurationContextFactory.java │ │ │ ├── CarbonThreadCleanup.java │ │ │ ├── CarbonThreadFactory.java │ │ │ ├── Constants.java │ │ │ ├── MbeanManagementFactory.java │ │ │ ├── ServerInitializer.java │ │ │ ├── ServerManagement.java │ │ │ ├── ServerRestartHandler.java │ │ │ ├── ServerShutdownHandler.java │ │ │ ├── ServerStartupHandler.java │ │ │ ├── ServerStartupObserver.java │ │ │ ├── ServerStatus.java │ │ │ ├── WaitBeforeShutdownObserver.java │ │ │ ├── context │ │ │ │ ├── CarbonContextDataHolder.java │ │ │ │ └── UnloadTenantTask.java │ │ │ ├── encryption │ │ │ │ ├── AlgorithmConstants.java │ │ │ │ ├── AlgorithmParameterResolver.java │ │ │ │ ├── KeyStoreBasedExternalCryptoProvider.java │ │ │ │ └── SymmetricEncryption.java │ │ │ ├── init │ │ │ │ └── PreAxis2ConfigItemListener.java │ │ │ ├── multitenancy │ │ │ │ └── GenericArtifactUnloader.java │ │ │ ├── queueing │ │ │ │ ├── CarbonQueue.java │ │ │ │ ├── CarbonQueueManager.java │ │ │ │ ├── MultitenantCarbonQueueManager.java │ │ │ │ ├── QueueEmptyException.java │ │ │ │ └── QueuingException.java │ │ │ ├── services │ │ │ │ ├── echo │ │ │ │ │ ├── Echo.java │ │ │ │ │ ├── META-INF │ │ │ │ │ │ └── services.xml │ │ │ │ │ └── SimpleBean.java │ │ │ │ ├── listners │ │ │ │ │ └── Axis2ConfigServiceListener.java │ │ │ │ ├── processors │ │ │ │ │ └── ConfigurationServiceProcessor.java │ │ │ │ └── version │ │ │ │ │ ├── META-INF │ │ │ │ │ ├── services.xml │ │ │ │ │ └── version.wsdl │ │ │ │ │ └── Version.java │ │ │ ├── transports │ │ │ │ ├── AbstractTransportService.java │ │ │ │ ├── CarbonHttpRequest.java │ │ │ │ ├── CarbonHttpResponse.java │ │ │ │ ├── HttpGetRequestProcessor.java │ │ │ │ ├── TransportBuilderUtils.java │ │ │ │ ├── TransportService.java │ │ │ │ ├── metering │ │ │ │ │ ├── MeteredServletRequest.java │ │ │ │ │ ├── MeteredServletResponse.java │ │ │ │ │ ├── MeteringInputStream.java │ │ │ │ │ ├── MeteringOutputStream.java │ │ │ │ │ └── RequestDataPersister.java │ │ │ │ ├── smtp │ │ │ │ │ └── SMTPFaultHandler.java │ │ │ │ └── util │ │ │ │ │ ├── AbstractWsdlProcessor.java │ │ │ │ │ ├── InfoProcessor.java │ │ │ │ │ ├── MockTryItProcessor.java │ │ │ │ │ ├── PolicyProcessor.java │ │ │ │ │ ├── RequestProcessorUtil.java │ │ │ │ │ ├── ServiceHTMLProcessor.java │ │ │ │ │ ├── TransportDetails.java │ │ │ │ │ ├── TransportParameter.java │ │ │ │ │ ├── TransportSummary.java │ │ │ │ │ ├── Wsdl11Processor.java │ │ │ │ │ ├── Wsdl20Processor.java │ │ │ │ │ ├── XsdProcessor.java │ │ │ │ │ └── XsdUtil.java │ │ │ └── util │ │ │ │ ├── AbstractAxis2ConfigurationContextObserver.java │ │ │ │ ├── AuditLogger.java │ │ │ │ ├── Axis2ConfigItemHolder.java │ │ │ │ ├── Axis2ConfigurationContextObserver.java │ │ │ │ ├── CarbonException.java │ │ │ │ ├── CarbonUtils.java │ │ │ │ ├── CipherHolder.java │ │ │ │ ├── ConfigurationContextService.java │ │ │ │ ├── CoreServerInitializerHolder.java │ │ │ │ ├── CryptoException.java │ │ │ │ ├── CryptoUtil.java │ │ │ │ ├── DatabaseCreator.java │ │ │ │ ├── FileManipulator.java │ │ │ │ ├── KeyStoreManager.java │ │ │ │ ├── NetworkUtils.java │ │ │ │ ├── Pageable.java │ │ │ │ ├── ParameterUtil.java │ │ │ │ ├── ServerException.java │ │ │ │ ├── StringUtils.java │ │ │ │ ├── SystemFilter.java │ │ │ │ ├── Utils.java │ │ │ │ └── xml │ │ │ │ └── XMLPrettyPrinter.java │ │ │ ├── integrator │ │ │ ├── core │ │ │ │ ├── Constants.java │ │ │ │ ├── UserStoreTemporaryService.java │ │ │ │ ├── handlers │ │ │ │ │ └── IntegratorStatefulHandler.java │ │ │ │ ├── internal │ │ │ │ │ ├── Activator.java │ │ │ │ │ ├── CarbonCoreDataHolder.java │ │ │ │ │ ├── CoreServerInitializer.java │ │ │ │ │ ├── MicroIntegratorBaseConstants.java │ │ │ │ │ └── MicroIntegratorConfigurationException.java │ │ │ │ ├── json │ │ │ │ │ ├── JsonStreamBuilder.java │ │ │ │ │ ├── JsonStreamFormatter.java │ │ │ │ │ └── utils │ │ │ │ │ │ └── GSONUtils.java │ │ │ │ ├── resolver │ │ │ │ │ └── CarbonEntityResolver.java │ │ │ │ ├── services │ │ │ │ │ ├── Axis2ConfigurationContextService.java │ │ │ │ │ └── CarbonServerConfigurationService.java │ │ │ │ └── util │ │ │ │ │ └── MicroIntegratorBaseUtils.java │ │ │ └── transaction │ │ │ │ └── manager │ │ │ │ └── TransactionManagerComponent.java │ │ │ ├── service │ │ │ └── mgt │ │ │ │ ├── FaultyService.java │ │ │ │ ├── ParameterMetaData.java │ │ │ │ ├── PolicyMetaData.java │ │ │ │ ├── PolicyUtil.java │ │ │ │ ├── ServiceAdmin.java │ │ │ │ ├── ServiceAdminMBean.java │ │ │ │ ├── ServiceConstants.java │ │ │ │ ├── ServiceDownloadData.java │ │ │ │ ├── ServiceGroupMetaData.java │ │ │ │ ├── ServiceMetaData.java │ │ │ │ └── util │ │ │ │ └── Utils.java │ │ │ └── tomcat │ │ │ └── jndi │ │ │ ├── CarbonJavaURLContextFactory.java │ │ │ └── CarbonSelectorContext.java │ │ └── test │ │ └── java │ │ └── deployer │ │ └── AppDeployerUtilsTest.java ├── org.wso2.micro.integrator.extensions │ ├── org.wso2.micro.integrator.management.apis │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ ├── java │ │ │ │ └── org │ │ │ │ │ └── wso2 │ │ │ │ │ └── micro │ │ │ │ │ └── integrator │ │ │ │ │ └── management │ │ │ │ │ └── apis │ │ │ │ │ ├── ApiResource.java │ │ │ │ │ ├── ApiResourceAdapter.java │ │ │ │ │ ├── CarbonAppResource.java │ │ │ │ │ ├── ConfigNotFoundException.java │ │ │ │ │ ├── ConfigsResource.java │ │ │ │ │ ├── ConnectorResource.java │ │ │ │ │ ├── Constants.java │ │ │ │ │ ├── DataServiceResource.java │ │ │ │ │ ├── DataSourceResource.java │ │ │ │ │ ├── EndpointResource.java │ │ │ │ │ ├── ExternalVaultResource.java │ │ │ │ │ ├── InboundEndpointResource.java │ │ │ │ │ ├── LocalEntryResource.java │ │ │ │ │ ├── LogFileInfo.java │ │ │ │ │ ├── LogFilesResource.java │ │ │ │ │ ├── LoggingResource.java │ │ │ │ │ ├── LoginResource.java │ │ │ │ │ ├── LogoutResource.java │ │ │ │ │ ├── ManagementApiParser.java │ │ │ │ │ ├── ManagementApiUndefinedException.java │ │ │ │ │ ├── ManagementInternalApi.java │ │ │ │ │ ├── MessageProcessorResource.java │ │ │ │ │ ├── MessageStoreResource.java │ │ │ │ │ ├── MetaDataResource.java │ │ │ │ │ ├── MiApiResource.java │ │ │ │ │ ├── ProxyServiceResource.java │ │ │ │ │ ├── RegistryContentResource.java │ │ │ │ │ ├── RegistryMetadataResource.java │ │ │ │ │ ├── RegistryPropertiesResource.java │ │ │ │ │ ├── RegistryResource.java │ │ │ │ │ ├── RequestCountResource.java │ │ │ │ │ ├── ResourceNotFoundException.java │ │ │ │ │ ├── RoleResource.java │ │ │ │ │ ├── RolesResource.java │ │ │ │ │ ├── RootResource.java │ │ │ │ │ ├── SequenceResource.java │ │ │ │ │ ├── TaskResource.java │ │ │ │ │ ├── TemplateResource.java │ │ │ │ │ ├── UserResource.java │ │ │ │ │ ├── UserStoreUndefinedException.java │ │ │ │ │ ├── UsersResource.java │ │ │ │ │ ├── Utils.java │ │ │ │ │ ├── models │ │ │ │ │ └── dataServices │ │ │ │ │ │ ├── DataServiceInfo.java │ │ │ │ │ │ ├── DataServiceSummary.java │ │ │ │ │ │ ├── DataServicesList.java │ │ │ │ │ │ ├── DataSourceInfo.java │ │ │ │ │ │ ├── OperationInfo.java │ │ │ │ │ │ ├── QuerySummary.java │ │ │ │ │ │ └── ResourceInfo.java │ │ │ │ │ └── security │ │ │ │ │ └── handler │ │ │ │ │ ├── AuthConstants.java │ │ │ │ │ ├── AuthenticationHandlerAdapter.java │ │ │ │ │ ├── AuthorizationHandler.java │ │ │ │ │ ├── AuthorizationHandlerAdapter.java │ │ │ │ │ ├── BasicSecurityHandler.java │ │ │ │ │ ├── JWTConfig.java │ │ │ │ │ ├── JWTConfigDTO.java │ │ │ │ │ ├── JWTInMemoryTokenStore.java │ │ │ │ │ ├── JWTTokenCleanupTask.java │ │ │ │ │ ├── JWTTokenGenerator.java │ │ │ │ │ ├── JWTTokenInfoDTO.java │ │ │ │ │ ├── JWTTokenSecurityHandler.java │ │ │ │ │ ├── JWTTokenStore.java │ │ │ │ │ ├── LDAPBasedSecurityHandler.java │ │ │ │ │ ├── SecurityHandlerAdapter.java │ │ │ │ │ └── SecurityUtils.java │ │ │ └── resources │ │ │ │ └── management-api.yaml │ │ │ └── test │ │ │ ├── java │ │ │ └── org │ │ │ │ └── wso2 │ │ │ │ └── micro │ │ │ │ └── integrator │ │ │ │ └── management │ │ │ │ └── apis │ │ │ │ ├── ManagementApiParserTest.java │ │ │ │ └── security │ │ │ │ └── handler │ │ │ │ ├── SecurityHandlerAdapterTest.java │ │ │ │ ├── TestMessageContext.java │ │ │ │ └── TestSecurityHandler.java │ │ │ └── resources │ │ │ └── org │ │ │ └── wso2 │ │ │ └── micro │ │ │ └── integrator │ │ │ └── management │ │ │ └── apis │ │ │ └── internal-apis.xml │ ├── org.wso2.micro.integrator.probes │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ └── java │ │ │ └── org │ │ │ └── wso2 │ │ │ └── micro │ │ │ └── integrator │ │ │ └── probes │ │ │ ├── LivenessProbe.java │ │ │ ├── LivenessResource.java │ │ │ ├── ReadinessProbe.java │ │ │ └── ReadinessResource.java │ └── pom.xml ├── org.wso2.micro.integrator.initializer │ ├── pom.xml │ └── src │ │ ├── main │ │ ├── java │ │ │ └── org │ │ │ │ └── wso2 │ │ │ │ └── micro │ │ │ │ └── integrator │ │ │ │ └── initializer │ │ │ │ ├── AbstractServiceBusAdmin.java │ │ │ │ ├── CarbonSynapseController.java │ │ │ │ ├── MicroIntegratorSequenceController.java │ │ │ │ ├── ServiceBusConstants.java │ │ │ │ ├── ServiceBusInitializer.java │ │ │ │ ├── ServiceBusUtils.java │ │ │ │ ├── StartupFinalizer.java │ │ │ │ ├── configurations │ │ │ │ ├── ConfigurationInformation.java │ │ │ │ └── ConfigurationInitilizerException.java │ │ │ │ ├── dashboard │ │ │ │ ├── Constants.java │ │ │ │ └── HeartBeatComponent.java │ │ │ │ ├── deployment │ │ │ │ ├── AppDeployerServiceComponent.java │ │ │ │ ├── DataHolder.java │ │ │ │ ├── DeploymentConstants.java │ │ │ │ ├── DuplicateCAppDescriptorException.java │ │ │ │ ├── application │ │ │ │ │ └── deployer │ │ │ │ │ │ └── CappDeployer.java │ │ │ │ ├── artifact │ │ │ │ │ └── deployer │ │ │ │ │ │ └── ArtifactDeploymentManager.java │ │ │ │ ├── config │ │ │ │ │ └── deployer │ │ │ │ │ │ └── ConfigDeployer.java │ │ │ │ ├── synapse │ │ │ │ │ └── deployer │ │ │ │ │ │ ├── FileRegistryResourceDeployer.java │ │ │ │ │ │ ├── SynapseAppDeployer.java │ │ │ │ │ │ └── SynapseAppDeployerConstants.java │ │ │ │ └── user │ │ │ │ │ └── store │ │ │ │ │ └── deployer │ │ │ │ │ └── UserStoreDeployer.java │ │ │ │ ├── handler │ │ │ │ ├── DataHolder.java │ │ │ │ ├── MITenantInfoConfigurator.java │ │ │ │ ├── MITenantInfoInitiator.java │ │ │ │ ├── ProxyLogHandler.java │ │ │ │ ├── SynapseExternalPropertyConfigurator.java │ │ │ │ └── transaction │ │ │ │ │ ├── TransactionConstants.java │ │ │ │ │ ├── TransactionCountHandler.java │ │ │ │ │ ├── TransactionCountHandlerComponent.java │ │ │ │ │ ├── exception │ │ │ │ │ ├── TransactionCounterException.java │ │ │ │ │ └── TransactionCounterInitializationException.java │ │ │ │ │ ├── security │ │ │ │ │ └── CryptoUtil.java │ │ │ │ │ └── store │ │ │ │ │ ├── TransactionStore.java │ │ │ │ │ └── connector │ │ │ │ │ ├── RDBMSConnector.java │ │ │ │ │ └── TransactionQueryHelper.java │ │ │ │ ├── persistence │ │ │ │ ├── APIStore.java │ │ │ │ ├── AbstractStore.java │ │ │ │ ├── EndpointStore.java │ │ │ │ ├── EndpointTemplateStore.java │ │ │ │ ├── EventSourceStore.java │ │ │ │ ├── ExecutorStore.java │ │ │ │ ├── ImportStore.java │ │ │ │ ├── InboundStore.java │ │ │ │ ├── LocalEntryStore.java │ │ │ │ ├── MediationPersistenceManager.java │ │ │ │ ├── MessageProcessorStore.java │ │ │ │ ├── MessageStoreStore.java │ │ │ │ ├── ProxyServiceStore.java │ │ │ │ ├── SequenceStore.java │ │ │ │ ├── ServiceBusPersistenceException.java │ │ │ │ ├── StartupStore.java │ │ │ │ ├── SynapseRegistryStore.java │ │ │ │ └── TemplateStore.java │ │ │ │ ├── serviceCatalog │ │ │ │ └── ServiceCatalogDeployer.java │ │ │ │ ├── services │ │ │ │ ├── SynapseConfigurationService.java │ │ │ │ ├── SynapseConfigurationServiceImpl.java │ │ │ │ ├── SynapseEnvironmentService.java │ │ │ │ ├── SynapseEnvironmentServiceImpl.java │ │ │ │ ├── SynapseRegistrationsService.java │ │ │ │ └── SynapseRegistrationsServiceImpl.java │ │ │ │ └── utils │ │ │ │ ├── CAppDescriptor.java │ │ │ │ ├── ConfigurationHolder.java │ │ │ │ ├── Constants.java │ │ │ │ ├── DeployerUtil.java │ │ │ │ ├── LocalEntryUtil.java │ │ │ │ ├── SecureDocumentBuilderFactory.java │ │ │ │ ├── ServiceCatalogUtils.java │ │ │ │ ├── ServiceMetaDataHolder.java │ │ │ │ └── SynapseArtifactInitUtils.java │ │ └── resources │ │ │ └── META-INF │ │ │ └── component.xml │ │ └── test │ │ ├── java │ │ └── org │ │ │ └── wso2 │ │ │ ├── carbon │ │ │ └── mediation │ │ │ │ └── initializer │ │ │ │ ├── AdvancedPersistenceTest.java │ │ │ │ ├── EndpointPersistenceTest.java │ │ │ │ ├── MediationPersistenceTest.java │ │ │ │ ├── ProxyServicePersistenceTest.java │ │ │ │ ├── SequencePersistenceTest.java │ │ │ │ └── deployment │ │ │ │ └── application │ │ │ │ └── deployer │ │ │ │ └── CappDeployerTest.java │ │ │ └── micro │ │ │ └── integrator │ │ │ └── initializer │ │ │ ├── synapse │ │ │ └── deployer │ │ │ │ └── FileRegistryResourceDeployerTest.java │ │ │ └── utils │ │ │ └── DeployerUtilTest.java │ │ └── resources │ │ ├── epr1.xml │ │ ├── epr2.xml │ │ ├── proxy1.xml │ │ ├── proxy2.xml │ │ ├── seq1.xml │ │ └── seq2.xml ├── org.wso2.micro.integrator.log4j2.plugins │ ├── pom.xml │ └── src │ │ └── main │ │ └── java │ │ └── org │ │ └── wso2 │ │ └── micro │ │ └── integrator │ │ └── log4j │ │ └── plugins │ │ └── LogMaskConverter.java ├── org.wso2.micro.integrator.logging.updater │ ├── pom.xml │ └── src │ │ └── main │ │ └── java │ │ └── org │ │ └── wso2 │ │ └── micro │ │ └── integrator │ │ └── logging │ │ └── updater │ │ ├── LogConfigUpdater.java │ │ ├── LoggingUpdaterConstants.java │ │ ├── LoggingUpdaterException.java │ │ ├── LoggingUpdaterUtil.java │ │ └── internal │ │ ├── DataHolder.java │ │ └── LoggingUpdaterServiceComponent.java ├── org.wso2.micro.integrator.ndatasource.capp.deployer │ ├── pom.xml │ └── src │ │ └── main │ │ └── java │ │ └── org │ │ └── wso2 │ │ └── micro │ │ └── integrator │ │ └── ndatasource │ │ └── capp │ │ └── deployer │ │ ├── DataSourceCappDeployer.java │ │ └── internal │ │ └── DataSourceCappDeployerServiceComponent.java ├── org.wso2.micro.integrator.ndatasource.common │ ├── pom.xml │ └── src │ │ └── main │ │ └── java │ │ └── org │ │ └── wso2 │ │ └── micro │ │ └── integrator │ │ └── ndatasource │ │ └── common │ │ ├── DataSourceConstants.java │ │ ├── DataSourceException.java │ │ └── spi │ │ └── DataSourceReader.java ├── org.wso2.micro.integrator.ndatasource.core │ ├── pom.xml │ └── src │ │ └── main │ │ ├── java │ │ └── org │ │ │ └── wso2 │ │ │ └── micro │ │ │ └── integrator │ │ │ └── ndatasource │ │ │ └── core │ │ │ ├── CarbonDataSource.java │ │ │ ├── DataSourceAxis2ConfigurationContextObserver.java │ │ │ ├── DataSourceInfo.java │ │ │ ├── DataSourceManager.java │ │ │ ├── DataSourceMetaInfo.java │ │ │ ├── DataSourceRepository.java │ │ │ ├── DataSourceService.java │ │ │ ├── DataSourceStatMessage.java │ │ │ ├── DataSourceStatus.java │ │ │ ├── JNDIConfig.java │ │ │ ├── SystemDataSourcesConfiguration.java │ │ │ ├── internal │ │ │ └── DataSourceServiceComponent.java │ │ │ ├── services │ │ │ ├── NDataSourceAdminService.java │ │ │ ├── WSDataSourceInfo.java │ │ │ └── WSDataSourceMetaInfo.java │ │ │ └── utils │ │ │ └── DataSourceUtils.java │ │ └── resources │ │ └── META-INF │ │ ├── component.xml │ │ └── services.xml ├── org.wso2.micro.integrator.ndatasource.rdbms │ ├── pom.xml │ └── src │ │ ├── main │ │ ├── java │ │ │ └── org │ │ │ │ └── wso2 │ │ │ │ └── micro │ │ │ │ └── integrator │ │ │ │ └── ndatasource │ │ │ │ └── rdbms │ │ │ │ ├── ConnectionRollbackOnReturnInterceptor.java │ │ │ │ ├── CorrelationLogInterceptor.java │ │ │ │ ├── RDBMSConfiguration.java │ │ │ │ ├── RDBMSDataSource.java │ │ │ │ ├── RDBMSDataSourceConstants.java │ │ │ │ ├── RDBMSDataSourceReader.java │ │ │ │ └── utils │ │ │ │ └── RDBMSDataSourceUtils.java │ │ └── resources │ │ │ └── META-INF │ │ │ └── services │ │ │ └── org.wso2.carbon.ndatasource.core.spi.DataSourceReader │ │ └── test │ │ ├── java │ │ └── org │ │ │ └── wso2 │ │ │ └── carbon │ │ │ └── ndatasource │ │ │ └── rdbms │ │ │ └── DBPropertiesTestCase.java │ │ └── resources │ │ └── master-datasources.xml ├── org.wso2.micro.integrator.security │ ├── pom.xml │ └── src │ │ └── main │ │ ├── java │ │ └── org │ │ │ └── wso2 │ │ │ └── micro │ │ │ └── integrator │ │ │ └── security │ │ │ ├── MicroIntegratorSecurityUtils.java │ │ │ ├── SecurityConfigParams.java │ │ │ ├── SecurityConstants.java │ │ │ ├── SecurityScenario.java │ │ │ ├── SecurityScenarioDatabase.java │ │ │ ├── UnsupportedSecretTypeException.java │ │ │ ├── callback │ │ │ ├── AbstractPasswordCallback.java │ │ │ ├── DefaultPasswordCallback.java │ │ │ └── UserCredentialRetriever.java │ │ │ ├── config │ │ │ └── RealmConfigXMLProcessor.java │ │ │ ├── deployment │ │ │ └── SecurityDeploymentInterceptor.java │ │ │ ├── extensions │ │ │ └── SecurityTokenStore.java │ │ │ ├── handler │ │ │ ├── BasicAuthConstants.java │ │ │ ├── CORSRequestHandler.java │ │ │ └── RESTBasicAuthHandler.java │ │ │ ├── internal │ │ │ ├── DataHolder.java │ │ │ └── ServiceComponent.java │ │ │ ├── user │ │ │ ├── api │ │ │ │ ├── AuthorizationManager.java │ │ │ │ ├── Claim.java │ │ │ │ ├── ClaimManager.java │ │ │ │ ├── ClaimMapping.java │ │ │ │ ├── Permission.java │ │ │ │ ├── ProfileConfiguration.java │ │ │ │ ├── ProfileConfigurationManager.java │ │ │ │ ├── Properties.java │ │ │ │ ├── Property.java │ │ │ │ ├── RealmConfiguration.java │ │ │ │ ├── Tenant.java │ │ │ │ ├── TenantManager.java │ │ │ │ ├── TenantMgtConfiguration.java │ │ │ │ ├── UserRealm.java │ │ │ │ ├── UserRealmService.java │ │ │ │ ├── UserStoreException.java │ │ │ │ └── UserStoreManager.java │ │ │ └── core │ │ │ │ ├── AuthorizationManager.java │ │ │ │ ├── PaginatedUserStoreManager.java │ │ │ │ ├── Permission.java │ │ │ │ ├── UserCoreConstants.java │ │ │ │ ├── UserRealm.java │ │ │ │ ├── UserStoreConfigConstants.java │ │ │ │ ├── UserStoreException.java │ │ │ │ ├── UserStoreManager.java │ │ │ │ ├── authorization │ │ │ │ ├── AuthorizationCache.java │ │ │ │ ├── AuthorizationCacheException.java │ │ │ │ ├── AuthorizationKey.java │ │ │ │ ├── AuthorizeCacheEntry.java │ │ │ │ ├── DBConstants.java │ │ │ │ ├── JDBCAuthorizationManager.java │ │ │ │ ├── PermissionTree.java │ │ │ │ ├── PermissionTreeCacheEntry.java │ │ │ │ ├── PermissionTreeCacheKey.java │ │ │ │ ├── PermissionTreeUtil.java │ │ │ │ ├── SearchResult.java │ │ │ │ └── TreeNode.java │ │ │ │ ├── claim │ │ │ │ ├── Claim.java │ │ │ │ ├── ClaimInvalidationCache.java │ │ │ │ ├── ClaimKey.java │ │ │ │ ├── ClaimManager.java │ │ │ │ ├── ClaimManagerFactory.java │ │ │ │ ├── ClaimMapping.java │ │ │ │ ├── DefaultClaimManager.java │ │ │ │ ├── builder │ │ │ │ │ ├── ClaimBuilder.java │ │ │ │ │ └── ClaimBuilderException.java │ │ │ │ ├── dao │ │ │ │ │ ├── ClaimDAO.java │ │ │ │ │ └── ClaimDBConstants.java │ │ │ │ └── inmemory │ │ │ │ │ ├── ClaimConfig.java │ │ │ │ │ ├── FileBasedClaimBuilder.java │ │ │ │ │ └── InMemoryClaimManager.java │ │ │ │ ├── common │ │ │ │ ├── AbstractAuthorizationManagerListener.java │ │ │ │ ├── AbstractClaimManagerListener.java │ │ │ │ ├── AbstractUserManagementErrorListener.java │ │ │ │ ├── AbstractUserOperationEventListener.java │ │ │ │ ├── AbstractUserStoreManager.java │ │ │ │ ├── AbstractUserStoreManagerListener.java │ │ │ │ ├── DefaultRealm.java │ │ │ │ ├── DefaultRealmService.java │ │ │ │ ├── GhostResource.java │ │ │ │ ├── IterativeUserStoreManager.java │ │ │ │ ├── PaginatedSearchResult.java │ │ │ │ ├── RealmCache.java │ │ │ │ ├── RealmCacheEntry.java │ │ │ │ ├── RealmCacheKey.java │ │ │ │ ├── RoleContext.java │ │ │ │ ├── UserRolesCache.java │ │ │ │ ├── UserRolesCacheEntry.java │ │ │ │ ├── UserRolesCacheKey.java │ │ │ │ ├── UserStore.java │ │ │ │ └── UserStoreDeploymentManager.java │ │ │ │ ├── config │ │ │ │ ├── RealmConfigXMLProcessor.java │ │ │ │ ├── RealmConfiguration.java │ │ │ │ ├── TenantMgtXMLProcessor.java │ │ │ │ ├── UserStoreConfigXMLProcessor.java │ │ │ │ ├── UserStorePreferenceOrderSupplier.java │ │ │ │ ├── XMLProcessorUtils.java │ │ │ │ └── multitenancy │ │ │ │ │ ├── FileSystemRealmConfigBuilder.java │ │ │ │ │ ├── LDAPRealmConfigBuilder.java │ │ │ │ │ ├── MultiTenantRealmConfigBuilder.java │ │ │ │ │ └── SimpleRealmConfigBuilder.java │ │ │ │ ├── constants │ │ │ │ ├── UserCoreClaimConstants.java │ │ │ │ ├── UserCoreDBConstants.java │ │ │ │ └── UserCoreErrorConstants.java │ │ │ │ ├── dto │ │ │ │ ├── CorrelationLogDTO.java │ │ │ │ ├── RoleDTO.java │ │ │ │ └── UserInfoDTO.java │ │ │ │ ├── file │ │ │ │ └── FileBasedUserStoreManager.java │ │ │ │ ├── hybrid │ │ │ │ ├── FileBasedHybridRoleManager.java │ │ │ │ ├── HybridJDBCConstants.java │ │ │ │ ├── HybridRoleManager.java │ │ │ │ └── JdbcHybridRoleManager.java │ │ │ │ ├── internal │ │ │ │ ├── Activator.java │ │ │ │ ├── BundleCheckActivator.java │ │ │ │ ├── UMListenerServiceComponent.java │ │ │ │ └── UserStoreMgtDSComponent.java │ │ │ │ ├── jdbc │ │ │ │ ├── JDBCRealmConstants.java │ │ │ │ ├── JDBCRoleContext.java │ │ │ │ ├── JDBCUserStoreConstants.java │ │ │ │ ├── JDBCUserStoreManager.java │ │ │ │ └── caseinsensitive │ │ │ │ │ └── JDBCCaseInsensitiveConstants.java │ │ │ │ ├── ldap │ │ │ │ ├── ActiveDirectoryUserStoreConstants.java │ │ │ │ ├── ActiveDirectoryUserStoreManager.java │ │ │ │ ├── LDAPConnectionContext.java │ │ │ │ ├── LDAPConstants.java │ │ │ │ ├── LDAPFilterQueryBuilder.java │ │ │ │ ├── LDAPRoleContext.java │ │ │ │ ├── LDAPSearchSpecification.java │ │ │ │ ├── LdapContextWrapper.java │ │ │ │ ├── ReadOnlyLDAPUserStoreConstants.java │ │ │ │ ├── ReadOnlyLDAPUserStoreManager.java │ │ │ │ ├── ReadWriteLDAPUserStoreConstants.java │ │ │ │ ├── ReadWriteLDAPUserStoreManager.java │ │ │ │ ├── SRVRecord.java │ │ │ │ └── StartTlsResponseWrapper.java │ │ │ │ ├── listener │ │ │ │ ├── AuthorizationManagerListener.java │ │ │ │ ├── ClaimManagerListener.java │ │ │ │ ├── SecretHandleableListener.java │ │ │ │ ├── UserManagementErrorEventListener.java │ │ │ │ ├── UserOperationEventListener.java │ │ │ │ ├── UserStoreManagerConfigurationListener.java │ │ │ │ └── UserStoreManagerListener.java │ │ │ │ ├── model │ │ │ │ ├── Condition.java │ │ │ │ ├── ExpressionAttribute.java │ │ │ │ ├── ExpressionCondition.java │ │ │ │ ├── ExpressionOperation.java │ │ │ │ ├── OperationalCondition.java │ │ │ │ ├── OperationalOperation.java │ │ │ │ ├── SqlBuilder.java │ │ │ │ ├── SystemPermissions.java │ │ │ │ ├── UserClaimSearchEntry.java │ │ │ │ ├── UserMgtContext.java │ │ │ │ └── UserPropertySearchEntry.java │ │ │ │ ├── multiplecredentials │ │ │ │ ├── Credential.java │ │ │ │ ├── CredentialDoesNotExistException.java │ │ │ │ ├── CredentialProperty.java │ │ │ │ ├── CredentialType.java │ │ │ │ ├── CredentialTypeNotSupportedException.java │ │ │ │ ├── CredentialsAlreadyExistsException.java │ │ │ │ ├── MultipleCredentialUserStoreManager.java │ │ │ │ ├── MultipleCredentialsException.java │ │ │ │ ├── UserAlreadyExistsException.java │ │ │ │ └── UserDoesNotExistException.java │ │ │ │ ├── profile │ │ │ │ ├── DefaultProfileConfigurationManager.java │ │ │ │ ├── ProfileConfiguration.java │ │ │ │ ├── ProfileConfigurationManager.java │ │ │ │ ├── builder │ │ │ │ │ ├── ProfileBuilderException.java │ │ │ │ │ └── ProfileConfigurationBuilder.java │ │ │ │ └── dao │ │ │ │ │ ├── ProfileConfigDAO.java │ │ │ │ │ └── ProfileDBConstant.java │ │ │ │ ├── service │ │ │ │ └── RealmService.java │ │ │ │ ├── system │ │ │ │ ├── SystemJDBCConstants.java │ │ │ │ └── SystemUserRoleManager.java │ │ │ │ ├── tenant │ │ │ │ ├── LDAPTenantManager.java │ │ │ │ ├── Tenant.java │ │ │ │ ├── TenantCacheEntry.java │ │ │ │ ├── TenantConstants.java │ │ │ │ ├── TenantDomainEntry.java │ │ │ │ ├── TenantDomainKey.java │ │ │ │ ├── TenantIdEntry.java │ │ │ │ ├── TenantIdKey.java │ │ │ │ └── TenantManager.java │ │ │ │ ├── tracker │ │ │ │ └── UserStoreManagerRegistry.java │ │ │ │ └── util │ │ │ │ ├── DatabaseUtil.java │ │ │ │ ├── JDBCRealmUtil.java │ │ │ │ ├── JNDIUtil.java │ │ │ │ ├── LDAPUtil.java │ │ │ │ ├── UnitOfWork.java │ │ │ │ ├── UnitOfWorkException.java │ │ │ │ ├── UnitOfWorkTransactionContext.java │ │ │ │ └── UserCoreUtil.java │ │ │ ├── util │ │ │ ├── RahasUtil.java │ │ │ ├── Secret.java │ │ │ ├── SecurityConfigParamBuilder.java │ │ │ └── ServerCrypto.java │ │ │ └── vault │ │ │ ├── Constants.java │ │ │ ├── SecureVaultException.java │ │ │ ├── VaultTool.java │ │ │ └── utils │ │ │ ├── KeyStoreUtil.java │ │ │ └── Utils.java │ │ └── resources │ │ └── claim-config.xml ├── org.wso2.micro.integrator.server │ ├── pom.xml │ └── src │ │ └── main │ │ ├── java │ │ └── org │ │ │ └── wso2 │ │ │ └── micro │ │ │ └── integrator │ │ │ └── server │ │ │ ├── ChildFirstURLClassLoader.java │ │ │ ├── Extensions.java │ │ │ ├── LauncherConstants.java │ │ │ ├── Main.java │ │ │ ├── MicroIntegratorLaunchExtension.java │ │ │ ├── extensions │ │ │ ├── DefaultBundleCreator.java │ │ │ ├── DropinsBundleDeployer.java │ │ │ ├── EclipseIniRewriter.java │ │ │ ├── FragmentBundleCreator.java │ │ │ ├── LibraryFragmentBundleCreator.java │ │ │ ├── PatchInstaller.java │ │ │ └── SystemBundleExtensionCreator.java │ │ │ └── util │ │ │ ├── BundleInfoLine.java │ │ │ ├── FileUtils.java │ │ │ ├── JarInfo.java │ │ │ ├── PatchInfo.java │ │ │ ├── PatchUtils.java │ │ │ └── Utils.java │ │ └── resources │ │ └── log4j2.properties ├── org.wso2.micro.integrator.utils │ ├── pom.xml │ └── src │ │ └── main │ │ └── java │ │ └── org │ │ └── wso2 │ │ └── micro │ │ └── integrator │ │ └── utils │ │ ├── PasswordUpdater.java │ │ └── utils │ │ ├── InputReader.java │ │ ├── PasswordPrompt.java │ │ └── ServerConstants.java └── pom.xml ├── distribution ├── pom.xml └── src │ ├── README.txt │ ├── assembly │ ├── bin.xml │ └── filter.properties │ ├── conf │ ├── access-log.properties │ ├── axis2.xml │ ├── axis2_blocking_client.xml │ ├── carbon.properties │ ├── carbon.xml │ ├── cipher-standalone-config.properties │ ├── ciphertool.bat │ ├── ciphertool.sh │ ├── datasources.properties │ ├── datasources │ │ └── master-datasources.xml │ ├── deployment.toml │ ├── deployment.toml.container │ ├── etc │ │ ├── launch.ini │ │ ├── logging-bridge.properties │ │ └── pax-logging.properties │ ├── event-processor.xml │ ├── file.properties │ ├── internal-apis.xml │ ├── jndi.properties │ ├── log4j2.properties │ ├── netty.properties │ ├── passthru-http.properties │ ├── sec.policy │ ├── security │ │ ├── cipher-text.properties │ │ ├── cipher-tool.properties │ │ └── secret-conf.properties │ ├── sequence-observers.xml │ ├── synapse-configs │ │ └── default │ │ │ ├── imports │ │ │ └── empty.txt │ │ │ ├── inbound-endpoints │ │ │ └── empty.txt │ │ │ ├── local-entries │ │ │ └── empty.txt │ │ │ ├── proxy-services │ │ │ └── empty.txt │ │ │ ├── registry.xml │ │ │ ├── sequences │ │ │ ├── fault.xml │ │ │ └── main.xml │ │ │ └── synapse.xml │ ├── synapse-handlers.xml │ ├── synapse.properties │ ├── user-mgt.xml │ └── wrapper.conf │ ├── dbscripts │ ├── db2 │ │ ├── db2_cluster.sql │ │ ├── db2_transaction_count.sql │ │ └── db2_user.sql │ ├── mssql │ │ ├── mssql_cluster.sql │ │ ├── mssql_transaction_count.sql │ │ └── mssql_user.sql │ ├── mysql │ │ ├── mysql_cluster.sql │ │ ├── mysql_transaction_count.sql │ │ └── mysql_user.sql │ ├── oracle-rac │ │ ├── oracle_rac_cluster.sql │ │ ├── oracle_rac_transaction_count.sql │ │ └── oracle_rac_user.sql │ ├── oracle │ │ ├── oracle_cluster.sql │ │ ├── oracle_transaction_count.sql │ │ └── oracle_user.sql │ └── postgres │ │ ├── postgresql_cluster.sql │ │ ├── postgresql_transaction_count.sql │ │ └── postgresql_user.sql │ ├── docker-distribution │ ├── alpine │ │ └── Dockerfile │ ├── centos │ │ └── Dockerfile │ ├── docker-entrypoint.sh │ └── ubuntu │ │ └── Dockerfile │ ├── docs │ └── release-notes.xml │ ├── resources │ ├── capps │ │ └── empty.txt │ ├── config-tool │ │ ├── README.md │ │ ├── default.json │ │ ├── deployment-full.toml │ │ ├── infer.json │ │ ├── key-mappings.json │ │ ├── templates │ │ │ ├── conf │ │ │ │ ├── axis2 │ │ │ │ │ ├── axis2.xml.j2 │ │ │ │ │ ├── axis2_blocking_client.xml.j2 │ │ │ │ │ └── axis2_client.xml.j2 │ │ │ │ ├── carbon.properties.j2 │ │ │ │ ├── carbon.xml.j2 │ │ │ │ ├── datasources │ │ │ │ │ └── master-datasources.xml.j2 │ │ │ │ ├── etc │ │ │ │ │ └── jmx.xml.j2 │ │ │ │ ├── internal-apis.xml.j2 │ │ │ │ ├── jndi.properties.j2 │ │ │ │ ├── netty.properties.j2 │ │ │ │ ├── passthru-http.properties.j2 │ │ │ │ ├── security │ │ │ │ │ └── cipher-text.properties.j2 │ │ │ │ ├── synapse-handlers.xml.j2 │ │ │ │ ├── synapse.properties.j2 │ │ │ │ ├── user-mgt.xml.j2 │ │ │ │ └── wso2-log-masking.properties.j2 │ │ │ └── diagnostics-tool │ │ │ │ └── conf │ │ │ │ └── config.toml.j2 │ │ ├── unit-resolve.json │ │ └── validator.json │ ├── dockerfiles │ │ ├── Dockerfile │ │ └── files │ │ │ └── carbonapps │ │ │ └── .gitkeep │ ├── security │ │ └── publickey.pem │ └── updates │ │ └── product.txt │ └── scripts │ ├── build.xml │ ├── carbondump.bat │ ├── carbondump.sh │ ├── chpasswd.bat │ ├── chpasswd.sh │ ├── diagnostics.sh │ ├── extension-runner.sh │ ├── micro-integrator.bat │ ├── micro-integrator.sh │ ├── tcpmon.bat │ └── tcpmon.sh ├── doc └── images │ ├── mi-esb-architecture.png │ ├── mi-microservices-architecture.png │ └── micro-Integrator-ci-cd-workflow.png ├── features ├── crypto-feature │ └── org.wso2.micro.integrator.crypto.feature │ │ └── pom.xml ├── data-features │ ├── data-services-feature │ │ ├── org.wso2.micro.integrator.dataservices.server.feature │ │ │ └── pom.xml │ │ └── pom.xml │ └── pom.xml ├── etc │ └── feature.properties ├── mediation-features │ ├── builtin-mediators │ │ ├── org.wso2.micro.integrator.mediators.server.feature │ │ │ └── pom.xml │ │ └── pom.xml │ ├── data-publisher-features │ │ ├── org.wso2.micro.integrator.analytics.messageflow.data.publisher.feature │ │ │ └── pom.xml │ │ ├── org.wso2.micro.integrator.observability.feature │ │ │ └── pom.xml │ │ └── pom.xml │ ├── dataservice-mediator-feature │ │ └── org.wso2.micro.integrator.mediator.dataservice │ │ │ └── pom.xml │ ├── entitlement-mediator-feature │ │ └── org.wso2.micro.integrator.identity.xacml.mediator │ │ │ └── pom.xml │ ├── inbound-endpoint │ │ ├── org.wso2.micro.integrator.inbound.endpoints.server.feature │ │ │ └── pom.xml │ │ └── pom.xml │ ├── ntask-feature │ │ └── pom.xml │ ├── pom.xml │ ├── security-features │ │ ├── org.wso2.micro.integrator.security.server.feature │ │ │ └── pom.xml │ │ └── pom.xml │ └── transport-features │ │ ├── org.wso2.micro.integrator.websocket.feature │ │ └── pom.xml │ │ └── pom.xml ├── org.wso2.micro.integrator.initializer.feature │ ├── feature.properties │ ├── pom.xml │ ├── resources │ │ ├── build.properties │ │ ├── p2.inf │ │ └── synapse-configs │ │ │ └── synapse.xml │ └── src │ │ └── main │ │ └── resources │ │ ├── build.properties │ │ ├── p2.inf │ │ └── synapse-configs │ │ └── synapse.xml ├── org.wso2.micro.integrator.logging.updater.feature │ └── pom.xml ├── org.wso2.micro.integrator.ntask.core.feature │ ├── pom.xml │ └── resources │ │ └── build.properties ├── org.wso2.micro.integrator.server.feature │ ├── feature.properties │ └── pom.xml ├── pom.xml └── wso2mi-hl7 │ ├── pom.xml │ └── src │ └── assembly │ └── hl7-package.xml ├── integration ├── automation-extensions │ ├── pom.xml │ └── src │ │ └── main │ │ └── java │ │ └── org │ │ └── wso2 │ │ └── esb │ │ └── integration │ │ └── common │ │ └── extensions │ │ ├── axis2server │ │ ├── Axis2ServerExtension.java │ │ ├── Axis2ServerManager.java │ │ ├── Axis2ServerTestExtension.java │ │ ├── BackendServer.java │ │ └── ServiceNameConstants.java │ │ ├── carbonserver │ │ ├── CarbonServerExtension.java │ │ ├── CarbonServerManager.java │ │ ├── CarbonTestServerManager.java │ │ ├── MultipleServersManager.java │ │ ├── ServerUtils.java │ │ └── TestServerManager.java │ │ ├── db │ │ └── manager │ │ │ └── DatabaseManager.java │ │ └── jmsserver │ │ └── ActiveMQServerExtension.java ├── cli-tests │ ├── pom.xml │ └── src │ │ └── test │ │ ├── java │ │ ├── EnvSetup.sh │ │ └── org │ │ │ └── wso2 │ │ │ └── micro │ │ │ └── integrator │ │ │ └── cli │ │ │ ├── AbstractCliTest.java │ │ │ ├── CliAPITestCase.java │ │ │ ├── CliCompositeappTestCase.java │ │ │ ├── CliEndpointTestCase.java │ │ │ ├── CliEnvironmentSetup.java │ │ │ ├── CliProxyServiceTestCase.java │ │ │ ├── CliRemoteTestCase.java │ │ │ ├── CliSequenceTestCase.java │ │ │ ├── Constants.java │ │ │ ├── LoginLogoutTest.java │ │ │ └── util │ │ │ └── TestUtils.java │ │ └── resources │ │ ├── artifacts │ │ └── ESB │ │ │ └── server │ │ │ └── repository │ │ │ └── deployment │ │ │ └── server │ │ │ ├── carbonapps │ │ │ ├── MediatorCApp_1.0.0.car │ │ │ └── hello-worldCompositeApplication_1.0.0.car │ │ │ └── synapse-configs │ │ │ └── default │ │ │ ├── api │ │ │ ├── cliSampleApi_1.xml │ │ │ └── cliSampleApi_2.xml │ │ │ ├── endpoints │ │ │ ├── SimpleEP.xml │ │ │ └── SimpleStockQuoteServiceEndpoint.xml │ │ │ ├── proxy-services │ │ │ ├── cliAddressProxy.xml │ │ │ └── cliTestProxy.xml │ │ │ └── sequences │ │ │ ├── CliSampleSequence.xml │ │ │ └── CliTestSequence.xml │ │ ├── automation.xml │ │ ├── automationXMLSchema.xsd │ │ ├── modules │ │ └── addressing-1.6.1-wso2v35.mar │ │ └── testng.xml ├── dataservice-hosting-tests │ ├── pom.xml │ ├── samples │ │ ├── data-services │ │ │ ├── README │ │ │ ├── build.xml │ │ │ ├── clients │ │ │ │ ├── README │ │ │ │ ├── build.xml │ │ │ │ ├── log4j.properties │ │ │ │ ├── log4j2.properties │ │ │ │ ├── pom.xml │ │ │ │ ├── src │ │ │ │ │ └── org │ │ │ │ │ │ └── wso2 │ │ │ │ │ │ └── carbon │ │ │ │ │ │ └── dataservices │ │ │ │ │ │ └── samples │ │ │ │ │ │ ├── Base64.java │ │ │ │ │ │ ├── BaseSample.java │ │ │ │ │ │ ├── BatchRequestSample.java │ │ │ │ │ │ ├── CSVSample.java │ │ │ │ │ │ ├── ExcelSample.java │ │ │ │ │ │ ├── FileServiceApp.java │ │ │ │ │ │ ├── GSpreadSample.java │ │ │ │ │ │ ├── RDBMSSample.java │ │ │ │ │ │ └── SecureSample.java │ │ │ │ └── wsdl │ │ │ │ │ ├── BatchRequestSample.wsdl │ │ │ │ │ ├── CSVSampleService.wsdl │ │ │ │ │ ├── DTPSampleService.wsdl │ │ │ │ │ ├── EventingSample.wsdl │ │ │ │ │ ├── ExcelSampleService.wsdl │ │ │ │ │ ├── FaultDBService.wsdl │ │ │ │ │ ├── FileService.wsdl │ │ │ │ │ ├── GSpreadSample.wsdl │ │ │ │ │ ├── NestedQuerySample.wsdl │ │ │ │ │ ├── RDBMSSample.wsdl │ │ │ │ │ ├── RDFSampleService.wsdl │ │ │ │ │ └── SecureDataService.wsdl │ │ │ ├── dbs │ │ │ │ ├── cassandra │ │ │ │ │ └── CassandraSample.dbs │ │ │ │ ├── csv │ │ │ │ │ └── CSVSampleService.dbs │ │ │ │ ├── excel │ │ │ │ │ ├── ExcelSQLDriverSampleService.dbs │ │ │ │ │ └── ExcelSampleService.dbs │ │ │ │ ├── gspread │ │ │ │ │ ├── GSpreadSQLDriverSample.dbs │ │ │ │ │ └── GSpreadSample.dbs │ │ │ │ ├── inmemory │ │ │ │ │ └── InMemoryDSSample.dbs │ │ │ │ ├── mongoDB │ │ │ │ │ └── MongoDBSampleService.dbs │ │ │ │ ├── odata │ │ │ │ │ └── ODataSampleService.dbs │ │ │ │ ├── rdbms │ │ │ │ │ ├── BatchRequestSample.dbs │ │ │ │ │ ├── DOCTORS_DataService.dbs │ │ │ │ │ ├── DTPSampleService.dbs │ │ │ │ │ ├── EventingSample.dbs │ │ │ │ │ ├── FileService.dbs │ │ │ │ │ ├── JSONSample.dbs │ │ │ │ │ ├── NestedQuerySample.dbs │ │ │ │ │ ├── RDBMSSample.dbs │ │ │ │ │ ├── RDBMSSample_services.xml │ │ │ │ │ ├── ResourcesSample.dbs │ │ │ │ │ ├── ReturnUpdatedRowCountSample.dbs │ │ │ │ │ └── SecureDataService.dbs │ │ │ │ ├── rdf │ │ │ │ │ ├── RDFExposeAsRDFSample.dbs │ │ │ │ │ └── RDFSampleService.dbs │ │ │ │ └── web │ │ │ │ │ └── WebResourceSample.dbs │ │ │ ├── pom.xml │ │ │ ├── resources │ │ │ │ ├── Movies.rdf │ │ │ │ ├── Products.csv │ │ │ │ ├── Products.xls │ │ │ │ ├── sample_axis2_client.xml │ │ │ │ └── web_resource_config.xml │ │ │ ├── security │ │ │ │ └── secure_sample_policy.xml │ │ │ ├── shopping_cart │ │ │ │ ├── dbs │ │ │ │ │ └── ShoppingCartDS.dbs │ │ │ │ └── sql │ │ │ │ │ ├── h2 │ │ │ │ │ ├── Category.sql │ │ │ │ │ ├── CreateTables.sql │ │ │ │ │ └── Product.sql │ │ │ │ │ └── mysql │ │ │ │ │ ├── Category.sql │ │ │ │ │ ├── CreateDB.sql │ │ │ │ │ ├── CreateTables.sql │ │ │ │ │ ├── Init_Sample_Query.sql │ │ │ │ │ └── Product.sql │ │ │ ├── sql │ │ │ │ └── h2 │ │ │ │ │ ├── CreateTables.sql │ │ │ │ │ ├── CreateTables2.sql │ │ │ │ │ ├── Customers.sql │ │ │ │ │ ├── Doctors.sql │ │ │ │ │ ├── Employees.sql │ │ │ │ │ ├── Offices.sql │ │ │ │ │ ├── OrderDetails.sql │ │ │ │ │ ├── Orders.sql │ │ │ │ │ ├── Payments.sql │ │ │ │ │ ├── ProductLines.sql │ │ │ │ │ └── Products.sql │ │ │ ├── wsdl │ │ │ │ └── ContractFirstSample.wsdl │ │ │ └── xslt │ │ │ │ └── transform.xslt │ │ └── pom.xml │ ├── tests-common │ │ ├── admin-clients │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── java │ │ │ │ └── org │ │ │ │ └── wso2 │ │ │ │ └── ei │ │ │ │ └── dataservices │ │ │ │ └── integration │ │ │ │ └── common │ │ │ │ └── clients │ │ │ │ ├── DataServiceAdminClient.java │ │ │ │ ├── DataServiceFileUploaderClient.java │ │ │ │ ├── DataServiceTaskClient.java │ │ │ │ ├── ResourceAdminServiceClient.java │ │ │ │ ├── ServiceAdminClient.java │ │ │ │ └── utils │ │ │ │ └── AuthenticateStubUtil.java │ │ ├── integration-test-utils │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── java │ │ │ │ └── org │ │ │ │ └── wso2 │ │ │ │ └── ei │ │ │ │ └── dataservice │ │ │ │ └── integration │ │ │ │ └── common │ │ │ │ └── utils │ │ │ │ ├── DSSTestCaseUtils.java │ │ │ │ ├── SampleDataServiceClient.java │ │ │ │ ├── SqlDataSourceUtil.java │ │ │ │ └── XPathConstants.java │ │ └── pom.xml │ └── tests-integration │ │ ├── pom.xml │ │ └── tests │ │ ├── pom.xml │ │ └── src │ │ └── test │ │ ├── java │ │ └── org │ │ │ └── wso2 │ │ │ └── ei │ │ │ └── dataservice │ │ │ └── integration │ │ │ └── test │ │ │ ├── DSSIntegrationTest.java │ │ │ ├── datasource │ │ │ ├── DataSourceInitializationAtStartUpTestCase.java │ │ │ └── TestConnector.java │ │ │ ├── dbConsole │ │ │ └── DBConsoleAvailableTest.java │ │ │ ├── dssCallMediator │ │ │ ├── DSSCallWithInboundEPTestCase.java │ │ │ ├── InlineConfigTestCase.java │ │ │ ├── JsonPayloadTestCase.java │ │ │ ├── SourceTypeBodyTestCase.java │ │ │ └── TargetTypePropertyTestCase.java │ │ │ ├── fault │ │ │ └── ErrorMessageVerifyTestCase.java │ │ │ ├── faulty │ │ │ └── service │ │ │ │ ├── FaultDBExceptionTestCase.java │ │ │ │ ├── FaultyDataServiceTestCase.java │ │ │ │ └── InvalidClosingTagUnDeployedServiceTestCase.java │ │ │ ├── fileservice │ │ │ ├── AGSpreadDataServiceTestCase.java │ │ │ ├── CSVDataServiceTestCase.java │ │ │ └── ExcelDataServiceTestCase.java │ │ │ ├── gspread │ │ │ └── GSpreadDataServiceTestCase.java │ │ │ ├── jira │ │ │ └── issues │ │ │ │ ├── CARBON15046JsonGsonNUllValueTest.java │ │ │ │ ├── CARBON15235JsonValueTypeMissMatchTest.java │ │ │ │ ├── CARBON15261JsonFormatterTest.java │ │ │ │ ├── CARBON15263JsonGsonFormatterSuperTenantModeTest.java │ │ │ │ ├── CARBON15280RepeatServiceNameInURLTest.java │ │ │ │ ├── CARBON15612RESTRequestURLTestCase.java │ │ │ │ ├── CARBON15879XmlNullElementTest.java │ │ │ │ ├── CARBON15928JMXDisablingTest.java │ │ │ │ ├── DS1031PolicyKeyWithoutPolicyPathTestCase.java │ │ │ │ ├── DS1042GetContentTypeSpecifiedTestCase.java │ │ │ │ ├── DS1063EmailUsernameTestCase.java │ │ │ │ ├── DS1069DifferentTimeStampStoreIssueTestCase.java │ │ │ │ ├── DS1081NullValuesTest.java │ │ │ │ ├── DS1083BoxcarringParallelInsertTestCase.java │ │ │ │ ├── DS1090EscapeNonPrintableCharactersTestCase.java │ │ │ │ ├── DS1103DuplicateDataServiceTestCase.java │ │ │ │ ├── DS1111UserRoleExtensionTestCase.java │ │ │ │ ├── DS1169FunctionsWithArrayParametersTestCase.java │ │ │ │ ├── DS1186JsonRenderTestCase.java │ │ │ │ ├── DS1189LeagyTimeStampModeTestCase.java │ │ │ │ ├── DS1190JsonValueTypeMisMatchTest.java │ │ │ │ ├── DS1201DeleteWithBatchReqTest.java │ │ │ │ ├── DS1209EqualElementNamesInJSONHierarchyTestCase.java │ │ │ │ ├── DS937BoxcarringTestCase.java │ │ │ │ ├── DS954UseExcelFromRegistryTestCase.java │ │ │ │ ├── DSSTestServerManager.java │ │ │ │ ├── DuplicateParameterInQueryTest.java │ │ │ │ ├── EI1222JSONSecuredServiceWithXMLCharacterTestCase.java │ │ │ │ ├── MI2335DynamicSQLDeploymentTestCase.java │ │ │ │ └── ResourcesServiceTestWithSameContextNameTestCase.java │ │ │ ├── jmx │ │ │ └── statistics │ │ │ │ ├── JMXStatisticsTestCase.java │ │ │ │ └── utils │ │ │ │ └── JMXClient.java │ │ │ ├── odata │ │ │ ├── ODataBatchRequestTestCase.java │ │ │ ├── ODataDataTypeSupportTestCase.java │ │ │ ├── ODataETagTestCase.java │ │ │ ├── ODataEntityStreamingTestCase.java │ │ │ ├── ODataMetaDataTestCase.java │ │ │ ├── ODataQueryTestCase.java │ │ │ ├── ODataReferenceTestCase.java │ │ │ ├── ODataRequestThreadExecutor.java │ │ │ ├── ODataStringFunctionsTestCase.java │ │ │ ├── ODataSuperTenantUserTestCase.java │ │ │ ├── ODataTenantUserTestCase.java │ │ │ ├── ODataTestUtils.java │ │ │ └── ODataViewTestCase.java │ │ │ ├── rdf │ │ │ ├── RDFExposedAsRDFSampleTestCase.java │ │ │ └── RDFSampleTestCase.java │ │ │ ├── requestBox │ │ │ ├── RequestBoxJsonTestCase.java │ │ │ ├── RequestBoxTenantUserTestCase.java │ │ │ └── RequestBoxTestCase.java │ │ │ ├── samples │ │ │ ├── BatchRequestSampleTestCase.java │ │ │ ├── CSVSampleServiceTestCase.java │ │ │ ├── CSVSampleTestCase.java │ │ │ ├── DTPBatchRequestSampleTestcase.java │ │ │ ├── EventingSampleTestCase.java │ │ │ ├── ExcelSampleServiceTestCase.java │ │ │ ├── ExcelSampleTestCase.java │ │ │ ├── GSpreadSQLDriverSampleTestCase.java │ │ │ ├── GSpreadSampleTestCase.java │ │ │ ├── InMemoryDSSampleTestCase.java │ │ │ ├── JSONPayloadSampleTestCase.java │ │ │ ├── RDBMSSampleTestCase.java │ │ │ └── WebResourceSampleTestCase.java │ │ │ ├── scheduletask │ │ │ ├── AddScheduleTaskTestCase.java │ │ │ └── ReScheduleTaskTestCase.java │ │ │ ├── server │ │ │ └── mgt │ │ │ │ ├── DSSServerBundleStatusTestCase.java │ │ │ │ └── DSSServerStartupTestCase.java │ │ │ ├── services │ │ │ ├── BatchRequestTestCase.java │ │ │ ├── CarbonDataSourceTestCase.java │ │ │ ├── DataServiceSqlDriverTestCase.java │ │ │ ├── DistributedTransactionTestCase.java │ │ │ ├── FileServiceTestCase.java │ │ │ ├── InOnlyRequestsServiceTestCase.java │ │ │ ├── InputParametersValidationTestCase.java │ │ │ ├── JSONContentTypeHandlerTestCase.java │ │ │ ├── MultipleServicesGeneratorTestCase.java │ │ │ ├── NestedQueryTestCase.java │ │ │ ├── OutputMappingAsAttributeDataServiceTestCase.java │ │ │ ├── RegexTestCase.java │ │ │ ├── RestFulServiceTestCase.java │ │ │ ├── ReturnGeneratedKeysTestCase.java │ │ │ ├── ReturnUpdatedRowCountTestCase.java │ │ │ ├── SQLDriverGspreadSheetTestCase.java │ │ │ ├── SecureDataServiceTestCase.java │ │ │ ├── SecurityVerificationTestCase.java │ │ │ └── SingleServiceGeneratorTestCase.java │ │ │ ├── sparql │ │ │ └── SPARQLServiceTestCase.java │ │ │ ├── swagger │ │ │ └── SwaggerGenerationTestCase.java │ │ │ ├── syntax │ │ │ ├── DataTypesTestCase.java │ │ │ ├── ReturnRequestStatusTest.java │ │ │ └── WhiteSpaceWithQueryParamsTest.java │ │ │ └── util │ │ │ ├── ConcurrencyTest.java │ │ │ ├── LockHolder.java │ │ │ └── ParallelRequestHelper.java │ │ └── resources │ │ ├── Swagger │ │ ├── JSONResponse.json │ │ └── YAMLResponse.yaml │ │ ├── artifacts │ │ └── DSS │ │ │ ├── config │ │ │ ├── CARBON1352 │ │ │ │ └── axis2.xml │ │ │ └── testconfig.xml │ │ │ ├── dbs │ │ │ ├── csv │ │ │ │ ├── CSVDataService.dbs │ │ │ │ └── CSVSampleService.dbs │ │ │ ├── excel │ │ │ │ ├── ExcelDataService.dbs │ │ │ │ ├── ExcelFromReg.dbs │ │ │ │ └── ExcelSampleService.dbs │ │ │ ├── gspread │ │ │ │ ├── GSpreadDataService.dbs │ │ │ │ └── GSpreadSQLDriver.dbs │ │ │ ├── odata │ │ │ │ └── ODataSampleTenantService.dbs │ │ │ ├── rdbms │ │ │ │ ├── MySql │ │ │ │ │ ├── BatchRequestTest.dbs │ │ │ │ │ ├── CarbonDSDataServiceTest.dbs │ │ │ │ │ ├── DTPServiceTest.dbs │ │ │ │ │ ├── EventingTest.dbs │ │ │ │ │ ├── FaultyDataService.dbs │ │ │ │ │ ├── FileServiceTest.dbs │ │ │ │ │ ├── InOnlyRequestsServiceTest.dbs │ │ │ │ │ ├── InputParamsValidationTest.dbs │ │ │ │ │ ├── NestedQueryTest.dbs │ │ │ │ │ ├── OutputMappingAttributeDataService.dbs │ │ │ │ │ ├── ResourcesServiceTest.dbs │ │ │ │ │ ├── ReturnRequestStatusTest.dbs │ │ │ │ │ ├── ScheduleTaskTest.dbs │ │ │ │ │ ├── SecureDataService.dbs │ │ │ │ │ ├── SqlRSSDataServiceTest.dbs │ │ │ │ │ ├── StoredProcedureServiceTest.dbs │ │ │ │ │ ├── StudentService.dbs │ │ │ │ │ └── WhiteSpacesInQueryParamsTest.dbs │ │ │ │ ├── h2 │ │ │ │ │ ├── BoxcarringTest.dbs │ │ │ │ │ ├── Developer.dbs │ │ │ │ │ ├── EscapeNonPrintableCharactersTest.dbs │ │ │ │ │ ├── GsonFormatterTenantModeTest.dbs │ │ │ │ │ ├── H2JsonSecureServiceTest.dbs │ │ │ │ │ ├── H2ReturnGeneratedKeysTest.dbs │ │ │ │ │ ├── H2ReturnUpdatedRowCountTest.dbs │ │ │ │ │ ├── H2ServiceNameTest.dbs │ │ │ │ │ ├── H2SimpleJsonTest.dbs │ │ │ │ │ ├── H2SimpleJsonTest1.dbs │ │ │ │ │ ├── H2SimpleJsonTest2.dbs │ │ │ │ │ ├── H2SimpleJsonTestDuplicate.dbs │ │ │ │ │ ├── JSONSample.dbs │ │ │ │ │ ├── JSONSampleTest.dbs │ │ │ │ │ ├── NullTest_DataService.dbs │ │ │ │ │ ├── PolicyKeyWithoutPolicyPathTest.dbs │ │ │ │ │ ├── RESTRequestURLTest.dbs │ │ │ │ │ ├── RegexTest.dbs │ │ │ │ │ ├── RequestBoxTenantTest.dbs │ │ │ │ │ ├── RequestBoxTest.dbs │ │ │ │ │ ├── RoleExtension.dbs │ │ │ │ │ ├── SecuredJsonSample.dbs │ │ │ │ │ ├── TimStampDifference.dbs │ │ │ │ │ └── TimeStampDifferenceLegacy.dbs │ │ │ │ └── oracle │ │ │ │ │ └── FunctionsWithArrayParametersTest.dbs │ │ │ ├── sparql │ │ │ │ └── SPARQLDataService.dbs │ │ │ └── sqldriver │ │ │ │ └── sqlparsertest.dbs │ │ │ ├── resources │ │ │ ├── OdataMetadata.xml │ │ │ ├── Products-sql.xls │ │ │ ├── Products.csv │ │ │ ├── Products_Excel.xls │ │ │ ├── SecPolicy-withRoles.xml │ │ │ ├── XMLInputFactory.properties │ │ │ ├── eventTrigerProxy.xml │ │ │ ├── mailTransport.xml │ │ │ └── transform.xslt │ │ │ ├── samples │ │ │ └── dbs │ │ │ │ ├── csv │ │ │ │ └── CSVSampleService.dbs │ │ │ │ ├── excel │ │ │ │ ├── ExcelSQLDriverSampleService.dbs │ │ │ │ └── ExcelSampleService.dbs │ │ │ │ ├── gspread │ │ │ │ ├── GSpreadSQLDriverSample.dbs │ │ │ │ └── GSpreadSample.dbs │ │ │ │ ├── inmemory │ │ │ │ └── InMemoryDSSample.dbs │ │ │ │ ├── rdbms │ │ │ │ ├── BatchRequestSample.dbs │ │ │ │ ├── DELETEWithBatchTest.dbs │ │ │ │ ├── DTPBatchRequestService.dbs │ │ │ │ ├── DTPSampleService.dbs │ │ │ │ ├── EmailUsername.dbs │ │ │ │ ├── EqualNamedJSONElements.dbs │ │ │ │ ├── EventingSample.dbs │ │ │ │ ├── FaultDBService.dbs │ │ │ │ ├── FileService.dbs │ │ │ │ ├── JsonNullValueOnGET.dbs │ │ │ │ ├── JsonRenderService.dbs │ │ │ │ ├── JsonValueTypeMismatchTest.dbs │ │ │ │ ├── JsonValueTypes.dbs │ │ │ │ ├── NestedQuerySample.dbs │ │ │ │ ├── RDBMSSample.dbs │ │ │ │ ├── RDBMSSample_services.xml │ │ │ │ ├── ResourcesSample.dbs │ │ │ │ ├── SecureDataService.dbs │ │ │ │ └── XmlNullElementTest.dbs │ │ │ │ └── web │ │ │ │ └── WebResourceSample.dbs │ │ │ ├── security │ │ │ └── policies │ │ │ │ ├── scenario-config.xml │ │ │ │ ├── scenario1-policy.xml │ │ │ │ ├── scenario10-policy.xml │ │ │ │ ├── scenario11-policy.xml │ │ │ │ ├── scenario12-policy.xml │ │ │ │ ├── scenario13-policy.xml │ │ │ │ ├── scenario14-policy.xml │ │ │ │ ├── scenario15-policy.xml │ │ │ │ ├── scenario16-policy.xml │ │ │ │ ├── scenario17-policy.xml │ │ │ │ ├── scenario2-policy.xml │ │ │ │ ├── scenario3-policy.xml │ │ │ │ ├── scenario4-policy.xml │ │ │ │ ├── scenario5-policy.xml │ │ │ │ ├── scenario6-policy.xml │ │ │ │ ├── scenario7-policy.xml │ │ │ │ ├── scenario8-policy.xml │ │ │ │ └── scenario9-policy.xml │ │ │ ├── server │ │ │ ├── lib │ │ │ │ ├── h2-1.3.175.jar │ │ │ │ └── roleRetriever-1.0.0.jar │ │ │ └── repository │ │ │ │ └── deployment │ │ │ │ └── server │ │ │ │ ├── carbonapps │ │ │ │ └── CarbonDataSourceTestCase.car │ │ │ │ ├── dataservices │ │ │ │ ├── BatchRequestTest.dbs │ │ │ │ ├── BoxcarringParalleAccess.dbs │ │ │ │ ├── CSVDataService.dbs │ │ │ │ ├── CSVSampleService.dbs │ │ │ │ ├── DSSCallMediatorTest.dbs │ │ │ │ ├── DTPServiceTest.dbs │ │ │ │ ├── Developer.dbs │ │ │ │ ├── DuplicateDataServiceTest.dbs │ │ │ │ ├── DynamicSQLDataService.dbs │ │ │ │ ├── EqualNamedJSONElements.dbs │ │ │ │ ├── EscapeNonPrintableCharactersTest.dbs │ │ │ │ ├── ExcelDataService.dbs │ │ │ │ ├── ExcelSampleService.dbs │ │ │ │ ├── FaultDBService.dbs │ │ │ │ ├── FaultyDataService.dbs │ │ │ │ ├── FileServiceTest.dbs │ │ │ │ ├── GSpreadDataService.dbs │ │ │ │ ├── H2ReturnGeneratedKeysTest.dbs │ │ │ │ ├── H2ReturnUpdatedRowCountTest.dbs │ │ │ │ ├── H2ServiceNameTest.dbs │ │ │ │ ├── H2SimpleJsonTestDuplicate.dbs │ │ │ │ ├── InOnlyRequestsServiceTest.dbs │ │ │ │ ├── JSONSampleTest.dbs │ │ │ │ ├── NestedQueryTest.dbs │ │ │ │ ├── NullTest_DataService.dbs │ │ │ │ ├── ODataBatchRequestSampleService.dbs │ │ │ │ ├── ODataDataTypesSampleService.dbs │ │ │ │ ├── ODataETagSampleService.dbs │ │ │ │ ├── ODataMetadataSampleService.dbs │ │ │ │ ├── ODataQuerySampleService.dbs │ │ │ │ ├── ODataSampleService.dbs │ │ │ │ ├── ODataSampleSuperTenantService.dbs │ │ │ │ ├── OutputMappingAttributeDataService.dbs │ │ │ │ ├── PolicyKeyWithoutPolicyPathTest.dbs │ │ │ │ ├── RDBMSSample.dbs │ │ │ │ ├── RDFExposeAsRDFSample.dbs │ │ │ │ ├── RDFSampleService.dbs │ │ │ │ ├── RegexTest.dbs │ │ │ │ ├── RequestBoxTest.dbs │ │ │ │ ├── ResourcesServiceTest.dbs │ │ │ │ ├── ResourcesServiceTestWithSameContextName.dbs │ │ │ │ ├── ReturnRequestStatusTest.dbs │ │ │ │ ├── RoleExtension.dbs │ │ │ │ ├── WebResourceSample.dbs │ │ │ │ └── WhiteSpacesInQueryParamsTest.dbs │ │ │ │ └── synapse-configs │ │ │ │ └── default │ │ │ │ ├── inbound-endpoints │ │ │ │ └── HttpListenerEP.xml │ │ │ │ ├── proxy-services │ │ │ │ ├── dssCallMediatorInlineBatchRequestProxy.xml │ │ │ │ ├── dssCallMediatorInlineRequestBoxProxy.xml │ │ │ │ ├── dssCallMediatorInlineSingleRequestProxy.xml │ │ │ │ ├── dssCallMediatorInlineSingleRequestWithEmptyResultsProxy.xml │ │ │ │ ├── dssCallMediatorSourceTypeBodyProxy.xml │ │ │ │ └── dssCallMediatorTargetTypePropertyProxy.xml │ │ │ │ └── sequences │ │ │ │ └── SimpleDSSequence.xml │ │ │ ├── serverConfigs │ │ │ ├── axis2.xml │ │ │ ├── wso2server.sh │ │ │ ├── wso2server1.sh │ │ │ ├── wso2serverLegacyMode.sh │ │ │ └── wso2serverLegacyMode1.sh │ │ │ ├── sources │ │ │ ├── msgContextHandler │ │ │ │ ├── pom.xml │ │ │ │ └── src │ │ │ │ │ └── main │ │ │ │ │ └── java │ │ │ │ │ └── org │ │ │ │ │ └── wso2 │ │ │ │ │ └── carbon │ │ │ │ │ └── handler │ │ │ │ │ └── MsgContextHandler.java │ │ │ └── roleRetriever │ │ │ │ ├── pom.xml │ │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── java │ │ │ │ └── org │ │ │ │ └── wso2 │ │ │ │ └── carbon │ │ │ │ └── dataservices │ │ │ │ └── extension │ │ │ │ └── RoleRetriever.java │ │ │ ├── sql │ │ │ ├── MySql │ │ │ │ ├── CreateTables.sql │ │ │ │ ├── CreateTablesAccount.sql │ │ │ │ ├── Customers.sql │ │ │ │ ├── Employees.sql │ │ │ │ ├── Offices.sql │ │ │ │ ├── OrderDetails.sql │ │ │ │ ├── Orders.sql │ │ │ │ ├── Payments.sql │ │ │ │ ├── ProductLines.sql │ │ │ │ ├── Products.sql │ │ │ │ ├── StoredProcedures.sql │ │ │ │ ├── selenium_Company.sql │ │ │ │ └── student.sql │ │ │ ├── h2 │ │ │ │ ├── Accounts.sql │ │ │ │ ├── Birds.sql │ │ │ │ ├── BoxcarringParallelAccess.sql │ │ │ │ ├── CreateEmailUsersTable.sql │ │ │ │ ├── CreateODataTables.sql │ │ │ │ ├── CreateTableDeleteTest.sql │ │ │ │ ├── CreateTableJsonTest.sql │ │ │ │ ├── CreateTableNullTest.sql │ │ │ │ ├── CreateTableTimeStamp.sql │ │ │ │ ├── CreateTableWithTimeStamp.sql │ │ │ │ ├── CreateTableXmlNullTest.sql │ │ │ │ ├── CreateTables.sql │ │ │ │ ├── CreateTablesAccount.sql │ │ │ │ ├── CustomProducts.sql │ │ │ │ ├── Customers.sql │ │ │ │ ├── DataTypes.sql │ │ │ │ ├── Employees.sql │ │ │ │ ├── FIlesWithFIlesRecords.sql │ │ │ │ ├── NestedQueryEmptyResult.sql │ │ │ │ ├── ODataDataTypes.sql │ │ │ │ ├── Offices.sql │ │ │ │ ├── OrderDetails.sql │ │ │ │ ├── Orders.sql │ │ │ │ ├── Payments.sql │ │ │ │ ├── ProductLines.sql │ │ │ │ ├── Products.sql │ │ │ │ ├── RandomEmployee.sql │ │ │ │ ├── RegexTable.sql │ │ │ │ ├── RequestBoxTestTables.sql │ │ │ │ ├── StoredProcedures.sql │ │ │ │ ├── Students.sql │ │ │ │ ├── StudentsJsonTest.sql │ │ │ │ └── selenium_Company.sql │ │ │ └── oracle │ │ │ │ ├── Functions.sql │ │ │ │ └── UserDefinedTypes.sql │ │ │ └── xslt │ │ │ └── transform.xslt │ │ ├── automation.xml │ │ ├── bin │ │ └── integrator.sh │ │ ├── filters.txt │ │ ├── h2DataBase │ │ ├── testdb_for_BatchRequestTestCase.h2.db │ │ ├── testdb_for_CARBON15280RepeatServiceNameInURLTest_withH2.h2.db │ │ ├── testdb_for_DS1081NullValueTest.h2.db │ │ ├── testdb_for_DS1090EscapeNonPrintableCharactersTestCase_withH2.h2.db │ │ ├── testdb_for_DS1111UserRoleExtensionTestCase_withH2.h2.db │ │ ├── testdb_for_DS1209EqualElementNamesInJSONHierarchyTestCase_withH2.h2.db │ │ ├── testdb_for_DSS.h2.db │ │ ├── testdb_for_DSSCallMediatorTestCase.h2.db │ │ ├── testdb_for_DataTypesTestCase_withH2.h2.db │ │ ├── testdb_for_DistributedTransactionTestCase_withH2.h2.db │ │ ├── testdb_for_DistributedTransactionTestCase_withH2_2.h2.db │ │ ├── testdb_for_FileServiceTestCase_withH2.h2.db │ │ ├── testdb_for_InOnlyRequestsServiceTestCase_withH2.h2.db │ │ ├── testdb_for_MI2335DynamicSQLDeploymentTestCase_withH2.h2.db │ │ ├── testdb_for_NestedQueryTestCase_withH2.h2.db │ │ ├── testdb_for_ODataMetaDataTestCase_withH2.h2.db │ │ ├── testdb_for_ODataTestCase_withH2.h2.db │ │ ├── testdb_for_OutputMappingAsAttributeDataServiceTestCase_withH2.h2.db │ │ ├── testdb_for_RDBMSSampleTestCase_withH2.h2.db │ │ ├── testdb_for_RegexTestCase_withH2.h2.db │ │ ├── testdb_for_RequestBoxTestCase_withH2.h2.db │ │ ├── testdb_for_RestFulServiceTestCase_withH2.h2.db │ │ ├── testdb_for_ReturnGeneratedKeysTestCase_withH2.h2.db │ │ ├── testdb_for_ReturnRequestStatusTest_withH2.h2.db │ │ ├── testdb_for_ReturnUpdatedRowCountTestCase_withH2.h2.db │ │ └── testdb_for_WhiteSpaceWithQueryParamsTest_withH2.h2.db │ │ ├── instrumentation.txt │ │ ├── log4j.properties │ │ ├── log4j2.properties │ │ ├── security │ │ └── policies │ │ │ ├── scenario-config.xml │ │ │ ├── scenario1-policy.xml │ │ │ ├── scenario10-policy.xml │ │ │ ├── scenario11-policy.xml │ │ │ ├── scenario12-policy.xml │ │ │ ├── scenario13-policy.xml │ │ │ ├── scenario14-policy.xml │ │ │ ├── scenario15-policy.xml │ │ │ ├── scenario16-policy.xml │ │ │ ├── scenario17-policy.xml │ │ │ ├── scenario2-policy.xml │ │ │ ├── scenario3-policy.xml │ │ │ ├── scenario4-policy.xml │ │ │ ├── scenario5-policy.xml │ │ │ ├── scenario6-policy.xml │ │ │ ├── scenario7-policy.xml │ │ │ ├── scenario8-policy.xml │ │ │ └── scenario9-policy.xml │ │ ├── smokeTestng.xml │ │ └── testng.xml ├── management-api-tests │ ├── pom.xml │ └── src │ │ └── test │ │ ├── java │ │ └── org │ │ │ └── wso2 │ │ │ └── micro │ │ │ └── integrator │ │ │ └── api │ │ │ ├── ApiResourceTestCase.java │ │ │ ├── AuditLogTestCase.java │ │ │ ├── CarbonAppResourceTestCase.java │ │ │ ├── ConfigsResourceTestCase.java │ │ │ ├── ConnectorResourceTestCase.java │ │ │ ├── DataServiceResourceTestCase.java │ │ │ ├── DataSourceResourceTestCase.java │ │ │ ├── EndpointResourceTestCase.java │ │ │ ├── InboundEndpointResourceTestCase.java │ │ │ ├── LocalEntryResourceTestCase.java │ │ │ ├── LogConfigsResourceTestCase.java │ │ │ ├── LogFilesResourceTestCase.java │ │ │ ├── ManagementAPITest.java │ │ │ ├── MessageProcessorResourceTestCase.java │ │ │ ├── MessageStoreResourceTestCase.java │ │ │ ├── MetaDataResourceTestCase.java │ │ │ ├── ProxyServiceResourceTestCase.java │ │ │ ├── RegistryResourcesTestCase.java │ │ │ ├── SequenceResourceTestCase.java │ │ │ ├── TaskResourceTestCase.java │ │ │ ├── TemplatesResourceTestCase.java │ │ │ └── TokenUtil.java │ │ └── resources │ │ ├── artifacts │ │ └── ESB │ │ │ ├── capp │ │ │ └── esb-artifacts-car_1.0.0.car │ │ │ ├── registry-resources │ │ │ ├── test-initial.txt │ │ │ ├── test-json.json │ │ │ ├── test-update.txt │ │ │ └── test-xml.xml │ │ │ └── server │ │ │ ├── conf │ │ │ ├── deployment.toml │ │ │ └── log4j2.properties │ │ │ └── repository │ │ │ └── deployment │ │ │ └── server │ │ │ ├── carbonapps │ │ │ ├── DataSourceCarbonApplication_1.0.0.car │ │ │ ├── FaultyCAppCompositeExporter_1.0.0.car │ │ │ ├── connectors-data-services-pack_1.0.0.car │ │ │ ├── data-sources-pack_1.0.0-SNAPSHOT.car │ │ │ └── hello-worldCompositeExporter_1.0.0.car │ │ │ └── synapse-configs │ │ │ └── default │ │ │ ├── api │ │ │ ├── AbcRestApi.xml │ │ │ ├── HelloRestApi.xml │ │ │ └── testApi.xml │ │ │ ├── endpoints │ │ │ ├── AbcEndPoint.xml │ │ │ ├── HelloEndPoint.xml │ │ │ └── testEndpoint.xml │ │ │ ├── inbound-endpoints │ │ │ ├── HL7_Inbound.xml │ │ │ └── testInboundEndpoint.xml │ │ │ ├── local-entries │ │ │ ├── AbcLocalEntry.xml │ │ │ └── HelloLocalEntry.xml │ │ │ ├── message-processors │ │ │ ├── AbcMessageProcessor.xml │ │ │ ├── HelloMessageProcessor.xml │ │ │ └── testMessageProcessor.xml │ │ │ ├── message-stores │ │ │ ├── AbcMessageStore.xml │ │ │ ├── HelloMessageStore.xml │ │ │ └── teststore.xml │ │ │ ├── proxy-services │ │ │ ├── AbcProxyService.xml │ │ │ ├── HelloProxyService.xml │ │ │ └── testProxy.xml │ │ │ ├── sequences │ │ │ ├── AbcSequence.xml │ │ │ ├── TestIn.xml │ │ │ ├── fault.xml │ │ │ └── testSequence.xml │ │ │ ├── tasks │ │ │ └── AbcScheduledTask.xml │ │ │ └── templates │ │ │ ├── AbcTemplate.xml │ │ │ └── testSequenceTemplate.xml │ │ ├── automation.xml │ │ ├── automationXMLSchema.xsd │ │ ├── log4j.properties │ │ └── testng.xml ├── mediation-tests │ ├── coverage-report │ │ ├── filters.txt │ │ ├── instrumentation.txt │ │ └── pom.xml │ ├── custom-mediator-samples │ │ └── ClassMediatorDemo │ │ │ ├── pom.xml │ │ │ └── src │ │ │ └── main │ │ │ └── java │ │ │ └── com │ │ │ └── wso2 │ │ │ └── example │ │ │ └── CsvValidatorMediator.java │ ├── pom.xml │ ├── service-samples │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ └── java │ │ │ └── org │ │ │ └── wso2 │ │ │ └── esb │ │ │ └── integration │ │ │ └── services │ │ │ └── jaxrs │ │ │ ├── coffeesample │ │ │ ├── CoffeeConfig.java │ │ │ ├── JaxRsApiApplication.java │ │ │ ├── OrderReader.java │ │ │ ├── StarbucksOutletService.java │ │ │ ├── StarbucksOutletServiceImpl.java │ │ │ └── bean │ │ │ │ ├── Customer.java │ │ │ │ ├── Order.java │ │ │ │ ├── Payment.java │ │ │ │ └── PaymentStatus.java │ │ │ ├── customersample │ │ │ ├── CustomerConfig.java │ │ │ ├── CustomerService.java │ │ │ ├── JaxRsApiApplication.java │ │ │ └── bean │ │ │ │ ├── Customer.java │ │ │ │ ├── Order.java │ │ │ │ └── Product.java │ │ │ ├── musicsample │ │ │ ├── JaxRsApiApplication.java │ │ │ ├── MusicConfig.java │ │ │ ├── MusicRestService.java │ │ │ ├── MusicService.java │ │ │ ├── Server.java │ │ │ └── bean │ │ │ │ ├── Music.java │ │ │ │ └── Singer.java │ │ │ └── peoplesample │ │ │ ├── AppConfig.java │ │ │ ├── JaxRsApiApplication.java │ │ │ ├── PeopleRestService.java │ │ │ ├── PeopleService.java │ │ │ ├── Starter.java │ │ │ ├── bean │ │ │ └── Person.java │ │ │ └── exceptions │ │ │ ├── PersonAlreadyExistsException.java │ │ │ └── PersonNotFoundException.java │ ├── tests-http │ │ ├── pom.xml │ │ └── src │ │ │ └── test │ │ │ ├── java │ │ │ └── org │ │ │ │ └── wso2 │ │ │ │ └── micro │ │ │ │ └── integrator │ │ │ │ └── http │ │ │ │ ├── backend │ │ │ │ └── test │ │ │ │ │ ├── BackendClosesConnectionAsSoonAsTheRequestReceivedTestCase.java │ │ │ │ │ ├── BackendClosesConnectionWhileSendingBodyTestCase.java │ │ │ │ │ ├── BackendClosesConnectionWhileSendingHeadersTestCase.java │ │ │ │ │ ├── BackendRespondWith200TestCase.java │ │ │ │ │ ├── BackendRespondWith400TestCase.java │ │ │ │ │ ├── BackendRespondWith500TestCase.java │ │ │ │ │ ├── ChunkedBackendTestCase.java │ │ │ │ │ ├── ContentLengthGreaterThanResponseSizeBackendTestCase.java │ │ │ │ │ ├── ContentLengthLowerThanResponseSizeBackendTestCase.java │ │ │ │ │ ├── ContentTypeAndBodyMismatchBackendTestCase.java │ │ │ │ │ ├── HTTPCoreBackendTest.java │ │ │ │ │ ├── InvalidChunkedBackendTestCase.java │ │ │ │ │ ├── MalformedBackendTestCase.java │ │ │ │ │ ├── SlowReadingBackendTestCase.java │ │ │ │ │ └── SlowWritingBackendTestCase.java │ │ │ │ ├── client │ │ │ │ └── test │ │ │ │ │ ├── ClientSendsChunksTestCase.java │ │ │ │ │ ├── ClientSendsInvalidChunksTestCase.java │ │ │ │ │ ├── ClosesConnectionBeforeReceivingResponseTestCase.java │ │ │ │ │ ├── ClosesConnectionBeforeSendingRequestBody.java │ │ │ │ │ ├── ClosesConnectionWhileSendingHeaders.java │ │ │ │ │ ├── ClosesConnectionWhileSendingRequestBody.java │ │ │ │ │ ├── ContentLengthDifferFromPayloadContentLength.java │ │ │ │ │ ├── ContentTypeAndBodyMismatchRequest.java │ │ │ │ │ ├── HTTPCoreClientTest.java │ │ │ │ │ ├── MalformedHTTPRequest.java │ │ │ │ │ ├── SlowReadingClientTestCase.java │ │ │ │ │ ├── SlowWritingClientTestCase.java │ │ │ │ │ └── WaitUntilAResponseReceivedTestCase.java │ │ │ │ └── utils │ │ │ │ ├── BackendResponse.java │ │ │ │ ├── BackendServer.java │ │ │ │ ├── Constants.java │ │ │ │ ├── HTTPRequest.java │ │ │ │ ├── HTTPRequestWithBackendResponse.java │ │ │ │ ├── HttpRequestWithExpectedHTTPSC.java │ │ │ │ ├── MultiThreadedHTTPClient.java │ │ │ │ ├── PayloadSize.java │ │ │ │ ├── RequestMethods.java │ │ │ │ ├── SamplePayloads.java │ │ │ │ ├── Utils.java │ │ │ │ └── tcpclient │ │ │ │ ├── Client.java │ │ │ │ ├── SecureTCPClient.java │ │ │ │ └── TCPClient.java │ │ │ └── resources │ │ │ ├── artifacts │ │ │ └── ESB │ │ │ │ └── server │ │ │ │ └── repository │ │ │ │ └── deployment │ │ │ │ └── server │ │ │ │ └── synapse-configs │ │ │ │ └── default │ │ │ │ └── api │ │ │ │ ├── HTTPCoreBETestAPI.xml │ │ │ │ └── HTTPCoreTestAPI.xml │ │ │ ├── automation.xml │ │ │ ├── automationXMLSchema.xsd │ │ │ ├── helper │ │ │ └── cpu_usage.sh │ │ │ ├── log4j.properties │ │ │ └── testng.xml │ ├── tests-mediator-1 │ │ ├── .gitignore │ │ ├── pom.xml │ │ └── src │ │ │ └── test │ │ │ ├── java │ │ │ └── org │ │ │ │ └── wso2 │ │ │ │ └── carbon │ │ │ │ └── esb │ │ │ │ ├── mediator │ │ │ │ └── test │ │ │ │ │ ├── aggregate │ │ │ │ │ ├── AggregateEmptyJsonPayloadTestCase.java │ │ │ │ │ ├── AggregateOnCompleteConditionErrorTestCase.java │ │ │ │ │ ├── AggregateWithHighMaxAndLowMinTestCase.java │ │ │ │ │ ├── AggregateWithJSONAndMaxMinLimits.java │ │ │ │ │ ├── AggregateWithMaxMInLimitsTestCase.java │ │ │ │ │ ├── AggregateWithinTimeoutTestCase.java │ │ │ │ │ ├── AggregatedEnclosingElementTestCase.java │ │ │ │ │ ├── AggregatedRequestClient.java │ │ │ │ │ ├── AggregationWithoutMaxValueTestCase.java │ │ │ │ │ ├── CheckAggregateContentTestCase.java │ │ │ │ │ ├── ESBJAVA4792AggregateTimeoutTestCase.java │ │ │ │ │ ├── FaultSeqInvokeWithAggregateTimeoutTestCase.java │ │ │ │ │ ├── HighTimeoutWithLessMessagesTestCase.java │ │ │ │ │ ├── LargeAggregationWithoutTimeoutValueTestCase.java │ │ │ │ │ ├── NestedAggregatesTestCase.java │ │ │ │ │ ├── OnCompleteSequenceFromGreg.java │ │ │ │ │ ├── OnCompleteSequenceFromRegistryTestCase.java │ │ │ │ │ ├── PropertyWithinSequenceTestCase.java │ │ │ │ │ ├── SoapHeaderBlocksTestCase.java │ │ │ │ │ ├── SpecifyBothMinMaxByExpressionTestCase.java │ │ │ │ │ ├── SpecifyMaxMessageCountAsExpressionTestCase.java │ │ │ │ │ └── SpecifyMinMessageCountAsExpressionTestCase.java │ │ │ │ │ ├── cache │ │ │ │ │ ├── CacheControlHeadersTestCase.java │ │ │ │ │ ├── CacheResponseCodeRegexTestCase.java │ │ │ │ │ ├── CacheTestCase.java │ │ │ │ │ ├── CollectorTypeTestCase.java │ │ │ │ │ ├── ESBJAVA4721PIWithCacheTestCase.java │ │ │ │ │ ├── ExcludeHeadersWithCacheTestCase.java │ │ │ │ │ ├── ExcludeMultipleHeadersWithCacheTestCase.java │ │ │ │ │ ├── JsonResponseWithCacheTestCase.java │ │ │ │ │ └── LargeCacheTimeOutTestCase.java │ │ │ │ │ ├── cacheMy │ │ │ │ │ └── MyTest.java │ │ │ │ │ ├── call │ │ │ │ │ ├── CallMediatorAPIWithNamedSeqCase.java │ │ │ │ │ ├── CallMediatorBlockingAPITestCase.java │ │ │ │ │ ├── CallMediatorBlockingDirectEndpointTestCase.java │ │ │ │ │ ├── CallMediatorBlockingFailoverTestCase.java │ │ │ │ │ ├── CallMediatorBlockingFilterTestCase.java │ │ │ │ │ ├── CallMediatorBlockingInTemplateTestCase.java │ │ │ │ │ ├── CallMediatorBlockingInboundOutboundPolicySecurityTestCase.java │ │ │ │ │ ├── CallMediatorBlockingIndirectEndpointTestCase.java │ │ │ │ │ ├── CallMediatorBlockingLoadBalanceFailoverTest.java │ │ │ │ │ ├── CallMediatorBlockingProxyWithNamedSeqCase.java │ │ │ │ │ ├── CallMediatorBlockingSecurityTestCase.java │ │ │ │ │ ├── CallMediatorBlockingSwitchTestCase.java │ │ │ │ │ ├── CallMediatorBlockingTransportHeaderTestCase.java │ │ │ │ │ ├── CallMediatorBlockingWSDLEndpointTestCase.java │ │ │ │ │ ├── CallMediatorFailOverTestCase.java │ │ │ │ │ ├── CallMediatorFaultHandlingTests.java │ │ │ │ │ ├── CallMediatorFaultTriggerTestCase.java │ │ │ │ │ ├── CallMediatorHttpStatusResponseTestCase.java │ │ │ │ │ ├── CallMediatorInAPITestCase.java │ │ │ │ │ ├── CallMediatorInBothProxyInAndOutSequencesTestCase.java │ │ │ │ │ ├── CallMediatorInCloneTargetSequencesTestCase.java │ │ │ │ │ ├── CallMediatorInCloneTestCase.java │ │ │ │ │ ├── CallMediatorInFaultSeqTestCase.java │ │ │ │ │ ├── CallMediatorInFilterTestCase.java │ │ │ │ │ ├── CallMediatorInIterateTestCase.java │ │ │ │ │ ├── CallMediatorInNestedFilterSwitchScenario2TestCase.java │ │ │ │ │ ├── CallMediatorInNestedFilterSwitchTestCase.java │ │ │ │ │ ├── CallMediatorInNestedFilterTestCase.java │ │ │ │ │ ├── CallMediatorInSequenceScenario2TestCase.java │ │ │ │ │ ├── CallMediatorInSequenceTestCase.java │ │ │ │ │ ├── CallMediatorInSwitchTestCase.java │ │ │ │ │ ├── CallMediatorInTemplateTestCase.java │ │ │ │ │ ├── CallMediatorLoadBalanceFailoverTest.java │ │ │ │ │ ├── CallMediatorOutOnlyTestCase.java │ │ │ │ │ ├── CallMediatorProxyWithNamedSeqCase.java │ │ │ │ │ ├── ESBJAVA4469CallMediatorWithOutOnlyTestCase.java │ │ │ │ │ ├── ESBJAVA5216CallMediatorPerAPILogTest.java │ │ │ │ │ ├── ESBJAVA5217NoDefaultContentTypeTestCase.java │ │ │ │ │ ├── IntroductionToCallMediatorTestCase.java │ │ │ │ │ └── Util.java │ │ │ │ │ ├── callOut │ │ │ │ │ ├── CallOutDynamicEndPointTestCase.java │ │ │ │ │ ├── CallOutMediatorWithMTOMTestCase.java │ │ │ │ │ ├── CallOutMediatorWithOutOnlyPropertyTest.java │ │ │ │ │ ├── CallOutSC204WithNoContentTest.java │ │ │ │ │ ├── CalloutJMSHeadersTestCase.java │ │ │ │ │ ├── CalloutMediatorHandlingEmptySuccessResponseTestCase.java │ │ │ │ │ ├── CalloutStatusCodeTestCase.java │ │ │ │ │ ├── DynamicEndpointTestCase.java │ │ │ │ │ ├── InboundOutboundPolicySecurityTestCase.java │ │ │ │ │ ├── SecurityTestCase.java │ │ │ │ │ ├── SourceXpathTargetXpath.java │ │ │ │ │ ├── TestFaultSequenceCalled.java │ │ │ │ │ ├── TranportCleanupOnFaultTest.java │ │ │ │ │ ├── TransportHeaderTestCase.java │ │ │ │ │ ├── ValidPathAxis2RepoTestCase.java │ │ │ │ │ ├── ValidPathAxis2XmlTestCase.java │ │ │ │ │ └── XpathCallWithoutNSTest.java │ │ │ │ │ ├── callTemplate │ │ │ │ │ ├── CallTemplateIntegrationParamsWithValuesTestCase.java │ │ │ │ │ ├── CallTemplateWithValuesAndExpressionTestCase.java │ │ │ │ │ └── FuncCallWithoutParamsTest.java │ │ │ │ │ ├── clone │ │ │ │ │ ├── AvailabilityPollingUtils.java │ │ │ │ │ ├── CloneArtifactErrorTestCase.java │ │ │ │ │ ├── CloneBurstTestCase.java │ │ │ │ │ ├── CloneClient.java │ │ │ │ │ ├── CloneFunctionalContextTestCase.java │ │ │ │ │ ├── CloneIntegrationAnonymousEndpointsTestCase.java │ │ │ │ │ ├── CloneIntegrationEndpointsTestCase.java │ │ │ │ │ ├── CloneIntegrationNamedEndpointsTestCase.java │ │ │ │ │ ├── CloneIntegrationSequenceTestCase.java │ │ │ │ │ ├── CloneLargeMessageTestCase.java │ │ │ │ │ ├── CloneNegativeTestCase.java │ │ │ │ │ ├── CloneSOAPActionTestCase.java │ │ │ │ │ ├── CloneSmallMessageTestCase.java │ │ │ │ │ └── SecuredCloneMediatorTestCase.java │ │ │ │ │ ├── conditionalRouter │ │ │ │ │ └── ConditionalRouterIntegrationTest.java │ │ │ │ │ ├── db │ │ │ │ │ ├── DBTestUtil.java │ │ │ │ │ ├── dblookup │ │ │ │ │ │ └── DBLookupMediatorTestCase.java │ │ │ │ │ └── dbreport │ │ │ │ │ │ ├── DBMediatorUseTransaction.java │ │ │ │ │ │ └── DBReportMediatorTestCase.java │ │ │ │ │ ├── drop │ │ │ │ │ └── DropIntegrationTest.java │ │ │ │ │ ├── enrich │ │ │ │ │ ├── EnrichAddCustomHeaderTestCase.java │ │ │ │ │ ├── EnrichAndDoubleDropIntegrationTestCase.java │ │ │ │ │ ├── EnrichByGetPropertyCase.java │ │ │ │ │ ├── EnrichByOMTextTestCase.java │ │ │ │ │ ├── EnrichIntegrationAddBodyToChildXpathTestCase.java │ │ │ │ │ ├── EnrichIntegrationAddChildUsingXpathTest.java │ │ │ │ │ ├── EnrichIntegrationAddChildXpathTestCase.java │ │ │ │ │ ├── EnrichIntegrationAddContentAsChildTestCase.java │ │ │ │ │ ├── EnrichIntegrationAddDefinedPropertyToDefinedChildPropertyTestCase.java │ │ │ │ │ ├── EnrichIntegrationAddDefinedPropertyToDefinedSiblingPropertyTestCase.java │ │ │ │ │ ├── EnrichIntegrationAddPropertyAsChildInBodyTest.java │ │ │ │ │ ├── EnrichIntegrationAddPropertyAsChildTest.java │ │ │ │ │ ├── EnrichIntegrationAddPropertyAsSiblingTest.java │ │ │ │ │ ├── EnrichIntegrationAddSiblingInOutMessageTestCase.java │ │ │ │ │ ├── EnrichIntegrationAddSourceAsSiblingInBodyTest.java │ │ │ │ │ ├── EnrichIntegrationBodyToChildOfBodyTestCase.java │ │ │ │ │ ├── EnrichIntegrationBodyToSiblingOfBodyTestCase.java │ │ │ │ │ ├── EnrichIntegrationBodyToXpathSiblingTestCase.java │ │ │ │ │ ├── EnrichIntegrationCopyXpathOfSingleNodeTest.java │ │ │ │ │ ├── EnrichIntegrationMultipleNodeReplace.java │ │ │ │ │ ├── EnrichIntegrationReplaceBodyUsingSourceTest.java │ │ │ │ │ ├── EnrichIntegrationReplaceBodyUsingXpathTest.java │ │ │ │ │ ├── EnrichIntegrationReplaceBodyWithInline.java │ │ │ │ │ ├── EnrichIntegrationReplaceBodyWithInlineTestCase.java │ │ │ │ │ ├── EnrichIntegrationReplaceByPropertyTestCase.java │ │ │ │ │ ├── EnrichIntegrationReplaceEnvelopTestCase.java │ │ │ │ │ ├── EnrichIntegrationReplaceEnvelopeTestCase.java │ │ │ │ │ ├── EnrichIntegrationReplaceEnvelopeWithPropertyTestCase.java │ │ │ │ │ ├── EnrichIntegrationReplaceInlineContentFromConfigRegistryTestCase.java │ │ │ │ │ ├── EnrichIntegrationReplaceMessageBodyTestCase.java │ │ │ │ │ ├── EnrichIntegrationReplacePartOfMessageByBodyTest.java │ │ │ │ │ ├── EnrichIntegrationSiblingsTest.java │ │ │ │ │ ├── EnrichIntegrationSourceXpathAsChildTargetXpath.java │ │ │ │ │ ├── EnrichJSONPayload.java │ │ │ │ │ ├── EnrichJSONPayloadWithSpaceTest.java │ │ │ │ │ ├── EnrichMediatorFollowedByEnrichIntegrationTestCase.java │ │ │ │ │ ├── EnrichPreserveOrder.java │ │ │ │ │ ├── EnrichReplaceBodyBySpecifiedPropertyTestCase.java │ │ │ │ │ ├── ReplacePropertyByEnrichTestCase.java │ │ │ │ │ └── jsonpath │ │ │ │ │ │ └── EnrichIntegrationJsonPathTestCase.java │ │ │ │ │ ├── factory │ │ │ │ │ ├── JsonFormat_IncomingJson_ArgsJsonExpression_WithStream_TestCase.java │ │ │ │ │ ├── JsonFormat_IncomingJson_ArgsXmlExpression_WithOutStream_TestCase.java │ │ │ │ │ ├── JsonFormat_IncomingXml_ArgsXmlExpression_WithOutStream_TestCase.java │ │ │ │ │ ├── PayloadMediaTypeJsonXmlDefaultTestCase.java │ │ │ │ │ └── util │ │ │ │ │ │ └── RequestUtil.java │ │ │ │ │ ├── fault │ │ │ │ │ ├── ESBJAVA2615TestCase.java │ │ │ │ │ ├── ForceErrorOnSoapFaultPropertyTest.java │ │ │ │ │ ├── ProtocolViolationServer.java │ │ │ │ │ ├── Soap11FaultActorTestCase.java │ │ │ │ │ ├── Soap11FaultCodeClientTestCase.java │ │ │ │ │ ├── Soap11FaultCodeMustUnderstandTestCase.java │ │ │ │ │ ├── Soap11FaultCodeServerTestCase.java │ │ │ │ │ ├── Soap11FaultCodeVersionMismatchedTestCase.java │ │ │ │ │ ├── Soap11FaultDetailAsElementTestCase.java │ │ │ │ │ ├── Soap11FaultDetailsTestCase.java │ │ │ │ │ ├── Soap11FaultFullTestCase.java │ │ │ │ │ ├── Soap11FaultMessageTestCase.java │ │ │ │ │ ├── Soap11FaultOutSequenceTestCase.java │ │ │ │ │ ├── Soap11FaultStringExpressionTestCase.java │ │ │ │ │ ├── Soap11FaultStringValueTestCase.java │ │ │ │ │ ├── Soap11FaultWithAttributeResponseFalseTestCase.java │ │ │ │ │ ├── Soap11FaultWithAttributeResponseFalseWithAddressingTestCase.java │ │ │ │ │ ├── Soap11FaultWithAttributeResponseTrueTestCase.java │ │ │ │ │ ├── Soap12FaultActorTestCase.java │ │ │ │ │ ├── Soap12FaultCodeDataEncodingUnknownTestCase.java │ │ │ │ │ ├── Soap12FaultCodeMustUnderstandTestCase.java │ │ │ │ │ ├── Soap12FaultCodeReceiverTestCase.java │ │ │ │ │ ├── Soap12FaultCodeSenderTestCase.java │ │ │ │ │ ├── Soap12FaultCodeVersionMismatchedTestCase.java │ │ │ │ │ ├── Soap12FaultDetailAsElementTestCase.java │ │ │ │ │ ├── Soap12FaultDetailsTestCase.java │ │ │ │ │ ├── Soap12FaultFullTestCase.java │ │ │ │ │ ├── Soap12FaultMessageTestCase.java │ │ │ │ │ ├── Soap12FaultNodeTestCase.java │ │ │ │ │ ├── Soap12FaultOutSequenceTestCase.java │ │ │ │ │ ├── Soap12FaultStringExpressionTestCase.java │ │ │ │ │ ├── Soap12FaultStringValueTestCase.java │ │ │ │ │ ├── Soap12FaultWithAttributeResponseFalseTestCase.java │ │ │ │ │ ├── Soap12FaultWithAttributeResponseTrueTestCase.java │ │ │ │ │ └── Soap12FaultWithPropertyResponseFalseWithAddressingTestCase.java │ │ │ │ │ ├── filter │ │ │ │ │ └── FilterMediatorTest.java │ │ │ │ │ ├── foreach │ │ │ │ │ ├── ForEachJSONPayloadTestCase.java │ │ │ │ │ ├── ForEachManagedLifecycleTestCase.java │ │ │ │ │ ├── ForEachMediatorTestCase.java │ │ │ │ │ ├── ForEachPropertiesTestCase.java │ │ │ │ │ ├── ForEachPropertyMediatorTestCase.java │ │ │ │ │ ├── ForEachSequentialExecutionTestCase.java │ │ │ │ │ ├── ForEachWithIterateTestCase.java │ │ │ │ │ ├── ForeachNativeJSONTestCase.java │ │ │ │ │ ├── NestedForEachPropertiesTestCase.java │ │ │ │ │ ├── NestedForEachTestCase.java │ │ │ │ │ └── testInfiniteLoopingWithCallMediatorTestCase.java │ │ │ │ │ ├── header │ │ │ │ │ ├── SetHeaderActionTestCase.java │ │ │ │ │ └── SetHeaderToTestCase.java │ │ │ │ │ ├── in │ │ │ │ │ ├── InSequenceIntegrationTestCase.java │ │ │ │ │ └── InSequenceMediatorTest.java │ │ │ │ │ ├── iterate │ │ │ │ │ └── IterateClient.java │ │ │ │ │ ├── log │ │ │ │ │ ├── LogMediatorLevelTest.java │ │ │ │ │ └── LogMediatorLevelsAndCategoryTestCase.java │ │ │ │ │ ├── out │ │ │ │ │ └── OutIntegrationWithoutChildElementTestCase.java │ │ │ │ │ ├── payload │ │ │ │ │ └── factory │ │ │ │ │ │ ├── FormatPayloadWithOMTypeArgsExpressionTestCase.java │ │ │ │ │ │ ├── JsonFormat_IncomingJson_ArgsJsonExpression_WithStream_TestCase.java │ │ │ │ │ │ ├── JsonFormat_IncomingJson_ArgsXmlExpression_WithOutStream_TestCase.java │ │ │ │ │ │ ├── JsonFormat_IncomingJson_StartsWithSpaceTestCase.java │ │ │ │ │ │ ├── JsonFormat_IncomingXml_ArgsXmlExpression_WithOutStream_TestCase.java │ │ │ │ │ │ ├── PayloadFactoryIntegrationSpecialCharactersAtPayloadFactoryTestCase.java │ │ │ │ │ │ ├── PayloadFactoryLiteralArgumentTestCase.java │ │ │ │ │ │ ├── PayloadFactorySynapseExpressionTestCase.java │ │ │ │ │ │ ├── PayloadFactoryWithDynamicKeyTestCase.java │ │ │ │ │ │ ├── PayloadFactoryXMLJSONTestCase.java │ │ │ │ │ │ ├── PayloadFormatValueAndExpressionTestCase.java │ │ │ │ │ │ ├── PayloadFormatWithArgumentsTestCase.java │ │ │ │ │ │ ├── PayloadFormatWithNoArgumentTestCase.java │ │ │ │ │ │ ├── PayloadMediaTypeJsonXmlDefaultTestCase.java │ │ │ │ │ │ ├── TransformPayloadWhenArgsExpressionTestCase.java │ │ │ │ │ │ ├── TransformPayloadWhenArgsValueAndExpressionTestCase.java │ │ │ │ │ │ ├── TransformPayloadWhenArgsValueTestCase.java │ │ │ │ │ │ ├── TransformPayloadWhenNoArgsTestCase.java │ │ │ │ │ │ ├── TransformPayloadXmlArrayTestCase.java │ │ │ │ │ │ └── util │ │ │ │ │ │ └── RequestUtil.java │ │ │ │ │ ├── property │ │ │ │ │ ├── HTTPHeaderCaseSensitivityTestCase.java │ │ │ │ │ ├── NonAsciiCharactersForValuesOfPropertiesTestCase.java │ │ │ │ │ ├── NullValueTransportHeaderTestCase.java │ │ │ │ │ ├── PreserveXmlProcessingInstructionsPropertyTestCase.java │ │ │ │ │ ├── PropertyIntegrationAxis2ClientScopeTestCase.java │ │ │ │ │ ├── PropertyIntegrationAxis2PropertiesTestCase.java │ │ │ │ │ ├── PropertyIntegrationAxis2ScopeRemovePropertiesTestCase.java │ │ │ │ │ ├── PropertyIntegrationAxis2ScopeTestCase.java │ │ │ │ │ ├── PropertyIntegrationDISABLE_CHUNKING_PropertyTest.java │ │ │ │ │ ├── PropertyIntegrationDefaultScopeRemovePropertiesTestCase.java │ │ │ │ │ ├── PropertyIntegrationDefaultScopeTestCase.java │ │ │ │ │ ├── PropertyIntegrationDisableAddressingForOutMessagesTestCase.java │ │ │ │ │ ├── PropertyIntegrationDynamicNameTestCase.java │ │ │ │ │ ├── PropertyIntegrationFORCE_HTTP_10TestCase.java │ │ │ │ │ ├── PropertyIntegrationForceErrorOnSOAPFaultPropertyTestCase.java │ │ │ │ │ ├── PropertyIntegrationForceHttpContentLengthPropertyTestCase.java │ │ │ │ │ ├── PropertyIntegrationForceSCAcceptedPropertyTestCase.java │ │ │ │ │ ├── PropertyIntegrationGetFilePropertyTestCase.java │ │ │ │ │ ├── PropertyIntegrationHTTP_SCTestCase.java │ │ │ │ │ ├── PropertyIntegrationJmsCoorelationIDPropertyTestCase.java │ │ │ │ │ ├── PropertyIntegrationMessageFormatPropertyTestCase.java │ │ │ │ │ ├── PropertyIntegrationNO_ENTITY_BODY_PropertyTest.java │ │ │ │ │ ├── PropertyIntegrationNO_KEEPALIVE_PropertyTest.java │ │ │ │ │ ├── PropertyIntegrationOUT_ONLYPropertyTestCase.java │ │ │ │ │ ├── PropertyIntegrationOperationNamePropertyTestCase.java │ │ │ │ │ ├── PropertyIntegrationOperationScopeRemovePropertiesTestCase.java │ │ │ │ │ ├── PropertyIntegrationOperationScopeTestCase.java │ │ │ │ │ ├── PropertyIntegrationPOST_TO_URI_PropertyTestCase.java │ │ │ │ │ ├── PropertyIntegrationPRESERVE_WS_ADDRESSINGPropertyTest.java │ │ │ │ │ ├── PropertyIntegrationPropertyInTransportScopeTest.java │ │ │ │ │ ├── PropertyIntegrationRESTURLPostFixTestCase.java │ │ │ │ │ ├── PropertyIntegrationRegistryValuesTestCase.java │ │ │ │ │ ├── PropertyIntegrationResponseTestCase.java │ │ │ │ │ ├── PropertyIntegrationSystemDatePropertyTestCase.java │ │ │ │ │ ├── PropertyIntegrationSystemTimePropertyTestCase.java │ │ │ │ │ ├── PropertyIntegrationTRANSPORT_HEADERSPropertyTest.java │ │ │ │ │ ├── PropertyIntegrationTestCase.java │ │ │ │ │ ├── PropertyIntegrationTransportInNameTestCase.java │ │ │ │ │ ├── PropertyIntegrationTransportScopeRemovePropertiesTestCase.java │ │ │ │ │ ├── PropertyIntegrationTransportScopeTestCase.java │ │ │ │ │ ├── PropertyIntegrationXPathBodyTestCase.java │ │ │ │ │ ├── PropertyIntegrationXPathExtensionTestCase.java │ │ │ │ │ ├── PropertyIntegrationXPathTrpPropertyTestCase.java │ │ │ │ │ ├── PropertyIntegrationXpathAxis2PropertyTestCase.java │ │ │ │ │ ├── PropertyIntegrationXpathCtxPropertyTestCase.java │ │ │ │ │ ├── PropertyIntegrationXpathURLPropertyTestCase.java │ │ │ │ │ ├── PropertyJSONPathSupportTestCase.java │ │ │ │ │ ├── PropertyXPATH2FunctionsTestCase.java │ │ │ │ │ └── propertyIntegrationAxis2ClientRemovePropertiesTestCase.java │ │ │ │ │ ├── rewrite │ │ │ │ │ ├── AppendFullUrlTestCase.java │ │ │ │ │ ├── AppendHostNameTestCase.java │ │ │ │ │ ├── AppendPathTestCase.java │ │ │ │ │ ├── AppendPortTestCase.java │ │ │ │ │ ├── AppendProtocolTestCase.java │ │ │ │ │ ├── PrependFullUrlTestCase.java │ │ │ │ │ ├── PrependHostNameTestCase.java │ │ │ │ │ ├── PrependPathTestCase.java │ │ │ │ │ ├── PrependPortTestCase.java │ │ │ │ │ ├── PrependProtocolTestCase.java │ │ │ │ │ ├── ProtocolReWriteFromProperty.java │ │ │ │ │ ├── ProtocolReWriteTest.java │ │ │ │ │ ├── ReWriteFullUrlTestCase.java │ │ │ │ │ ├── RemoveReWriteFullUrlTestCase.java │ │ │ │ │ ├── RemoveReWriteHostNameTestCase.java │ │ │ │ │ ├── RemoveReWritePathTestCase.java │ │ │ │ │ ├── RemoveReWritePortTestCase.java │ │ │ │ │ ├── RemoveReWriteProtocolTestCase.java │ │ │ │ │ ├── Sample451.java │ │ │ │ │ ├── SetFullUrlTestCase.java │ │ │ │ │ ├── SetFullUrlWhenNoAddressingUrlTestCase.java │ │ │ │ │ ├── SetHostNameTestCase.java │ │ │ │ │ ├── SetPathTestCase.java │ │ │ │ │ ├── SetPortTestCase.java │ │ │ │ │ ├── SetProtocolTestCase.java │ │ │ │ │ ├── UrlReWriteByContext.java │ │ │ │ │ ├── UrlReWriteByHost.java │ │ │ │ │ ├── UrlReWriteByPort.java │ │ │ │ │ └── UrlReWriteByPortExpression.java │ │ │ │ │ ├── send │ │ │ │ │ ├── MTOMEnableDisableSendMediatorTestCase.java │ │ │ │ │ └── SendIntegrationEndpointAtConfigRegistryTestCase.java │ │ │ │ │ ├── sequence │ │ │ │ │ └── DynamicSequenceNullPointerExceptionTestCase.java │ │ │ │ │ ├── smooks │ │ │ │ │ └── SmooksMediatorTestCase.java │ │ │ │ │ ├── switchMediator │ │ │ │ │ ├── ESBJAVA1857TestCase.java │ │ │ │ │ ├── FurtherProcessingOfSwitchAfterMatchTestCase.java │ │ │ │ │ ├── InvalidPrefixTestCase.java │ │ │ │ │ ├── InvalidXPathSynapseConfigTestCase.java │ │ │ │ │ ├── InvokeOnErrorSequenceFromSwitchIntegrationTestCase.java │ │ │ │ │ ├── SOAPNSBasedSwitching.java │ │ │ │ │ ├── SOAPNSBasedSwitchingNegativeCase.java │ │ │ │ │ ├── SwitchInsideSwitchTestCase.java │ │ │ │ │ ├── SwitchIntegrationSubsequenceMatchingTestCase.java │ │ │ │ │ ├── SwitchingBasedOnAddressTestCase.java │ │ │ │ │ └── WithoutDefaultCase.java │ │ │ │ │ ├── throttle │ │ │ │ │ ├── ConcurrencyAndRequestThrottlingTestConcurrency.java │ │ │ │ │ ├── ConcurrencyAndRequestThrottlingTestRequest.java │ │ │ │ │ ├── ConcurrencyThrottlingMaxAccessOneTest.java │ │ │ │ │ ├── ConcurrencyThrottlingTestCase.java │ │ │ │ │ ├── ConcurrentAccessLargeRequestCountSmallValueTest.java │ │ │ │ │ ├── InvalidThrottlingPolicyTest.java │ │ │ │ │ ├── MaximumConcurrentAccessTest.java │ │ │ │ │ ├── SpecifyThrottlingPolicyAsRegistryKeyTest.java │ │ │ │ │ └── utils │ │ │ │ │ │ ├── ConcurrencyAndRequestThrottleTestClient.java │ │ │ │ │ │ ├── ConcurrencyThrottleTestClient.java │ │ │ │ │ │ └── ThrottleTestCounter.java │ │ │ │ │ ├── transaction │ │ │ │ │ └── TransactionMediatorTestCase.java │ │ │ │ │ └── v2 │ │ │ │ │ ├── ForEachMediatorTestCase.java │ │ │ │ │ ├── LogMediatorTestCase.java │ │ │ │ │ ├── ScatterGatherTestCase.java │ │ │ │ │ └── ThrowMediatorTestCase.java │ │ │ │ └── message │ │ │ │ ├── processor │ │ │ │ └── test │ │ │ │ │ ├── DeactivatedCappMPBehaviourOnRestartTestCase.java │ │ │ │ │ ├── DynamicallySettingWSAHeadersTestCase.java │ │ │ │ │ ├── MessageProcessorPersistenceTestCase.java │ │ │ │ │ ├── MessageProcessorSOAPHeadersTestcase.java │ │ │ │ │ └── forwarding │ │ │ │ │ ├── ESBJAVA2006RetryOnSOAPFaultTestCase.java │ │ │ │ │ └── WithInMemoryStoreTestCase.java │ │ │ │ └── store │ │ │ │ ├── jdbc │ │ │ │ └── test │ │ │ │ │ ├── JDBCMessageProcessorTestCase.java │ │ │ │ │ └── JDBCMessageStoreProcRESTTestCase.java │ │ │ │ └── test │ │ │ │ ├── DynamicMessageRoutingTestCase.java │ │ │ │ ├── JMSEndpointSuspensionViaVFSTest.java │ │ │ │ ├── MessageStoreMessageCleaningTestCase.java │ │ │ │ ├── MessageStoreMessageConcurrencyTestCase.java │ │ │ │ ├── MessageStoreMessageDeleteTestCase.java │ │ │ │ ├── MessageStoreMessageStoringTestCase.java │ │ │ │ └── MessageStorePersistenceTestCase.java │ │ │ └── resources │ │ │ ├── artifacts │ │ │ ├── AXIS2 │ │ │ │ ├── aar │ │ │ │ │ ├── Axis2 Service.aar │ │ │ │ │ ├── Axis2Service.aar │ │ │ │ │ ├── Echo.aar │ │ │ │ │ ├── HelloWorld.aar │ │ │ │ │ ├── LBService1.aar │ │ │ │ │ ├── LBService2.aar │ │ │ │ │ ├── LBService3.aar │ │ │ │ │ ├── LBServiceWithSleep.aar │ │ │ │ │ ├── MTOMSwASampleService.aar │ │ │ │ │ ├── RetryOnSoapFault.aar │ │ │ │ │ ├── SecureStockQuoteService.aar │ │ │ │ │ ├── SecureStockQuoteServiceScenario1.aar │ │ │ │ │ ├── SecureStockQuoteServiceScenario10.aar │ │ │ │ │ ├── SecureStockQuoteServiceScenario2.aar │ │ │ │ │ ├── SecureStockQuoteServiceScenario3.aar │ │ │ │ │ ├── SecureStockQuoteServiceScenario4.aar │ │ │ │ │ ├── SecureStockQuoteServiceScenario5.aar │ │ │ │ │ ├── SecureStockQuoteServiceScenario6.aar │ │ │ │ │ ├── SecureStockQuoteServiceScenario7.aar │ │ │ │ │ ├── SecureStockQuoteServiceScenario8.aar │ │ │ │ │ ├── SecureStockQuoteServiceScenario9.aar │ │ │ │ │ ├── SimpleStockQuoteService.aar │ │ │ │ │ ├── SimpleStockQuoteService_timeout.aar │ │ │ │ │ ├── StratosSchemaimportservice.aar │ │ │ │ │ ├── StudentService.aar │ │ │ │ │ ├── geows.aar │ │ │ │ │ ├── hcfacilitylocator.aar │ │ │ │ │ └── hcinformationservice.aar │ │ │ │ └── config │ │ │ │ │ ├── property_axis2_server.xml │ │ │ │ │ ├── test_axis2_server_9000.xml │ │ │ │ │ ├── test_axis2_server_9001.xml │ │ │ │ │ ├── test_axis2_server_9002.xml │ │ │ │ │ ├── test_axis2_server_9003.xml │ │ │ │ │ ├── test_axis2_server_9007.xml │ │ │ │ │ ├── test_axis2_server_9009.xml │ │ │ │ │ ├── test_axis2_server_9015.xml │ │ │ │ │ └── test_axis2_server_9017.xml │ │ │ └── ESB │ │ │ │ ├── car │ │ │ │ ├── DemoProxy-1.0.0.car │ │ │ │ ├── ESBproject1-1.0.0.car │ │ │ │ ├── ESBproject2-1.0.0.car │ │ │ │ ├── ESBproject3-1.0.0.car │ │ │ │ ├── ESBproject4-1.0.0.car │ │ │ │ ├── MediatorCApp2_1.0.0.car │ │ │ │ ├── MediatorCApp_1.0.0.car │ │ │ │ ├── ServiceChaining-1.0.0.car │ │ │ │ ├── SoapHeaderTestRegFiles_1.0.0.car │ │ │ │ ├── SynchroDepInValidCarApp_1.0.0.car │ │ │ │ ├── SynchroDepValidCarApp_1.0.0.car │ │ │ │ ├── esb-artifacts-car_1.0.0.car │ │ │ │ └── xslt-transformation-car_1.0.0.car │ │ │ │ ├── compression │ │ │ │ └── gzip │ │ │ │ │ └── gzip-compression.xml │ │ │ │ ├── config │ │ │ │ └── testconfig.xml │ │ │ │ ├── endpoint │ │ │ │ ├── CARBON11016_synapse.xml │ │ │ │ ├── addressEndpointConfig │ │ │ │ │ ├── addressEP_Test.xml │ │ │ │ │ ├── invalidPropertyAddressEndPoint.xml │ │ │ │ │ └── synapse.xml │ │ │ │ ├── defaultEndpointConfig │ │ │ │ │ ├── defaultEP_Test.xml │ │ │ │ │ └── synapse.xml │ │ │ │ ├── endpointFotmatRestPTTestConfig.xml │ │ │ │ ├── failoverEndpointConfig │ │ │ │ │ ├── failOverWithDisabledErrors.xml │ │ │ │ │ ├── failoverEP_Test.xml │ │ │ │ │ └── synapse.xml │ │ │ │ ├── httpEndpointConfig │ │ │ │ │ └── synapse.xml │ │ │ │ ├── loadbalancingEndpointConfig │ │ │ │ │ ├── loadbalancingEP_Test.xml │ │ │ │ │ └── synapse.xml │ │ │ │ ├── wsdlEndpointConfig │ │ │ │ │ ├── synapse.xml │ │ │ │ │ └── wsdlEP_Test.xml │ │ │ │ └── wsdlTestEp.xml │ │ │ │ ├── endpointlookup.xml │ │ │ │ ├── entitlementMediatorConfig │ │ │ │ └── entitlementMediatorSynapse.xml │ │ │ │ ├── hl7Transport │ │ │ │ └── axis2.xml │ │ │ │ ├── jaxrs │ │ │ │ ├── EnrichJSONPayload_API.xml │ │ │ │ ├── getperson.xml │ │ │ │ └── putpeopleproxy.xml │ │ │ │ ├── jdbc │ │ │ │ ├── JDBCMessageStoreREST.xml │ │ │ │ └── jdbc_message_store_and_processor_service.xml │ │ │ │ ├── jms │ │ │ │ └── transport │ │ │ │ │ ├── ESBJAVA-1716_messageStore.xml │ │ │ │ │ ├── ESBJAVA-1793MessageStore-targetEndPointFormat-pox.xml │ │ │ │ │ ├── HTTP_SC.xml │ │ │ │ │ ├── JMSAXISFault.xml │ │ │ │ │ ├── JMSMessageStoreREST.xml │ │ │ │ │ ├── axis2config │ │ │ │ │ ├── activemq │ │ │ │ │ │ └── axis2.xml │ │ │ │ │ └── mb │ │ │ │ │ │ └── axis2.xml │ │ │ │ │ ├── jms_endpoint_proxy_service.xml │ │ │ │ │ ├── jms_message_store_and_processor_service.xml │ │ │ │ │ ├── jms_message_store_unavailable_service.xml │ │ │ │ │ ├── jms_out_only_proxy.xml │ │ │ │ │ ├── jms_transport.xml │ │ │ │ │ ├── jms_transport_jms_suspension.xml │ │ │ │ │ ├── jms_transport_proxy_service.xml │ │ │ │ │ ├── jms_wait_response.xml │ │ │ │ │ ├── jmsclient-and-restService.xml │ │ │ │ │ ├── jndi.properties │ │ │ │ │ ├── msgInjection │ │ │ │ │ ├── msg_injecting_task.xml │ │ │ │ │ └── msg_store.xml │ │ │ │ │ └── topic │ │ │ │ │ └── send_messages_topic_synapse.xml │ │ │ │ ├── json │ │ │ │ ├── blockingSenderWithJson.xml │ │ │ │ ├── enrichSampleInput.json │ │ │ │ ├── json-to-soap-conversion.xml │ │ │ │ ├── jsonArrayAsChildInput.json │ │ │ │ └── jsonArrayAsRootInput.json │ │ │ │ ├── local │ │ │ │ ├── axis2.xml │ │ │ │ ├── carbon.xml │ │ │ │ ├── local-transport-header.xml │ │ │ │ └── local-transport.xml │ │ │ │ ├── localEntryConfig │ │ │ │ ├── sequence_as_local_registry_entry.xml │ │ │ │ └── throttle_policy_as_a_local_entry.xml │ │ │ │ ├── mediatorconfig │ │ │ │ ├── aggregate │ │ │ │ │ ├── OnCompleteWithTimeoutTest.xml │ │ │ │ │ ├── aggregateConfig.xml │ │ │ │ │ └── aggregate_json.xml │ │ │ │ ├── cache │ │ │ │ │ ├── CacheApis.xml │ │ │ │ │ ├── CacheControlHeaders.xml │ │ │ │ │ ├── LargeCacheTimeOut.xml │ │ │ │ │ ├── axis2.xml │ │ │ │ │ └── synapse.properties │ │ │ │ ├── call │ │ │ │ │ ├── AcceptedEndpointProxy.xml │ │ │ │ │ ├── BadRequestEndpointProxy.xml │ │ │ │ │ ├── CallMediatorBlockingDirectEndpointTest.xml │ │ │ │ │ ├── CallMediatorBlockingFailoverEndpointTest.xml │ │ │ │ │ ├── CallMediatorBlockingFilterTest.xml │ │ │ │ │ ├── CallMediatorBlockingInTemplateTest.xml │ │ │ │ │ ├── CallMediatorBlockingInboundOutboundSecurity.xml │ │ │ │ │ ├── CallMediatorBlockingSecurity.xml │ │ │ │ │ ├── CallMediatorBlockingSwitchTest.xml │ │ │ │ │ ├── CallMediatorBlockingTransportHeader.xml │ │ │ │ │ ├── CallMediatorBlockingWSDLEndpointTest.xml │ │ │ │ │ ├── CalloutWithDynamicEndPointsProxy.xml │ │ │ │ │ ├── ConflictEndpointProxy.xml │ │ │ │ │ ├── ESBJAVA4469.xml │ │ │ │ │ ├── ForbiddenEndpointProxy.xml │ │ │ │ │ ├── HTTPStatusResponseAPI.xml │ │ │ │ │ ├── NotFoundEndpointProxy.xml │ │ │ │ │ ├── ServerErrorEndpointProxy.xml │ │ │ │ │ ├── UnauthorizedEndpointProxy.xml │ │ │ │ │ ├── faultHandlingTests.xml │ │ │ │ │ ├── loadBalanceCallBlockingTestProxy.xml │ │ │ │ │ ├── loadbalancecalltestproxy.xml │ │ │ │ │ ├── synapse.xml │ │ │ │ │ ├── synapse1.xml │ │ │ │ │ ├── synapse10.xml │ │ │ │ │ ├── synapse11.xml │ │ │ │ │ ├── synapse14.xml │ │ │ │ │ ├── synapse15.xml │ │ │ │ │ ├── synapse17.xml │ │ │ │ │ ├── synapse19.xml │ │ │ │ │ ├── synapse2.xml │ │ │ │ │ ├── synapse20.xml │ │ │ │ │ ├── synapse21.xml │ │ │ │ │ ├── synapse3.xml │ │ │ │ │ ├── synapse4.xml │ │ │ │ │ ├── synapse5.xml │ │ │ │ │ ├── synapse6.xml │ │ │ │ │ ├── synapse7.xml │ │ │ │ │ ├── synapse8.xml │ │ │ │ │ ├── synapse9.xml │ │ │ │ │ ├── synapse_expressions.xml │ │ │ │ │ └── synapse_param_with_values.xml │ │ │ │ ├── call_template │ │ │ │ │ ├── synapse.xml │ │ │ │ │ └── synapse_expressions.xml │ │ │ │ ├── callout │ │ │ │ │ ├── CallOutMediatorOutOnlyTest.xml │ │ │ │ │ ├── CallOutMediatorWithMTOMTest.xml │ │ │ │ │ ├── CalloutStatusCodeTest.xml │ │ │ │ │ ├── DynamicEndpointTest.xml │ │ │ │ │ ├── DynamicProperties.xml │ │ │ │ │ ├── FaultSeq.xml │ │ │ │ │ ├── InboundOutboundSecurityTest.xml │ │ │ │ │ ├── SecurityTest.xml │ │ │ │ │ ├── TranportCleanupOnFaultTest.xml │ │ │ │ │ ├── ValidPath_Axis2Repo.xml │ │ │ │ │ ├── ValidPath_Axis2Xml.xml │ │ │ │ │ ├── client_repo │ │ │ │ │ │ └── conf │ │ │ │ │ │ │ └── axis2.xml │ │ │ │ │ ├── synapse_sample_430.xml │ │ │ │ │ └── transport_headers.xml │ │ │ │ ├── clone │ │ │ │ │ ├── cloneLogAndSendSequence.xml │ │ │ │ │ ├── clone_jms.xml │ │ │ │ │ ├── clone_simple.xml │ │ │ │ │ ├── clone_unknown_endpoints.xml │ │ │ │ │ └── large_message.txt │ │ │ │ ├── dblookup │ │ │ │ │ ├── dbLookupMediatorMultipleResultsTestProxy.xml │ │ │ │ │ ├── dbLookupMediatorMultipleSQLStatementsTestProxy.xml │ │ │ │ │ ├── dbLookupMediatorStoredFunctionTestProxy.xml │ │ │ │ │ ├── dbLookupMediatorStoredProcedureTestProxy.xml │ │ │ │ │ └── dbLookupTestProxy.xml │ │ │ │ ├── dbreport │ │ │ │ │ └── dbReportMediatorUsingMessageContentTestProxy.xml │ │ │ │ ├── enrich │ │ │ │ │ ├── api │ │ │ │ │ │ └── enrich_json_api_configurations.xml │ │ │ │ │ └── required │ │ │ │ │ │ └── registry_configs.xml │ │ │ │ ├── fault │ │ │ │ │ ├── force_error_soap_fault.xml │ │ │ │ │ ├── soap11_fault_actor_synapse.xml │ │ │ │ │ ├── soap11_fault_code_Client_synapse.xml │ │ │ │ │ ├── soap11_fault_code_MustUnderstand_synapse.xml │ │ │ │ │ ├── soap11_fault_code_Server_synapse.xml │ │ │ │ │ ├── soap11_fault_code_VersionMismatch_synapse.xml │ │ │ │ │ ├── soap11_fault_detail_as_element_synapse.xml │ │ │ │ │ ├── soap11_fault_detail_synapse.xml │ │ │ │ │ ├── soap11_fault_full_synapse.xml │ │ │ │ │ ├── soap11_fault_out_sequence_synapse.xml │ │ │ │ │ ├── soap11_fault_response_validate_synapse.xml │ │ │ │ │ ├── soap11_fault_set_response_attribute_false_with_addressing_synapse.xml │ │ │ │ │ ├── soap11_fault_set_response_false_synapse.xml │ │ │ │ │ ├── soap11_fault_set_response_true_synapse.xml │ │ │ │ │ ├── soap11_fault_string_expression_synapse.xml │ │ │ │ │ ├── soap11_fault_string_value_synapse.xml │ │ │ │ │ ├── soap12_fault_actor_synapse.xml │ │ │ │ │ ├── soap12_fault_code_DataEncodingUnknown_synapse.xml │ │ │ │ │ ├── soap12_fault_code_MustUnderstand_synapse.xml │ │ │ │ │ ├── soap12_fault_code_Receiver_synapse.xml │ │ │ │ │ ├── soap12_fault_code_Sender_synapse.xml │ │ │ │ │ ├── soap12_fault_code_VersionMismatch_synapse.xml │ │ │ │ │ ├── soap12_fault_detail_as_element_synapse.xml │ │ │ │ │ ├── soap12_fault_detail_synapse.xml │ │ │ │ │ ├── soap12_fault_full_synapse.xml │ │ │ │ │ ├── soap12_fault_node_synapse.xml │ │ │ │ │ ├── soap12_fault_out_sequence_synapse.xml │ │ │ │ │ ├── soap12_fault_response_validate_synapse.xml │ │ │ │ │ ├── soap12_fault_set_response_attribute_false_with_addressing_synapse.xml │ │ │ │ │ ├── soap12_fault_set_response_false_synapse.xml │ │ │ │ │ ├── soap12_fault_set_response_true_synapse.xml │ │ │ │ │ ├── soap12_fault_string_expression_synapse.xml │ │ │ │ │ └── soap12_fault_string_value_synapse.xml │ │ │ │ ├── foreach │ │ │ │ │ ├── foreach_json.xml │ │ │ │ │ ├── foreach_property_mediator.xml │ │ │ │ │ ├── foreach_property_multiple_withid.xml │ │ │ │ │ ├── foreach_property_multiple_withoutid.xml │ │ │ │ │ ├── foreach_property_single.xml │ │ │ │ │ ├── foreach_simple.xml │ │ │ │ │ ├── foreach_single_request.xml │ │ │ │ │ ├── foreach_test_message_flow_with_call.xml │ │ │ │ │ ├── nested_foreach.xml │ │ │ │ │ └── nested_foreach_property.xml │ │ │ │ ├── payload │ │ │ │ │ └── factory │ │ │ │ │ │ ├── axis2 │ │ │ │ │ │ └── axis2.xml │ │ │ │ │ │ ├── jsonFormat_JsonExpressiosns.xml │ │ │ │ │ │ ├── jsonFormat_JsonStartsWithSpace.xml │ │ │ │ │ │ ├── jsonFormat_JsonXmlExpressions_values.xml │ │ │ │ │ │ ├── jsonFormat_XmlExpressiosns.xml │ │ │ │ │ │ ├── literal_argument_payload_factory.xml │ │ │ │ │ │ ├── om_ctx_payload_factory_synapse.xml │ │ │ │ │ │ └── xmlFormat_JsonExpressiosns.xml │ │ │ │ ├── property │ │ │ │ │ ├── ConcurrentConsumers.xml │ │ │ │ │ ├── DISABLE_CHUNKING.xml │ │ │ │ │ ├── DisableFORCE_HTTP_CONTENT_LENGTH.xml │ │ │ │ │ ├── EnableFORCE_HTTP_CONTENT_LENGTH.xml │ │ │ │ │ ├── FORCE_ERROR_ON_SOAP_FAULT.xml │ │ │ │ │ ├── FORCE_HTTP_1.0_DISABLED.xml │ │ │ │ │ ├── FORCE_HTTP_1.0_ENABLED.xml │ │ │ │ │ ├── FORCE_SC_ACCEPTED_Disabled.xml │ │ │ │ │ ├── FORCE_SC_ACCEPTED_Enabled.xml │ │ │ │ │ ├── GetQuoteRequest.xml │ │ │ │ │ ├── HTTP_SC.xml │ │ │ │ │ ├── JMS_COORELATION_ID.xml │ │ │ │ │ ├── MESSAGE_FORMAT.xml │ │ │ │ │ ├── NO_ENTITY_BODY.xml │ │ │ │ │ ├── NO_KEEPALIVE.xml │ │ │ │ │ ├── OUT_ONLY_DISABLED.xml │ │ │ │ │ ├── OUT_ONLY_ENABLED.xml │ │ │ │ │ ├── OperationName.xml │ │ │ │ │ ├── POST_TO_URI.xml │ │ │ │ │ ├── PlaceOrder.xml │ │ │ │ │ ├── RESPONSE.xml │ │ │ │ │ ├── REST_URL_postfix.xml │ │ │ │ │ ├── SYSTEM_DATE.xml │ │ │ │ │ ├── SYSTEM_TIME.xml │ │ │ │ │ ├── Synapse_XPath_ Variables_Body.xml │ │ │ │ │ ├── Synapse_XPath_ Variables_Header.xml │ │ │ │ │ ├── TRANSPORT_HEADERS.xml │ │ │ │ │ ├── TRANSPORT_IN_NAME.xml │ │ │ │ │ ├── XPATHAXIS2.xml │ │ │ │ │ ├── XPATHCTX.xml │ │ │ │ │ ├── XPATHEXTENSION.xml │ │ │ │ │ ├── XPATHTRP.xml │ │ │ │ │ ├── disableAddressingForOutMessages.xml │ │ │ │ │ ├── messageType.xml │ │ │ │ │ ├── synapse.properties │ │ │ │ │ ├── synapse_http_header_case_sensitivity.xml │ │ │ │ │ └── transport_scope_property.xml │ │ │ │ ├── rewrite │ │ │ │ │ ├── full_url_append_synapse.xml │ │ │ │ │ ├── full_url_prepend_synapse.xml │ │ │ │ │ ├── full_url_rewrite_synapse.xml │ │ │ │ │ ├── full_url_set_synapse.xml │ │ │ │ │ ├── full_url_set_when_no_url_synapse.xml │ │ │ │ │ ├── hostname_append_synapse.xml │ │ │ │ │ ├── hostname_prepend_synapse.xml │ │ │ │ │ ├── hostname_set_synapse.xml │ │ │ │ │ ├── path_append_synapse.xml │ │ │ │ │ ├── path_prepend_synapse.xml │ │ │ │ │ ├── path_set_synapse.xml │ │ │ │ │ ├── port_append_synapse.xml │ │ │ │ │ ├── port_prepend_synapse.xml │ │ │ │ │ ├── port_set_synapse.xml │ │ │ │ │ ├── protocol_append_synapse.xml │ │ │ │ │ ├── protocol_prepend_synapse.xml │ │ │ │ │ ├── protocol_rewrite_from_property_synapse.xml │ │ │ │ │ ├── protocol_rewrite_synapse.xml │ │ │ │ │ ├── protocol_set_synapse.xml │ │ │ │ │ ├── remove_rewrite_full_url_synapse.xml │ │ │ │ │ ├── remove_rewrite_host_synapse.xml │ │ │ │ │ ├── remove_rewrite_path_synapse.xml │ │ │ │ │ ├── remove_rewrite_port_synapse.xml │ │ │ │ │ ├── remove_rewrite_protocol_synapse.xml │ │ │ │ │ ├── synapse_sample451.xml │ │ │ │ │ ├── url_reWrite_by_context_synapse.xml │ │ │ │ │ ├── url_reWrite_by_host_synapse.xml │ │ │ │ │ ├── url_reWrite_by_port_expression_synapse.xml │ │ │ │ │ └── url_reWrite_by_port_synapse.xml │ │ │ │ ├── send │ │ │ │ │ ├── endpoints │ │ │ │ │ │ └── registry_endpoint.xml │ │ │ │ │ ├── mtom_enable_disable_config.xml │ │ │ │ │ ├── sequence │ │ │ │ │ │ ├── test_sequence_build_message_conf.xml │ │ │ │ │ │ ├── test_sequence_build_message_gov.xml │ │ │ │ │ │ └── test_sequence_build_message_local.xml │ │ │ │ │ ├── synapse_config.xml │ │ │ │ │ ├── synapse_default.xml │ │ │ │ │ ├── synapse_dynamic.xml │ │ │ │ │ ├── synapse_endpoint_registry.xml │ │ │ │ │ ├── synapse_gov.xml │ │ │ │ │ ├── synapse_local.xml │ │ │ │ │ └── synapse_uncaught_exception.xml │ │ │ │ ├── switch_conf │ │ │ │ │ └── switch_mediator_subsequence_matching.xml │ │ │ │ └── xslt │ │ │ │ │ ├── local_entry_refer_xslt_transformation_synapse.xml │ │ │ │ │ ├── transform.xslt │ │ │ │ │ ├── transform_back.xslt │ │ │ │ │ ├── xslt_dynamic_key_synapse.xml │ │ │ │ │ ├── xslt_from_config_registry_local_entry_synapse.xml │ │ │ │ │ ├── xslt_from_governance_registry_local_entry_synapse.xml │ │ │ │ │ ├── xslt_from_url_synapse.xml │ │ │ │ │ ├── xslt_in_file_system_local_entry_synapse.xml │ │ │ │ │ ├── xslt_in_line_local_entry_synapse.xml │ │ │ │ │ └── xslt_transformation_with_property_synapse.xml │ │ │ │ ├── messageProcessorConfig │ │ │ │ └── Message_Processor_Persistence_After_Restart_Synapse.xml │ │ │ │ ├── mtom │ │ │ │ └── asf-logo.gif │ │ │ │ ├── nhttp │ │ │ │ └── transport │ │ │ │ │ └── certificatevalidation │ │ │ │ │ ├── axis2.xml │ │ │ │ │ └── simple_proxy.xml │ │ │ │ ├── other │ │ │ │ ├── index.html │ │ │ │ └── log4j2.properties │ │ │ │ ├── passthru │ │ │ │ └── transport │ │ │ │ │ └── httpproxy │ │ │ │ │ ├── axis2.xml │ │ │ │ │ └── httpProxy.xml │ │ │ │ ├── proxyconfig │ │ │ │ └── proxy │ │ │ │ │ ├── customProxy │ │ │ │ │ ├── insequence_existing_sequence.xml │ │ │ │ │ ├── insequence_from_registry.xml │ │ │ │ │ ├── insequence_inline_endpoint_inline.xml │ │ │ │ │ ├── insequence_none_endpoint_existing.xml │ │ │ │ │ ├── insequence_none_endpoint_from_registry.xml │ │ │ │ │ ├── insequence_none_endpoint_inline.xml │ │ │ │ │ ├── non_existing_proxy.xml │ │ │ │ │ ├── non_existing_proxy_route_to_main.xml │ │ │ │ │ ├── outsequence_faultsequence.xml │ │ │ │ │ └── simple_proxy.xml │ │ │ │ │ ├── enablelocaltransport │ │ │ │ │ └── axis2.xml │ │ │ │ │ ├── loggingProxy │ │ │ │ │ ├── pick_end_point_from_registry.xml │ │ │ │ │ ├── proxy_service_enabling_only_http.xml │ │ │ │ │ ├── proxy_service_enabling_only_https.xml │ │ │ │ │ ├── proxy_service_with_end_point_through_url.xml │ │ │ │ │ ├── request_log_level_full_response_log_level_full.xml │ │ │ │ │ ├── request_log_level_none_response_log_level_none.xml │ │ │ │ │ ├── request_log_level_simple_response_log_level_simple.xml │ │ │ │ │ ├── wsdl_options_pick_from_registry.xml │ │ │ │ │ ├── wsdl_options_specified_inline.xml │ │ │ │ │ └── wsdl_options_specified_source_url.xml │ │ │ │ │ ├── passThroughProxy │ │ │ │ │ ├── EditPassThroughProxy.xml │ │ │ │ │ ├── customServiceURI │ │ │ │ │ │ ├── axis2.xml │ │ │ │ │ │ └── custom_service_uri_enabling_only_https.xml │ │ │ │ │ ├── passThroughProxy.xml │ │ │ │ │ ├── pick_end_point_from_registry.xml │ │ │ │ │ ├── proxy_service_enabling_only_http.xml │ │ │ │ │ ├── proxy_service_enabling_only_https.xml │ │ │ │ │ ├── proxy_service_with_end_point_through_url.xml │ │ │ │ │ ├── wsdl_options_pick_from_registry.xml │ │ │ │ │ ├── wsdl_options_specified_inline.xml │ │ │ │ │ └── wsdl_options_specified_source_url.xml │ │ │ │ │ ├── protocolViolationProxy │ │ │ │ │ └── synapse.xml │ │ │ │ │ ├── proxyservice │ │ │ │ │ ├── http_to_https_proxy.xml │ │ │ │ │ ├── proxy_with_addressing.xml │ │ │ │ │ └── stock_quote_proxy.xml │ │ │ │ │ ├── secureProxy │ │ │ │ │ ├── passthrough_proxy_engaging_security_with_secueBackEnd.xml │ │ │ │ │ ├── passthrough_proxy_with_secueBackEnd.xml │ │ │ │ │ ├── sample_0_with_wso2_registry.xml │ │ │ │ │ ├── secure_proxy_service_scenarios.xml │ │ │ │ │ ├── secured_proxy_secured_backend.xml │ │ │ │ │ ├── security_transformation_proxy_for_policy2_backEnd.xml │ │ │ │ │ ├── security_transformation_proxy_for_policy3_backend.xml │ │ │ │ │ ├── security_transformation_proxy_for_policy4_backend.xml │ │ │ │ │ ├── security_transformation_proxy_for_policy5_backend.xml │ │ │ │ │ ├── security_transformation_proxy_for_policy6_backend.xml │ │ │ │ │ ├── security_transformation_proxy_for_policy7_backend.xml │ │ │ │ │ ├── security_transformation_proxy_for_policy8_backend.xml │ │ │ │ │ ├── stock_quote_passthrough_proxy.xml │ │ │ │ │ ├── stock_quote_proxy.xml │ │ │ │ │ ├── stockquote_pass_through_proxy.xml │ │ │ │ │ └── stockquote_proxy_unsecured.xml │ │ │ │ │ ├── transformerProxy │ │ │ │ │ ├── invalid_xslt_test.xml │ │ │ │ │ ├── pick_end_point_from_registry.xml │ │ │ │ │ ├── proxy_service_enabling_only_http.xml │ │ │ │ │ ├── proxy_service_enabling_only_https.xml │ │ │ │ │ ├── proxy_service_with_end_point_through_url.xml │ │ │ │ │ ├── wsdl_options_pick_from_registry.xml │ │ │ │ │ ├── wsdl_options_specified_inline.xml │ │ │ │ │ └── wsdl_options_specified_source_url.xml │ │ │ │ │ ├── utils │ │ │ │ │ ├── fault_sequence.xml │ │ │ │ │ ├── invalid_transform.xslt │ │ │ │ │ ├── out_sequence.xml │ │ │ │ │ ├── proxy_sequence.xml │ │ │ │ │ ├── registry_endpoint.xml │ │ │ │ │ └── sample_proxy_1.wsdl │ │ │ │ │ └── wsdlBasedProxy │ │ │ │ │ ├── proxy_service_enabling_only_http.xml │ │ │ │ │ ├── proxy_service_enabling_only_https.xml │ │ │ │ │ ├── proxy_service_with_publish_same_service_contract.xml │ │ │ │ │ ├── wsdl_options_pick_from_registry.xml │ │ │ │ │ ├── wsdl_options_specified_inline.xml │ │ │ │ │ └── wsdl_options_specified_source_url.xml │ │ │ │ ├── scheduledTask │ │ │ │ ├── InjectToProxyTestConfig.xml │ │ │ │ └── InjectToSequenceTestConfig.xml │ │ │ │ ├── server │ │ │ │ ├── conf │ │ │ │ │ ├── axis2 │ │ │ │ │ │ └── axis2.xml │ │ │ │ │ ├── datasources │ │ │ │ │ │ └── test-datasources.xml │ │ │ │ │ ├── deployment.toml │ │ │ │ │ ├── file.properties │ │ │ │ │ ├── log4j2.properties │ │ │ │ │ └── synapse.properties │ │ │ │ ├── lib │ │ │ │ │ ├── activemq-client-5.9.1.jar │ │ │ │ │ ├── geronimo-j2ee-management_1.1_spec-1.0.1.jar │ │ │ │ │ ├── geronimo-jms_1.1_spec-1.1.1.jar │ │ │ │ │ ├── h2-1.3.175.jar │ │ │ │ │ └── hawtbuf-1.9.jar │ │ │ │ ├── registry │ │ │ │ │ ├── config │ │ │ │ │ │ ├── custom │ │ │ │ │ │ │ └── test │ │ │ │ │ │ │ │ ├── property_mediator_test.txt │ │ │ │ │ │ │ │ └── property_mediator_test.txt.properties │ │ │ │ │ │ ├── endpoint │ │ │ │ │ │ │ └── DynamicEndpointTestCase.xml │ │ │ │ │ │ ├── filters │ │ │ │ │ │ │ └── dynamic_seq1.xml │ │ │ │ │ │ ├── payloadFactory │ │ │ │ │ │ │ └── payload-in.xml │ │ │ │ │ │ ├── policy │ │ │ │ │ │ │ └── throttle_policy.xml │ │ │ │ │ │ ├── required │ │ │ │ │ │ │ └── registry_configs.xml │ │ │ │ │ │ └── sequences │ │ │ │ │ │ │ ├── clone │ │ │ │ │ │ │ └── cloneLogAndSendSequence │ │ │ │ │ │ │ └── dynamic_seq1.xml │ │ │ │ │ └── governance │ │ │ │ │ │ ├── custom │ │ │ │ │ │ └── test │ │ │ │ │ │ │ ├── property_mediator_test.txt │ │ │ │ │ │ │ └── property_mediator_test.txt.properties │ │ │ │ │ │ ├── myEndpoint │ │ │ │ │ │ └── routerEndpoint │ │ │ │ │ │ │ └── routerEndpoint.xml │ │ │ │ │ │ ├── policy │ │ │ │ │ │ └── UTpolicy.xml │ │ │ │ │ │ ├── sequences │ │ │ │ │ │ ├── clone │ │ │ │ │ │ │ └── cloneLogAndSendSequence │ │ │ │ │ │ ├── dynamic_seq1.xml │ │ │ │ │ │ └── router │ │ │ │ │ │ │ └── routerSequence │ │ │ │ │ │ └── xslt │ │ │ │ │ │ └── transform_back.xslt │ │ │ │ └── repository │ │ │ │ │ └── deployment │ │ │ │ │ └── server │ │ │ │ │ ├── carbonapps │ │ │ │ │ ├── CappMPServerRestartTestCApp_1.0.0.car │ │ │ │ │ └── SoapHeaderTestRegFiles_1.0.0.car │ │ │ │ │ └── synapse-configs │ │ │ │ │ └── default │ │ │ │ │ ├── api │ │ │ │ │ ├── AddMusic.xml │ │ │ │ │ ├── AllDevices.xml │ │ │ │ │ ├── CacheControlHeadersBackend.xml │ │ │ │ │ ├── CacheExcludeHeaderApi.xml │ │ │ │ │ ├── CacheExcludeMultipleHeaderApi.xml │ │ │ │ │ ├── CacheResponseCodeRegex.xml │ │ │ │ │ ├── CachingEnabledAPI.xml │ │ │ │ │ ├── CallBlockingPayloadAPI.xml │ │ │ │ │ ├── CallMediatorFaultTestAPI.xml │ │ │ │ │ ├── CallMediatorNoContentBackendAPI.xml │ │ │ │ │ ├── CallMediatorNoContentTestAPI.xml │ │ │ │ │ ├── CallOutMediatorNoContentTestAPI.xml │ │ │ │ │ ├── CallOutMediatorSC204NoContentTMockAPI.xml │ │ │ │ │ ├── DeviceID.xml │ │ │ │ │ ├── Devices.xml │ │ │ │ │ ├── ESBJAVA4452TestAPI.xml │ │ │ │ │ ├── Editing.xml │ │ │ │ │ ├── EnrichAddChildUsingJsonPath.xml │ │ │ │ │ ├── EnrichTestAPI.xml │ │ │ │ │ ├── EnrichToPropertyGetJsonandRespondXMLBack.xml │ │ │ │ │ ├── EnrichToPropertyGetXMLandRespondJSonBack.xml │ │ │ │ │ ├── HTTPStatusResponseAPI.xml │ │ │ │ │ ├── JsonFormatIncomingJsonStartsWithSpaceTest.xml │ │ │ │ │ ├── LiteralArgumentAPI.xml │ │ │ │ │ ├── LogPrint.xml │ │ │ │ │ ├── MessageProcessorWSATestAPI.xml │ │ │ │ │ ├── MockResponseTestAPI.xml │ │ │ │ │ ├── NoStoreHeaderBackend.xml │ │ │ │ │ ├── NullValueTransportHeaderTestBackEndApi.xml │ │ │ │ │ ├── NullValueTransportHeaderTestFrontEndApi.xml │ │ │ │ │ ├── PreserveXmlProcessingInstructionsPropertyTestAPI.xml │ │ │ │ │ ├── SingleElementArrayResponseBackend.xml │ │ │ │ │ ├── TestEnrichMediator1.xml │ │ │ │ │ ├── TestForEachMediator.xml │ │ │ │ │ ├── TestForEachMediatorNativeJson.xml │ │ │ │ │ ├── TestJsonPathAgainstPropertyAPI.xml │ │ │ │ │ ├── TestLogMediatorTemplating.xml │ │ │ │ │ ├── TestScatterGatherMediator.xml │ │ │ │ │ ├── TestThrowErrorMediatorAPI.xml │ │ │ │ │ ├── XpathURLPropertyApi.xml │ │ │ │ │ ├── aggregateEmptyJsonPayloadTestAPI.xml │ │ │ │ │ ├── dbReportMediatorUseTransactionTestAPI.xml │ │ │ │ │ ├── enrichAddChildByJsonPathTestProxy.xml │ │ │ │ │ ├── enrichBodyToPropertyReplaceBodyandEnrichPropertyBack.xml │ │ │ │ │ ├── enrichChildPropertyToParent.xml │ │ │ │ │ ├── enrichDefinedProertyToChild.xml │ │ │ │ │ ├── enrichInlinePropertyAndAddtoJson.xml │ │ │ │ │ ├── enrichPropertyReplaceBodyandEnrichPropertyBack.xml │ │ │ │ │ ├── enrichPropertyandEnrichBodyBack.xml │ │ │ │ │ ├── enrichToAndFromJSONProperty.xml │ │ │ │ │ ├── esbjava4433.xml │ │ │ │ │ ├── include_age_api.xml │ │ │ │ │ ├── max_age_api.xml │ │ │ │ │ ├── max_message_api.xml │ │ │ │ │ ├── max_size_api.xml │ │ │ │ │ ├── member-api.xml │ │ │ │ │ ├── newLineApi.xml │ │ │ │ │ ├── no_store_api.xml │ │ │ │ │ ├── pfConvertJsonStreamToXML.xml │ │ │ │ │ ├── pfJSONtoJSONAPI.xml │ │ │ │ │ ├── pfJSONtoJSONWithCarriageReturnAPI.xml │ │ │ │ │ ├── pfJSONtoXMLWithAmpersandAPI.xml │ │ │ │ │ ├── pfJSONtoXMLWithBackSlashesAPI.xml │ │ │ │ │ ├── replyAPI.xml │ │ │ │ │ ├── synapse_expressions_payload_factory.xml │ │ │ │ │ ├── testApiAggregate.xml │ │ │ │ │ ├── testEnrichRemove.xml │ │ │ │ │ ├── testEnrichRemoveFromProperty.xml │ │ │ │ │ ├── testUrlPostFix.xml │ │ │ │ │ └── transactionTestAPI.xml │ │ │ │ │ ├── endpoints │ │ │ │ │ ├── CallMediatorFailOverTestEndpoint.xml │ │ │ │ │ ├── EP.xml │ │ │ │ │ ├── MessageProcessorWSATestEP.xml │ │ │ │ │ ├── ProcessorEPR.xml │ │ │ │ │ ├── Reply_EP.xml │ │ │ │ │ ├── SimpleEP.xml │ │ │ │ │ ├── SimpleStockQuoteServiceEndpoint.xml │ │ │ │ │ ├── StockQuote_9000_EP.xml │ │ │ │ │ ├── StockQuote_SOAP11_9000_EP.xml │ │ │ │ │ ├── TCPMONEP2.xml │ │ │ │ │ ├── TCPMonEP1.xml │ │ │ │ │ ├── WireEP4.xml │ │ │ │ │ ├── WireMonitorEP1.xml │ │ │ │ │ ├── WireMonitorEP3.xml │ │ │ │ │ ├── echoEP.xml │ │ │ │ │ ├── ep1.xml │ │ │ │ │ ├── ep2.xml │ │ │ │ │ ├── ep3.xml │ │ │ │ │ └── simple.xml │ │ │ │ │ ├── local-entries │ │ │ │ │ ├── init_req.xml │ │ │ │ │ ├── init_req_LE.xml │ │ │ │ │ ├── payload-out.xml │ │ │ │ │ ├── price_req.xml │ │ │ │ │ ├── sec_policy.xml │ │ │ │ │ ├── sec_policy_3.xml │ │ │ │ │ ├── symbol.xml │ │ │ │ │ ├── xqMsg.xml │ │ │ │ │ ├── xslt-key-back.xml │ │ │ │ │ └── xslt-key-req.xml │ │ │ │ │ ├── message-processors │ │ │ │ │ ├── MessageProcessorWSATestProcessor.xml │ │ │ │ │ ├── dynamicRoutingMessageProcessor.xml │ │ │ │ │ └── messageProcessorSoapHeaderSamplingProcessor.xml │ │ │ │ │ ├── message-stores │ │ │ │ │ ├── MessageProcessorWSATestStore.xml │ │ │ │ │ ├── automationMessageStore1.xml │ │ │ │ │ ├── dynamicRoutingMessageStore.xml │ │ │ │ │ └── messageProcessorSoapHeaderMessageStore.xml │ │ │ │ │ ├── proxy-services │ │ │ │ │ ├── AcceptedEndpointProxy.xml │ │ │ │ │ ├── Axis2ProxyService.xml │ │ │ │ │ ├── Axis2ProxyService1.xml │ │ │ │ │ ├── Axis2ProxyService2.xml │ │ │ │ │ ├── BadRequestEndpointProxy.xml │ │ │ │ │ ├── CallBlockingLoadBalance.xml │ │ │ │ │ ├── CallLoadBalance.xml │ │ │ │ │ ├── CallMediatorFailOverTestProxy.xml │ │ │ │ │ ├── CallMediatorInSequenceScenario2TestProxy.xml │ │ │ │ │ ├── CallMediatorInSequenceTestProxy.xml │ │ │ │ │ ├── CallMediatorNoDefaultContentTypeTestProxy.xml │ │ │ │ │ ├── CallMediatorReplyNoDefaultContentTypeTestProxy.xml │ │ │ │ │ ├── CallOutMediatorOutOnlyTestProxy.xml │ │ │ │ │ ├── CallOutMediatorWithMTOMProxy.xml │ │ │ │ │ ├── CallOutMediatorXPathProxy.xml │ │ │ │ │ ├── CallTemplateIntegrationParamsWithValuesTestCaseProxy.xml │ │ │ │ │ ├── CalloutTransportCleanupTestProxy.xml │ │ │ │ │ ├── CloneAndAggregateTestProxy.xml │ │ │ │ │ ├── CloneFunctionalContextTestProxy.xml │ │ │ │ │ ├── CloneIntegrationAnonymousEndpointsTestProxy.xml │ │ │ │ │ ├── CloneIntegrationEndpointsHttpsProxy.xml │ │ │ │ │ ├── CloneIntegrationEndpointsTestProxy1.xml │ │ │ │ │ ├── CloneIntegrationEndpointsTestProxy2.xml │ │ │ │ │ ├── CloneIntegrationNamedEndpointsProxy.xml │ │ │ │ │ ├── CloneIntegrationSequenceProxy.xml │ │ │ │ │ ├── CloneNegativeTestCaseProxy.xml │ │ │ │ │ ├── CloneProxyFault1.xml │ │ │ │ │ ├── CloneProxyFault2.xml │ │ │ │ │ ├── CloneSOAPActionTestCaseProxy.xml │ │ │ │ │ ├── CollectorTypeCacheMediatorProxy.xml │ │ │ │ │ ├── ConRoutingWithContinueAfterFalseProxy.xml │ │ │ │ │ ├── ConRoutingWithContinueAfterTrueProxy.xml │ │ │ │ │ ├── ConcurrencyAndRequestBasedThrottlingConcurrencyProxy.xml │ │ │ │ │ ├── ConditionalRouterIntegrationTestProxy.xml │ │ │ │ │ ├── ConflictEndpointProxy.xml │ │ │ │ │ ├── DISABLE_CHUNKING_TrueTestProxy.xml │ │ │ │ │ ├── DropMediatorTestProxy.xml │ │ │ │ │ ├── Dummy.xml │ │ │ │ │ ├── DynamicEndpointWithCallMediatorProxy.xml │ │ │ │ │ ├── DynamicPropertiesGetPropertyEval.xml │ │ │ │ │ ├── DynamicPropertiesJsonEval.xml │ │ │ │ │ ├── DynamicPropertiesSynapseMessageContextEval.xml │ │ │ │ │ ├── ESBJAVA4469.xml │ │ │ │ │ ├── ESBJAVA4469WithLogMediator.xml │ │ │ │ │ ├── EchoService.xml │ │ │ │ │ ├── EnrichAndDoubleDropIntegrationTestProxy.xml │ │ │ │ │ ├── EnrichIntegrationReplaceByPropertyTestCaseProxy.xml │ │ │ │ │ ├── EnrichMediatorFollowedByEnrichIntegrationTestCaseProxy.xml │ │ │ │ │ ├── FORCE_HTTP_1_0_FalseTestProxy.xml │ │ │ │ │ ├── FORCE_HTTP_1_0_TrueTEstProxy.xml │ │ │ │ │ ├── FORCE_HTTP_CONTENT_LENGTH_TrueTestProxy.xml │ │ │ │ │ ├── FORCE_SC_ACCEPTED_FalseTestProxy.xml │ │ │ │ │ ├── FORCE_SC_ACCEPTED_TrueTestProxy.xml │ │ │ │ │ ├── ForbiddenEndpointProxy.xml │ │ │ │ │ ├── ForceErrorOnSoapFaultPropertyTestProxy.xml │ │ │ │ │ ├── ForceErrorTestProxy.xml │ │ │ │ │ ├── FormatPayloadWithOMTypeArgsExpressionProxy.xml │ │ │ │ │ ├── FormatPayloadWithOMTypeArgsExpressionTestProxy.xml │ │ │ │ │ ├── GenericProperties.xml │ │ │ │ │ ├── HTTP_SCTestProxy.xml │ │ │ │ │ ├── HelloProxy.xml │ │ │ │ │ ├── HttpProperties.xml │ │ │ │ │ ├── InSequenceIntegrationTestCaseProxy.xml │ │ │ │ │ ├── InSequenceMediatorTestProxy.xml │ │ │ │ │ ├── InlineInSeqInlineFaultSeqProxy.xml │ │ │ │ │ ├── InlineInSeqTargetFaultSeqProxy.xml │ │ │ │ │ ├── JMCalloutClientProxy.xml │ │ │ │ │ ├── JMSCalloutBEProxy.xml │ │ │ │ │ ├── LogMediatorLevelAndCategoryTestProxy.xml │ │ │ │ │ ├── MESSAGE_FORMAT_TestProxy.xml │ │ │ │ │ ├── MakeFaultProxy.xml │ │ │ │ │ ├── MessageProcessorWSATestProxy.xml │ │ │ │ │ ├── MtomEnabledBackEnd.xml │ │ │ │ │ ├── MtomEnabledBackEndOUT.xml │ │ │ │ │ ├── MultipleOutMediatorsTestCaseProxy.xml │ │ │ │ │ ├── NestedForEachPropertiesWithID.xml │ │ │ │ │ ├── NonAsciiCharactersForValuesOfPropertiesTestProxy.xml │ │ │ │ │ ├── NotFoundEndpointProxy.xml │ │ │ │ │ ├── OUT_ONLY_FalseTestProxy.xml │ │ │ │ │ ├── OUT_ONLY_TrueTestProxy.xml │ │ │ │ │ ├── PRESERVE_WS_ADDRESSING_TestProxy.xml │ │ │ │ │ ├── PayloadFactoryWithDynamicKeyTestCaseProxy.xml │ │ │ │ │ ├── PayloadFormatValueAndExpressionProxy.xml │ │ │ │ │ ├── PayloadFormatWithArgumentsTestCaseProxy.xml │ │ │ │ │ ├── PayloadFormatWithNoArgumentTestCaseProxy.xml │ │ │ │ │ ├── PreserveWsAddressing.xml │ │ │ │ │ ├── ProxyPF.xml │ │ │ │ │ ├── RESPONSE_PropertyTestProxy.xml │ │ │ │ │ ├── REST_URL_POSTFIX_TestProxy.xml │ │ │ │ │ ├── ResponseCodeGenerator.xml │ │ │ │ │ ├── SYSTEM_DATE_TestProxy.xml │ │ │ │ │ ├── SYSTEM_TIME_TestProxy.xml │ │ │ │ │ ├── Sample451Proxy.xml │ │ │ │ │ ├── ServerErrorEndpointProxy.xml │ │ │ │ │ ├── SimpleStockQuote.xml │ │ │ │ │ ├── Soap11FaultActorTestCaseProxy.xml │ │ │ │ │ ├── Soap11FaultCodeClientTestCaseProxy.xml │ │ │ │ │ ├── Soap11FaultCodeMustUnderstandTestCaseProxy.xml │ │ │ │ │ ├── Soap11FaultCodeServerTestCaseProxy.xml │ │ │ │ │ ├── Soap11FaultCodeVersionMismatchedTestCaseProxy.xml │ │ │ │ │ ├── Soap11FaultDetailAsElementProxy.xml │ │ │ │ │ ├── Soap11FaultDetailsTestCaseProxy.xml │ │ │ │ │ ├── Soap11FaultOutSequenceTestCaseProxy.xml │ │ │ │ │ ├── Soap11FaultStringExpressionTestCaseProxy.xml │ │ │ │ │ ├── Soap11FaultStringValueTestCaseProxy.xml │ │ │ │ │ ├── Soap11FaultWithAttributeResponseFalseTestCaseProxy.xml │ │ │ │ │ ├── Soap11FaultWithAttributeResponseFalseWithAddressingTestCaseProxy.xml │ │ │ │ │ ├── Soap11FaultWithAttributeResponseTrueTestCaseProxy.xml │ │ │ │ │ ├── Soap12FaultActorTestCaseProxy.xml │ │ │ │ │ ├── Soap12FaultCodeDataEncodingUnknownTestCaseProxy.xml │ │ │ │ │ ├── Soap12FaultCodeMustUnderstandTestCaseProxy.xml │ │ │ │ │ ├── Soap12FaultCodeReceiverTestCaseProxy.xml │ │ │ │ │ ├── Soap12FaultCodeSenderTestCaseProxy.xml │ │ │ │ │ ├── Soap12FaultCodeVersionMismatchedTestCaseProxy.xml │ │ │ │ │ ├── Soap12FaultDetailAsElementTestCaseProxy.xml │ │ │ │ │ ├── Soap12FaultDetailsTestCaseProxy.xml │ │ │ │ │ ├── Soap12FaultFullTestCaseProxy.xml │ │ │ │ │ ├── Soap12FaultNodeTestCaseProxy.xml │ │ │ │ │ ├── Soap12FaultOutSequenceTestCaseProxy.xml │ │ │ │ │ ├── Soap12FaultStringExpressionTestCaseProxy.xml │ │ │ │ │ ├── Soap12FaultStringValueTestCaseProxy.xml │ │ │ │ │ ├── Soap12FaultWithAttributeResponseFalseTestCaseProxy.xml │ │ │ │ │ ├── Soap12FaultWithAttributeResponseTrueTestCaseProxy.xml │ │ │ │ │ ├── Soap12FaultWithPropertyResponseFalseWithAddressingTestCaseProxy.xml │ │ │ │ │ ├── SoapHeaderBlockTestProxy.xml │ │ │ │ │ ├── SpecialCharactersAtPayloadFactoryTestCaseProxy.xml │ │ │ │ │ ├── SplitAggregateProxy.xml │ │ │ │ │ ├── SplitAggregateProxy123.xml │ │ │ │ │ ├── StatusCodeTestClientProxy.xml │ │ │ │ │ ├── StockQuote.xml │ │ │ │ │ ├── StockQuoteProxy.xml │ │ │ │ │ ├── StockQuoteProxy1.xml │ │ │ │ │ ├── StockQuoteProxy2.xml │ │ │ │ │ ├── SynapseProperties.xml │ │ │ │ │ ├── SynapseXpathvariables.xml │ │ │ │ │ ├── TRANSPORT_HEADERS_TestProxy.xml │ │ │ │ │ ├── TRANSPORT_IN_NAME_TestProxy.xml │ │ │ │ │ ├── TargetInSeqInlineFaultSeqProxy.xml │ │ │ │ │ ├── TargetInSeqTargetFaultSeqProxy.xml │ │ │ │ │ ├── TestCallBlockingFailOverProxy.xml │ │ │ │ │ ├── TestCallProxy.xml │ │ │ │ │ ├── TestFaultSequenceCalledProxy.xml │ │ │ │ │ ├── TransformPayloadWhenArgsExpressionTestCaseProxy.xml │ │ │ │ │ ├── TransformPayloadWhenArgsValueAndExpressionProxy.xml │ │ │ │ │ ├── TransformPayloadWhenArgsValueTestCaseProxy.xml │ │ │ │ │ ├── TransformPayloadWhenNoArgsTestCaseProxy.xml │ │ │ │ │ ├── UnauthorizedEndpointProxy.xml │ │ │ │ │ ├── XPATH2.xml │ │ │ │ │ ├── acceptProxy.xml │ │ │ │ │ ├── aggregateEmptyJsonPayloadTestProxy.xml │ │ │ │ │ ├── aggregateMediatorBothMinMaxTestProxy.xml │ │ │ │ │ ├── aggregateMediatorContentTestProxy.xml │ │ │ │ │ ├── aggregateMediatorHighTimeoutTestProxy.xml │ │ │ │ │ ├── aggregateMediatorMaxMinTestProxy.xml │ │ │ │ │ ├── aggregateMediatorMaxValueTestProxy.xml │ │ │ │ │ ├── aggregateMediatorMinExpressionTestProxy.xml │ │ │ │ │ ├── aggregateMediatorOnCompleteErrorTestProxy.xml │ │ │ │ │ ├── aggregateMediatorOnCompleteFromConfTestProxy.xml │ │ │ │ │ ├── aggregateMediatorOnCompleteFromRegTestProxy.xml │ │ │ │ │ ├── aggregateMediatorPropertyTestProxy.xml │ │ │ │ │ ├── aggregateMediatorTestProxy.xml │ │ │ │ │ ├── aggregateMediatorTestProxy1.xml │ │ │ │ │ ├── aggregateMediatorTimeOutTestProxy.xml │ │ │ │ │ ├── aggregateMediatorWithoutTimeoutTestProxy.xml │ │ │ │ │ ├── booleanVal.xml │ │ │ │ │ ├── booleanXpath.xml │ │ │ │ │ ├── callMediatorBlockingDirectEndpointProxy.xml │ │ │ │ │ ├── callMediatorBlockingEndpointSecurityProxy.xml │ │ │ │ │ ├── callMediatorBlockingInboundPolicyProxy.xml │ │ │ │ │ ├── callMediatorBlockingProxy.xml │ │ │ │ │ ├── callOutDynamicEndPointProxy.xml │ │ │ │ │ ├── checkSpecialChars.xml │ │ │ │ │ ├── conditionalRouterWithManyRoutesProxy.xml │ │ │ │ │ ├── dbLookupMediatorMultipleResultsTestProxy.xml │ │ │ │ │ ├── dbLookupMediatorMultipleSQLStatementsTestProxy.xml │ │ │ │ │ ├── dbLookupMediatorStoredFunctionTestProxy.xml │ │ │ │ │ ├── dbLookupMediatorStoredProcedureTestProxy.xml │ │ │ │ │ ├── dbLookupTestProxy.xml │ │ │ │ │ ├── dbReportMediatorTestProxy.xml │ │ │ │ │ ├── dbReportMediatorUsingMessageContentTestProxy.xml │ │ │ │ │ ├── disableAddressingTestProxy.xml │ │ │ │ │ ├── doubleVal.xml │ │ │ │ │ ├── doubleXpath.xml │ │ │ │ │ ├── enrichAddBodyToChildTestProxy.xml │ │ │ │ │ ├── enrichAddChildByXPathTestProxy.xml │ │ │ │ │ ├── enrichAddChildFromPropertyTestProxy.xml │ │ │ │ │ ├── enrichAddChildUsingXPathTestProxy.xml │ │ │ │ │ ├── enrichAddContentAsChildTestProxy.xml │ │ │ │ │ ├── enrichAddPropertyAsChildInBodyTestProxy.xml │ │ │ │ │ ├── enrichAddPropertyAsChildTestProxy.xml │ │ │ │ │ ├── enrichAddPropertyAsSiblingTestProxy.xml │ │ │ │ │ ├── enrichAddSiblingFromPropertyTestProxy.xml │ │ │ │ │ ├── enrichAddSiblingInOutMessageTestProxy.xml │ │ │ │ │ ├── enrichAddSourceAsSiblingInBodyTestProxy.xml │ │ │ │ │ ├── enrichBodyToChildOfBodyTestProxy.xml │ │ │ │ │ ├── enrichBodyToSiblingOfBodyTest.xml │ │ │ │ │ ├── enrichBodyToXpathSiblingTestProxy.xml │ │ │ │ │ ├── enrichByGetPropertyTestProxy.xml │ │ │ │ │ ├── enrichByOMTextTestProxy.xml │ │ │ │ │ ├── enrichCopyXpathOfSingleNodeTestProxy.xml │ │ │ │ │ ├── enrichIntegrationSiblingsTestProxy.xml │ │ │ │ │ ├── enrichMultipleNodeReplaceTestProxy.xml │ │ │ │ │ ├── enrichOrderTest.xml │ │ │ │ │ ├── enrichReplaceBodyBySpecifiedPropertyTestProxy.xml │ │ │ │ │ ├── enrichReplaceBodyUsingSourceTestProxy.xml │ │ │ │ │ ├── enrichReplaceBodyUsingXpathTestProxy.xml │ │ │ │ │ ├── enrichReplaceBodyWithInlineTestProxy.xml │ │ │ │ │ ├── enrichReplaceByPropertyTestProxy.xml │ │ │ │ │ ├── enrichReplaceEnvelopTestProxy.xml │ │ │ │ │ ├── enrichReplaceEnvelopeTestProxy.xml │ │ │ │ │ ├── enrichReplaceEnvelopeWithPropertyTestProxy.xml │ │ │ │ │ ├── enrichReplaceInlineContentFromConfigRegistryTestProxy.xml │ │ │ │ │ ├── enrichReplaceMessageBodyTestProxy.xml │ │ │ │ │ ├── enrichReplacePartOfMessageByBodyTestProxy.xml │ │ │ │ │ ├── enrichReplacePropertyByEnrichTestProxy.xml │ │ │ │ │ ├── enrichSourceXpathAsChildTargetXpathTestProxy.xml │ │ │ │ │ ├── enrichTwiceTestProxy.xml │ │ │ │ │ ├── entityBodyProxy.xml │ │ │ │ │ ├── filterMediatorWithSourceAndRegexNSTestProxy.xml │ │ │ │ │ ├── filterMediatorWithXpathTestProxy.xml │ │ │ │ │ ├── filterMediatorXpathWithORTestProxy.xml │ │ │ │ │ ├── floatVal.xml │ │ │ │ │ ├── floatXpath.xml │ │ │ │ │ ├── forEachManagedLifeCycleTestProxy.xml │ │ │ │ │ ├── foreachJSONTestProxy.xml │ │ │ │ │ ├── foreachLargeMessageTestProxy.xml │ │ │ │ │ ├── foreachMultiplePropertyWithIDTestProxy.xml │ │ │ │ │ ├── foreachMultiplePropertyWithoutIDTestProxy.xml │ │ │ │ │ ├── foreachNestedPropertiesTestProxy.xml │ │ │ │ │ ├── foreachNestedTestProxy.xml │ │ │ │ │ ├── foreachPropertyTestProxy.xml │ │ │ │ │ ├── foreachSequentialExecutionTestProxy.xml │ │ │ │ │ ├── foreachSinglePropertyTestProxy.xml │ │ │ │ │ ├── foreachWithIteration.xml │ │ │ │ │ ├── foreach_simple_sequenceref.xml │ │ │ │ │ ├── httpHeaderTestProxy.xml │ │ │ │ │ ├── integerValProperty.xml │ │ │ │ │ ├── integerXpathProperty.xml │ │ │ │ │ ├── invalidThrottlingPolicyTestProxy.xml │ │ │ │ │ ├── logMediatorLevelTestProxy.xml │ │ │ │ │ ├── longVal.xml │ │ │ │ │ ├── longXpath.xml │ │ │ │ │ ├── messageProcessorSoapHeaderTestProxy.xml │ │ │ │ │ ├── negative.xml │ │ │ │ │ ├── nestedAggregatedTestCase.xml │ │ │ │ │ ├── nested_foreach_iterate.xml │ │ │ │ │ ├── nonExistentServiceProxy.xml │ │ │ │ │ ├── payloadFactoryXmlArrayTestProxy.xml │ │ │ │ │ ├── pfConvertComplexJsonStreamToXML.xml │ │ │ │ │ ├── pfJSONtoJSONWithArrayLiteralProxy.xml │ │ │ │ │ ├── pfJSONtoXMLWithDollarMarkProxy.xml │ │ │ │ │ ├── pfXMLStringWithCurlyBracketsProxy.xml │ │ │ │ │ ├── pfXMLStringWithSquareBracketsProxy.xml │ │ │ │ │ ├── propertyAxis2ClientRemoveTestProxy.xml │ │ │ │ │ ├── propertyBooleanAxis2ClientTestProxy.xml │ │ │ │ │ ├── propertyBooleanAxis2TestProxy.xml │ │ │ │ │ ├── propertyBooleanDefaultTestProxy.xml │ │ │ │ │ ├── propertyBooleanOperationTestProxy.xml │ │ │ │ │ ├── propertyBooleanTransportTestProxy.xml │ │ │ │ │ ├── propertyConfRegistryTestProxy.xml │ │ │ │ │ ├── propertyDoubleAxis2ClientTestProxy.xml │ │ │ │ │ ├── propertyDoubleAxis2TestProxy.xml │ │ │ │ │ ├── propertyDoubleDefaultTestProxy.xml │ │ │ │ │ ├── propertyDoubleOperationTestProxy.xml │ │ │ │ │ ├── propertyDoubleTransportTestProxy.xml │ │ │ │ │ ├── propertyFloatAxis2ClientTestProxy.xml │ │ │ │ │ ├── propertyFloatAxis2RemoveTestProxy.xml │ │ │ │ │ ├── propertyFloatAxis2TestProxy.xml │ │ │ │ │ ├── propertyFloatDefaultRemoveTestProxy.xml │ │ │ │ │ ├── propertyFloatDefaultTestProxy.xml │ │ │ │ │ ├── propertyFloatOperationRemoveTestProxy.xml │ │ │ │ │ ├── propertyFloatOperationTestProxy.xml │ │ │ │ │ ├── propertyFloatTransportRemoveTestProxy.xml │ │ │ │ │ ├── propertyFloatTransportTestProxy.xml │ │ │ │ │ ├── propertyGovRegistryTestProxy.xml │ │ │ │ │ ├── propertyInTransportScopeTestProxy.xml │ │ │ │ │ ├── propertyIntAxis2ClientTestProxy.xml │ │ │ │ │ ├── propertyIntAxis2RemoveTestProxy.xml │ │ │ │ │ ├── propertyIntAxis2TestProxy.xml │ │ │ │ │ ├── propertyIntDefaultRemoveTestProxy.xml │ │ │ │ │ ├── propertyIntDefaultTestProxy.xml │ │ │ │ │ ├── propertyIntOperationRemoveTestProxy.xml │ │ │ │ │ ├── propertyIntOperationTestProxy.xml │ │ │ │ │ ├── propertyIntTransportRemoveTestProxy.xml │ │ │ │ │ ├── propertyIntTransportTestProxy.xml │ │ │ │ │ ├── propertyJmsCorrelationIdTestProxy.xml │ │ │ │ │ ├── propertyLongAxis2RemoveTestProxy.xml │ │ │ │ │ ├── propertyLongAxis2TestProxy.xml │ │ │ │ │ ├── propertyLongDefaultRemoveTestProxy.xml │ │ │ │ │ ├── propertyLongOperationRemoveTestProxy.xml │ │ │ │ │ ├── propertyLongTransportRemoveTestProxy.xml │ │ │ │ │ ├── propertyMediatorFilePropertyTestProxy.xml │ │ │ │ │ ├── propertyNoKeepAliveTestProxy.xml │ │ │ │ │ ├── propertyOMAxis2RemoveTestProxy.xml │ │ │ │ │ ├── propertyOMAxis2TestProxy.xml │ │ │ │ │ ├── propertyOMDefaultRemoveTestProxy.xml │ │ │ │ │ ├── propertyOMOperationRemoveTestProxy.xml │ │ │ │ │ ├── propertyOMTransportRemoveTestProxy.xml │ │ │ │ │ ├── propertyOperationNameTestProxy.xml │ │ │ │ │ ├── propertyPostToUriTestProxy.xml │ │ │ │ │ ├── propertyShortAxis2ClientTestProxy.xml │ │ │ │ │ ├── propertyShortAxis2RemoveTestProxy.xml │ │ │ │ │ ├── propertyShortAxis2TestProxy.xml │ │ │ │ │ ├── propertyShortDefaultRemoveTestProxy.xml │ │ │ │ │ ├── propertyShortDefaultTestProxy.xml │ │ │ │ │ ├── propertyShortOperationRemoveTestProxy.xml │ │ │ │ │ ├── propertyShortOperationTestProxy.xml │ │ │ │ │ ├── propertyShortTransportRemoveTestProxy.xml │ │ │ │ │ ├── propertyShortTransportTestProxy.xml │ │ │ │ │ ├── propertyStringAxis2ClientTestProxy.xml │ │ │ │ │ ├── propertyStringAxis2RemoveTestProxy.xml │ │ │ │ │ ├── propertyStringAxis2TestProxy.xml │ │ │ │ │ ├── propertyStringDefaultRemoveTestProxy.xml │ │ │ │ │ ├── propertyStringDefaultTestProxy.xml │ │ │ │ │ ├── propertyStringOperationRemoveTestProxy.xml │ │ │ │ │ ├── propertyStringOperationTestProxy.xml │ │ │ │ │ ├── propertyStringTransportRemoveTestProxy.xml │ │ │ │ │ ├── propertyStringTransportTestProxy.xml │ │ │ │ │ ├── setActionHeaderTestProxy.xml │ │ │ │ │ ├── setToHeaderTestProxy.xml │ │ │ │ │ ├── shortVal.xml │ │ │ │ │ ├── shortXpath.xml │ │ │ │ │ ├── static.xml │ │ │ │ │ ├── storeDynamicRoutingTestProxy.xml │ │ │ │ │ ├── stringValProperty.xml │ │ │ │ │ ├── stringXpathProperty.xml │ │ │ │ │ ├── testProcessor.xml │ │ │ │ │ ├── throttlingConcurrentAccessLargeRequestCountTestProxy.xml │ │ │ │ │ ├── throttlingMaxAccessOneProxy.xml │ │ │ │ │ ├── throttlingMaxConcurrentAccessProxy.xml │ │ │ │ │ ├── throttlingMxConcurrentAccessTestProxy.xml │ │ │ │ │ ├── throttlingPolicyFromRegistryTestProxy.xml │ │ │ │ │ ├── timeoutClone.xml │ │ │ │ │ ├── timeoutIterator.xml │ │ │ │ │ ├── urlRewriteAppendFullUriTestProxy.xml │ │ │ │ │ ├── urlRewriteAppendHostNameTestProxy.xml │ │ │ │ │ ├── urlRewriteAppendPathTestProxy.xml │ │ │ │ │ ├── urlRewriteAppendPortTestProxy.xml │ │ │ │ │ ├── urlRewriteAppendProtocolTestProxy.xml │ │ │ │ │ ├── urlRewriteByExpressionTestProxy.xml │ │ │ │ │ ├── urlRewriteByHostTestProxy.xml │ │ │ │ │ ├── urlRewriteByPortTestProxy.xml │ │ │ │ │ ├── urlRewriteByUrlContextTestProxy.xml │ │ │ │ │ ├── urlRewriteFulUriTestProxy.xml │ │ │ │ │ ├── urlRewritePrependFullUriTestProxy.xml │ │ │ │ │ ├── urlRewritePrependHostTestProxy.xml │ │ │ │ │ ├── urlRewritePrependPathTestProxy.xml │ │ │ │ │ ├── urlRewritePrependPortTestProxy.xml │ │ │ │ │ ├── urlRewritePrependProtocolTestProxy.xml │ │ │ │ │ ├── urlRewriteRemoveFullUriTestProxy.xml │ │ │ │ │ ├── urlRewriteRemoveHostTestProxy.xml │ │ │ │ │ ├── urlRewriteRemovePathTestProxy.xml │ │ │ │ │ ├── urlRewriteRemovePortTestProxy.xml │ │ │ │ │ ├── urlRewriteRemoveProtocolTestProxy.xml │ │ │ │ │ ├── urlRewriteReplaceFromPropertyTestProxy.xml │ │ │ │ │ ├── urlRewriteReplaceProtocolTestProxy.xml │ │ │ │ │ ├── urlRewriteSetFullUrlTestProxy.xml │ │ │ │ │ ├── urlRewriteSetHostNameTestProxy.xml │ │ │ │ │ ├── urlRewriteSetPathTestProxy.xml │ │ │ │ │ ├── urlRewriteSetPortTestProxy.xml │ │ │ │ │ ├── urlRewriteSetProtocolTestProxy.xml │ │ │ │ │ └── urlRewriteSetUrlTestProxy.xml │ │ │ │ │ ├── sequences │ │ │ │ │ ├── CallMediatorFailOverTestSequence1.xml │ │ │ │ │ ├── CallMediatorFailOverTestSequence2.xml │ │ │ │ │ ├── CallMediatorInSequenceScenario2TestSequence.xml │ │ │ │ │ ├── CloneIntegrationEndpointsSeqAggregate.xml │ │ │ │ │ ├── CloneIntegrationEndpointsSeqClone.xml │ │ │ │ │ ├── CloneIntegrationEndpointsSeqCloneHttps.xml │ │ │ │ │ ├── IterateMediatorSequence.xml │ │ │ │ │ ├── PF.xml │ │ │ │ │ ├── SEQ1.xml │ │ │ │ │ ├── SEQ2.xml │ │ │ │ │ ├── SEQ3.xml │ │ │ │ │ ├── SendLetterSequence.xml │ │ │ │ │ ├── Soap11FaultActorTestCaseErrorSeq.xml │ │ │ │ │ ├── Soap11FaultActorTestCaseSeq.xml │ │ │ │ │ ├── Soap11FaultCodeClientTestCaseErrorSeq.xml │ │ │ │ │ ├── Soap11FaultCodeClientTestCaseSeq.xml │ │ │ │ │ ├── Soap11FaultCodeMustUnderstandTestCaseErrorSeq.xml │ │ │ │ │ ├── Soap11FaultCodeMustUnderstandTestCaseSeq.xml │ │ │ │ │ ├── Soap11FaultCodeServerTestCaseErrorSeq.xml │ │ │ │ │ ├── Soap11FaultCodeServerTestCaseSeq.xml │ │ │ │ │ ├── Soap11FaultCodeVersionMismatchedTestCaseErrorSeq.xml │ │ │ │ │ ├── Soap11FaultCodeVersionMismatchedTestCaseSeq.xml │ │ │ │ │ ├── Soap11FaultDetailsTestCaseErrorSeq.xml │ │ │ │ │ ├── Soap11FaultDetailsTestCaseSeq.xml │ │ │ │ │ ├── Soap11FaultOutSequenceTestCaseErrorSeq.xml │ │ │ │ │ ├── Soap11FaultOutSequenceTestCaseSeq.xml │ │ │ │ │ ├── Soap11FaultStringExpressionTestCaseErrorSeq.xml │ │ │ │ │ ├── Soap11FaultStringExpressionTestCaseSeq.xml │ │ │ │ │ ├── Soap11FaultStringValueTestCaseErrorSeq.xml │ │ │ │ │ ├── Soap11FaultStringValueTestCaseSeq.xml │ │ │ │ │ ├── Soap11FaultWithAttributeResponseFalseTestCaseErrorSeq.xml │ │ │ │ │ ├── Soap11FaultWithAttributeResponseFalseTestCaseSeq.xml │ │ │ │ │ ├── Soap11FaultWithAttributeResponseFalseWithAddressingTestCaseErrorSeq.xml │ │ │ │ │ ├── Soap11FaultWithAttributeResponseFalseWithAddressingTestCaseSeq.xml │ │ │ │ │ ├── Soap11FaultWithAttributeResponseTrueTestCaseErrorSeq.xml │ │ │ │ │ ├── Soap11FaultWithAttributeResponseTrueTestCaseSeq.xml │ │ │ │ │ ├── Soap12FaultActorTestCaseErrorSeq.xml │ │ │ │ │ ├── Soap12FaultActorTestCaseSeq.xml │ │ │ │ │ ├── Soap12FaultCodeDataEncodingUnknownTestCaseErrorSeq.xml │ │ │ │ │ ├── Soap12FaultCodeDataEncodingUnknownTestCaseSeq.xml │ │ │ │ │ ├── Soap12FaultCodeMustUnderstandTestCaseErrorSeq.xml │ │ │ │ │ ├── Soap12FaultCodeMustUnderstandTestCaseSeq.xml │ │ │ │ │ ├── Soap12FaultCodeReceiverTestCaseErrorSeq.xml │ │ │ │ │ ├── Soap12FaultCodeReceiverTestCaseSeq.xml │ │ │ │ │ ├── Soap12FaultCodeSenderTestCaseErrorSeq.xml │ │ │ │ │ ├── Soap12FaultCodeSenderTestCaseSeq.xml │ │ │ │ │ ├── Soap12FaultCodeVersionMismatchedTestCaseErrorSeq.xml │ │ │ │ │ ├── Soap12FaultCodeVersionMismatchedTestCaseSeq.xml │ │ │ │ │ ├── Soap12FaultDetailAsElementTestCaseErrorSeq.xml │ │ │ │ │ ├── Soap12FaultDetailAsElementTestCaseSeq.xml │ │ │ │ │ ├── Soap12FaultDetailsTestCaseErrorSeq.xml │ │ │ │ │ ├── Soap12FaultDetailsTestCaseSeq.xml │ │ │ │ │ ├── Soap12FaultFullTestCaseErrorSeq.xml │ │ │ │ │ ├── Soap12FaultFullTestCaseSeq.xml │ │ │ │ │ ├── Soap12FaultNodeTestCaseErrorSeq.xml │ │ │ │ │ ├── Soap12FaultNodeTestCaseSeq.xml │ │ │ │ │ ├── Soap12FaultOutSequenceTestCaseErrorSeq.xml │ │ │ │ │ ├── Soap12FaultOutSequenceTestCaseSeq.xml │ │ │ │ │ ├── Soap12FaultStringExpressionTestCaseErrorSeq.xml │ │ │ │ │ ├── Soap12FaultStringExpressionTestCaseSeq.xml │ │ │ │ │ ├── Soap12FaultStringValueTestCaseErrorSeq.xml │ │ │ │ │ ├── Soap12FaultStringValueTestCaseSeq.xml │ │ │ │ │ ├── Soap12FaultWithAttributeResponseFalseTestCaseErrorSeq.xml │ │ │ │ │ ├── Soap12FaultWithAttributeResponseFalseTestCaseSeq.xml │ │ │ │ │ ├── Soap12FaultWithAttributeResponseTrueTestCaseErrorSeq.xml │ │ │ │ │ ├── Soap12FaultWithAttributeResponseTrueTestCaseSeq.xml │ │ │ │ │ ├── Soap12FaultWithPropertyResponseFalseWithAddressingTestCaseErrorSeq.xml │ │ │ │ │ ├── Soap12FaultWithPropertyResponseFalseWithAddressingTestCaseSeq.xml │ │ │ │ │ ├── Target1.xml │ │ │ │ │ ├── Target2.xml │ │ │ │ │ ├── TestFaultSequenceCalledErrorSeq.xml │ │ │ │ │ ├── TestFaultSequenceCalledSeq.xml │ │ │ │ │ ├── aggregateMessages.xml │ │ │ │ │ ├── aggregateMessagesSeq.xml │ │ │ │ │ ├── aggregateMessagesSeq1.xml │ │ │ │ │ ├── aggregateMessagesSeq567.xml │ │ │ │ │ ├── aggregatingOnTimeOutSeq.xml │ │ │ │ │ ├── apiErrorseq.xml │ │ │ │ │ ├── cloneNegativeTestCaseClone.xml │ │ │ │ │ ├── cloningMessages.xml │ │ │ │ │ ├── cloningMessages5.xml │ │ │ │ │ ├── cloningMessages9.xml │ │ │ │ │ ├── cloningMessagesSeq.xml │ │ │ │ │ ├── cnd1_seq.xml │ │ │ │ │ ├── cnd2_seq.xml │ │ │ │ │ ├── cnd51_seq.xml │ │ │ │ │ ├── cnd_seq4.xml │ │ │ │ │ ├── cnd_seq5.xml │ │ │ │ │ ├── createCloneSeq.xml │ │ │ │ │ ├── eMurOutSequence.xml │ │ │ │ │ ├── errorHandler.xml │ │ │ │ │ ├── errorSeq.xml │ │ │ │ │ ├── fault.xml │ │ │ │ │ ├── faultHandler.xml │ │ │ │ │ ├── faultSeq.xml │ │ │ │ │ ├── foreach_simple_sequenceref-aggregateMessages.xml │ │ │ │ │ ├── foreach_simple_sequenceref-foreachseq.xml │ │ │ │ │ ├── foreach_simple_sequenceref-iterateMessages.xml │ │ │ │ │ ├── foreachseq.xml │ │ │ │ │ ├── inMessageHandler.xml │ │ │ │ │ ├── inSequence.xml │ │ │ │ │ ├── injectingSeq.xml │ │ │ │ │ ├── iterateMessages.xml │ │ │ │ │ ├── iterateMessagesSeq560.xml │ │ │ │ │ ├── iterateMessagesSeq567.xml │ │ │ │ │ ├── logCategoryTestSequence.xml │ │ │ │ │ ├── main.xml │ │ │ │ │ ├── messageProcessorSoapHeaderMsgProcSeq.xml │ │ │ │ │ ├── myFaultHandler.xml │ │ │ │ │ ├── namedSequence.xml │ │ │ │ │ ├── nested_foreach_iterate-aggregateMessages.xml │ │ │ │ │ ├── nested_foreach_iterate-iterateMessages.xml │ │ │ │ │ ├── nonExistentService.xml │ │ │ │ │ ├── nonExistentService1.xml │ │ │ │ │ ├── nonExistentService2.xml │ │ │ │ │ ├── onStoreSequence.xml │ │ │ │ │ ├── onStoreSequence1.xml │ │ │ │ │ ├── outSequence.xml │ │ │ │ │ ├── parallel_scatter_gather_seq.xml │ │ │ │ │ ├── replySequence.xml │ │ │ │ │ ├── scatter_gather_seq.xml │ │ │ │ │ ├── sendClone.xml │ │ │ │ │ ├── send_seq.xml │ │ │ │ │ ├── testfault.xml │ │ │ │ │ ├── transactionTestFaultSeq.xml │ │ │ │ │ ├── transactionTestTransaction1Seq.xml │ │ │ │ │ └── transactionTestTransaction2Seq.xml │ │ │ │ │ ├── synapse.xml │ │ │ │ │ └── templates │ │ │ │ │ ├── CloneFunctionalContextTestCaseTemplate.xml │ │ │ │ │ ├── EnrichAndDoubleDropIntegrationTestAggrTemplate.xml │ │ │ │ │ ├── EnrichAndDoubleDropIntegrationTestIterTemplate.xml │ │ │ │ │ ├── SeqTemplate1.xml │ │ │ │ │ ├── SeqTemplate2.xml │ │ │ │ │ ├── aggr_func.xml │ │ │ │ │ ├── aggr_func123.xml │ │ │ │ │ ├── callBlocking-template.xml │ │ │ │ │ ├── iter_func.xml │ │ │ │ │ ├── iter_func123.xml │ │ │ │ │ ├── memeber_info_log_template.xml │ │ │ │ │ ├── nullValueTransportHeaderTestTemplate.xml │ │ │ │ │ ├── process_data.xml │ │ │ │ │ ├── request_generate_template.xml │ │ │ │ │ ├── test_func.xml │ │ │ │ │ ├── xslt_func.xml │ │ │ │ │ └── xslt_func2.xml │ │ │ │ ├── synapseconfig │ │ │ │ ├── addressEndpointConfig │ │ │ │ │ ├── addressEP_Test.xml │ │ │ │ │ └── synapse.xml │ │ │ │ ├── config10 │ │ │ │ │ └── synapse.xml │ │ │ │ ├── config11 │ │ │ │ │ └── synapse.xml │ │ │ │ ├── config13 │ │ │ │ │ └── synapse.xml │ │ │ │ ├── config14 │ │ │ │ │ └── custom_header_add.xml │ │ │ │ ├── config603 │ │ │ │ │ └── synapse.xml │ │ │ │ ├── config9 │ │ │ │ │ └── synapse.xml │ │ │ │ ├── config_rule_s3 │ │ │ │ │ └── synapse.xml │ │ │ │ ├── config_single_rule │ │ │ │ │ └── synapse.xml │ │ │ │ ├── config_without_rule │ │ │ │ │ └── synapse.xml │ │ │ │ ├── filters │ │ │ │ │ ├── conditional_router │ │ │ │ │ │ ├── synapse1.xml │ │ │ │ │ │ ├── synapse2.xml │ │ │ │ │ │ ├── synapse3.xml │ │ │ │ │ │ ├── synapse5.xml │ │ │ │ │ │ └── synapse6.xml │ │ │ │ │ ├── filter │ │ │ │ │ │ ├── synapse1.xml │ │ │ │ │ │ ├── synapse2.xml │ │ │ │ │ │ └── synapse3.xml │ │ │ │ │ ├── out │ │ │ │ │ │ └── out_without_children.xml │ │ │ │ │ ├── switchMediator │ │ │ │ │ │ ├── ESBJAVA_1857_switch_case_synapse.xml │ │ │ │ │ │ ├── Invalid_xpath.xml │ │ │ │ │ │ ├── SOAP11_SOAP12_XPath.xml │ │ │ │ │ │ ├── SOAP11_SOAP12_XPath_nagative_case.xml │ │ │ │ │ │ ├── basic_and_without_default_case_synapse.xml │ │ │ │ │ │ ├── further_processing_of_switch_after_match.xml │ │ │ │ │ │ ├── invalid_prefix.xml │ │ │ │ │ │ ├── onerror_sequence_within_switch_config.xml │ │ │ │ │ │ ├── switch_inside_switch_config.xml │ │ │ │ │ │ └── switching_based_on_address_synapse.xml │ │ │ │ │ └── validate │ │ │ │ │ │ ├── schema1.xml │ │ │ │ │ │ ├── schema1a.xml │ │ │ │ │ │ ├── synapse1.xml │ │ │ │ │ │ └── validate_synapse.xml │ │ │ │ ├── messageStore │ │ │ │ │ ├── ESBJAVA-2907StoreOmElementsAsProperties.xml │ │ │ │ │ ├── axis2.xml │ │ │ │ │ ├── inmemory_message_store.xml │ │ │ │ │ ├── sample_700.xml │ │ │ │ │ ├── scriptMediator │ │ │ │ │ │ └── axis2.xml │ │ │ │ │ ├── special_character.xml │ │ │ │ │ └── test.xml │ │ │ │ ├── onCompleteSequenceConfig │ │ │ │ │ └── sequences │ │ │ │ │ │ └── dynamic_seq1.xml │ │ │ │ ├── onCompleteSequenceFromGreg │ │ │ │ │ └── sequences │ │ │ │ │ │ └── dynamic_seq1.xml │ │ │ │ ├── patchAutomation │ │ │ │ │ └── non_ascii_value_properties_synapse_.xml │ │ │ │ ├── patch_automation │ │ │ │ │ └── CloneArtifactTestCase.xml │ │ │ │ ├── payloadmediatype │ │ │ │ │ └── media_type_xml_json_default.xml │ │ │ │ ├── processor │ │ │ │ │ └── forwarding │ │ │ │ │ │ ├── InMemoryStoreSynapse1.xml │ │ │ │ │ │ ├── Retry_On_SOAPFault_In_Out.xml │ │ │ │ │ │ └── Retry_On_SOAPFault_true_In_Out.xml │ │ │ │ ├── propertyMediatorConfig │ │ │ │ │ └── synapse.xml │ │ │ │ ├── requestWithSoapHeaderBlockConfig │ │ │ │ │ └── synapse.xml │ │ │ │ ├── send_mediator │ │ │ │ │ ├── endpoints │ │ │ │ │ │ └── registry_endpoint.xml │ │ │ │ │ └── synapse_config.xml │ │ │ │ ├── throttle │ │ │ │ │ └── ConcurrencyAndRequestBasedThrottlingRequest.xml │ │ │ │ └── vfsTransport │ │ │ │ │ ├── axis2.xml │ │ │ │ │ ├── edi.txt │ │ │ │ │ ├── fail.xml │ │ │ │ │ ├── out │ │ │ │ │ └── test.txt │ │ │ │ │ ├── smooks-config.xml │ │ │ │ │ ├── synapse_config_658.xml │ │ │ │ │ ├── synapse_sample_658_input.xml │ │ │ │ │ ├── test.txt │ │ │ │ │ ├── test.xml │ │ │ │ │ ├── vfs_test_smook_config_at_registry.xml │ │ │ │ │ ├── vfs_test_synapse.xml │ │ │ │ │ └── vfs_xml_to_xml.xml │ │ │ │ └── tcp │ │ │ │ └── transport │ │ │ │ ├── axis2.xml │ │ │ │ ├── client_axis2.xml │ │ │ │ └── tcpProxy.xml │ │ │ ├── automation.xml │ │ │ ├── automationXMLSchema.xsd │ │ │ ├── bin │ │ │ └── integrator.sh │ │ │ ├── log4j.properties │ │ │ ├── security │ │ │ ├── keystore │ │ │ │ ├── client.jks │ │ │ │ └── service.jks │ │ │ └── policies │ │ │ │ ├── custom │ │ │ │ ├── scenario1-policy.xml │ │ │ │ ├── scenario10-policy.xml │ │ │ │ ├── scenario11-policy.xml │ │ │ │ ├── scenario12-policy.xml │ │ │ │ ├── scenario13-policy.xml │ │ │ │ ├── scenario14-policy.xml │ │ │ │ ├── scenario15-policy.xml │ │ │ │ ├── scenario16-policy.xml │ │ │ │ ├── scenario17-policy.xml │ │ │ │ ├── scenario2-policy.xml │ │ │ │ ├── scenario3-policy.xml │ │ │ │ ├── scenario4-policy.xml │ │ │ │ ├── scenario5-policy.xml │ │ │ │ ├── scenario6-policy.xml │ │ │ │ ├── scenario7-policy.xml │ │ │ │ ├── scenario8-policy.xml │ │ │ │ └── scenario9-policy.xml │ │ │ │ ├── scenario-config.xml │ │ │ │ ├── scenario1-policy.xml │ │ │ │ ├── scenario10-policy.xml │ │ │ │ ├── scenario11-policy.xml │ │ │ │ ├── scenario12-policy.xml │ │ │ │ ├── scenario13-policy.xml │ │ │ │ ├── scenario14-policy.xml │ │ │ │ ├── scenario15-policy.xml │ │ │ │ ├── scenario16-policy.xml │ │ │ │ ├── scenario17-policy.xml │ │ │ │ ├── scenario2-policy.xml │ │ │ │ ├── scenario27-policy.xml │ │ │ │ ├── scenario3-policy.xml │ │ │ │ ├── scenario4-policy.xml │ │ │ │ ├── scenario5-policy.xml │ │ │ │ ├── scenario6-policy.xml │ │ │ │ ├── scenario7-policy.xml │ │ │ │ ├── scenario8-policy.xml │ │ │ │ └── scenario9-policy.xml │ │ │ ├── smokeTestng.xml │ │ │ ├── testng.xml │ │ │ └── tomcat │ │ │ └── catalina-server.xml │ ├── tests-mediator-2 │ │ ├── .gitignore │ │ ├── pom.xml │ │ └── src │ │ │ └── test │ │ │ ├── java │ │ │ └── org │ │ │ │ └── wso2 │ │ │ │ └── carbon │ │ │ │ └── esb │ │ │ │ ├── ServerStartupTestCase.java │ │ │ │ ├── mediator │ │ │ │ └── test │ │ │ │ │ ├── classMediator │ │ │ │ │ ├── ClassMediationWithLoadOfPropertiesTestCase.java │ │ │ │ │ ├── InvokeAfterRemovingPropertiesTestCase.java │ │ │ │ │ ├── PropertyPersistenceAddingTestCase.java │ │ │ │ │ ├── PropertyPersistenceDeletingAndAddingTstCase.java │ │ │ │ │ └── PropertyPersistenceDeletingTestCase.java │ │ │ │ │ ├── datamapper │ │ │ │ │ ├── DataMapperIntegrationTest.java │ │ │ │ │ └── DataMapperSimpleTestCase.java │ │ │ │ │ ├── fastXslt │ │ │ │ │ ├── CallTemplateIntegrationSample750FastXSLTTestCase.java │ │ │ │ │ ├── DynamicKeyFastXsltTransformationTestCase.java │ │ │ │ │ └── FastXSLTTransformFileFromLocalFileUsingSample8TestCase.java │ │ │ │ │ ├── invoke │ │ │ │ │ └── InvokeTemplateIntegrationTest.java │ │ │ │ │ ├── iterate │ │ │ │ │ ├── ESBJAVA2843IterateTestCase.java │ │ │ │ │ ├── InvalidNamespaceTestCase.java │ │ │ │ │ ├── InvalidSoapActionTestCase.java │ │ │ │ │ ├── InvalidTargetAddressTestCase.java │ │ │ │ │ ├── InvalidXPathTestCase.java │ │ │ │ │ ├── IterateAnonymousEndpointsTest.java │ │ │ │ │ ├── IterateAttachPathTest.java │ │ │ │ │ ├── IterateClient.java │ │ │ │ │ ├── IterateContinueParentTest.java │ │ │ │ │ ├── IterateEndpointsTest.java │ │ │ │ │ ├── IterateExpressionLessTestCase.java │ │ │ │ │ ├── IterateIDAggregateIDMismatchTestCase.java │ │ │ │ │ ├── IterateIDTestCase.java │ │ │ │ │ ├── IterateJsonPathTest.java │ │ │ │ │ ├── IterateLargeMessageTestCase.java │ │ │ │ │ ├── IterateNamedEndpointsTest.java │ │ │ │ │ ├── IterateRegistryAsTargetTestCase.java │ │ │ │ │ ├── IterateSOAPActionTest.java │ │ │ │ │ ├── IterateSequentialFaultSequenceTestCase.java │ │ │ │ │ ├── IterateSequentialPropertySavingTestCase.java │ │ │ │ │ ├── IterateSequentialPropertyTestCase.java │ │ │ │ │ ├── IterateSmallMessageTestCase.java │ │ │ │ │ ├── IterateTargetSequenceTypeTestCase.java │ │ │ │ │ ├── IterateWithRegistriesAsTargetEndpointsTestCase.java │ │ │ │ │ ├── NullNameSpaceForAttachPathTestCase.java │ │ │ │ │ └── NullNameSpaceForIterateExpressionTestCase.java │ │ │ │ │ ├── loopback │ │ │ │ │ └── LoopbackIntegrationTest.java │ │ │ │ │ ├── respond │ │ │ │ │ └── RespondIntegrationTest.java │ │ │ │ │ ├── script │ │ │ │ │ ├── AddHeadersUsingNashornJsTestCase.java │ │ │ │ │ ├── CustomIntegrationWithJSStoredInRegistryTestCase.java │ │ │ │ │ ├── GroovyScriptSupportTestCase.java │ │ │ │ │ ├── InlineNashornJsFunctionsForBothInAndOutTestCase.java │ │ │ │ │ ├── InlinedFunctionTest.java │ │ │ │ │ ├── InvalidFunctionTestCase.java │ │ │ │ │ ├── InvalidScriptLanguageTestCase.java │ │ │ │ │ ├── InvokeScriptWithDynamicKeyTestCase.java │ │ │ │ │ ├── InvokingInvalidFunctionInNashornJsTestCase.java │ │ │ │ │ ├── JsonSupportByScriptMediatorTestCase.java │ │ │ │ │ ├── LocalEntryFunctionTestForNashornTestCase.java │ │ │ │ │ ├── MediationWithNashornJsScriptStoredInRegistryTestCase.java │ │ │ │ │ ├── NashornJsScriptStoredInGovRegistryTestCase.java │ │ │ │ │ ├── NativeJsonSupportByNashornJsTestCase.java │ │ │ │ │ ├── RubyScriptSupportTestCase.java │ │ │ │ │ ├── ScriptIntegrationInvokeJsScriptFunction.java │ │ │ │ │ ├── ScriptIntegrationRetrieveScriptFromConfig.java │ │ │ │ │ ├── ScriptIntegrationToGenerateFaultTestCase.java │ │ │ │ │ ├── ScriptWithIncludeOptionTestCase.java │ │ │ │ │ ├── SequenceWhichHasJsFunctionsForBothInOutTestCase.java │ │ │ │ │ ├── SetPropertyWithScopeInScriptMediatorTestCase.java │ │ │ │ │ └── SetRemovePropertiesWithNashornJsTestCase.java │ │ │ │ │ ├── send │ │ │ │ │ ├── LogMediatorAfterSendMediatorTestCase.java │ │ │ │ │ ├── SendIntegrationDefaultSequenceTestCase.java │ │ │ │ │ ├── SendIntegrationDynamicSequenceTestCase.java │ │ │ │ │ ├── SendIntegrationSequenceAtConfigRegistryTestCase.java │ │ │ │ │ ├── SendIntegrationSequenceAtGovRegistryTestCase.java │ │ │ │ │ ├── SendIntegrationSequenceAtLocalRegistryTestCase.java │ │ │ │ │ ├── SendIntegrationTestCase.java │ │ │ │ │ └── SendMediatorEndpointFromRegistryTestCase.java │ │ │ │ │ ├── sequence │ │ │ │ │ ├── DynamicSequenceTestCase.java │ │ │ │ │ └── SequenceIntegrationNonExistingSequenceNegativeTestCase.java │ │ │ │ │ ├── smooks │ │ │ │ │ ├── LargeCSVTransformSmooksTestCase.java │ │ │ │ │ ├── SmooksLargeFileProcessingTestCase.java │ │ │ │ │ ├── SmooksMediatorConfigFromConfigRegistryTestCase.java │ │ │ │ │ ├── SmooksMediatorConfigFromLocalEntryTestCase.java │ │ │ │ │ ├── SmooksMediatorXMLtoXMLTransformTestCase.java │ │ │ │ │ └── utils │ │ │ │ │ │ ├── CSVInputRequestUtil.java │ │ │ │ │ │ └── FileUtils.java │ │ │ │ │ ├── spring │ │ │ │ │ ├── ProvidingDifferentBeanNamesTestCase.java │ │ │ │ │ ├── SpringMediationBeansTestCase.java │ │ │ │ │ └── SpringMediationTestCase.java │ │ │ │ │ ├── switchMediator │ │ │ │ │ ├── ESBJAVA1857TestCase.java │ │ │ │ │ ├── FurtherProcessingOfSwitchAfterMatchTestCase.java │ │ │ │ │ ├── InvalidPrefixTestCase.java │ │ │ │ │ ├── InvalidXPathSynapseConfigTestCase.java │ │ │ │ │ ├── InvokeOnErrorSequenceFromSwitchIntegrationTestCase.java │ │ │ │ │ ├── SOAPNSBasedSwitching.java │ │ │ │ │ ├── SOAPNSBasedSwitchingNegativeCase.java │ │ │ │ │ ├── SwitchInsideSwitchTestCase.java │ │ │ │ │ ├── SwitchIntegrationSubsequenceMatchingTestCase.java │ │ │ │ │ ├── SwitchingBasedOnAddressTestCase.java │ │ │ │ │ └── WithoutDefaultCase.java │ │ │ │ │ ├── transform │ │ │ │ │ ├── JSONTransformJSONSchemaTestCases.java │ │ │ │ │ ├── JSONTransformMediatorTestcases.java │ │ │ │ │ └── JSONTransformSynapsePropertiesTestcase.java │ │ │ │ │ ├── validate │ │ │ │ │ ├── ValidateIntegrationDynamicSchemaChangeTestCase.java │ │ │ │ │ ├── ValidateIntegrationDynamicSchemaKeyTestCase.java │ │ │ │ │ ├── ValidateIntegrationNegativeTestCase.java │ │ │ │ │ ├── ValidateIntegrationTestCase.java │ │ │ │ │ ├── ValidateJSONSchemaTestCase.java │ │ │ │ │ ├── ValidateMediator2.java │ │ │ │ │ └── ValidateMediatorTestCase.java │ │ │ │ │ ├── xquery │ │ │ │ │ ├── XQueryCustom.java │ │ │ │ │ ├── XQueryCustomVariableAsBoolean.java │ │ │ │ │ ├── XQueryCustomVariableAsByte.java │ │ │ │ │ ├── XQueryCustomVariableAsDouble.java │ │ │ │ │ ├── XQueryCustomVariableAsFloat.java │ │ │ │ │ ├── XQueryCustomVariableAsInt.java │ │ │ │ │ ├── XQueryCustomVariableAsInteger.java │ │ │ │ │ ├── XQueryCustomVariableAsLong.java │ │ │ │ │ ├── XQueryCustomVariableAsString.java │ │ │ │ │ ├── XQueryEmptyEmptySoapRequestTestCase.java │ │ │ │ │ ├── XQueryIntegrationTestCase.java │ │ │ │ │ ├── XQueryReplaceEmptyMessageBody.java │ │ │ │ │ ├── XquaryInvaluedKeyTestCase.java │ │ │ │ │ └── util │ │ │ │ │ │ └── RequestUtil.java │ │ │ │ │ └── xslt │ │ │ │ │ ├── DynamicKeyXsltTransformationTestCase.java │ │ │ │ │ ├── FileSystemLocalEntryXsltTransformationTestCase.java │ │ │ │ │ ├── InLineLocalEntryXsltTransformationTestCase.java │ │ │ │ │ ├── RegistryEntryXsltTransformationTestCase.java │ │ │ │ │ ├── XSLTonEmptySoapBodyWithSourceXPath.java │ │ │ │ │ ├── XsltTransformationFromUrlTestCase.java │ │ │ │ │ └── XsltTransformationWithPropertyTestCase.java │ │ │ │ └── message │ │ │ │ └── processor │ │ │ │ └── test │ │ │ │ ├── MessageProcessorAdminTestCase.java │ │ │ │ ├── MessageProcessorPersistenceTestCase.java │ │ │ │ ├── MessageProcessorWithFaultDeactivateSeqTestCase.java │ │ │ │ ├── failover │ │ │ │ └── FailoverForwardingProcessorTestCase.java │ │ │ │ └── forwarding │ │ │ │ ├── ESBJAVA2006RetryOnSOAPFaultTestCase.java │ │ │ │ ├── StoreAndForwardWithEmptyMessageBodyTestCase.java │ │ │ │ └── WithInMemoryStoreTestCase.java │ │ │ └── resources │ │ │ ├── artifacts │ │ │ ├── AXIS2 │ │ │ │ ├── aar │ │ │ │ │ ├── Axis2 Service.aar │ │ │ │ │ ├── Axis2Service.aar │ │ │ │ │ ├── Echo.aar │ │ │ │ │ ├── HelloWorld.aar │ │ │ │ │ ├── LBService1.aar │ │ │ │ │ ├── LBService2.aar │ │ │ │ │ ├── LBService3.aar │ │ │ │ │ ├── MTOMSwASampleService.aar │ │ │ │ │ ├── RetryOnSoapFault.aar │ │ │ │ │ ├── SecureStockQuoteService.aar │ │ │ │ │ ├── SecureStockQuoteServiceScenario1.aar │ │ │ │ │ ├── SecureStockQuoteServiceScenario10.aar │ │ │ │ │ ├── SecureStockQuoteServiceScenario2.aar │ │ │ │ │ ├── SecureStockQuoteServiceScenario3.aar │ │ │ │ │ ├── SecureStockQuoteServiceScenario4.aar │ │ │ │ │ ├── SecureStockQuoteServiceScenario5.aar │ │ │ │ │ ├── SecureStockQuoteServiceScenario6.aar │ │ │ │ │ ├── SecureStockQuoteServiceScenario7.aar │ │ │ │ │ ├── SecureStockQuoteServiceScenario8.aar │ │ │ │ │ ├── SecureStockQuoteServiceScenario9.aar │ │ │ │ │ ├── SimpleStockQuoteService.aar │ │ │ │ │ ├── SimpleStockQuoteService_timeout.aar │ │ │ │ │ ├── StratosSchemaimportservice.aar │ │ │ │ │ ├── StudentService.aar │ │ │ │ │ ├── geows.aar │ │ │ │ │ ├── hcfacilitylocator.aar │ │ │ │ │ └── hcinformationservice.aar │ │ │ │ └── config │ │ │ │ │ ├── test_axis2_server_9000.xml │ │ │ │ │ ├── test_axis2_server_9001.xml │ │ │ │ │ ├── test_axis2_server_9002.xml │ │ │ │ │ ├── test_axis2_server_9003.xml │ │ │ │ │ ├── test_axis2_server_9007.xml │ │ │ │ │ ├── test_axis2_server_9009.xml │ │ │ │ │ ├── test_axis2_server_9015.xml │ │ │ │ │ ├── test_axis2_server_9017.xml │ │ │ │ │ └── test_axis2_server_9018.xml │ │ │ └── ESB │ │ │ │ ├── endpoint │ │ │ │ ├── CARBON11016_synapse.xml │ │ │ │ ├── addressEndpointConfig │ │ │ │ │ ├── addressEP_Test.xml │ │ │ │ │ ├── invalidPropertyAddressEndPoint.xml │ │ │ │ │ └── synapse.xml │ │ │ │ ├── defaultEndpointConfig │ │ │ │ │ ├── defaultEP_Test.xml │ │ │ │ │ └── synapse.xml │ │ │ │ ├── endpointFotmatRestPTTestConfig.xml │ │ │ │ ├── failoverEndpointConfig │ │ │ │ │ ├── failOverWithDisabledErrors.xml │ │ │ │ │ ├── failoverEP_Test.xml │ │ │ │ │ └── synapse.xml │ │ │ │ ├── httpEndpointConfig │ │ │ │ │ └── synapse.xml │ │ │ │ ├── loadbalancingEndpointConfig │ │ │ │ │ ├── loadbalancingEP_Test.xml │ │ │ │ │ └── synapse.xml │ │ │ │ ├── wsdlEndpointConfig │ │ │ │ │ ├── synapse.xml │ │ │ │ │ └── wsdlEP_Test.xml │ │ │ │ └── wsdlTestEp.xml │ │ │ │ ├── jar │ │ │ │ ├── org.wso2.carbon.test.mediator.stockmediator-v1.0.1.jar │ │ │ │ ├── org.wso2.carbon.test.mediator.stockmediator-v1.0.2.jar │ │ │ │ └── org.wso2.carbon.test.mediator.stockmediator-v1.0.jar │ │ │ │ ├── json │ │ │ │ ├── inputESBIterateJson.json │ │ │ │ └── jsonTransformationConfig │ │ │ │ │ └── deployment.toml │ │ │ │ ├── mediatorconfig │ │ │ │ ├── class │ │ │ │ │ ├── class_mediation_with_twenty_properties.xml │ │ │ │ │ ├── class_property_persistence_five_properties.xml │ │ │ │ │ ├── class_property_persistence_four_properties.xml │ │ │ │ │ └── class_property_persistence_three_properties.xml │ │ │ │ ├── fast_xslt │ │ │ │ │ └── calltemplate_integration_fastxslt_sample750_synapse.xml │ │ │ │ ├── iterate │ │ │ │ │ ├── iterate1.txt │ │ │ │ │ ├── iterateEndpoint.xml │ │ │ │ │ ├── iterateLogAndSendSequence.xml │ │ │ │ │ ├── iterateSequentialTrueProperty.xml │ │ │ │ │ ├── iterateSequentialTruePropertyWithOutProperty.xml │ │ │ │ │ ├── iterate_jsonpath.xml │ │ │ │ │ ├── iterate_target_configuration.xml │ │ │ │ │ └── iterator_expressionLess.xml │ │ │ │ ├── script │ │ │ │ │ ├── stockquoteTransform.js │ │ │ │ │ └── stockquoteTransform.rb │ │ │ │ ├── script_js │ │ │ │ │ ├── detailTransform.js │ │ │ │ │ ├── stockquoteTransform.js │ │ │ │ │ ├── stockquoteTransformNashorn.js │ │ │ │ │ └── test54.js │ │ │ │ ├── send │ │ │ │ │ ├── endpoints │ │ │ │ │ │ └── registry_endpoint.xml │ │ │ │ │ ├── sequence │ │ │ │ │ │ ├── test_sequence_build_message_conf.xml │ │ │ │ │ │ ├── test_sequence_build_message_gov.xml │ │ │ │ │ │ └── test_sequence_build_message_local.xml │ │ │ │ │ └── synapse_endpoint_registry.xml │ │ │ │ ├── spring │ │ │ │ │ ├── spring_mediation.xml │ │ │ │ │ ├── spring_mediation_different_bean.xml │ │ │ │ │ ├── spring_mediation_different_bean_id.xml │ │ │ │ │ ├── spring_mediation_error.xml │ │ │ │ │ ├── spring_mediation_invalid_spring_bean.xml │ │ │ │ │ ├── spring_mediation_springBean_resource_not_exist.xml │ │ │ │ │ └── utils │ │ │ │ │ │ ├── different_bean_names.xml │ │ │ │ │ │ ├── invalid_spring_bean.xml │ │ │ │ │ │ ├── spring_bean_for_error_client.xml │ │ │ │ │ │ ├── springbean.xml │ │ │ │ │ │ └── updating_spring.xml │ │ │ │ └── validate │ │ │ │ │ ├── invalidRequest.json │ │ │ │ │ └── validRequest.json │ │ │ │ ├── messageProcessorConfig │ │ │ │ ├── EmptyMsgBodyMessageStoreTest.xml │ │ │ │ ├── EmptyMsgBodyTest.xml │ │ │ │ ├── Message_Processor_Persistence_After_Restart_Synapse.xml │ │ │ │ ├── mspAdminTestConfig.xml │ │ │ │ └── mspAdminTestInMemoryMessageProcessor.xml │ │ │ │ ├── mtom │ │ │ │ └── asf-logo.gif │ │ │ │ ├── server │ │ │ │ ├── conf │ │ │ │ │ ├── axis2 │ │ │ │ │ │ └── axis2.xml │ │ │ │ │ ├── deployment.toml │ │ │ │ │ └── log4j.properties │ │ │ │ ├── dropins │ │ │ │ │ └── jruby-complete-1.3.0.wso2v1.jar │ │ │ │ ├── lib │ │ │ │ │ ├── ClassMediatorDemo-1.0.0.jar │ │ │ │ │ ├── SimpleClassMediator-1.0.0.jar │ │ │ │ │ ├── h2-1.4.199.jar │ │ │ │ │ └── synapse-samples_2.1.7.wso2v112.jar │ │ │ │ ├── registry │ │ │ │ │ ├── config │ │ │ │ │ │ ├── endpointConfig │ │ │ │ │ │ │ └── registry_endpoint.xml │ │ │ │ │ │ ├── endpoints │ │ │ │ │ │ │ └── registry_endpoint.xml │ │ │ │ │ │ ├── jsontransform_schema │ │ │ │ │ │ │ ├── complexSchema.json │ │ │ │ │ │ │ ├── emptySchema.json │ │ │ │ │ │ │ ├── malformedSchema.json │ │ │ │ │ │ │ ├── simpleSchema.json │ │ │ │ │ │ │ └── simpleSchemaWithoutType.json │ │ │ │ │ │ ├── localEntries │ │ │ │ │ │ │ ├── request_transform.xslt │ │ │ │ │ │ │ ├── request_transformation.txt.properties │ │ │ │ │ │ │ ├── request_transformation_DynamicKeyXsltTransformationTestCase.txt │ │ │ │ │ │ │ ├── request_transformation_DynamicKeyXsltTransformationTestCase.txt.properties │ │ │ │ │ │ │ ├── response_transform.xslt │ │ │ │ │ │ │ └── response_transformation_back.txt.properties │ │ │ │ │ │ ├── myEndpoint │ │ │ │ │ │ │ └── iterateEndpoint.xml │ │ │ │ │ │ ├── script_js │ │ │ │ │ │ │ ├── .metadata │ │ │ │ │ │ │ │ ├── stockquoteTransform.js.meta │ │ │ │ │ │ │ │ ├── stockquoteTransformNashorn.js.meta │ │ │ │ │ │ │ │ └── test54.js.meta │ │ │ │ │ │ │ ├── stockquoteTransform.js │ │ │ │ │ │ │ ├── stockquoteTransformNashorn.js │ │ │ │ │ │ │ └── test54.js │ │ │ │ │ │ ├── script_xslt │ │ │ │ │ │ │ ├── transform.xslt │ │ │ │ │ │ │ └── transform_back.xslt │ │ │ │ │ │ ├── sequence_conf │ │ │ │ │ │ │ └── test_sequence_build_message_conf.xml │ │ │ │ │ │ ├── sequences │ │ │ │ │ │ │ └── iterate │ │ │ │ │ │ │ │ └── iterateLogAndSendSequence.xml │ │ │ │ │ │ ├── smooks_config.xml │ │ │ │ │ │ ├── test_sequences_config │ │ │ │ │ │ │ └── receivingSequence_Conf.xml │ │ │ │ │ │ ├── validate │ │ │ │ │ │ │ ├── .metadata │ │ │ │ │ │ │ │ ├── StockQuoteSchema.json.meta │ │ │ │ │ │ │ │ └── largeJsonSchema.json.meta │ │ │ │ │ │ │ ├── StockQuoteSchema.json │ │ │ │ │ │ │ ├── largeJsonSchema.json │ │ │ │ │ │ │ ├── schema.xml │ │ │ │ │ │ │ ├── schema1 │ │ │ │ │ │ │ └── schema1a │ │ │ │ │ │ └── xslt │ │ │ │ │ │ │ ├── transform.xslt │ │ │ │ │ │ │ └── transform_back.xslt │ │ │ │ │ ├── gov │ │ │ │ │ │ └── xslt │ │ │ │ │ │ │ ├── transform.xslt │ │ │ │ │ │ │ └── transform_back.xslt │ │ │ │ │ ├── governance │ │ │ │ │ │ ├── datamapperSimpleTestCase │ │ │ │ │ │ │ ├── json_to_json │ │ │ │ │ │ │ │ ├── inschema.json │ │ │ │ │ │ │ │ ├── outschema.json │ │ │ │ │ │ │ │ └── testMap.dmc │ │ │ │ │ │ │ ├── xml_to_xml │ │ │ │ │ │ │ │ ├── inschema.json │ │ │ │ │ │ │ │ ├── outschema.json │ │ │ │ │ │ │ │ └── testMap.dmc │ │ │ │ │ │ │ ├── xml_to_xml_not_xslt_compatible │ │ │ │ │ │ │ │ ├── inschema.json │ │ │ │ │ │ │ │ ├── outschema.json │ │ │ │ │ │ │ │ ├── testMap.dmc │ │ │ │ │ │ │ │ └── xsltStyleSheet.xml │ │ │ │ │ │ │ ├── xml_to_xml_using_xslt │ │ │ │ │ │ │ │ ├── inschema.json │ │ │ │ │ │ │ │ ├── outschema.json │ │ │ │ │ │ │ │ ├── testMap.dmc │ │ │ │ │ │ │ │ └── xsltStyleSheet.xml │ │ │ │ │ │ │ └── xml_un_to_xml_un │ │ │ │ │ │ │ │ ├── inschema.json │ │ │ │ │ │ │ │ ├── outschema.json │ │ │ │ │ │ │ │ └── testMap.dmc │ │ │ │ │ │ ├── endpointConfig │ │ │ │ │ │ │ └── registry_endpoint.xml │ │ │ │ │ │ ├── localEntries │ │ │ │ │ │ │ ├── response_transformation_back_DynamicKeyXsltTransformationTestCase.txt │ │ │ │ │ │ │ └── response_transformation_back_DynamicKeyXsltTransformationTestCase.txt.properties │ │ │ │ │ │ ├── mi-resources │ │ │ │ │ │ │ └── xslt │ │ │ │ │ │ │ │ ├── transform.xslt │ │ │ │ │ │ │ │ └── transform_back.xslt │ │ │ │ │ │ ├── myEndpoint │ │ │ │ │ │ │ └── iterateEndpoint.xml │ │ │ │ │ │ ├── script │ │ │ │ │ │ │ └── stockquoteTransform.rb │ │ │ │ │ │ ├── script_js │ │ │ │ │ │ │ ├── .metadata │ │ │ │ │ │ │ │ └── stockquoteTransformNashorn.js.meta │ │ │ │ │ │ │ └── stockquoteTransformNashorn.js │ │ │ │ │ │ ├── sequence_conf │ │ │ │ │ │ │ └── test_sequence_build_message_gov.xml │ │ │ │ │ │ ├── sequences │ │ │ │ │ │ │ └── iterate │ │ │ │ │ │ │ │ └── iterateLogAndSendSequence.xml │ │ │ │ │ │ ├── test_sequences_gov │ │ │ │ │ │ │ └── receivingSequence_Gov.xml │ │ │ │ │ │ └── xslt │ │ │ │ │ │ │ ├── transform.xslt │ │ │ │ │ │ │ └── transform_back.xslt │ │ │ │ │ └── local │ │ │ │ │ │ ├── endpointConfig │ │ │ │ │ │ └── registry_endpoint.xml │ │ │ │ │ │ ├── sequence_conf │ │ │ │ │ │ └── test_sequence_build_message_local.xml │ │ │ │ │ │ └── test_sequences_local │ │ │ │ │ │ └── receivingSequence_Local.xml │ │ │ │ └── repository │ │ │ │ │ └── deployment │ │ │ │ │ └── server │ │ │ │ │ ├── carbonapps │ │ │ │ │ └── ScriptIntegrationRetrieveScriptFromConfigCompositeApplication_1.0.0.car │ │ │ │ │ └── synapse-configs │ │ │ │ │ └── default │ │ │ │ │ ├── api │ │ │ │ │ ├── TestIterateMediatorJsonBasicFlow.xml │ │ │ │ │ ├── TestIterateMediatorJsonWithDifferentAttachPath.xml │ │ │ │ │ ├── TestIterateMediatorJsonwithAttachPath.xml │ │ │ │ │ ├── TestIterateMediatorJsonwithCallMediator.xml │ │ │ │ │ ├── TestIterateMediatorJsonwithContinueParent.xml │ │ │ │ │ ├── TestIterateMediatorJsonwithPreservePayload.xml │ │ │ │ │ ├── TestIterateMediatorJsonwithRootAttachPath.xml │ │ │ │ │ ├── TestIterateMediatorJsonwithSequential.xml │ │ │ │ │ ├── WeatherAPI.xml │ │ │ │ │ ├── WeatherIntegration.xml │ │ │ │ │ ├── addHeadersWithNashornJsAPI.xml │ │ │ │ │ ├── nashornJsHandlingNullJsonObjectAPI.xml │ │ │ │ │ ├── nashornJsNativeJSONSupportAPI.xml │ │ │ │ │ ├── nashornJsParseAPI.xml │ │ │ │ │ ├── nashornJsStringifyAPI.xml │ │ │ │ │ ├── scriptMediatorJsHandlingNullJsonObjectAPI.xml │ │ │ │ │ ├── scriptMediatorJsParseAPI.xml │ │ │ │ │ ├── scriptMediatorJsStringifyAPI.xml │ │ │ │ │ ├── scriptMediatorNativeJSONSupportAPI.xml │ │ │ │ │ ├── test.xml │ │ │ │ │ ├── validateMediatorJson.xml │ │ │ │ │ └── xsltEmptySoapBodyWithSourceXPath.xml │ │ │ │ │ ├── endpoints │ │ │ │ │ ├── Master_EndPoint.xml │ │ │ │ │ ├── SOAPFaultSample_EP.xml │ │ │ │ │ ├── StockQuoteService.xml │ │ │ │ │ ├── StockQuoteService_EP.xml │ │ │ │ │ ├── StockQuote_9000_EP.xml │ │ │ │ │ ├── StockQuote_9001_EP.xml │ │ │ │ │ ├── TargetEP.xml │ │ │ │ │ ├── Test_Endpoint_html.xml │ │ │ │ │ ├── WeatherEP.xml │ │ │ │ │ └── mspAdminTestStockQuoteServiceEp.xml │ │ │ │ │ ├── local-entries │ │ │ │ │ ├── a.xml │ │ │ │ │ ├── b.xml │ │ │ │ │ ├── request_transform.xslt.xml │ │ │ │ │ ├── response_transform.xslt.xml │ │ │ │ │ ├── simpleSchemaLocalEntry.xml │ │ │ │ │ ├── smooksKey.xml │ │ │ │ │ ├── smooksTransform.xml │ │ │ │ │ ├── smooksXsltTransform.xml │ │ │ │ │ ├── stockQuoteJsScript.xml │ │ │ │ │ ├── stockQuoteNashornJsScript.xml │ │ │ │ │ ├── stockQuoteRubyScript.xml │ │ │ │ │ ├── stockquote-json-schema.xml │ │ │ │ │ ├── stockquoteScript.xml │ │ │ │ │ ├── validateJsonSchema.xml │ │ │ │ │ ├── validateSchema.xml │ │ │ │ │ ├── validateSchema2.xml │ │ │ │ │ ├── validateSchema3.xml │ │ │ │ │ ├── validateSchemaWithoutNameSpace.xml │ │ │ │ │ ├── xQueryBoolean.xml │ │ │ │ │ ├── xQueryByte.xml │ │ │ │ │ ├── xQueryDouble.xml │ │ │ │ │ ├── xQueryEmptySoapRequest.xml │ │ │ │ │ ├── xQueryFloat.xml │ │ │ │ │ ├── xQueryInt.xml │ │ │ │ │ ├── xQueryInteger.xml │ │ │ │ │ ├── xQueryKey.xml │ │ │ │ │ ├── xQueryLong.xml │ │ │ │ │ ├── xQueryReplaceEmptyMsgBodyTest.xml │ │ │ │ │ ├── xQueryString.xml │ │ │ │ │ ├── xQueryTransformationTest.xml │ │ │ │ │ ├── xslt-key-back.xml │ │ │ │ │ ├── xslt-key-req.xml │ │ │ │ │ ├── xsltScript.xml │ │ │ │ │ ├── xsltSimpleEnvelope.xml │ │ │ │ │ ├── xsltTransformRequest.xml │ │ │ │ │ ├── xsltTransformRequestFile.xml │ │ │ │ │ ├── xsltTransformRequestInline.xml │ │ │ │ │ ├── xsltTransformRequestUrl.xml │ │ │ │ │ ├── xsltTransformRequestWithProperty.xml │ │ │ │ │ ├── xsltTransformResponse.xml │ │ │ │ │ ├── xsltTransformResponseFile.xml │ │ │ │ │ ├── xsltTransformResponseInline.xml │ │ │ │ │ ├── xsltTransformResponseUrl.xml │ │ │ │ │ └── xsltTransformResponseWithProperty.xml │ │ │ │ │ ├── message-processors │ │ │ │ │ ├── EmptyMsgBodyTestProcessor.xml │ │ │ │ │ ├── SamplingProcessor.xml │ │ │ │ │ ├── mspAdminTestInMemoryMessageProcessor.xml │ │ │ │ │ ├── mspDeactivateIfDeactivateSeqFailsMessageProcessor.xml │ │ │ │ │ ├── processorForTestForwardingWithInMemoryStore.xml │ │ │ │ │ ├── processorForTestRetryOnSOAPFault.xml │ │ │ │ │ └── processorForTestRetryOnSOAPFaultTrue.xml │ │ │ │ │ ├── message-stores │ │ │ │ │ ├── mspAdminTestInMemoryMessageStore.xml │ │ │ │ │ ├── mspDeactivateIfDeactivateSeqFailsMessageStore.xml │ │ │ │ │ ├── storeForTestForwardingWithInMemoryStore.xml │ │ │ │ │ ├── storeForTestMessagePersistenceAfterRestart.xml │ │ │ │ │ ├── storeForTestRetryOnSOAPFault.xml │ │ │ │ │ └── storeForTestRetryOnSOAPFaultTrue.xml │ │ │ │ │ ├── proxy-services │ │ │ │ │ ├── DynamicKeyFastXsltTransformationProxy.xml │ │ │ │ │ ├── EmptyMsgBodyTestProxy.xml │ │ │ │ │ ├── FastXSLTTransformFileFromLocalFileProxy.xml │ │ │ │ │ ├── InvalidScriptLanguageTestProxy.xml │ │ │ │ │ ├── IterateIDAggregateIDMismatchTestProxy.xml │ │ │ │ │ ├── IterateWithAnonymousEndpointTestProxy.xml │ │ │ │ │ ├── StockQuoteProxy.xml │ │ │ │ │ ├── addressEndPoint.xml │ │ │ │ │ ├── addressEndPointBM.xml │ │ │ │ │ ├── addressEndPoint_Receiving_Sequence_ConfigReg.xml │ │ │ │ │ ├── addressEndPoint_Receiving_Sequence_ConfigRegBM.xml │ │ │ │ │ ├── addressEndPoint_Receiving_Sequence_Dynamic.xml │ │ │ │ │ ├── addressEndPoint_Receiving_Sequence_Dynamic_BM.xml │ │ │ │ │ ├── addressEndPoint_Receiving_Sequence_GovReg.xml │ │ │ │ │ ├── addressEndPoint_Receiving_Sequence_GovRegBM.xml │ │ │ │ │ ├── addressEndPoint_Receiving_Sequence_LocalReg.xml │ │ │ │ │ ├── addressEndPoint_Receiving_Sequence_LocalRegBM.xml │ │ │ │ │ ├── classMediatorWithLoadOfPropertiesTestCase_main_sequence.xml │ │ │ │ │ ├── dataMapperOneToOneJsonToJsonTestProxy.xml │ │ │ │ │ ├── dataMapperOneToOneXmlToXmlNotXSLTCompatibleTestProxy.xml │ │ │ │ │ ├── dataMapperOneToOneXmlToXmlTestProxy.xml │ │ │ │ │ ├── dataMapperOneToOneXmlToXmlUsingXSLTTestProxy.xml │ │ │ │ │ ├── dataMapperXmlWithUnderscoreToXmlWithUnderscoreTestProxy.xml │ │ │ │ │ ├── defaultEndPoint.xml │ │ │ │ │ ├── defaultEndPointBM.xml │ │ │ │ │ ├── defaultEndPoint_Receiving_Sequence_ConfigReg.xml │ │ │ │ │ ├── defaultEndPoint_Receiving_Sequence_ConfigRegBM.xml │ │ │ │ │ ├── defaultEndPoint_Receiving_Sequence_Dynamic.xml │ │ │ │ │ ├── defaultEndPoint_Receiving_Sequence_Dynamic_BM.xml │ │ │ │ │ ├── defaultEndPoint_Receiving_Sequence_GovReg.xml │ │ │ │ │ ├── defaultEndPoint_Receiving_Sequence_GovRegBM.xml │ │ │ │ │ ├── defaultEndPoint_Receiving_Sequence_LocalReg.xml │ │ │ │ │ ├── defaultEndPoint_Receiving_Sequence_LocalRegBM.xml │ │ │ │ │ ├── failOverEndPoint_Receiving_Sequence_ConfigReg.xml │ │ │ │ │ ├── failOverEndPoint_Receiving_Sequence_ConfigRegBM.xml │ │ │ │ │ ├── failOverEndPoint_Receiving_Sequence_Dynamic.xml │ │ │ │ │ ├── failOverEndPoint_Receiving_Sequence_Dynamic_BM.xml │ │ │ │ │ ├── failOverEndPoint_Receiving_Sequence_GovReg.xml │ │ │ │ │ ├── failOverEndPoint_Receiving_Sequence_GovRegBM.xml │ │ │ │ │ ├── failOverEndPoint_Receiving_Sequence_LocalReg.xml │ │ │ │ │ ├── failOverEndPoint_Receiving_Sequence_LocalRegBM.xml │ │ │ │ │ ├── failoverEndPoint.xml │ │ │ │ │ ├── failoverEndPointBM.xml │ │ │ │ │ ├── invokeAfterRemovingPropertiesTestCase_main_sequence_proxy.xml │ │ │ │ │ ├── iterateDifferentIdTestProxy.xml │ │ │ │ │ ├── iterateInvalidSoapActionInvalidPayloadTestProxy.xml │ │ │ │ │ ├── iterateInvalidSoapActionValidPayloadTestProxy.xml │ │ │ │ │ ├── iterateInvalidTargetAddressTestProxy.xml │ │ │ │ │ ├── iterateInvalidXpathTestProxy.xml │ │ │ │ │ ├── iterateMediatorSequentialFaultSequenceTestProxy.xml │ │ │ │ │ ├── iterateNamedEndpointsTestProxy.xml │ │ │ │ │ ├── iterateSequentialTestProxy.xml │ │ │ │ │ ├── iterateSequentialTruePropertyWithOutProperty.xml │ │ │ │ │ ├── iterateWithAttachPathTestProxy.xml │ │ │ │ │ ├── iterateWithConfigurationEndpoint.xml │ │ │ │ │ ├── iterateWithContinueParentFalseTestProxy.xml │ │ │ │ │ ├── iterateWithContinueParentTrueTestProxy.xml │ │ │ │ │ ├── iterateWithGovernanceEndPointTestProxy.xml │ │ │ │ │ ├── iterateWithHttpEndPointTestProxy.xml │ │ │ │ │ ├── iterateWithHttpsEndPointTestProxy.xml │ │ │ │ │ ├── iterateWithInvalidNameSpaceForAttachPathTestProxy.xml │ │ │ │ │ ├── iterateWithInvalidNameSpaceForExpressionTestProxy.xml │ │ │ │ │ ├── iterateWithMultipleElementsTestProxy.xml │ │ │ │ │ ├── iterateWithNamedSequenceTestProxy.xml │ │ │ │ │ ├── iterateWithNullNamespaceForAttachPathTestProxy.xml │ │ │ │ │ ├── iterateWithNullNamespaceForExpressionTestProxy.xml │ │ │ │ │ ├── iterateWithSOAPActionTestProxy.xml │ │ │ │ │ ├── iterateWithTargetConfigurationTestProxy.xml │ │ │ │ │ ├── iterateWithTargetGovernanceTestProxy.xml │ │ │ │ │ ├── iterateWithValidIterateExpressionMismatchToOriginalMessageTestProxy.xml │ │ │ │ │ ├── loadBalancingEndPoint1.xml │ │ │ │ │ ├── loadBalancingEndPoint10.xml │ │ │ │ │ ├── loadBalancingEndPoint11.xml │ │ │ │ │ ├── loadBalancingEndPoint12.xml │ │ │ │ │ ├── loadBalancingEndPoint13.xml │ │ │ │ │ ├── loadBalancingEndPoint14.xml │ │ │ │ │ ├── loadBalancingEndPoint15.xml │ │ │ │ │ ├── loadBalancingEndPoint16.xml │ │ │ │ │ ├── loadBalancingEndPoint2.xml │ │ │ │ │ ├── loadBalancingEndPoint3.xml │ │ │ │ │ ├── loadBalancingEndPoint4.xml │ │ │ │ │ ├── loadBalancingEndPoint5.xml │ │ │ │ │ ├── loadBalancingEndPoint6.xml │ │ │ │ │ ├── loadBalancingEndPoint7.xml │ │ │ │ │ ├── loadBalancingEndPoint8.xml │ │ │ │ │ ├── loadBalancingEndPoint9.xml │ │ │ │ │ ├── loopBackMediatorTestProxy.xml │ │ │ │ │ ├── messageProcessorInMemoryStoreTestProxy.xml │ │ │ │ │ ├── messageProcessorRetryOnSOAPFaultFalseTestProxy.xml │ │ │ │ │ ├── messageProcessorRetryOnSOAPFaultTrueTestProxy.xml │ │ │ │ │ ├── mspAdminTestProxy.xml │ │ │ │ │ ├── mspDeactivateIfDeactivateSeqFailsProxy.xml │ │ │ │ │ ├── nashornJsInAndOutTestProxy.xml │ │ │ │ │ ├── nashornJsInvokeInvalidFunctionTestProxy.xml │ │ │ │ │ ├── nashornJsRetrieveScriptFromGovRegistryTestProxy.xml │ │ │ │ │ ├── respondMediatorTestProxy.xml │ │ │ │ │ ├── scriptMediatorGroovyBasicTestProxy.xml │ │ │ │ │ ├── scriptMediatorGroovySetJsonPayloadTestProxy.xml │ │ │ │ │ ├── scriptMediatorInAndOutTestProxy.xml │ │ │ │ │ ├── scriptMediatorInFaultSequenceTestProxy.xml │ │ │ │ │ ├── scriptMediatorInvokeXSLTWithDynamicKey.xml │ │ │ │ │ ├── scriptMediatorJSFromEntryTestProxy.xml │ │ │ │ │ ├── scriptMediatorJSInlineTestProxy.xml │ │ │ │ │ ├── scriptMediatorJSRetrieveFromRegistryTestProxy.xml │ │ │ │ │ ├── scriptMediatorJSStoredInRegistryInvalidFunctionTestProxy.xml │ │ │ │ │ ├── scriptMediatorJSStoredInRegistryTestProxy.xml │ │ │ │ │ ├── scriptMediatorNashornJsLocalEntryTestProxy.xml │ │ │ │ │ ├── scriptMediatorNashornJsRetrieveFromRegistryTestProxy.xml │ │ │ │ │ ├── scriptMediatorRubyBasicTestProxy.xml │ │ │ │ │ ├── scriptMediatorRubyStoredInRegistryTestProxy.xml │ │ │ │ │ ├── scriptMediatorSetPropertyWithScopeTestProxy.xml │ │ │ │ │ ├── scriptMediatorWithIncludeOptionTestProxy.xml │ │ │ │ │ ├── sendMediatorDynamicReceiveSeqBuildMessageFalseTestProxy.xml │ │ │ │ │ ├── sendMediatorDynamicReceiveSeqBuildMessageTrueTestProxy.xml │ │ │ │ │ ├── sendMediatorReceiveSeqAtConfigBuildMessageFalseTestProxy.xml │ │ │ │ │ ├── sendMediatorReceiveSeqAtConfigBuildMessageTrueTestProxy.xml │ │ │ │ │ ├── sendMediatorReceiveSeqAtGovBuildMessageFalseTestProxy.xml │ │ │ │ │ ├── sendMediatorReceiveSeqAtGovBuildMessageTrueTestProxy.xml │ │ │ │ │ ├── sendMediatorReceiveSeqAtLocalRegBuildMessageFalseTestProxy.xml │ │ │ │ │ ├── sendMediatorReceiveSeqAtLocalRegBuildMessageTrueTestProxy.xml │ │ │ │ │ ├── sendMediatorWithBuildMessageFalseTestProxy.xml │ │ │ │ │ ├── sendMediatorWithBuildMessageTrueTestProxy.xml │ │ │ │ │ ├── sendMediatorWithLogAfterwardsTestProxy.xml │ │ │ │ │ ├── sequenceMediatorDynamicSequenceTestProxy.xml │ │ │ │ │ ├── sequenceMediatorNonExistingSequenceTestProxy.xml │ │ │ │ │ ├── setRemovePropertiesWithNashornJsTestProxy.xml │ │ │ │ │ ├── smooksMediatorLargeCSVTestProxy.xml │ │ │ │ │ ├── switchMediatorFurtherProcessingAfterMatchTestProxy.xml │ │ │ │ │ ├── switchMediatorInvalidPrefixTestProxy.xml │ │ │ │ │ ├── switchMediatorOnErrorSequenceWithinSwitchTestProxy.xml │ │ │ │ │ ├── switchMediatorSoap11Soap12NegativeTestProxy.xml │ │ │ │ │ ├── switchMediatorSoap11Soap12TestProxy.xml │ │ │ │ │ ├── switchMediatorSubsequenceMatchingTestProxy.xml │ │ │ │ │ ├── switchMediatorSwitchByAddressTestProxy.xml │ │ │ │ │ ├── switchMediatorSwitchInsideSwitchTestProxy.xml │ │ │ │ │ ├── switchMediatorWithoutDefaultTestProxy.xml │ │ │ │ │ ├── synapse_sample_380_main_sequence.xml │ │ │ │ │ ├── testConfRegistry.xml │ │ │ │ │ ├── testGovRegistry.xml │ │ │ │ │ ├── testLocalRegistry.xml │ │ │ │ │ ├── transformMediatorAutoPrimitiveCustomRegex.xml │ │ │ │ │ ├── transformMediatorBasic.xml │ │ │ │ │ ├── transformMediatorEmptySchema.xml │ │ │ │ │ ├── transformMediatorMalformedSchema.xml │ │ │ │ │ ├── transformMediatorNamespaceProperties.xml │ │ │ │ │ ├── transformMediatorNotExistingSchema.xml │ │ │ │ │ ├── transformMediatorSchemaWithoutType.xml │ │ │ │ │ ├── transformMediatorSimpeXMLtoJSONWithSchema.xml │ │ │ │ │ ├── transformMediatorSimple.xml │ │ │ │ │ ├── transformMediatorSimpleAutoPrimitive.xml │ │ │ │ │ ├── transformMediatorSimpleXMLtoJSONWithSchemaLocalEntry.xml │ │ │ │ │ ├── transformMediatorValidNCNameProperty.xml │ │ │ │ │ ├── transformMediatorXMLNilReadWrite.xml │ │ │ │ │ ├── validateMediatorDynamicKeyTestProxy.xml │ │ │ │ │ ├── validateMediatorDynamicSchemaChangeTestProxy.xml │ │ │ │ │ ├── validateMediatorDynamicSchemaFromConfigRegTestProxy.xml │ │ │ │ │ ├── validateMediatorInvalidDynamicKeyTestProxy.xml │ │ │ │ │ ├── validateMediatorInvalidXPathTestProxy.xml │ │ │ │ │ ├── validateMediatorJsonSchemaFromRegTestProxy.xml │ │ │ │ │ ├── validateMediatorJsonTestProxy.xml │ │ │ │ │ ├── validateMediatorSecureFalseTestProxy.xml │ │ │ │ │ ├── validateMediatorSecureTrueTestProxy.xml │ │ │ │ │ ├── validateMediatorStaticKeyTestProxy.xml │ │ │ │ │ ├── validateMediatorTestProxy.xml │ │ │ │ │ ├── validateMediatorWithResourcesTestProxy.xml │ │ │ │ │ ├── validateMediatorWithoutNameSpaceTestProxy.xml │ │ │ │ │ ├── validateRequest.xml │ │ │ │ │ ├── validateRequestFromRegistry.xml │ │ │ │ │ ├── validateSchemaATestProxy.xml │ │ │ │ │ ├── validateSchemaBTestProxy.xml │ │ │ │ │ ├── wsdlEndPoint.xml │ │ │ │ │ ├── wsdlEndPointBM.xml │ │ │ │ │ ├── wsdlEndPoint_Receiving_Sequence_ConfigReg.xml │ │ │ │ │ ├── wsdlEndPoint_Receiving_Sequence_ConfigRegBM.xml │ │ │ │ │ ├── wsdlEndPoint_Receiving_Sequence_Dynamic.xml │ │ │ │ │ ├── wsdlEndPoint_Receiving_Sequence_Dynamic_BM.xml │ │ │ │ │ ├── wsdlEndPoint_Receiving_Sequence_GovReg.xml │ │ │ │ │ ├── wsdlEndPoint_Receiving_Sequence_GovRegBM.xml │ │ │ │ │ ├── wsdlEndPoint_Receiving_Sequence_LocalReg.xml │ │ │ │ │ ├── wsdlEndPoint_Receiving_Sequence_LocalRegBM.xml │ │ │ │ │ ├── xQueryCustomVariableAsBooleanTestProxy.xml │ │ │ │ │ ├── xQueryCustomVariableAsByteTestProxy.xml │ │ │ │ │ ├── xQueryCustomVariableAsDoubleTestProxy.xml │ │ │ │ │ ├── xQueryCustomVariableAsFloatTestProxy.xml │ │ │ │ │ ├── xQueryCustomVariableAsIntTestProxy.xml │ │ │ │ │ ├── xQueryCustomVariableAsIntegerTestProxy.xml │ │ │ │ │ ├── xQueryCustomVariableAsLongTestProxy.xml │ │ │ │ │ ├── xQueryCustomVariableAsStringTestProxy.xml │ │ │ │ │ ├── xQueryMediatorEmptySoapRequestTestProxy.xml │ │ │ │ │ ├── xQueryMediatorIntegrationTestProxy.xml │ │ │ │ │ ├── xQueryMediatorInvalidKeyTestProxy.xml │ │ │ │ │ ├── xQueryMediatorReplaceEmptyMessageBodyTestProxy.xml │ │ │ │ │ ├── xQueryMediatorTransformationTestProxy.xml │ │ │ │ │ ├── xsltDynamicKeySequenceTestProxy.xml │ │ │ │ │ ├── xsltInConfRegistryTestProxy.xml │ │ │ │ │ ├── xsltInFileSystemTestProxy.xml │ │ │ │ │ ├── xsltInGovRegistryTestProxy.xml │ │ │ │ │ ├── xsltInResourcesTestProxy.xml │ │ │ │ │ ├── xsltInUrlTestProxy.xml │ │ │ │ │ ├── xsltLocalEntryTestProxy.xml │ │ │ │ │ └── xsltTransformPropertyTestProxy.xml │ │ │ │ │ ├── sequences │ │ │ │ │ ├── MasterReplySeq.xml │ │ │ │ │ ├── MessageProcessorDeactivateSeq.xml │ │ │ │ │ ├── aggregateMessagesForIterateTests.xml │ │ │ │ │ ├── dynamic_receiving_sequence.xml │ │ │ │ │ ├── fault.xml │ │ │ │ │ ├── fault_message.xml │ │ │ │ │ ├── invalidIterateMessages.xml │ │ │ │ │ ├── iterateLogAndSendSequence.xml │ │ │ │ │ ├── logSequence.xml │ │ │ │ │ ├── main.xml │ │ │ │ │ ├── mediationFault.xml │ │ │ │ │ ├── myfault.xml │ │ │ │ │ ├── replySequence.xml │ │ │ │ │ ├── sendToStockQuoteServiceSequence.xml │ │ │ │ │ ├── send_seq.xml │ │ │ │ │ ├── seq_endpoint_down.xml │ │ │ │ │ ├── seq_timeout.xml │ │ │ │ │ ├── switchFault.xml │ │ │ │ │ ├── xsltMediatorTestInSequence.xml │ │ │ │ │ └── xsltMediatorTestOutSequence.xml │ │ │ │ │ └── templates │ │ │ │ │ ├── MainTemplate.xml │ │ │ │ │ ├── readweather.xml │ │ │ │ │ ├── validateRequestTemplate.xml │ │ │ │ │ └── xslt_func.xml │ │ │ │ └── synapseconfig │ │ │ │ ├── class_mediator │ │ │ │ └── synapse.xml │ │ │ │ ├── config6 │ │ │ │ └── synapse.xml │ │ │ │ ├── default │ │ │ │ ├── api │ │ │ │ │ ├── StockQuoteAPI.xml │ │ │ │ │ └── StockQuoteAPI2.xml │ │ │ │ ├── endpoints │ │ │ │ │ └── addressEpTest.xml │ │ │ │ ├── local-entries │ │ │ │ │ └── local-entry-sequence-key.xml │ │ │ │ ├── proxy-services │ │ │ │ │ ├── SampleProxy.xml │ │ │ │ │ ├── StockQuoteProxy.xml │ │ │ │ │ └── addressEndPoint.xml │ │ │ │ ├── registry.xml │ │ │ │ ├── sequences │ │ │ │ │ ├── fault.xml │ │ │ │ │ └── main.xml │ │ │ │ ├── synapse.xml │ │ │ │ └── tasks │ │ │ │ │ └── SampleInjectToProxyTask.xml │ │ │ │ ├── failover │ │ │ │ └── failoverTest.xml │ │ │ │ ├── filters │ │ │ │ ├── in │ │ │ │ │ └── synapse.xml │ │ │ │ ├── switchMediator │ │ │ │ │ ├── ESBJAVA_1857_switch_case_synapse.xml │ │ │ │ │ └── Invalid_xpath.xml │ │ │ │ └── validate │ │ │ │ │ ├── schema1.xml │ │ │ │ │ └── schema1a.xml │ │ │ │ ├── groovy │ │ │ │ └── axis2.xml │ │ │ │ ├── processor │ │ │ │ └── forwarding │ │ │ │ │ └── InMemoryStoreSynapse1.xml │ │ │ │ ├── sendMediatorConfig │ │ │ │ ├── synapse.xml │ │ │ │ ├── test_sequences_config │ │ │ │ │ └── receivingSequence_Conf.xml │ │ │ │ ├── test_sequences_gov │ │ │ │ │ └── receivingSequence_Gov.xml │ │ │ │ └── test_sequences_local │ │ │ │ │ └── receivingSequence_Local.xml │ │ │ │ ├── send_mediator │ │ │ │ └── endpoints │ │ │ │ │ └── registry_endpoint.xml │ │ │ │ └── smooks │ │ │ │ ├── axis2.xml │ │ │ │ ├── data.csv │ │ │ │ ├── edi.txt │ │ │ │ ├── person.csv │ │ │ │ └── smooks_config.xml │ │ │ ├── automation.xml │ │ │ ├── automationXMLSchema.xsd │ │ │ ├── bin │ │ │ └── integrator.sh │ │ │ ├── log4j.properties │ │ │ ├── security │ │ │ ├── keystore │ │ │ │ ├── client.jks │ │ │ │ └── service.jks │ │ │ └── policies │ │ │ │ ├── custom │ │ │ │ ├── scenario1-policy.xml │ │ │ │ ├── scenario10-policy.xml │ │ │ │ ├── scenario11-policy.xml │ │ │ │ ├── scenario12-policy.xml │ │ │ │ ├── scenario13-policy.xml │ │ │ │ ├── scenario14-policy.xml │ │ │ │ ├── scenario15-policy.xml │ │ │ │ ├── scenario16-policy.xml │ │ │ │ ├── scenario17-policy.xml │ │ │ │ ├── scenario2-policy.xml │ │ │ │ ├── scenario3-policy.xml │ │ │ │ ├── scenario4-policy.xml │ │ │ │ ├── scenario5-policy.xml │ │ │ │ ├── scenario6-policy.xml │ │ │ │ ├── scenario7-policy.xml │ │ │ │ ├── scenario8-policy.xml │ │ │ │ └── scenario9-policy.xml │ │ │ │ ├── scenario-config.xml │ │ │ │ ├── scenario1-policy.xml │ │ │ │ ├── scenario10-policy.xml │ │ │ │ ├── scenario11-policy.xml │ │ │ │ ├── scenario12-policy.xml │ │ │ │ ├── scenario13-policy.xml │ │ │ │ ├── scenario14-policy.xml │ │ │ │ ├── scenario15-policy.xml │ │ │ │ ├── scenario16-policy.xml │ │ │ │ ├── scenario17-policy.xml │ │ │ │ ├── scenario2-policy.xml │ │ │ │ ├── scenario27-policy.xml │ │ │ │ ├── scenario3-policy.xml │ │ │ │ ├── scenario4-policy.xml │ │ │ │ ├── scenario5-policy.xml │ │ │ │ ├── scenario6-policy.xml │ │ │ │ ├── scenario7-policy.xml │ │ │ │ ├── scenario8-policy.xml │ │ │ │ └── scenario9-policy.xml │ │ │ ├── tenantList.csv │ │ │ ├── testng.xml │ │ │ ├── tomcat │ │ │ └── catalina-server.xml │ │ │ └── userList.csv │ ├── tests-other │ │ ├── .gitignore │ │ ├── pom.xml │ │ └── src │ │ │ └── test │ │ │ ├── java │ │ │ └── org │ │ │ │ └── wso2 │ │ │ │ └── carbon │ │ │ │ └── esb │ │ │ │ ├── ServerStartupTestCase.java │ │ │ │ ├── compression │ │ │ │ └── test │ │ │ │ │ └── gzip │ │ │ │ │ ├── ContentEncodingPostWithoutMessageBodyTestCase.java │ │ │ │ │ └── ESBJAVA2262ContentEncodingGzipTestCase.java │ │ │ │ ├── connector │ │ │ │ └── test │ │ │ │ │ ├── FileConnectorTest.java │ │ │ │ │ └── MediationLibraryServiceTestCase.java │ │ │ │ ├── contenttype │ │ │ │ └── json │ │ │ │ │ ├── FilterFromJSONPathTestCase.java │ │ │ │ │ ├── FilterFromXpathTestCase.java │ │ │ │ │ ├── HTTPGETOnJSONPayloadsTestCase.java │ │ │ │ │ ├── HTTPPOSTOnJsonPayloadsTestCase.java │ │ │ │ │ ├── HTTPPUTOnJsonPayloadsTestCase.java │ │ │ │ │ ├── JSONArrayTestCase.java │ │ │ │ │ ├── JSONDisableAutoPrimitiveNumericTestCase.java │ │ │ │ │ ├── JSONIntegerAndStringRequestTestCase.java │ │ │ │ │ ├── JSONPayloadFactoryInLineTestCase.java │ │ │ │ │ ├── JSONWithAPITestCase.java │ │ │ │ │ ├── JSONWithCloneMediatorTestCase.java │ │ │ │ │ ├── JSONWithPropertyMediatorTestCase.java │ │ │ │ │ ├── JSONWithSwitchMediatorTestCase.java │ │ │ │ │ ├── LoggingWithJSONTestCase.java │ │ │ │ │ ├── RegistryBasedJSONRequestTestCase.java │ │ │ │ │ ├── ReplaceJSONRequestWithPayloadFactoryTestCase.java │ │ │ │ │ ├── TransformPayloadMessageContentFromJSONPathTestCase.java │ │ │ │ │ ├── TransformPayloadMessageContentFromXpathTestCase.java │ │ │ │ │ ├── XMLToJsonNilTestCase.java │ │ │ │ │ ├── XMLToJsonTestCase.java │ │ │ │ │ └── XMLToJsonTransformationPropertiesTestCase.java │ │ │ │ ├── handler │ │ │ │ └── HandlerTest.java │ │ │ │ ├── hotdeployment │ │ │ │ └── test │ │ │ │ │ ├── Log4j2ConfigsHotDeploymentTestCase.java │ │ │ │ │ └── SynapseArtifactsHotDeploymentTestCase.java │ │ │ │ ├── localentry │ │ │ │ └── test │ │ │ │ │ └── LocalEntryWhiteSpaceTestCase.java │ │ │ │ ├── mediationstats │ │ │ │ └── test │ │ │ │ │ └── MediationStatEnableTestCase.java │ │ │ │ ├── message │ │ │ │ └── conversion │ │ │ │ │ └── SOAP11ToJSONConversion.java │ │ │ │ ├── probes │ │ │ │ └── test │ │ │ │ │ ├── LivenessProbeTestCase.java │ │ │ │ │ └── ReadienssProbeTestCase.java │ │ │ │ ├── resource │ │ │ │ └── test │ │ │ │ │ ├── api │ │ │ │ │ ├── APIMediaTypeTestCase.java │ │ │ │ │ └── ApiWithConfigurablePropertyTestCase.java │ │ │ │ │ ├── endpoint │ │ │ │ │ ├── EndPointMediaTypeTestCase.java │ │ │ │ │ └── EndpointWithConfigurablePropertyTestCase.java │ │ │ │ │ ├── localentry │ │ │ │ │ └── LocalEntryMediaTypeTestCase.java │ │ │ │ │ ├── message │ │ │ │ │ ├── processor │ │ │ │ │ │ └── MessageProcessorMediaTypeTestCase.java │ │ │ │ │ └── store │ │ │ │ │ │ └── MessageStoreMediaTypeTestCase.java │ │ │ │ │ ├── priority │ │ │ │ │ └── executor │ │ │ │ │ │ └── PriorityExecutorMediaTypeTestCase.java │ │ │ │ │ ├── proxy │ │ │ │ │ └── ProxyServiceMediaTypeTestCase.java │ │ │ │ │ ├── schedule │ │ │ │ │ └── task │ │ │ │ │ │ └── TaskMediaTypeTestCase.java │ │ │ │ │ ├── sequence │ │ │ │ │ └── SequenceMediaTypeTestCase.java │ │ │ │ │ └── template │ │ │ │ │ ├── EndpointTemplateMediaTypeTestCase.java │ │ │ │ │ └── SequenceTemplateMediaTypeTestCase.java │ │ │ │ ├── scenarios │ │ │ │ └── test │ │ │ │ │ └── healthcare │ │ │ │ │ ├── HealthCareScenarioServerStartupTestCase.java │ │ │ │ │ └── HealthCareScenarioTestCase.java │ │ │ │ ├── securevalut │ │ │ │ └── test │ │ │ │ │ └── CustomSSLProfileWithSecureVault.java │ │ │ │ ├── sequence │ │ │ │ └── fault │ │ │ │ │ └── TestFaultSequenceExecutionForMalformedResponse.java │ │ │ │ ├── serviceCatalog │ │ │ │ └── test │ │ │ │ │ └── ServiceCatalogTestCase.java │ │ │ │ ├── statistics │ │ │ │ ├── ApiStatisticsTest.java │ │ │ │ ├── ESBJAVA3269_StatisticsCloneTestCase.java │ │ │ │ ├── PrometheusStatisticsTest.java │ │ │ │ ├── ProxyStatisticsTest.java │ │ │ │ └── SequenceStatisticsTest.java │ │ │ │ ├── synapse │ │ │ │ ├── common │ │ │ │ │ ├── cors │ │ │ │ │ │ ├── TestApiWithCorsEnabled.java │ │ │ │ │ │ ├── TestPerAPICORS.java │ │ │ │ │ │ └── TestPerAPICORSAdvanced.java │ │ │ │ │ ├── formatters │ │ │ │ │ │ └── ESBJAVA3290TestXWWWFormURLEncodedFormatter.java │ │ │ │ │ └── resolvers │ │ │ │ │ │ └── FilePropertyResolverTestCase.java │ │ │ │ └── expression │ │ │ │ │ └── test │ │ │ │ │ └── SynapseExpressionTestCase.java │ │ │ │ ├── template │ │ │ │ ├── TestFunctionStackDeepClone.java │ │ │ │ └── endpointTemplate │ │ │ │ │ └── EndpointTemplateSuspensionTest.java │ │ │ │ ├── test │ │ │ │ └── servers │ │ │ │ │ ├── NewInstanceTestCase.java │ │ │ │ │ └── OSGIUnsatisfiedServerBundlesTestCase.java │ │ │ │ └── versioned │ │ │ │ └── deployment │ │ │ │ └── test │ │ │ │ └── VersionedDeploymentTestCase.java │ │ │ └── resources │ │ │ ├── artifacts │ │ │ ├── AXIS2 │ │ │ │ ├── aar │ │ │ │ │ ├── Axis2 Service.aar │ │ │ │ │ ├── Axis2Service.aar │ │ │ │ │ ├── Echo.aar │ │ │ │ │ ├── HelloWorld.aar │ │ │ │ │ ├── LBService1.aar │ │ │ │ │ ├── LBService2.aar │ │ │ │ │ ├── LBService3.aar │ │ │ │ │ ├── MTOMSwASampleService.aar │ │ │ │ │ ├── RetryOnSoapFault.aar │ │ │ │ │ ├── SecureStockQuoteService.aar │ │ │ │ │ ├── SecureStockQuoteServiceScenario1.aar │ │ │ │ │ ├── SecureStockQuoteServiceScenario10.aar │ │ │ │ │ ├── SecureStockQuoteServiceScenario2.aar │ │ │ │ │ ├── SecureStockQuoteServiceScenario3.aar │ │ │ │ │ ├── SecureStockQuoteServiceScenario4.aar │ │ │ │ │ ├── SecureStockQuoteServiceScenario5.aar │ │ │ │ │ ├── SecureStockQuoteServiceScenario6.aar │ │ │ │ │ ├── SecureStockQuoteServiceScenario7.aar │ │ │ │ │ ├── SecureStockQuoteServiceScenario8.aar │ │ │ │ │ ├── SecureStockQuoteServiceScenario9.aar │ │ │ │ │ ├── SimpleStockQuoteService.aar │ │ │ │ │ ├── SimpleStockQuoteService_timeout.aar │ │ │ │ │ ├── StratosSchemaimportservice.aar │ │ │ │ │ ├── StudentService.aar │ │ │ │ │ ├── geows.aar │ │ │ │ │ ├── hcfacilitylocator.aar │ │ │ │ │ └── hcinformationservice.aar │ │ │ │ └── config │ │ │ │ │ ├── test_axis2_server_9000.xml │ │ │ │ │ ├── test_axis2_server_9001.xml │ │ │ │ │ ├── test_axis2_server_9002.xml │ │ │ │ │ ├── test_axis2_server_9003.xml │ │ │ │ │ ├── test_axis2_server_9007.xml │ │ │ │ │ ├── test_axis2_server_9009.xml │ │ │ │ │ ├── test_axis2_server_9015.xml │ │ │ │ │ └── test_axis2_server_9017.xml │ │ │ └── ESB │ │ │ │ ├── StatisticTestResources │ │ │ │ ├── data-bridge-config.xml │ │ │ │ ├── default │ │ │ │ │ └── synapse.properties │ │ │ │ ├── deployment.toml │ │ │ │ ├── prometheus │ │ │ │ │ └── deployment.toml │ │ │ │ └── synapse.properties │ │ │ │ ├── Wso2EventTestCase │ │ │ │ ├── org.wso2.esb.analytics.stream.ConfigEntry_1.0.0.json │ │ │ │ └── org.wso2.esb.analytics.stream.FlowEntry_1.0.0.json │ │ │ │ ├── car │ │ │ │ ├── DemoProxy-1.0.0.car │ │ │ │ ├── ESBproject1-1.0.0.car │ │ │ │ ├── ESBproject2-1.0.0.car │ │ │ │ ├── ESBproject3-1.0.0.car │ │ │ │ ├── ESBproject4-1.0.0.car │ │ │ │ ├── MediatorCApp2_1.0.0.car │ │ │ │ ├── MediatorCApp_1.0.0.car │ │ │ │ ├── ServiceChaining-1.0.0.car │ │ │ │ ├── SynchroDepInValidCarApp_1.0.0.car │ │ │ │ ├── SynchroDepValidCarApp_1.0.0.car │ │ │ │ ├── TestCloneStatsCappProj_1.0.0.car │ │ │ │ ├── esb-artifacts-car_1.0.0.car │ │ │ │ ├── templateEndpointInRegistryTestCapp_1.0.0.car │ │ │ │ └── xslt-transformation-car_1.0.0.car │ │ │ │ ├── compression │ │ │ │ └── gzip │ │ │ │ │ └── gzip-compression.xml │ │ │ │ ├── config.var │ │ │ │ ├── testApiWithConfigurationProperty_1.0.0.car │ │ │ │ └── testConfiguration_1.0.0.car │ │ │ │ ├── config │ │ │ │ └── testconfig.xml │ │ │ │ ├── connector │ │ │ │ ├── MediationLibraryServiceTestAPI.xml │ │ │ │ └── custom-connector-hello │ │ │ │ │ ├── README.txt │ │ │ │ │ ├── pom.xml │ │ │ │ │ ├── repository │ │ │ │ │ └── copy of ESB here.txt │ │ │ │ │ └── src │ │ │ │ │ └── main │ │ │ │ │ ├── assembly │ │ │ │ │ └── assemble-connector.xml │ │ │ │ │ └── resources │ │ │ │ │ ├── connector.xml │ │ │ │ │ ├── hello_config │ │ │ │ │ ├── component.xml │ │ │ │ │ └── init.xml │ │ │ │ │ └── hello_message │ │ │ │ │ ├── component.xml │ │ │ │ │ └── getMessage.xml │ │ │ │ ├── cors │ │ │ │ └── deployment.toml │ │ │ │ ├── defaultconfigs │ │ │ │ └── synapse.xml │ │ │ │ ├── endpoint │ │ │ │ ├── CARBON11016_synapse.xml │ │ │ │ ├── addressEndpointConfig │ │ │ │ │ ├── addressEP_Test.xml │ │ │ │ │ ├── invalidPropertyAddressEndPoint.xml │ │ │ │ │ └── synapse.xml │ │ │ │ ├── defaultEndpointConfig │ │ │ │ │ ├── defaultEP_Test.xml │ │ │ │ │ └── synapse.xml │ │ │ │ ├── endpointFotmatRestPTTestConfig.xml │ │ │ │ ├── failoverEndpointConfig │ │ │ │ │ ├── failOverWithDisabledErrors.xml │ │ │ │ │ ├── failoverEP_Test.xml │ │ │ │ │ └── synapse.xml │ │ │ │ ├── httpEndpointConfig │ │ │ │ │ └── synapse.xml │ │ │ │ ├── loadbalancingEndpointConfig │ │ │ │ │ ├── loadbalancingEP_Test.xml │ │ │ │ │ └── synapse.xml │ │ │ │ ├── wsdlEndpointConfig │ │ │ │ │ ├── synapse.xml │ │ │ │ │ └── wsdlEP_Test.xml │ │ │ │ └── wsdlTestEp.xml │ │ │ │ ├── endpointlookup.xml │ │ │ │ ├── entitlementMediatorConfig │ │ │ │ └── entitlementMediatorSynapse.xml │ │ │ │ ├── handler │ │ │ │ └── synapse-handlers.xml │ │ │ │ ├── hl7Transport │ │ │ │ └── axis2.xml │ │ │ │ ├── hotdeployment │ │ │ │ ├── HotDeploymentTestAPI.xml │ │ │ │ ├── HotDeploymentTestEndpoint.xml │ │ │ │ ├── HotDeploymentTestLocalEntry.xml │ │ │ │ ├── HotDeploymentTestMessageStore.xml │ │ │ │ ├── HotDeploymentTestProxy.xml │ │ │ │ ├── HotDeploymentTestSequence.xml │ │ │ │ ├── HotDeployment_1.0.0.car │ │ │ │ ├── SampleCappCompositeExporter_1.0.0.car │ │ │ │ ├── deployment.toml │ │ │ │ ├── log4j2.properties │ │ │ │ └── log4j2withWire.properties │ │ │ │ ├── jaxrs │ │ │ │ ├── getperson.xml │ │ │ │ ├── jsonHTTPGetProxy.xml │ │ │ │ ├── jsonHTTPPostProxy.xml │ │ │ │ ├── jsonHTTPPutProxy.xml │ │ │ │ ├── jsonclonemediator.xml │ │ │ │ ├── jsonfilterfromjsonpath.xml │ │ │ │ ├── jsonfilterfromxpath.xml │ │ │ │ ├── jsoninlinepayloadfacproxy.xml │ │ │ │ ├── jsoninteger.xml │ │ │ │ ├── jsonreplacepayload.xml │ │ │ │ ├── jsonrequest.txt │ │ │ │ ├── jsonwithapi.xml │ │ │ │ ├── jsonwithpropertymediator.xml │ │ │ │ ├── jsonwithswicthproxy.xml │ │ │ │ ├── loggingwithjson.xml │ │ │ │ ├── putpeopleproxy.xml │ │ │ │ ├── registrybasedjsonproxy.xml │ │ │ │ ├── transformmessagecontentjsonpath.xml │ │ │ │ ├── transformmessagecontentxpath.xml │ │ │ │ └── xmltojsonarray.xml │ │ │ │ ├── jms │ │ │ │ └── transport │ │ │ │ │ ├── ESBJAVA-1716_messageStore.xml │ │ │ │ │ ├── ESBJAVA-1793MessageStore-targetEndPointFormat-pox.xml │ │ │ │ │ ├── HTTP_SC.xml │ │ │ │ │ ├── JMSAXISFault.xml │ │ │ │ │ ├── JMSMessageStoreREST.xml │ │ │ │ │ ├── axis2config │ │ │ │ │ ├── activemq │ │ │ │ │ │ └── axis2.xml │ │ │ │ │ └── mb │ │ │ │ │ │ └── axis2.xml │ │ │ │ │ ├── jms_endpoint_proxy_service.xml │ │ │ │ │ ├── jms_message_store_and_processor_service.xml │ │ │ │ │ ├── jms_message_store_unavailable_service.xml │ │ │ │ │ ├── jms_out_only_proxy.xml │ │ │ │ │ ├── jms_transport.xml │ │ │ │ │ ├── jms_transport_jms_suspension.xml │ │ │ │ │ ├── jms_transport_proxy_service.xml │ │ │ │ │ ├── jms_wait_response.xml │ │ │ │ │ ├── jmsclient-and-restService.xml │ │ │ │ │ ├── jndi.properties │ │ │ │ │ ├── msgInjection │ │ │ │ │ ├── msg_injecting_task.xml │ │ │ │ │ └── msg_store.xml │ │ │ │ │ └── topic │ │ │ │ │ └── send_messages_topic_synapse.xml │ │ │ │ ├── json │ │ │ │ ├── blockingSenderWithJson.xml │ │ │ │ ├── deployment.toml │ │ │ │ ├── disableAutoPrimitiveNumeric │ │ │ │ │ ├── deployment.toml │ │ │ │ │ └── synapse.properties │ │ │ │ ├── json-to-soap-conversion.xml │ │ │ │ ├── jsonTransformationConfig │ │ │ │ │ ├── deployment.toml │ │ │ │ │ └── synapse.properties │ │ │ │ └── synapse.properties │ │ │ │ ├── local │ │ │ │ ├── axis2.xml │ │ │ │ ├── carbon.xml │ │ │ │ ├── local-transport-header.xml │ │ │ │ └── local-transport.xml │ │ │ │ ├── localEntryConfig │ │ │ │ ├── sequence_as_local_registry_entry.xml │ │ │ │ └── throttle_policy_as_a_local_entry.xml │ │ │ │ ├── mediationStatConfig │ │ │ │ ├── carbon.xml │ │ │ │ ├── synapse.properties │ │ │ │ └── synapse.xml │ │ │ │ ├── mediatorconfig │ │ │ │ ├── cache │ │ │ │ │ ├── CollectorTypeCacheMediator.xml │ │ │ │ │ └── LargeCacheTimeOut.xml │ │ │ │ ├── call │ │ │ │ │ ├── synapse.xml │ │ │ │ │ ├── synapse1.xml │ │ │ │ │ ├── synapse10.xml │ │ │ │ │ ├── synapse11.xml │ │ │ │ │ ├── synapse12.xml │ │ │ │ │ ├── synapse13.xml │ │ │ │ │ ├── synapse14.xml │ │ │ │ │ ├── synapse15.xml │ │ │ │ │ ├── synapse17.xml │ │ │ │ │ ├── synapse18.xml │ │ │ │ │ ├── synapse19.xml │ │ │ │ │ ├── synapse2.xml │ │ │ │ │ ├── synapse20.xml │ │ │ │ │ ├── synapse21.xml │ │ │ │ │ ├── synapse3.xml │ │ │ │ │ ├── synapse4.xml │ │ │ │ │ ├── synapse5.xml │ │ │ │ │ ├── synapse6.xml │ │ │ │ │ ├── synapse7.xml │ │ │ │ │ ├── synapse8.xml │ │ │ │ │ ├── synapse9.xml │ │ │ │ │ ├── synapse_expressions.xml │ │ │ │ │ └── synapse_param_with_values.xml │ │ │ │ ├── call_template │ │ │ │ │ ├── synapse.xml │ │ │ │ │ ├── synapse_expressions.xml │ │ │ │ │ └── synapse_param_with_values.xml │ │ │ │ ├── callout │ │ │ │ │ ├── CallOutMediatorOutOnlyTest.xml │ │ │ │ │ ├── CallOutMediatorWithMTOMTest.xml │ │ │ │ │ ├── DynamicEndpointTest.xml │ │ │ │ │ ├── DynamicProperties.xml │ │ │ │ │ ├── FaultSeq.xml │ │ │ │ │ ├── InboundOutboundSecurityTest.xml │ │ │ │ │ ├── SecurityTest.xml │ │ │ │ │ ├── TranportCleanupOnFaultTest.xml │ │ │ │ │ ├── ValidPath_Axis2Repo.xml │ │ │ │ │ ├── ValidPath_Axis2Xml.xml │ │ │ │ │ ├── client_repo │ │ │ │ │ │ └── conf │ │ │ │ │ │ │ └── axis2.xml │ │ │ │ │ ├── synapse_sample_430.xml │ │ │ │ │ └── transport_headers.xml │ │ │ │ ├── class │ │ │ │ │ ├── class_mediation_with_twenty_properties.xml │ │ │ │ │ ├── class_property_persistence_five_properties.xml │ │ │ │ │ ├── class_property_persistence_four_properties.xml │ │ │ │ │ └── class_property_persistence_three_properties.xml │ │ │ │ ├── clone │ │ │ │ │ ├── cloneLogAndSendSequence.xml │ │ │ │ │ ├── clone_SOAP_Action.xml │ │ │ │ │ ├── clone_http.xml │ │ │ │ │ ├── clone_https.xml │ │ │ │ │ ├── clone_https_sequence.xml │ │ │ │ │ ├── clone_jms.xml │ │ │ │ │ ├── clone_named_endpoints.xml │ │ │ │ │ ├── clone_sequence.xml │ │ │ │ │ ├── clone_simple.xml │ │ │ │ │ ├── clone_unknown_endpoints.xml │ │ │ │ │ ├── clone_unmaching_aggregate.xml │ │ │ │ │ └── large_message.txt │ │ │ │ ├── db │ │ │ │ │ └── synapse_sample_364.xml │ │ │ │ ├── dblookup │ │ │ │ │ ├── sample_360.xml │ │ │ │ │ ├── sample_360_multiple_SQL_statements.xml │ │ │ │ │ ├── sample_360_multiple_results_test.xml │ │ │ │ │ ├── sample_360_stored_function_test.xml │ │ │ │ │ └── sample_360_stored_procedure.xml │ │ │ │ ├── dbreport │ │ │ │ │ ├── synapse_dbReport.xml │ │ │ │ │ ├── synapse_sample_361.xml │ │ │ │ │ ├── synapse_sample_364.xml │ │ │ │ │ └── synapse_use_transaction.xml │ │ │ │ ├── enrich │ │ │ │ │ ├── add_propert_as_child.xml │ │ │ │ │ ├── add_property_as_sibling.xml │ │ │ │ │ ├── add_sibling.xml │ │ │ │ │ ├── enrich_add_as_child.xml │ │ │ │ │ ├── enrich_add_sibling_in_out_msg.xml │ │ │ │ │ ├── enrich_byGetProperty.xml │ │ │ │ │ ├── enrich_by_enrich.xml │ │ │ │ │ ├── enrich_omText.xml │ │ │ │ │ ├── enrich_replace_body_by_specified_property.xml │ │ │ │ │ ├── enrich_replace_by_property.xml │ │ │ │ │ ├── registry_synapse.xml │ │ │ │ │ └── required │ │ │ │ │ │ └── registry_configs.xml │ │ │ │ ├── fast_xslt │ │ │ │ │ ├── calltemplate_integration_fastxslt_sample750_synapse.xml │ │ │ │ │ ├── fast_xslt_dynamic_key_synapse.xml │ │ │ │ │ └── synapse_fast_xslt_sample_8.xml │ │ │ │ ├── fault │ │ │ │ │ ├── soap11_fault_actor_synapse.xml │ │ │ │ │ ├── soap11_fault_code_Client_synapse.xml │ │ │ │ │ ├── soap11_fault_code_MustUnderstand_synapse.xml │ │ │ │ │ ├── soap11_fault_code_Server_synapse.xml │ │ │ │ │ ├── soap11_fault_code_VersionMismatch_synapse.xml │ │ │ │ │ ├── soap11_fault_detail_as_element_synapse.xml │ │ │ │ │ ├── soap11_fault_detail_synapse.xml │ │ │ │ │ ├── soap11_fault_full_synapse.xml │ │ │ │ │ ├── soap11_fault_out_sequence_synapse.xml │ │ │ │ │ ├── soap11_fault_response_validate_synapse.xml │ │ │ │ │ ├── soap11_fault_set_response_attribute_false_with_addressing_synapse.xml │ │ │ │ │ ├── soap11_fault_set_response_false_synapse.xml │ │ │ │ │ ├── soap11_fault_set_response_true_synapse.xml │ │ │ │ │ ├── soap11_fault_string_expression_synapse.xml │ │ │ │ │ ├── soap11_fault_string_value_synapse.xml │ │ │ │ │ ├── soap12_fault_actor_synapse.xml │ │ │ │ │ ├── soap12_fault_code_DataEncodingUnknown_synapse.xml │ │ │ │ │ ├── soap12_fault_code_MustUnderstand_synapse.xml │ │ │ │ │ ├── soap12_fault_code_Receiver_synapse.xml │ │ │ │ │ ├── soap12_fault_code_Sender_synapse.xml │ │ │ │ │ ├── soap12_fault_code_VersionMismatch_synapse.xml │ │ │ │ │ ├── soap12_fault_detail_as_element_synapse.xml │ │ │ │ │ ├── soap12_fault_detail_synapse.xml │ │ │ │ │ ├── soap12_fault_full_synapse.xml │ │ │ │ │ ├── soap12_fault_node_synapse.xml │ │ │ │ │ ├── soap12_fault_out_sequence_synapse.xml │ │ │ │ │ ├── soap12_fault_response_validate_synapse.xml │ │ │ │ │ ├── soap12_fault_set_response_attribute_false_with_addressing_synapse.xml │ │ │ │ │ ├── soap12_fault_set_response_false_synapse.xml │ │ │ │ │ ├── soap12_fault_set_response_true_synapse.xml │ │ │ │ │ ├── soap12_fault_string_expression_synapse.xml │ │ │ │ │ └── soap12_fault_string_value_synapse.xml │ │ │ │ ├── header │ │ │ │ │ ├── action_header_set_synapse.xml │ │ │ │ │ ├── action_remove_security_synapse.xml │ │ │ │ │ └── to_header_set_synapse.xml │ │ │ │ ├── iterate │ │ │ │ │ ├── ESBJAVA-2843-iterateIfPreservePayloadFalse.xml │ │ │ │ │ ├── IterateIDAggregateIDMismatch.xml │ │ │ │ │ ├── Iterate_anonymous_endpoints.xml │ │ │ │ │ ├── invalid_XPath.xml │ │ │ │ │ ├── invalid_name_space_attachpath.xml │ │ │ │ │ ├── invalid_namespace_iterateexpression.xml │ │ │ │ │ ├── invalid_soapaction.xml │ │ │ │ │ ├── invalid_soapaction_valid_payload.xml │ │ │ │ │ ├── invalid_target_address.xml │ │ │ │ │ ├── iterate.txt │ │ │ │ │ ├── iterate1.txt │ │ │ │ │ ├── iterateEndpoint.xml │ │ │ │ │ ├── iterateLogAndSendSequence.xml │ │ │ │ │ ├── iterateSequentialTrueProperty.xml │ │ │ │ │ ├── iterateSequentialTruePropertyWithOutProperty.xml │ │ │ │ │ ├── iterate_SOAP_Action.xml │ │ │ │ │ ├── iterate_configuration_endpoint.xml │ │ │ │ │ ├── iterate_continue_parent_false.xml │ │ │ │ │ ├── iterate_continue_parent_true.xml │ │ │ │ │ ├── iterate_govners_endpoint.xml │ │ │ │ │ ├── iterate_https_endpoint.xml │ │ │ │ │ ├── iterate_named_endpoints.xml │ │ │ │ │ ├── iterate_named_sequence.xml │ │ │ │ │ ├── iterate_sequential.xml │ │ │ │ │ ├── iterate_small.txt │ │ │ │ │ ├── iterate_target_configuration.xml │ │ │ │ │ ├── iterate_target_govenerce.xml │ │ │ │ │ ├── iterator_attach_path.xml │ │ │ │ │ ├── iterator_expressionLess.xml │ │ │ │ │ ├── null_namespace.xml │ │ │ │ │ ├── null_namespace_for_expression.xml │ │ │ │ │ ├── simple_iterator.xml │ │ │ │ │ └── valid_iterate_exp_mismatch_original_message.xml │ │ │ │ ├── payload │ │ │ │ │ └── factory │ │ │ │ │ │ ├── axis2 │ │ │ │ │ │ └── axis2.xml │ │ │ │ │ │ ├── expression_arg_payload_factory_synapse.xml │ │ │ │ │ │ ├── jsonFormat_JsonExpressiosns.xml │ │ │ │ │ │ ├── jsonFormat_JsonXmlExpressions_values.xml │ │ │ │ │ │ ├── jsonFormat_XmlExpressiosns.xml │ │ │ │ │ │ ├── no_arg_payload_factory_synapse.xml │ │ │ │ │ │ ├── om_arg_payload_factory_synapse.xml │ │ │ │ │ │ ├── payload-in.xml │ │ │ │ │ │ ├── payload_factory_dynamic_key.xml │ │ │ │ │ │ ├── special_chractors_at_payload_factory.xml │ │ │ │ │ │ ├── value_arg_payload_factory_synapse.xml │ │ │ │ │ │ ├── value_expression_arg_payload_factory_synapse.xml │ │ │ │ │ │ └── xmlFormat_JsonExpressiosns.xml │ │ │ │ ├── policy │ │ │ │ │ └── throttle_policy.xml │ │ │ │ ├── property │ │ │ │ │ ├── DISABLE_CHUNKING.xml │ │ │ │ │ ├── NO_ENTITY_BODY.xml │ │ │ │ │ ├── NO_KEEPALIVE.xml │ │ │ │ │ ├── POST_TO_URI.xml │ │ │ │ │ ├── PRESERVE_WS_ADDRESSING.xml │ │ │ │ │ ├── REST_URL_postfix.xml │ │ │ │ │ ├── TRANSPORT_HEADERS.xml │ │ │ │ │ ├── disableAddressingForOutMessages.xml │ │ │ │ │ ├── synapse_http_header_case_sensitivity.xml │ │ │ │ │ └── transport_scope_property.xml │ │ │ │ ├── rewrite │ │ │ │ │ ├── full_url_append_synapse.xml │ │ │ │ │ ├── full_url_prepend_synapse.xml │ │ │ │ │ ├── full_url_rewrite_synapse.xml │ │ │ │ │ ├── full_url_set_synapse.xml │ │ │ │ │ ├── full_url_set_when_no_url_synapse.xml │ │ │ │ │ ├── hostname_append_synapse.xml │ │ │ │ │ ├── hostname_prepend_synapse.xml │ │ │ │ │ ├── hostname_set_synapse.xml │ │ │ │ │ ├── path_append_synapse.xml │ │ │ │ │ ├── path_prepend_synapse.xml │ │ │ │ │ ├── path_set_synapse.xml │ │ │ │ │ ├── port_append_synapse.xml │ │ │ │ │ ├── port_prepend_synapse.xml │ │ │ │ │ ├── port_set_synapse.xml │ │ │ │ │ ├── protocol_append_synapse.xml │ │ │ │ │ ├── protocol_prepend_synapse.xml │ │ │ │ │ ├── protocol_rewrite_from_property_synapse.xml │ │ │ │ │ ├── protocol_rewrite_synapse.xml │ │ │ │ │ ├── protocol_set_synapse.xml │ │ │ │ │ ├── remove_rewrite_full_url_synapse.xml │ │ │ │ │ ├── remove_rewrite_host_synapse.xml │ │ │ │ │ ├── remove_rewrite_path_synapse.xml │ │ │ │ │ ├── remove_rewrite_port_synapse.xml │ │ │ │ │ ├── remove_rewrite_protocol_synapse.xml │ │ │ │ │ ├── synapse_sample451.xml │ │ │ │ │ ├── url_reWrite_by_context_synapse.xml │ │ │ │ │ ├── url_reWrite_by_host_synapse.xml │ │ │ │ │ ├── url_reWrite_by_port_expression_synapse.xml │ │ │ │ │ └── url_reWrite_by_port_synapse.xml │ │ │ │ ├── router │ │ │ │ │ ├── router_breakRouter_false_test.xml │ │ │ │ │ ├── router_continueAfter_false_test.xml │ │ │ │ │ ├── router_continueAfter_true_test.xml │ │ │ │ │ ├── router_endpoint.xml │ │ │ │ │ ├── router_endpoint_test.xml │ │ │ │ │ ├── router_expression_test.xml │ │ │ │ │ ├── router_https_endpoint.xml │ │ │ │ │ ├── router_multiple_routs_test.xml │ │ │ │ │ ├── router_sequence.xml │ │ │ │ │ └── router_sequence_test.xml │ │ │ │ ├── script │ │ │ │ │ ├── stockquoteTransform.js │ │ │ │ │ └── stockquoteTransform.rb │ │ │ │ ├── script_js │ │ │ │ │ ├── detailTransform.js │ │ │ │ │ ├── stockquoteTransform.js │ │ │ │ │ └── test54.js │ │ │ │ ├── send │ │ │ │ │ ├── endpoints │ │ │ │ │ │ └── registry_endpoint.xml │ │ │ │ │ ├── sequence │ │ │ │ │ │ ├── test_sequence_build_message_conf.xml │ │ │ │ │ │ ├── test_sequence_build_message_gov.xml │ │ │ │ │ │ └── test_sequence_build_message_local.xml │ │ │ │ │ ├── synapse_config.xml │ │ │ │ │ ├── synapse_default.xml │ │ │ │ │ ├── synapse_dynamic.xml │ │ │ │ │ ├── synapse_endpoint_registry.xml │ │ │ │ │ ├── synapse_gov.xml │ │ │ │ │ ├── synapse_local.xml │ │ │ │ │ └── synapse_uncaught_exception.xml │ │ │ │ ├── sequence │ │ │ │ │ ├── synapse_proxy.xml │ │ │ │ │ └── synapse_sequence_mediator.xml │ │ │ │ ├── spring │ │ │ │ │ ├── spring_mediation.xml │ │ │ │ │ ├── spring_mediation_different_bean_id.xml │ │ │ │ │ ├── spring_mediation_invalid_spring_bean.xml │ │ │ │ │ ├── spring_mediation_springBean_resource_not_exist.xml │ │ │ │ │ └── utils │ │ │ │ │ │ ├── different_bean_names.xml │ │ │ │ │ │ ├── invalid_spring_bean.xml │ │ │ │ │ │ ├── springbean.xml │ │ │ │ │ │ └── updating_spring.xml │ │ │ │ ├── switch_conf │ │ │ │ │ └── switch_mediator_subsequence_matching.xml │ │ │ │ ├── validate │ │ │ │ │ └── schema.xml │ │ │ │ ├── xquery │ │ │ │ │ ├── synapse101.xml │ │ │ │ │ ├── xquery_empty_soap_request.xml │ │ │ │ │ ├── xquery_replace_body_synapse101.xml │ │ │ │ │ ├── xquery_variable_type_boolean_synapse101.xml │ │ │ │ │ ├── xquery_variable_type_byte_synapse101.xml │ │ │ │ │ ├── xquery_variable_type_double_synapse101.xml │ │ │ │ │ ├── xquery_variable_type_float_synapse101.xml │ │ │ │ │ ├── xquery_variable_type_int_synapse101.xml │ │ │ │ │ ├── xquery_variable_type_integer_synapse101.xml │ │ │ │ │ ├── xquery_variable_type_long_synapse101.xml │ │ │ │ │ └── xquery_variable_type_string_synapse101.xml │ │ │ │ └── xslt │ │ │ │ │ ├── local_entry_refer_xslt_transformation_synapse.xml │ │ │ │ │ ├── transform.xslt │ │ │ │ │ ├── transform_back.xslt │ │ │ │ │ ├── xslt_dynamic_key_synapse.xml │ │ │ │ │ ├── xslt_from_config_registry_local_entry_synapse.xml │ │ │ │ │ ├── xslt_from_governance_registry_local_entry_synapse.xml │ │ │ │ │ ├── xslt_from_url_synapse.xml │ │ │ │ │ ├── xslt_in_file_system_local_entry_synapse.xml │ │ │ │ │ ├── xslt_in_line_local_entry_synapse.xml │ │ │ │ │ └── xslt_transformation_with_property_synapse.xml │ │ │ │ ├── messageProcessorConfig │ │ │ │ └── Message_Processor_Persistence_After_Restart_Synapse.xml │ │ │ │ ├── mtom │ │ │ │ └── asf-logo.gif │ │ │ │ ├── nhttp │ │ │ │ └── transport │ │ │ │ │ └── certificatevalidation │ │ │ │ │ ├── axis2.xml │ │ │ │ │ └── simple_proxy.xml │ │ │ │ ├── other │ │ │ │ └── index.html │ │ │ │ ├── passthru │ │ │ │ └── transport │ │ │ │ │ └── httpproxy │ │ │ │ │ ├── axis2.xml │ │ │ │ │ └── httpProxy.xml │ │ │ │ ├── proxyconfig │ │ │ │ └── proxy │ │ │ │ │ ├── customProxy │ │ │ │ │ ├── insequence_existing_sequence.xml │ │ │ │ │ ├── insequence_from_registry.xml │ │ │ │ │ ├── insequence_inline_endpoint_from_registry.xml │ │ │ │ │ ├── insequence_inline_endpoint_inline.xml │ │ │ │ │ ├── insequence_none_endpoint_existing.xml │ │ │ │ │ ├── insequence_none_endpoint_from_registry.xml │ │ │ │ │ ├── insequence_none_endpoint_inline.xml │ │ │ │ │ ├── non_existing_proxy.xml │ │ │ │ │ ├── non_existing_proxy_route_to_main.xml │ │ │ │ │ ├── outsequence_faultsequence.xml │ │ │ │ │ └── simple_proxy.xml │ │ │ │ │ ├── enablelocaltransport │ │ │ │ │ └── axis2.xml │ │ │ │ │ ├── loggingProxy │ │ │ │ │ ├── pick_end_point_from_registry.xml │ │ │ │ │ ├── proxy_service_enabling_only_http.xml │ │ │ │ │ ├── proxy_service_enabling_only_https.xml │ │ │ │ │ ├── proxy_service_with_end_point_through_url.xml │ │ │ │ │ ├── request_log_level_full_response_log_level_full.xml │ │ │ │ │ ├── request_log_level_none_response_log_level_none.xml │ │ │ │ │ ├── request_log_level_simple_response_log_level_simple.xml │ │ │ │ │ ├── wsdl_options_pick_from_registry.xml │ │ │ │ │ ├── wsdl_options_specified_inline.xml │ │ │ │ │ └── wsdl_options_specified_source_url.xml │ │ │ │ │ ├── passThroughProxy │ │ │ │ │ ├── EditPassThroughProxy.xml │ │ │ │ │ ├── customServiceURI │ │ │ │ │ │ ├── axis2.xml │ │ │ │ │ │ └── custom_service_uri_enabling_only_https.xml │ │ │ │ │ ├── passThroughProxy.xml │ │ │ │ │ ├── pick_end_point_from_registry.xml │ │ │ │ │ ├── proxy_service_enabling_only_http.xml │ │ │ │ │ ├── proxy_service_enabling_only_https.xml │ │ │ │ │ ├── proxy_service_with_end_point_through_url.xml │ │ │ │ │ ├── wsdl_options_pick_from_registry.xml │ │ │ │ │ ├── wsdl_options_specified_inline.xml │ │ │ │ │ └── wsdl_options_specified_source_url.xml │ │ │ │ │ ├── protocolViolationProxy │ │ │ │ │ └── synapse.xml │ │ │ │ │ ├── proxyservice │ │ │ │ │ ├── http_to_https_proxy.xml │ │ │ │ │ ├── localentry_url_proxy.xml │ │ │ │ │ ├── proxy_with_addressing.xml │ │ │ │ │ └── stock_quote_proxy.xml │ │ │ │ │ ├── secureProxy │ │ │ │ │ ├── passthrough_proxy_engaging_security_with_secueBackEnd.xml │ │ │ │ │ ├── passthrough_proxy_with_secueBackEnd.xml │ │ │ │ │ ├── sample_0_with_wso2_registry.xml │ │ │ │ │ ├── secure_proxy_service_scenarios.xml │ │ │ │ │ ├── secured_proxy_secured_backend.xml │ │ │ │ │ ├── security_transformation_proxy_for_policy2_backEnd.xml │ │ │ │ │ ├── security_transformation_proxy_for_policy3_backend.xml │ │ │ │ │ ├── security_transformation_proxy_for_policy4_backend.xml │ │ │ │ │ ├── security_transformation_proxy_for_policy5_backend.xml │ │ │ │ │ ├── security_transformation_proxy_for_policy6_backend.xml │ │ │ │ │ ├── security_transformation_proxy_for_policy7_backend.xml │ │ │ │ │ ├── security_transformation_proxy_for_policy8_backend.xml │ │ │ │ │ ├── stock_quote_passthrough_proxy.xml │ │ │ │ │ ├── stock_quote_proxy.xml │ │ │ │ │ ├── stockquote_pass_through_proxy.xml │ │ │ │ │ └── stockquote_proxy_unsecured.xml │ │ │ │ │ ├── transformerProxy │ │ │ │ │ ├── invalid_xslt_test.xml │ │ │ │ │ ├── pick_end_point_from_registry.xml │ │ │ │ │ ├── proxy_service_enabling_only_http.xml │ │ │ │ │ ├── proxy_service_enabling_only_https.xml │ │ │ │ │ ├── proxy_service_with_end_point_through_url.xml │ │ │ │ │ ├── wsdl_options_pick_from_registry.xml │ │ │ │ │ ├── wsdl_options_specified_inline.xml │ │ │ │ │ └── wsdl_options_specified_source_url.xml │ │ │ │ │ ├── utils │ │ │ │ │ ├── fault_sequence.xml │ │ │ │ │ ├── invalid_transform.xslt │ │ │ │ │ ├── out_sequence.xml │ │ │ │ │ ├── proxy_sequence.xml │ │ │ │ │ ├── registry_endpoint.xml │ │ │ │ │ └── sample_proxy_1.wsdl │ │ │ │ │ └── wsdlBasedProxy │ │ │ │ │ ├── proxy_service_enabling_only_http.xml │ │ │ │ │ ├── proxy_service_enabling_only_https.xml │ │ │ │ │ ├── proxy_service_with_publish_same_service_contract.xml │ │ │ │ │ ├── wsdl_options_pick_from_registry.xml │ │ │ │ │ ├── wsdl_options_specified_inline.xml │ │ │ │ │ └── wsdl_options_specified_source_url.xml │ │ │ │ ├── scheduledTask │ │ │ │ ├── InjectToProxyTestConfig.xml │ │ │ │ └── InjectToSequenceTestConfig.xml │ │ │ │ ├── server │ │ │ │ ├── conf │ │ │ │ │ ├── deployment.toml │ │ │ │ │ └── file.properties │ │ │ │ ├── lib │ │ │ │ │ └── org.wso2.carbon.test.gateway-1.0.0.jar │ │ │ │ ├── registry │ │ │ │ │ └── governance │ │ │ │ │ │ └── service_integration │ │ │ │ │ │ └── wsdls │ │ │ │ │ │ └── HCCService.wsdl │ │ │ │ └── repository │ │ │ │ │ └── deployment │ │ │ │ │ └── server │ │ │ │ │ ├── carbonapps │ │ │ │ │ ├── FileConnectorProjectCompositeApplication_1.0.0.car │ │ │ │ │ ├── TestEndpointStatsCompositeExporter_1.0.0-SNAPSHOT.car │ │ │ │ │ ├── invalidCompositeApplication_1.0.0.car │ │ │ │ │ └── validCompositeApplication_1.0.0.car │ │ │ │ │ ├── synapse-configs │ │ │ │ │ └── default │ │ │ │ │ │ ├── api │ │ │ │ │ │ ├── ContentEncodingTestAPI.xml │ │ │ │ │ │ ├── MediationLibraryServiceTestAPI.xml │ │ │ │ │ │ ├── cors-api.xml │ │ │ │ │ │ ├── filePropertyTestAPI.xml │ │ │ │ │ │ ├── per-api-cors.xml │ │ │ │ │ │ ├── simpleApiToTestResponsePayload.xml │ │ │ │ │ │ └── xmltoJsonNilTestAPI.xml │ │ │ │ │ │ ├── endpoints │ │ │ │ │ │ ├── GeoEP.xml │ │ │ │ │ │ ├── HCFacilityLocatorServiceEP.xml │ │ │ │ │ │ ├── HCInformationService.xml │ │ │ │ │ │ ├── MOCK_FILE_EP.xml │ │ │ │ │ │ ├── StockQuoteService.xml │ │ │ │ │ │ ├── StockQuoteServiceEndPoint.xml │ │ │ │ │ │ └── StockQuote_9000_EP.xml │ │ │ │ │ │ ├── imports │ │ │ │ │ │ └── {org.wso2.carbon.connector}hello.xml │ │ │ │ │ │ ├── local-entries │ │ │ │ │ │ └── stockQuoteEndpointKey.xml │ │ │ │ │ │ ├── proxy-services │ │ │ │ │ │ ├── CallerProxy.xml │ │ │ │ │ │ ├── ESB-Accept-Encoding-frombackend.xml │ │ │ │ │ │ ├── HCCProxyService.xml │ │ │ │ │ │ ├── JSONDisableAutoPrimitiveNumericTestProxy.xml │ │ │ │ │ │ ├── LocalEntryTestProxy.xml │ │ │ │ │ │ ├── ReferencingProxy.xml │ │ │ │ │ │ ├── ReferencingProxyStatisticDisable.xml │ │ │ │ │ │ ├── ReferencingProxyStatisticDisableProxy.xml │ │ │ │ │ │ ├── RestProxy.xml │ │ │ │ │ │ ├── SequenceReferenceProxy.xml │ │ │ │ │ │ ├── SoapFaultBackEnd.xml │ │ │ │ │ │ ├── SplitAggregateProxy.xml │ │ │ │ │ │ ├── StockQuoteProxy.xml │ │ │ │ │ │ ├── acceptGzipPayload.xml │ │ │ │ │ │ ├── addressEndPoint.xml │ │ │ │ │ │ ├── handlerTestProxy.xml │ │ │ │ │ │ ├── handlerTestProxyWithSoapfault.xml │ │ │ │ │ │ ├── jsonBE.xml │ │ │ │ │ │ ├── jsonLog.xml │ │ │ │ │ │ ├── jsonToSoap11.xml │ │ │ │ │ │ ├── sendAndReceiveGZIPCompressedPayload.xml │ │ │ │ │ │ ├── sendingGZIPCompressedPayloadToBackEnd.xml │ │ │ │ │ │ ├── sendingGZIPCompressedPayloadToClient.xml │ │ │ │ │ │ ├── soapRespond.xml │ │ │ │ │ │ ├── soapToJson.xml │ │ │ │ │ │ └── xmlToJsonTestProxy.xml │ │ │ │ │ │ ├── sequences │ │ │ │ │ │ ├── BackendSequence.xml │ │ │ │ │ │ ├── StatisticBackendSequence.xml │ │ │ │ │ │ ├── hcfRequest.xml │ │ │ │ │ │ └── hciRequest.xml │ │ │ │ │ │ └── templates │ │ │ │ │ │ ├── Templ1.xml │ │ │ │ │ │ └── Templ2.xml │ │ │ │ │ └── synapse-libs │ │ │ │ │ └── hello-connector-1.0.0-SNAPSHOT.zip │ │ │ │ ├── serviceCatalog │ │ │ │ ├── FirstAPI │ │ │ │ │ └── deployment.toml │ │ │ │ ├── FourthAPI │ │ │ │ │ └── deployment.toml │ │ │ │ ├── HelloWorldWithoutMetadataCompositeExporter_1.0.0-SNAPSHOT.car │ │ │ │ ├── Scenario2JsonResponse.json │ │ │ │ ├── Scenario3JsonResponse.json │ │ │ │ ├── Scenario4JsonResponse.json │ │ │ │ ├── SecondAPI │ │ │ │ │ └── deployment.toml │ │ │ │ ├── ThirdAPI │ │ │ │ │ └── deployment.toml │ │ │ │ ├── blaCompositeExporter_1.0.0-SNAPSHOT.car │ │ │ │ ├── changed_demoCompositeExporter_1.0.0-SNAPSHOT.car │ │ │ │ ├── demoCompositeExporter_1.0.0-SNAPSHOT.car │ │ │ │ ├── invalidCompositeApplication_1.0.0.car │ │ │ │ ├── micro-integrator.bat │ │ │ │ ├── micro-integrator.sh │ │ │ │ └── proxyCompositeExporter_1.0.0-SNAPSHOT.car │ │ │ │ ├── synapseExpressions │ │ │ │ └── SynapseExpressionTestCase_1.0.0.car │ │ │ │ ├── synapseconfig │ │ │ │ ├── CheckAggregateChildContentConfig │ │ │ │ │ └── synapse.xml │ │ │ │ ├── LargeAggregationWithoutTimeoutConfig │ │ │ │ │ └── synapse.xml │ │ │ │ ├── MaxOpenConnections │ │ │ │ │ ├── max_open_connections.xml │ │ │ │ │ ├── nhttp.properties │ │ │ │ │ ├── nhttp │ │ │ │ │ │ └── axis2.xml │ │ │ │ │ ├── passthru-http.properties │ │ │ │ │ └── ptt │ │ │ │ │ │ └── axis2.xml │ │ │ │ ├── addressEndpointConfig │ │ │ │ │ ├── addressEP_Test.xml │ │ │ │ │ └── synapse.xml │ │ │ │ ├── aggregateWithinTimoutConfig │ │ │ │ │ └── synapse.xml │ │ │ │ ├── aggregatedEnclosingElement │ │ │ │ │ └── synapse.xml │ │ │ │ ├── class_mediator │ │ │ │ │ └── synapse.xml │ │ │ │ ├── config06 │ │ │ │ │ └── synapse.xml │ │ │ │ ├── config1 │ │ │ │ │ ├── endpoints │ │ │ │ │ │ ├── Axis2EPR.xml │ │ │ │ │ │ ├── BCISEndpoint.xml │ │ │ │ │ │ ├── CreditEpr.xml │ │ │ │ │ │ ├── PersonInfoEpr.xml │ │ │ │ │ │ ├── RSMeansEndpoint.xml │ │ │ │ │ │ ├── RuleServiceEndpoint.xml │ │ │ │ │ │ ├── SimpleStockQuoteService.xml │ │ │ │ │ │ ├── club_profile_ds_endpoint.xml │ │ │ │ │ │ ├── club_profile_ds_lb_endpoint.xml │ │ │ │ │ │ ├── club_record_ds_endpoint.xml │ │ │ │ │ │ ├── club_record_ds_lb_endpoint.xml │ │ │ │ │ │ ├── ds_endpoint.xml │ │ │ │ │ │ ├── geo_endpoint.xml │ │ │ │ │ │ ├── gis_endpoint.xml │ │ │ │ │ │ ├── resut_display_ep.xml │ │ │ │ │ │ ├── samplefailoverendpoint.xml │ │ │ │ │ │ └── samplewsdlendpoint.xml │ │ │ │ │ ├── local-entries │ │ │ │ │ │ ├── ResutDisplayServiceTransform.xml │ │ │ │ │ │ ├── geo_transform.xml │ │ │ │ │ │ ├── resource_proxy_reply_transformation.xml │ │ │ │ │ │ ├── rule_service_transformation.xml │ │ │ │ │ │ ├── testBean.xml │ │ │ │ │ │ └── validate_schema.xml │ │ │ │ │ ├── message-processors │ │ │ │ │ │ └── MProc1.xml │ │ │ │ │ ├── message-store │ │ │ │ │ │ └── MStore1.xml │ │ │ │ │ ├── priority-executors │ │ │ │ │ │ └── samplePriority2.xml │ │ │ │ │ ├── proxy-services │ │ │ │ │ │ ├── DemoProxy.xml │ │ │ │ │ │ └── StockQuoteProxy.xml │ │ │ │ │ ├── registry.xml │ │ │ │ │ ├── sequences │ │ │ │ │ │ ├── fault.xml │ │ │ │ │ │ └── main.xml │ │ │ │ │ ├── synapse.xml │ │ │ │ │ └── tasks │ │ │ │ │ │ └── sampleTask.xml │ │ │ │ ├── config10 │ │ │ │ │ └── synapse.xml │ │ │ │ ├── config11 │ │ │ │ │ └── synapse.xml │ │ │ │ ├── config12 │ │ │ │ │ └── synapse.xml │ │ │ │ ├── config13 │ │ │ │ │ └── synapse.xml │ │ │ │ ├── config16 │ │ │ │ │ └── synapse.xml │ │ │ │ ├── config17 │ │ │ │ │ └── synapse.xml │ │ │ │ ├── config18 │ │ │ │ │ └── synapse.xml │ │ │ │ ├── config19 │ │ │ │ │ └── synapse.xml │ │ │ │ ├── config20 │ │ │ │ │ └── synapse.xml │ │ │ │ ├── config21 │ │ │ │ │ └── synapse.xml │ │ │ │ ├── config3 │ │ │ │ │ ├── proxy-services │ │ │ │ │ │ └── StockQuoteProxy.xml │ │ │ │ │ ├── registry.xml │ │ │ │ │ └── synapse.xml │ │ │ │ ├── config4 │ │ │ │ │ └── proxy-services │ │ │ │ │ │ └── simplePassThoughProxy.xml │ │ │ │ ├── config46 │ │ │ │ │ └── synapse.xml │ │ │ │ ├── config5 │ │ │ │ │ └── proxy-services │ │ │ │ │ │ └── simplePassThoughWithWSDL.xml │ │ │ │ ├── config54 │ │ │ │ │ └── synapse.xml │ │ │ │ ├── config55 │ │ │ │ │ └── synapse.xml │ │ │ │ ├── config6 │ │ │ │ │ └── synapse.xml │ │ │ │ ├── config603 │ │ │ │ │ └── synapse.xml │ │ │ │ ├── config65 │ │ │ │ │ └── synapse.xml │ │ │ │ ├── config66 │ │ │ │ │ └── synapse.xml │ │ │ │ ├── config67 │ │ │ │ │ └── synapse.xml │ │ │ │ ├── config7 │ │ │ │ │ └── synapse.xml │ │ │ │ ├── config8 │ │ │ │ │ ├── classes │ │ │ │ │ │ └── synapse.properties │ │ │ │ │ └── synapse.xml │ │ │ │ ├── config9 │ │ │ │ │ └── synapse.xml │ │ │ │ ├── configFailOver │ │ │ │ │ └── ConfigFailOver.xml │ │ │ │ ├── configForInvaliedXquaryKey │ │ │ │ │ └── synapse.xml │ │ │ │ ├── config_multiple_rule │ │ │ │ │ └── synapse.xml │ │ │ │ ├── config_rule_s3 │ │ │ │ │ └── synapse.xml │ │ │ │ ├── config_single_rule │ │ │ │ │ └── synapse.xml │ │ │ │ ├── config_without_rule │ │ │ │ │ └── synapse.xml │ │ │ │ ├── core │ │ │ │ │ ├── synapse.xml │ │ │ │ │ ├── synapse_add_child_from_property.xml │ │ │ │ │ ├── synapse_add_sibling_from_property.xml │ │ │ │ │ ├── synapse_body_to_child_of_body.xml │ │ │ │ │ ├── synapse_body_to_sibling_of_body.xml │ │ │ │ │ ├── synapse_body_to_xpath_child.xml │ │ │ │ │ ├── synapse_body_to_xpath_sibling.xml │ │ │ │ │ ├── synapse_child_xpath.xml │ │ │ │ │ ├── synapse_envelope1.xml │ │ │ │ │ ├── synapse_replace_envelope_property.xml │ │ │ │ │ ├── synapse_replace_multiple_node.xml │ │ │ │ │ └── synapse_sourcexpath_targetxpath.xml │ │ │ │ ├── core_mediator │ │ │ │ │ ├── synapse.xml │ │ │ │ │ ├── synapseLoopbackMediatorConfig.xml │ │ │ │ │ └── synapseRepondMediatorConfig.xml │ │ │ │ ├── customSSLprofileWithsecurevault │ │ │ │ │ ├── axis2.xml │ │ │ │ │ ├── catalina-server.xml │ │ │ │ │ ├── cipher-text.properties │ │ │ │ │ ├── cipher-tool.properties │ │ │ │ │ ├── password-tmp │ │ │ │ │ └── secret-conf.properties │ │ │ │ ├── default │ │ │ │ │ ├── api │ │ │ │ │ │ ├── StockQuoteAPI.xml │ │ │ │ │ │ └── StockQuoteAPI2.xml │ │ │ │ │ ├── endpoints │ │ │ │ │ │ └── addressEpTest.xml │ │ │ │ │ ├── local-entries │ │ │ │ │ │ └── local-entry-sequence-key.xml │ │ │ │ │ ├── proxy-services │ │ │ │ │ │ ├── SampleProxy.xml │ │ │ │ │ │ ├── StockQuoteProxy.xml │ │ │ │ │ │ └── addressEndPoint.xml │ │ │ │ │ ├── registry.xml │ │ │ │ │ ├── sequences │ │ │ │ │ │ ├── fault.xml │ │ │ │ │ │ └── main.xml │ │ │ │ │ ├── synapse.xml │ │ │ │ │ └── tasks │ │ │ │ │ │ └── SampleInjectToProxyTask.xml │ │ │ │ ├── defaultEndpointConfig │ │ │ │ │ ├── defaultEP_Test.xml │ │ │ │ │ └── synapse.xml │ │ │ │ ├── defaultconfig │ │ │ │ │ └── default-synapse.xml │ │ │ │ ├── enrich │ │ │ │ │ ├── add_source_as_sibling_in_body.xml │ │ │ │ │ ├── replace_envelop.xml │ │ │ │ │ └── replace_part_of_msg_by_body.xml │ │ │ │ ├── enrich_mediator │ │ │ │ │ ├── add_child_using_xpath_synapse.xml │ │ │ │ │ ├── copy_xpathOf_single_node.xml │ │ │ │ │ ├── replaceBodyOfMessageSynapse.xml │ │ │ │ │ ├── replaceBodySynapse.xml │ │ │ │ │ ├── replace_body_using_source_type_body.xml │ │ │ │ │ └── synapse.xml │ │ │ │ ├── esbjava2283 │ │ │ │ │ └── synapse.xml │ │ │ │ ├── filters │ │ │ │ │ ├── conditional_router │ │ │ │ │ │ ├── dynamic_seq1.xml │ │ │ │ │ │ ├── synapse1.xml │ │ │ │ │ │ ├── synapse2.xml │ │ │ │ │ │ ├── synapse3.xml │ │ │ │ │ │ ├── synapse4.xml │ │ │ │ │ │ ├── synapse5.xml │ │ │ │ │ │ └── synapse6.xml │ │ │ │ │ ├── filter │ │ │ │ │ │ ├── synapse1.xml │ │ │ │ │ │ ├── synapse2.xml │ │ │ │ │ │ └── synapse3.xml │ │ │ │ │ ├── in │ │ │ │ │ │ └── synapse.xml │ │ │ │ │ ├── out │ │ │ │ │ │ ├── multiple_out_mediators_config.xml │ │ │ │ │ │ └── out_without_children.xml │ │ │ │ │ ├── switchMediator │ │ │ │ │ │ ├── ESBJAVA_1857_switch_case_synapse.xml │ │ │ │ │ │ ├── Invalid_xpath.xml │ │ │ │ │ │ ├── SOAP11_SOAP12_XPath.xml │ │ │ │ │ │ ├── SOAP11_SOAP12_XPath_nagative_case.xml │ │ │ │ │ │ ├── basic_and_without_default_case_synapse.xml │ │ │ │ │ │ ├── further_processing_of_switch_after_match.xml │ │ │ │ │ │ ├── invalid_prefix.xml │ │ │ │ │ │ ├── onerror_sequence_within_switch_config.xml │ │ │ │ │ │ ├── switch_inside_switch_config.xml │ │ │ │ │ │ └── switching_based_on_address_synapse.xml │ │ │ │ │ └── validate │ │ │ │ │ │ ├── schema1.xml │ │ │ │ │ │ ├── schema1a.xml │ │ │ │ │ │ ├── synapse1.xml │ │ │ │ │ │ └── validate_synapse.xml │ │ │ │ ├── groovy │ │ │ │ │ ├── axis2.xml │ │ │ │ │ ├── synapse_with_groovy.xml │ │ │ │ │ └── synapse_without_groovy.xml │ │ │ │ ├── healthcarescenario │ │ │ │ │ ├── GeoService.wsdl │ │ │ │ │ ├── HCFacilityLocatorService.wsdl │ │ │ │ │ ├── HCInformationService.wsdl │ │ │ │ │ └── synapse.xml │ │ │ │ ├── highTimeoutValueConfig │ │ │ │ │ └── synapse.xml │ │ │ │ ├── http_transport │ │ │ │ │ ├── set_host_http_header.xml │ │ │ │ │ └── set_host_http_header_with_port.xml │ │ │ │ ├── log_mediator │ │ │ │ │ └── synapse.xml │ │ │ │ ├── messageStore │ │ │ │ │ ├── ESBJAVA-2907StoreOmElementsAsProperties.xml │ │ │ │ │ ├── axis2.xml │ │ │ │ │ ├── sample_700.xml │ │ │ │ │ ├── scriptMediator │ │ │ │ │ │ └── axis2.xml │ │ │ │ │ ├── special_character.xml │ │ │ │ │ └── test.xml │ │ │ │ ├── messagewithoutcontent │ │ │ │ │ ├── request.xml │ │ │ │ │ ├── synapse.xml │ │ │ │ │ └── xmlrequest.xml │ │ │ │ ├── nhttp_transport │ │ │ │ │ ├── content_type_charset_synapse.xml │ │ │ │ │ ├── nhttp.properties │ │ │ │ │ └── nhttp_test_synapse.xml │ │ │ │ ├── nonBlockingHTTP │ │ │ │ │ ├── axis2.xml │ │ │ │ │ └── local_jms_proxy_synapse.xml │ │ │ │ ├── onCompleteSequenceConfig │ │ │ │ │ ├── sequences │ │ │ │ │ │ └── dynamic_seq1.xml │ │ │ │ │ └── synapse.xml │ │ │ │ ├── onCompleteSequenceFromGreg │ │ │ │ │ ├── sequences │ │ │ │ │ │ └── dynamic_seq1.xml │ │ │ │ │ └── synapse.xml │ │ │ │ ├── patchAutomation │ │ │ │ │ ├── failover_endpoint_for_single_leaf_endpoint_synapse.xml │ │ │ │ │ ├── https_request_via_http_proxy_synapse.xml │ │ │ │ │ ├── non_ascii_value_properties_synapse_.xml │ │ │ │ │ └── url_encoded_form_post_proxy.xml │ │ │ │ ├── patch_automation │ │ │ │ │ ├── CARBON11016_synapse.xml │ │ │ │ │ ├── CloneArtifactTestCase.xml │ │ │ │ │ ├── failover_endpoint_for_single_leaf_endpoint_synapse.xml │ │ │ │ │ └── load_balance_failover_synapse.xml │ │ │ │ ├── payloadmediatype │ │ │ │ │ ├── media_type_xml_json_default.xml │ │ │ │ │ ├── no_arguments.xml │ │ │ │ │ ├── value_argument.xml │ │ │ │ │ └── valueandexpression_arguments.xml │ │ │ │ ├── processor │ │ │ │ │ └── forwarding │ │ │ │ │ │ ├── InMemoryStoreSynapse1.xml │ │ │ │ │ │ ├── Retry_On_SOAPFault_In_Out.xml │ │ │ │ │ │ └── Retry_On_SOAPFault_true_In_Out.xml │ │ │ │ ├── propertyMediatorConfig │ │ │ │ │ └── synapse.xml │ │ │ │ ├── propertyWithinIterateConfig │ │ │ │ │ └── synapse.xml │ │ │ │ ├── proxyadmin │ │ │ │ │ └── testconfig.xml │ │ │ │ ├── rest │ │ │ │ │ ├── axis2-service-synapse.xml │ │ │ │ │ ├── customer-service-proxy.xml │ │ │ │ │ ├── rest-client-and-rest-service.xml │ │ │ │ │ ├── rest-service-proxy.xml │ │ │ │ │ ├── student-service-synapse.xml │ │ │ │ │ ├── synapse.xml │ │ │ │ │ └── uri-template-synapse.xml │ │ │ │ ├── script_mediator │ │ │ │ │ ├── groovy_script_with_setPayloadJson.xml │ │ │ │ │ ├── groovy_script_with_the_mediator.xml │ │ │ │ │ ├── jsfromEntry_config.xml │ │ │ │ │ ├── retrieve_script_from_gov_reg_mediation.xml │ │ │ │ │ ├── synapse.xml │ │ │ │ │ ├── synapse3.xml │ │ │ │ │ └── synapse_generate_fault.xml │ │ │ │ ├── sendMediatorConfig │ │ │ │ │ ├── synapse.xml │ │ │ │ │ ├── test_sequences_config │ │ │ │ │ │ └── receivingSequence_Conf.xml │ │ │ │ │ ├── test_sequences_gov │ │ │ │ │ │ └── receivingSequence_Gov.xml │ │ │ │ │ └── test_sequences_local │ │ │ │ │ │ └── receivingSequence_Local.xml │ │ │ │ ├── send_mediator │ │ │ │ │ ├── endpoints │ │ │ │ │ │ └── registry_endpoint.xml │ │ │ │ │ └── synapse_config.xml │ │ │ │ ├── servletTransport │ │ │ │ │ ├── axis2.xml │ │ │ │ │ ├── pox_servlet_transport_axis2.xml │ │ │ │ │ └── soap_2_pox.xml │ │ │ │ ├── smooks │ │ │ │ │ ├── axis2.xml │ │ │ │ │ ├── large_csv_smooks_test.xml │ │ │ │ │ ├── person.csv │ │ │ │ │ ├── smooks_config.xml │ │ │ │ │ └── smooks_synapse.xml │ │ │ │ ├── statistics │ │ │ │ │ ├── synapseconfigapi.xml │ │ │ │ │ └── synapseconfigproxy.xml │ │ │ │ ├── throttle │ │ │ │ │ ├── ConcurrencyAndRequestBasedThrottlingConcurrency.xml │ │ │ │ │ ├── ConcurrencyAndRequestBasedThrottlingRequest.xml │ │ │ │ │ ├── MaximumConcurrentAccess.xml │ │ │ │ │ ├── concurrencyTest.xml │ │ │ │ │ ├── concurrencyTestMaxConcurrentAccessOne.xml │ │ │ │ │ ├── concurrentAccessLargeRequestCountSmallTest.xml │ │ │ │ │ ├── invalidThrottlingPolicyTest.xml │ │ │ │ │ └── specifyThrottlingPolicyAsARegistryKey.xml │ │ │ │ ├── validatemediator │ │ │ │ │ ├── dynamickey.xml │ │ │ │ │ ├── invalid_dynamic_key.xml │ │ │ │ │ ├── staticKey.xml │ │ │ │ │ ├── validate_secure_false.xml │ │ │ │ │ ├── validate_secure_true.xml │ │ │ │ │ ├── validate_with_invalid_Xpath.xml │ │ │ │ │ ├── validate_with_proxy.xml │ │ │ │ │ └── validate_with_resources.xml │ │ │ │ ├── validatemediator2 │ │ │ │ │ └── synapse.xml │ │ │ │ ├── vfsTransport │ │ │ │ │ ├── axis2.xml │ │ │ │ │ ├── edi.txt │ │ │ │ │ ├── fail.xml │ │ │ │ │ ├── out │ │ │ │ │ │ └── test.txt │ │ │ │ │ ├── smooks-config.xml │ │ │ │ │ ├── synapse_config_658.xml │ │ │ │ │ ├── synapse_sample_658_input.xml │ │ │ │ │ ├── test.txt │ │ │ │ │ ├── test.xml │ │ │ │ │ ├── vfs_test_smook_config_at_registry.xml │ │ │ │ │ ├── vfs_test_synapse.xml │ │ │ │ │ └── vfs_xml_to_xml.xml │ │ │ │ └── wsdlEndpointConfig │ │ │ │ │ ├── synapse.xml │ │ │ │ │ └── wsdlEP_Test.xml │ │ │ │ ├── tcp │ │ │ │ └── transport │ │ │ │ │ ├── axis2.xml │ │ │ │ │ ├── client_axis2.xml │ │ │ │ │ └── tcpProxy.xml │ │ │ │ ├── template │ │ │ │ └── functionStackDeepCloneTestSynapse.xml │ │ │ │ ├── versionedDeployment │ │ │ │ ├── bankingservices_1.0.0.car │ │ │ │ ├── payment_1.0.0.car │ │ │ │ ├── payment_1.0.1.car │ │ │ │ ├── synapse.properties │ │ │ │ └── template_1.0.1.car │ │ │ │ └── xwwwformurlencodedformatter │ │ │ │ ├── axis2.xml │ │ │ │ └── x_www_form_url_encoded_formatter_test.xml │ │ │ ├── automation.xml │ │ │ ├── automationXMLSchema.xsd │ │ │ ├── log4j.properties │ │ │ ├── security │ │ │ ├── keystore │ │ │ │ ├── client.jks │ │ │ │ └── service.jks │ │ │ └── policies │ │ │ │ ├── custom │ │ │ │ ├── scenario1-policy.xml │ │ │ │ ├── scenario10-policy.xml │ │ │ │ ├── scenario11-policy.xml │ │ │ │ ├── scenario12-policy.xml │ │ │ │ ├── scenario13-policy.xml │ │ │ │ ├── scenario14-policy.xml │ │ │ │ ├── scenario15-policy.xml │ │ │ │ ├── scenario16-policy.xml │ │ │ │ ├── scenario17-policy.xml │ │ │ │ ├── scenario2-policy.xml │ │ │ │ ├── scenario3-policy.xml │ │ │ │ ├── scenario4-policy.xml │ │ │ │ ├── scenario5-policy.xml │ │ │ │ ├── scenario6-policy.xml │ │ │ │ ├── scenario7-policy.xml │ │ │ │ ├── scenario8-policy.xml │ │ │ │ └── scenario9-policy.xml │ │ │ │ ├── scenario-config.xml │ │ │ │ ├── scenario1-policy.xml │ │ │ │ ├── scenario10-policy.xml │ │ │ │ ├── scenario11-policy.xml │ │ │ │ ├── scenario12-policy.xml │ │ │ │ ├── scenario13-policy.xml │ │ │ │ ├── scenario14-policy.xml │ │ │ │ ├── scenario15-policy.xml │ │ │ │ ├── scenario16-policy.xml │ │ │ │ ├── scenario17-policy.xml │ │ │ │ ├── scenario2-policy.xml │ │ │ │ ├── scenario27-policy.xml │ │ │ │ ├── scenario3-policy.xml │ │ │ │ ├── scenario4-policy.xml │ │ │ │ ├── scenario5-policy.xml │ │ │ │ ├── scenario6-policy.xml │ │ │ │ ├── scenario7-policy.xml │ │ │ │ ├── scenario8-policy.xml │ │ │ │ └── scenario9-policy.xml │ │ │ ├── test.env │ │ │ ├── testng.xml │ │ │ └── tomcat │ │ │ └── catalina-server.xml │ ├── tests-patches-with-smb2 │ │ ├── pom.xml │ │ └── src │ │ │ └── test │ │ │ ├── java │ │ │ └── org │ │ │ │ └── wso2 │ │ │ │ └── carbon │ │ │ │ └── esb │ │ │ │ └── vfs │ │ │ │ └── transport │ │ │ │ └── test │ │ │ │ └── connection │ │ │ │ └── failure │ │ │ │ ├── SMB2ConnectionGrowthTestCaseAfterConnectingToNEDirectory.java │ │ │ │ ├── SMB2ConnectionGrowthTestCaseAfterConnectingToNEShare.java │ │ │ │ ├── SMB2ConnectionGrowthTestCaseAfterSambaServerRestart.java │ │ │ │ ├── SMB2FileTransferResumingTestCaseAfterConnectionFailureToSambaServer.java │ │ │ │ ├── SMB2FileTransferResumingTestCaseAfterSambaServerRestart.java │ │ │ │ ├── SMB2FileTransferResumingTestCaseAfterSambaServerRestart2Steps.java │ │ │ │ ├── SMB2FileTransferResumingTestCaseWithMultipleProxyAfterConResetNServerReset.java │ │ │ │ ├── SMB2FileTransferTestCase.java │ │ │ │ ├── SMB2FileTransferTestCaseCheckContent.java │ │ │ │ ├── SMB2FileTransferTestCaseWithMultipleProxy.java │ │ │ │ ├── SMB2FileTransferTestCaseWithMultipleProxyWhenPollingDirRemoved.java │ │ │ │ ├── SMB2FileTransferTestCaseWithMultipleProxyWithMultiShare.java │ │ │ │ └── Utils.java │ │ │ └── resources │ │ │ ├── artifacts │ │ │ ├── AXIS2 │ │ │ │ ├── aar │ │ │ │ │ ├── Axis2 Service.aar │ │ │ │ │ ├── Axis2Service.aar │ │ │ │ │ ├── Echo.aar │ │ │ │ │ ├── HelloWorld.aar │ │ │ │ │ ├── LBService1.aar │ │ │ │ │ ├── LBService2.aar │ │ │ │ │ ├── LBService3.aar │ │ │ │ │ ├── LBServiceWithSleep.aar │ │ │ │ │ ├── MTOMSwASampleService.aar │ │ │ │ │ ├── RetryOnSoapFault.aar │ │ │ │ │ ├── SecureStockQuoteService.aar │ │ │ │ │ ├── SecureStockQuoteServiceScenario1.aar │ │ │ │ │ ├── SecureStockQuoteServiceScenario10.aar │ │ │ │ │ ├── SecureStockQuoteServiceScenario2.aar │ │ │ │ │ ├── SecureStockQuoteServiceScenario3.aar │ │ │ │ │ ├── SecureStockQuoteServiceScenario4.aar │ │ │ │ │ ├── SecureStockQuoteServiceScenario5.aar │ │ │ │ │ ├── SecureStockQuoteServiceScenario6.aar │ │ │ │ │ ├── SecureStockQuoteServiceScenario7.aar │ │ │ │ │ ├── SecureStockQuoteServiceScenario8.aar │ │ │ │ │ ├── SecureStockQuoteServiceScenario9.aar │ │ │ │ │ ├── SimpleStockQuoteService.aar │ │ │ │ │ ├── SimpleStockQuoteService_timeout.aar │ │ │ │ │ ├── StratosSchemaimportservice.aar │ │ │ │ │ ├── StudentService.aar │ │ │ │ │ ├── geows.aar │ │ │ │ │ ├── hcfacilitylocator.aar │ │ │ │ │ └── hcinformationservice.aar │ │ │ │ └── config │ │ │ │ │ ├── test_axis2_server_9000.xml │ │ │ │ │ ├── test_axis2_server_9001.xml │ │ │ │ │ ├── test_axis2_server_9002.xml │ │ │ │ │ ├── test_axis2_server_9003.xml │ │ │ │ │ ├── test_axis2_server_9007.xml │ │ │ │ │ ├── test_axis2_server_9009.xml │ │ │ │ │ ├── test_axis2_server_9015.xml │ │ │ │ │ └── test_axis2_server_9017.xml │ │ │ └── ESB │ │ │ │ ├── car │ │ │ │ ├── CAppWithSwagger_1.0.0.car │ │ │ │ ├── DemoProxy-1.0.0.car │ │ │ │ ├── ESBproject1-1.0.0.car │ │ │ │ ├── ESBproject2-1.0.0.car │ │ │ │ ├── ESBproject3-1.0.0.car │ │ │ │ ├── ESBproject4-1.0.0.car │ │ │ │ ├── FaultyCAppWithSwagger_1.0.0.car │ │ │ │ ├── MediatorCApp2_1.0.0.car │ │ │ │ ├── MediatorCApp_1.0.0.car │ │ │ │ ├── SecurityPolicyWSDLBindingCapp_1.0.0.car │ │ │ │ ├── ServiceChaining-1.0.0.car │ │ │ │ ├── SynchroDepInValidCarApp_1.0.0.car │ │ │ │ ├── SynchroDepValidCarApp_1.0.0.car │ │ │ │ ├── car-deployment-before-tranaport-start-test_1.0.0.car │ │ │ │ ├── car-deployment-test.car │ │ │ │ ├── esb-artifacts-car_1.0.0.car │ │ │ │ ├── esb-artifacts-rule-mediator-car_1.0.0.car │ │ │ │ ├── inactive_proxy_1.0.0.car │ │ │ │ ├── sample-passthrough-proxy-car_1.0.0.car │ │ │ │ └── xslt-transformation-car_1.0.0.car │ │ │ │ ├── clustering │ │ │ │ ├── JMSEndpoint.xml │ │ │ │ └── axis2.xml │ │ │ │ ├── compression │ │ │ │ └── gzip │ │ │ │ │ └── gzip-compression.xml │ │ │ │ ├── config │ │ │ │ └── testconfig.xml │ │ │ │ ├── defaultconfigs │ │ │ │ └── synapse.xml │ │ │ │ ├── endpoint │ │ │ │ ├── CARBON11016_synapse.xml │ │ │ │ ├── EmptyPayloadInFailoverLoadBalanceEndpoint │ │ │ │ │ └── synapse.xml │ │ │ │ ├── addressEndpointConfig │ │ │ │ │ ├── addressEP_Test.xml │ │ │ │ │ ├── invalidPropertyAddressEndPoint.xml │ │ │ │ │ └── synapse.xml │ │ │ │ ├── defaultEndpointConfig │ │ │ │ │ ├── defaultEP_Test.xml │ │ │ │ │ └── synapse.xml │ │ │ │ ├── endpointFotmatRestPTTestConfig.xml │ │ │ │ ├── failoverEndpointConfig │ │ │ │ │ ├── failOverWithDisabledErrors.xml │ │ │ │ │ ├── failoverEP_Test.xml │ │ │ │ │ └── synapse.xml │ │ │ │ ├── httpEndpointConfig │ │ │ │ │ └── synapse.xml │ │ │ │ ├── loadbalancingEndpointConfig │ │ │ │ │ ├── loadbalancingEP_Test.xml │ │ │ │ │ └── synapse.xml │ │ │ │ ├── wsdlEndpointConfig │ │ │ │ │ ├── synapse.xml │ │ │ │ │ └── wsdlEP_Test.xml │ │ │ │ └── wsdlTestEp.xml │ │ │ │ ├── endpointlookup.xml │ │ │ │ ├── entitlementMediatorConfig │ │ │ │ └── entitlementMediatorSynapse.xml │ │ │ │ ├── hl7Transport │ │ │ │ └── axis2.xml │ │ │ │ ├── jaxrs │ │ │ │ ├── getperson.xml │ │ │ │ └── putpeopleproxy.xml │ │ │ │ ├── jms │ │ │ │ └── transport │ │ │ │ │ ├── ESBJAVA-1716_messageStore.xml │ │ │ │ │ ├── ESBJAVA-1793MessageStore-targetEndPointFormat-pox.xml │ │ │ │ │ ├── ESBJAVA-3656_MessageProcessor.xml │ │ │ │ │ ├── ESBJAVA-3656_MessageStore.xml │ │ │ │ │ ├── ESBJAVA3714_JMX_Pause_JMS_Listener.xml │ │ │ │ │ ├── HTTP_SC.xml │ │ │ │ │ ├── JMSAXISFault.xml │ │ │ │ │ ├── JMSMessageStoreREST.xml │ │ │ │ │ ├── MSMP_JSON_RETRY.xml │ │ │ │ │ ├── axis2config │ │ │ │ │ ├── activemq │ │ │ │ │ │ ├── axis2.xml │ │ │ │ │ │ └── custom_server_name │ │ │ │ │ │ │ └── axis2.xml │ │ │ │ │ └── mb │ │ │ │ │ │ └── axis2.xml │ │ │ │ │ ├── jms_endpoint_proxy_service.xml │ │ │ │ │ ├── jms_message_store_unavailable_service.xml │ │ │ │ │ ├── jms_out_only_proxy.xml │ │ │ │ │ ├── jms_transport.xml │ │ │ │ │ ├── jms_transport_jms_suspension.xml │ │ │ │ │ ├── jms_transport_proxy_service.xml │ │ │ │ │ ├── jms_wait_response.xml │ │ │ │ │ ├── jmsclient-and-restService.xml │ │ │ │ │ ├── jndi.properties │ │ │ │ │ ├── msgInjection │ │ │ │ │ ├── msg_injecting_task.xml │ │ │ │ │ └── msg_store.xml │ │ │ │ │ └── topic │ │ │ │ │ └── send_messages_topic_synapse.xml │ │ │ │ ├── json │ │ │ │ ├── StockQuoteAPI.xml │ │ │ │ ├── TestApi.xml │ │ │ │ ├── autoprimitive │ │ │ │ │ └── synapse.properties │ │ │ │ ├── json-to-soap-conversion.xml │ │ │ │ ├── location-header-json.xml │ │ │ │ ├── log4j.properties │ │ │ │ ├── malformedJsonFaulty.xml │ │ │ │ ├── synapse.properties │ │ │ │ ├── tenant-axis2.xml │ │ │ │ └── tenant-json-test-case.xml │ │ │ │ ├── local │ │ │ │ ├── axis2.xml │ │ │ │ ├── carbon.xml │ │ │ │ ├── local-transport-header.xml │ │ │ │ └── local-transport.xml │ │ │ │ ├── localEntryConfig │ │ │ │ ├── sequence_as_local_registry_entry.xml │ │ │ │ └── throttle_policy_as_a_local_entry.xml │ │ │ │ ├── mediatorconfig │ │ │ │ ├── aggregate │ │ │ │ │ └── CorrelateOnExpressionTest.xml │ │ │ │ ├── cache │ │ │ │ │ ├── CollectorTypeCacheMediator.xml │ │ │ │ │ ├── DistributedCachingHeaderSerialization.xml │ │ │ │ │ ├── LargeCacheTimeOut.xml │ │ │ │ │ └── axis2.xml │ │ │ │ ├── call │ │ │ │ │ ├── synapse.xml │ │ │ │ │ ├── synapse1.xml │ │ │ │ │ ├── synapse10.xml │ │ │ │ │ ├── synapse11.xml │ │ │ │ │ ├── synapse12.xml │ │ │ │ │ ├── synapse13.xml │ │ │ │ │ ├── synapse14.xml │ │ │ │ │ ├── synapse15.xml │ │ │ │ │ ├── synapse17.xml │ │ │ │ │ ├── synapse18.xml │ │ │ │ │ ├── synapse19.xml │ │ │ │ │ ├── synapse2.xml │ │ │ │ │ ├── synapse20.xml │ │ │ │ │ ├── synapse21.xml │ │ │ │ │ ├── synapse3.xml │ │ │ │ │ ├── synapse4.xml │ │ │ │ │ ├── synapse5.xml │ │ │ │ │ ├── synapse6.xml │ │ │ │ │ ├── synapse7.xml │ │ │ │ │ ├── synapse8.xml │ │ │ │ │ ├── synapse9.xml │ │ │ │ │ ├── synapse_expressions.xml │ │ │ │ │ └── synapse_param_with_values.xml │ │ │ │ ├── call_template │ │ │ │ │ ├── synapse.xml │ │ │ │ │ ├── synapse_expressions.xml │ │ │ │ │ └── synapse_param_with_values.xml │ │ │ │ ├── callout │ │ │ │ │ ├── CallOutMediatorOutOnlyTest.xml │ │ │ │ │ ├── CallOutMediatorWithMTOMTest.xml │ │ │ │ │ ├── CalloutMediatorHTTP_SC_Test.xml │ │ │ │ │ ├── CalloutMediatorSoapHeaderTest.xml │ │ │ │ │ ├── DynamicEndpointTest.xml │ │ │ │ │ ├── DynamicProperties.xml │ │ │ │ │ ├── FaultSeq.xml │ │ │ │ │ ├── FetchHTTPSCWithCalloutMediator.xml │ │ │ │ │ ├── InboundOutboundSecurityTest.xml │ │ │ │ │ ├── SOAPRequestWithHeader.xml │ │ │ │ │ ├── SecurityTest.xml │ │ │ │ │ ├── TranportCleanupOnFaultTest.xml │ │ │ │ │ ├── ValidPath_Axis2Repo.xml │ │ │ │ │ ├── ValidPath_Axis2Xml.xml │ │ │ │ │ ├── client_repo │ │ │ │ │ │ └── conf │ │ │ │ │ │ │ └── axis2.xml │ │ │ │ │ ├── synapse_sample_430.xml │ │ │ │ │ └── transport_headers.xml │ │ │ │ ├── class │ │ │ │ │ ├── class_mediation_with_twenty_properties.xml │ │ │ │ │ ├── class_property_persistence_five_properties.xml │ │ │ │ │ ├── class_property_persistence_four_properties.xml │ │ │ │ │ └── class_property_persistence_three_properties.xml │ │ │ │ ├── clone │ │ │ │ │ ├── cloneLogAndSendSequence.xml │ │ │ │ │ ├── cloneMediatorEmptyStackException.xml │ │ │ │ │ ├── clone_SOAP_Action.xml │ │ │ │ │ ├── clone_http.xml │ │ │ │ │ ├── clone_https.xml │ │ │ │ │ ├── clone_https_sequence.xml │ │ │ │ │ ├── clone_jms.xml │ │ │ │ │ ├── clone_named_endpoints.xml │ │ │ │ │ ├── clone_sequence.xml │ │ │ │ │ ├── clone_simple.xml │ │ │ │ │ ├── clone_unknown_endpoints.xml │ │ │ │ │ ├── clone_unmaching_aggregate.xml │ │ │ │ │ └── large_message.txt │ │ │ │ ├── db │ │ │ │ │ └── synapse_sample_364.xml │ │ │ │ ├── dblookup │ │ │ │ │ ├── sample_360.xml │ │ │ │ │ ├── sample_360_multiple_SQL_statements.xml │ │ │ │ │ ├── sample_360_multiple_results_test.xml │ │ │ │ │ ├── sample_360_stored_function_test.xml │ │ │ │ │ └── sample_360_stored_procedure.xml │ │ │ │ ├── dbreport │ │ │ │ │ ├── synapse_dbReport.xml │ │ │ │ │ ├── synapse_sample_361.xml │ │ │ │ │ ├── synapse_sample_364.xml │ │ │ │ │ └── synapse_use_transaction.xml │ │ │ │ ├── enrich │ │ │ │ │ ├── add_propert_as_child.xml │ │ │ │ │ ├── add_property_as_sibling.xml │ │ │ │ │ ├── add_sibling.xml │ │ │ │ │ ├── enrich_add_as_child.xml │ │ │ │ │ ├── enrich_add_sibling_in_out_msg.xml │ │ │ │ │ ├── enrich_byGetProperty.xml │ │ │ │ │ ├── enrich_by_enrich.xml │ │ │ │ │ ├── enrich_omText.xml │ │ │ │ │ ├── enrich_replace_body_by_specified_property.xml │ │ │ │ │ ├── enrich_replace_by_property.xml │ │ │ │ │ ├── registry_synapse.xml │ │ │ │ │ └── required │ │ │ │ │ │ └── registry_configs.xml │ │ │ │ ├── fast_xslt │ │ │ │ │ ├── calltemplate_integration_fastxslt_sample750_synapse.xml │ │ │ │ │ ├── fast_xslt_dynamic_key_synapse.xml │ │ │ │ │ └── synapse_fast_xslt_sample_8.xml │ │ │ │ ├── fault │ │ │ │ │ ├── soap11_fault_actor_synapse.xml │ │ │ │ │ ├── soap11_fault_code_Client_synapse.xml │ │ │ │ │ ├── soap11_fault_code_MustUnderstand_synapse.xml │ │ │ │ │ ├── soap11_fault_code_Server_synapse.xml │ │ │ │ │ ├── soap11_fault_code_VersionMismatch_synapse.xml │ │ │ │ │ ├── soap11_fault_detail_as_element_synapse.xml │ │ │ │ │ ├── soap11_fault_detail_synapse.xml │ │ │ │ │ ├── soap11_fault_full_synapse.xml │ │ │ │ │ ├── soap11_fault_out_sequence_synapse.xml │ │ │ │ │ ├── soap11_fault_response_validate_synapse.xml │ │ │ │ │ ├── soap11_fault_set_response_attribute_false_with_addressing_synapse.xml │ │ │ │ │ ├── soap11_fault_set_response_false_synapse.xml │ │ │ │ │ ├── soap11_fault_set_response_true_synapse.xml │ │ │ │ │ ├── soap11_fault_string_expression_synapse.xml │ │ │ │ │ ├── soap11_fault_string_value_synapse.xml │ │ │ │ │ ├── soap12_fault_actor_synapse.xml │ │ │ │ │ ├── soap12_fault_code_DataEncodingUnknown_synapse.xml │ │ │ │ │ ├── soap12_fault_code_MustUnderstand_synapse.xml │ │ │ │ │ ├── soap12_fault_code_Receiver_synapse.xml │ │ │ │ │ ├── soap12_fault_code_Sender_synapse.xml │ │ │ │ │ ├── soap12_fault_code_VersionMismatch_synapse.xml │ │ │ │ │ ├── soap12_fault_detail_as_element_synapse.xml │ │ │ │ │ ├── soap12_fault_detail_synapse.xml │ │ │ │ │ ├── soap12_fault_full_synapse.xml │ │ │ │ │ ├── soap12_fault_node_synapse.xml │ │ │ │ │ ├── soap12_fault_out_sequence_synapse.xml │ │ │ │ │ ├── soap12_fault_response_validate_synapse.xml │ │ │ │ │ ├── soap12_fault_set_response_attribute_false_with_addressing_synapse.xml │ │ │ │ │ ├── soap12_fault_set_response_false_synapse.xml │ │ │ │ │ ├── soap12_fault_set_response_true_synapse.xml │ │ │ │ │ ├── soap12_fault_string_expression_synapse.xml │ │ │ │ │ └── soap12_fault_string_value_synapse.xml │ │ │ │ ├── header │ │ │ │ │ ├── action_header_set_synapse.xml │ │ │ │ │ ├── action_remove_security_synapse.xml │ │ │ │ │ └── to_header_set_synapse.xml │ │ │ │ ├── iterate │ │ │ │ │ ├── ESBJAVA-2843-iterateIfPreservePayloadFalse.xml │ │ │ │ │ ├── IterateIDAggregateIDMismatch.xml │ │ │ │ │ ├── Iterate_anonymous_endpoints.xml │ │ │ │ │ ├── invalid_XPath.xml │ │ │ │ │ ├── invalid_name_space_attachpath.xml │ │ │ │ │ ├── invalid_namespace_iterateexpression.xml │ │ │ │ │ ├── invalid_soapaction.xml │ │ │ │ │ ├── invalid_soapaction_valid_payload.xml │ │ │ │ │ ├── invalid_target_address.xml │ │ │ │ │ ├── iterate.txt │ │ │ │ │ ├── iterate1.txt │ │ │ │ │ ├── iterateEndpoint.xml │ │ │ │ │ ├── iterateLogAndSendSequence.xml │ │ │ │ │ ├── iterateSequentialTrueProperty.xml │ │ │ │ │ ├── iterateSequentialTruePropertyWithOutProperty.xml │ │ │ │ │ ├── iterate_SOAP_Action.xml │ │ │ │ │ ├── iterate_configuration_endpoint.xml │ │ │ │ │ ├── iterate_continue_parent_false.xml │ │ │ │ │ ├── iterate_continue_parent_true.xml │ │ │ │ │ ├── iterate_different_ID.xml │ │ │ │ │ ├── iterate_govners_endpoint.xml │ │ │ │ │ ├── iterate_https_endpoint.xml │ │ │ │ │ ├── iterate_named_endpoints.xml │ │ │ │ │ ├── iterate_named_sequence.xml │ │ │ │ │ ├── iterate_sequential.xml │ │ │ │ │ ├── iterate_small.txt │ │ │ │ │ ├── iterate_target_configuration.xml │ │ │ │ │ ├── iterate_target_govenerce.xml │ │ │ │ │ ├── iterator_attach_path.xml │ │ │ │ │ ├── iterator_expressionLess.xml │ │ │ │ │ ├── null_namespace.xml │ │ │ │ │ ├── null_namespace_for_expression.xml │ │ │ │ │ ├── simple_iterator.xml │ │ │ │ │ └── valid_iterate_exp_mismatch_original_message.xml │ │ │ │ ├── payload │ │ │ │ │ └── factory │ │ │ │ │ │ ├── axis2 │ │ │ │ │ │ └── axis2.xml │ │ │ │ │ │ ├── expression_arg_payload_factory_synapse.xml │ │ │ │ │ │ ├── jsonFormat_JsonExpressiosns.xml │ │ │ │ │ │ ├── jsonFormat_JsonXmlExpressions_values.xml │ │ │ │ │ │ ├── jsonFormat_XmlExpressiosns.xml │ │ │ │ │ │ ├── no_arg_payload_factory_synapse.xml │ │ │ │ │ │ ├── om_arg_payload_factory_synapse.xml │ │ │ │ │ │ ├── payload-in.xml │ │ │ │ │ │ ├── payload_factory_dynamic_key.xml │ │ │ │ │ │ ├── special_chractors_at_payload_factory.xml │ │ │ │ │ │ ├── value_arg_payload_factory_synapse.xml │ │ │ │ │ │ ├── value_expression_arg_payload_factory_synapse.xml │ │ │ │ │ │ └── xmlFormat_JsonExpressiosns.xml │ │ │ │ ├── policy │ │ │ │ │ └── throttle_policy.xml │ │ │ │ ├── property │ │ │ │ │ ├── DISABLE_CHUNKING.xml │ │ │ │ │ ├── NO_ENTITY_BODY.xml │ │ │ │ │ ├── NO_KEEPALIVE.xml │ │ │ │ │ ├── POST_TO_URI.xml │ │ │ │ │ ├── PRESERVE_WS_ADDRESSING.xml │ │ │ │ │ ├── REST_URL_postfix.xml │ │ │ │ │ ├── TRANSPORT_HEADERS.xml │ │ │ │ │ ├── disableAddressingForOutMessages.xml │ │ │ │ │ ├── synapse_http_header_case_sensitivity.xml │ │ │ │ │ └── transport_scope_property.xml │ │ │ │ ├── rewrite │ │ │ │ │ ├── full_url_append_synapse.xml │ │ │ │ │ ├── full_url_prepend_synapse.xml │ │ │ │ │ ├── full_url_rewrite_synapse.xml │ │ │ │ │ ├── full_url_set_synapse.xml │ │ │ │ │ ├── full_url_set_when_no_url_synapse.xml │ │ │ │ │ ├── hostname_append_synapse.xml │ │ │ │ │ ├── hostname_prepend_synapse.xml │ │ │ │ │ ├── hostname_set_synapse.xml │ │ │ │ │ ├── path_append_synapse.xml │ │ │ │ │ ├── path_prepend_synapse.xml │ │ │ │ │ ├── path_set_synapse.xml │ │ │ │ │ ├── port_append_synapse.xml │ │ │ │ │ ├── port_prepend_synapse.xml │ │ │ │ │ ├── port_set_synapse.xml │ │ │ │ │ ├── protocol_append_synapse.xml │ │ │ │ │ ├── protocol_prepend_synapse.xml │ │ │ │ │ ├── protocol_rewrite_from_property_synapse.xml │ │ │ │ │ ├── protocol_rewrite_synapse.xml │ │ │ │ │ ├── protocol_set_synapse.xml │ │ │ │ │ ├── remove_rewrite_full_url_synapse.xml │ │ │ │ │ ├── remove_rewrite_host_synapse.xml │ │ │ │ │ ├── remove_rewrite_path_synapse.xml │ │ │ │ │ ├── remove_rewrite_port_synapse.xml │ │ │ │ │ ├── remove_rewrite_protocol_synapse.xml │ │ │ │ │ ├── synapse_sample451.xml │ │ │ │ │ ├── url_reWrite_by_context_synapse.xml │ │ │ │ │ ├── url_reWrite_by_host_synapse.xml │ │ │ │ │ ├── url_reWrite_by_port_expression_synapse.xml │ │ │ │ │ └── url_reWrite_by_port_synapse.xml │ │ │ │ ├── router │ │ │ │ │ ├── router_breakRouter_false_test.xml │ │ │ │ │ ├── router_continueAfter_false_test.xml │ │ │ │ │ ├── router_continueAfter_true_test.xml │ │ │ │ │ ├── router_endpoint.xml │ │ │ │ │ ├── router_endpoint_test.xml │ │ │ │ │ ├── router_expression_test.xml │ │ │ │ │ ├── router_https_endpoint.xml │ │ │ │ │ ├── router_multiple_routs_test.xml │ │ │ │ │ ├── router_sequence.xml │ │ │ │ │ └── router_sequence_test.xml │ │ │ │ ├── script │ │ │ │ │ ├── stockquoteTransform.js │ │ │ │ │ └── stockquoteTransform.rb │ │ │ │ ├── script_js │ │ │ │ │ ├── detailTransform.js │ │ │ │ │ ├── stockquoteTransform.js │ │ │ │ │ └── test54.js │ │ │ │ ├── send │ │ │ │ │ ├── endpoints │ │ │ │ │ │ └── registry_endpoint.xml │ │ │ │ │ ├── sequence │ │ │ │ │ │ ├── test_sequence_build_message_conf.xml │ │ │ │ │ │ ├── test_sequence_build_message_gov.xml │ │ │ │ │ │ └── test_sequence_build_message_local.xml │ │ │ │ │ ├── synapse_config.xml │ │ │ │ │ ├── synapse_default.xml │ │ │ │ │ ├── synapse_dynamic.xml │ │ │ │ │ ├── synapse_endpoint_registry.xml │ │ │ │ │ ├── synapse_gov.xml │ │ │ │ │ ├── synapse_local.xml │ │ │ │ │ └── synapse_uncaught_exception.xml │ │ │ │ ├── sequence │ │ │ │ │ ├── synapse_proxy.xml │ │ │ │ │ └── synapse_sequence_mediator.xml │ │ │ │ ├── spring │ │ │ │ │ ├── spring_mediation.xml │ │ │ │ │ ├── spring_mediation_different_bean_id.xml │ │ │ │ │ ├── spring_mediation_invalid_spring_bean.xml │ │ │ │ │ ├── spring_mediation_springBean_resource_not_exist.xml │ │ │ │ │ └── utils │ │ │ │ │ │ ├── different_bean_names.xml │ │ │ │ │ │ ├── invalid_spring_bean.xml │ │ │ │ │ │ ├── springbean.xml │ │ │ │ │ │ └── updating_spring.xml │ │ │ │ ├── switch_conf │ │ │ │ │ └── switch_mediator_subsequence_matching.xml │ │ │ │ ├── validate │ │ │ │ │ └── schema.xml │ │ │ │ ├── xquery │ │ │ │ │ ├── synapse101.xml │ │ │ │ │ ├── xquery_empty_soap_request.xml │ │ │ │ │ ├── xquery_replace_body_synapse101.xml │ │ │ │ │ ├── xquery_variable_type_boolean_synapse101.xml │ │ │ │ │ ├── xquery_variable_type_byte_synapse101.xml │ │ │ │ │ ├── xquery_variable_type_double_synapse101.xml │ │ │ │ │ ├── xquery_variable_type_float_synapse101.xml │ │ │ │ │ ├── xquery_variable_type_int_synapse101.xml │ │ │ │ │ ├── xquery_variable_type_integer_synapse101.xml │ │ │ │ │ ├── xquery_variable_type_long_synapse101.xml │ │ │ │ │ └── xquery_variable_type_string_synapse101.xml │ │ │ │ └── xslt │ │ │ │ │ ├── local_entry_refer_xslt_transformation_synapse.xml │ │ │ │ │ ├── transform.xslt │ │ │ │ │ ├── transform_back.xslt │ │ │ │ │ ├── xslt_dynamic_key_synapse.xml │ │ │ │ │ ├── xslt_from_config_registry_local_entry_synapse.xml │ │ │ │ │ ├── xslt_from_governance_registry_local_entry_synapse.xml │ │ │ │ │ ├── xslt_from_url_synapse.xml │ │ │ │ │ ├── xslt_in_file_system_local_entry_synapse.xml │ │ │ │ │ ├── xslt_in_line_local_entry_synapse.xml │ │ │ │ │ └── xslt_transformation_with_property_synapse.xml │ │ │ │ ├── messageProcessorConfig │ │ │ │ ├── CustomHeaderPreserved_MessageProcessorOutMessage.xml │ │ │ │ ├── MessageProcessorRetryUpon_500_ResponseWith_200And_202As_Non_retry_SC.xml │ │ │ │ └── Message_Processor_Persistence_After_Restart_Synapse.xml │ │ │ │ ├── mtom │ │ │ │ ├── asf-logo.gif │ │ │ │ └── content.xml │ │ │ │ ├── nhttp │ │ │ │ └── transport │ │ │ │ │ └── json │ │ │ │ │ └── deployment.toml │ │ │ │ ├── other │ │ │ │ └── index.html │ │ │ │ ├── passthru │ │ │ │ └── transport │ │ │ │ │ ├── ESBJAVA3770 │ │ │ │ │ ├── deployment.toml │ │ │ │ │ └── passthru-http.properties │ │ │ │ │ ├── ESBJAVA4883 │ │ │ │ │ └── synapse-handlers.xml │ │ │ │ │ ├── ESBJAVA4931 │ │ │ │ │ └── sample_proxy_3.wsdl │ │ │ │ │ ├── ESBJAVA4973 │ │ │ │ │ └── axis2.xml │ │ │ │ │ ├── forceMessageValidation │ │ │ │ │ ├── deployment.toml │ │ │ │ │ └── passthru-http.properties │ │ │ │ │ ├── httpaccesslogs │ │ │ │ │ ├── access-log.properties │ │ │ │ │ └── nhttp.properties │ │ │ │ │ ├── httpproxy │ │ │ │ │ ├── axis2.xml │ │ │ │ │ ├── httpCustomProxy.xml │ │ │ │ │ └── httpProxy.xml │ │ │ │ │ ├── preserveResponseHeaders │ │ │ │ │ └── passthru-http.properties │ │ │ │ │ └── preserveheaders │ │ │ │ │ └── passthru-http.properties │ │ │ │ ├── proxyconfig │ │ │ │ └── proxy │ │ │ │ │ ├── customProxy │ │ │ │ │ ├── WSDLEndpointErrorTestProxy.xml │ │ │ │ │ ├── insequence_existing_sequence.xml │ │ │ │ │ ├── insequence_from_registry.xml │ │ │ │ │ ├── insequence_inline_endpoint_from_registry.xml │ │ │ │ │ ├── insequence_inline_endpoint_inline.xml │ │ │ │ │ ├── insequence_none_endpoint_existing.xml │ │ │ │ │ ├── insequence_none_endpoint_from_registry.xml │ │ │ │ │ ├── insequence_none_endpoint_inline.xml │ │ │ │ │ ├── non_existing_proxy.xml │ │ │ │ │ ├── non_existing_proxy_route_to_main.xml │ │ │ │ │ ├── outsequence_faultsequence.xml │ │ │ │ │ └── simple_proxy.xml │ │ │ │ │ ├── enablelocaltransport │ │ │ │ │ └── axis2.xml │ │ │ │ │ ├── loggingProxy │ │ │ │ │ ├── pick_end_point_from_registry.xml │ │ │ │ │ ├── proxy_service_enabling_only_http.xml │ │ │ │ │ ├── proxy_service_enabling_only_https.xml │ │ │ │ │ ├── proxy_service_with_end_point_through_url.xml │ │ │ │ │ ├── request_log_level_full_response_log_level_full.xml │ │ │ │ │ ├── request_log_level_none_response_log_level_none.xml │ │ │ │ │ ├── request_log_level_simple_response_log_level_simple.xml │ │ │ │ │ ├── wsdl_options_pick_from_registry.xml │ │ │ │ │ ├── wsdl_options_specified_inline.xml │ │ │ │ │ └── wsdl_options_specified_source_url.xml │ │ │ │ │ ├── passThroughProxy │ │ │ │ │ ├── EditPassThroughProxy.xml │ │ │ │ │ ├── customServiceURI │ │ │ │ │ │ ├── axis2.xml │ │ │ │ │ │ └── custom_service_uri_enabling_only_https.xml │ │ │ │ │ ├── passThroughProxy.xml │ │ │ │ │ ├── pick_end_point_from_registry.xml │ │ │ │ │ ├── proxy_service_enabling_only_http.xml │ │ │ │ │ ├── proxy_service_enabling_only_https.xml │ │ │ │ │ ├── proxy_service_with_end_point_through_url.xml │ │ │ │ │ ├── wsdl_options_pick_from_registry.xml │ │ │ │ │ ├── wsdl_options_specified_inline.xml │ │ │ │ │ └── wsdl_options_specified_source_url.xml │ │ │ │ │ ├── protocolViolationProxy │ │ │ │ │ └── synapse.xml │ │ │ │ │ ├── proxyservice │ │ │ │ │ ├── http_to_https_proxy.xml │ │ │ │ │ ├── proxy_with_addressing.xml │ │ │ │ │ └── stock_quote_proxy.xml │ │ │ │ │ ├── proxywithpinnedserver │ │ │ │ │ └── TestProxy.xml │ │ │ │ │ ├── secureProxy │ │ │ │ │ ├── passthrough_proxy_engaging_security_with_secueBackEnd.xml │ │ │ │ │ ├── passthrough_proxy_with_secueBackEnd.xml │ │ │ │ │ ├── sample_0_with_wso2_registry.xml │ │ │ │ │ ├── secure_proxy_service_scenarios.xml │ │ │ │ │ ├── secured_proxy_secured_backend.xml │ │ │ │ │ ├── security_transformation_proxy_for_policy2_backEnd.xml │ │ │ │ │ ├── security_transformation_proxy_for_policy3_backend.xml │ │ │ │ │ ├── security_transformation_proxy_for_policy4_backend.xml │ │ │ │ │ ├── security_transformation_proxy_for_policy5_backend.xml │ │ │ │ │ ├── security_transformation_proxy_for_policy6_backend.xml │ │ │ │ │ ├── security_transformation_proxy_for_policy7_backend.xml │ │ │ │ │ ├── security_transformation_proxy_for_policy8_backend.xml │ │ │ │ │ ├── stock_quote_passthrough_proxy.xml │ │ │ │ │ ├── stock_quote_proxy.xml │ │ │ │ │ ├── stockquote_pass_through_proxy.xml │ │ │ │ │ └── stockquote_proxy_unsecured.xml │ │ │ │ │ ├── transformerProxy │ │ │ │ │ ├── invalid_xslt_test.xml │ │ │ │ │ ├── pick_end_point_from_registry.xml │ │ │ │ │ ├── proxy_service_enabling_only_http.xml │ │ │ │ │ ├── proxy_service_enabling_only_https.xml │ │ │ │ │ ├── proxy_service_with_end_point_through_url.xml │ │ │ │ │ ├── wsdl_options_pick_from_registry.xml │ │ │ │ │ ├── wsdl_options_specified_inline.xml │ │ │ │ │ └── wsdl_options_specified_source_url.xml │ │ │ │ │ ├── utils │ │ │ │ │ ├── fault_sequence.xml │ │ │ │ │ ├── invalid_transform.xslt │ │ │ │ │ ├── out_sequence.xml │ │ │ │ │ ├── proxy_sequence.xml │ │ │ │ │ ├── registry_endpoint.xml │ │ │ │ │ └── sample_proxy_1.wsdl │ │ │ │ │ └── wsdlBasedProxy │ │ │ │ │ ├── proxy_service_enabling_only_http.xml │ │ │ │ │ ├── proxy_service_enabling_only_https.xml │ │ │ │ │ ├── proxy_service_with_publish_same_service_contract.xml │ │ │ │ │ ├── wsdl_options_pick_from_registry.xml │ │ │ │ │ ├── wsdl_options_specified_inline.xml │ │ │ │ │ └── wsdl_options_specified_source_url.xml │ │ │ │ ├── registry │ │ │ │ ├── ftp.xml │ │ │ │ └── registry-template.xml │ │ │ │ ├── restapi │ │ │ │ └── apidefinition │ │ │ │ │ ├── carbon.xml │ │ │ │ │ └── swaggergeneration │ │ │ │ │ └── carbon.xml │ │ │ │ ├── scheduledTask │ │ │ │ ├── InjectToProxyTestConfig.xml │ │ │ │ └── InjectToSequenceTestConfig.xml │ │ │ │ ├── security │ │ │ │ └── ESBJAVA3899 │ │ │ │ │ └── server-policy.xml │ │ │ │ ├── securityPolicy │ │ │ │ └── sequence.xml │ │ │ │ ├── sequence │ │ │ │ └── esbjava4565 │ │ │ │ │ └── testSequence.xml │ │ │ │ ├── server │ │ │ │ ├── conf │ │ │ │ │ ├── axis2 │ │ │ │ │ │ └── axis2.xml │ │ │ │ │ ├── carbon.xml │ │ │ │ │ ├── deployment.toml │ │ │ │ │ └── synapse.properties │ │ │ │ ├── registry │ │ │ │ │ └── governance │ │ │ │ │ │ ├── datamapper │ │ │ │ │ │ ├── NestedElementConfig.dmc │ │ │ │ │ │ ├── NestedElementConfig_inputSchema.json │ │ │ │ │ │ ├── NestedElementConfig_outputSchema.json │ │ │ │ │ │ ├── dashSupport │ │ │ │ │ │ │ ├── DashSupportConfig.dmc │ │ │ │ │ │ │ ├── DashSupportConfig_inputSchema.json │ │ │ │ │ │ │ └── DashSupportConfig_outputSchema.json │ │ │ │ │ │ └── multiplePrefix │ │ │ │ │ │ │ ├── FoodMapping.dmc │ │ │ │ │ │ │ ├── FoodMapping_inputSchema.json │ │ │ │ │ │ │ ├── FoodMapping_outputSchema.json │ │ │ │ │ │ │ ├── simpleDataAPI_XMLtoXML2_withDash_regConf.dmc │ │ │ │ │ │ │ ├── simpleDataAPI_XMLtoXML2_withDash_regConf_inputSchema.json │ │ │ │ │ │ │ └── simpleDataAPI_XMLtoXML2_withDash_regConf_outputSchema.json │ │ │ │ │ │ └── services │ │ │ │ │ │ └── test │ │ │ │ │ │ └── ftp.xml │ │ │ │ └── repository │ │ │ │ │ └── deployment │ │ │ │ │ └── server │ │ │ │ │ ├── carbonapps │ │ │ │ │ ├── CustomSwaggerCompositeExporter_1.0.0.car │ │ │ │ │ ├── ESBCApp-3.2.2.car │ │ │ │ │ ├── StoreMediator_1.0.0.car │ │ │ │ │ ├── car-deployment-before-tranaport-start-test_1.0.0.car │ │ │ │ │ ├── car-deployment-test.car │ │ │ │ │ ├── esb-artifacts-car_1.0.0.car │ │ │ │ │ ├── inactive_proxy_1.0.0.car │ │ │ │ │ └── sample-passthrough-proxy-car_1.0.0.car │ │ │ │ │ └── synapse-configs │ │ │ │ │ └── default │ │ │ │ │ ├── api │ │ │ │ │ ├── APIM1838AddPerson.xml │ │ │ │ │ ├── APIM1838GetPerson.xml │ │ │ │ │ ├── AggregatorTestAPI.xml │ │ │ │ │ ├── CachingTest.xml │ │ │ │ │ ├── ClientApi.xml │ │ │ │ │ ├── ContentTypePreserveAPI.xml │ │ │ │ │ ├── CorrelateOnExpressionTestAPI1.xml │ │ │ │ │ ├── CorrelateOnExpressionTestAPI2.xml │ │ │ │ │ ├── CorrelateOnExpressionTestAPI3.xml │ │ │ │ │ ├── DropLargePayloadPreventESBOOM.xml │ │ │ │ │ ├── EI2084EnrichNamespaceAdditionTestCaseAPI.xml │ │ │ │ │ ├── ESBJAVA3340Server.xml │ │ │ │ │ ├── ESBJAVA3698StockQuoteAPI.xml │ │ │ │ │ ├── ESBJAVA4270StockQuoteAPI.xml │ │ │ │ │ ├── ESBJAVA4572TestAPI.xml │ │ │ │ │ ├── ESBJAVA4913testapi.xml │ │ │ │ │ ├── ESBJAVA5045convertMenuApi.xml │ │ │ │ │ ├── ForceMessageValidationTestAPI.xml │ │ │ │ │ ├── FormatterEscapePrimitiveSequenceAPI.xml │ │ │ │ │ ├── HTTPSC500ReturnAPI.xml │ │ │ │ │ ├── HttpTemplateTestAPI.xml │ │ │ │ │ ├── PreseveResponseHeaderAPI.xml │ │ │ │ │ ├── ServerApi_v1.xml │ │ │ │ │ ├── ServerApi_v2.xml │ │ │ │ │ ├── StockQuoteAPIESBJAVA4760.xml │ │ │ │ │ ├── WSAApi.xml │ │ │ │ │ ├── dashSupport.xml │ │ │ │ │ ├── deepCheckAPI.xml │ │ │ │ │ ├── faultSequenceExecutionOrderTestApi.xml │ │ │ │ │ ├── malformedJson.xml │ │ │ │ │ ├── methodNotAllowedAPI.xml │ │ │ │ │ ├── passParamsToEPTestApi.xml │ │ │ │ │ ├── sampleNestedElementAPI.xml │ │ │ │ │ ├── simpleDataAPI_XMLtoXML2_withDash.xml │ │ │ │ │ ├── swaggerGenerationTestApi.xml │ │ │ │ │ ├── testEnterAPI.xml │ │ │ │ │ ├── testJsonEmptyArrayApi.xml │ │ │ │ │ ├── testJsonEmptyArrayApimockservice.xml │ │ │ │ │ └── trailingSpaceAPI.xml │ │ │ │ │ ├── endpoints │ │ │ │ │ ├── EP.xml │ │ │ │ │ ├── ESBJAVA3336httpsEndpoint.xml │ │ │ │ │ ├── EchoEndpoint.xml │ │ │ │ │ ├── EndpointErrorTestErrorEndpoint.xml │ │ │ │ │ ├── LoadBalancingEndpoint.xml │ │ │ │ │ ├── StockQuoteEP.xml │ │ │ │ │ ├── StockQuoteServiceEp.xml │ │ │ │ │ ├── WireServerEp.xml │ │ │ │ │ ├── faultEP.xml │ │ │ │ │ ├── log-ep.xml │ │ │ │ │ └── mockEP.xml │ │ │ │ │ ├── local-entries │ │ │ │ │ └── UTResponseCode401UTauthFailureLE.xml │ │ │ │ │ ├── message-processors │ │ │ │ │ ├── Processor1.xml │ │ │ │ │ ├── ScheduledProcessor.xml │ │ │ │ │ ├── ScheduledProcessorWithoutInterval.xml │ │ │ │ │ ├── SimpleMsgProcessor.xml │ │ │ │ │ ├── fail-message-store-processor.xml │ │ │ │ │ └── original-message-store-processor.xml │ │ │ │ │ ├── message-stores │ │ │ │ │ ├── JMSMS.xml │ │ │ │ │ ├── MyStore.xml │ │ │ │ │ ├── MyStore2.xml │ │ │ │ │ ├── SimpleMsgStore.xml │ │ │ │ │ ├── fail-message-store.xml │ │ │ │ │ ├── original-message-store.xml │ │ │ │ │ └── testMessageStore.xml │ │ │ │ │ ├── proxy-services │ │ │ │ │ ├── Axis2RestServiceEncoded.xml │ │ │ │ │ ├── CachableDurationTestCaseProxy.xml │ │ │ │ │ ├── CloneMediatorEmptyStackProxy.xml │ │ │ │ │ ├── DuplicateSOAPActionHeader.xml │ │ │ │ │ ├── EI5523BackendProxy.xml │ │ │ │ │ ├── EI5523TestJsonStreamAfterAggregateMediatorProxy.xml │ │ │ │ │ ├── ESBJAVA3336httpsBackendProxyService.xml │ │ │ │ │ ├── ESBJAVA3676TestProxy.xml │ │ │ │ │ ├── ESBJAVA4394simpleStockPassthrough.xml │ │ │ │ │ ├── ESBJAVA4423HttpCustomProxyTest.xml │ │ │ │ │ ├── ESBJAVA4597TestProxy.xml │ │ │ │ │ ├── ESBJAVA4940SetEncodingFalse.xml │ │ │ │ │ ├── ESBJAVA4940SetEncodingTrue.xml │ │ │ │ │ ├── EchoFaultProxy.xml │ │ │ │ │ ├── EndpointErrorTestProxy.xml │ │ │ │ │ ├── HTTPRelativeLocationService0Proxy.xml │ │ │ │ │ ├── HTTPRelativeLocationServiceProxy.xml │ │ │ │ │ ├── HTTPSCProxy.xml │ │ │ │ │ ├── HttpAccessLogsTestProxy.xml │ │ │ │ │ ├── JMCalloutClientProxy.xml │ │ │ │ │ ├── JMSCalloutBEProxy.xml │ │ │ │ │ ├── JSONtoXMLProxy.xml │ │ │ │ │ ├── MI2479EnrichTargetTypeKeyWithoutActionProxy.xml │ │ │ │ │ ├── MSProxy.xml │ │ │ │ │ ├── MTOMChecker.xml │ │ │ │ │ ├── MessageProcessorWithoutIntervalParamTestProxy.xml │ │ │ │ │ ├── NoEntityBodyPropertyTestProxy.xml │ │ │ │ │ ├── NonRetrySCProxy.xml │ │ │ │ │ ├── OperationContextService.xml │ │ │ │ │ ├── PreserveContentTypeHeaderCharSetTestProxy.xml │ │ │ │ │ ├── PreserveContentTypeHeaderTest.xml │ │ │ │ │ ├── RespondProxy.xml │ │ │ │ │ ├── ScriptWithNullJsonValueTest.xml │ │ │ │ │ ├── SynapseHandlerTestProxy.xml │ │ │ │ │ ├── TestCalloutHTTP_SC.xml │ │ │ │ │ ├── TestCalloutSoapHeader.xml │ │ │ │ │ ├── UTResponseCode401UTauthFailureProxy.xml │ │ │ │ │ ├── WSAProxy.xml │ │ │ │ │ ├── fail-message-store-test-proxy.xml │ │ │ │ │ ├── jsonproducer.xml │ │ │ │ │ ├── loadbalanceproxy.xml │ │ │ │ │ ├── log-proxy.xml │ │ │ │ │ ├── replaceJSONPayload.xml │ │ │ │ │ ├── test-500-ep.xml │ │ │ │ │ └── testProxy.xml │ │ │ │ │ ├── sequences │ │ │ │ │ ├── APIFaultSequence_V1.xml │ │ │ │ │ ├── CachingTestPost.xml │ │ │ │ │ ├── EI1622_jms_transport_fault.xml │ │ │ │ │ ├── ESBJAVA4239FaultSeq.xml │ │ │ │ │ ├── ESBJAVA4565TestSequence.xml │ │ │ │ │ ├── ESBJAVA4597MyFaultSequency.xml │ │ │ │ │ ├── ESBJAVA4597ReceiveSeq.xml │ │ │ │ │ ├── EchoDataSplitSequence.xml │ │ │ │ │ ├── EchoSequenceOne.xml │ │ │ │ │ ├── EndpointErrorTestCloneSequence.xml │ │ │ │ │ ├── EndpointErrorTestErrorSequence.xml │ │ │ │ │ ├── EndpointErrorTestRightErrorSequence.xml │ │ │ │ │ ├── FaultSeq.xml │ │ │ │ │ ├── ReplySeq.xml │ │ │ │ │ ├── a.xml │ │ │ │ │ ├── aF.xml │ │ │ │ │ ├── b.xml │ │ │ │ │ ├── bF.xml │ │ │ │ │ ├── c.xml │ │ │ │ │ ├── cF.xml │ │ │ │ │ ├── d.xml │ │ │ │ │ ├── errorSequence.xml │ │ │ │ │ ├── fault.xml │ │ │ │ │ ├── main.xml │ │ │ │ │ ├── request.xml │ │ │ │ │ ├── sequenceOne.xml │ │ │ │ │ ├── sequenceTwo.xml │ │ │ │ │ ├── simpleStockPTFault.xml │ │ │ │ │ └── simpleStockPTFaultSeqOnError.xml │ │ │ │ │ └── templates │ │ │ │ │ └── HttpEPTemplate.xml │ │ │ │ ├── synapseconfig │ │ │ │ ├── CheckAggregateChildContentConfig │ │ │ │ │ └── synapse.xml │ │ │ │ ├── LargeAggregationWithoutTimeoutConfig │ │ │ │ │ └── synapse.xml │ │ │ │ ├── MaxOpenConnections │ │ │ │ │ ├── max_open_connections.xml │ │ │ │ │ ├── nhttp.properties │ │ │ │ │ ├── nhttp │ │ │ │ │ │ └── axis2.xml │ │ │ │ │ ├── passthru-http.properties │ │ │ │ │ └── ptt │ │ │ │ │ │ └── axis2.xml │ │ │ │ ├── addressEndpointConfig │ │ │ │ │ ├── addressEP_Test.xml │ │ │ │ │ └── synapse.xml │ │ │ │ ├── aggregateWithinTimoutConfig │ │ │ │ │ └── synapse.xml │ │ │ │ ├── aggregatedEnclosingElement │ │ │ │ │ └── synapse.xml │ │ │ │ ├── cacheMediator │ │ │ │ │ └── APIMANAGER1838RequestHashGenerator.xml │ │ │ │ ├── class_mediator │ │ │ │ │ └── synapse.xml │ │ │ │ ├── config06 │ │ │ │ │ └── synapse.xml │ │ │ │ ├── config1 │ │ │ │ │ ├── endpoints │ │ │ │ │ │ ├── Axis2EPR.xml │ │ │ │ │ │ ├── BCISEndpoint.xml │ │ │ │ │ │ ├── CreditEpr.xml │ │ │ │ │ │ ├── PersonInfoEpr.xml │ │ │ │ │ │ ├── RSMeansEndpoint.xml │ │ │ │ │ │ ├── RuleServiceEndpoint.xml │ │ │ │ │ │ ├── SimpleStockQuoteService.xml │ │ │ │ │ │ ├── club_profile_ds_endpoint.xml │ │ │ │ │ │ ├── club_profile_ds_lb_endpoint.xml │ │ │ │ │ │ ├── club_record_ds_endpoint.xml │ │ │ │ │ │ ├── club_record_ds_lb_endpoint.xml │ │ │ │ │ │ ├── ds_endpoint.xml │ │ │ │ │ │ ├── geo_endpoint.xml │ │ │ │ │ │ ├── gis_endpoint.xml │ │ │ │ │ │ ├── resut_display_ep.xml │ │ │ │ │ │ ├── samplefailoverendpoint.xml │ │ │ │ │ │ └── samplewsdlendpoint.xml │ │ │ │ │ ├── local-entries │ │ │ │ │ │ ├── ResutDisplayServiceTransform.xml │ │ │ │ │ │ ├── geo_transform.xml │ │ │ │ │ │ ├── resource_proxy_reply_transformation.xml │ │ │ │ │ │ ├── rule_service_transformation.xml │ │ │ │ │ │ ├── testBean.xml │ │ │ │ │ │ └── validate_schema.xml │ │ │ │ │ ├── message-processors │ │ │ │ │ │ └── MProc1.xml │ │ │ │ │ ├── message-store │ │ │ │ │ │ └── MStore1.xml │ │ │ │ │ ├── priority-executors │ │ │ │ │ │ └── samplePriority2.xml │ │ │ │ │ ├── proxy-services │ │ │ │ │ │ ├── DemoProxy.xml │ │ │ │ │ │ └── StockQuoteProxy.xml │ │ │ │ │ ├── registry.xml │ │ │ │ │ ├── sequences │ │ │ │ │ │ ├── fault.xml │ │ │ │ │ │ └── main.xml │ │ │ │ │ ├── synapse.xml │ │ │ │ │ └── tasks │ │ │ │ │ │ └── sampleTask.xml │ │ │ │ ├── config10 │ │ │ │ │ └── synapse.xml │ │ │ │ ├── config11 │ │ │ │ │ └── synapse.xml │ │ │ │ ├── config12 │ │ │ │ │ └── synapse.xml │ │ │ │ ├── config13 │ │ │ │ │ └── synapse.xml │ │ │ │ ├── config16 │ │ │ │ │ └── synapse.xml │ │ │ │ ├── config17 │ │ │ │ │ └── synapse.xml │ │ │ │ ├── config18 │ │ │ │ │ └── synapse.xml │ │ │ │ ├── config19 │ │ │ │ │ └── synapse.xml │ │ │ │ ├── config20 │ │ │ │ │ └── synapse.xml │ │ │ │ ├── config21 │ │ │ │ │ └── synapse.xml │ │ │ │ ├── config3 │ │ │ │ │ ├── proxy-services │ │ │ │ │ │ └── StockQuoteProxy.xml │ │ │ │ │ ├── registry.xml │ │ │ │ │ └── synapse.xml │ │ │ │ ├── config3471 │ │ │ │ │ └── synapse.xml │ │ │ │ ├── config4 │ │ │ │ │ └── proxy-services │ │ │ │ │ │ └── simplePassThoughProxy.xml │ │ │ │ ├── config46 │ │ │ │ │ └── synapse.xml │ │ │ │ ├── config5 │ │ │ │ │ └── proxy-services │ │ │ │ │ │ └── simplePassThoughWithWSDL.xml │ │ │ │ ├── config54 │ │ │ │ │ └── synapse.xml │ │ │ │ ├── config55 │ │ │ │ │ └── synapse.xml │ │ │ │ ├── config6 │ │ │ │ │ └── synapse.xml │ │ │ │ ├── config603 │ │ │ │ │ └── synapse.xml │ │ │ │ ├── config65 │ │ │ │ │ └── synapse.xml │ │ │ │ ├── config66 │ │ │ │ │ └── synapse.xml │ │ │ │ ├── config67 │ │ │ │ │ └── synapse.xml │ │ │ │ ├── config7 │ │ │ │ │ └── synapse.xml │ │ │ │ ├── config8 │ │ │ │ │ ├── classes │ │ │ │ │ │ └── synapse.properties │ │ │ │ │ └── synapse.xml │ │ │ │ ├── config9 │ │ │ │ │ └── synapse.xml │ │ │ │ ├── configFailOver │ │ │ │ │ └── ConfigFailOver.xml │ │ │ │ ├── configForInvaliedXquaryKey │ │ │ │ │ └── synapse.xml │ │ │ │ ├── config_multiple_rule │ │ │ │ │ └── synapse.xml │ │ │ │ ├── config_rule_s3 │ │ │ │ │ └── synapse.xml │ │ │ │ ├── config_single_rule │ │ │ │ │ └── synapse.xml │ │ │ │ ├── config_without_rule │ │ │ │ │ └── synapse.xml │ │ │ │ ├── core │ │ │ │ │ ├── synapse.xml │ │ │ │ │ ├── synapse_add_child_from_property.xml │ │ │ │ │ ├── synapse_add_sibling_from_property.xml │ │ │ │ │ ├── synapse_body_to_child_of_body.xml │ │ │ │ │ ├── synapse_body_to_sibling_of_body.xml │ │ │ │ │ ├── synapse_body_to_xpath_child.xml │ │ │ │ │ ├── synapse_body_to_xpath_sibling.xml │ │ │ │ │ ├── synapse_child_xpath.xml │ │ │ │ │ ├── synapse_envelope1.xml │ │ │ │ │ ├── synapse_replace_envelope_property.xml │ │ │ │ │ ├── synapse_replace_multiple_node.xml │ │ │ │ │ └── synapse_sourcexpath_targetxpath.xml │ │ │ │ ├── core_mediator │ │ │ │ │ ├── synapse.xml │ │ │ │ │ ├── synapseLoopbackMediatorConfig.xml │ │ │ │ │ └── synapseRepondMediatorConfig.xml │ │ │ │ ├── customSSLprofileWithsecurevault │ │ │ │ │ ├── axis2.xml │ │ │ │ │ ├── cipher-text.properties │ │ │ │ │ ├── cipher-tool.properties │ │ │ │ │ ├── password-tmp │ │ │ │ │ └── secret-conf.properties │ │ │ │ ├── default │ │ │ │ │ ├── api │ │ │ │ │ │ ├── StockQuoteAPI.xml │ │ │ │ │ │ └── StockQuoteAPI2.xml │ │ │ │ │ ├── endpoints │ │ │ │ │ │ └── addressEpTest.xml │ │ │ │ │ ├── local-entries │ │ │ │ │ │ └── local-entry-sequence-key.xml │ │ │ │ │ ├── proxy-services │ │ │ │ │ │ ├── SampleProxy.xml │ │ │ │ │ │ ├── StockQuoteProxy.xml │ │ │ │ │ │ └── addressEndPoint.xml │ │ │ │ │ ├── registry.xml │ │ │ │ │ ├── sequences │ │ │ │ │ │ ├── fault.xml │ │ │ │ │ │ └── main.xml │ │ │ │ │ ├── synapse.xml │ │ │ │ │ └── tasks │ │ │ │ │ │ └── SampleInjectToProxyTask.xml │ │ │ │ ├── defaultEndpointConfig │ │ │ │ │ ├── defaultEP_Test.xml │ │ │ │ │ └── synapse.xml │ │ │ │ ├── defaultconfig │ │ │ │ │ └── default-synapse.xml │ │ │ │ ├── enrich │ │ │ │ │ ├── ESBJAVA3676.xml │ │ │ │ │ ├── add_source_as_sibling_in_body.xml │ │ │ │ │ ├── replace_envelop.xml │ │ │ │ │ └── replace_part_of_msg_by_body.xml │ │ │ │ ├── enrich_mediator │ │ │ │ │ ├── add_child_using_xpath_synapse.xml │ │ │ │ │ ├── copy_xpathOf_single_node.xml │ │ │ │ │ ├── replaceBodyOfMessageSynapse.xml │ │ │ │ │ ├── replaceBodySynapse.xml │ │ │ │ │ ├── replace_body_using_source_type_body.xml │ │ │ │ │ └── synapse.xml │ │ │ │ ├── esbjava2283 │ │ │ │ │ └── synapse.xml │ │ │ │ ├── filters │ │ │ │ │ ├── conditional_router │ │ │ │ │ │ ├── dynamic_seq1.xml │ │ │ │ │ │ ├── synapse1.xml │ │ │ │ │ │ ├── synapse2.xml │ │ │ │ │ │ ├── synapse3.xml │ │ │ │ │ │ ├── synapse4.xml │ │ │ │ │ │ ├── synapse5.xml │ │ │ │ │ │ └── synapse6.xml │ │ │ │ │ ├── filter │ │ │ │ │ │ ├── synapse1.xml │ │ │ │ │ │ ├── synapse2.xml │ │ │ │ │ │ └── synapse3.xml │ │ │ │ │ ├── in │ │ │ │ │ │ └── synapse.xml │ │ │ │ │ ├── out │ │ │ │ │ │ ├── multiple_out_mediators_config.xml │ │ │ │ │ │ └── out_without_children.xml │ │ │ │ │ ├── switchMediator │ │ │ │ │ │ ├── ESBJAVA_1857_switch_case_synapse.xml │ │ │ │ │ │ ├── Invalid_xpath.xml │ │ │ │ │ │ ├── SOAP11_SOAP12_XPath.xml │ │ │ │ │ │ ├── SOAP11_SOAP12_XPath_nagative_case.xml │ │ │ │ │ │ ├── basic_and_without_default_case_synapse.xml │ │ │ │ │ │ ├── further_processing_of_switch_after_match.xml │ │ │ │ │ │ ├── invalid_prefix.xml │ │ │ │ │ │ ├── onerror_sequence_within_switch_config.xml │ │ │ │ │ │ ├── switch_inside_switch_config.xml │ │ │ │ │ │ └── switching_based_on_address_synapse.xml │ │ │ │ │ └── validate │ │ │ │ │ │ ├── schema1.xml │ │ │ │ │ │ ├── schema1a.xml │ │ │ │ │ │ ├── synapse1.xml │ │ │ │ │ │ └── validate_synapse.xml │ │ │ │ ├── groovy │ │ │ │ │ ├── axis2.xml │ │ │ │ │ ├── synapse_with_groovy.xml │ │ │ │ │ └── synapse_without_groovy.xml │ │ │ │ ├── healthcarescenario │ │ │ │ │ ├── GeoService.wsdl │ │ │ │ │ ├── HCCService.wsdl │ │ │ │ │ ├── HCFacilityLocatorService.wsdl │ │ │ │ │ ├── HCInformationService.wsdl │ │ │ │ │ └── synapse.xml │ │ │ │ ├── highTimeoutValueConfig │ │ │ │ │ └── synapse.xml │ │ │ │ ├── http_transport │ │ │ │ │ ├── set_host_http_header.xml │ │ │ │ │ └── set_host_http_header_with_port.xml │ │ │ │ ├── log_mediator │ │ │ │ │ └── synapse.xml │ │ │ │ ├── messageStore │ │ │ │ │ ├── ESBJAVA-2907StoreOmElementsAsProperties.xml │ │ │ │ │ ├── axis2.xml │ │ │ │ │ ├── sample_700.xml │ │ │ │ │ ├── scriptMediator │ │ │ │ │ │ └── axis2.xml │ │ │ │ │ ├── special_character.xml │ │ │ │ │ └── test.xml │ │ │ │ ├── messagewithoutcontent │ │ │ │ │ ├── request.xml │ │ │ │ │ ├── synapse.xml │ │ │ │ │ └── xmlrequest.xml │ │ │ │ ├── nhttp_transport │ │ │ │ │ ├── content_type_charset_synapse.xml │ │ │ │ │ ├── nhttp.properties │ │ │ │ │ └── nhttp_test_synapse.xml │ │ │ │ ├── nonBlockingHTTP │ │ │ │ │ ├── axis2.xml │ │ │ │ │ └── local_jms_proxy_synapse.xml │ │ │ │ ├── onCompleteSequenceConfig │ │ │ │ │ ├── sequences │ │ │ │ │ │ └── dynamic_seq1.xml │ │ │ │ │ └── synapse.xml │ │ │ │ ├── onCompleteSequenceFromGreg │ │ │ │ │ ├── sequences │ │ │ │ │ │ └── dynamic_seq1.xml │ │ │ │ │ └── synapse.xml │ │ │ │ ├── patchAutomation │ │ │ │ │ ├── failover_endpoint_for_single_leaf_endpoint_synapse.xml │ │ │ │ │ ├── https_request_via_http_proxy_synapse.xml │ │ │ │ │ ├── non_ascii_value_properties_synapse_.xml │ │ │ │ │ └── url_encoded_form_post_proxy.xml │ │ │ │ ├── patch_automation │ │ │ │ │ ├── CARBON11016_synapse.xml │ │ │ │ │ ├── CloneArtifactTestCase.xml │ │ │ │ │ ├── failover_endpoint_for_single_leaf_endpoint_synapse.xml │ │ │ │ │ └── load_balance_failover_synapse.xml │ │ │ │ ├── payloadmediatype │ │ │ │ │ ├── JSONPayloadXMLSpecialCharEscapeTest.xml │ │ │ │ │ ├── media_type_xml_json_default.xml │ │ │ │ │ ├── no_arguments.xml │ │ │ │ │ ├── value_argument.xml │ │ │ │ │ └── valueandexpression_arguments.xml │ │ │ │ ├── processor │ │ │ │ │ └── forwarding │ │ │ │ │ │ ├── InMemoryStoreSynapse1.xml │ │ │ │ │ │ ├── Retry_On_SOAPFault_In_Out.xml │ │ │ │ │ │ └── Retry_On_SOAPFault_true_In_Out.xml │ │ │ │ ├── propertyMediatorConfig │ │ │ │ │ └── synapse.xml │ │ │ │ ├── propertyWithinIterateConfig │ │ │ │ │ └── synapse.xml │ │ │ │ ├── proxyadmin │ │ │ │ │ └── testconfig.xml │ │ │ │ ├── registry │ │ │ │ │ └── caching │ │ │ │ │ │ ├── registry.xml │ │ │ │ │ │ ├── registry_original.xml │ │ │ │ │ │ └── sample.txt │ │ │ │ ├── rest │ │ │ │ │ ├── axis2-service-synapse.xml │ │ │ │ │ ├── complex_params_api.xml │ │ │ │ │ ├── customer-service-proxy.xml │ │ │ │ │ ├── rest-client-and-rest-service.xml │ │ │ │ │ ├── rest-service-proxy.xml │ │ │ │ │ ├── student-service-synapse.xml │ │ │ │ │ ├── synapse.xml │ │ │ │ │ └── uri-template-synapse.xml │ │ │ │ ├── script_mediator │ │ │ │ │ ├── groovy_script_with_setPayloadJson.xml │ │ │ │ │ ├── groovy_script_with_the_mediator.xml │ │ │ │ │ ├── jsfromEntry_config.xml │ │ │ │ │ ├── retrieve_script_from_gov_reg_mediation.xml │ │ │ │ │ ├── synapse.xml │ │ │ │ │ ├── synapse3.xml │ │ │ │ │ └── synapse_generate_fault.xml │ │ │ │ ├── sendMediatorConfig │ │ │ │ │ ├── synapse.xml │ │ │ │ │ ├── test_sequences_config │ │ │ │ │ │ └── receivingSequence_Conf.xml │ │ │ │ │ ├── test_sequences_gov │ │ │ │ │ │ └── receivingSequence_Gov.xml │ │ │ │ │ └── test_sequences_local │ │ │ │ │ │ └── receivingSequence_Local.xml │ │ │ │ ├── send_mediator │ │ │ │ │ ├── endpoints │ │ │ │ │ │ └── registry_endpoint.xml │ │ │ │ │ └── synapse_config.xml │ │ │ │ ├── servletTransport │ │ │ │ │ ├── axis2.xml │ │ │ │ │ ├── pox_servlet_transport_axis2.xml │ │ │ │ │ └── soap_2_pox.xml │ │ │ │ ├── smooks │ │ │ │ │ ├── axis2.xml │ │ │ │ │ ├── large_csv_smooks_test.xml │ │ │ │ │ ├── person.csv │ │ │ │ │ ├── smooks_config.xml │ │ │ │ │ └── smooks_synapse.xml │ │ │ │ ├── throttle │ │ │ │ │ ├── ConcurrencyAndRequestBasedThrottlingConcurrency.xml │ │ │ │ │ ├── ConcurrencyAndRequestBasedThrottlingRequest.xml │ │ │ │ │ ├── MaximumConcurrentAccess.xml │ │ │ │ │ ├── concurrencyTest.xml │ │ │ │ │ ├── concurrencyTestMaxConcurrentAccessOne.xml │ │ │ │ │ ├── concurrentAccessLargeRequestCountSmallTest.xml │ │ │ │ │ ├── invalidThrottlingPolicyTest.xml │ │ │ │ │ └── specifyThrottlingPolicyAsARegistryKey.xml │ │ │ │ ├── validatemediator │ │ │ │ │ ├── dynamickey.xml │ │ │ │ │ ├── invalid_dynamic_key.xml │ │ │ │ │ ├── staticKey.xml │ │ │ │ │ ├── validate_secure_false.xml │ │ │ │ │ ├── validate_secure_true.xml │ │ │ │ │ ├── validate_with_invalid_Xpath.xml │ │ │ │ │ ├── validate_with_proxy.xml │ │ │ │ │ └── validate_with_resources.xml │ │ │ │ ├── validatemediator2 │ │ │ │ │ └── synapse.xml │ │ │ │ ├── vfsTransport │ │ │ │ │ ├── 3_files │ │ │ │ │ │ ├── Polling_Test-2.txt │ │ │ │ │ │ ├── Polling_Test-3.txt │ │ │ │ │ │ └── Polling_Test.txt │ │ │ │ │ ├── ESBJAVA4770 │ │ │ │ │ │ ├── axis2.xml │ │ │ │ │ │ └── deployment.toml │ │ │ │ │ ├── edi.txt │ │ │ │ │ ├── fail.xml │ │ │ │ │ ├── in │ │ │ │ │ │ ├── Polling_Test-10.txt │ │ │ │ │ │ ├── Polling_Test-100.txt │ │ │ │ │ │ ├── Polling_Test-11.txt │ │ │ │ │ │ ├── Polling_Test-12.txt │ │ │ │ │ │ ├── Polling_Test-13.txt │ │ │ │ │ │ ├── Polling_Test-14.txt │ │ │ │ │ │ ├── Polling_Test-15.txt │ │ │ │ │ │ ├── Polling_Test-16.txt │ │ │ │ │ │ ├── Polling_Test-17.txt │ │ │ │ │ │ ├── Polling_Test-18.txt │ │ │ │ │ │ ├── Polling_Test-19.txt │ │ │ │ │ │ ├── Polling_Test-2.txt │ │ │ │ │ │ ├── Polling_Test-20.txt │ │ │ │ │ │ ├── Polling_Test-21.txt │ │ │ │ │ │ ├── Polling_Test-22.txt │ │ │ │ │ │ ├── Polling_Test-23.txt │ │ │ │ │ │ ├── Polling_Test-24.txt │ │ │ │ │ │ ├── Polling_Test-25.txt │ │ │ │ │ │ ├── Polling_Test-26.txt │ │ │ │ │ │ ├── Polling_Test-27.txt │ │ │ │ │ │ ├── Polling_Test-28.txt │ │ │ │ │ │ ├── Polling_Test-29.txt │ │ │ │ │ │ ├── Polling_Test-3.txt │ │ │ │ │ │ ├── Polling_Test-30.txt │ │ │ │ │ │ ├── Polling_Test-31.txt │ │ │ │ │ │ ├── Polling_Test-32.txt │ │ │ │ │ │ ├── Polling_Test-33.txt │ │ │ │ │ │ ├── Polling_Test-34.txt │ │ │ │ │ │ ├── Polling_Test-35.txt │ │ │ │ │ │ ├── Polling_Test-36.txt │ │ │ │ │ │ ├── Polling_Test-37.txt │ │ │ │ │ │ ├── Polling_Test-38.txt │ │ │ │ │ │ ├── Polling_Test-39.txt │ │ │ │ │ │ ├── Polling_Test-4.txt │ │ │ │ │ │ ├── Polling_Test-40.txt │ │ │ │ │ │ ├── Polling_Test-41.txt │ │ │ │ │ │ ├── Polling_Test-42.txt │ │ │ │ │ │ ├── Polling_Test-43.txt │ │ │ │ │ │ ├── Polling_Test-44.txt │ │ │ │ │ │ ├── Polling_Test-45.txt │ │ │ │ │ │ ├── Polling_Test-46.txt │ │ │ │ │ │ ├── Polling_Test-47.txt │ │ │ │ │ │ ├── Polling_Test-48.txt │ │ │ │ │ │ ├── Polling_Test-49.txt │ │ │ │ │ │ ├── Polling_Test-5.txt │ │ │ │ │ │ ├── Polling_Test-50.txt │ │ │ │ │ │ ├── Polling_Test-51.txt │ │ │ │ │ │ ├── Polling_Test-52.txt │ │ │ │ │ │ ├── Polling_Test-53.txt │ │ │ │ │ │ ├── Polling_Test-54.txt │ │ │ │ │ │ ├── Polling_Test-55.txt │ │ │ │ │ │ ├── Polling_Test-56.txt │ │ │ │ │ │ ├── Polling_Test-57.txt │ │ │ │ │ │ ├── Polling_Test-58.txt │ │ │ │ │ │ ├── Polling_Test-59.txt │ │ │ │ │ │ ├── Polling_Test-6.txt │ │ │ │ │ │ ├── Polling_Test-60.txt │ │ │ │ │ │ ├── Polling_Test-61.txt │ │ │ │ │ │ ├── Polling_Test-62.txt │ │ │ │ │ │ ├── Polling_Test-63.txt │ │ │ │ │ │ ├── Polling_Test-64.txt │ │ │ │ │ │ ├── Polling_Test-65.txt │ │ │ │ │ │ ├── Polling_Test-66.txt │ │ │ │ │ │ ├── Polling_Test-67.txt │ │ │ │ │ │ ├── Polling_Test-68.txt │ │ │ │ │ │ ├── Polling_Test-69.txt │ │ │ │ │ │ ├── Polling_Test-7.txt │ │ │ │ │ │ ├── Polling_Test-70.txt │ │ │ │ │ │ ├── Polling_Test-71.txt │ │ │ │ │ │ ├── Polling_Test-72.txt │ │ │ │ │ │ ├── Polling_Test-73.txt │ │ │ │ │ │ ├── Polling_Test-74.txt │ │ │ │ │ │ ├── Polling_Test-75.txt │ │ │ │ │ │ ├── Polling_Test-76.txt │ │ │ │ │ │ ├── Polling_Test-77.txt │ │ │ │ │ │ ├── Polling_Test-78.txt │ │ │ │ │ │ ├── Polling_Test-79.txt │ │ │ │ │ │ ├── Polling_Test-8.txt │ │ │ │ │ │ ├── Polling_Test-80.txt │ │ │ │ │ │ ├── Polling_Test-81.txt │ │ │ │ │ │ ├── Polling_Test-82.txt │ │ │ │ │ │ ├── Polling_Test-83.txt │ │ │ │ │ │ ├── Polling_Test-84.txt │ │ │ │ │ │ ├── Polling_Test-85.txt │ │ │ │ │ │ ├── Polling_Test-86.txt │ │ │ │ │ │ ├── Polling_Test-87.txt │ │ │ │ │ │ ├── Polling_Test-88.txt │ │ │ │ │ │ ├── Polling_Test-89.txt │ │ │ │ │ │ ├── Polling_Test-9.txt │ │ │ │ │ │ ├── Polling_Test-90.txt │ │ │ │ │ │ ├── Polling_Test-91.txt │ │ │ │ │ │ ├── Polling_Test-92.txt │ │ │ │ │ │ ├── Polling_Test-93.txt │ │ │ │ │ │ ├── Polling_Test-94.txt │ │ │ │ │ │ ├── Polling_Test-95.txt │ │ │ │ │ │ ├── Polling_Test-96.txt │ │ │ │ │ │ ├── Polling_Test-97.txt │ │ │ │ │ │ ├── Polling_Test-98.txt │ │ │ │ │ │ ├── Polling_Test-99.txt │ │ │ │ │ │ └── Polling_Test.txt │ │ │ │ │ ├── in_server_restart │ │ │ │ │ │ ├── Polling_Test-10.txt │ │ │ │ │ │ ├── Polling_Test-100.txt │ │ │ │ │ │ ├── Polling_Test-101.txt │ │ │ │ │ │ ├── Polling_Test-102.txt │ │ │ │ │ │ ├── Polling_Test-103.txt │ │ │ │ │ │ ├── Polling_Test-104.txt │ │ │ │ │ │ ├── Polling_Test-105.txt │ │ │ │ │ │ ├── Polling_Test-106.txt │ │ │ │ │ │ ├── Polling_Test-107.txt │ │ │ │ │ │ ├── Polling_Test-108.txt │ │ │ │ │ │ ├── Polling_Test-109.txt │ │ │ │ │ │ ├── Polling_Test-11.txt │ │ │ │ │ │ ├── Polling_Test-110.txt │ │ │ │ │ │ ├── Polling_Test-111.txt │ │ │ │ │ │ ├── Polling_Test-112.txt │ │ │ │ │ │ ├── Polling_Test-113.txt │ │ │ │ │ │ ├── Polling_Test-114.txt │ │ │ │ │ │ ├── Polling_Test-115.txt │ │ │ │ │ │ ├── Polling_Test-116.txt │ │ │ │ │ │ ├── Polling_Test-117.txt │ │ │ │ │ │ ├── Polling_Test-118.txt │ │ │ │ │ │ ├── Polling_Test-119.txt │ │ │ │ │ │ ├── Polling_Test-12.txt │ │ │ │ │ │ ├── Polling_Test-120.txt │ │ │ │ │ │ ├── Polling_Test-121.txt │ │ │ │ │ │ ├── Polling_Test-122.txt │ │ │ │ │ │ ├── Polling_Test-123.txt │ │ │ │ │ │ ├── Polling_Test-124.txt │ │ │ │ │ │ ├── Polling_Test-125.txt │ │ │ │ │ │ ├── Polling_Test-126.txt │ │ │ │ │ │ ├── Polling_Test-127.txt │ │ │ │ │ │ ├── Polling_Test-128.txt │ │ │ │ │ │ ├── Polling_Test-129.txt │ │ │ │ │ │ ├── Polling_Test-13.txt │ │ │ │ │ │ ├── Polling_Test-130.txt │ │ │ │ │ │ ├── Polling_Test-131.txt │ │ │ │ │ │ ├── Polling_Test-132.txt │ │ │ │ │ │ ├── Polling_Test-133.txt │ │ │ │ │ │ ├── Polling_Test-134.txt │ │ │ │ │ │ ├── Polling_Test-135.txt │ │ │ │ │ │ ├── Polling_Test-136.txt │ │ │ │ │ │ ├── Polling_Test-137.txt │ │ │ │ │ │ ├── Polling_Test-138.txt │ │ │ │ │ │ ├── Polling_Test-139.txt │ │ │ │ │ │ ├── Polling_Test-14.txt │ │ │ │ │ │ ├── Polling_Test-140.txt │ │ │ │ │ │ ├── Polling_Test-141.txt │ │ │ │ │ │ ├── Polling_Test-142.txt │ │ │ │ │ │ ├── Polling_Test-143.txt │ │ │ │ │ │ ├── Polling_Test-144.txt │ │ │ │ │ │ ├── Polling_Test-145.txt │ │ │ │ │ │ ├── Polling_Test-146.txt │ │ │ │ │ │ ├── Polling_Test-147.txt │ │ │ │ │ │ ├── Polling_Test-148.txt │ │ │ │ │ │ ├── Polling_Test-149.txt │ │ │ │ │ │ ├── Polling_Test-15.txt │ │ │ │ │ │ ├── Polling_Test-150.txt │ │ │ │ │ │ ├── Polling_Test-151.txt │ │ │ │ │ │ ├── Polling_Test-152.txt │ │ │ │ │ │ ├── Polling_Test-153.txt │ │ │ │ │ │ ├── Polling_Test-154.txt │ │ │ │ │ │ ├── Polling_Test-155.txt │ │ │ │ │ │ ├── Polling_Test-156.txt │ │ │ │ │ │ ├── Polling_Test-157.txt │ │ │ │ │ │ ├── Polling_Test-158.txt │ │ │ │ │ │ ├── Polling_Test-159.txt │ │ │ │ │ │ ├── Polling_Test-16.txt │ │ │ │ │ │ ├── Polling_Test-160.txt │ │ │ │ │ │ ├── Polling_Test-161.txt │ │ │ │ │ │ ├── Polling_Test-162.txt │ │ │ │ │ │ ├── Polling_Test-163.txt │ │ │ │ │ │ ├── Polling_Test-164.txt │ │ │ │ │ │ ├── Polling_Test-165.txt │ │ │ │ │ │ ├── Polling_Test-166.txt │ │ │ │ │ │ ├── Polling_Test-167.txt │ │ │ │ │ │ ├── Polling_Test-168.txt │ │ │ │ │ │ ├── Polling_Test-169.txt │ │ │ │ │ │ ├── Polling_Test-17.txt │ │ │ │ │ │ ├── Polling_Test-170.txt │ │ │ │ │ │ ├── Polling_Test-171.txt │ │ │ │ │ │ ├── Polling_Test-172.txt │ │ │ │ │ │ ├── Polling_Test-173.txt │ │ │ │ │ │ ├── Polling_Test-174.txt │ │ │ │ │ │ ├── Polling_Test-175.txt │ │ │ │ │ │ ├── Polling_Test-176.txt │ │ │ │ │ │ ├── Polling_Test-177.txt │ │ │ │ │ │ ├── Polling_Test-178.txt │ │ │ │ │ │ ├── Polling_Test-179.txt │ │ │ │ │ │ ├── Polling_Test-18.txt │ │ │ │ │ │ ├── Polling_Test-180.txt │ │ │ │ │ │ ├── Polling_Test-181.txt │ │ │ │ │ │ ├── Polling_Test-182.txt │ │ │ │ │ │ ├── Polling_Test-183.txt │ │ │ │ │ │ ├── Polling_Test-184.txt │ │ │ │ │ │ ├── Polling_Test-185.txt │ │ │ │ │ │ ├── Polling_Test-186.txt │ │ │ │ │ │ ├── Polling_Test-187.txt │ │ │ │ │ │ ├── Polling_Test-188.txt │ │ │ │ │ │ ├── Polling_Test-189.txt │ │ │ │ │ │ ├── Polling_Test-19.txt │ │ │ │ │ │ ├── Polling_Test-190.txt │ │ │ │ │ │ ├── Polling_Test-191.txt │ │ │ │ │ │ ├── Polling_Test-192.txt │ │ │ │ │ │ ├── Polling_Test-193.txt │ │ │ │ │ │ ├── Polling_Test-194.txt │ │ │ │ │ │ ├── Polling_Test-195.txt │ │ │ │ │ │ ├── Polling_Test-196.txt │ │ │ │ │ │ ├── Polling_Test-197.txt │ │ │ │ │ │ ├── Polling_Test-198.txt │ │ │ │ │ │ ├── Polling_Test-199.txt │ │ │ │ │ │ ├── Polling_Test-2.txt │ │ │ │ │ │ ├── Polling_Test-20.txt │ │ │ │ │ │ ├── Polling_Test-200.txt │ │ │ │ │ │ ├── Polling_Test-201.txt │ │ │ │ │ │ ├── Polling_Test-202.txt │ │ │ │ │ │ ├── Polling_Test-203.txt │ │ │ │ │ │ ├── Polling_Test-204.txt │ │ │ │ │ │ ├── Polling_Test-205.txt │ │ │ │ │ │ ├── Polling_Test-206.txt │ │ │ │ │ │ ├── Polling_Test-207.txt │ │ │ │ │ │ ├── Polling_Test-208.txt │ │ │ │ │ │ ├── Polling_Test-209.txt │ │ │ │ │ │ ├── Polling_Test-21.txt │ │ │ │ │ │ ├── Polling_Test-210.txt │ │ │ │ │ │ ├── Polling_Test-211.txt │ │ │ │ │ │ ├── Polling_Test-212.txt │ │ │ │ │ │ ├── Polling_Test-213.txt │ │ │ │ │ │ ├── Polling_Test-214.txt │ │ │ │ │ │ ├── Polling_Test-215.txt │ │ │ │ │ │ ├── Polling_Test-216.txt │ │ │ │ │ │ ├── Polling_Test-217.txt │ │ │ │ │ │ ├── Polling_Test-218.txt │ │ │ │ │ │ ├── Polling_Test-219.txt │ │ │ │ │ │ ├── Polling_Test-22.txt │ │ │ │ │ │ ├── Polling_Test-220.txt │ │ │ │ │ │ ├── Polling_Test-221.txt │ │ │ │ │ │ ├── Polling_Test-222.txt │ │ │ │ │ │ ├── Polling_Test-223.txt │ │ │ │ │ │ ├── Polling_Test-224.txt │ │ │ │ │ │ ├── Polling_Test-225.txt │ │ │ │ │ │ ├── Polling_Test-226.txt │ │ │ │ │ │ ├── Polling_Test-227.txt │ │ │ │ │ │ ├── Polling_Test-228.txt │ │ │ │ │ │ ├── Polling_Test-229.txt │ │ │ │ │ │ ├── Polling_Test-23.txt │ │ │ │ │ │ ├── Polling_Test-230.txt │ │ │ │ │ │ ├── Polling_Test-231.txt │ │ │ │ │ │ ├── Polling_Test-232.txt │ │ │ │ │ │ ├── Polling_Test-233.txt │ │ │ │ │ │ ├── Polling_Test-234.txt │ │ │ │ │ │ ├── Polling_Test-235.txt │ │ │ │ │ │ ├── Polling_Test-236.txt │ │ │ │ │ │ ├── Polling_Test-237.txt │ │ │ │ │ │ ├── Polling_Test-238.txt │ │ │ │ │ │ ├── Polling_Test-239.txt │ │ │ │ │ │ ├── Polling_Test-24.txt │ │ │ │ │ │ ├── Polling_Test-240.txt │ │ │ │ │ │ ├── Polling_Test-241.txt │ │ │ │ │ │ ├── Polling_Test-242.txt │ │ │ │ │ │ ├── Polling_Test-243.txt │ │ │ │ │ │ ├── Polling_Test-244.txt │ │ │ │ │ │ ├── Polling_Test-245.txt │ │ │ │ │ │ ├── Polling_Test-246.txt │ │ │ │ │ │ ├── Polling_Test-247.txt │ │ │ │ │ │ ├── Polling_Test-248.txt │ │ │ │ │ │ ├── Polling_Test-249.txt │ │ │ │ │ │ ├── Polling_Test-25.txt │ │ │ │ │ │ ├── Polling_Test-250.txt │ │ │ │ │ │ ├── Polling_Test-251.txt │ │ │ │ │ │ ├── Polling_Test-252.txt │ │ │ │ │ │ ├── Polling_Test-253.txt │ │ │ │ │ │ ├── Polling_Test-254.txt │ │ │ │ │ │ ├── Polling_Test-255.txt │ │ │ │ │ │ ├── Polling_Test-256.txt │ │ │ │ │ │ ├── Polling_Test-257.txt │ │ │ │ │ │ ├── Polling_Test-258.txt │ │ │ │ │ │ ├── Polling_Test-259.txt │ │ │ │ │ │ ├── Polling_Test-26.txt │ │ │ │ │ │ ├── Polling_Test-260.txt │ │ │ │ │ │ ├── Polling_Test-261.txt │ │ │ │ │ │ ├── Polling_Test-262.txt │ │ │ │ │ │ ├── Polling_Test-263.txt │ │ │ │ │ │ ├── Polling_Test-264.txt │ │ │ │ │ │ ├── Polling_Test-265.txt │ │ │ │ │ │ ├── Polling_Test-266.txt │ │ │ │ │ │ ├── Polling_Test-267.txt │ │ │ │ │ │ ├── Polling_Test-268.txt │ │ │ │ │ │ ├── Polling_Test-269.txt │ │ │ │ │ │ ├── Polling_Test-27.txt │ │ │ │ │ │ ├── Polling_Test-270.txt │ │ │ │ │ │ ├── Polling_Test-271.txt │ │ │ │ │ │ ├── Polling_Test-272.txt │ │ │ │ │ │ ├── Polling_Test-273.txt │ │ │ │ │ │ ├── Polling_Test-274.txt │ │ │ │ │ │ ├── Polling_Test-275.txt │ │ │ │ │ │ ├── Polling_Test-276.txt │ │ │ │ │ │ ├── Polling_Test-277.txt │ │ │ │ │ │ ├── Polling_Test-278.txt │ │ │ │ │ │ ├── Polling_Test-279.txt │ │ │ │ │ │ ├── Polling_Test-28.txt │ │ │ │ │ │ ├── Polling_Test-280.txt │ │ │ │ │ │ ├── Polling_Test-281.txt │ │ │ │ │ │ ├── Polling_Test-282.txt │ │ │ │ │ │ ├── Polling_Test-283.txt │ │ │ │ │ │ ├── Polling_Test-284.txt │ │ │ │ │ │ ├── Polling_Test-285.txt │ │ │ │ │ │ ├── Polling_Test-286.txt │ │ │ │ │ │ ├── Polling_Test-287.txt │ │ │ │ │ │ ├── Polling_Test-288.txt │ │ │ │ │ │ ├── Polling_Test-289.txt │ │ │ │ │ │ ├── Polling_Test-29.txt │ │ │ │ │ │ ├── Polling_Test-290.txt │ │ │ │ │ │ ├── Polling_Test-291.txt │ │ │ │ │ │ ├── Polling_Test-292.txt │ │ │ │ │ │ ├── Polling_Test-293.txt │ │ │ │ │ │ ├── Polling_Test-294.txt │ │ │ │ │ │ ├── Polling_Test-295.txt │ │ │ │ │ │ ├── Polling_Test-296.txt │ │ │ │ │ │ ├── Polling_Test-297.txt │ │ │ │ │ │ ├── Polling_Test-298.txt │ │ │ │ │ │ ├── Polling_Test-299.txt │ │ │ │ │ │ ├── Polling_Test-3.txt │ │ │ │ │ │ ├── Polling_Test-30.txt │ │ │ │ │ │ ├── Polling_Test-300.txt │ │ │ │ │ │ ├── Polling_Test-301.txt │ │ │ │ │ │ ├── Polling_Test-302.txt │ │ │ │ │ │ ├── Polling_Test-303.txt │ │ │ │ │ │ ├── Polling_Test-304.txt │ │ │ │ │ │ ├── Polling_Test-305.txt │ │ │ │ │ │ ├── Polling_Test-306.txt │ │ │ │ │ │ ├── Polling_Test-307.txt │ │ │ │ │ │ ├── Polling_Test-308.txt │ │ │ │ │ │ ├── Polling_Test-309.txt │ │ │ │ │ │ ├── Polling_Test-31.txt │ │ │ │ │ │ ├── Polling_Test-310.txt │ │ │ │ │ │ ├── Polling_Test-311.txt │ │ │ │ │ │ ├── Polling_Test-312.txt │ │ │ │ │ │ ├── Polling_Test-313.txt │ │ │ │ │ │ ├── Polling_Test-314.txt │ │ │ │ │ │ ├── Polling_Test-315.txt │ │ │ │ │ │ ├── Polling_Test-316.txt │ │ │ │ │ │ ├── Polling_Test-317.txt │ │ │ │ │ │ ├── Polling_Test-318.txt │ │ │ │ │ │ ├── Polling_Test-319.txt │ │ │ │ │ │ ├── Polling_Test-32.txt │ │ │ │ │ │ ├── Polling_Test-320.txt │ │ │ │ │ │ ├── Polling_Test-321.txt │ │ │ │ │ │ ├── Polling_Test-322.txt │ │ │ │ │ │ ├── Polling_Test-323.txt │ │ │ │ │ │ ├── Polling_Test-324.txt │ │ │ │ │ │ ├── Polling_Test-325.txt │ │ │ │ │ │ ├── Polling_Test-326.txt │ │ │ │ │ │ ├── Polling_Test-327.txt │ │ │ │ │ │ ├── Polling_Test-328.txt │ │ │ │ │ │ ├── Polling_Test-329.txt │ │ │ │ │ │ ├── Polling_Test-33.txt │ │ │ │ │ │ ├── Polling_Test-330.txt │ │ │ │ │ │ ├── Polling_Test-331.txt │ │ │ │ │ │ ├── Polling_Test-332.txt │ │ │ │ │ │ ├── Polling_Test-333.txt │ │ │ │ │ │ ├── Polling_Test-334.txt │ │ │ │ │ │ ├── Polling_Test-335.txt │ │ │ │ │ │ ├── Polling_Test-336.txt │ │ │ │ │ │ ├── Polling_Test-337.txt │ │ │ │ │ │ ├── Polling_Test-338.txt │ │ │ │ │ │ ├── Polling_Test-339.txt │ │ │ │ │ │ ├── Polling_Test-34.txt │ │ │ │ │ │ ├── Polling_Test-340.txt │ │ │ │ │ │ ├── Polling_Test-341.txt │ │ │ │ │ │ ├── Polling_Test-342.txt │ │ │ │ │ │ ├── Polling_Test-343.txt │ │ │ │ │ │ ├── Polling_Test-344.txt │ │ │ │ │ │ ├── Polling_Test-345.txt │ │ │ │ │ │ ├── Polling_Test-346.txt │ │ │ │ │ │ ├── Polling_Test-347.txt │ │ │ │ │ │ ├── Polling_Test-348.txt │ │ │ │ │ │ ├── Polling_Test-349.txt │ │ │ │ │ │ ├── Polling_Test-35.txt │ │ │ │ │ │ ├── Polling_Test-350.txt │ │ │ │ │ │ ├── Polling_Test-351.txt │ │ │ │ │ │ ├── Polling_Test-352.txt │ │ │ │ │ │ ├── Polling_Test-353.txt │ │ │ │ │ │ ├── Polling_Test-354.txt │ │ │ │ │ │ ├── Polling_Test-355.txt │ │ │ │ │ │ ├── Polling_Test-356.txt │ │ │ │ │ │ ├── Polling_Test-357.txt │ │ │ │ │ │ ├── Polling_Test-358.txt │ │ │ │ │ │ ├── Polling_Test-359.txt │ │ │ │ │ │ ├── Polling_Test-36.txt │ │ │ │ │ │ ├── Polling_Test-360.txt │ │ │ │ │ │ ├── Polling_Test-361.txt │ │ │ │ │ │ ├── Polling_Test-362.txt │ │ │ │ │ │ ├── Polling_Test-363.txt │ │ │ │ │ │ ├── Polling_Test-364.txt │ │ │ │ │ │ ├── Polling_Test-365.txt │ │ │ │ │ │ ├── Polling_Test-366.txt │ │ │ │ │ │ ├── Polling_Test-367.txt │ │ │ │ │ │ ├── Polling_Test-368.txt │ │ │ │ │ │ ├── Polling_Test-369.txt │ │ │ │ │ │ ├── Polling_Test-37.txt │ │ │ │ │ │ ├── Polling_Test-370.txt │ │ │ │ │ │ ├── Polling_Test-371.txt │ │ │ │ │ │ ├── Polling_Test-372.txt │ │ │ │ │ │ ├── Polling_Test-373.txt │ │ │ │ │ │ ├── Polling_Test-374.txt │ │ │ │ │ │ ├── Polling_Test-375.txt │ │ │ │ │ │ ├── Polling_Test-376.txt │ │ │ │ │ │ ├── Polling_Test-377.txt │ │ │ │ │ │ ├── Polling_Test-378.txt │ │ │ │ │ │ ├── Polling_Test-379.txt │ │ │ │ │ │ ├── Polling_Test-38.txt │ │ │ │ │ │ ├── Polling_Test-380.txt │ │ │ │ │ │ ├── Polling_Test-381.txt │ │ │ │ │ │ ├── Polling_Test-382.txt │ │ │ │ │ │ ├── Polling_Test-383.txt │ │ │ │ │ │ ├── Polling_Test-384.txt │ │ │ │ │ │ ├── Polling_Test-385.txt │ │ │ │ │ │ ├── Polling_Test-386.txt │ │ │ │ │ │ ├── Polling_Test-387.txt │ │ │ │ │ │ ├── Polling_Test-388.txt │ │ │ │ │ │ ├── Polling_Test-389.txt │ │ │ │ │ │ ├── Polling_Test-39.txt │ │ │ │ │ │ ├── Polling_Test-390.txt │ │ │ │ │ │ ├── Polling_Test-391.txt │ │ │ │ │ │ ├── Polling_Test-392.txt │ │ │ │ │ │ ├── Polling_Test-393.txt │ │ │ │ │ │ ├── Polling_Test-394.txt │ │ │ │ │ │ ├── Polling_Test-395.txt │ │ │ │ │ │ ├── Polling_Test-396.txt │ │ │ │ │ │ ├── Polling_Test-397.txt │ │ │ │ │ │ ├── Polling_Test-398.txt │ │ │ │ │ │ ├── Polling_Test-399.txt │ │ │ │ │ │ ├── Polling_Test-4.txt │ │ │ │ │ │ ├── Polling_Test-40.txt │ │ │ │ │ │ ├── Polling_Test-400.txt │ │ │ │ │ │ ├── Polling_Test-401.txt │ │ │ │ │ │ ├── Polling_Test-402.txt │ │ │ │ │ │ ├── Polling_Test-403.txt │ │ │ │ │ │ ├── Polling_Test-404.txt │ │ │ │ │ │ ├── Polling_Test-405.txt │ │ │ │ │ │ ├── Polling_Test-406.txt │ │ │ │ │ │ ├── Polling_Test-407.txt │ │ │ │ │ │ ├── Polling_Test-408.txt │ │ │ │ │ │ ├── Polling_Test-409.txt │ │ │ │ │ │ ├── Polling_Test-41.txt │ │ │ │ │ │ ├── Polling_Test-410.txt │ │ │ │ │ │ ├── Polling_Test-411.txt │ │ │ │ │ │ ├── Polling_Test-412.txt │ │ │ │ │ │ ├── Polling_Test-413.txt │ │ │ │ │ │ ├── Polling_Test-414.txt │ │ │ │ │ │ ├── Polling_Test-415.txt │ │ │ │ │ │ ├── Polling_Test-416.txt │ │ │ │ │ │ ├── Polling_Test-417.txt │ │ │ │ │ │ ├── Polling_Test-418.txt │ │ │ │ │ │ ├── Polling_Test-419.txt │ │ │ │ │ │ ├── Polling_Test-42.txt │ │ │ │ │ │ ├── Polling_Test-420.txt │ │ │ │ │ │ ├── Polling_Test-421.txt │ │ │ │ │ │ ├── Polling_Test-422.txt │ │ │ │ │ │ ├── Polling_Test-423.txt │ │ │ │ │ │ ├── Polling_Test-424.txt │ │ │ │ │ │ ├── Polling_Test-425.txt │ │ │ │ │ │ ├── Polling_Test-426.txt │ │ │ │ │ │ ├── Polling_Test-427.txt │ │ │ │ │ │ ├── Polling_Test-428.txt │ │ │ │ │ │ ├── Polling_Test-429.txt │ │ │ │ │ │ ├── Polling_Test-43.txt │ │ │ │ │ │ ├── Polling_Test-430.txt │ │ │ │ │ │ ├── Polling_Test-431.txt │ │ │ │ │ │ ├── Polling_Test-432.txt │ │ │ │ │ │ ├── Polling_Test-433.txt │ │ │ │ │ │ ├── Polling_Test-434.txt │ │ │ │ │ │ ├── Polling_Test-435.txt │ │ │ │ │ │ ├── Polling_Test-436.txt │ │ │ │ │ │ ├── Polling_Test-437.txt │ │ │ │ │ │ ├── Polling_Test-438.txt │ │ │ │ │ │ ├── Polling_Test-439.txt │ │ │ │ │ │ ├── Polling_Test-44.txt │ │ │ │ │ │ ├── Polling_Test-440.txt │ │ │ │ │ │ ├── Polling_Test-441.txt │ │ │ │ │ │ ├── Polling_Test-442.txt │ │ │ │ │ │ ├── Polling_Test-443.txt │ │ │ │ │ │ ├── Polling_Test-444.txt │ │ │ │ │ │ ├── Polling_Test-445.txt │ │ │ │ │ │ ├── Polling_Test-446.txt │ │ │ │ │ │ ├── Polling_Test-447.txt │ │ │ │ │ │ ├── Polling_Test-448.txt │ │ │ │ │ │ ├── Polling_Test-449.txt │ │ │ │ │ │ ├── Polling_Test-45.txt │ │ │ │ │ │ ├── Polling_Test-450.txt │ │ │ │ │ │ ├── Polling_Test-451.txt │ │ │ │ │ │ ├── Polling_Test-452.txt │ │ │ │ │ │ ├── Polling_Test-453.txt │ │ │ │ │ │ ├── Polling_Test-454.txt │ │ │ │ │ │ ├── Polling_Test-455.txt │ │ │ │ │ │ ├── Polling_Test-456.txt │ │ │ │ │ │ ├── Polling_Test-457.txt │ │ │ │ │ │ ├── Polling_Test-458.txt │ │ │ │ │ │ ├── Polling_Test-459.txt │ │ │ │ │ │ ├── Polling_Test-46.txt │ │ │ │ │ │ ├── Polling_Test-460.txt │ │ │ │ │ │ ├── Polling_Test-461.txt │ │ │ │ │ │ ├── Polling_Test-462.txt │ │ │ │ │ │ ├── Polling_Test-463.txt │ │ │ │ │ │ ├── Polling_Test-464.txt │ │ │ │ │ │ ├── Polling_Test-465.txt │ │ │ │ │ │ ├── Polling_Test-466.txt │ │ │ │ │ │ ├── Polling_Test-467.txt │ │ │ │ │ │ ├── Polling_Test-468.txt │ │ │ │ │ │ ├── Polling_Test-469.txt │ │ │ │ │ │ ├── Polling_Test-47.txt │ │ │ │ │ │ ├── Polling_Test-470.txt │ │ │ │ │ │ ├── Polling_Test-471.txt │ │ │ │ │ │ ├── Polling_Test-472.txt │ │ │ │ │ │ ├── Polling_Test-473.txt │ │ │ │ │ │ ├── Polling_Test-474.txt │ │ │ │ │ │ ├── Polling_Test-475.txt │ │ │ │ │ │ ├── Polling_Test-476.txt │ │ │ │ │ │ ├── Polling_Test-477.txt │ │ │ │ │ │ ├── Polling_Test-478.txt │ │ │ │ │ │ ├── Polling_Test-479.txt │ │ │ │ │ │ ├── Polling_Test-48.txt │ │ │ │ │ │ ├── Polling_Test-480.txt │ │ │ │ │ │ ├── Polling_Test-481.txt │ │ │ │ │ │ ├── Polling_Test-482.txt │ │ │ │ │ │ ├── Polling_Test-483.txt │ │ │ │ │ │ ├── Polling_Test-484.txt │ │ │ │ │ │ ├── Polling_Test-485.txt │ │ │ │ │ │ ├── Polling_Test-486.txt │ │ │ │ │ │ ├── Polling_Test-487.txt │ │ │ │ │ │ ├── Polling_Test-488.txt │ │ │ │ │ │ ├── Polling_Test-489.txt │ │ │ │ │ │ ├── Polling_Test-49.txt │ │ │ │ │ │ ├── Polling_Test-490.txt │ │ │ │ │ │ ├── Polling_Test-491.txt │ │ │ │ │ │ ├── Polling_Test-492.txt │ │ │ │ │ │ ├── Polling_Test-493.txt │ │ │ │ │ │ ├── Polling_Test-494.txt │ │ │ │ │ │ ├── Polling_Test-495.txt │ │ │ │ │ │ ├── Polling_Test-496.txt │ │ │ │ │ │ ├── Polling_Test-497.txt │ │ │ │ │ │ ├── Polling_Test-498.txt │ │ │ │ │ │ ├── Polling_Test-499.txt │ │ │ │ │ │ ├── Polling_Test-5.txt │ │ │ │ │ │ ├── Polling_Test-50.txt │ │ │ │ │ │ ├── Polling_Test-500.txt │ │ │ │ │ │ ├── Polling_Test-51.txt │ │ │ │ │ │ ├── Polling_Test-52.txt │ │ │ │ │ │ ├── Polling_Test-53.txt │ │ │ │ │ │ ├── Polling_Test-54.txt │ │ │ │ │ │ ├── Polling_Test-55.txt │ │ │ │ │ │ ├── Polling_Test-56.txt │ │ │ │ │ │ ├── Polling_Test-57.txt │ │ │ │ │ │ ├── Polling_Test-58.txt │ │ │ │ │ │ ├── Polling_Test-59.txt │ │ │ │ │ │ ├── Polling_Test-6.txt │ │ │ │ │ │ ├── Polling_Test-60.txt │ │ │ │ │ │ ├── Polling_Test-61.txt │ │ │ │ │ │ ├── Polling_Test-62.txt │ │ │ │ │ │ ├── Polling_Test-63.txt │ │ │ │ │ │ ├── Polling_Test-64.txt │ │ │ │ │ │ ├── Polling_Test-65.txt │ │ │ │ │ │ ├── Polling_Test-66.txt │ │ │ │ │ │ ├── Polling_Test-67.txt │ │ │ │ │ │ ├── Polling_Test-68.txt │ │ │ │ │ │ ├── Polling_Test-69.txt │ │ │ │ │ │ ├── Polling_Test-7.txt │ │ │ │ │ │ ├── Polling_Test-70.txt │ │ │ │ │ │ ├── Polling_Test-71.txt │ │ │ │ │ │ ├── Polling_Test-72.txt │ │ │ │ │ │ ├── Polling_Test-73.txt │ │ │ │ │ │ ├── Polling_Test-74.txt │ │ │ │ │ │ ├── Polling_Test-75.txt │ │ │ │ │ │ ├── Polling_Test-76.txt │ │ │ │ │ │ ├── Polling_Test-77.txt │ │ │ │ │ │ ├── Polling_Test-78.txt │ │ │ │ │ │ ├── Polling_Test-79.txt │ │ │ │ │ │ ├── Polling_Test-8.txt │ │ │ │ │ │ ├── Polling_Test-80.txt │ │ │ │ │ │ ├── Polling_Test-81.txt │ │ │ │ │ │ ├── Polling_Test-82.txt │ │ │ │ │ │ ├── Polling_Test-83.txt │ │ │ │ │ │ ├── Polling_Test-84.txt │ │ │ │ │ │ ├── Polling_Test-85.txt │ │ │ │ │ │ ├── Polling_Test-86.txt │ │ │ │ │ │ ├── Polling_Test-87.txt │ │ │ │ │ │ ├── Polling_Test-88.txt │ │ │ │ │ │ ├── Polling_Test-89.txt │ │ │ │ │ │ ├── Polling_Test-9.txt │ │ │ │ │ │ ├── Polling_Test-90.txt │ │ │ │ │ │ ├── Polling_Test-91.txt │ │ │ │ │ │ ├── Polling_Test-92.txt │ │ │ │ │ │ ├── Polling_Test-93.txt │ │ │ │ │ │ ├── Polling_Test-94.txt │ │ │ │ │ │ ├── Polling_Test-95.txt │ │ │ │ │ │ ├── Polling_Test-96.txt │ │ │ │ │ │ ├── Polling_Test-97.txt │ │ │ │ │ │ ├── Polling_Test-98.txt │ │ │ │ │ │ ├── Polling_Test-99.txt │ │ │ │ │ │ └── Polling_Test.txt │ │ │ │ │ ├── jcifs-1.3.17.jar │ │ │ │ │ ├── out │ │ │ │ │ │ └── test.txt │ │ │ │ │ ├── smooks-config.xml │ │ │ │ │ ├── synapse_config_658.xml │ │ │ │ │ ├── synapse_sample_658_input.xml │ │ │ │ │ ├── test.txt │ │ │ │ │ ├── test.xml │ │ │ │ │ ├── vfs_test_smook_config_at_registry.xml │ │ │ │ │ ├── vfs_test_synapse.xml │ │ │ │ │ └── vfs_xml_to_xml.xml │ │ │ │ └── wsdlEndpointConfig │ │ │ │ │ ├── synapse.xml │ │ │ │ │ └── wsdlEP_Test.xml │ │ │ │ ├── tcp │ │ │ │ └── transport │ │ │ │ │ ├── axis2.xml │ │ │ │ │ ├── client_axis2.xml │ │ │ │ │ └── tcpProxy.xml │ │ │ │ └── template │ │ │ │ └── httpEpTemplateTest.xml │ │ │ ├── automation.xml │ │ │ ├── automationXMLSchema.xsd │ │ │ ├── bin │ │ │ └── integrator.sh │ │ │ ├── client │ │ │ └── modules │ │ │ │ ├── addressing-1.6.1-wso2v63.mar │ │ │ │ ├── addressing-1.6.1-wso2v72.mar │ │ │ │ ├── addressing-1.6.1-wso2v76.mar │ │ │ │ ├── addressing-1.6.1-wso2v80.mar │ │ │ │ ├── rampart-1.6.1-wso2v39.mar │ │ │ │ ├── rampart-1.7.0-wso2v1.mar │ │ │ │ └── utsecurity-4.1.0-SNAPSHOT.mar │ │ │ ├── log4j.properties │ │ │ ├── security │ │ │ └── policies │ │ │ │ ├── custom │ │ │ │ ├── scenario1-policy.xml │ │ │ │ ├── scenario10-policy.xml │ │ │ │ ├── scenario11-policy.xml │ │ │ │ ├── scenario12-policy.xml │ │ │ │ ├── scenario13-policy.xml │ │ │ │ ├── scenario14-policy.xml │ │ │ │ ├── scenario15-policy.xml │ │ │ │ ├── scenario16-policy.xml │ │ │ │ ├── scenario17-policy.xml │ │ │ │ ├── scenario2-policy.xml │ │ │ │ ├── scenario3-policy.xml │ │ │ │ ├── scenario4-policy.xml │ │ │ │ ├── scenario5-policy.xml │ │ │ │ ├── scenario6-policy.xml │ │ │ │ ├── scenario7-policy.xml │ │ │ │ ├── scenario8-policy.xml │ │ │ │ └── scenario9-policy.xml │ │ │ │ ├── scenario-config.xml │ │ │ │ ├── scenario1-policy.xml │ │ │ │ ├── scenario10-policy.xml │ │ │ │ ├── scenario11-policy.xml │ │ │ │ ├── scenario12-policy.xml │ │ │ │ ├── scenario13-policy.xml │ │ │ │ ├── scenario14-policy.xml │ │ │ │ ├── scenario15-policy.xml │ │ │ │ ├── scenario16-policy.xml │ │ │ │ ├── scenario17-policy.xml │ │ │ │ ├── scenario2-policy.xml │ │ │ │ ├── scenario27-policy.xml │ │ │ │ ├── scenario3-policy.xml │ │ │ │ ├── scenario4-policy.xml │ │ │ │ ├── scenario5-policy.xml │ │ │ │ ├── scenario6-policy.xml │ │ │ │ ├── scenario7-policy.xml │ │ │ │ ├── scenario8-policy.xml │ │ │ │ └── scenario9-policy.xml │ │ │ ├── sftp │ │ │ ├── getQuote.xml │ │ │ ├── id_rsa │ │ │ └── id_rsa.pub │ │ │ ├── testng.xml │ │ │ └── tomcat │ │ │ └── catalina-server.xml │ ├── tests-patches │ │ ├── .gitignore │ │ ├── pom.xml │ │ └── src │ │ │ └── test │ │ │ ├── java │ │ │ └── org │ │ │ │ └── wso2 │ │ │ │ └── carbon │ │ │ │ └── esb │ │ │ │ ├── api │ │ │ │ ├── apidefinition │ │ │ │ │ ├── CustomSwaggerWithSpecialCharactersTestCase.java │ │ │ │ │ ├── ESBJAVA4907SwaggerGenerationTestCase.java │ │ │ │ │ └── ESBJAVA4936SwaggerGenerationJsonYamlTestCase.java │ │ │ │ └── test │ │ │ │ │ ├── ESBJAVA3751UriTemplateReservedCharacterEncodingTest.java │ │ │ │ │ ├── ESBJAVA4176MethodNotAllowedTest.java │ │ │ │ │ └── LargeJSONPayloadTest.java │ │ │ │ ├── car │ │ │ │ └── deployment │ │ │ │ │ └── test │ │ │ │ │ ├── CARBON16113DeployArtifactsBeforeTransportStarsTestCase.java │ │ │ │ │ ├── ESBJAVA3546CAppProxyOnLoadTestCase.java │ │ │ │ │ ├── ESBJAVA3611EndpointTestCase.java │ │ │ │ │ ├── ESBJAVA4116CAppArtifactDeploymentFailureDueToNameTestCase.java │ │ │ │ │ └── FaultyCAppSwaggerRemovalTestCase.java │ │ │ │ ├── clustering │ │ │ │ └── InboundEPWithNonWorkerManager.java │ │ │ │ ├── datamapper │ │ │ │ ├── ESBJAVA5021MultiplePrefixesAndDashSupport.java │ │ │ │ ├── ESBJAVA5045XsiNilElementSupport.java │ │ │ │ ├── ESBJAVA5200DashSupportForMappingDataTestCase.java │ │ │ │ ├── NestedElementsWithSameNameTest.java │ │ │ │ └── common │ │ │ │ │ └── DataMapperIntegrationTest.java │ │ │ │ ├── endpoint │ │ │ │ └── test │ │ │ │ │ ├── ESBJAVA3340QueryParamHttpEndpointTestCase.java │ │ │ │ │ ├── ESBJAVA4231EmptyPayloadInFailoverLoadBalanceEndpoint.java │ │ │ │ │ ├── EndpointErrorTest.java │ │ │ │ │ └── FaultSequenceExecutionOrderTestCase.java │ │ │ │ ├── getprocessor │ │ │ │ └── test │ │ │ │ │ └── FaviconTest.java │ │ │ │ ├── header │ │ │ │ └── preserve │ │ │ │ │ └── ESBJAVA4631PreserveContentTypeHeaderTestCase.java │ │ │ │ ├── healthcheck │ │ │ │ └── HealthCheckTestCase.java │ │ │ │ ├── jms │ │ │ │ └── transport │ │ │ │ │ └── test │ │ │ │ │ ├── EI1622JMSInboundMessagePollingConsumerTest.java │ │ │ │ │ ├── ESBJAVA3282CalloutJMSHeadersTestCase.java │ │ │ │ │ ├── ESBJAVA3656MSMPTestCase.java │ │ │ │ │ ├── ESBJAVA3714JMXPauseJMSListener.java │ │ │ │ │ ├── ESBJAVA4692_MP_FaultSequence_HttpsEndpoint_TestCase.java │ │ │ │ │ ├── JMXClient.java │ │ │ │ │ └── MSMPJsonRetryTestCase.java │ │ │ │ ├── json │ │ │ │ ├── CARBON14965TenantJsonFormatter.java │ │ │ │ ├── EI2757MalformedJSONPayloadFaultyTestCase.java │ │ │ │ ├── EI4638JsontoXMLwithAttributePairsTestCase.java │ │ │ │ ├── ESBJAVA4270TestCase.java │ │ │ │ ├── ESBJAVA4781EscapeAutoPrimitiveTestCase.java │ │ │ │ ├── ESBJAVA_3698_MessageBuildingWithDifferentPayloadAndContentTypeTestCase.java │ │ │ │ ├── ESBJAVA_4572TestCase.java │ │ │ │ ├── HttpRelativeLocationHeaderTestCase.java │ │ │ │ ├── JSONObjectNameWithSpecialCharacterTestCase.java │ │ │ │ ├── JsonPathTestCase.java │ │ │ │ ├── ReplaceJSONPayloadTestcase.java │ │ │ │ └── TestJSONtoXMLwithUnicodeCharacters.java │ │ │ │ ├── mediators │ │ │ │ ├── aggregate │ │ │ │ │ ├── EI5523TestJsonStreamAfterAggregateMediator.java │ │ │ │ │ └── ESBJAVA5103CorrelateOnExpressionTestCase.java │ │ │ │ ├── cache │ │ │ │ │ ├── APIMANAGER1838RequestHashGeneratorTestCase.java │ │ │ │ │ ├── DistributedCachingHeaderSerializationTestcase.java │ │ │ │ │ └── ESBJAVA4318Testcase.java │ │ │ │ ├── callout │ │ │ │ │ ├── CARBON15119DuplicateSOAPActionHeader.java │ │ │ │ │ ├── ESBJAVA_4118_SOAPHeaderHandlingTest.java │ │ │ │ │ ├── ESBJAVA_4239_AccessHTTPSCAfterCallout.java │ │ │ │ │ └── ESBJAVA_4239_HTTP_SC_HandlingTests.java │ │ │ │ ├── clone │ │ │ │ │ ├── ESBJAVA3412EmptyStackExceptionTest.java │ │ │ │ │ └── ESBJAVA4913HandleExceptionTest.java │ │ │ │ ├── enrich │ │ │ │ │ ├── EI2084EnrichNamespaceAdditionTestCase.java │ │ │ │ │ ├── ESBJAVA3676EnrichSourcePropNoClone.java │ │ │ │ │ ├── ESBJAVA4892EnrichPropertyTestCase.java │ │ │ │ │ ├── EnrichDoubleQuoteTestCase.java │ │ │ │ │ ├── EnrichInvalidAndValidJSONTestCase.java │ │ │ │ │ └── MI2479TargetTypeKeyWithoutActionTestCase.java │ │ │ │ ├── foreach │ │ │ │ │ └── ForEachContinueLoopTestCase.java │ │ │ │ ├── header │ │ │ │ │ └── ESBJAVA5098_WSAddressingSupportTest.java │ │ │ │ ├── payloadFactory │ │ │ │ │ ├── ESBJAVA3573PayloadFormatWithBeginHtmlTagArgument.java │ │ │ │ │ ├── ESBJAVA5030PayloadFormatArgumentWithTrailingSpaceTestCase.java │ │ │ │ │ └── JSONPayloadXMLSpecialCharEscapeTest.java │ │ │ │ ├── rule │ │ │ │ │ └── ESBJAVA2506RuleFetchFromRegistryFailsForTheFirstTime.java │ │ │ │ ├── script │ │ │ │ │ ├── ESBJAVA3019_ScriptWithNullJson.java │ │ │ │ │ └── ScriptMediatorWithImports.java │ │ │ │ └── store │ │ │ │ │ └── ESBJAVA4470StoreMediatorEmptyOMArraySerializeException.java │ │ │ │ ├── message │ │ │ │ └── processor │ │ │ │ │ └── test │ │ │ │ │ ├── ESBJAVA3650_CustomHeaderPreserved_MessageProcessorOutMessage_TestCase.java │ │ │ │ │ ├── ESBJAVA4279_MPRetryUponResponseSC_500_withNonRetryStatusCodes_200_and_202_TestCase.java │ │ │ │ │ └── MessageProcessorWithoutIntervalParamTestCase.java │ │ │ │ ├── nhttp │ │ │ │ └── transport │ │ │ │ │ ├── NhttpBaseTestCase.java │ │ │ │ │ ├── json │ │ │ │ │ └── test │ │ │ │ │ │ ├── ESBJAVA4331MissingJSONEmptyArrayNHTTPTransport.java │ │ │ │ │ │ └── ESBJAVA4940CharacterEncodingRemovalTestCase.java │ │ │ │ │ └── mtom │ │ │ │ │ └── test │ │ │ │ │ └── ESBJAVA4909MultipartRelatedTestCase.java │ │ │ │ ├── ntask │ │ │ │ └── CCOMMONS8SetTenantDomainTest.java │ │ │ │ ├── passthru │ │ │ │ └── transport │ │ │ │ │ └── test │ │ │ │ │ ├── ESBJAVA3336HostHeaderValuePortCheckTestCase.java │ │ │ │ │ ├── ESBJAVA3770DropLargePayloadsPreventESBFromOOMTestCase.java │ │ │ │ │ ├── ESBJAVA4328RestUrlPostFixValueEncodeTestCase.java │ │ │ │ │ ├── ESBJAVA4394.java │ │ │ │ │ ├── ESBJAVA4423CustomStatusDescriptionTest.java │ │ │ │ │ ├── ESBJAVA4597TestCase.java │ │ │ │ │ ├── ESBJAVA4631PreserveHTTPHeadersTest.java │ │ │ │ │ ├── ESBJAVA4760ContentLengthHeaderTest.java │ │ │ │ │ ├── ESBJAVA4883SynapseHandlerBlockingCallTestCase.java │ │ │ │ │ ├── ESBJAVA4931PreserveContentTypeHeaderCharSetTestCase.java │ │ │ │ │ ├── ESBJAVA4973BindAddressFeatureTestCase.java │ │ │ │ │ ├── ForceMessageValidationTestCase.java │ │ │ │ │ ├── HttpAccessLogTestCase.java │ │ │ │ │ ├── MalformedHeaderWithCorrelationLogsEnabled.java │ │ │ │ │ ├── NoEntityBodyPropertyCheck.java │ │ │ │ │ └── PreserveResponseHeaderTestCase.java │ │ │ │ ├── proxy │ │ │ │ └── pinnedserver │ │ │ │ │ └── test │ │ │ │ │ └── ESBJAVA4201ProxyServiceWithPinnedServerTestCase.java │ │ │ │ ├── registry │ │ │ │ ├── caching │ │ │ │ │ └── CachableDurationTestCase.java │ │ │ │ └── task │ │ │ │ │ └── ESBJAVA4565TestCase.java │ │ │ │ ├── security │ │ │ │ └── policy │ │ │ │ │ ├── ESBJAVA3899_PolicyReferenceInWSDLBindingsTestCase.java │ │ │ │ │ └── UTResponseCode401UTauthFailure.java │ │ │ │ ├── template │ │ │ │ └── HttpEpTemplateWithSystemPropsTestCase.java │ │ │ │ ├── util │ │ │ │ └── FileUtil.java │ │ │ │ └── vfs │ │ │ │ └── transport │ │ │ │ └── test │ │ │ │ ├── ESBJAVA3470.java │ │ │ │ ├── ESBJAVA4679VFSPasswordSecurityTestCase.java │ │ │ │ ├── ESBJAVA4770VFSPasswordSecurityWithLargekeyTestCase.java │ │ │ │ ├── SftpCommandFactory.java │ │ │ │ └── connection │ │ │ │ └── failure │ │ │ │ ├── SMB2ConnectionGrowthTestCaseAfterConnectingToNEDirectory.java │ │ │ │ ├── SMB2ConnectionGrowthTestCaseAfterConnectingToNEShare.java │ │ │ │ ├── SMB2ConnectionGrowthTestCaseAfterSambaServerRestart.java │ │ │ │ ├── SMB2FileTransferResumingTestCaseAfterConnectionFailureToSambaServer.java │ │ │ │ ├── SMB2FileTransferResumingTestCaseAfterSambaServerRestart.java │ │ │ │ ├── SMB2FileTransferResumingTestCaseAfterSambaServerRestart2Steps.java │ │ │ │ ├── SMB2FileTransferResumingTestCaseWithMultipleProxyAfterConResetNServerReset.java │ │ │ │ ├── SMB2FileTransferTestCase.java │ │ │ │ ├── SMB2FileTransferTestCaseCheckContent.java │ │ │ │ ├── SMB2FileTransferTestCaseWithMultipleProxy.java │ │ │ │ ├── SMB2FileTransferTestCaseWithMultipleProxyWhenPollingDirRemoved.java │ │ │ │ ├── SMB2FileTransferTestCaseWithMultipleProxyWithMultiShare.java │ │ │ │ └── Utils.java │ │ │ └── resources │ │ │ ├── artifacts │ │ │ ├── AXIS2 │ │ │ │ ├── aar │ │ │ │ │ ├── Axis2 Service.aar │ │ │ │ │ ├── Axis2Service.aar │ │ │ │ │ ├── Echo.aar │ │ │ │ │ ├── HelloWorld.aar │ │ │ │ │ ├── LBService1.aar │ │ │ │ │ ├── LBService2.aar │ │ │ │ │ ├── LBService3.aar │ │ │ │ │ ├── LBServiceWithSleep.aar │ │ │ │ │ ├── MTOMSwASampleService.aar │ │ │ │ │ ├── RetryOnSoapFault.aar │ │ │ │ │ ├── SecureStockQuoteService.aar │ │ │ │ │ ├── SecureStockQuoteServiceScenario1.aar │ │ │ │ │ ├── SecureStockQuoteServiceScenario10.aar │ │ │ │ │ ├── SecureStockQuoteServiceScenario2.aar │ │ │ │ │ ├── SecureStockQuoteServiceScenario3.aar │ │ │ │ │ ├── SecureStockQuoteServiceScenario4.aar │ │ │ │ │ ├── SecureStockQuoteServiceScenario5.aar │ │ │ │ │ ├── SecureStockQuoteServiceScenario6.aar │ │ │ │ │ ├── SecureStockQuoteServiceScenario7.aar │ │ │ │ │ ├── SecureStockQuoteServiceScenario8.aar │ │ │ │ │ ├── SecureStockQuoteServiceScenario9.aar │ │ │ │ │ ├── SimpleStockQuoteService.aar │ │ │ │ │ ├── SimpleStockQuoteService_timeout.aar │ │ │ │ │ ├── StratosSchemaimportservice.aar │ │ │ │ │ ├── StudentService.aar │ │ │ │ │ ├── geows.aar │ │ │ │ │ ├── hcfacilitylocator.aar │ │ │ │ │ └── hcinformationservice.aar │ │ │ │ └── config │ │ │ │ │ ├── test_axis2_server_9000.xml │ │ │ │ │ ├── test_axis2_server_9001.xml │ │ │ │ │ ├── test_axis2_server_9002.xml │ │ │ │ │ ├── test_axis2_server_9003.xml │ │ │ │ │ ├── test_axis2_server_9007.xml │ │ │ │ │ ├── test_axis2_server_9009.xml │ │ │ │ │ ├── test_axis2_server_9015.xml │ │ │ │ │ └── test_axis2_server_9017.xml │ │ │ └── ESB │ │ │ │ ├── car │ │ │ │ ├── CAppWithSwagger_1.0.0.car │ │ │ │ ├── DemoProxy-1.0.0.car │ │ │ │ ├── ESBproject1-1.0.0.car │ │ │ │ ├── ESBproject2-1.0.0.car │ │ │ │ ├── ESBproject3-1.0.0.car │ │ │ │ ├── ESBproject4-1.0.0.car │ │ │ │ ├── FaultyCAppWithSwagger_1.0.0.car │ │ │ │ ├── MediatorCApp2_1.0.0.car │ │ │ │ ├── MediatorCApp_1.0.0.car │ │ │ │ ├── SecurityPolicyWSDLBindingCapp_1.0.0.car │ │ │ │ ├── ServiceChaining-1.0.0.car │ │ │ │ ├── SynchroDepInValidCarApp_1.0.0.car │ │ │ │ ├── SynchroDepValidCarApp_1.0.0.car │ │ │ │ ├── car-deployment-before-tranaport-start-test_1.0.0.car │ │ │ │ ├── car-deployment-test.car │ │ │ │ ├── esb-artifacts-car_1.0.0.car │ │ │ │ ├── esb-artifacts-rule-mediator-car_1.0.0.car │ │ │ │ ├── inactive_proxy_1.0.0.car │ │ │ │ ├── sample-passthrough-proxy-car_1.0.0.car │ │ │ │ └── xslt-transformation-car_1.0.0.car │ │ │ │ ├── clustering │ │ │ │ ├── JMSEndpoint.xml │ │ │ │ └── axis2.xml │ │ │ │ ├── compression │ │ │ │ └── gzip │ │ │ │ │ └── gzip-compression.xml │ │ │ │ ├── config │ │ │ │ ├── passthru-http-with-force-json-validation.properties │ │ │ │ └── testconfig.xml │ │ │ │ ├── defaultconfigs │ │ │ │ └── synapse.xml │ │ │ │ ├── endpoint │ │ │ │ ├── CARBON11016_synapse.xml │ │ │ │ ├── EmptyPayloadInFailoverLoadBalanceEndpoint │ │ │ │ │ └── synapse.xml │ │ │ │ ├── addressEndpointConfig │ │ │ │ │ ├── addressEP_Test.xml │ │ │ │ │ ├── invalidPropertyAddressEndPoint.xml │ │ │ │ │ └── synapse.xml │ │ │ │ ├── defaultEndpointConfig │ │ │ │ │ ├── defaultEP_Test.xml │ │ │ │ │ └── synapse.xml │ │ │ │ ├── endpointFotmatRestPTTestConfig.xml │ │ │ │ ├── failoverEndpointConfig │ │ │ │ │ ├── failOverWithDisabledErrors.xml │ │ │ │ │ ├── failoverEP_Test.xml │ │ │ │ │ └── synapse.xml │ │ │ │ ├── httpEndpointConfig │ │ │ │ │ └── synapse.xml │ │ │ │ ├── loadbalancingEndpointConfig │ │ │ │ │ ├── loadbalancingEP_Test.xml │ │ │ │ │ └── synapse.xml │ │ │ │ ├── wsdlEndpointConfig │ │ │ │ │ ├── synapse.xml │ │ │ │ │ └── wsdlEP_Test.xml │ │ │ │ └── wsdlTestEp.xml │ │ │ │ ├── endpointlookup.xml │ │ │ │ ├── entitlementMediatorConfig │ │ │ │ └── entitlementMediatorSynapse.xml │ │ │ │ ├── hl7Transport │ │ │ │ └── axis2.xml │ │ │ │ ├── jaxrs │ │ │ │ ├── getperson.xml │ │ │ │ └── putpeopleproxy.xml │ │ │ │ ├── jms │ │ │ │ └── transport │ │ │ │ │ ├── ESBJAVA-1716_messageStore.xml │ │ │ │ │ ├── ESBJAVA-1793MessageStore-targetEndPointFormat-pox.xml │ │ │ │ │ ├── ESBJAVA-3656_MessageProcessor.xml │ │ │ │ │ ├── ESBJAVA-3656_MessageStore.xml │ │ │ │ │ ├── ESBJAVA3714_JMX_Pause_JMS_Listener.xml │ │ │ │ │ ├── HTTP_SC.xml │ │ │ │ │ ├── JMSAXISFault.xml │ │ │ │ │ ├── JMSMessageStoreREST.xml │ │ │ │ │ ├── MSMP_JSON_RETRY.xml │ │ │ │ │ ├── axis2config │ │ │ │ │ ├── activemq │ │ │ │ │ │ ├── axis2.xml │ │ │ │ │ │ └── custom_server_name │ │ │ │ │ │ │ └── axis2.xml │ │ │ │ │ └── mb │ │ │ │ │ │ └── axis2.xml │ │ │ │ │ ├── jms_endpoint_proxy_service.xml │ │ │ │ │ ├── jms_message_store_unavailable_service.xml │ │ │ │ │ ├── jms_out_only_proxy.xml │ │ │ │ │ ├── jms_transport.xml │ │ │ │ │ ├── jms_transport_jms_suspension.xml │ │ │ │ │ ├── jms_transport_proxy_service.xml │ │ │ │ │ ├── jms_wait_response.xml │ │ │ │ │ ├── jmsclient-and-restService.xml │ │ │ │ │ ├── jndi.properties │ │ │ │ │ ├── msgInjection │ │ │ │ │ ├── msg_injecting_task.xml │ │ │ │ │ └── msg_store.xml │ │ │ │ │ └── topic │ │ │ │ │ └── send_messages_topic_synapse.xml │ │ │ │ ├── json │ │ │ │ ├── LargePayload.json │ │ │ │ ├── StockQuoteAPI.xml │ │ │ │ ├── TestApi.xml │ │ │ │ ├── autoprimitive │ │ │ │ │ └── synapse.properties │ │ │ │ ├── json-to-soap-conversion.xml │ │ │ │ ├── location-header-json.xml │ │ │ │ ├── log4j.properties │ │ │ │ ├── malformedJsonFaulty.xml │ │ │ │ ├── synapse.properties │ │ │ │ ├── tenant-axis2.xml │ │ │ │ └── tenant-json-test-case.xml │ │ │ │ ├── local │ │ │ │ ├── axis2.xml │ │ │ │ ├── carbon.xml │ │ │ │ ├── local-transport-header.xml │ │ │ │ └── local-transport.xml │ │ │ │ ├── localEntryConfig │ │ │ │ ├── sequence_as_local_registry_entry.xml │ │ │ │ └── throttle_policy_as_a_local_entry.xml │ │ │ │ ├── mediatorconfig │ │ │ │ ├── aggregate │ │ │ │ │ └── CorrelateOnExpressionTest.xml │ │ │ │ ├── cache │ │ │ │ │ ├── CollectorTypeCacheMediator.xml │ │ │ │ │ ├── DistributedCachingHeaderSerialization.xml │ │ │ │ │ ├── LargeCacheTimeOut.xml │ │ │ │ │ └── axis2.xml │ │ │ │ ├── call │ │ │ │ │ ├── synapse.xml │ │ │ │ │ ├── synapse1.xml │ │ │ │ │ ├── synapse10.xml │ │ │ │ │ ├── synapse11.xml │ │ │ │ │ ├── synapse12.xml │ │ │ │ │ ├── synapse13.xml │ │ │ │ │ ├── synapse14.xml │ │ │ │ │ ├── synapse15.xml │ │ │ │ │ ├── synapse17.xml │ │ │ │ │ ├── synapse18.xml │ │ │ │ │ ├── synapse19.xml │ │ │ │ │ ├── synapse2.xml │ │ │ │ │ ├── synapse20.xml │ │ │ │ │ ├── synapse21.xml │ │ │ │ │ ├── synapse3.xml │ │ │ │ │ ├── synapse4.xml │ │ │ │ │ ├── synapse5.xml │ │ │ │ │ ├── synapse6.xml │ │ │ │ │ ├── synapse7.xml │ │ │ │ │ ├── synapse8.xml │ │ │ │ │ ├── synapse9.xml │ │ │ │ │ ├── synapse_expressions.xml │ │ │ │ │ └── synapse_param_with_values.xml │ │ │ │ ├── call_template │ │ │ │ │ ├── synapse.xml │ │ │ │ │ ├── synapse_expressions.xml │ │ │ │ │ └── synapse_param_with_values.xml │ │ │ │ ├── callout │ │ │ │ │ ├── CallOutMediatorOutOnlyTest.xml │ │ │ │ │ ├── CallOutMediatorWithMTOMTest.xml │ │ │ │ │ ├── CalloutMediatorHTTP_SC_Test.xml │ │ │ │ │ ├── CalloutMediatorSoapHeaderTest.xml │ │ │ │ │ ├── DynamicEndpointTest.xml │ │ │ │ │ ├── DynamicProperties.xml │ │ │ │ │ ├── FaultSeq.xml │ │ │ │ │ ├── FetchHTTPSCWithCalloutMediator.xml │ │ │ │ │ ├── InboundOutboundSecurityTest.xml │ │ │ │ │ ├── SOAPRequestWithHeader.xml │ │ │ │ │ ├── SecurityTest.xml │ │ │ │ │ ├── TranportCleanupOnFaultTest.xml │ │ │ │ │ ├── ValidPath_Axis2Repo.xml │ │ │ │ │ ├── ValidPath_Axis2Xml.xml │ │ │ │ │ ├── client_repo │ │ │ │ │ │ └── conf │ │ │ │ │ │ │ └── axis2.xml │ │ │ │ │ ├── synapse_sample_430.xml │ │ │ │ │ └── transport_headers.xml │ │ │ │ ├── class │ │ │ │ │ ├── class_mediation_with_twenty_properties.xml │ │ │ │ │ ├── class_property_persistence_five_properties.xml │ │ │ │ │ ├── class_property_persistence_four_properties.xml │ │ │ │ │ └── class_property_persistence_three_properties.xml │ │ │ │ ├── clone │ │ │ │ │ ├── cloneLogAndSendSequence.xml │ │ │ │ │ ├── cloneMediatorEmptyStackException.xml │ │ │ │ │ ├── clone_SOAP_Action.xml │ │ │ │ │ ├── clone_http.xml │ │ │ │ │ ├── clone_https.xml │ │ │ │ │ ├── clone_https_sequence.xml │ │ │ │ │ ├── clone_jms.xml │ │ │ │ │ ├── clone_named_endpoints.xml │ │ │ │ │ ├── clone_sequence.xml │ │ │ │ │ ├── clone_simple.xml │ │ │ │ │ ├── clone_unknown_endpoints.xml │ │ │ │ │ ├── clone_unmaching_aggregate.xml │ │ │ │ │ └── large_message.txt │ │ │ │ ├── db │ │ │ │ │ └── synapse_sample_364.xml │ │ │ │ ├── dblookup │ │ │ │ │ ├── sample_360.xml │ │ │ │ │ ├── sample_360_multiple_SQL_statements.xml │ │ │ │ │ ├── sample_360_multiple_results_test.xml │ │ │ │ │ ├── sample_360_stored_function_test.xml │ │ │ │ │ └── sample_360_stored_procedure.xml │ │ │ │ ├── dbreport │ │ │ │ │ ├── synapse_dbReport.xml │ │ │ │ │ ├── synapse_sample_361.xml │ │ │ │ │ ├── synapse_sample_364.xml │ │ │ │ │ └── synapse_use_transaction.xml │ │ │ │ ├── enrich │ │ │ │ │ ├── add_propert_as_child.xml │ │ │ │ │ ├── add_property_as_sibling.xml │ │ │ │ │ ├── add_sibling.xml │ │ │ │ │ ├── enrich_add_as_child.xml │ │ │ │ │ ├── enrich_add_sibling_in_out_msg.xml │ │ │ │ │ ├── enrich_byGetProperty.xml │ │ │ │ │ ├── enrich_by_enrich.xml │ │ │ │ │ ├── enrich_omText.xml │ │ │ │ │ ├── enrich_replace_body_by_specified_property.xml │ │ │ │ │ ├── enrich_replace_by_property.xml │ │ │ │ │ ├── registry_synapse.xml │ │ │ │ │ └── required │ │ │ │ │ │ └── registry_configs.xml │ │ │ │ ├── fast_xslt │ │ │ │ │ ├── calltemplate_integration_fastxslt_sample750_synapse.xml │ │ │ │ │ ├── fast_xslt_dynamic_key_synapse.xml │ │ │ │ │ └── synapse_fast_xslt_sample_8.xml │ │ │ │ ├── fault │ │ │ │ │ ├── soap11_fault_actor_synapse.xml │ │ │ │ │ ├── soap11_fault_code_Client_synapse.xml │ │ │ │ │ ├── soap11_fault_code_MustUnderstand_synapse.xml │ │ │ │ │ ├── soap11_fault_code_Server_synapse.xml │ │ │ │ │ ├── soap11_fault_code_VersionMismatch_synapse.xml │ │ │ │ │ ├── soap11_fault_detail_as_element_synapse.xml │ │ │ │ │ ├── soap11_fault_detail_synapse.xml │ │ │ │ │ ├── soap11_fault_full_synapse.xml │ │ │ │ │ ├── soap11_fault_out_sequence_synapse.xml │ │ │ │ │ ├── soap11_fault_response_validate_synapse.xml │ │ │ │ │ ├── soap11_fault_set_response_attribute_false_with_addressing_synapse.xml │ │ │ │ │ ├── soap11_fault_set_response_false_synapse.xml │ │ │ │ │ ├── soap11_fault_set_response_true_synapse.xml │ │ │ │ │ ├── soap11_fault_string_expression_synapse.xml │ │ │ │ │ ├── soap11_fault_string_value_synapse.xml │ │ │ │ │ ├── soap12_fault_actor_synapse.xml │ │ │ │ │ ├── soap12_fault_code_DataEncodingUnknown_synapse.xml │ │ │ │ │ ├── soap12_fault_code_MustUnderstand_synapse.xml │ │ │ │ │ ├── soap12_fault_code_Receiver_synapse.xml │ │ │ │ │ ├── soap12_fault_code_Sender_synapse.xml │ │ │ │ │ ├── soap12_fault_code_VersionMismatch_synapse.xml │ │ │ │ │ ├── soap12_fault_detail_as_element_synapse.xml │ │ │ │ │ ├── soap12_fault_detail_synapse.xml │ │ │ │ │ ├── soap12_fault_full_synapse.xml │ │ │ │ │ ├── soap12_fault_node_synapse.xml │ │ │ │ │ ├── soap12_fault_out_sequence_synapse.xml │ │ │ │ │ ├── soap12_fault_response_validate_synapse.xml │ │ │ │ │ ├── soap12_fault_set_response_attribute_false_with_addressing_synapse.xml │ │ │ │ │ ├── soap12_fault_set_response_false_synapse.xml │ │ │ │ │ ├── soap12_fault_set_response_true_synapse.xml │ │ │ │ │ ├── soap12_fault_string_expression_synapse.xml │ │ │ │ │ └── soap12_fault_string_value_synapse.xml │ │ │ │ ├── header │ │ │ │ │ ├── action_header_set_synapse.xml │ │ │ │ │ ├── action_remove_security_synapse.xml │ │ │ │ │ └── to_header_set_synapse.xml │ │ │ │ ├── iterate │ │ │ │ │ ├── ESBJAVA-2843-iterateIfPreservePayloadFalse.xml │ │ │ │ │ ├── IterateIDAggregateIDMismatch.xml │ │ │ │ │ ├── Iterate_anonymous_endpoints.xml │ │ │ │ │ ├── invalid_XPath.xml │ │ │ │ │ ├── invalid_name_space_attachpath.xml │ │ │ │ │ ├── invalid_namespace_iterateexpression.xml │ │ │ │ │ ├── invalid_soapaction.xml │ │ │ │ │ ├── invalid_soapaction_valid_payload.xml │ │ │ │ │ ├── invalid_target_address.xml │ │ │ │ │ ├── iterate.txt │ │ │ │ │ ├── iterate1.txt │ │ │ │ │ ├── iterateEndpoint.xml │ │ │ │ │ ├── iterateLogAndSendSequence.xml │ │ │ │ │ ├── iterateSequentialTrueProperty.xml │ │ │ │ │ ├── iterateSequentialTruePropertyWithOutProperty.xml │ │ │ │ │ ├── iterate_SOAP_Action.xml │ │ │ │ │ ├── iterate_configuration_endpoint.xml │ │ │ │ │ ├── iterate_continue_parent_false.xml │ │ │ │ │ ├── iterate_continue_parent_true.xml │ │ │ │ │ ├── iterate_different_ID.xml │ │ │ │ │ ├── iterate_govners_endpoint.xml │ │ │ │ │ ├── iterate_https_endpoint.xml │ │ │ │ │ ├── iterate_named_endpoints.xml │ │ │ │ │ ├── iterate_named_sequence.xml │ │ │ │ │ ├── iterate_sequential.xml │ │ │ │ │ ├── iterate_small.txt │ │ │ │ │ ├── iterate_target_configuration.xml │ │ │ │ │ ├── iterate_target_govenerce.xml │ │ │ │ │ ├── iterator_attach_path.xml │ │ │ │ │ ├── iterator_expressionLess.xml │ │ │ │ │ ├── null_namespace.xml │ │ │ │ │ ├── null_namespace_for_expression.xml │ │ │ │ │ ├── simple_iterator.xml │ │ │ │ │ └── valid_iterate_exp_mismatch_original_message.xml │ │ │ │ ├── payload │ │ │ │ │ └── factory │ │ │ │ │ │ ├── axis2 │ │ │ │ │ │ └── axis2.xml │ │ │ │ │ │ ├── expression_arg_payload_factory_synapse.xml │ │ │ │ │ │ ├── jsonFormat_JsonExpressiosns.xml │ │ │ │ │ │ ├── jsonFormat_JsonXmlExpressions_values.xml │ │ │ │ │ │ ├── jsonFormat_XmlExpressiosns.xml │ │ │ │ │ │ ├── no_arg_payload_factory_synapse.xml │ │ │ │ │ │ ├── om_arg_payload_factory_synapse.xml │ │ │ │ │ │ ├── payload-in.xml │ │ │ │ │ │ ├── payload_factory_dynamic_key.xml │ │ │ │ │ │ ├── special_chractors_at_payload_factory.xml │ │ │ │ │ │ ├── value_arg_payload_factory_synapse.xml │ │ │ │ │ │ ├── value_expression_arg_payload_factory_synapse.xml │ │ │ │ │ │ └── xmlFormat_JsonExpressiosns.xml │ │ │ │ ├── policy │ │ │ │ │ └── throttle_policy.xml │ │ │ │ ├── property │ │ │ │ │ ├── DISABLE_CHUNKING.xml │ │ │ │ │ ├── NO_ENTITY_BODY.xml │ │ │ │ │ ├── NO_KEEPALIVE.xml │ │ │ │ │ ├── POST_TO_URI.xml │ │ │ │ │ ├── PRESERVE_WS_ADDRESSING.xml │ │ │ │ │ ├── REST_URL_postfix.xml │ │ │ │ │ ├── TRANSPORT_HEADERS.xml │ │ │ │ │ ├── disableAddressingForOutMessages.xml │ │ │ │ │ ├── synapse_http_header_case_sensitivity.xml │ │ │ │ │ └── transport_scope_property.xml │ │ │ │ ├── rewrite │ │ │ │ │ ├── full_url_append_synapse.xml │ │ │ │ │ ├── full_url_prepend_synapse.xml │ │ │ │ │ ├── full_url_rewrite_synapse.xml │ │ │ │ │ ├── full_url_set_synapse.xml │ │ │ │ │ ├── full_url_set_when_no_url_synapse.xml │ │ │ │ │ ├── hostname_append_synapse.xml │ │ │ │ │ ├── hostname_prepend_synapse.xml │ │ │ │ │ ├── hostname_set_synapse.xml │ │ │ │ │ ├── path_append_synapse.xml │ │ │ │ │ ├── path_prepend_synapse.xml │ │ │ │ │ ├── path_set_synapse.xml │ │ │ │ │ ├── port_append_synapse.xml │ │ │ │ │ ├── port_prepend_synapse.xml │ │ │ │ │ ├── port_set_synapse.xml │ │ │ │ │ ├── protocol_append_synapse.xml │ │ │ │ │ ├── protocol_prepend_synapse.xml │ │ │ │ │ ├── protocol_rewrite_from_property_synapse.xml │ │ │ │ │ ├── protocol_rewrite_synapse.xml │ │ │ │ │ ├── protocol_set_synapse.xml │ │ │ │ │ ├── remove_rewrite_full_url_synapse.xml │ │ │ │ │ ├── remove_rewrite_host_synapse.xml │ │ │ │ │ ├── remove_rewrite_path_synapse.xml │ │ │ │ │ ├── remove_rewrite_port_synapse.xml │ │ │ │ │ ├── remove_rewrite_protocol_synapse.xml │ │ │ │ │ ├── synapse_sample451.xml │ │ │ │ │ ├── url_reWrite_by_context_synapse.xml │ │ │ │ │ ├── url_reWrite_by_host_synapse.xml │ │ │ │ │ ├── url_reWrite_by_port_expression_synapse.xml │ │ │ │ │ └── url_reWrite_by_port_synapse.xml │ │ │ │ ├── router │ │ │ │ │ ├── router_breakRouter_false_test.xml │ │ │ │ │ ├── router_continueAfter_false_test.xml │ │ │ │ │ ├── router_continueAfter_true_test.xml │ │ │ │ │ ├── router_endpoint.xml │ │ │ │ │ ├── router_endpoint_test.xml │ │ │ │ │ ├── router_expression_test.xml │ │ │ │ │ ├── router_https_endpoint.xml │ │ │ │ │ ├── router_multiple_routs_test.xml │ │ │ │ │ ├── router_sequence.xml │ │ │ │ │ └── router_sequence_test.xml │ │ │ │ ├── script │ │ │ │ │ ├── stockquoteTransform.js │ │ │ │ │ └── stockquoteTransform.rb │ │ │ │ ├── script_js │ │ │ │ │ ├── detailTransform.js │ │ │ │ │ ├── stockquoteTransform.js │ │ │ │ │ └── test54.js │ │ │ │ ├── send │ │ │ │ │ ├── endpoints │ │ │ │ │ │ └── registry_endpoint.xml │ │ │ │ │ ├── sequence │ │ │ │ │ │ ├── test_sequence_build_message_conf.xml │ │ │ │ │ │ ├── test_sequence_build_message_gov.xml │ │ │ │ │ │ └── test_sequence_build_message_local.xml │ │ │ │ │ ├── synapse_config.xml │ │ │ │ │ ├── synapse_default.xml │ │ │ │ │ ├── synapse_dynamic.xml │ │ │ │ │ ├── synapse_endpoint_registry.xml │ │ │ │ │ ├── synapse_gov.xml │ │ │ │ │ ├── synapse_local.xml │ │ │ │ │ └── synapse_uncaught_exception.xml │ │ │ │ ├── sequence │ │ │ │ │ ├── synapse_proxy.xml │ │ │ │ │ └── synapse_sequence_mediator.xml │ │ │ │ ├── spring │ │ │ │ │ ├── spring_mediation.xml │ │ │ │ │ ├── spring_mediation_different_bean_id.xml │ │ │ │ │ ├── spring_mediation_invalid_spring_bean.xml │ │ │ │ │ ├── spring_mediation_springBean_resource_not_exist.xml │ │ │ │ │ └── utils │ │ │ │ │ │ ├── different_bean_names.xml │ │ │ │ │ │ ├── invalid_spring_bean.xml │ │ │ │ │ │ ├── springbean.xml │ │ │ │ │ │ └── updating_spring.xml │ │ │ │ ├── switch_conf │ │ │ │ │ └── switch_mediator_subsequence_matching.xml │ │ │ │ ├── validate │ │ │ │ │ └── schema.xml │ │ │ │ ├── xquery │ │ │ │ │ ├── synapse101.xml │ │ │ │ │ ├── xquery_empty_soap_request.xml │ │ │ │ │ ├── xquery_replace_body_synapse101.xml │ │ │ │ │ ├── xquery_variable_type_boolean_synapse101.xml │ │ │ │ │ ├── xquery_variable_type_byte_synapse101.xml │ │ │ │ │ ├── xquery_variable_type_double_synapse101.xml │ │ │ │ │ ├── xquery_variable_type_float_synapse101.xml │ │ │ │ │ ├── xquery_variable_type_int_synapse101.xml │ │ │ │ │ ├── xquery_variable_type_integer_synapse101.xml │ │ │ │ │ ├── xquery_variable_type_long_synapse101.xml │ │ │ │ │ └── xquery_variable_type_string_synapse101.xml │ │ │ │ └── xslt │ │ │ │ │ ├── local_entry_refer_xslt_transformation_synapse.xml │ │ │ │ │ ├── transform.xslt │ │ │ │ │ ├── transform_back.xslt │ │ │ │ │ ├── xslt_dynamic_key_synapse.xml │ │ │ │ │ ├── xslt_from_config_registry_local_entry_synapse.xml │ │ │ │ │ ├── xslt_from_governance_registry_local_entry_synapse.xml │ │ │ │ │ ├── xslt_from_url_synapse.xml │ │ │ │ │ ├── xslt_in_file_system_local_entry_synapse.xml │ │ │ │ │ ├── xslt_in_line_local_entry_synapse.xml │ │ │ │ │ └── xslt_transformation_with_property_synapse.xml │ │ │ │ ├── messageProcessorConfig │ │ │ │ ├── CustomHeaderPreserved_MessageProcessorOutMessage.xml │ │ │ │ ├── MessageProcessorRetryUpon_500_ResponseWith_200And_202As_Non_retry_SC.xml │ │ │ │ └── Message_Processor_Persistence_After_Restart_Synapse.xml │ │ │ │ ├── mtom │ │ │ │ ├── asf-logo.gif │ │ │ │ └── content.xml │ │ │ │ ├── nhttp │ │ │ │ └── transport │ │ │ │ │ └── json │ │ │ │ │ └── deployment.toml │ │ │ │ ├── other │ │ │ │ └── index.html │ │ │ │ ├── passthru │ │ │ │ └── transport │ │ │ │ │ ├── ESBJAVA3770 │ │ │ │ │ ├── deployment.toml │ │ │ │ │ └── passthru-http.properties │ │ │ │ │ ├── ESBJAVA4883 │ │ │ │ │ └── synapse-handlers.xml │ │ │ │ │ ├── ESBJAVA4931 │ │ │ │ │ └── sample_proxy_3.wsdl │ │ │ │ │ ├── ESBJAVA4973 │ │ │ │ │ └── axis2.xml │ │ │ │ │ ├── enableCorrelation │ │ │ │ │ └── micro-integrator.sh │ │ │ │ │ ├── forceMessageValidation │ │ │ │ │ ├── deployment.toml │ │ │ │ │ └── passthru-http.properties │ │ │ │ │ ├── httpaccesslogs │ │ │ │ │ ├── access-log.properties │ │ │ │ │ └── nhttp.properties │ │ │ │ │ ├── httpproxy │ │ │ │ │ ├── axis2.xml │ │ │ │ │ ├── httpCustomProxy.xml │ │ │ │ │ └── httpProxy.xml │ │ │ │ │ ├── preserveResponseHeaders │ │ │ │ │ └── passthru-http.properties │ │ │ │ │ └── preserveheaders │ │ │ │ │ └── passthru-http.properties │ │ │ │ ├── proxyconfig │ │ │ │ └── proxy │ │ │ │ │ ├── customProxy │ │ │ │ │ ├── WSDLEndpointErrorTestProxy.xml │ │ │ │ │ ├── insequence_existing_sequence.xml │ │ │ │ │ ├── insequence_from_registry.xml │ │ │ │ │ ├── insequence_inline_endpoint_from_registry.xml │ │ │ │ │ ├── insequence_inline_endpoint_inline.xml │ │ │ │ │ ├── insequence_none_endpoint_existing.xml │ │ │ │ │ ├── insequence_none_endpoint_from_registry.xml │ │ │ │ │ ├── insequence_none_endpoint_inline.xml │ │ │ │ │ ├── non_existing_proxy.xml │ │ │ │ │ ├── non_existing_proxy_route_to_main.xml │ │ │ │ │ ├── outsequence_faultsequence.xml │ │ │ │ │ └── simple_proxy.xml │ │ │ │ │ ├── enablelocaltransport │ │ │ │ │ └── axis2.xml │ │ │ │ │ ├── loggingProxy │ │ │ │ │ ├── pick_end_point_from_registry.xml │ │ │ │ │ ├── proxy_service_enabling_only_http.xml │ │ │ │ │ ├── proxy_service_enabling_only_https.xml │ │ │ │ │ ├── proxy_service_with_end_point_through_url.xml │ │ │ │ │ ├── request_log_level_full_response_log_level_full.xml │ │ │ │ │ ├── request_log_level_none_response_log_level_none.xml │ │ │ │ │ ├── request_log_level_simple_response_log_level_simple.xml │ │ │ │ │ ├── wsdl_options_pick_from_registry.xml │ │ │ │ │ ├── wsdl_options_specified_inline.xml │ │ │ │ │ └── wsdl_options_specified_source_url.xml │ │ │ │ │ ├── passThroughProxy │ │ │ │ │ ├── EditPassThroughProxy.xml │ │ │ │ │ ├── customServiceURI │ │ │ │ │ │ ├── axis2.xml │ │ │ │ │ │ └── custom_service_uri_enabling_only_https.xml │ │ │ │ │ ├── passThroughProxy.xml │ │ │ │ │ ├── pick_end_point_from_registry.xml │ │ │ │ │ ├── proxy_service_enabling_only_http.xml │ │ │ │ │ ├── proxy_service_enabling_only_https.xml │ │ │ │ │ ├── proxy_service_with_end_point_through_url.xml │ │ │ │ │ ├── wsdl_options_pick_from_registry.xml │ │ │ │ │ ├── wsdl_options_specified_inline.xml │ │ │ │ │ └── wsdl_options_specified_source_url.xml │ │ │ │ │ ├── protocolViolationProxy │ │ │ │ │ └── synapse.xml │ │ │ │ │ ├── proxyservice │ │ │ │ │ ├── http_to_https_proxy.xml │ │ │ │ │ ├── proxy_with_addressing.xml │ │ │ │ │ └── stock_quote_proxy.xml │ │ │ │ │ ├── proxywithpinnedserver │ │ │ │ │ └── TestProxy.xml │ │ │ │ │ ├── secureProxy │ │ │ │ │ ├── passthrough_proxy_engaging_security_with_secueBackEnd.xml │ │ │ │ │ ├── passthrough_proxy_with_secueBackEnd.xml │ │ │ │ │ ├── sample_0_with_wso2_registry.xml │ │ │ │ │ ├── secure_proxy_service_scenarios.xml │ │ │ │ │ ├── secured_proxy_secured_backend.xml │ │ │ │ │ ├── security_transformation_proxy_for_policy2_backEnd.xml │ │ │ │ │ ├── security_transformation_proxy_for_policy3_backend.xml │ │ │ │ │ ├── security_transformation_proxy_for_policy4_backend.xml │ │ │ │ │ ├── security_transformation_proxy_for_policy5_backend.xml │ │ │ │ │ ├── security_transformation_proxy_for_policy6_backend.xml │ │ │ │ │ ├── security_transformation_proxy_for_policy7_backend.xml │ │ │ │ │ ├── security_transformation_proxy_for_policy8_backend.xml │ │ │ │ │ ├── stock_quote_passthrough_proxy.xml │ │ │ │ │ ├── stock_quote_proxy.xml │ │ │ │ │ ├── stockquote_pass_through_proxy.xml │ │ │ │ │ └── stockquote_proxy_unsecured.xml │ │ │ │ │ ├── transformerProxy │ │ │ │ │ ├── invalid_xslt_test.xml │ │ │ │ │ ├── pick_end_point_from_registry.xml │ │ │ │ │ ├── proxy_service_enabling_only_http.xml │ │ │ │ │ ├── proxy_service_enabling_only_https.xml │ │ │ │ │ ├── proxy_service_with_end_point_through_url.xml │ │ │ │ │ ├── wsdl_options_pick_from_registry.xml │ │ │ │ │ ├── wsdl_options_specified_inline.xml │ │ │ │ │ └── wsdl_options_specified_source_url.xml │ │ │ │ │ ├── utils │ │ │ │ │ ├── fault_sequence.xml │ │ │ │ │ ├── invalid_transform.xslt │ │ │ │ │ ├── out_sequence.xml │ │ │ │ │ ├── proxy_sequence.xml │ │ │ │ │ ├── registry_endpoint.xml │ │ │ │ │ └── sample_proxy_1.wsdl │ │ │ │ │ └── wsdlBasedProxy │ │ │ │ │ ├── proxy_service_enabling_only_http.xml │ │ │ │ │ ├── proxy_service_enabling_only_https.xml │ │ │ │ │ ├── proxy_service_with_publish_same_service_contract.xml │ │ │ │ │ ├── wsdl_options_pick_from_registry.xml │ │ │ │ │ ├── wsdl_options_specified_inline.xml │ │ │ │ │ └── wsdl_options_specified_source_url.xml │ │ │ │ ├── registry │ │ │ │ ├── ftp.xml │ │ │ │ └── registry-template.xml │ │ │ │ ├── restapi │ │ │ │ └── apidefinition │ │ │ │ │ ├── carbon.xml │ │ │ │ │ └── swaggergeneration │ │ │ │ │ └── carbon.xml │ │ │ │ ├── scheduledTask │ │ │ │ ├── InjectToProxyTestConfig.xml │ │ │ │ └── InjectToSequenceTestConfig.xml │ │ │ │ ├── security │ │ │ │ └── ESBJAVA3899 │ │ │ │ │ └── server-policy.xml │ │ │ │ ├── securityPolicy │ │ │ │ └── sequence.xml │ │ │ │ ├── sequence │ │ │ │ └── esbjava4565 │ │ │ │ │ └── testSequence.xml │ │ │ │ ├── server │ │ │ │ ├── conf │ │ │ │ │ ├── axis2 │ │ │ │ │ │ └── axis2.xml │ │ │ │ │ ├── carbon.xml │ │ │ │ │ ├── deployment.toml │ │ │ │ │ └── synapse.properties │ │ │ │ ├── lib │ │ │ │ │ ├── activemq-client-5.9.1.jar │ │ │ │ │ ├── geronimo-j2ee-management_1.1_spec-1.0.1.jar │ │ │ │ │ ├── geronimo-jms_1.1_spec-1.1.1.jar │ │ │ │ │ └── hawtbuf-1.9.jar │ │ │ │ ├── registry │ │ │ │ │ └── governance │ │ │ │ │ │ ├── datamapper │ │ │ │ │ │ ├── NestedElementConfig.dmc │ │ │ │ │ │ ├── NestedElementConfig_inputSchema.json │ │ │ │ │ │ ├── NestedElementConfig_outputSchema.json │ │ │ │ │ │ ├── dashSupport │ │ │ │ │ │ │ ├── DashSupportConfig.dmc │ │ │ │ │ │ │ ├── DashSupportConfig_inputSchema.json │ │ │ │ │ │ │ └── DashSupportConfig_outputSchema.json │ │ │ │ │ │ └── multiplePrefix │ │ │ │ │ │ │ ├── FoodMapping.dmc │ │ │ │ │ │ │ ├── FoodMapping_inputSchema.json │ │ │ │ │ │ │ ├── FoodMapping_outputSchema.json │ │ │ │ │ │ │ ├── simpleDataAPI_XMLtoXML2_withDash_regConf.dmc │ │ │ │ │ │ │ ├── simpleDataAPI_XMLtoXML2_withDash_regConf_inputSchema.json │ │ │ │ │ │ │ └── simpleDataAPI_XMLtoXML2_withDash_regConf_outputSchema.json │ │ │ │ │ │ └── services │ │ │ │ │ │ └── test │ │ │ │ │ │ └── ftp.xml │ │ │ │ └── repository │ │ │ │ │ └── deployment │ │ │ │ │ └── server │ │ │ │ │ ├── carbonapps │ │ │ │ │ ├── CustomSwaggerCompositeExporter_1.0.0.car │ │ │ │ │ ├── ESBCApp-3.2.2.car │ │ │ │ │ ├── StoreMediator_1.0.0.car │ │ │ │ │ ├── car-deployment-before-tranaport-start-test_1.0.0.car │ │ │ │ │ ├── car-deployment-test.car │ │ │ │ │ ├── esb-artifacts-car_1.0.0.car │ │ │ │ │ ├── inactive_proxy_1.0.0.car │ │ │ │ │ ├── jsonpath-test-service-v1-cap_1.0.0.car │ │ │ │ │ ├── jsonpath-test-service-v2-cap_1.0.0.car │ │ │ │ │ ├── jsonpath-test-service-v3-cap_1.0.0.car │ │ │ │ │ └── sample-passthrough-proxy-car_1.0.0.car │ │ │ │ │ └── synapse-configs │ │ │ │ │ └── default │ │ │ │ │ ├── api │ │ │ │ │ ├── APIM1838AddPerson.xml │ │ │ │ │ ├── APIM1838GetPerson.xml │ │ │ │ │ ├── AggregatorTestAPI.xml │ │ │ │ │ ├── CachingTest.xml │ │ │ │ │ ├── ClientApi.xml │ │ │ │ │ ├── ContentTypePreserveAPI.xml │ │ │ │ │ ├── CorrelateOnExpressionTestAPI1.xml │ │ │ │ │ ├── CorrelateOnExpressionTestAPI2.xml │ │ │ │ │ ├── CorrelateOnExpressionTestAPI3.xml │ │ │ │ │ ├── DropLargePayloadPreventESBOOM.xml │ │ │ │ │ ├── EI2084EnrichNamespaceAdditionTestCaseAPI.xml │ │ │ │ │ ├── ESBJAVA3340Server.xml │ │ │ │ │ ├── ESBJAVA3698StockQuoteAPI.xml │ │ │ │ │ ├── ESBJAVA4270StockQuoteAPI.xml │ │ │ │ │ ├── ESBJAVA4572TestAPI.xml │ │ │ │ │ ├── ESBJAVA4913testapi.xml │ │ │ │ │ ├── ESBJAVA5045convertMenuApi.xml │ │ │ │ │ ├── EnrichDoubleQuoteAPI.xml │ │ │ │ │ ├── ForEachContinueLoop.xml │ │ │ │ │ ├── ForceMessageValidationTestAPI.xml │ │ │ │ │ ├── FormatterEscapePrimitiveSequenceAPI.xml │ │ │ │ │ ├── HTTPSC500ReturnAPI.xml │ │ │ │ │ ├── HttpTemplateTestAPI.xml │ │ │ │ │ ├── JsonObjectNameSpecialCharacter.xml │ │ │ │ │ ├── LargePayloadAPITest.xml │ │ │ │ │ ├── PreseveResponseHeaderAPI.xml │ │ │ │ │ ├── ScriptMediatorWithImportsTestAPI.xml │ │ │ │ │ ├── ServerApi_v1.xml │ │ │ │ │ ├── ServerApi_v2.xml │ │ │ │ │ ├── StockQuoteAPIESBJAVA4760.xml │ │ │ │ │ ├── WSAApi.xml │ │ │ │ │ ├── dashSupport.xml │ │ │ │ │ ├── deepCheckAPI.xml │ │ │ │ │ ├── faultSequenceExecutionOrderTestApi.xml │ │ │ │ │ ├── malformedJson.xml │ │ │ │ │ ├── methodNotAllowedAPI.xml │ │ │ │ │ ├── passParamsToEPTestApi.xml │ │ │ │ │ ├── sampleNestedElementAPI.xml │ │ │ │ │ ├── simpleDataAPI_XMLtoXML2_withDash.xml │ │ │ │ │ ├── swaggerGenerationTestApi.xml │ │ │ │ │ ├── testEnterAPI.xml │ │ │ │ │ ├── testJsonEmptyArrayApi.xml │ │ │ │ │ ├── testJsonEmptyArrayApimockservice.xml │ │ │ │ │ ├── testMalformedHeaderAPI.xml │ │ │ │ │ └── trailingSpaceAPI.xml │ │ │ │ │ ├── endpoints │ │ │ │ │ ├── EP.xml │ │ │ │ │ ├── ESBJAVA3336httpsEndpoint.xml │ │ │ │ │ ├── EchoEndpoint.xml │ │ │ │ │ ├── EndpointErrorTestErrorEndpoint.xml │ │ │ │ │ ├── LoadBalancingEndpoint.xml │ │ │ │ │ ├── StockQuoteEP.xml │ │ │ │ │ ├── StockQuoteServiceEp.xml │ │ │ │ │ ├── WireServerEp.xml │ │ │ │ │ ├── faultEP.xml │ │ │ │ │ ├── log-ep.xml │ │ │ │ │ └── mockEP.xml │ │ │ │ │ ├── local-entries │ │ │ │ │ └── UTResponseCode401UTauthFailureLE.xml │ │ │ │ │ ├── message-processors │ │ │ │ │ ├── Processor1.xml │ │ │ │ │ ├── ScheduledProcessor.xml │ │ │ │ │ ├── ScheduledProcessorWithoutInterval.xml │ │ │ │ │ ├── SimpleMsgProcessor.xml │ │ │ │ │ ├── fail-message-store-processor.xml │ │ │ │ │ └── original-message-store-processor.xml │ │ │ │ │ ├── message-stores │ │ │ │ │ ├── JMSMS.xml │ │ │ │ │ ├── MyStore.xml │ │ │ │ │ ├── MyStore2.xml │ │ │ │ │ ├── SimpleMsgStore.xml │ │ │ │ │ ├── fail-message-store.xml │ │ │ │ │ ├── original-message-store.xml │ │ │ │ │ └── testMessageStore.xml │ │ │ │ │ ├── proxy-services │ │ │ │ │ ├── Axis2RestServiceEncoded.xml │ │ │ │ │ ├── CachableDurationTestCaseProxy.xml │ │ │ │ │ ├── CloneMediatorEmptyStackProxy.xml │ │ │ │ │ ├── DuplicateSOAPActionHeader.xml │ │ │ │ │ ├── EI5523BackendProxy.xml │ │ │ │ │ ├── EI5523TestJsonStreamAfterAggregateMediatorProxy.xml │ │ │ │ │ ├── ESBJAVA3336httpsBackendProxyService.xml │ │ │ │ │ ├── ESBJAVA3676TestProxy.xml │ │ │ │ │ ├── ESBJAVA4394simpleStockPassthrough.xml │ │ │ │ │ ├── ESBJAVA4423HttpCustomProxyTest.xml │ │ │ │ │ ├── ESBJAVA4597TestProxy.xml │ │ │ │ │ ├── ESBJAVA4940SetEncodingFalse.xml │ │ │ │ │ ├── ESBJAVA4940SetEncodingTrue.xml │ │ │ │ │ ├── EchoFaultProxy.xml │ │ │ │ │ ├── EndpointErrorTestProxy.xml │ │ │ │ │ ├── EnrichInvalidJSONProxy.xml │ │ │ │ │ ├── HTTPRelativeLocationService0Proxy.xml │ │ │ │ │ ├── HTTPRelativeLocationServiceProxy.xml │ │ │ │ │ ├── HTTPSCProxy.xml │ │ │ │ │ ├── HttpAccessLogsTestProxy.xml │ │ │ │ │ ├── JMCalloutClientProxy.xml │ │ │ │ │ ├── JMSCalloutBEProxy.xml │ │ │ │ │ ├── JSONtoXMLProxy.xml │ │ │ │ │ ├── MI2479EnrichTargetTypeKeyWithoutActionProxy.xml │ │ │ │ │ ├── MSProxy.xml │ │ │ │ │ ├── MTOMChecker.xml │ │ │ │ │ ├── MessageProcessorWithoutIntervalParamTestProxy.xml │ │ │ │ │ ├── NoEntityBodyPropertyTestProxy.xml │ │ │ │ │ ├── NonRetrySCProxy.xml │ │ │ │ │ ├── OperationContextService.xml │ │ │ │ │ ├── PreserveContentTypeHeaderCharSetTestProxy.xml │ │ │ │ │ ├── PreserveContentTypeHeaderTest.xml │ │ │ │ │ ├── RespondProxy.xml │ │ │ │ │ ├── ScriptWithNullJsonValueTest.xml │ │ │ │ │ ├── SynapseHandlerTestProxy.xml │ │ │ │ │ ├── TestCalloutHTTP_SC.xml │ │ │ │ │ ├── TestCalloutSoapHeader.xml │ │ │ │ │ ├── UTResponseCode401UTauthFailureProxy.xml │ │ │ │ │ ├── WSAProxy.xml │ │ │ │ │ ├── fail-message-store-test-proxy.xml │ │ │ │ │ ├── jsonproducer.xml │ │ │ │ │ ├── loadbalanceproxy.xml │ │ │ │ │ ├── log-proxy.xml │ │ │ │ │ ├── replaceJSONPayload.xml │ │ │ │ │ ├── test-500-ep.xml │ │ │ │ │ └── testProxy.xml │ │ │ │ │ ├── sequences │ │ │ │ │ ├── APIFaultSequence_V1.xml │ │ │ │ │ ├── CachingTestPost.xml │ │ │ │ │ ├── EI1622_jms_transport_fault.xml │ │ │ │ │ ├── ESBJAVA4239FaultSeq.xml │ │ │ │ │ ├── ESBJAVA4565TestSequence.xml │ │ │ │ │ ├── ESBJAVA4597MyFaultSequency.xml │ │ │ │ │ ├── ESBJAVA4597ReceiveSeq.xml │ │ │ │ │ ├── EchoDataSplitSequence.xml │ │ │ │ │ ├── EchoSequenceOne.xml │ │ │ │ │ ├── EndpointErrorTestCloneSequence.xml │ │ │ │ │ ├── EndpointErrorTestErrorSequence.xml │ │ │ │ │ ├── EndpointErrorTestRightErrorSequence.xml │ │ │ │ │ ├── FaultSeq.xml │ │ │ │ │ ├── ReplySeq.xml │ │ │ │ │ ├── a.xml │ │ │ │ │ ├── aF.xml │ │ │ │ │ ├── b.xml │ │ │ │ │ ├── bF.xml │ │ │ │ │ ├── c.xml │ │ │ │ │ ├── cF.xml │ │ │ │ │ ├── d.xml │ │ │ │ │ ├── errorSequence.xml │ │ │ │ │ ├── fault.xml │ │ │ │ │ ├── main.xml │ │ │ │ │ ├── request.xml │ │ │ │ │ ├── sequenceOne.xml │ │ │ │ │ ├── sequenceTwo.xml │ │ │ │ │ ├── simpleStockPTFault.xml │ │ │ │ │ └── simpleStockPTFaultSeqOnError.xml │ │ │ │ │ └── templates │ │ │ │ │ └── HttpEPTemplate.xml │ │ │ │ ├── synapseconfig │ │ │ │ ├── CheckAggregateChildContentConfig │ │ │ │ │ └── synapse.xml │ │ │ │ ├── LargeAggregationWithoutTimeoutConfig │ │ │ │ │ └── synapse.xml │ │ │ │ ├── MaxOpenConnections │ │ │ │ │ ├── max_open_connections.xml │ │ │ │ │ ├── nhttp.properties │ │ │ │ │ ├── nhttp │ │ │ │ │ │ └── axis2.xml │ │ │ │ │ ├── passthru-http.properties │ │ │ │ │ └── ptt │ │ │ │ │ │ └── axis2.xml │ │ │ │ ├── addressEndpointConfig │ │ │ │ │ ├── addressEP_Test.xml │ │ │ │ │ └── synapse.xml │ │ │ │ ├── aggregateWithinTimoutConfig │ │ │ │ │ └── synapse.xml │ │ │ │ ├── aggregatedEnclosingElement │ │ │ │ │ └── synapse.xml │ │ │ │ ├── cacheMediator │ │ │ │ │ └── APIMANAGER1838RequestHashGenerator.xml │ │ │ │ ├── class_mediator │ │ │ │ │ └── synapse.xml │ │ │ │ ├── config06 │ │ │ │ │ └── synapse.xml │ │ │ │ ├── config1 │ │ │ │ │ ├── endpoints │ │ │ │ │ │ ├── Axis2EPR.xml │ │ │ │ │ │ ├── BCISEndpoint.xml │ │ │ │ │ │ ├── CreditEpr.xml │ │ │ │ │ │ ├── PersonInfoEpr.xml │ │ │ │ │ │ ├── RSMeansEndpoint.xml │ │ │ │ │ │ ├── RuleServiceEndpoint.xml │ │ │ │ │ │ ├── SimpleStockQuoteService.xml │ │ │ │ │ │ ├── club_profile_ds_endpoint.xml │ │ │ │ │ │ ├── club_profile_ds_lb_endpoint.xml │ │ │ │ │ │ ├── club_record_ds_endpoint.xml │ │ │ │ │ │ ├── club_record_ds_lb_endpoint.xml │ │ │ │ │ │ ├── ds_endpoint.xml │ │ │ │ │ │ ├── geo_endpoint.xml │ │ │ │ │ │ ├── gis_endpoint.xml │ │ │ │ │ │ ├── resut_display_ep.xml │ │ │ │ │ │ ├── samplefailoverendpoint.xml │ │ │ │ │ │ └── samplewsdlendpoint.xml │ │ │ │ │ ├── local-entries │ │ │ │ │ │ ├── ResutDisplayServiceTransform.xml │ │ │ │ │ │ ├── geo_transform.xml │ │ │ │ │ │ ├── resource_proxy_reply_transformation.xml │ │ │ │ │ │ ├── rule_service_transformation.xml │ │ │ │ │ │ ├── testBean.xml │ │ │ │ │ │ └── validate_schema.xml │ │ │ │ │ ├── message-processors │ │ │ │ │ │ └── MProc1.xml │ │ │ │ │ ├── message-store │ │ │ │ │ │ └── MStore1.xml │ │ │ │ │ ├── priority-executors │ │ │ │ │ │ └── samplePriority2.xml │ │ │ │ │ ├── proxy-services │ │ │ │ │ │ ├── DemoProxy.xml │ │ │ │ │ │ └── StockQuoteProxy.xml │ │ │ │ │ ├── registry.xml │ │ │ │ │ ├── sequences │ │ │ │ │ │ ├── fault.xml │ │ │ │ │ │ └── main.xml │ │ │ │ │ ├── synapse.xml │ │ │ │ │ └── tasks │ │ │ │ │ │ └── sampleTask.xml │ │ │ │ ├── config10 │ │ │ │ │ └── synapse.xml │ │ │ │ ├── config11 │ │ │ │ │ └── synapse.xml │ │ │ │ ├── config12 │ │ │ │ │ └── synapse.xml │ │ │ │ ├── config13 │ │ │ │ │ └── synapse.xml │ │ │ │ ├── config16 │ │ │ │ │ └── synapse.xml │ │ │ │ ├── config17 │ │ │ │ │ └── synapse.xml │ │ │ │ ├── config18 │ │ │ │ │ └── synapse.xml │ │ │ │ ├── config19 │ │ │ │ │ └── synapse.xml │ │ │ │ ├── config20 │ │ │ │ │ └── synapse.xml │ │ │ │ ├── config21 │ │ │ │ │ └── synapse.xml │ │ │ │ ├── config3 │ │ │ │ │ ├── proxy-services │ │ │ │ │ │ └── StockQuoteProxy.xml │ │ │ │ │ ├── registry.xml │ │ │ │ │ └── synapse.xml │ │ │ │ ├── config3471 │ │ │ │ │ └── synapse.xml │ │ │ │ ├── config4 │ │ │ │ │ └── proxy-services │ │ │ │ │ │ └── simplePassThoughProxy.xml │ │ │ │ ├── config46 │ │ │ │ │ └── synapse.xml │ │ │ │ ├── config5 │ │ │ │ │ └── proxy-services │ │ │ │ │ │ └── simplePassThoughWithWSDL.xml │ │ │ │ ├── config54 │ │ │ │ │ └── synapse.xml │ │ │ │ ├── config55 │ │ │ │ │ └── synapse.xml │ │ │ │ ├── config6 │ │ │ │ │ └── synapse.xml │ │ │ │ ├── config603 │ │ │ │ │ └── synapse.xml │ │ │ │ ├── config65 │ │ │ │ │ └── synapse.xml │ │ │ │ ├── config66 │ │ │ │ │ └── synapse.xml │ │ │ │ ├── config67 │ │ │ │ │ └── synapse.xml │ │ │ │ ├── config7 │ │ │ │ │ └── synapse.xml │ │ │ │ ├── config8 │ │ │ │ │ ├── classes │ │ │ │ │ │ └── synapse.properties │ │ │ │ │ └── synapse.xml │ │ │ │ ├── config9 │ │ │ │ │ └── synapse.xml │ │ │ │ ├── configFailOver │ │ │ │ │ └── ConfigFailOver.xml │ │ │ │ ├── configForInvaliedXquaryKey │ │ │ │ │ └── synapse.xml │ │ │ │ ├── config_multiple_rule │ │ │ │ │ └── synapse.xml │ │ │ │ ├── config_rule_s3 │ │ │ │ │ └── synapse.xml │ │ │ │ ├── config_single_rule │ │ │ │ │ └── synapse.xml │ │ │ │ ├── config_without_rule │ │ │ │ │ └── synapse.xml │ │ │ │ ├── core │ │ │ │ │ ├── synapse.xml │ │ │ │ │ ├── synapse_add_child_from_property.xml │ │ │ │ │ ├── synapse_add_sibling_from_property.xml │ │ │ │ │ ├── synapse_body_to_child_of_body.xml │ │ │ │ │ ├── synapse_body_to_sibling_of_body.xml │ │ │ │ │ ├── synapse_body_to_xpath_child.xml │ │ │ │ │ ├── synapse_body_to_xpath_sibling.xml │ │ │ │ │ ├── synapse_child_xpath.xml │ │ │ │ │ ├── synapse_envelope1.xml │ │ │ │ │ ├── synapse_replace_envelope_property.xml │ │ │ │ │ ├── synapse_replace_multiple_node.xml │ │ │ │ │ └── synapse_sourcexpath_targetxpath.xml │ │ │ │ ├── core_mediator │ │ │ │ │ ├── synapse.xml │ │ │ │ │ ├── synapseLoopbackMediatorConfig.xml │ │ │ │ │ └── synapseRepondMediatorConfig.xml │ │ │ │ ├── customSSLprofileWithsecurevault │ │ │ │ │ ├── axis2.xml │ │ │ │ │ ├── cipher-text.properties │ │ │ │ │ ├── cipher-tool.properties │ │ │ │ │ ├── password-tmp │ │ │ │ │ └── secret-conf.properties │ │ │ │ ├── default │ │ │ │ │ ├── api │ │ │ │ │ │ ├── StockQuoteAPI.xml │ │ │ │ │ │ └── StockQuoteAPI2.xml │ │ │ │ │ ├── endpoints │ │ │ │ │ │ └── addressEpTest.xml │ │ │ │ │ ├── local-entries │ │ │ │ │ │ └── local-entry-sequence-key.xml │ │ │ │ │ ├── proxy-services │ │ │ │ │ │ ├── SampleProxy.xml │ │ │ │ │ │ ├── StockQuoteProxy.xml │ │ │ │ │ │ └── addressEndPoint.xml │ │ │ │ │ ├── registry.xml │ │ │ │ │ ├── sequences │ │ │ │ │ │ ├── fault.xml │ │ │ │ │ │ └── main.xml │ │ │ │ │ ├── synapse.xml │ │ │ │ │ └── tasks │ │ │ │ │ │ └── SampleInjectToProxyTask.xml │ │ │ │ ├── defaultEndpointConfig │ │ │ │ │ ├── defaultEP_Test.xml │ │ │ │ │ └── synapse.xml │ │ │ │ ├── defaultconfig │ │ │ │ │ └── default-synapse.xml │ │ │ │ ├── enrich │ │ │ │ │ ├── ESBJAVA3676.xml │ │ │ │ │ ├── add_source_as_sibling_in_body.xml │ │ │ │ │ ├── replace_envelop.xml │ │ │ │ │ └── replace_part_of_msg_by_body.xml │ │ │ │ ├── enrich_mediator │ │ │ │ │ ├── add_child_using_xpath_synapse.xml │ │ │ │ │ ├── copy_xpathOf_single_node.xml │ │ │ │ │ ├── replaceBodyOfMessageSynapse.xml │ │ │ │ │ ├── replaceBodySynapse.xml │ │ │ │ │ ├── replace_body_using_source_type_body.xml │ │ │ │ │ └── synapse.xml │ │ │ │ ├── esbjava2283 │ │ │ │ │ └── synapse.xml │ │ │ │ ├── filters │ │ │ │ │ ├── conditional_router │ │ │ │ │ │ ├── dynamic_seq1.xml │ │ │ │ │ │ ├── synapse1.xml │ │ │ │ │ │ ├── synapse2.xml │ │ │ │ │ │ ├── synapse3.xml │ │ │ │ │ │ ├── synapse4.xml │ │ │ │ │ │ ├── synapse5.xml │ │ │ │ │ │ └── synapse6.xml │ │ │ │ │ ├── filter │ │ │ │ │ │ ├── synapse1.xml │ │ │ │ │ │ ├── synapse2.xml │ │ │ │ │ │ └── synapse3.xml │ │ │ │ │ ├── in │ │ │ │ │ │ └── synapse.xml │ │ │ │ │ ├── out │ │ │ │ │ │ ├── multiple_out_mediators_config.xml │ │ │ │ │ │ └── out_without_children.xml │ │ │ │ │ ├── switchMediator │ │ │ │ │ │ ├── ESBJAVA_1857_switch_case_synapse.xml │ │ │ │ │ │ ├── Invalid_xpath.xml │ │ │ │ │ │ ├── SOAP11_SOAP12_XPath.xml │ │ │ │ │ │ ├── SOAP11_SOAP12_XPath_nagative_case.xml │ │ │ │ │ │ ├── basic_and_without_default_case_synapse.xml │ │ │ │ │ │ ├── further_processing_of_switch_after_match.xml │ │ │ │ │ │ ├── invalid_prefix.xml │ │ │ │ │ │ ├── onerror_sequence_within_switch_config.xml │ │ │ │ │ │ ├── switch_inside_switch_config.xml │ │ │ │ │ │ └── switching_based_on_address_synapse.xml │ │ │ │ │ └── validate │ │ │ │ │ │ ├── schema1.xml │ │ │ │ │ │ ├── schema1a.xml │ │ │ │ │ │ ├── synapse1.xml │ │ │ │ │ │ └── validate_synapse.xml │ │ │ │ ├── groovy │ │ │ │ │ ├── axis2.xml │ │ │ │ │ ├── synapse_with_groovy.xml │ │ │ │ │ └── synapse_without_groovy.xml │ │ │ │ ├── healthcarescenario │ │ │ │ │ ├── GeoService.wsdl │ │ │ │ │ ├── HCCService.wsdl │ │ │ │ │ ├── HCFacilityLocatorService.wsdl │ │ │ │ │ ├── HCInformationService.wsdl │ │ │ │ │ └── synapse.xml │ │ │ │ ├── highTimeoutValueConfig │ │ │ │ │ └── synapse.xml │ │ │ │ ├── http_transport │ │ │ │ │ ├── set_host_http_header.xml │ │ │ │ │ └── set_host_http_header_with_port.xml │ │ │ │ ├── log_mediator │ │ │ │ │ └── synapse.xml │ │ │ │ ├── messageStore │ │ │ │ │ ├── ESBJAVA-2907StoreOmElementsAsProperties.xml │ │ │ │ │ ├── axis2.xml │ │ │ │ │ ├── sample_700.xml │ │ │ │ │ ├── scriptMediator │ │ │ │ │ │ └── axis2.xml │ │ │ │ │ ├── special_character.xml │ │ │ │ │ └── test.xml │ │ │ │ ├── messagewithoutcontent │ │ │ │ │ ├── request.xml │ │ │ │ │ ├── synapse.xml │ │ │ │ │ └── xmlrequest.xml │ │ │ │ ├── nhttp_transport │ │ │ │ │ ├── content_type_charset_synapse.xml │ │ │ │ │ ├── nhttp.properties │ │ │ │ │ └── nhttp_test_synapse.xml │ │ │ │ ├── nonBlockingHTTP │ │ │ │ │ ├── axis2.xml │ │ │ │ │ └── local_jms_proxy_synapse.xml │ │ │ │ ├── onCompleteSequenceConfig │ │ │ │ │ ├── sequences │ │ │ │ │ │ └── dynamic_seq1.xml │ │ │ │ │ └── synapse.xml │ │ │ │ ├── onCompleteSequenceFromGreg │ │ │ │ │ ├── sequences │ │ │ │ │ │ └── dynamic_seq1.xml │ │ │ │ │ └── synapse.xml │ │ │ │ ├── patchAutomation │ │ │ │ │ ├── failover_endpoint_for_single_leaf_endpoint_synapse.xml │ │ │ │ │ ├── https_request_via_http_proxy_synapse.xml │ │ │ │ │ ├── non_ascii_value_properties_synapse_.xml │ │ │ │ │ └── url_encoded_form_post_proxy.xml │ │ │ │ ├── patch_automation │ │ │ │ │ ├── CARBON11016_synapse.xml │ │ │ │ │ ├── CloneArtifactTestCase.xml │ │ │ │ │ ├── failover_endpoint_for_single_leaf_endpoint_synapse.xml │ │ │ │ │ └── load_balance_failover_synapse.xml │ │ │ │ ├── payloadmediatype │ │ │ │ │ ├── JSONPayloadXMLSpecialCharEscapeTest.xml │ │ │ │ │ ├── media_type_xml_json_default.xml │ │ │ │ │ ├── no_arguments.xml │ │ │ │ │ ├── value_argument.xml │ │ │ │ │ └── valueandexpression_arguments.xml │ │ │ │ ├── processor │ │ │ │ │ └── forwarding │ │ │ │ │ │ ├── InMemoryStoreSynapse1.xml │ │ │ │ │ │ ├── Retry_On_SOAPFault_In_Out.xml │ │ │ │ │ │ └── Retry_On_SOAPFault_true_In_Out.xml │ │ │ │ ├── propertyMediatorConfig │ │ │ │ │ └── synapse.xml │ │ │ │ ├── propertyWithinIterateConfig │ │ │ │ │ └── synapse.xml │ │ │ │ ├── proxyadmin │ │ │ │ │ └── testconfig.xml │ │ │ │ ├── registry │ │ │ │ │ └── caching │ │ │ │ │ │ ├── registry.xml │ │ │ │ │ │ ├── registry_original.xml │ │ │ │ │ │ └── sample.txt │ │ │ │ ├── rest │ │ │ │ │ ├── axis2-service-synapse.xml │ │ │ │ │ ├── complex_params_api.xml │ │ │ │ │ ├── customer-service-proxy.xml │ │ │ │ │ ├── rest-client-and-rest-service.xml │ │ │ │ │ ├── rest-service-proxy.xml │ │ │ │ │ ├── student-service-synapse.xml │ │ │ │ │ ├── synapse.xml │ │ │ │ │ └── uri-template-synapse.xml │ │ │ │ ├── script_mediator │ │ │ │ │ ├── groovy_script_with_setPayloadJson.xml │ │ │ │ │ ├── groovy_script_with_the_mediator.xml │ │ │ │ │ ├── jsfromEntry_config.xml │ │ │ │ │ ├── retrieve_script_from_gov_reg_mediation.xml │ │ │ │ │ ├── synapse.xml │ │ │ │ │ ├── synapse3.xml │ │ │ │ │ └── synapse_generate_fault.xml │ │ │ │ ├── sendMediatorConfig │ │ │ │ │ ├── synapse.xml │ │ │ │ │ ├── test_sequences_config │ │ │ │ │ │ └── receivingSequence_Conf.xml │ │ │ │ │ ├── test_sequences_gov │ │ │ │ │ │ └── receivingSequence_Gov.xml │ │ │ │ │ └── test_sequences_local │ │ │ │ │ │ └── receivingSequence_Local.xml │ │ │ │ ├── send_mediator │ │ │ │ │ ├── endpoints │ │ │ │ │ │ └── registry_endpoint.xml │ │ │ │ │ └── synapse_config.xml │ │ │ │ ├── servletTransport │ │ │ │ │ ├── axis2.xml │ │ │ │ │ ├── pox_servlet_transport_axis2.xml │ │ │ │ │ └── soap_2_pox.xml │ │ │ │ ├── smooks │ │ │ │ │ ├── axis2.xml │ │ │ │ │ ├── large_csv_smooks_test.xml │ │ │ │ │ ├── person.csv │ │ │ │ │ ├── smooks_config.xml │ │ │ │ │ └── smooks_synapse.xml │ │ │ │ ├── throttle │ │ │ │ │ ├── ConcurrencyAndRequestBasedThrottlingConcurrency.xml │ │ │ │ │ ├── ConcurrencyAndRequestBasedThrottlingRequest.xml │ │ │ │ │ ├── MaximumConcurrentAccess.xml │ │ │ │ │ ├── concurrencyTest.xml │ │ │ │ │ ├── concurrencyTestMaxConcurrentAccessOne.xml │ │ │ │ │ ├── concurrentAccessLargeRequestCountSmallTest.xml │ │ │ │ │ ├── invalidThrottlingPolicyTest.xml │ │ │ │ │ └── specifyThrottlingPolicyAsARegistryKey.xml │ │ │ │ ├── validatemediator │ │ │ │ │ ├── dynamickey.xml │ │ │ │ │ ├── invalid_dynamic_key.xml │ │ │ │ │ ├── staticKey.xml │ │ │ │ │ ├── validate_secure_false.xml │ │ │ │ │ ├── validate_secure_true.xml │ │ │ │ │ ├── validate_with_invalid_Xpath.xml │ │ │ │ │ ├── validate_with_proxy.xml │ │ │ │ │ └── validate_with_resources.xml │ │ │ │ ├── validatemediator2 │ │ │ │ │ └── synapse.xml │ │ │ │ ├── vfsTransport │ │ │ │ │ ├── 3_files │ │ │ │ │ │ ├── Polling_Test-2.txt │ │ │ │ │ │ ├── Polling_Test-3.txt │ │ │ │ │ │ └── Polling_Test.txt │ │ │ │ │ ├── ESBJAVA4770 │ │ │ │ │ │ ├── axis2.xml │ │ │ │ │ │ ├── deployment.toml │ │ │ │ │ │ └── vfsKeystore.jks │ │ │ │ │ ├── edi.txt │ │ │ │ │ ├── fail.xml │ │ │ │ │ ├── in │ │ │ │ │ │ ├── Polling_Test-10.txt │ │ │ │ │ │ ├── Polling_Test-100.txt │ │ │ │ │ │ ├── Polling_Test-11.txt │ │ │ │ │ │ ├── Polling_Test-12.txt │ │ │ │ │ │ ├── Polling_Test-13.txt │ │ │ │ │ │ ├── Polling_Test-14.txt │ │ │ │ │ │ ├── Polling_Test-15.txt │ │ │ │ │ │ ├── Polling_Test-16.txt │ │ │ │ │ │ ├── Polling_Test-17.txt │ │ │ │ │ │ ├── Polling_Test-18.txt │ │ │ │ │ │ ├── Polling_Test-19.txt │ │ │ │ │ │ ├── Polling_Test-2.txt │ │ │ │ │ │ ├── Polling_Test-20.txt │ │ │ │ │ │ ├── Polling_Test-21.txt │ │ │ │ │ │ ├── Polling_Test-22.txt │ │ │ │ │ │ ├── Polling_Test-23.txt │ │ │ │ │ │ ├── Polling_Test-24.txt │ │ │ │ │ │ ├── Polling_Test-25.txt │ │ │ │ │ │ ├── Polling_Test-26.txt │ │ │ │ │ │ ├── Polling_Test-27.txt │ │ │ │ │ │ ├── Polling_Test-28.txt │ │ │ │ │ │ ├── Polling_Test-29.txt │ │ │ │ │ │ ├── Polling_Test-3.txt │ │ │ │ │ │ ├── Polling_Test-30.txt │ │ │ │ │ │ ├── Polling_Test-31.txt │ │ │ │ │ │ ├── Polling_Test-32.txt │ │ │ │ │ │ ├── Polling_Test-33.txt │ │ │ │ │ │ ├── Polling_Test-34.txt │ │ │ │ │ │ ├── Polling_Test-35.txt │ │ │ │ │ │ ├── Polling_Test-36.txt │ │ │ │ │ │ ├── Polling_Test-37.txt │ │ │ │ │ │ ├── Polling_Test-38.txt │ │ │ │ │ │ ├── Polling_Test-39.txt │ │ │ │ │ │ ├── Polling_Test-4.txt │ │ │ │ │ │ ├── Polling_Test-40.txt │ │ │ │ │ │ ├── Polling_Test-41.txt │ │ │ │ │ │ ├── Polling_Test-42.txt │ │ │ │ │ │ ├── Polling_Test-43.txt │ │ │ │ │ │ ├── Polling_Test-44.txt │ │ │ │ │ │ ├── Polling_Test-45.txt │ │ │ │ │ │ ├── Polling_Test-46.txt │ │ │ │ │ │ ├── Polling_Test-47.txt │ │ │ │ │ │ ├── Polling_Test-48.txt │ │ │ │ │ │ ├── Polling_Test-49.txt │ │ │ │ │ │ ├── Polling_Test-5.txt │ │ │ │ │ │ ├── Polling_Test-50.txt │ │ │ │ │ │ ├── Polling_Test-51.txt │ │ │ │ │ │ ├── Polling_Test-52.txt │ │ │ │ │ │ ├── Polling_Test-53.txt │ │ │ │ │ │ ├── Polling_Test-54.txt │ │ │ │ │ │ ├── Polling_Test-55.txt │ │ │ │ │ │ ├── Polling_Test-56.txt │ │ │ │ │ │ ├── Polling_Test-57.txt │ │ │ │ │ │ ├── Polling_Test-58.txt │ │ │ │ │ │ ├── Polling_Test-59.txt │ │ │ │ │ │ ├── Polling_Test-6.txt │ │ │ │ │ │ ├── Polling_Test-60.txt │ │ │ │ │ │ ├── Polling_Test-61.txt │ │ │ │ │ │ ├── Polling_Test-62.txt │ │ │ │ │ │ ├── Polling_Test-63.txt │ │ │ │ │ │ ├── Polling_Test-64.txt │ │ │ │ │ │ ├── Polling_Test-65.txt │ │ │ │ │ │ ├── Polling_Test-66.txt │ │ │ │ │ │ ├── Polling_Test-67.txt │ │ │ │ │ │ ├── Polling_Test-68.txt │ │ │ │ │ │ ├── Polling_Test-69.txt │ │ │ │ │ │ ├── Polling_Test-7.txt │ │ │ │ │ │ ├── Polling_Test-70.txt │ │ │ │ │ │ ├── Polling_Test-71.txt │ │ │ │ │ │ ├── Polling_Test-72.txt │ │ │ │ │ │ ├── Polling_Test-73.txt │ │ │ │ │ │ ├── Polling_Test-74.txt │ │ │ │ │ │ ├── Polling_Test-75.txt │ │ │ │ │ │ ├── Polling_Test-76.txt │ │ │ │ │ │ ├── Polling_Test-77.txt │ │ │ │ │ │ ├── Polling_Test-78.txt │ │ │ │ │ │ ├── Polling_Test-79.txt │ │ │ │ │ │ ├── Polling_Test-8.txt │ │ │ │ │ │ ├── Polling_Test-80.txt │ │ │ │ │ │ ├── Polling_Test-81.txt │ │ │ │ │ │ ├── Polling_Test-82.txt │ │ │ │ │ │ ├── Polling_Test-83.txt │ │ │ │ │ │ ├── Polling_Test-84.txt │ │ │ │ │ │ ├── Polling_Test-85.txt │ │ │ │ │ │ ├── Polling_Test-86.txt │ │ │ │ │ │ ├── Polling_Test-87.txt │ │ │ │ │ │ ├── Polling_Test-88.txt │ │ │ │ │ │ ├── Polling_Test-89.txt │ │ │ │ │ │ ├── Polling_Test-9.txt │ │ │ │ │ │ ├── Polling_Test-90.txt │ │ │ │ │ │ ├── Polling_Test-91.txt │ │ │ │ │ │ ├── Polling_Test-92.txt │ │ │ │ │ │ ├── Polling_Test-93.txt │ │ │ │ │ │ ├── Polling_Test-94.txt │ │ │ │ │ │ ├── Polling_Test-95.txt │ │ │ │ │ │ ├── Polling_Test-96.txt │ │ │ │ │ │ ├── Polling_Test-97.txt │ │ │ │ │ │ ├── Polling_Test-98.txt │ │ │ │ │ │ ├── Polling_Test-99.txt │ │ │ │ │ │ └── Polling_Test.txt │ │ │ │ │ ├── in_server_restart │ │ │ │ │ │ ├── Polling_Test-10.txt │ │ │ │ │ │ ├── Polling_Test-100.txt │ │ │ │ │ │ ├── Polling_Test-101.txt │ │ │ │ │ │ ├── Polling_Test-102.txt │ │ │ │ │ │ ├── Polling_Test-103.txt │ │ │ │ │ │ ├── Polling_Test-104.txt │ │ │ │ │ │ ├── Polling_Test-105.txt │ │ │ │ │ │ ├── Polling_Test-106.txt │ │ │ │ │ │ ├── Polling_Test-107.txt │ │ │ │ │ │ ├── Polling_Test-108.txt │ │ │ │ │ │ ├── Polling_Test-109.txt │ │ │ │ │ │ ├── Polling_Test-11.txt │ │ │ │ │ │ ├── Polling_Test-110.txt │ │ │ │ │ │ ├── Polling_Test-111.txt │ │ │ │ │ │ ├── Polling_Test-112.txt │ │ │ │ │ │ ├── Polling_Test-113.txt │ │ │ │ │ │ ├── Polling_Test-114.txt │ │ │ │ │ │ ├── Polling_Test-115.txt │ │ │ │ │ │ ├── Polling_Test-116.txt │ │ │ │ │ │ ├── Polling_Test-117.txt │ │ │ │ │ │ ├── Polling_Test-118.txt │ │ │ │ │ │ ├── Polling_Test-119.txt │ │ │ │ │ │ ├── Polling_Test-12.txt │ │ │ │ │ │ ├── Polling_Test-120.txt │ │ │ │ │ │ ├── Polling_Test-121.txt │ │ │ │ │ │ ├── Polling_Test-122.txt │ │ │ │ │ │ ├── Polling_Test-123.txt │ │ │ │ │ │ ├── Polling_Test-124.txt │ │ │ │ │ │ ├── Polling_Test-125.txt │ │ │ │ │ │ ├── Polling_Test-126.txt │ │ │ │ │ │ ├── Polling_Test-127.txt │ │ │ │ │ │ ├── Polling_Test-128.txt │ │ │ │ │ │ ├── Polling_Test-129.txt │ │ │ │ │ │ ├── Polling_Test-13.txt │ │ │ │ │ │ ├── Polling_Test-130.txt │ │ │ │ │ │ ├── Polling_Test-131.txt │ │ │ │ │ │ ├── Polling_Test-132.txt │ │ │ │ │ │ ├── Polling_Test-133.txt │ │ │ │ │ │ ├── Polling_Test-134.txt │ │ │ │ │ │ ├── Polling_Test-135.txt │ │ │ │ │ │ ├── Polling_Test-136.txt │ │ │ │ │ │ ├── Polling_Test-137.txt │ │ │ │ │ │ ├── Polling_Test-138.txt │ │ │ │ │ │ ├── Polling_Test-139.txt │ │ │ │ │ │ ├── Polling_Test-14.txt │ │ │ │ │ │ ├── Polling_Test-140.txt │ │ │ │ │ │ ├── Polling_Test-141.txt │ │ │ │ │ │ ├── Polling_Test-142.txt │ │ │ │ │ │ ├── Polling_Test-143.txt │ │ │ │ │ │ ├── Polling_Test-144.txt │ │ │ │ │ │ ├── Polling_Test-145.txt │ │ │ │ │ │ ├── Polling_Test-146.txt │ │ │ │ │ │ ├── Polling_Test-147.txt │ │ │ │ │ │ ├── Polling_Test-148.txt │ │ │ │ │ │ ├── Polling_Test-149.txt │ │ │ │ │ │ ├── Polling_Test-15.txt │ │ │ │ │ │ ├── Polling_Test-150.txt │ │ │ │ │ │ ├── Polling_Test-151.txt │ │ │ │ │ │ ├── Polling_Test-152.txt │ │ │ │ │ │ ├── Polling_Test-153.txt │ │ │ │ │ │ ├── Polling_Test-154.txt │ │ │ │ │ │ ├── Polling_Test-155.txt │ │ │ │ │ │ ├── Polling_Test-156.txt │ │ │ │ │ │ ├── Polling_Test-157.txt │ │ │ │ │ │ ├── Polling_Test-158.txt │ │ │ │ │ │ ├── Polling_Test-159.txt │ │ │ │ │ │ ├── Polling_Test-16.txt │ │ │ │ │ │ ├── Polling_Test-160.txt │ │ │ │ │ │ ├── Polling_Test-161.txt │ │ │ │ │ │ ├── Polling_Test-162.txt │ │ │ │ │ │ ├── Polling_Test-163.txt │ │ │ │ │ │ ├── Polling_Test-164.txt │ │ │ │ │ │ ├── Polling_Test-165.txt │ │ │ │ │ │ ├── Polling_Test-166.txt │ │ │ │ │ │ ├── Polling_Test-167.txt │ │ │ │ │ │ ├── Polling_Test-168.txt │ │ │ │ │ │ ├── Polling_Test-169.txt │ │ │ │ │ │ ├── Polling_Test-17.txt │ │ │ │ │ │ ├── Polling_Test-170.txt │ │ │ │ │ │ ├── Polling_Test-171.txt │ │ │ │ │ │ ├── Polling_Test-172.txt │ │ │ │ │ │ ├── Polling_Test-173.txt │ │ │ │ │ │ ├── Polling_Test-174.txt │ │ │ │ │ │ ├── Polling_Test-175.txt │ │ │ │ │ │ ├── Polling_Test-176.txt │ │ │ │ │ │ ├── Polling_Test-177.txt │ │ │ │ │ │ ├── Polling_Test-178.txt │ │ │ │ │ │ ├── Polling_Test-179.txt │ │ │ │ │ │ ├── Polling_Test-18.txt │ │ │ │ │ │ ├── Polling_Test-180.txt │ │ │ │ │ │ ├── Polling_Test-181.txt │ │ │ │ │ │ ├── Polling_Test-182.txt │ │ │ │ │ │ ├── Polling_Test-183.txt │ │ │ │ │ │ ├── Polling_Test-184.txt │ │ │ │ │ │ ├── Polling_Test-185.txt │ │ │ │ │ │ ├── Polling_Test-186.txt │ │ │ │ │ │ ├── Polling_Test-187.txt │ │ │ │ │ │ ├── Polling_Test-188.txt │ │ │ │ │ │ ├── Polling_Test-189.txt │ │ │ │ │ │ ├── Polling_Test-19.txt │ │ │ │ │ │ ├── Polling_Test-190.txt │ │ │ │ │ │ ├── Polling_Test-191.txt │ │ │ │ │ │ ├── Polling_Test-192.txt │ │ │ │ │ │ ├── Polling_Test-193.txt │ │ │ │ │ │ ├── Polling_Test-194.txt │ │ │ │ │ │ ├── Polling_Test-195.txt │ │ │ │ │ │ ├── Polling_Test-196.txt │ │ │ │ │ │ ├── Polling_Test-197.txt │ │ │ │ │ │ ├── Polling_Test-198.txt │ │ │ │ │ │ ├── Polling_Test-199.txt │ │ │ │ │ │ ├── Polling_Test-2.txt │ │ │ │ │ │ ├── Polling_Test-20.txt │ │ │ │ │ │ ├── Polling_Test-200.txt │ │ │ │ │ │ ├── Polling_Test-201.txt │ │ │ │ │ │ ├── Polling_Test-202.txt │ │ │ │ │ │ ├── Polling_Test-203.txt │ │ │ │ │ │ ├── Polling_Test-204.txt │ │ │ │ │ │ ├── Polling_Test-205.txt │ │ │ │ │ │ ├── Polling_Test-206.txt │ │ │ │ │ │ ├── Polling_Test-207.txt │ │ │ │ │ │ ├── Polling_Test-208.txt │ │ │ │ │ │ ├── Polling_Test-209.txt │ │ │ │ │ │ ├── Polling_Test-21.txt │ │ │ │ │ │ ├── Polling_Test-210.txt │ │ │ │ │ │ ├── Polling_Test-211.txt │ │ │ │ │ │ ├── Polling_Test-212.txt │ │ │ │ │ │ ├── Polling_Test-213.txt │ │ │ │ │ │ ├── Polling_Test-214.txt │ │ │ │ │ │ ├── Polling_Test-215.txt │ │ │ │ │ │ ├── Polling_Test-216.txt │ │ │ │ │ │ ├── Polling_Test-217.txt │ │ │ │ │ │ ├── Polling_Test-218.txt │ │ │ │ │ │ ├── Polling_Test-219.txt │ │ │ │ │ │ ├── Polling_Test-22.txt │ │ │ │ │ │ ├── Polling_Test-220.txt │ │ │ │ │ │ ├── Polling_Test-221.txt │ │ │ │ │ │ ├── Polling_Test-222.txt │ │ │ │ │ │ ├── Polling_Test-223.txt │ │ │ │ │ │ ├── Polling_Test-224.txt │ │ │ │ │ │ ├── Polling_Test-225.txt │ │ │ │ │ │ ├── Polling_Test-226.txt │ │ │ │ │ │ ├── Polling_Test-227.txt │ │ │ │ │ │ ├── Polling_Test-228.txt │ │ │ │ │ │ ├── Polling_Test-229.txt │ │ │ │ │ │ ├── Polling_Test-23.txt │ │ │ │ │ │ ├── Polling_Test-230.txt │ │ │ │ │ │ ├── Polling_Test-231.txt │ │ │ │ │ │ ├── Polling_Test-232.txt │ │ │ │ │ │ ├── Polling_Test-233.txt │ │ │ │ │ │ ├── Polling_Test-234.txt │ │ │ │ │ │ ├── Polling_Test-235.txt │ │ │ │ │ │ ├── Polling_Test-236.txt │ │ │ │ │ │ ├── Polling_Test-237.txt │ │ │ │ │ │ ├── Polling_Test-238.txt │ │ │ │ │ │ ├── Polling_Test-239.txt │ │ │ │ │ │ ├── Polling_Test-24.txt │ │ │ │ │ │ ├── Polling_Test-240.txt │ │ │ │ │ │ ├── Polling_Test-241.txt │ │ │ │ │ │ ├── Polling_Test-242.txt │ │ │ │ │ │ ├── Polling_Test-243.txt │ │ │ │ │ │ ├── Polling_Test-244.txt │ │ │ │ │ │ ├── Polling_Test-245.txt │ │ │ │ │ │ ├── Polling_Test-246.txt │ │ │ │ │ │ ├── Polling_Test-247.txt │ │ │ │ │ │ ├── Polling_Test-248.txt │ │ │ │ │ │ ├── Polling_Test-249.txt │ │ │ │ │ │ ├── Polling_Test-25.txt │ │ │ │ │ │ ├── Polling_Test-250.txt │ │ │ │ │ │ ├── Polling_Test-251.txt │ │ │ │ │ │ ├── Polling_Test-252.txt │ │ │ │ │ │ ├── Polling_Test-253.txt │ │ │ │ │ │ ├── Polling_Test-254.txt │ │ │ │ │ │ ├── Polling_Test-255.txt │ │ │ │ │ │ ├── Polling_Test-256.txt │ │ │ │ │ │ ├── Polling_Test-257.txt │ │ │ │ │ │ ├── Polling_Test-258.txt │ │ │ │ │ │ ├── Polling_Test-259.txt │ │ │ │ │ │ ├── Polling_Test-26.txt │ │ │ │ │ │ ├── Polling_Test-260.txt │ │ │ │ │ │ ├── Polling_Test-261.txt │ │ │ │ │ │ ├── Polling_Test-262.txt │ │ │ │ │ │ ├── Polling_Test-263.txt │ │ │ │ │ │ ├── Polling_Test-264.txt │ │ │ │ │ │ ├── Polling_Test-265.txt │ │ │ │ │ │ ├── Polling_Test-266.txt │ │ │ │ │ │ ├── Polling_Test-267.txt │ │ │ │ │ │ ├── Polling_Test-268.txt │ │ │ │ │ │ ├── Polling_Test-269.txt │ │ │ │ │ │ ├── Polling_Test-27.txt │ │ │ │ │ │ ├── Polling_Test-270.txt │ │ │ │ │ │ ├── Polling_Test-271.txt │ │ │ │ │ │ ├── Polling_Test-272.txt │ │ │ │ │ │ ├── Polling_Test-273.txt │ │ │ │ │ │ ├── Polling_Test-274.txt │ │ │ │ │ │ ├── Polling_Test-275.txt │ │ │ │ │ │ ├── Polling_Test-276.txt │ │ │ │ │ │ ├── Polling_Test-277.txt │ │ │ │ │ │ ├── Polling_Test-278.txt │ │ │ │ │ │ ├── Polling_Test-279.txt │ │ │ │ │ │ ├── Polling_Test-28.txt │ │ │ │ │ │ ├── Polling_Test-280.txt │ │ │ │ │ │ ├── Polling_Test-281.txt │ │ │ │ │ │ ├── Polling_Test-282.txt │ │ │ │ │ │ ├── Polling_Test-283.txt │ │ │ │ │ │ ├── Polling_Test-284.txt │ │ │ │ │ │ ├── Polling_Test-285.txt │ │ │ │ │ │ ├── Polling_Test-286.txt │ │ │ │ │ │ ├── Polling_Test-287.txt │ │ │ │ │ │ ├── Polling_Test-288.txt │ │ │ │ │ │ ├── Polling_Test-289.txt │ │ │ │ │ │ ├── Polling_Test-29.txt │ │ │ │ │ │ ├── Polling_Test-290.txt │ │ │ │ │ │ ├── Polling_Test-291.txt │ │ │ │ │ │ ├── Polling_Test-292.txt │ │ │ │ │ │ ├── Polling_Test-293.txt │ │ │ │ │ │ ├── Polling_Test-294.txt │ │ │ │ │ │ ├── Polling_Test-295.txt │ │ │ │ │ │ ├── Polling_Test-296.txt │ │ │ │ │ │ ├── Polling_Test-297.txt │ │ │ │ │ │ ├── Polling_Test-298.txt │ │ │ │ │ │ ├── Polling_Test-299.txt │ │ │ │ │ │ ├── Polling_Test-3.txt │ │ │ │ │ │ ├── Polling_Test-30.txt │ │ │ │ │ │ ├── Polling_Test-300.txt │ │ │ │ │ │ ├── Polling_Test-301.txt │ │ │ │ │ │ ├── Polling_Test-302.txt │ │ │ │ │ │ ├── Polling_Test-303.txt │ │ │ │ │ │ ├── Polling_Test-304.txt │ │ │ │ │ │ ├── Polling_Test-305.txt │ │ │ │ │ │ ├── Polling_Test-306.txt │ │ │ │ │ │ ├── Polling_Test-307.txt │ │ │ │ │ │ ├── Polling_Test-308.txt │ │ │ │ │ │ ├── Polling_Test-309.txt │ │ │ │ │ │ ├── Polling_Test-31.txt │ │ │ │ │ │ ├── Polling_Test-310.txt │ │ │ │ │ │ ├── Polling_Test-311.txt │ │ │ │ │ │ ├── Polling_Test-312.txt │ │ │ │ │ │ ├── Polling_Test-313.txt │ │ │ │ │ │ ├── Polling_Test-314.txt │ │ │ │ │ │ ├── Polling_Test-315.txt │ │ │ │ │ │ ├── Polling_Test-316.txt │ │ │ │ │ │ ├── Polling_Test-317.txt │ │ │ │ │ │ ├── Polling_Test-318.txt │ │ │ │ │ │ ├── Polling_Test-319.txt │ │ │ │ │ │ ├── Polling_Test-32.txt │ │ │ │ │ │ ├── Polling_Test-320.txt │ │ │ │ │ │ ├── Polling_Test-321.txt │ │ │ │ │ │ ├── Polling_Test-322.txt │ │ │ │ │ │ ├── Polling_Test-323.txt │ │ │ │ │ │ ├── Polling_Test-324.txt │ │ │ │ │ │ ├── Polling_Test-325.txt │ │ │ │ │ │ ├── Polling_Test-326.txt │ │ │ │ │ │ ├── Polling_Test-327.txt │ │ │ │ │ │ ├── Polling_Test-328.txt │ │ │ │ │ │ ├── Polling_Test-329.txt │ │ │ │ │ │ ├── Polling_Test-33.txt │ │ │ │ │ │ ├── Polling_Test-330.txt │ │ │ │ │ │ ├── Polling_Test-331.txt │ │ │ │ │ │ ├── Polling_Test-332.txt │ │ │ │ │ │ ├── Polling_Test-333.txt │ │ │ │ │ │ ├── Polling_Test-334.txt │ │ │ │ │ │ ├── Polling_Test-335.txt │ │ │ │ │ │ ├── Polling_Test-336.txt │ │ │ │ │ │ ├── Polling_Test-337.txt │ │ │ │ │ │ ├── Polling_Test-338.txt │ │ │ │ │ │ ├── Polling_Test-339.txt │ │ │ │ │ │ ├── Polling_Test-34.txt │ │ │ │ │ │ ├── Polling_Test-340.txt │ │ │ │ │ │ ├── Polling_Test-341.txt │ │ │ │ │ │ ├── Polling_Test-342.txt │ │ │ │ │ │ ├── Polling_Test-343.txt │ │ │ │ │ │ ├── Polling_Test-344.txt │ │ │ │ │ │ ├── Polling_Test-345.txt │ │ │ │ │ │ ├── Polling_Test-346.txt │ │ │ │ │ │ ├── Polling_Test-347.txt │ │ │ │ │ │ ├── Polling_Test-348.txt │ │ │ │ │ │ ├── Polling_Test-349.txt │ │ │ │ │ │ ├── Polling_Test-35.txt │ │ │ │ │ │ ├── Polling_Test-350.txt │ │ │ │ │ │ ├── Polling_Test-351.txt │ │ │ │ │ │ ├── Polling_Test-352.txt │ │ │ │ │ │ ├── Polling_Test-353.txt │ │ │ │ │ │ ├── Polling_Test-354.txt │ │ │ │ │ │ ├── Polling_Test-355.txt │ │ │ │ │ │ ├── Polling_Test-356.txt │ │ │ │ │ │ ├── Polling_Test-357.txt │ │ │ │ │ │ ├── Polling_Test-358.txt │ │ │ │ │ │ ├── Polling_Test-359.txt │ │ │ │ │ │ ├── Polling_Test-36.txt │ │ │ │ │ │ ├── Polling_Test-360.txt │ │ │ │ │ │ ├── Polling_Test-361.txt │ │ │ │ │ │ ├── Polling_Test-362.txt │ │ │ │ │ │ ├── Polling_Test-363.txt │ │ │ │ │ │ ├── Polling_Test-364.txt │ │ │ │ │ │ ├── Polling_Test-365.txt │ │ │ │ │ │ ├── Polling_Test-366.txt │ │ │ │ │ │ ├── Polling_Test-367.txt │ │ │ │ │ │ ├── Polling_Test-368.txt │ │ │ │ │ │ ├── Polling_Test-369.txt │ │ │ │ │ │ ├── Polling_Test-37.txt │ │ │ │ │ │ ├── Polling_Test-370.txt │ │ │ │ │ │ ├── Polling_Test-371.txt │ │ │ │ │ │ ├── Polling_Test-372.txt │ │ │ │ │ │ ├── Polling_Test-373.txt │ │ │ │ │ │ ├── Polling_Test-374.txt │ │ │ │ │ │ ├── Polling_Test-375.txt │ │ │ │ │ │ ├── Polling_Test-376.txt │ │ │ │ │ │ ├── Polling_Test-377.txt │ │ │ │ │ │ ├── Polling_Test-378.txt │ │ │ │ │ │ ├── Polling_Test-379.txt │ │ │ │ │ │ ├── Polling_Test-38.txt │ │ │ │ │ │ ├── Polling_Test-380.txt │ │ │ │ │ │ ├── Polling_Test-381.txt │ │ │ │ │ │ ├── Polling_Test-382.txt │ │ │ │ │ │ ├── Polling_Test-383.txt │ │ │ │ │ │ ├── Polling_Test-384.txt │ │ │ │ │ │ ├── Polling_Test-385.txt │ │ │ │ │ │ ├── Polling_Test-386.txt │ │ │ │ │ │ ├── Polling_Test-387.txt │ │ │ │ │ │ ├── Polling_Test-388.txt │ │ │ │ │ │ ├── Polling_Test-389.txt │ │ │ │ │ │ ├── Polling_Test-39.txt │ │ │ │ │ │ ├── Polling_Test-390.txt │ │ │ │ │ │ ├── Polling_Test-391.txt │ │ │ │ │ │ ├── Polling_Test-392.txt │ │ │ │ │ │ ├── Polling_Test-393.txt │ │ │ │ │ │ ├── Polling_Test-394.txt │ │ │ │ │ │ ├── Polling_Test-395.txt │ │ │ │ │ │ ├── Polling_Test-396.txt │ │ │ │ │ │ ├── Polling_Test-397.txt │ │ │ │ │ │ ├── Polling_Test-398.txt │ │ │ │ │ │ ├── Polling_Test-399.txt │ │ │ │ │ │ ├── Polling_Test-4.txt │ │ │ │ │ │ ├── Polling_Test-40.txt │ │ │ │ │ │ ├── Polling_Test-400.txt │ │ │ │ │ │ ├── Polling_Test-401.txt │ │ │ │ │ │ ├── Polling_Test-402.txt │ │ │ │ │ │ ├── Polling_Test-403.txt │ │ │ │ │ │ ├── Polling_Test-404.txt │ │ │ │ │ │ ├── Polling_Test-405.txt │ │ │ │ │ │ ├── Polling_Test-406.txt │ │ │ │ │ │ ├── Polling_Test-407.txt │ │ │ │ │ │ ├── Polling_Test-408.txt │ │ │ │ │ │ ├── Polling_Test-409.txt │ │ │ │ │ │ ├── Polling_Test-41.txt │ │ │ │ │ │ ├── Polling_Test-410.txt │ │ │ │ │ │ ├── Polling_Test-411.txt │ │ │ │ │ │ ├── Polling_Test-412.txt │ │ │ │ │ │ ├── Polling_Test-413.txt │ │ │ │ │ │ ├── Polling_Test-414.txt │ │ │ │ │ │ ├── Polling_Test-415.txt │ │ │ │ │ │ ├── Polling_Test-416.txt │ │ │ │ │ │ ├── Polling_Test-417.txt │ │ │ │ │ │ ├── Polling_Test-418.txt │ │ │ │ │ │ ├── Polling_Test-419.txt │ │ │ │ │ │ ├── Polling_Test-42.txt │ │ │ │ │ │ ├── Polling_Test-420.txt │ │ │ │ │ │ ├── Polling_Test-421.txt │ │ │ │ │ │ ├── Polling_Test-422.txt │ │ │ │ │ │ ├── Polling_Test-423.txt │ │ │ │ │ │ ├── Polling_Test-424.txt │ │ │ │ │ │ ├── Polling_Test-425.txt │ │ │ │ │ │ ├── Polling_Test-426.txt │ │ │ │ │ │ ├── Polling_Test-427.txt │ │ │ │ │ │ ├── Polling_Test-428.txt │ │ │ │ │ │ ├── Polling_Test-429.txt │ │ │ │ │ │ ├── Polling_Test-43.txt │ │ │ │ │ │ ├── Polling_Test-430.txt │ │ │ │ │ │ ├── Polling_Test-431.txt │ │ │ │ │ │ ├── Polling_Test-432.txt │ │ │ │ │ │ ├── Polling_Test-433.txt │ │ │ │ │ │ ├── Polling_Test-434.txt │ │ │ │ │ │ ├── Polling_Test-435.txt │ │ │ │ │ │ ├── Polling_Test-436.txt │ │ │ │ │ │ ├── Polling_Test-437.txt │ │ │ │ │ │ ├── Polling_Test-438.txt │ │ │ │ │ │ ├── Polling_Test-439.txt │ │ │ │ │ │ ├── Polling_Test-44.txt │ │ │ │ │ │ ├── Polling_Test-440.txt │ │ │ │ │ │ ├── Polling_Test-441.txt │ │ │ │ │ │ ├── Polling_Test-442.txt │ │ │ │ │ │ ├── Polling_Test-443.txt │ │ │ │ │ │ ├── Polling_Test-444.txt │ │ │ │ │ │ ├── Polling_Test-445.txt │ │ │ │ │ │ ├── Polling_Test-446.txt │ │ │ │ │ │ ├── Polling_Test-447.txt │ │ │ │ │ │ ├── Polling_Test-448.txt │ │ │ │ │ │ ├── Polling_Test-449.txt │ │ │ │ │ │ ├── Polling_Test-45.txt │ │ │ │ │ │ ├── Polling_Test-450.txt │ │ │ │ │ │ ├── Polling_Test-451.txt │ │ │ │ │ │ ├── Polling_Test-452.txt │ │ │ │ │ │ ├── Polling_Test-453.txt │ │ │ │ │ │ ├── Polling_Test-454.txt │ │ │ │ │ │ ├── Polling_Test-455.txt │ │ │ │ │ │ ├── Polling_Test-456.txt │ │ │ │ │ │ ├── Polling_Test-457.txt │ │ │ │ │ │ ├── Polling_Test-458.txt │ │ │ │ │ │ ├── Polling_Test-459.txt │ │ │ │ │ │ ├── Polling_Test-46.txt │ │ │ │ │ │ ├── Polling_Test-460.txt │ │ │ │ │ │ ├── Polling_Test-461.txt │ │ │ │ │ │ ├── Polling_Test-462.txt │ │ │ │ │ │ ├── Polling_Test-463.txt │ │ │ │ │ │ ├── Polling_Test-464.txt │ │ │ │ │ │ ├── Polling_Test-465.txt │ │ │ │ │ │ ├── Polling_Test-466.txt │ │ │ │ │ │ ├── Polling_Test-467.txt │ │ │ │ │ │ ├── Polling_Test-468.txt │ │ │ │ │ │ ├── Polling_Test-469.txt │ │ │ │ │ │ ├── Polling_Test-47.txt │ │ │ │ │ │ ├── Polling_Test-470.txt │ │ │ │ │ │ ├── Polling_Test-471.txt │ │ │ │ │ │ ├── Polling_Test-472.txt │ │ │ │ │ │ ├── Polling_Test-473.txt │ │ │ │ │ │ ├── Polling_Test-474.txt │ │ │ │ │ │ ├── Polling_Test-475.txt │ │ │ │ │ │ ├── Polling_Test-476.txt │ │ │ │ │ │ ├── Polling_Test-477.txt │ │ │ │ │ │ ├── Polling_Test-478.txt │ │ │ │ │ │ ├── Polling_Test-479.txt │ │ │ │ │ │ ├── Polling_Test-48.txt │ │ │ │ │ │ ├── Polling_Test-480.txt │ │ │ │ │ │ ├── Polling_Test-481.txt │ │ │ │ │ │ ├── Polling_Test-482.txt │ │ │ │ │ │ ├── Polling_Test-483.txt │ │ │ │ │ │ ├── Polling_Test-484.txt │ │ │ │ │ │ ├── Polling_Test-485.txt │ │ │ │ │ │ ├── Polling_Test-486.txt │ │ │ │ │ │ ├── Polling_Test-487.txt │ │ │ │ │ │ ├── Polling_Test-488.txt │ │ │ │ │ │ ├── Polling_Test-489.txt │ │ │ │ │ │ ├── Polling_Test-49.txt │ │ │ │ │ │ ├── Polling_Test-490.txt │ │ │ │ │ │ ├── Polling_Test-491.txt │ │ │ │ │ │ ├── Polling_Test-492.txt │ │ │ │ │ │ ├── Polling_Test-493.txt │ │ │ │ │ │ ├── Polling_Test-494.txt │ │ │ │ │ │ ├── Polling_Test-495.txt │ │ │ │ │ │ ├── Polling_Test-496.txt │ │ │ │ │ │ ├── Polling_Test-497.txt │ │ │ │ │ │ ├── Polling_Test-498.txt │ │ │ │ │ │ ├── Polling_Test-499.txt │ │ │ │ │ │ ├── Polling_Test-5.txt │ │ │ │ │ │ ├── Polling_Test-50.txt │ │ │ │ │ │ ├── Polling_Test-500.txt │ │ │ │ │ │ ├── Polling_Test-51.txt │ │ │ │ │ │ ├── Polling_Test-52.txt │ │ │ │ │ │ ├── Polling_Test-53.txt │ │ │ │ │ │ ├── Polling_Test-54.txt │ │ │ │ │ │ ├── Polling_Test-55.txt │ │ │ │ │ │ ├── Polling_Test-56.txt │ │ │ │ │ │ ├── Polling_Test-57.txt │ │ │ │ │ │ ├── Polling_Test-58.txt │ │ │ │ │ │ ├── Polling_Test-59.txt │ │ │ │ │ │ ├── Polling_Test-6.txt │ │ │ │ │ │ ├── Polling_Test-60.txt │ │ │ │ │ │ ├── Polling_Test-61.txt │ │ │ │ │ │ ├── Polling_Test-62.txt │ │ │ │ │ │ ├── Polling_Test-63.txt │ │ │ │ │ │ ├── Polling_Test-64.txt │ │ │ │ │ │ ├── Polling_Test-65.txt │ │ │ │ │ │ ├── Polling_Test-66.txt │ │ │ │ │ │ ├── Polling_Test-67.txt │ │ │ │ │ │ ├── Polling_Test-68.txt │ │ │ │ │ │ ├── Polling_Test-69.txt │ │ │ │ │ │ ├── Polling_Test-7.txt │ │ │ │ │ │ ├── Polling_Test-70.txt │ │ │ │ │ │ ├── Polling_Test-71.txt │ │ │ │ │ │ ├── Polling_Test-72.txt │ │ │ │ │ │ ├── Polling_Test-73.txt │ │ │ │ │ │ ├── Polling_Test-74.txt │ │ │ │ │ │ ├── Polling_Test-75.txt │ │ │ │ │ │ ├── Polling_Test-76.txt │ │ │ │ │ │ ├── Polling_Test-77.txt │ │ │ │ │ │ ├── Polling_Test-78.txt │ │ │ │ │ │ ├── Polling_Test-79.txt │ │ │ │ │ │ ├── Polling_Test-8.txt │ │ │ │ │ │ ├── Polling_Test-80.txt │ │ │ │ │ │ ├── Polling_Test-81.txt │ │ │ │ │ │ ├── Polling_Test-82.txt │ │ │ │ │ │ ├── Polling_Test-83.txt │ │ │ │ │ │ ├── Polling_Test-84.txt │ │ │ │ │ │ ├── Polling_Test-85.txt │ │ │ │ │ │ ├── Polling_Test-86.txt │ │ │ │ │ │ ├── Polling_Test-87.txt │ │ │ │ │ │ ├── Polling_Test-88.txt │ │ │ │ │ │ ├── Polling_Test-89.txt │ │ │ │ │ │ ├── Polling_Test-9.txt │ │ │ │ │ │ ├── Polling_Test-90.txt │ │ │ │ │ │ ├── Polling_Test-91.txt │ │ │ │ │ │ ├── Polling_Test-92.txt │ │ │ │ │ │ ├── Polling_Test-93.txt │ │ │ │ │ │ ├── Polling_Test-94.txt │ │ │ │ │ │ ├── Polling_Test-95.txt │ │ │ │ │ │ ├── Polling_Test-96.txt │ │ │ │ │ │ ├── Polling_Test-97.txt │ │ │ │ │ │ ├── Polling_Test-98.txt │ │ │ │ │ │ ├── Polling_Test-99.txt │ │ │ │ │ │ └── Polling_Test.txt │ │ │ │ │ ├── jcifs-1.3.17.jar │ │ │ │ │ ├── out │ │ │ │ │ │ └── test.txt │ │ │ │ │ ├── smooks-config.xml │ │ │ │ │ ├── synapse_config_658.xml │ │ │ │ │ ├── synapse_sample_658_input.xml │ │ │ │ │ ├── test.txt │ │ │ │ │ ├── test.xml │ │ │ │ │ ├── vfs_test_smook_config_at_registry.xml │ │ │ │ │ ├── vfs_test_synapse.xml │ │ │ │ │ └── vfs_xml_to_xml.xml │ │ │ │ └── wsdlEndpointConfig │ │ │ │ │ ├── synapse.xml │ │ │ │ │ └── wsdlEP_Test.xml │ │ │ │ ├── tcp │ │ │ │ └── transport │ │ │ │ │ ├── axis2.xml │ │ │ │ │ ├── client_axis2.xml │ │ │ │ │ └── tcpProxy.xml │ │ │ │ ├── template │ │ │ │ └── httpEpTemplateTest.xml │ │ │ │ └── vfs │ │ │ │ ├── micro-integrator.bat │ │ │ │ └── micro-integrator.sh │ │ │ ├── automation.xml │ │ │ ├── automationXMLSchema.xsd │ │ │ ├── bin │ │ │ └── integrator.sh │ │ │ ├── log4j.properties │ │ │ ├── security │ │ │ ├── keystore │ │ │ │ ├── client.jks │ │ │ │ └── service.jks │ │ │ └── policies │ │ │ │ ├── custom │ │ │ │ ├── scenario1-policy.xml │ │ │ │ ├── scenario10-policy.xml │ │ │ │ ├── scenario11-policy.xml │ │ │ │ ├── scenario12-policy.xml │ │ │ │ ├── scenario13-policy.xml │ │ │ │ ├── scenario14-policy.xml │ │ │ │ ├── scenario15-policy.xml │ │ │ │ ├── scenario16-policy.xml │ │ │ │ ├── scenario17-policy.xml │ │ │ │ ├── scenario2-policy.xml │ │ │ │ ├── scenario3-policy.xml │ │ │ │ ├── scenario4-policy.xml │ │ │ │ ├── scenario5-policy.xml │ │ │ │ ├── scenario6-policy.xml │ │ │ │ ├── scenario7-policy.xml │ │ │ │ ├── scenario8-policy.xml │ │ │ │ └── scenario9-policy.xml │ │ │ │ ├── scenario-config.xml │ │ │ │ ├── scenario1-policy.xml │ │ │ │ ├── scenario10-policy.xml │ │ │ │ ├── scenario11-policy.xml │ │ │ │ ├── scenario12-policy.xml │ │ │ │ ├── scenario13-policy.xml │ │ │ │ ├── scenario14-policy.xml │ │ │ │ ├── scenario15-policy.xml │ │ │ │ ├── scenario16-policy.xml │ │ │ │ ├── scenario17-policy.xml │ │ │ │ ├── scenario2-policy.xml │ │ │ │ ├── scenario27-policy.xml │ │ │ │ ├── scenario3-policy.xml │ │ │ │ ├── scenario4-policy.xml │ │ │ │ ├── scenario5-policy.xml │ │ │ │ ├── scenario6-policy.xml │ │ │ │ ├── scenario7-policy.xml │ │ │ │ ├── scenario8-policy.xml │ │ │ │ └── scenario9-policy.xml │ │ │ ├── sftp │ │ │ ├── getQuote.xml │ │ │ ├── id_rsa │ │ │ └── id_rsa.pub │ │ │ ├── testng.xml │ │ │ └── tomcat │ │ │ └── catalina-server.xml │ ├── tests-platform │ │ ├── pom.xml │ │ ├── tests-coordination │ │ │ ├── .gitignore │ │ │ ├── README.md │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── test │ │ │ │ ├── java │ │ │ │ └── org │ │ │ │ │ └── wso2 │ │ │ │ │ └── micro │ │ │ │ │ └── integrator │ │ │ │ │ ├── TestUtils.java │ │ │ │ │ ├── message │ │ │ │ │ └── processor │ │ │ │ │ │ └── MessageProcessorTests.java │ │ │ │ │ ├── startup │ │ │ │ │ └── StartupTests.java │ │ │ │ │ └── tasks │ │ │ │ │ ├── TaskSchedulingTests.java │ │ │ │ │ └── TaskTests.java │ │ │ │ └── resources │ │ │ │ ├── artifacts │ │ │ │ └── ESB │ │ │ │ │ ├── db-clear-scripts │ │ │ │ │ ├── README.txt │ │ │ │ │ ├── db2 │ │ │ │ │ │ └── db2_cluster.sql │ │ │ │ │ └── oracle │ │ │ │ │ │ └── oracle_cluster.sql │ │ │ │ │ ├── message-processors │ │ │ │ │ ├── ScheduleMessageForwardingProcessor-1.xml │ │ │ │ │ ├── ScheduleMessageForwardingProcessor-2.xml │ │ │ │ │ └── ScheduleMessageForwardingProcessor-3.xml │ │ │ │ │ ├── server │ │ │ │ │ ├── conf │ │ │ │ │ │ ├── deployment.toml │ │ │ │ │ │ ├── deployment.toml.db2 │ │ │ │ │ │ ├── deployment.toml.mariadb │ │ │ │ │ │ ├── deployment.toml.mssql │ │ │ │ │ │ ├── deployment.toml.oracle │ │ │ │ │ │ └── deployment.toml.postgres │ │ │ │ │ └── repository │ │ │ │ │ │ └── deployment │ │ │ │ │ │ └── server │ │ │ │ │ │ └── synapse-configs │ │ │ │ │ │ └── default │ │ │ │ │ │ ├── endpoints │ │ │ │ │ │ └── log-endpoint.xml │ │ │ │ │ │ ├── message-stores │ │ │ │ │ │ ├── InMemoryStore-1.xml │ │ │ │ │ │ └── InMemoryStore-2.xml │ │ │ │ │ │ ├── proxy-services │ │ │ │ │ │ ├── log-proxy.xml │ │ │ │ │ │ └── storeProxy.xml │ │ │ │ │ │ └── sequences │ │ │ │ │ │ └── main.xml │ │ │ │ │ └── tasks │ │ │ │ │ ├── completed-task.xml │ │ │ │ │ ├── pinned-task.xml │ │ │ │ │ ├── task-1.xml │ │ │ │ │ └── task-2.xml │ │ │ │ ├── automation.xml │ │ │ │ ├── automationXMLSchema.xsd │ │ │ │ ├── log4j.properties │ │ │ │ └── testng.xml │ │ ├── tests-rabbitmq │ │ │ ├── .gitignore │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── test │ │ │ │ ├── java │ │ │ │ └── org │ │ │ │ │ └── wso2 │ │ │ │ │ └── carbon │ │ │ │ │ └── esb │ │ │ │ │ └── rabbitmq │ │ │ │ │ ├── TestConstants.java │ │ │ │ │ ├── dual │ │ │ │ │ └── channel │ │ │ │ │ │ └── RabbitMQDualChannelTestCase.java │ │ │ │ │ ├── inbound │ │ │ │ │ └── RabbitMQInboundTestCase.java │ │ │ │ │ ├── message │ │ │ │ │ └── store │ │ │ │ │ │ └── jira │ │ │ │ │ │ ├── ESBJAVA4569RabbiMQSSLStoreWithClientCertValidationTest.java │ │ │ │ │ │ └── ESBJAVA4569RabbiMQSSLStoreWithoutClientCertValidationTest.java │ │ │ │ │ ├── multiple │ │ │ │ │ └── listner │ │ │ │ │ │ └── ESBJAVA4630RabbitMQMultipleListenerTestCase.java │ │ │ │ │ ├── qos │ │ │ │ │ └── jira │ │ │ │ │ │ └── ESBJAVA4571RabbitMQQOSTestCase.java │ │ │ │ │ ├── securevault │ │ │ │ │ └── TestRabbitMQSecureVaultSupport.java │ │ │ │ │ ├── store │ │ │ │ │ └── RabbitMQStoreTestCase.java │ │ │ │ │ ├── transport │ │ │ │ │ ├── recovery │ │ │ │ │ │ └── test │ │ │ │ │ │ │ ├── RabbitMQReceiverConnectionRecoveryTestCase.java │ │ │ │ │ │ │ └── RabbitMQSenderConnectionRecoveryTestCase.java │ │ │ │ │ └── test │ │ │ │ │ │ ├── RabbitMQConsumerTestCase.java │ │ │ │ │ │ ├── RabbitMQContentTypeTestCase.java │ │ │ │ │ │ ├── RabbitMQJSONConsumerTestCase.java │ │ │ │ │ │ └── RabbitMQProducerTestCase.java │ │ │ │ │ └── utils │ │ │ │ │ ├── RabbitMQServerInstance.java │ │ │ │ │ └── RabbitMQTestUtils.java │ │ │ │ └── resources │ │ │ │ ├── artifacts │ │ │ │ ├── AXIS2 │ │ │ │ │ ├── aar │ │ │ │ │ │ ├── Axis2Service.aar │ │ │ │ │ │ ├── LBService1.aar │ │ │ │ │ │ ├── SecureStockQuoteService.aar │ │ │ │ │ │ └── SimpleStockQuoteService.aar │ │ │ │ │ └── config │ │ │ │ │ │ └── test_axis2_server_9000.xml │ │ │ │ └── ESB │ │ │ │ │ ├── axis2config │ │ │ │ │ └── axis2.xml │ │ │ │ │ ├── defaultconfigs │ │ │ │ │ └── synapse.xml │ │ │ │ │ ├── messageStore │ │ │ │ │ └── rabbitMQ │ │ │ │ │ │ └── SSL │ │ │ │ │ │ ├── RabbitMQMsgStoreSSLWithClientCertValidationTest.xml │ │ │ │ │ │ ├── RabbitMQMsgStoreSSLWithoutClientCertValidationTest.xml │ │ │ │ │ │ └── rabbitMQ │ │ │ │ │ │ ├── certs │ │ │ │ │ │ ├── cacert.pem │ │ │ │ │ │ ├── cert.pem │ │ │ │ │ │ ├── client │ │ │ │ │ │ │ ├── keycert.p12 │ │ │ │ │ │ │ └── rabbitstore │ │ │ │ │ │ └── key.pem │ │ │ │ │ │ └── configs │ │ │ │ │ │ ├── rabbitmqSSLWithClientCertValidation.config │ │ │ │ │ │ └── rabbitmqSSLWithoutClientCertValidation.config │ │ │ │ │ ├── qos │ │ │ │ │ └── rabbitMQ │ │ │ │ │ │ └── RabbitMQQOSProxy.xml │ │ │ │ │ ├── rabbitmq │ │ │ │ │ ├── multipleListner │ │ │ │ │ │ └── RabbitMQMultipleListenerProxy.xml │ │ │ │ │ └── transport │ │ │ │ │ │ ├── rabbitmq_consumer_json.xml │ │ │ │ │ │ ├── rabbitmq_consumer_proxy.xml │ │ │ │ │ │ └── rabbitmq_endpoint_proxy.xml │ │ │ │ │ ├── securevault │ │ │ │ │ ├── deployment.toml │ │ │ │ │ └── password-tmp │ │ │ │ │ ├── server │ │ │ │ │ ├── conf │ │ │ │ │ │ ├── axis2 │ │ │ │ │ │ │ └── axis2.xml │ │ │ │ │ │ └── deployment.toml │ │ │ │ │ └── repository │ │ │ │ │ │ └── deployment │ │ │ │ │ │ └── server │ │ │ │ │ │ └── synapse-configs │ │ │ │ │ │ └── default │ │ │ │ │ │ ├── endpoints │ │ │ │ │ │ └── StockQuoteEP.xml │ │ │ │ │ │ ├── inbound-endpoints │ │ │ │ │ │ ├── RabbitMQConsumerInboundEP.xml │ │ │ │ │ │ └── RabbitMQInvalidInboundEP.xml │ │ │ │ │ │ ├── message-processors │ │ │ │ │ │ └── SampleRMQProcessor.xml │ │ │ │ │ │ ├── message-stores │ │ │ │ │ │ └── SampleRMQStore.xml │ │ │ │ │ │ ├── proxy-services │ │ │ │ │ │ ├── RabbitMQConsumerProxy.xml │ │ │ │ │ │ ├── RabbitMQDualChannelNoResponseWithBackEndDownTestSenderProxy.xml │ │ │ │ │ │ ├── RabbitMQDualChannelTestSenderProxy.xml │ │ │ │ │ │ ├── RabbitMQDualChannelWithBackEndDownTestConsumerProxy.xml │ │ │ │ │ │ ├── RabbitMQDualChannelWithBackEndDownTestSenderProxy.xml │ │ │ │ │ │ ├── RabbitMQJsonProxy.xml │ │ │ │ │ │ ├── RabbitMQProducerProxy.xml │ │ │ │ │ │ ├── RabbitMQQOSProxy.xml │ │ │ │ │ │ ├── RabbitMQSecureVaultProxy.xml │ │ │ │ │ │ ├── RabbitMQSenderConnectionRecoveryTestProxy.xml │ │ │ │ │ │ ├── RabbitMQdualChannelNoResponseWithBackEndDownTestConsumerProxy.xml │ │ │ │ │ │ ├── RabbitMQdualChannelTestConsumerProxy.xml │ │ │ │ │ │ └── rmqstoreTestProxy.xml │ │ │ │ │ │ └── sequences │ │ │ │ │ │ ├── logSequence.xml │ │ │ │ │ │ ├── rabbitmq_inbound_endpoint_invalid_sequence.xml │ │ │ │ │ │ └── replySequence.xml │ │ │ │ │ └── store │ │ │ │ │ └── rabbitmqStoreTest.xml │ │ │ │ ├── automation.xml │ │ │ │ ├── automationXMLSchema.xsd │ │ │ │ ├── bin │ │ │ │ └── integrator.sh │ │ │ │ ├── log4j.properties │ │ │ │ ├── security │ │ │ │ └── keystore │ │ │ │ │ ├── client.jks │ │ │ │ │ └── service.jks │ │ │ │ ├── testng.xml │ │ │ │ └── tomcat │ │ │ │ └── catalina-server.xml │ │ ├── tests-sap │ │ │ ├── .gitignore │ │ │ ├── README.md │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── test │ │ │ │ ├── java │ │ │ │ └── org │ │ │ │ │ └── wso2 │ │ │ │ │ └── carbon │ │ │ │ │ └── esb │ │ │ │ │ └── sap │ │ │ │ │ ├── SapBapiTest.java │ │ │ │ │ ├── SapIdocTest.java │ │ │ │ │ └── utils │ │ │ │ │ └── Util.java │ │ │ │ └── resources │ │ │ │ ├── artifacts │ │ │ │ └── ESB │ │ │ │ │ └── server │ │ │ │ │ ├── conf │ │ │ │ │ └── deployment.toml │ │ │ │ │ └── repository │ │ │ │ │ └── deployment │ │ │ │ │ └── server │ │ │ │ │ └── synapse-configs │ │ │ │ │ └── default │ │ │ │ │ └── proxy-services │ │ │ │ │ ├── sapBapiProxy.xml │ │ │ │ │ └── sapIdocUsingCallBlockingTestProxy.xml │ │ │ │ ├── automation.xml │ │ │ │ ├── automationXMLSchema.xsd │ │ │ │ ├── client │ │ │ │ └── modules │ │ │ │ │ └── .gitignore │ │ │ │ ├── instrumentation.txt │ │ │ │ ├── log4j.properties │ │ │ │ └── testng.xml │ │ ├── tests-transaction │ │ │ ├── .gitignore │ │ │ ├── README.md │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── test │ │ │ │ ├── java │ │ │ │ └── org │ │ │ │ │ └── wso2 │ │ │ │ │ └── micro │ │ │ │ │ └── integrator │ │ │ │ │ └── transaction │ │ │ │ │ ├── TransactionCounterTest.java │ │ │ │ │ └── TransactionCounterUtils.java │ │ │ │ └── resources │ │ │ │ ├── artifacts │ │ │ │ └── ESB │ │ │ │ │ ├── db-clear-scripts │ │ │ │ │ ├── README.txt │ │ │ │ │ ├── db2 │ │ │ │ │ │ └── db2_transaction_count.sql │ │ │ │ │ └── oracle │ │ │ │ │ │ └── oracle_transaction_count.sql │ │ │ │ │ └── server │ │ │ │ │ ├── conf │ │ │ │ │ ├── deployment.toml │ │ │ │ │ ├── deployment.toml.db2 │ │ │ │ │ ├── deployment.toml.mariadb │ │ │ │ │ ├── deployment.toml.mssql │ │ │ │ │ ├── deployment.toml.oracle │ │ │ │ │ └── deployment.toml.postgres │ │ │ │ │ └── repository │ │ │ │ │ └── deployment │ │ │ │ │ └── server │ │ │ │ │ └── synapse-configs │ │ │ │ │ └── default │ │ │ │ │ ├── api │ │ │ │ │ ├── baseAPI.xml │ │ │ │ │ └── echoAPI.xml │ │ │ │ │ ├── inbound-endpoints │ │ │ │ │ └── HttpListenerEP.xml │ │ │ │ │ ├── proxy-services │ │ │ │ │ └── echoProxy.xml │ │ │ │ │ └── sequences │ │ │ │ │ ├── main.xml │ │ │ │ │ └── test.xml │ │ │ │ ├── automation.xml │ │ │ │ ├── automationXMLSchema.xsd │ │ │ │ ├── log4j.properties │ │ │ │ └── testng.xml │ │ ├── tests-userstore │ │ │ ├── .gitignore │ │ │ ├── README.md │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── test │ │ │ │ ├── java │ │ │ │ └── org │ │ │ │ │ └── wso2 │ │ │ │ │ └── micro │ │ │ │ │ └── integrator │ │ │ │ │ ├── TestUtils.java │ │ │ │ │ ├── usermgt │ │ │ │ │ ├── SecondaryUserManagementTests.java │ │ │ │ │ └── UserManagementTests.java │ │ │ │ │ └── ws │ │ │ │ │ └── policies │ │ │ │ │ ├── ProxyServiceSecurityTestCase.java │ │ │ │ │ ├── SecureProxyTestCase.java │ │ │ │ │ └── WSPoliciesTests.java │ │ │ │ └── resources │ │ │ │ ├── artifacts │ │ │ │ ├── AXIS2 │ │ │ │ │ ├── aar │ │ │ │ │ │ └── SimpleStockQuoteService.aar │ │ │ │ │ └── config │ │ │ │ │ │ ├── property_axis2_server.xml │ │ │ │ │ │ ├── test_axis2_server_9000.xml │ │ │ │ │ │ ├── test_axis2_server_9001.xml │ │ │ │ │ │ ├── test_axis2_server_9002.xml │ │ │ │ │ │ ├── test_axis2_server_9003.xml │ │ │ │ │ │ ├── test_axis2_server_9007.xml │ │ │ │ │ │ ├── test_axis2_server_9009.xml │ │ │ │ │ │ ├── test_axis2_server_9015.xml │ │ │ │ │ │ └── test_axis2_server_9017.xml │ │ │ │ └── ESB │ │ │ │ │ ├── db-clear-scripts │ │ │ │ │ ├── README.txt │ │ │ │ │ ├── db2 │ │ │ │ │ │ └── db2_user.sql │ │ │ │ │ └── oracle │ │ │ │ │ │ └── oracle_user.sql │ │ │ │ │ └── server │ │ │ │ │ ├── bin │ │ │ │ │ └── micro-integrator.sh │ │ │ │ │ ├── conf │ │ │ │ │ ├── deployment.toml │ │ │ │ │ ├── deployment.toml.db2 │ │ │ │ │ ├── deployment.toml.mariadb │ │ │ │ │ ├── deployment.toml.mssql │ │ │ │ │ ├── deployment.toml.oracle │ │ │ │ │ └── deployment.toml.postgres │ │ │ │ │ └── repository │ │ │ │ │ └── deployment │ │ │ │ │ └── server │ │ │ │ │ ├── carbonapps │ │ │ │ │ ├── ProxyServiceSecurityTestCaseCompositeExporter_1.0.0.car │ │ │ │ │ ├── SecureProxyTestCaseCompositeExporter_1.0.0.car │ │ │ │ │ ├── ws-policies-bCompositeExporter_1.0.0-SNAPSHOT.car │ │ │ │ │ └── ws-policiesCompositeExporter_1.0.0-SNAPSHOT.car │ │ │ │ │ └── userstores │ │ │ │ │ └── wso2_com.xml │ │ │ │ ├── automation.xml │ │ │ │ ├── automationXMLSchema.xsd │ │ │ │ ├── log4j.properties │ │ │ │ ├── security │ │ │ │ └── policies │ │ │ │ │ ├── scenario-config.xml │ │ │ │ │ ├── scenario1-policy.xml │ │ │ │ │ ├── scenario10-policy.xml │ │ │ │ │ ├── scenario11-policy.xml │ │ │ │ │ ├── scenario12-policy.xml │ │ │ │ │ ├── scenario13-policy.xml │ │ │ │ │ ├── scenario14-policy.xml │ │ │ │ │ ├── scenario15-policy.xml │ │ │ │ │ ├── scenario16-policy.xml │ │ │ │ │ ├── scenario17-policy.xml │ │ │ │ │ ├── scenario2-policy.xml │ │ │ │ │ ├── scenario27-policy.xml │ │ │ │ │ ├── scenario3-policy.xml │ │ │ │ │ ├── scenario4-policy.xml │ │ │ │ │ ├── scenario5-policy.xml │ │ │ │ │ ├── scenario6-policy.xml │ │ │ │ │ ├── scenario7-policy.xml │ │ │ │ │ ├── scenario8-policy.xml │ │ │ │ │ └── scenario9-policy.xml │ │ │ │ └── testng.xml │ │ └── tests-wso2mb │ │ │ ├── README.txt │ │ │ ├── pom.xml │ │ │ └── src │ │ │ └── test │ │ │ ├── java │ │ │ └── org │ │ │ │ └── wso2 │ │ │ │ └── carbon │ │ │ │ └── esb │ │ │ │ ├── MessageBrokerConfigurationProvider.java │ │ │ │ ├── extension │ │ │ │ └── ESBServerExtension.java │ │ │ │ └── inbound │ │ │ │ └── endpoint │ │ │ │ └── jms │ │ │ │ └── test │ │ │ │ └── ESBJAVA4863JMSTransactionRollbackTestCase.java │ │ │ └── resources │ │ │ ├── artifacts │ │ │ ├── AXIS2 │ │ │ │ ├── aar │ │ │ │ │ ├── Axis2Service.aar │ │ │ │ │ ├── LBService1.aar │ │ │ │ │ ├── SecureStockQuoteService.aar │ │ │ │ │ └── SimpleStockQuoteService.aar │ │ │ │ └── config │ │ │ │ │ ├── test_axis2_server_9000.xml │ │ │ │ │ └── test_axis2_server_9000.xml_bk │ │ │ └── ESB │ │ │ │ ├── axis2config │ │ │ │ └── axis2.xml │ │ │ │ ├── conf │ │ │ │ ├── axis2 │ │ │ │ │ └── axis2.xml │ │ │ │ └── jndi.properties │ │ │ │ ├── defaultconfigs │ │ │ │ └── synapse.xml │ │ │ │ ├── samples │ │ │ │ ├── synapse_sample_0.xml │ │ │ │ ├── synapse_sample_1.xml │ │ │ │ ├── synapse_sample_10.xml │ │ │ │ ├── synapse_sample_100.xml │ │ │ │ ├── synapse_sample_11.xml │ │ │ │ ├── synapse_sample_12.xml │ │ │ │ ├── synapse_sample_14.xml │ │ │ │ ├── synapse_sample_15.xml │ │ │ │ ├── synapse_sample_150.xml │ │ │ │ ├── synapse_sample_151.xml │ │ │ │ ├── synapse_sample_152.xml │ │ │ │ ├── synapse_sample_153.xml │ │ │ │ ├── synapse_sample_154.xml │ │ │ │ ├── synapse_sample_155.xml │ │ │ │ ├── synapse_sample_156.xml │ │ │ │ ├── synapse_sample_16.xml │ │ │ │ ├── synapse_sample_17.xml │ │ │ │ ├── synapse_sample_18.xml │ │ │ │ ├── synapse_sample_2.xml │ │ │ │ ├── synapse_sample_200.xml │ │ │ │ ├── synapse_sample_250.xml │ │ │ │ ├── synapse_sample_251.xml │ │ │ │ ├── synapse_sample_252.xml │ │ │ │ ├── synapse_sample_253.xml │ │ │ │ ├── synapse_sample_254.xml │ │ │ │ ├── synapse_sample_255.xml │ │ │ │ ├── synapse_sample_256.xml │ │ │ │ ├── synapse_sample_257.xml │ │ │ │ ├── synapse_sample_258.xml │ │ │ │ ├── synapse_sample_259.xml │ │ │ │ ├── synapse_sample_260.xml │ │ │ │ ├── synapse_sample_261.xml │ │ │ │ ├── synapse_sample_262.xml │ │ │ │ ├── synapse_sample_263.xml │ │ │ │ ├── synapse_sample_264.xml │ │ │ │ ├── synapse_sample_265.xml │ │ │ │ ├── synapse_sample_266.xml │ │ │ │ ├── synapse_sample_267.xml │ │ │ │ ├── synapse_sample_268.xml │ │ │ │ ├── synapse_sample_270.xml │ │ │ │ ├── synapse_sample_272.xml │ │ │ │ ├── synapse_sample_3.xml │ │ │ │ ├── synapse_sample_300.xml │ │ │ │ ├── synapse_sample_350.xml │ │ │ │ ├── synapse_sample_351.xml │ │ │ │ ├── synapse_sample_352.xml │ │ │ │ ├── synapse_sample_353.xml │ │ │ │ ├── synapse_sample_354.xml │ │ │ │ ├── synapse_sample_360.xml │ │ │ │ ├── synapse_sample_361.xml │ │ │ │ ├── synapse_sample_362.xml │ │ │ │ ├── synapse_sample_363.xml │ │ │ │ ├── synapse_sample_364.xml │ │ │ │ ├── synapse_sample_370.xml │ │ │ │ ├── synapse_sample_371.xml │ │ │ │ ├── synapse_sample_372.xml │ │ │ │ ├── synapse_sample_380.xml │ │ │ │ ├── synapse_sample_381.xml │ │ │ │ ├── synapse_sample_390.xml │ │ │ │ ├── synapse_sample_391.xml │ │ │ │ ├── synapse_sample_4.xml │ │ │ │ ├── synapse_sample_400.xml │ │ │ │ ├── synapse_sample_420.xml │ │ │ │ ├── synapse_sample_430.xml │ │ │ │ ├── synapse_sample_440.xml │ │ │ │ ├── synapse_sample_441.xml │ │ │ │ ├── synapse_sample_450.xml │ │ │ │ ├── synapse_sample_451.xml │ │ │ │ ├── synapse_sample_452.xml │ │ │ │ ├── synapse_sample_5.xml │ │ │ │ ├── synapse_sample_50.xml │ │ │ │ ├── synapse_sample_500.xml │ │ │ │ ├── synapse_sample_51.xml │ │ │ │ ├── synapse_sample_52.xml │ │ │ │ ├── synapse_sample_53.xml │ │ │ │ ├── synapse_sample_54.xml │ │ │ │ ├── synapse_sample_55.xml │ │ │ │ ├── synapse_sample_550.xml │ │ │ │ ├── synapse_sample_551.xml │ │ │ │ ├── synapse_sample_56.xml │ │ │ │ ├── synapse_sample_57.xml │ │ │ │ ├── synapse_sample_58.xml │ │ │ │ ├── synapse_sample_59.xml │ │ │ │ ├── synapse_sample_6.xml │ │ │ │ ├── synapse_sample_60.xml │ │ │ │ ├── synapse_sample_600.xml │ │ │ │ ├── synapse_sample_601.xml │ │ │ │ ├── synapse_sample_61.xml │ │ │ │ ├── synapse_sample_62.xml │ │ │ │ ├── synapse_sample_654.xml │ │ │ │ ├── synapse_sample_655.xml │ │ │ │ ├── synapse_sample_656.xml │ │ │ │ ├── synapse_sample_657.xml │ │ │ │ ├── synapse_sample_658.xml │ │ │ │ ├── synapse_sample_659.xml │ │ │ │ ├── synapse_sample_660.xml │ │ │ │ ├── synapse_sample_661.xml │ │ │ │ ├── synapse_sample_662.xml │ │ │ │ ├── synapse_sample_663.xml │ │ │ │ ├── synapse_sample_7.xml │ │ │ │ ├── synapse_sample_700.xml │ │ │ │ ├── synapse_sample_701.xml │ │ │ │ ├── synapse_sample_702.xml │ │ │ │ ├── synapse_sample_703.xml │ │ │ │ ├── synapse_sample_704.xml │ │ │ │ ├── synapse_sample_705.xml │ │ │ │ ├── synapse_sample_750.xml │ │ │ │ ├── synapse_sample_751.xml │ │ │ │ ├── synapse_sample_752.xml │ │ │ │ ├── synapse_sample_8.xml │ │ │ │ ├── synapse_sample_800.xml │ │ │ │ ├── synapse_sample_9.xml │ │ │ │ ├── synapse_sample_900.xml │ │ │ │ ├── synapse_sample_901.xml │ │ │ │ ├── synapse_sample_902.xml │ │ │ │ ├── synapse_sample_903.xml │ │ │ │ ├── synapse_sample_904.xml │ │ │ │ ├── synapse_sample_905.xml │ │ │ │ ├── synapse_sample_906.xml │ │ │ │ ├── synapse_sample_907.xml │ │ │ │ └── synapse_sample_908.xml │ │ │ │ └── synapseconfig │ │ │ │ ├── ESBJAVA4863jmsinbound.xml │ │ │ │ ├── ESBJAVA4863playground-inbound.xml │ │ │ │ └── ESBJAVA4863synapseconfig.xml │ │ │ ├── automation.xml │ │ │ ├── automationXMLSchema.xsd │ │ │ ├── bin │ │ │ └── integrator.sh │ │ │ ├── client │ │ │ └── modules │ │ │ │ ├── addressing-1.6.1-wso2v12.mar │ │ │ │ ├── addressing-1.6.1-wso2v14.mar │ │ │ │ ├── addressing-1.6.1-wso2v19.mar │ │ │ │ ├── addressing-1.6.1-wso2v20.mar │ │ │ │ ├── addressing-1.6.1-wso2v35.mar │ │ │ │ ├── rampart-1.6.1-wso2v12.mar │ │ │ │ ├── rampart-1.6.1-wso2v18.mar │ │ │ │ └── rampart-1.6.1-wso2v34.mar │ │ │ ├── emma.properties │ │ │ ├── filters.txt │ │ │ ├── instrumentation.txt │ │ │ ├── keystores │ │ │ └── products │ │ │ │ └── store.jks │ │ │ ├── log4j.properties │ │ │ ├── security │ │ │ └── keystore │ │ │ │ ├── client.jks │ │ │ │ └── service.jks │ │ │ ├── testng.xml │ │ │ └── tomcat │ │ │ └── catalina-server.xml │ ├── tests-sample │ │ ├── .gitignore │ │ ├── pom.xml │ │ └── src │ │ │ └── test │ │ │ ├── java │ │ │ └── org │ │ │ │ └── wso2 │ │ │ │ └── carbon │ │ │ │ └── esb │ │ │ │ └── samples │ │ │ │ └── test │ │ │ │ ├── JSONToSOAPConversionUsingSample440TestCase.java │ │ │ │ ├── endpoint │ │ │ │ ├── Sample60TestCase.java │ │ │ │ ├── Sample61TestCase.java │ │ │ │ └── Sample62TestCase.java │ │ │ │ ├── mediation │ │ │ │ ├── Sample18TestCase.java │ │ │ │ ├── Sample400TestCase.java │ │ │ │ ├── Sample600TestCase.java │ │ │ │ ├── Sample601TestCase.java │ │ │ │ ├── cache │ │ │ │ │ └── Sample420TestCase.java │ │ │ │ ├── db │ │ │ │ │ └── Sample364TestCase.java │ │ │ │ └── jason │ │ │ │ │ ├── Sample440TestCase.java │ │ │ │ │ └── Sample441TestCase.java │ │ │ │ ├── messaging │ │ │ │ ├── Sample264TestCase.java │ │ │ │ ├── Sample381TestCase.java │ │ │ │ ├── Sample705TestCase.java │ │ │ │ ├── store │ │ │ │ │ ├── Sample700TestCase.java │ │ │ │ │ ├── Sample701TestCase.java │ │ │ │ │ ├── Sample702TestCase.java │ │ │ │ │ └── Sample704TestCase.java │ │ │ │ └── utils │ │ │ │ │ └── MDDProducer.java │ │ │ │ ├── miscellaneous │ │ │ │ ├── Sample100TestCase.java │ │ │ │ ├── Sample650TestCase.java │ │ │ │ ├── Sample651TestCase.java │ │ │ │ ├── Sample653TestCase.java │ │ │ │ ├── Sample654TestCase.java │ │ │ │ ├── Sample655TestCase.java │ │ │ │ ├── Sample656TestCase.java │ │ │ │ └── Sample657TestCase.java │ │ │ │ ├── proxy │ │ │ │ ├── Sample153TestCase.java │ │ │ │ ├── Sample155TestCase.java │ │ │ │ └── Sample200TestCase.java │ │ │ │ ├── streamingxpath │ │ │ │ ├── StreamingXpathExceptionTestCase.java │ │ │ │ └── StreamingXpathTestCase.java │ │ │ │ ├── transport │ │ │ │ ├── Sample254TestCase.java │ │ │ │ ├── Sample265TestCase.java │ │ │ │ └── Sample271TestCase.java │ │ │ │ └── util │ │ │ │ └── ESBSampleIntegrationTest.java │ │ │ └── resources │ │ │ ├── artifacts │ │ │ ├── AXIS2 │ │ │ │ ├── aar │ │ │ │ │ ├── Axis2 Service.aar │ │ │ │ │ ├── Axis2Service.aar │ │ │ │ │ ├── Echo.aar │ │ │ │ │ ├── HelloWorld.aar │ │ │ │ │ ├── LBService1.aar │ │ │ │ │ ├── LBService2.aar │ │ │ │ │ ├── LBService3.aar │ │ │ │ │ ├── LBService4.aar │ │ │ │ │ ├── MTOMSwASampleService.aar │ │ │ │ │ ├── RetryOnSoapFault.aar │ │ │ │ │ ├── SecureStockQuoteService.aar │ │ │ │ │ ├── SecureStockQuoteServiceScenario1.aar │ │ │ │ │ ├── SecureStockQuoteServiceScenario10.aar │ │ │ │ │ ├── SecureStockQuoteServiceScenario2.aar │ │ │ │ │ ├── SecureStockQuoteServiceScenario3.aar │ │ │ │ │ ├── SecureStockQuoteServiceScenario4.aar │ │ │ │ │ ├── SecureStockQuoteServiceScenario5.aar │ │ │ │ │ ├── SecureStockQuoteServiceScenario6.aar │ │ │ │ │ ├── SecureStockQuoteServiceScenario7.aar │ │ │ │ │ ├── SecureStockQuoteServiceScenario8.aar │ │ │ │ │ ├── SecureStockQuoteServiceScenario9.aar │ │ │ │ │ ├── SimpleStockQuoteService.aar │ │ │ │ │ ├── SimpleStockQuoteService2.aar │ │ │ │ │ ├── SimpleStockQuoteService3.aar │ │ │ │ │ ├── SimpleStockQuoteService_timeout.aar │ │ │ │ │ ├── StratosSchemaimportservice.aar │ │ │ │ │ ├── StudentService.aar │ │ │ │ │ ├── geows.aar │ │ │ │ │ ├── hcfacilitylocator.aar │ │ │ │ │ └── hcinformationservice.aar │ │ │ │ └── config │ │ │ │ │ ├── mailTransport.xml │ │ │ │ │ ├── test_axis2_server_9000.xml │ │ │ │ │ ├── test_axis2_server_9001.xml │ │ │ │ │ ├── test_axis2_server_9002.xml │ │ │ │ │ ├── test_axis2_server_9003.xml │ │ │ │ │ ├── test_axis2_server_9004.xml │ │ │ │ │ ├── test_axis2_server_9007.xml │ │ │ │ │ ├── test_axis2_server_9009.xml │ │ │ │ │ ├── test_axis2_server_9015.xml │ │ │ │ │ └── test_axis2_server_9017.xml │ │ │ └── ESB │ │ │ │ ├── car │ │ │ │ ├── DemoProxy-1.0.0.car │ │ │ │ ├── ESBproject1-1.0.0.car │ │ │ │ ├── ESBproject2-1.0.0.car │ │ │ │ ├── ESBproject3-1.0.0.car │ │ │ │ ├── ESBproject4-1.0.0.car │ │ │ │ ├── MediatorCApp2_1.0.0.car │ │ │ │ ├── MediatorCApp_1.0.0.car │ │ │ │ ├── ServiceChaining-1.0.0.car │ │ │ │ ├── SynchroDepInValidCarApp_1.0.0.car │ │ │ │ ├── SynchroDepValidCarApp_1.0.0.car │ │ │ │ ├── esb-artifacts-car_1.0.0.car │ │ │ │ └── xslt-transformation-car_1.0.0.car │ │ │ │ ├── compression │ │ │ │ └── gzip │ │ │ │ │ └── gzip-compression.xml │ │ │ │ ├── config │ │ │ │ └── testconfig.xml │ │ │ │ ├── datasources.properties │ │ │ │ ├── defaultconfigs │ │ │ │ └── synapse.xml │ │ │ │ ├── endpoint │ │ │ │ ├── CARBON11016_synapse.xml │ │ │ │ ├── addressEndpointConfig │ │ │ │ │ ├── addressEP_Test.xml │ │ │ │ │ ├── invalidPropertyAddressEndPoint.xml │ │ │ │ │ └── synapse.xml │ │ │ │ ├── defaultEndpointConfig │ │ │ │ │ ├── defaultEP_Test.xml │ │ │ │ │ └── synapse.xml │ │ │ │ ├── endpointFotmatRestPTTestConfig.xml │ │ │ │ ├── failoverEndpointConfig │ │ │ │ │ ├── failOverWithDisabledErrors.xml │ │ │ │ │ ├── failoverEP_Test.xml │ │ │ │ │ └── synapse.xml │ │ │ │ ├── httpEndpointConfig │ │ │ │ │ └── synapse.xml │ │ │ │ ├── loadbalancingEndpointConfig │ │ │ │ │ ├── loadbalancingEP_Test.xml │ │ │ │ │ └── synapse.xml │ │ │ │ ├── wsdlEndpointConfig │ │ │ │ │ ├── synapse.xml │ │ │ │ │ └── wsdlEP_Test.xml │ │ │ │ └── wsdlTestEp.xml │ │ │ │ ├── endpointlookup.xml │ │ │ │ ├── entitlementMediatorConfig │ │ │ │ └── entitlementMediatorSynapse.xml │ │ │ │ ├── gif │ │ │ │ └── asf-logo.gif │ │ │ │ ├── hl7Transport │ │ │ │ └── axis2.xml │ │ │ │ ├── jaxrs │ │ │ │ ├── getperson.xml │ │ │ │ └── putpeopleproxy.xml │ │ │ │ ├── jms │ │ │ │ └── transport │ │ │ │ │ ├── ESBJAVA-1716_messageStore.xml │ │ │ │ │ ├── ESBJAVA-1793MessageStore-targetEndPointFormat-pox.xml │ │ │ │ │ ├── HTTP_SC.xml │ │ │ │ │ ├── JMSAXISFault.xml │ │ │ │ │ ├── JMSMessageStoreREST.xml │ │ │ │ │ ├── axis2config │ │ │ │ │ ├── activemq │ │ │ │ │ │ └── axis2.xml │ │ │ │ │ └── mb │ │ │ │ │ │ └── axis2.xml │ │ │ │ │ ├── jms_endpoint_proxy_service.xml │ │ │ │ │ ├── jms_message_store_and_processor_service.xml │ │ │ │ │ ├── jms_message_store_unavailable_service.xml │ │ │ │ │ ├── jms_out_only_proxy.xml │ │ │ │ │ ├── jms_transport.xml │ │ │ │ │ ├── jms_transport_jms_suspension.xml │ │ │ │ │ ├── jms_transport_proxy_service.xml │ │ │ │ │ ├── jms_wait_response.xml │ │ │ │ │ ├── jmsclient-and-restService.xml │ │ │ │ │ ├── jndi.properties │ │ │ │ │ ├── msgInjection │ │ │ │ │ ├── msg_injecting_task.xml │ │ │ │ │ └── msg_store.xml │ │ │ │ │ └── topic │ │ │ │ │ └── send_messages_topic_synapse.xml │ │ │ │ ├── json │ │ │ │ ├── axis2.xml │ │ │ │ ├── blockingSenderWithJson.xml │ │ │ │ └── json-to-soap-conversion.xml │ │ │ │ ├── local │ │ │ │ ├── axis2.xml │ │ │ │ ├── carbon.xml │ │ │ │ ├── local-transport-header.xml │ │ │ │ └── local-transport.xml │ │ │ │ ├── localEntryConfig │ │ │ │ ├── sequence_as_local_registry_entry.xml │ │ │ │ └── throttle_policy_as_a_local_entry.xml │ │ │ │ ├── mail │ │ │ │ └── axis2.xml │ │ │ │ ├── mediatorconfig │ │ │ │ ├── cache │ │ │ │ │ ├── CollectorTypeCacheMediator.xml │ │ │ │ │ └── LargeCacheTimeOut.xml │ │ │ │ ├── call │ │ │ │ │ ├── synapse.xml │ │ │ │ │ ├── synapse1.xml │ │ │ │ │ ├── synapse10.xml │ │ │ │ │ ├── synapse11.xml │ │ │ │ │ ├── synapse12.xml │ │ │ │ │ ├── synapse13.xml │ │ │ │ │ ├── synapse14.xml │ │ │ │ │ ├── synapse15.xml │ │ │ │ │ ├── synapse17.xml │ │ │ │ │ ├── synapse18.xml │ │ │ │ │ ├── synapse19.xml │ │ │ │ │ ├── synapse2.xml │ │ │ │ │ ├── synapse20.xml │ │ │ │ │ ├── synapse21.xml │ │ │ │ │ ├── synapse3.xml │ │ │ │ │ ├── synapse4.xml │ │ │ │ │ ├── synapse5.xml │ │ │ │ │ ├── synapse6.xml │ │ │ │ │ ├── synapse7.xml │ │ │ │ │ ├── synapse8.xml │ │ │ │ │ ├── synapse9.xml │ │ │ │ │ ├── synapse_expressions.xml │ │ │ │ │ └── synapse_param_with_values.xml │ │ │ │ ├── call_template │ │ │ │ │ ├── synapse.xml │ │ │ │ │ ├── synapse_expressions.xml │ │ │ │ │ └── synapse_param_with_values.xml │ │ │ │ ├── callout │ │ │ │ │ ├── CallOutMediatorOutOnlyTest.xml │ │ │ │ │ ├── CallOutMediatorWithMTOMTest.xml │ │ │ │ │ ├── DynamicEndpointTest.xml │ │ │ │ │ ├── DynamicProperties.xml │ │ │ │ │ ├── FaultSeq.xml │ │ │ │ │ ├── InboundOutboundSecurityTest.xml │ │ │ │ │ ├── SecurityTest.xml │ │ │ │ │ ├── TranportCleanupOnFaultTest.xml │ │ │ │ │ ├── ValidPath_Axis2Repo.xml │ │ │ │ │ ├── ValidPath_Axis2Xml.xml │ │ │ │ │ ├── client_repo │ │ │ │ │ │ └── conf │ │ │ │ │ │ │ └── axis2.xml │ │ │ │ │ ├── synapse_sample_430.xml │ │ │ │ │ └── transport_headers.xml │ │ │ │ ├── class │ │ │ │ │ ├── class_mediation_with_twenty_properties.xml │ │ │ │ │ ├── class_property_persistence_five_properties.xml │ │ │ │ │ ├── class_property_persistence_four_properties.xml │ │ │ │ │ └── class_property_persistence_three_properties.xml │ │ │ │ ├── clone │ │ │ │ │ ├── cloneLogAndSendSequence.xml │ │ │ │ │ ├── clone_SOAP_Action.xml │ │ │ │ │ ├── clone_http.xml │ │ │ │ │ ├── clone_https.xml │ │ │ │ │ ├── clone_https_sequence.xml │ │ │ │ │ ├── clone_jms.xml │ │ │ │ │ ├── clone_named_endpoints.xml │ │ │ │ │ ├── clone_sequence.xml │ │ │ │ │ ├── clone_simple.xml │ │ │ │ │ ├── clone_unknown_endpoints.xml │ │ │ │ │ ├── clone_unmaching_aggregate.xml │ │ │ │ │ └── large_message.txt │ │ │ │ ├── db │ │ │ │ │ └── synapse_sample_364.xml │ │ │ │ ├── dblookup │ │ │ │ │ ├── sample_360.xml │ │ │ │ │ ├── sample_360_multiple_SQL_statements.xml │ │ │ │ │ ├── sample_360_multiple_results_test.xml │ │ │ │ │ ├── sample_360_stored_function_test.xml │ │ │ │ │ └── sample_360_stored_procedure.xml │ │ │ │ ├── dbreport │ │ │ │ │ ├── synapse_dbReport.xml │ │ │ │ │ ├── synapse_sample_361.xml │ │ │ │ │ ├── synapse_sample_364.xml │ │ │ │ │ └── synapse_use_transaction.xml │ │ │ │ ├── enrich │ │ │ │ │ ├── add_propert_as_child.xml │ │ │ │ │ ├── add_property_as_sibling.xml │ │ │ │ │ ├── add_sibling.xml │ │ │ │ │ ├── enrich_add_as_child.xml │ │ │ │ │ ├── enrich_add_sibling_in_out_msg.xml │ │ │ │ │ ├── enrich_byGetProperty.xml │ │ │ │ │ ├── enrich_by_enrich.xml │ │ │ │ │ ├── enrich_omText.xml │ │ │ │ │ ├── enrich_replace_body_by_specified_property.xml │ │ │ │ │ ├── enrich_replace_by_property.xml │ │ │ │ │ ├── registry_synapse.xml │ │ │ │ │ └── required │ │ │ │ │ │ └── registry_configs.xml │ │ │ │ ├── fast_xslt │ │ │ │ │ ├── calltemplate_integration_fastxslt_sample750_synapse.xml │ │ │ │ │ ├── fast_xslt_dynamic_key_synapse.xml │ │ │ │ │ └── synapse_fast_xslt_sample_8.xml │ │ │ │ ├── fault │ │ │ │ │ ├── soap11_fault_actor_synapse.xml │ │ │ │ │ ├── soap11_fault_code_Client_synapse.xml │ │ │ │ │ ├── soap11_fault_code_MustUnderstand_synapse.xml │ │ │ │ │ ├── soap11_fault_code_Server_synapse.xml │ │ │ │ │ ├── soap11_fault_code_VersionMismatch_synapse.xml │ │ │ │ │ ├── soap11_fault_detail_as_element_synapse.xml │ │ │ │ │ ├── soap11_fault_detail_synapse.xml │ │ │ │ │ ├── soap11_fault_full_synapse.xml │ │ │ │ │ ├── soap11_fault_out_sequence_synapse.xml │ │ │ │ │ ├── soap11_fault_response_validate_synapse.xml │ │ │ │ │ ├── soap11_fault_set_response_attribute_false_with_addressing_synapse.xml │ │ │ │ │ ├── soap11_fault_set_response_false_synapse.xml │ │ │ │ │ ├── soap11_fault_set_response_true_synapse.xml │ │ │ │ │ ├── soap11_fault_string_expression_synapse.xml │ │ │ │ │ ├── soap11_fault_string_value_synapse.xml │ │ │ │ │ ├── soap12_fault_actor_synapse.xml │ │ │ │ │ ├── soap12_fault_code_DataEncodingUnknown_synapse.xml │ │ │ │ │ ├── soap12_fault_code_MustUnderstand_synapse.xml │ │ │ │ │ ├── soap12_fault_code_Receiver_synapse.xml │ │ │ │ │ ├── soap12_fault_code_Sender_synapse.xml │ │ │ │ │ ├── soap12_fault_code_VersionMismatch_synapse.xml │ │ │ │ │ ├── soap12_fault_detail_as_element_synapse.xml │ │ │ │ │ ├── soap12_fault_detail_synapse.xml │ │ │ │ │ ├── soap12_fault_full_synapse.xml │ │ │ │ │ ├── soap12_fault_node_synapse.xml │ │ │ │ │ ├── soap12_fault_out_sequence_synapse.xml │ │ │ │ │ ├── soap12_fault_response_validate_synapse.xml │ │ │ │ │ ├── soap12_fault_set_response_attribute_false_with_addressing_synapse.xml │ │ │ │ │ ├── soap12_fault_set_response_false_synapse.xml │ │ │ │ │ ├── soap12_fault_set_response_true_synapse.xml │ │ │ │ │ ├── soap12_fault_string_expression_synapse.xml │ │ │ │ │ └── soap12_fault_string_value_synapse.xml │ │ │ │ ├── header │ │ │ │ │ ├── action_header_set_synapse.xml │ │ │ │ │ ├── action_remove_security_synapse.xml │ │ │ │ │ └── to_header_set_synapse.xml │ │ │ │ ├── iterate │ │ │ │ │ ├── ESBJAVA-2843-iterateIfPreservePayloadFalse.xml │ │ │ │ │ ├── IterateIDAggregateIDMismatch.xml │ │ │ │ │ ├── Iterate_anonymous_endpoints.xml │ │ │ │ │ ├── invalid_XPath.xml │ │ │ │ │ ├── invalid_name_space_attachpath.xml │ │ │ │ │ ├── invalid_namespace_iterateexpression.xml │ │ │ │ │ ├── invalid_soapaction.xml │ │ │ │ │ ├── invalid_soapaction_valid_payload.xml │ │ │ │ │ ├── invalid_target_address.xml │ │ │ │ │ ├── iterate.txt │ │ │ │ │ ├── iterate1.txt │ │ │ │ │ ├── iterateEndpoint.xml │ │ │ │ │ ├── iterateLogAndSendSequence.xml │ │ │ │ │ ├── iterateSequentialTrueProperty.xml │ │ │ │ │ ├── iterateSequentialTruePropertyWithOutProperty.xml │ │ │ │ │ ├── iterate_SOAP_Action.xml │ │ │ │ │ ├── iterate_configuration_endpoint.xml │ │ │ │ │ ├── iterate_continue_parent_false.xml │ │ │ │ │ ├── iterate_continue_parent_true.xml │ │ │ │ │ ├── iterate_different_ID.xml │ │ │ │ │ ├── iterate_govners_endpoint.xml │ │ │ │ │ ├── iterate_https_endpoint.xml │ │ │ │ │ ├── iterate_named_endpoints.xml │ │ │ │ │ ├── iterate_named_sequence.xml │ │ │ │ │ ├── iterate_sequential.xml │ │ │ │ │ ├── iterate_small.txt │ │ │ │ │ ├── iterate_target_configuration.xml │ │ │ │ │ ├── iterate_target_govenerce.xml │ │ │ │ │ ├── iterator_attach_path.xml │ │ │ │ │ ├── iterator_expressionLess.xml │ │ │ │ │ ├── null_namespace.xml │ │ │ │ │ ├── null_namespace_for_expression.xml │ │ │ │ │ ├── simple_iterator.xml │ │ │ │ │ └── valid_iterate_exp_mismatch_original_message.xml │ │ │ │ ├── payload │ │ │ │ │ └── factory │ │ │ │ │ │ ├── axis2 │ │ │ │ │ │ └── axis2.xml │ │ │ │ │ │ ├── expression_arg_payload_factory_synapse.xml │ │ │ │ │ │ ├── jsonFormat_JsonExpressiosns.xml │ │ │ │ │ │ ├── jsonFormat_JsonXmlExpressions_values.xml │ │ │ │ │ │ ├── jsonFormat_XmlExpressiosns.xml │ │ │ │ │ │ ├── no_arg_payload_factory_synapse.xml │ │ │ │ │ │ ├── om_arg_payload_factory_synapse.xml │ │ │ │ │ │ ├── payload-in.xml │ │ │ │ │ │ ├── payload_factory_dynamic_key.xml │ │ │ │ │ │ ├── special_chractors_at_payload_factory.xml │ │ │ │ │ │ ├── value_arg_payload_factory_synapse.xml │ │ │ │ │ │ ├── value_expression_arg_payload_factory_synapse.xml │ │ │ │ │ │ └── xmlFormat_JsonExpressiosns.xml │ │ │ │ ├── policy │ │ │ │ │ └── throttle_policy.xml │ │ │ │ ├── property │ │ │ │ │ ├── DISABLE_CHUNKING.xml │ │ │ │ │ ├── NO_ENTITY_BODY.xml │ │ │ │ │ ├── NO_KEEPALIVE.xml │ │ │ │ │ ├── POST_TO_URI.xml │ │ │ │ │ ├── PRESERVE_WS_ADDRESSING.xml │ │ │ │ │ ├── REST_URL_postfix.xml │ │ │ │ │ ├── TRANSPORT_HEADERS.xml │ │ │ │ │ ├── disableAddressingForOutMessages.xml │ │ │ │ │ ├── synapse_http_header_case_sensitivity.xml │ │ │ │ │ └── transport_scope_property.xml │ │ │ │ ├── rewrite │ │ │ │ │ ├── full_url_append_synapse.xml │ │ │ │ │ ├── full_url_prepend_synapse.xml │ │ │ │ │ ├── full_url_rewrite_synapse.xml │ │ │ │ │ ├── full_url_set_synapse.xml │ │ │ │ │ ├── full_url_set_when_no_url_synapse.xml │ │ │ │ │ ├── hostname_append_synapse.xml │ │ │ │ │ ├── hostname_prepend_synapse.xml │ │ │ │ │ ├── hostname_set_synapse.xml │ │ │ │ │ ├── path_append_synapse.xml │ │ │ │ │ ├── path_prepend_synapse.xml │ │ │ │ │ ├── path_set_synapse.xml │ │ │ │ │ ├── port_append_synapse.xml │ │ │ │ │ ├── port_prepend_synapse.xml │ │ │ │ │ ├── port_set_synapse.xml │ │ │ │ │ ├── protocol_append_synapse.xml │ │ │ │ │ ├── protocol_prepend_synapse.xml │ │ │ │ │ ├── protocol_rewrite_from_property_synapse.xml │ │ │ │ │ ├── protocol_rewrite_synapse.xml │ │ │ │ │ ├── protocol_set_synapse.xml │ │ │ │ │ ├── remove_rewrite_full_url_synapse.xml │ │ │ │ │ ├── remove_rewrite_host_synapse.xml │ │ │ │ │ ├── remove_rewrite_path_synapse.xml │ │ │ │ │ ├── remove_rewrite_port_synapse.xml │ │ │ │ │ ├── remove_rewrite_protocol_synapse.xml │ │ │ │ │ ├── synapse_sample451.xml │ │ │ │ │ ├── url_reWrite_by_context_synapse.xml │ │ │ │ │ ├── url_reWrite_by_host_synapse.xml │ │ │ │ │ ├── url_reWrite_by_port_expression_synapse.xml │ │ │ │ │ └── url_reWrite_by_port_synapse.xml │ │ │ │ ├── router │ │ │ │ │ ├── router_breakRouter_false_test.xml │ │ │ │ │ ├── router_continueAfter_false_test.xml │ │ │ │ │ ├── router_continueAfter_true_test.xml │ │ │ │ │ ├── router_endpoint.xml │ │ │ │ │ ├── router_endpoint_test.xml │ │ │ │ │ ├── router_expression_test.xml │ │ │ │ │ ├── router_https_endpoint.xml │ │ │ │ │ ├── router_multiple_routs_test.xml │ │ │ │ │ ├── router_sequence.xml │ │ │ │ │ └── router_sequence_test.xml │ │ │ │ ├── script │ │ │ │ │ ├── stockquoteTransform.js │ │ │ │ │ └── stockquoteTransform.rb │ │ │ │ ├── script_js │ │ │ │ │ ├── detailTransform.js │ │ │ │ │ ├── stockquoteTransform.js │ │ │ │ │ └── test54.js │ │ │ │ ├── send │ │ │ │ │ ├── endpoints │ │ │ │ │ │ └── registry_endpoint.xml │ │ │ │ │ ├── sequence │ │ │ │ │ │ ├── test_sequence_build_message_conf.xml │ │ │ │ │ │ ├── test_sequence_build_message_gov.xml │ │ │ │ │ │ └── test_sequence_build_message_local.xml │ │ │ │ │ ├── synapse_config.xml │ │ │ │ │ ├── synapse_default.xml │ │ │ │ │ ├── synapse_dynamic.xml │ │ │ │ │ ├── synapse_endpoint_registry.xml │ │ │ │ │ ├── synapse_gov.xml │ │ │ │ │ ├── synapse_local.xml │ │ │ │ │ └── synapse_uncaught_exception.xml │ │ │ │ ├── sequence │ │ │ │ │ ├── synapse_proxy.xml │ │ │ │ │ └── synapse_sequence_mediator.xml │ │ │ │ ├── spring │ │ │ │ │ ├── spring_mediation.xml │ │ │ │ │ ├── spring_mediation_different_bean_id.xml │ │ │ │ │ ├── spring_mediation_invalid_spring_bean.xml │ │ │ │ │ ├── spring_mediation_springBean_resource_not_exist.xml │ │ │ │ │ └── utils │ │ │ │ │ │ ├── different_bean_names.xml │ │ │ │ │ │ ├── invalid_spring_bean.xml │ │ │ │ │ │ ├── springbean.xml │ │ │ │ │ │ └── updating_spring.xml │ │ │ │ ├── switch_conf │ │ │ │ │ └── switch_mediator_subsequence_matching.xml │ │ │ │ ├── validate │ │ │ │ │ └── schema.xml │ │ │ │ ├── xquery │ │ │ │ │ ├── synapse101.xml │ │ │ │ │ ├── xquery_empty_soap_request.xml │ │ │ │ │ ├── xquery_replace_body_synapse101.xml │ │ │ │ │ ├── xquery_variable_type_boolean_synapse101.xml │ │ │ │ │ ├── xquery_variable_type_byte_synapse101.xml │ │ │ │ │ ├── xquery_variable_type_double_synapse101.xml │ │ │ │ │ ├── xquery_variable_type_float_synapse101.xml │ │ │ │ │ ├── xquery_variable_type_int_synapse101.xml │ │ │ │ │ ├── xquery_variable_type_integer_synapse101.xml │ │ │ │ │ ├── xquery_variable_type_long_synapse101.xml │ │ │ │ │ └── xquery_variable_type_string_synapse101.xml │ │ │ │ └── xslt │ │ │ │ │ ├── local_entry_refer_xslt_transformation_synapse.xml │ │ │ │ │ ├── transform.xslt │ │ │ │ │ ├── transform_back.xslt │ │ │ │ │ ├── xslt_dynamic_key_synapse.xml │ │ │ │ │ ├── xslt_from_config_registry_local_entry_synapse.xml │ │ │ │ │ ├── xslt_from_governance_registry_local_entry_synapse.xml │ │ │ │ │ ├── xslt_from_url_synapse.xml │ │ │ │ │ ├── xslt_in_file_system_local_entry_synapse.xml │ │ │ │ │ ├── xslt_in_line_local_entry_synapse.xml │ │ │ │ │ └── xslt_transformation_with_property_synapse.xml │ │ │ │ ├── messageProcessorConfig │ │ │ │ └── Message_Processor_Persistence_After_Restart_Synapse.xml │ │ │ │ ├── miscellaneous │ │ │ │ ├── axis2.xml │ │ │ │ ├── deployment.toml │ │ │ │ └── synapse_sample_650.xml │ │ │ │ │ └── default │ │ │ │ │ ├── endpoints │ │ │ │ │ └── foo.xml │ │ │ │ │ ├── events │ │ │ │ │ └── event1.xml │ │ │ │ │ ├── local-entries │ │ │ │ │ └── bar.xml │ │ │ │ │ ├── proxy-services │ │ │ │ │ ├── proxy1.xml │ │ │ │ │ ├── proxy2.xml │ │ │ │ │ └── proxy3.xml │ │ │ │ │ ├── registry.xml │ │ │ │ │ ├── sequences │ │ │ │ │ ├── custom-logger.xml │ │ │ │ │ ├── fault.xml │ │ │ │ │ └── main.xml │ │ │ │ │ ├── synapse.xml │ │ │ │ │ └── tasks │ │ │ │ │ └── task1.xml │ │ │ │ ├── mtom │ │ │ │ └── asf-logo.gif │ │ │ │ ├── nhttp │ │ │ │ └── transport │ │ │ │ │ └── certificatevalidation │ │ │ │ │ ├── axis2.xml │ │ │ │ │ └── simple_proxy.xml │ │ │ │ ├── other │ │ │ │ ├── axis2.xml │ │ │ │ ├── index.html │ │ │ │ └── master-datasources.xml │ │ │ │ ├── passthru │ │ │ │ └── transport │ │ │ │ │ └── httpproxy │ │ │ │ │ ├── axis2.xml │ │ │ │ │ └── httpProxy.xml │ │ │ │ ├── priority │ │ │ │ └── axis2.xml │ │ │ │ ├── proxyconfig │ │ │ │ └── proxy │ │ │ │ │ ├── customProxy │ │ │ │ │ ├── insequence_existing_sequence.xml │ │ │ │ │ ├── insequence_from_registry.xml │ │ │ │ │ ├── insequence_inline_endpoint_from_registry.xml │ │ │ │ │ ├── insequence_inline_endpoint_inline.xml │ │ │ │ │ ├── insequence_none_endpoint_existing.xml │ │ │ │ │ ├── insequence_none_endpoint_from_registry.xml │ │ │ │ │ ├── insequence_none_endpoint_inline.xml │ │ │ │ │ ├── non_existing_proxy.xml │ │ │ │ │ ├── non_existing_proxy_route_to_main.xml │ │ │ │ │ ├── outsequence_faultsequence.xml │ │ │ │ │ └── simple_proxy.xml │ │ │ │ │ ├── enablelocaltransport │ │ │ │ │ └── axis2.xml │ │ │ │ │ ├── loggingProxy │ │ │ │ │ ├── pick_end_point_from_registry.xml │ │ │ │ │ ├── proxy_service_enabling_only_http.xml │ │ │ │ │ ├── proxy_service_enabling_only_https.xml │ │ │ │ │ ├── proxy_service_with_end_point_through_url.xml │ │ │ │ │ ├── request_log_level_full_response_log_level_full.xml │ │ │ │ │ ├── request_log_level_none_response_log_level_none.xml │ │ │ │ │ ├── request_log_level_simple_response_log_level_simple.xml │ │ │ │ │ ├── wsdl_options_pick_from_registry.xml │ │ │ │ │ ├── wsdl_options_specified_inline.xml │ │ │ │ │ └── wsdl_options_specified_source_url.xml │ │ │ │ │ ├── passThroughProxy │ │ │ │ │ ├── EditPassThroughProxy.xml │ │ │ │ │ ├── customServiceURI │ │ │ │ │ │ ├── axis2.xml │ │ │ │ │ │ └── custom_service_uri_enabling_only_https.xml │ │ │ │ │ ├── passThroughProxy.xml │ │ │ │ │ ├── pick_end_point_from_registry.xml │ │ │ │ │ ├── proxy_service_enabling_only_http.xml │ │ │ │ │ ├── proxy_service_enabling_only_https.xml │ │ │ │ │ ├── proxy_service_with_end_point_through_url.xml │ │ │ │ │ ├── wsdl_options_pick_from_registry.xml │ │ │ │ │ ├── wsdl_options_specified_inline.xml │ │ │ │ │ └── wsdl_options_specified_source_url.xml │ │ │ │ │ ├── protocolViolationProxy │ │ │ │ │ └── synapse.xml │ │ │ │ │ ├── proxyservice │ │ │ │ │ ├── http_to_https_proxy.xml │ │ │ │ │ ├── proxy_with_addressing.xml │ │ │ │ │ └── stock_quote_proxy.xml │ │ │ │ │ ├── secureProxy │ │ │ │ │ ├── passthrough_proxy_engaging_security_with_secueBackEnd.xml │ │ │ │ │ ├── passthrough_proxy_with_secueBackEnd.xml │ │ │ │ │ ├── sample_0_with_wso2_registry.xml │ │ │ │ │ ├── secure_proxy_service_scenarios.xml │ │ │ │ │ ├── secured_proxy_secured_backend.xml │ │ │ │ │ ├── security_transformation_proxy_for_policy2_backEnd.xml │ │ │ │ │ ├── security_transformation_proxy_for_policy3_backend.xml │ │ │ │ │ ├── security_transformation_proxy_for_policy4_backend.xml │ │ │ │ │ ├── security_transformation_proxy_for_policy5_backend.xml │ │ │ │ │ ├── security_transformation_proxy_for_policy6_backend.xml │ │ │ │ │ ├── security_transformation_proxy_for_policy7_backend.xml │ │ │ │ │ ├── security_transformation_proxy_for_policy8_backend.xml │ │ │ │ │ ├── stock_quote_passthrough_proxy.xml │ │ │ │ │ ├── stock_quote_proxy.xml │ │ │ │ │ ├── stockquote_pass_through_proxy.xml │ │ │ │ │ └── stockquote_proxy_unsecured.xml │ │ │ │ │ ├── transformerProxy │ │ │ │ │ ├── invalid_xslt_test.xml │ │ │ │ │ ├── pick_end_point_from_registry.xml │ │ │ │ │ ├── proxy_service_enabling_only_http.xml │ │ │ │ │ ├── proxy_service_enabling_only_https.xml │ │ │ │ │ ├── proxy_service_with_end_point_through_url.xml │ │ │ │ │ ├── wsdl_options_pick_from_registry.xml │ │ │ │ │ ├── wsdl_options_specified_inline.xml │ │ │ │ │ └── wsdl_options_specified_source_url.xml │ │ │ │ │ ├── utils │ │ │ │ │ ├── fault_sequence.xml │ │ │ │ │ ├── invalid_transform.xslt │ │ │ │ │ ├── out_sequence.xml │ │ │ │ │ ├── proxy_sequence.xml │ │ │ │ │ ├── registry_endpoint.xml │ │ │ │ │ └── sample_proxy_1.wsdl │ │ │ │ │ └── wsdlBasedProxy │ │ │ │ │ ├── proxy_service_enabling_only_http.xml │ │ │ │ │ ├── proxy_service_enabling_only_https.xml │ │ │ │ │ ├── proxy_service_with_publish_same_service_contract.xml │ │ │ │ │ ├── wsdl_options_pick_from_registry.xml │ │ │ │ │ ├── wsdl_options_specified_inline.xml │ │ │ │ │ └── wsdl_options_specified_source_url.xml │ │ │ │ ├── sample_10 │ │ │ │ ├── 1 │ │ │ │ │ └── dynamic_endpt_1.xml │ │ │ │ └── 2 │ │ │ │ │ └── dynamic_endpt_1.xml │ │ │ │ ├── sample_254 │ │ │ │ ├── axis2.xml │ │ │ │ └── test.xml │ │ │ │ ├── sample_266 │ │ │ │ └── axis2.xml │ │ │ │ ├── sample_267 │ │ │ │ └── axis2.xml │ │ │ │ ├── sample_268 │ │ │ │ ├── axis2.xml │ │ │ │ └── carbon.xml │ │ │ │ ├── sample_271 │ │ │ │ ├── axis2.xml │ │ │ │ ├── create_table.sql │ │ │ │ ├── drop_table.sql │ │ │ │ ├── input.txt │ │ │ │ ├── smooks-config.xml │ │ │ │ └── synapse-configs │ │ │ │ │ └── default │ │ │ │ │ ├── local-entries │ │ │ │ │ └── smooks.xml │ │ │ │ │ ├── proxy-services │ │ │ │ │ └── FileProxy.xml │ │ │ │ │ ├── registry.xml │ │ │ │ │ ├── sequences │ │ │ │ │ ├── databaseSequence.xml │ │ │ │ │ ├── fault.xml │ │ │ │ │ ├── fileWriteSequence.xml │ │ │ │ │ ├── main.xml │ │ │ │ │ └── sendMailSequence.xml │ │ │ │ │ └── synapse.xml │ │ │ │ ├── sample_9 │ │ │ │ └── dynamic_seq_1.xml │ │ │ │ ├── scheduledTask │ │ │ │ ├── InjectToProxyTestConfig.xml │ │ │ │ └── InjectToSequenceTestConfig.xml │ │ │ │ ├── server │ │ │ │ ├── conf │ │ │ │ │ ├── axis2 │ │ │ │ │ │ └── axis2.xml │ │ │ │ │ ├── deployment.toml │ │ │ │ │ └── synapse.properties │ │ │ │ ├── lib │ │ │ │ │ ├── activemq-broker-5.9.1.jar │ │ │ │ │ ├── activemq-client-5.9.1.jar │ │ │ │ │ ├── geronimo-j2ee-management_1.1_spec-1.0.1.jar │ │ │ │ │ ├── geronimo-jms_1.1_spec-1.1.1.jar │ │ │ │ │ └── hawtbuf-1.9.jar │ │ │ │ └── repository │ │ │ │ │ └── deployment │ │ │ │ │ └── server │ │ │ │ │ └── synapse-configs │ │ │ │ │ └── default │ │ │ │ │ ├── endpoints │ │ │ │ │ ├── SimpleStockQuoteService1.xml │ │ │ │ │ ├── SimpleStockQuoteService2.xml │ │ │ │ │ └── SimpleStockQuoteService3.xml │ │ │ │ │ ├── local-entries │ │ │ │ │ └── in_transform.xml │ │ │ │ │ ├── message-processors │ │ │ │ │ ├── Forwarder1.xml │ │ │ │ │ ├── Forwarder2.xml │ │ │ │ │ └── Forwarder3.xml │ │ │ │ │ ├── message-stores │ │ │ │ │ └── JMSMS.xml │ │ │ │ │ ├── proxy-services │ │ │ │ │ ├── JMSBinaryProxy.xml │ │ │ │ │ ├── JSONProxy.xml │ │ │ │ │ ├── Sample18TestCaseProxy.xml │ │ │ │ │ ├── Sample400TestCaseProxy.xml │ │ │ │ │ ├── Sample420TestCaseProxy.xml │ │ │ │ │ ├── Sample61TestCaseProxy.xml │ │ │ │ │ ├── Sample62TestCaseProxy.xml │ │ │ │ │ ├── Sample705StockQuoteProxy.xml │ │ │ │ │ ├── SplitAggregateProxy.xml │ │ │ │ │ ├── StockQuoteProxy.xml │ │ │ │ │ ├── StockQuoteProxyForSample155.xml │ │ │ │ │ └── Streaming.xml │ │ │ │ │ ├── sequences │ │ │ │ │ ├── BINARY_CBR_SEQ.xml │ │ │ │ │ ├── Sample61Main.xml │ │ │ │ │ ├── Sample62Main.xml │ │ │ │ │ ├── Sample705main.xml │ │ │ │ │ └── errorHandler.xml │ │ │ │ │ └── synapse.xml │ │ │ │ ├── sql │ │ │ │ ├── mysqldata.sql │ │ │ │ ├── stock.sql │ │ │ │ └── system.sql │ │ │ │ ├── streamingxpath │ │ │ │ ├── StreamingException.xml │ │ │ │ └── synapse.properties │ │ │ │ ├── synapseconfig │ │ │ │ ├── CheckAggregateChildContentConfig │ │ │ │ │ └── synapse.xml │ │ │ │ ├── ESBRegistry.xml │ │ │ │ ├── LargeAggregationWithoutTimeoutConfig │ │ │ │ │ └── synapse.xml │ │ │ │ ├── MaxOpenConnections │ │ │ │ │ ├── max_open_connections.xml │ │ │ │ │ ├── nhttp.properties │ │ │ │ │ ├── nhttp │ │ │ │ │ │ └── axis2.xml │ │ │ │ │ ├── passthru-http.properties │ │ │ │ │ └── ptt │ │ │ │ │ │ └── axis2.xml │ │ │ │ ├── WSO2Registry.xml │ │ │ │ ├── addressEndpointConfig │ │ │ │ │ ├── addressEP_Test.xml │ │ │ │ │ └── synapse.xml │ │ │ │ ├── aggregateWithinTimoutConfig │ │ │ │ │ └── synapse.xml │ │ │ │ ├── aggregatedEnclosingElement │ │ │ │ │ └── synapse.xml │ │ │ │ ├── class_mediator │ │ │ │ │ └── synapse.xml │ │ │ │ ├── config06 │ │ │ │ │ └── synapse.xml │ │ │ │ ├── config1 │ │ │ │ │ ├── endpoints │ │ │ │ │ │ ├── Axis2EPR.xml │ │ │ │ │ │ ├── BCISEndpoint.xml │ │ │ │ │ │ ├── CreditEpr.xml │ │ │ │ │ │ ├── PersonInfoEpr.xml │ │ │ │ │ │ ├── RSMeansEndpoint.xml │ │ │ │ │ │ ├── RuleServiceEndpoint.xml │ │ │ │ │ │ ├── SimpleStockQuoteService.xml │ │ │ │ │ │ ├── club_profile_ds_endpoint.xml │ │ │ │ │ │ ├── club_profile_ds_lb_endpoint.xml │ │ │ │ │ │ ├── club_record_ds_endpoint.xml │ │ │ │ │ │ ├── club_record_ds_lb_endpoint.xml │ │ │ │ │ │ ├── ds_endpoint.xml │ │ │ │ │ │ ├── geo_endpoint.xml │ │ │ │ │ │ ├── gis_endpoint.xml │ │ │ │ │ │ ├── resut_display_ep.xml │ │ │ │ │ │ ├── samplefailoverendpoint.xml │ │ │ │ │ │ └── samplewsdlendpoint.xml │ │ │ │ │ ├── local-entries │ │ │ │ │ │ ├── ResutDisplayServiceTransform.xml │ │ │ │ │ │ ├── geo_transform.xml │ │ │ │ │ │ ├── resource_proxy_reply_transformation.xml │ │ │ │ │ │ ├── rule_service_transformation.xml │ │ │ │ │ │ ├── testBean.xml │ │ │ │ │ │ └── validate_schema.xml │ │ │ │ │ ├── message-processors │ │ │ │ │ │ └── MProc1.xml │ │ │ │ │ ├── message-store │ │ │ │ │ │ └── MStore1.xml │ │ │ │ │ ├── priority-executors │ │ │ │ │ │ └── samplePriority2.xml │ │ │ │ │ ├── proxy-services │ │ │ │ │ │ ├── DemoProxy.xml │ │ │ │ │ │ └── StockQuoteProxy.xml │ │ │ │ │ ├── registry.xml │ │ │ │ │ ├── sequences │ │ │ │ │ │ ├── fault.xml │ │ │ │ │ │ └── main.xml │ │ │ │ │ ├── synapse.xml │ │ │ │ │ └── tasks │ │ │ │ │ │ └── sampleTask.xml │ │ │ │ ├── config10 │ │ │ │ │ └── synapse.xml │ │ │ │ ├── config11 │ │ │ │ │ └── synapse.xml │ │ │ │ ├── config12 │ │ │ │ │ └── synapse.xml │ │ │ │ ├── config13 │ │ │ │ │ └── synapse.xml │ │ │ │ ├── config16 │ │ │ │ │ └── synapse.xml │ │ │ │ ├── config17 │ │ │ │ │ └── synapse.xml │ │ │ │ ├── config18 │ │ │ │ │ └── synapse.xml │ │ │ │ ├── config19 │ │ │ │ │ └── synapse.xml │ │ │ │ ├── config20 │ │ │ │ │ └── synapse.xml │ │ │ │ ├── config21 │ │ │ │ │ └── synapse.xml │ │ │ │ ├── config3 │ │ │ │ │ ├── proxy-services │ │ │ │ │ │ └── StockQuoteProxy.xml │ │ │ │ │ ├── registry.xml │ │ │ │ │ └── synapse.xml │ │ │ │ ├── config4 │ │ │ │ │ └── proxy-services │ │ │ │ │ │ └── simplePassThoughProxy.xml │ │ │ │ ├── config46 │ │ │ │ │ └── synapse.xml │ │ │ │ ├── config5 │ │ │ │ │ └── proxy-services │ │ │ │ │ │ └── simplePassThoughWithWSDL.xml │ │ │ │ ├── config54 │ │ │ │ │ └── synapse.xml │ │ │ │ ├── config55 │ │ │ │ │ └── synapse.xml │ │ │ │ ├── config6 │ │ │ │ │ └── synapse.xml │ │ │ │ ├── config603 │ │ │ │ │ └── synapse.xml │ │ │ │ ├── config65 │ │ │ │ │ └── synapse.xml │ │ │ │ ├── config66 │ │ │ │ │ └── synapse.xml │ │ │ │ ├── config67 │ │ │ │ │ └── synapse.xml │ │ │ │ ├── config7 │ │ │ │ │ └── synapse.xml │ │ │ │ ├── config8 │ │ │ │ │ ├── classes │ │ │ │ │ │ └── synapse.properties │ │ │ │ │ └── synapse.xml │ │ │ │ ├── config9 │ │ │ │ │ └── synapse.xml │ │ │ │ ├── configFailOver │ │ │ │ │ └── ConfigFailOver.xml │ │ │ │ ├── configForInvaliedXquaryKey │ │ │ │ │ └── synapse.xml │ │ │ │ ├── config_multiple_rule │ │ │ │ │ └── synapse.xml │ │ │ │ ├── config_rule_s3 │ │ │ │ │ └── synapse.xml │ │ │ │ ├── config_single_rule │ │ │ │ │ └── synapse.xml │ │ │ │ ├── config_without_rule │ │ │ │ │ └── synapse.xml │ │ │ │ ├── core │ │ │ │ │ ├── synapse.xml │ │ │ │ │ ├── synapse_add_child_from_property.xml │ │ │ │ │ ├── synapse_add_sibling_from_property.xml │ │ │ │ │ ├── synapse_body_to_child_of_body.xml │ │ │ │ │ ├── synapse_body_to_sibling_of_body.xml │ │ │ │ │ ├── synapse_body_to_xpath_child.xml │ │ │ │ │ ├── synapse_body_to_xpath_sibling.xml │ │ │ │ │ ├── synapse_child_xpath.xml │ │ │ │ │ ├── synapse_envelope1.xml │ │ │ │ │ ├── synapse_replace_envelope_property.xml │ │ │ │ │ ├── synapse_replace_multiple_node.xml │ │ │ │ │ └── synapse_sourcexpath_targetxpath.xml │ │ │ │ ├── core_mediator │ │ │ │ │ ├── synapse.xml │ │ │ │ │ ├── synapseLoopbackMediatorConfig.xml │ │ │ │ │ └── synapseRepondMediatorConfig.xml │ │ │ │ ├── customSSLprofileWithsecurevault │ │ │ │ │ ├── axis2.xml │ │ │ │ │ ├── cipher-text.properties │ │ │ │ │ ├── cipher-tool.properties │ │ │ │ │ ├── password-tmp │ │ │ │ │ └── secret-conf.properties │ │ │ │ ├── default │ │ │ │ │ ├── api │ │ │ │ │ │ ├── StockQuoteAPI.xml │ │ │ │ │ │ └── StockQuoteAPI2.xml │ │ │ │ │ ├── endpoints │ │ │ │ │ │ └── addressEpTest.xml │ │ │ │ │ ├── local-entries │ │ │ │ │ │ └── local-entry-sequence-key.xml │ │ │ │ │ ├── proxy-services │ │ │ │ │ │ ├── SampleProxy.xml │ │ │ │ │ │ ├── StockQuoteProxy.xml │ │ │ │ │ │ └── addressEndPoint.xml │ │ │ │ │ ├── registry.xml │ │ │ │ │ ├── sequences │ │ │ │ │ │ ├── fault.xml │ │ │ │ │ │ └── main.xml │ │ │ │ │ ├── synapse.xml │ │ │ │ │ └── tasks │ │ │ │ │ │ └── SampleInjectToProxyTask.xml │ │ │ │ ├── defaultEndpointConfig │ │ │ │ │ ├── defaultEP_Test.xml │ │ │ │ │ └── synapse.xml │ │ │ │ ├── defaultconfig │ │ │ │ │ └── default-synapse.xml │ │ │ │ ├── enrich │ │ │ │ │ ├── add_source_as_sibling_in_body.xml │ │ │ │ │ ├── replace_envelop.xml │ │ │ │ │ └── replace_part_of_msg_by_body.xml │ │ │ │ ├── enrich_mediator │ │ │ │ │ ├── add_child_using_xpath_synapse.xml │ │ │ │ │ ├── copy_xpathOf_single_node.xml │ │ │ │ │ ├── replaceBodyOfMessageSynapse.xml │ │ │ │ │ ├── replaceBodySynapse.xml │ │ │ │ │ ├── replace_body_using_source_type_body.xml │ │ │ │ │ └── synapse.xml │ │ │ │ ├── esbjava2283 │ │ │ │ │ └── synapse.xml │ │ │ │ ├── filters │ │ │ │ │ ├── conditional_router │ │ │ │ │ │ ├── dynamic_seq1.xml │ │ │ │ │ │ ├── synapse1.xml │ │ │ │ │ │ ├── synapse2.xml │ │ │ │ │ │ ├── synapse3.xml │ │ │ │ │ │ ├── synapse4.xml │ │ │ │ │ │ ├── synapse5.xml │ │ │ │ │ │ └── synapse6.xml │ │ │ │ │ ├── filter │ │ │ │ │ │ ├── synapse1.xml │ │ │ │ │ │ ├── synapse2.xml │ │ │ │ │ │ └── synapse3.xml │ │ │ │ │ ├── in │ │ │ │ │ │ └── synapse.xml │ │ │ │ │ ├── out │ │ │ │ │ │ ├── multiple_out_mediators_config.xml │ │ │ │ │ │ └── out_without_children.xml │ │ │ │ │ ├── switchMediator │ │ │ │ │ │ ├── ESBJAVA_1857_switch_case_synapse.xml │ │ │ │ │ │ ├── Invalid_xpath.xml │ │ │ │ │ │ ├── SOAP11_SOAP12_XPath.xml │ │ │ │ │ │ ├── SOAP11_SOAP12_XPath_nagative_case.xml │ │ │ │ │ │ ├── basic_and_without_default_case_synapse.xml │ │ │ │ │ │ ├── further_processing_of_switch_after_match.xml │ │ │ │ │ │ ├── invalid_prefix.xml │ │ │ │ │ │ ├── onerror_sequence_within_switch_config.xml │ │ │ │ │ │ ├── switch_inside_switch_config.xml │ │ │ │ │ │ └── switching_based_on_address_synapse.xml │ │ │ │ │ └── validate │ │ │ │ │ │ ├── schema1.xml │ │ │ │ │ │ ├── schema1a.xml │ │ │ │ │ │ ├── synapse1.xml │ │ │ │ │ │ └── validate_synapse.xml │ │ │ │ ├── groovy │ │ │ │ │ ├── axis2.xml │ │ │ │ │ ├── synapse_with_groovy.xml │ │ │ │ │ └── synapse_without_groovy.xml │ │ │ │ ├── healthcarescenario │ │ │ │ │ ├── GeoService.wsdl │ │ │ │ │ ├── HCCService.wsdl │ │ │ │ │ ├── HCFacilityLocatorService.wsdl │ │ │ │ │ ├── HCInformationService.wsdl │ │ │ │ │ └── synapse.xml │ │ │ │ ├── highTimeoutValueConfig │ │ │ │ │ └── synapse.xml │ │ │ │ ├── http_transport │ │ │ │ │ ├── set_host_http_header.xml │ │ │ │ │ └── set_host_http_header_with_port.xml │ │ │ │ ├── log_mediator │ │ │ │ │ └── synapse.xml │ │ │ │ ├── messageStore │ │ │ │ │ ├── ESBJAVA-2907StoreOmElementsAsProperties.xml │ │ │ │ │ ├── axis2.xml │ │ │ │ │ ├── sample_700.xml │ │ │ │ │ ├── scriptMediator │ │ │ │ │ │ └── axis2.xml │ │ │ │ │ ├── special_character.xml │ │ │ │ │ └── test.xml │ │ │ │ ├── messagewithoutcontent │ │ │ │ │ ├── request.xml │ │ │ │ │ ├── synapse.xml │ │ │ │ │ └── xmlrequest.xml │ │ │ │ ├── nhttp_transport │ │ │ │ │ ├── content_type_charset_synapse.xml │ │ │ │ │ ├── nhttp.properties │ │ │ │ │ └── nhttp_test_synapse.xml │ │ │ │ ├── nonBlockingHTTP │ │ │ │ │ ├── axis2.xml │ │ │ │ │ └── local_jms_proxy_synapse.xml │ │ │ │ ├── observer │ │ │ │ │ ├── log4j.properties │ │ │ │ │ └── synapse.properties │ │ │ │ ├── onCompleteSequenceConfig │ │ │ │ │ ├── sequences │ │ │ │ │ │ └── dynamic_seq1.xml │ │ │ │ │ └── synapse.xml │ │ │ │ ├── onCompleteSequenceFromGreg │ │ │ │ │ ├── sequences │ │ │ │ │ │ └── dynamic_seq1.xml │ │ │ │ │ └── synapse.xml │ │ │ │ ├── patchAutomation │ │ │ │ │ ├── failover_endpoint_for_single_leaf_endpoint_synapse.xml │ │ │ │ │ ├── https_request_via_http_proxy_synapse.xml │ │ │ │ │ ├── non_ascii_value_properties_synapse_.xml │ │ │ │ │ └── url_encoded_form_post_proxy.xml │ │ │ │ ├── patch_automation │ │ │ │ │ ├── CARBON11016_synapse.xml │ │ │ │ │ ├── CloneArtifactTestCase.xml │ │ │ │ │ ├── failover_endpoint_for_single_leaf_endpoint_synapse.xml │ │ │ │ │ └── load_balance_failover_synapse.xml │ │ │ │ ├── payloadmediatype │ │ │ │ │ ├── media_type_xml_json_default.xml │ │ │ │ │ ├── no_arguments.xml │ │ │ │ │ ├── value_argument.xml │ │ │ │ │ └── valueandexpression_arguments.xml │ │ │ │ ├── processor │ │ │ │ │ └── forwarding │ │ │ │ │ │ ├── InMemoryStoreSynapse1.xml │ │ │ │ │ │ ├── Retry_On_SOAPFault_In_Out.xml │ │ │ │ │ │ └── Retry_On_SOAPFault_true_In_Out.xml │ │ │ │ ├── propertyMediatorConfig │ │ │ │ │ └── synapse.xml │ │ │ │ ├── propertyWithinIterateConfig │ │ │ │ │ └── synapse.xml │ │ │ │ ├── proxyadmin │ │ │ │ │ └── testconfig.xml │ │ │ │ ├── rest │ │ │ │ │ ├── axis2-service-synapse.xml │ │ │ │ │ ├── customer-service-proxy.xml │ │ │ │ │ ├── rest-client-and-rest-service.xml │ │ │ │ │ ├── rest-service-proxy.xml │ │ │ │ │ ├── student-service-synapse.xml │ │ │ │ │ ├── synapse.xml │ │ │ │ │ └── uri-template-synapse.xml │ │ │ │ ├── script_mediator │ │ │ │ │ ├── groovy_script_with_setPayloadJson.xml │ │ │ │ │ ├── groovy_script_with_the_mediator.xml │ │ │ │ │ ├── jsfromEntry_config.xml │ │ │ │ │ ├── retrieve_script_from_gov_reg_mediation.xml │ │ │ │ │ ├── synapse.xml │ │ │ │ │ ├── synapse3.xml │ │ │ │ │ └── synapse_generate_fault.xml │ │ │ │ ├── sendMediatorConfig │ │ │ │ │ ├── synapse.xml │ │ │ │ │ ├── test_sequences_config │ │ │ │ │ │ └── receivingSequence_Conf.xml │ │ │ │ │ ├── test_sequences_gov │ │ │ │ │ │ └── receivingSequence_Gov.xml │ │ │ │ │ └── test_sequences_local │ │ │ │ │ │ └── receivingSequence_Local.xml │ │ │ │ ├── send_mediator │ │ │ │ │ ├── endpoints │ │ │ │ │ │ └── registry_endpoint.xml │ │ │ │ │ └── synapse_config.xml │ │ │ │ ├── servletTransport │ │ │ │ │ ├── axis2.xml │ │ │ │ │ ├── pox_servlet_transport_axis2.xml │ │ │ │ │ └── soap_2_pox.xml │ │ │ │ ├── smooks │ │ │ │ │ ├── axis2.xml │ │ │ │ │ ├── large_csv_smooks_test.xml │ │ │ │ │ ├── person.csv │ │ │ │ │ ├── smooks_config.xml │ │ │ │ │ └── smooks_synapse.xml │ │ │ │ ├── throttle │ │ │ │ │ ├── ConcurrencyAndRequestBasedThrottlingConcurrency.xml │ │ │ │ │ ├── ConcurrencyAndRequestBasedThrottlingRequest.xml │ │ │ │ │ ├── MaximumConcurrentAccess.xml │ │ │ │ │ ├── concurrencyTest.xml │ │ │ │ │ ├── concurrencyTestMaxConcurrentAccessOne.xml │ │ │ │ │ ├── concurrentAccessLargeRequestCountSmallTest.xml │ │ │ │ │ ├── invalidThrottlingPolicyTest.xml │ │ │ │ │ └── specifyThrottlingPolicyAsARegistryKey.xml │ │ │ │ ├── validatemediator │ │ │ │ │ ├── dynamickey.xml │ │ │ │ │ ├── invalid_dynamic_key.xml │ │ │ │ │ ├── staticKey.xml │ │ │ │ │ ├── validate_secure_false.xml │ │ │ │ │ ├── validate_secure_true.xml │ │ │ │ │ ├── validate_with_invalid_Xpath.xml │ │ │ │ │ ├── validate_with_proxy.xml │ │ │ │ │ └── validate_with_resources.xml │ │ │ │ ├── validatemediator2 │ │ │ │ │ └── synapse.xml │ │ │ │ ├── vfsTransport │ │ │ │ │ ├── FTP_Location │ │ │ │ │ │ ├── out │ │ │ │ │ │ │ └── test.xml │ │ │ │ │ │ └── test.xml │ │ │ │ │ ├── axis2.xml │ │ │ │ │ ├── edi.txt │ │ │ │ │ ├── fail.xml │ │ │ │ │ ├── mail │ │ │ │ │ │ ├── axis2.xml │ │ │ │ │ │ └── test.xml │ │ │ │ │ ├── out │ │ │ │ │ │ └── test.txt │ │ │ │ │ ├── smooks-config.xml │ │ │ │ │ ├── synapse_config_658.xml │ │ │ │ │ ├── synapse_sample_658_input.xml │ │ │ │ │ ├── test.txt │ │ │ │ │ ├── test.xml │ │ │ │ │ ├── vfs_test_smook_config_at_registry.xml │ │ │ │ │ ├── vfs_test_synapse.xml │ │ │ │ │ └── vfs_xml_to_xml.xml │ │ │ │ └── wsdlEndpointConfig │ │ │ │ │ ├── synapse.xml │ │ │ │ │ └── wsdlEP_Test.xml │ │ │ │ ├── tcp │ │ │ │ └── transport │ │ │ │ │ ├── axis2.xml │ │ │ │ │ ├── client_axis2.xml │ │ │ │ │ └── tcpProxy.xml │ │ │ │ └── test.xml │ │ │ ├── automation.xml │ │ │ ├── automationXMLSchema.xsd │ │ │ ├── bin │ │ │ └── integrator.sh │ │ │ ├── log4j.properties │ │ │ ├── security │ │ │ ├── keystore │ │ │ │ ├── client.jks │ │ │ │ └── service.jks │ │ │ └── policies │ │ │ │ ├── custom │ │ │ │ ├── scenario1-policy.xml │ │ │ │ ├── scenario10-policy.xml │ │ │ │ ├── scenario11-policy.xml │ │ │ │ ├── scenario12-policy.xml │ │ │ │ ├── scenario13-policy.xml │ │ │ │ ├── scenario14-policy.xml │ │ │ │ ├── scenario15-policy.xml │ │ │ │ ├── scenario16-policy.xml │ │ │ │ ├── scenario17-policy.xml │ │ │ │ ├── scenario2-policy.xml │ │ │ │ ├── scenario3-policy.xml │ │ │ │ ├── scenario4-policy.xml │ │ │ │ ├── scenario5-policy.xml │ │ │ │ ├── scenario6-policy.xml │ │ │ │ ├── scenario7-policy.xml │ │ │ │ ├── scenario8-policy.xml │ │ │ │ └── scenario9-policy.xml │ │ │ │ ├── scenario-config.xml │ │ │ │ ├── scenario1-policy.xml │ │ │ │ ├── scenario10-policy.xml │ │ │ │ ├── scenario11-policy.xml │ │ │ │ ├── scenario12-policy.xml │ │ │ │ ├── scenario13-policy.xml │ │ │ │ ├── scenario14-policy.xml │ │ │ │ ├── scenario15-policy.xml │ │ │ │ ├── scenario16-policy.xml │ │ │ │ ├── scenario17-policy.xml │ │ │ │ ├── scenario2-policy.xml │ │ │ │ ├── scenario27-policy.xml │ │ │ │ ├── scenario3-policy.xml │ │ │ │ ├── scenario4-policy.xml │ │ │ │ ├── scenario5-policy.xml │ │ │ │ ├── scenario6-policy.xml │ │ │ │ ├── scenario7-policy.xml │ │ │ │ ├── scenario8-policy.xml │ │ │ │ └── scenario9-policy.xml │ │ │ ├── testng.xml │ │ │ └── tomcat │ │ │ └── catalina-server.xml │ ├── tests-service │ │ ├── .gitignore │ │ ├── pom.xml │ │ └── src │ │ │ └── test │ │ │ ├── java │ │ │ └── org │ │ │ │ └── wso2 │ │ │ │ └── carbon │ │ │ │ └── esb │ │ │ │ ├── car │ │ │ │ └── deployment │ │ │ │ │ └── test │ │ │ │ │ ├── CAppArtifactIndicationTestCase.java │ │ │ │ │ ├── CAppDeactivateAndRestartTestCase.java │ │ │ │ │ ├── CAppDeploymentOrderTest.java │ │ │ │ │ ├── CarbonApplicationDeploymentTestCase.java │ │ │ │ │ ├── ClassMediatorCarTestCase.java │ │ │ │ │ ├── SynchronizedCarbonApplicationDeploymentTestCase.java │ │ │ │ │ └── XSLTTransformationCarTestCase.java │ │ │ │ ├── endpoint │ │ │ │ └── test │ │ │ │ │ ├── AddressEndpointTestCase.java │ │ │ │ │ ├── CARBON11016TestCase.java │ │ │ │ │ ├── DefaultEndpointTestCase.java │ │ │ │ │ ├── DynamicInlinedWSDLEpTestCase.java │ │ │ │ │ ├── DynamicTimeoutEndpointTestCase.java │ │ │ │ │ ├── DynamicUrlHttpEndpointTestCase.java │ │ │ │ │ ├── ESBJAVA3047Soap12EndpointTestCase.java │ │ │ │ │ ├── EndPointFailOver.java │ │ │ │ │ ├── EndPointFailoverInLoadBalancingTestCase.java │ │ │ │ │ ├── EndpointFormatRestPTTestCase.java │ │ │ │ │ ├── FailOverWithDisabledErrors.java │ │ │ │ │ ├── FailoverEndpointTestCase.java │ │ │ │ │ ├── FailoverEndpointsForSingleLeafEndpointTestCase.java │ │ │ │ │ ├── HotDeploymentTestCase.java │ │ │ │ │ ├── HttpEPServiceChainingTestCase.java │ │ │ │ │ ├── HttpEndpointTestCase.java │ │ │ │ │ ├── IndirectEndpointTestCase.java │ │ │ │ │ ├── InlinedWSDLEndpointTestCase.java │ │ │ │ │ ├── LoadBalanceEndpointTestCase.java │ │ │ │ │ ├── ResolvingEndpointTestCase.java │ │ │ │ │ ├── URIWSDLEndpointTestCase.java │ │ │ │ │ └── util │ │ │ │ │ └── EndpointTestUtils.java │ │ │ │ ├── jaxrs │ │ │ │ ├── rest │ │ │ │ │ └── test │ │ │ │ │ │ └── SoapToRestPeopleSampleTestCase.java │ │ │ │ └── test │ │ │ │ │ └── RestPeopleTestCase.java │ │ │ │ ├── json │ │ │ │ └── test │ │ │ │ │ ├── JSONPayloadProperFormatTenantModeTestCase.java │ │ │ │ │ ├── JSONToSoapConversionTestCase.java │ │ │ │ │ ├── JsonTestCase.java │ │ │ │ │ └── XMLToJsonTestCase.java │ │ │ │ ├── localentry │ │ │ │ └── test │ │ │ │ │ ├── SpecifyThrottlingPolicyAsLocalEntryTestCase.java │ │ │ │ │ └── general │ │ │ │ │ └── SequenceAsLocalRegistryEntryTestCase.java │ │ │ │ ├── logging │ │ │ │ └── test │ │ │ │ │ └── ContainerNameLoggingTestCase.java │ │ │ │ ├── proxyservice │ │ │ │ └── test │ │ │ │ │ ├── customProxy │ │ │ │ │ ├── InSequenceExistingSequenceTestCase.java │ │ │ │ │ ├── InSequenceFromRegistryTestCase.java │ │ │ │ │ ├── InSequenceInlineEndpointFromRegistryTestCase.java │ │ │ │ │ ├── InSequenceInlineEndpointInlineTestCase.java │ │ │ │ │ ├── InSequenceNoneEndpointExistingTestCase.java │ │ │ │ │ ├── InSequenceNoneEndpointFromRegistryTestCase.java │ │ │ │ │ ├── InSequenceNoneEndpointInlineTestCase.java │ │ │ │ │ ├── InvokingNonExistingProxyTestCase.java │ │ │ │ │ ├── MalformedHTTPRequestTest.java │ │ │ │ │ └── OutSequenceFaultSequenceTestCase.java │ │ │ │ │ ├── loggingProxy │ │ │ │ │ ├── PickEndPointFromRegistryTestCase.java │ │ │ │ │ ├── ProxyServiceEnablingHTTPSTestCase.java │ │ │ │ │ ├── ProxyServiceEnablingHTTPTestCase.java │ │ │ │ │ ├── ProxyServiceEndPointThroughURLTestCase.java │ │ │ │ │ ├── RequestLogLevelFullResponseLogLevelFullTestCase.java │ │ │ │ │ ├── RequestLogLevelNoneResponseLogLevelNoneTestCase.java │ │ │ │ │ ├── RequestLogLevelSimpleResponseLogLevelSimpleTestCase.java │ │ │ │ │ ├── WSDLOptionsPickedFromRegistryTestCase.java │ │ │ │ │ ├── WSDLOptionsSpecifiedInlineTestCase.java │ │ │ │ │ └── WSDLOptionsSpecifiedSourceUrlTestCase.java │ │ │ │ │ ├── passThroughProxy │ │ │ │ │ ├── PassThroughProxyServiceTestCase.java │ │ │ │ │ ├── PickEndPointFromRegistryTestCase.java │ │ │ │ │ ├── ProxyServiceEnablingHTTPSTestCase.java │ │ │ │ │ ├── ProxyServiceEnablingHTTPTestCase.java │ │ │ │ │ ├── ProxyServiceEndPointThroughURLTestCase.java │ │ │ │ │ ├── ProxyServiceWithCustomServiceURITestCase.java │ │ │ │ │ ├── WSDLOptionsPickedFromRegistryTestCase.java │ │ │ │ │ ├── WSDLOptionsSpecifiedInlineTestCase.java │ │ │ │ │ └── WSDLOptionsSpecifiedSourceUrlTestCase.java │ │ │ │ │ ├── proxyservices │ │ │ │ │ ├── CorrectPinnedServerNameTestCase.java │ │ │ │ │ ├── ESBJAVA4540PinnedServerParameterTestCase.java │ │ │ │ │ ├── ESBJAVA4846HttpProtocolVersionTestCase.java │ │ │ │ │ ├── HttpsServiceViaHttpProxyTestCase.java │ │ │ │ │ ├── MultipartFormDataProxyTestCase.java │ │ │ │ │ ├── ProxyServiceEndpointBindingsTestCase.java │ │ │ │ │ ├── ProxyServiceHttpToHttpsServiceTestCase.java │ │ │ │ │ ├── ProxyServiceWithWSAddressingTestCase.java │ │ │ │ │ └── UrlEncordedFormPostViaProxyTestCase.java │ │ │ │ │ ├── secureProxy │ │ │ │ │ ├── Axis2ServerStartupWithSecuredServices.java │ │ │ │ │ ├── ChangingPoliciesTestCase.java │ │ │ │ │ ├── EditSecuredProxyTestCase.java │ │ │ │ │ ├── EndpointBindingSecuredProxyTestCase.java │ │ │ │ │ ├── PassThroughProxyEngagingSecurityPolicyTestCase.java │ │ │ │ │ ├── PassThroughProxyWithPreserverSecurityHeaderTestCase.java │ │ │ │ │ ├── SecureProxyUsingPolicyFileInLocalEntryTestCase.java │ │ │ │ │ ├── SecuredProxySecuredBackEndTestCase.java │ │ │ │ │ ├── SecurityTransformationProxyForPolicy2BackEndTestCase.java │ │ │ │ │ ├── SecurityTransformationProxyForPolicy3BackEndTestCase.java │ │ │ │ │ ├── SecurityTransformationProxyForPolicy4BackEndTestCase.java │ │ │ │ │ ├── SecurityTransformationProxyForPolicy5BackEndTestCase.java │ │ │ │ │ ├── SecurityTransformationProxyForPolicy6BackEndTestCase.java │ │ │ │ │ ├── SecurityTransformationProxyForPolicy7BackEndTestCase.java │ │ │ │ │ ├── SecurityTransformationProxyForPolicy8BackEndTestCase.java │ │ │ │ │ ├── SendMessageWithoutSecurityHeadersTestCase.java │ │ │ │ │ └── util │ │ │ │ │ │ ├── SecureEndpointSetter.java │ │ │ │ │ │ └── SecureStockQuoteClient.java │ │ │ │ │ ├── transformerProxy │ │ │ │ │ ├── InvalidXSLTTestCase.java │ │ │ │ │ ├── PickEndPointFromRegistryTestCase.java │ │ │ │ │ ├── ProxyServiceEnablingHTTPSTestCase.java │ │ │ │ │ ├── ProxyServiceEnablingHTTPTestCase.java │ │ │ │ │ ├── ProxyServiceEndPointThroughURLTestCase.java │ │ │ │ │ ├── WSDLOptionsPickedFromRegistryTestCase.java │ │ │ │ │ ├── WSDLOptionsSpecifiedInlineTestCase.java │ │ │ │ │ └── WSDLOptionsSpecifiedSourceUrlTestCase.java │ │ │ │ │ └── wsdlBasedProxy │ │ │ │ │ ├── ESBJAVA4821WSDLProxyServiceDeploymentTestCase.java │ │ │ │ │ ├── ProxyServiceEnablingHTTPSTestCase.java │ │ │ │ │ ├── ProxyServiceEnablingHTTPTestCase.java │ │ │ │ │ ├── ProxyWithPublishSameServiceContractTestCase.java │ │ │ │ │ ├── WSDLOptionsPickedFromRegistryTestCase.java │ │ │ │ │ ├── WSDLOptionsSpecifiedInlineTestCase.java │ │ │ │ │ └── WSDLOptionsSpecifiedSourceUrlTestCase.java │ │ │ │ ├── rest │ │ │ │ └── test │ │ │ │ │ ├── api │ │ │ │ │ ├── APIHeadMethod.java │ │ │ │ │ ├── ESBJAVA4519TestCase.java │ │ │ │ │ ├── ESBJAVA4852URITemplateWithCompleteURLTestCase.java │ │ │ │ │ ├── LastQueryParamEmptyTestCase.java │ │ │ │ │ ├── OpenApiForAPIsTestCase.java │ │ │ │ │ ├── RestPostFixUrlTest.java │ │ │ │ │ ├── SimpleStockQuoteRESTTestCase.java │ │ │ │ │ └── URITemplateRESTTestCase.java │ │ │ │ │ ├── header │ │ │ │ │ ├── ContentTypeTestCase.java │ │ │ │ │ ├── ESBJAVA2283ReturnContentTypeTestCase.java │ │ │ │ │ └── HTTPResponseCodeTestCase.java │ │ │ │ │ └── security │ │ │ │ │ ├── Axis2ServerStartupTestCase.java │ │ │ │ │ ├── ESBPOXSecurityByAdminTestCase.java │ │ │ │ │ ├── ESBPOXSecurityByInvalidUserTestCase.java │ │ │ │ │ ├── ESBPOXSecurityByUserTestCase.java │ │ │ │ │ ├── ESBPOXSecurityGetMethodTestCase.java │ │ │ │ │ ├── ESBPOXSecurityPostRequestTestCase.java │ │ │ │ │ ├── ESBPOXSecurityWithInvalidGroupTestCase.java │ │ │ │ │ ├── NonAdminUserCreationTestCase.java │ │ │ │ │ └── util │ │ │ │ │ └── RestEndpointSetter.java │ │ │ │ └── scheduledtask │ │ │ │ └── test │ │ │ │ ├── InjectToProxyTestCase.java │ │ │ │ ├── InjectToSequenceTestCase.java │ │ │ │ ├── TaskRedeployWithCappTestCase.java │ │ │ │ └── TaskWithLargeIntervalValueTestCase.java │ │ │ └── resources │ │ │ ├── Responses │ │ │ ├── SwaggerResponse.json │ │ │ └── SwaggerResponse.yaml │ │ │ ├── artifacts │ │ │ ├── AXIS2 │ │ │ │ ├── aar │ │ │ │ │ ├── Axis2 Service.aar │ │ │ │ │ ├── Axis2Service.aar │ │ │ │ │ ├── Echo.aar │ │ │ │ │ ├── HelloWorld.aar │ │ │ │ │ ├── LBService1.aar │ │ │ │ │ ├── LBService2.aar │ │ │ │ │ ├── LBService3.aar │ │ │ │ │ ├── MTOMSwASampleService.aar │ │ │ │ │ ├── RetryOnSoapFault.aar │ │ │ │ │ ├── SecureStockQuoteService.aar │ │ │ │ │ ├── SecureStockQuoteServiceScenario1.aar │ │ │ │ │ ├── SecureStockQuoteServiceScenario10.aar │ │ │ │ │ ├── SecureStockQuoteServiceScenario2.aar │ │ │ │ │ ├── SecureStockQuoteServiceScenario3.aar │ │ │ │ │ ├── SecureStockQuoteServiceScenario4.aar │ │ │ │ │ ├── SecureStockQuoteServiceScenario5.aar │ │ │ │ │ ├── SecureStockQuoteServiceScenario6.aar │ │ │ │ │ ├── SecureStockQuoteServiceScenario7.aar │ │ │ │ │ ├── SecureStockQuoteServiceScenario8.aar │ │ │ │ │ ├── SecureStockQuoteServiceScenario9.aar │ │ │ │ │ ├── SimpleStockQuoteService.aar │ │ │ │ │ ├── SimpleStockQuoteService_timeout.aar │ │ │ │ │ ├── StratosSchemaimportservice.aar │ │ │ │ │ ├── StudentService.aar │ │ │ │ │ ├── geows.aar │ │ │ │ │ ├── hcfacilitylocator.aar │ │ │ │ │ └── hcinformationservice.aar │ │ │ │ └── config │ │ │ │ │ ├── test_axis2_server_9000.xml │ │ │ │ │ ├── test_axis2_server_9001.xml │ │ │ │ │ ├── test_axis2_server_9002.xml │ │ │ │ │ ├── test_axis2_server_9003.xml │ │ │ │ │ ├── test_axis2_server_9007.xml │ │ │ │ │ ├── test_axis2_server_9009.xml │ │ │ │ │ ├── test_axis2_server_9015.xml │ │ │ │ │ └── test_axis2_server_9017.xml │ │ │ └── ESB │ │ │ │ ├── car │ │ │ │ ├── CappDeactivateAndRestartTest_1.0.0.car │ │ │ │ ├── DemoProxy-1.0.0.car │ │ │ │ ├── ESBproject1-1.0.0.car │ │ │ │ ├── ESBproject2-1.0.0.car │ │ │ │ ├── ESBproject3-1.0.0.car │ │ │ │ ├── ESBproject4-1.0.0.car │ │ │ │ ├── HealthCareCompositeExporter_1.0.0.car │ │ │ │ ├── MediatorCApp2_1.0.0.car │ │ │ │ ├── ServiceChaining-1.0.0.car │ │ │ │ ├── SynchroDepInValidCarApp_1.0.0.car │ │ │ │ ├── SynchroDepValidCarApp_1.0.0.car │ │ │ │ ├── esb-artifacts-car_1.0.0.car │ │ │ │ ├── esb-deployment-car_1.0.0.car │ │ │ │ └── xslt-transformation-car_1.0.0.car │ │ │ │ ├── compression │ │ │ │ └── gzip │ │ │ │ │ └── gzip-compression.xml │ │ │ │ ├── config │ │ │ │ ├── deployment.toml │ │ │ │ └── testconfig.xml │ │ │ │ ├── defaultconfigs │ │ │ │ └── synapse.xml │ │ │ │ ├── endpoint │ │ │ │ ├── CARBON11016_synapse.xml │ │ │ │ ├── addressEndpointConfig │ │ │ │ │ ├── addressEP_Test.xml │ │ │ │ │ └── invalidPropertyAddressEndPoint.xml │ │ │ │ ├── defaultEndpointConfig │ │ │ │ │ ├── defaultEP_Test.xml │ │ │ │ │ └── synapse.xml │ │ │ │ ├── endpointFotmatRestPTTestConfig.xml │ │ │ │ ├── failoverEndpointConfig │ │ │ │ │ ├── failOverWithDisabledErrors.xml │ │ │ │ │ ├── failoverEP_Test.xml │ │ │ │ │ └── synapse.xml │ │ │ │ ├── httpEndpointConfig │ │ │ │ │ └── serviceChainingWithHTTPEP.xml │ │ │ │ ├── soap12EndpointConfig │ │ │ │ │ └── synapse.xml │ │ │ │ └── wsdlTestEp.xml │ │ │ │ ├── endpointlookup.xml │ │ │ │ ├── entitlementMediatorConfig │ │ │ │ └── entitlementMediatorSynapse.xml │ │ │ │ ├── hl7Transport │ │ │ │ └── axis2.xml │ │ │ │ ├── jaxrs │ │ │ │ ├── getperson.xml │ │ │ │ └── putpeopleproxy.xml │ │ │ │ ├── jms │ │ │ │ └── transport │ │ │ │ │ ├── ESBJAVA-1716_messageStore.xml │ │ │ │ │ ├── ESBJAVA-1793MessageStore-targetEndPointFormat-pox.xml │ │ │ │ │ ├── HTTP_SC.xml │ │ │ │ │ ├── JMSAXISFault.xml │ │ │ │ │ ├── JMSMessageStoreREST.xml │ │ │ │ │ ├── axis2config │ │ │ │ │ ├── activemq │ │ │ │ │ │ └── axis2.xml │ │ │ │ │ └── mb │ │ │ │ │ │ └── axis2.xml │ │ │ │ │ ├── jms_endpoint_proxy_service.xml │ │ │ │ │ ├── jms_message_store_and_processor_service.xml │ │ │ │ │ ├── jms_message_store_unavailable_service.xml │ │ │ │ │ ├── jms_out_only_proxy.xml │ │ │ │ │ ├── jms_transport.xml │ │ │ │ │ ├── jms_transport_jms_suspension.xml │ │ │ │ │ ├── jms_transport_proxy_service.xml │ │ │ │ │ ├── jms_wait_response.xml │ │ │ │ │ ├── jmsclient-and-restService.xml │ │ │ │ │ ├── jndi.properties │ │ │ │ │ ├── msgInjection │ │ │ │ │ ├── msg_injecting_task.xml │ │ │ │ │ └── msg_store.xml │ │ │ │ │ └── topic │ │ │ │ │ └── send_messages_topic_synapse.xml │ │ │ │ ├── json │ │ │ │ ├── blockingSenderWithJson.xml │ │ │ │ ├── json-to-soap-conversion.xml │ │ │ │ └── xml-to-json.xml │ │ │ │ ├── local │ │ │ │ ├── axis2.xml │ │ │ │ ├── carbon.xml │ │ │ │ ├── local-transport-header.xml │ │ │ │ └── local-transport.xml │ │ │ │ ├── mediatorconfig │ │ │ │ ├── cache │ │ │ │ │ ├── CollectorTypeCacheMediator.xml │ │ │ │ │ └── LargeCacheTimeOut.xml │ │ │ │ ├── call │ │ │ │ │ ├── synapse.xml │ │ │ │ │ ├── synapse1.xml │ │ │ │ │ ├── synapse10.xml │ │ │ │ │ ├── synapse11.xml │ │ │ │ │ ├── synapse12.xml │ │ │ │ │ ├── synapse13.xml │ │ │ │ │ ├── synapse14.xml │ │ │ │ │ ├── synapse15.xml │ │ │ │ │ ├── synapse17.xml │ │ │ │ │ ├── synapse18.xml │ │ │ │ │ ├── synapse19.xml │ │ │ │ │ ├── synapse2.xml │ │ │ │ │ ├── synapse20.xml │ │ │ │ │ ├── synapse21.xml │ │ │ │ │ ├── synapse3.xml │ │ │ │ │ ├── synapse4.xml │ │ │ │ │ ├── synapse5.xml │ │ │ │ │ ├── synapse6.xml │ │ │ │ │ ├── synapse7.xml │ │ │ │ │ ├── synapse8.xml │ │ │ │ │ ├── synapse9.xml │ │ │ │ │ ├── synapse_expressions.xml │ │ │ │ │ └── synapse_param_with_values.xml │ │ │ │ ├── call_template │ │ │ │ │ ├── synapse.xml │ │ │ │ │ ├── synapse_expressions.xml │ │ │ │ │ └── synapse_param_with_values.xml │ │ │ │ ├── callout │ │ │ │ │ ├── CallOutMediatorOutOnlyTest.xml │ │ │ │ │ ├── CallOutMediatorWithMTOMTest.xml │ │ │ │ │ ├── DynamicEndpointTest.xml │ │ │ │ │ ├── DynamicProperties.xml │ │ │ │ │ ├── FaultSeq.xml │ │ │ │ │ ├── InboundOutboundSecurityTest.xml │ │ │ │ │ ├── SecurityTest.xml │ │ │ │ │ ├── TranportCleanupOnFaultTest.xml │ │ │ │ │ ├── ValidPath_Axis2Repo.xml │ │ │ │ │ ├── ValidPath_Axis2Xml.xml │ │ │ │ │ ├── client_repo │ │ │ │ │ │ └── conf │ │ │ │ │ │ │ └── axis2.xml │ │ │ │ │ ├── synapse_sample_430.xml │ │ │ │ │ └── transport_headers.xml │ │ │ │ ├── class │ │ │ │ │ ├── class_mediation_with_twenty_properties.xml │ │ │ │ │ ├── class_property_persistence_five_properties.xml │ │ │ │ │ ├── class_property_persistence_four_properties.xml │ │ │ │ │ └── class_property_persistence_three_properties.xml │ │ │ │ ├── clone │ │ │ │ │ ├── cloneLogAndSendSequence.xml │ │ │ │ │ ├── clone_SOAP_Action.xml │ │ │ │ │ ├── clone_http.xml │ │ │ │ │ ├── clone_https.xml │ │ │ │ │ ├── clone_https_sequence.xml │ │ │ │ │ ├── clone_jms.xml │ │ │ │ │ ├── clone_named_endpoints.xml │ │ │ │ │ ├── clone_sequence.xml │ │ │ │ │ ├── clone_simple.xml │ │ │ │ │ ├── clone_unknown_endpoints.xml │ │ │ │ │ ├── clone_unmaching_aggregate.xml │ │ │ │ │ └── large_message.txt │ │ │ │ ├── db │ │ │ │ │ └── synapse_sample_364.xml │ │ │ │ ├── dblookup │ │ │ │ │ ├── sample_360.xml │ │ │ │ │ ├── sample_360_multiple_SQL_statements.xml │ │ │ │ │ ├── sample_360_multiple_results_test.xml │ │ │ │ │ ├── sample_360_stored_function_test.xml │ │ │ │ │ └── sample_360_stored_procedure.xml │ │ │ │ ├── dbreport │ │ │ │ │ ├── synapse_dbReport.xml │ │ │ │ │ ├── synapse_sample_361.xml │ │ │ │ │ ├── synapse_sample_364.xml │ │ │ │ │ └── synapse_use_transaction.xml │ │ │ │ ├── enrich │ │ │ │ │ ├── add_propert_as_child.xml │ │ │ │ │ ├── add_property_as_sibling.xml │ │ │ │ │ ├── add_sibling.xml │ │ │ │ │ ├── enrich_add_as_child.xml │ │ │ │ │ ├── enrich_add_sibling_in_out_msg.xml │ │ │ │ │ ├── enrich_byGetProperty.xml │ │ │ │ │ ├── enrich_by_enrich.xml │ │ │ │ │ ├── enrich_omText.xml │ │ │ │ │ ├── enrich_replace_body_by_specified_property.xml │ │ │ │ │ ├── enrich_replace_by_property.xml │ │ │ │ │ ├── registry_synapse.xml │ │ │ │ │ └── required │ │ │ │ │ │ └── registry_configs.xml │ │ │ │ ├── fast_xslt │ │ │ │ │ ├── calltemplate_integration_fastxslt_sample750_synapse.xml │ │ │ │ │ ├── fast_xslt_dynamic_key_synapse.xml │ │ │ │ │ └── synapse_fast_xslt_sample_8.xml │ │ │ │ ├── fault │ │ │ │ │ ├── soap11_fault_actor_synapse.xml │ │ │ │ │ ├── soap11_fault_code_Client_synapse.xml │ │ │ │ │ ├── soap11_fault_code_MustUnderstand_synapse.xml │ │ │ │ │ ├── soap11_fault_code_Server_synapse.xml │ │ │ │ │ ├── soap11_fault_code_VersionMismatch_synapse.xml │ │ │ │ │ ├── soap11_fault_detail_as_element_synapse.xml │ │ │ │ │ ├── soap11_fault_detail_synapse.xml │ │ │ │ │ ├── soap11_fault_full_synapse.xml │ │ │ │ │ ├── soap11_fault_out_sequence_synapse.xml │ │ │ │ │ ├── soap11_fault_response_validate_synapse.xml │ │ │ │ │ ├── soap11_fault_set_response_attribute_false_with_addressing_synapse.xml │ │ │ │ │ ├── soap11_fault_set_response_false_synapse.xml │ │ │ │ │ ├── soap11_fault_set_response_true_synapse.xml │ │ │ │ │ ├── soap11_fault_string_expression_synapse.xml │ │ │ │ │ ├── soap11_fault_string_value_synapse.xml │ │ │ │ │ ├── soap12_fault_actor_synapse.xml │ │ │ │ │ ├── soap12_fault_code_DataEncodingUnknown_synapse.xml │ │ │ │ │ ├── soap12_fault_code_MustUnderstand_synapse.xml │ │ │ │ │ ├── soap12_fault_code_Receiver_synapse.xml │ │ │ │ │ ├── soap12_fault_code_Sender_synapse.xml │ │ │ │ │ ├── soap12_fault_code_VersionMismatch_synapse.xml │ │ │ │ │ ├── soap12_fault_detail_as_element_synapse.xml │ │ │ │ │ ├── soap12_fault_detail_synapse.xml │ │ │ │ │ ├── soap12_fault_full_synapse.xml │ │ │ │ │ ├── soap12_fault_node_synapse.xml │ │ │ │ │ ├── soap12_fault_out_sequence_synapse.xml │ │ │ │ │ ├── soap12_fault_response_validate_synapse.xml │ │ │ │ │ ├── soap12_fault_set_response_attribute_false_with_addressing_synapse.xml │ │ │ │ │ ├── soap12_fault_set_response_false_synapse.xml │ │ │ │ │ ├── soap12_fault_set_response_true_synapse.xml │ │ │ │ │ ├── soap12_fault_string_expression_synapse.xml │ │ │ │ │ └── soap12_fault_string_value_synapse.xml │ │ │ │ ├── header │ │ │ │ │ ├── action_header_set_synapse.xml │ │ │ │ │ ├── action_remove_security_synapse.xml │ │ │ │ │ └── to_header_set_synapse.xml │ │ │ │ ├── iterate │ │ │ │ │ ├── ESBJAVA-2843-iterateIfPreservePayloadFalse.xml │ │ │ │ │ ├── IterateIDAggregateIDMismatch.xml │ │ │ │ │ ├── Iterate_anonymous_endpoints.xml │ │ │ │ │ ├── invalid_XPath.xml │ │ │ │ │ ├── invalid_name_space_attachpath.xml │ │ │ │ │ ├── invalid_namespace_iterateexpression.xml │ │ │ │ │ ├── invalid_soapaction.xml │ │ │ │ │ ├── invalid_soapaction_valid_payload.xml │ │ │ │ │ ├── invalid_target_address.xml │ │ │ │ │ ├── iterate.txt │ │ │ │ │ ├── iterate1.txt │ │ │ │ │ ├── iterateEndpoint.xml │ │ │ │ │ ├── iterateLogAndSendSequence.xml │ │ │ │ │ ├── iterateSequentialTrueProperty.xml │ │ │ │ │ ├── iterateSequentialTruePropertyWithOutProperty.xml │ │ │ │ │ ├── iterate_SOAP_Action.xml │ │ │ │ │ ├── iterate_configuration_endpoint.xml │ │ │ │ │ ├── iterate_continue_parent_false.xml │ │ │ │ │ ├── iterate_continue_parent_true.xml │ │ │ │ │ ├── iterate_different_ID.xml │ │ │ │ │ ├── iterate_govners_endpoint.xml │ │ │ │ │ ├── iterate_https_endpoint.xml │ │ │ │ │ ├── iterate_named_endpoints.xml │ │ │ │ │ ├── iterate_named_sequence.xml │ │ │ │ │ ├── iterate_sequential.xml │ │ │ │ │ ├── iterate_small.txt │ │ │ │ │ ├── iterate_target_configuration.xml │ │ │ │ │ ├── iterate_target_govenerce.xml │ │ │ │ │ ├── iterator_attach_path.xml │ │ │ │ │ ├── iterator_expressionLess.xml │ │ │ │ │ ├── null_namespace.xml │ │ │ │ │ ├── null_namespace_for_expression.xml │ │ │ │ │ ├── simple_iterator.xml │ │ │ │ │ └── valid_iterate_exp_mismatch_original_message.xml │ │ │ │ ├── payload │ │ │ │ │ └── factory │ │ │ │ │ │ ├── axis2 │ │ │ │ │ │ └── axis2.xml │ │ │ │ │ │ ├── expression_arg_payload_factory_synapse.xml │ │ │ │ │ │ ├── jsonFormat_JsonExpressiosns.xml │ │ │ │ │ │ ├── jsonFormat_JsonXmlExpressions_values.xml │ │ │ │ │ │ ├── jsonFormat_XmlExpressiosns.xml │ │ │ │ │ │ ├── no_arg_payload_factory_synapse.xml │ │ │ │ │ │ ├── om_arg_payload_factory_synapse.xml │ │ │ │ │ │ ├── payload-in.xml │ │ │ │ │ │ ├── payload_factory_dynamic_key.xml │ │ │ │ │ │ ├── special_chractors_at_payload_factory.xml │ │ │ │ │ │ ├── value_arg_payload_factory_synapse.xml │ │ │ │ │ │ ├── value_expression_arg_payload_factory_synapse.xml │ │ │ │ │ │ └── xmlFormat_JsonExpressiosns.xml │ │ │ │ ├── policy │ │ │ │ │ └── throttle_policy.xml │ │ │ │ ├── property │ │ │ │ │ ├── DISABLE_CHUNKING.xml │ │ │ │ │ ├── NO_ENTITY_BODY.xml │ │ │ │ │ ├── NO_KEEPALIVE.xml │ │ │ │ │ ├── POST_TO_URI.xml │ │ │ │ │ ├── PRESERVE_WS_ADDRESSING.xml │ │ │ │ │ ├── REST_URL_postfix.xml │ │ │ │ │ ├── TRANSPORT_HEADERS.xml │ │ │ │ │ ├── disableAddressingForOutMessages.xml │ │ │ │ │ ├── synapse_http_header_case_sensitivity.xml │ │ │ │ │ └── transport_scope_property.xml │ │ │ │ ├── rewrite │ │ │ │ │ ├── full_url_append_synapse.xml │ │ │ │ │ ├── full_url_prepend_synapse.xml │ │ │ │ │ ├── full_url_rewrite_synapse.xml │ │ │ │ │ ├── full_url_set_synapse.xml │ │ │ │ │ ├── full_url_set_when_no_url_synapse.xml │ │ │ │ │ ├── hostname_append_synapse.xml │ │ │ │ │ ├── hostname_prepend_synapse.xml │ │ │ │ │ ├── hostname_set_synapse.xml │ │ │ │ │ ├── path_append_synapse.xml │ │ │ │ │ ├── path_prepend_synapse.xml │ │ │ │ │ ├── path_set_synapse.xml │ │ │ │ │ ├── port_append_synapse.xml │ │ │ │ │ ├── port_prepend_synapse.xml │ │ │ │ │ ├── port_set_synapse.xml │ │ │ │ │ ├── protocol_append_synapse.xml │ │ │ │ │ ├── protocol_prepend_synapse.xml │ │ │ │ │ ├── protocol_rewrite_from_property_synapse.xml │ │ │ │ │ ├── protocol_rewrite_synapse.xml │ │ │ │ │ ├── protocol_set_synapse.xml │ │ │ │ │ ├── remove_rewrite_full_url_synapse.xml │ │ │ │ │ ├── remove_rewrite_host_synapse.xml │ │ │ │ │ ├── remove_rewrite_path_synapse.xml │ │ │ │ │ ├── remove_rewrite_port_synapse.xml │ │ │ │ │ ├── remove_rewrite_protocol_synapse.xml │ │ │ │ │ ├── synapse_sample451.xml │ │ │ │ │ ├── url_reWrite_by_context_synapse.xml │ │ │ │ │ ├── url_reWrite_by_host_synapse.xml │ │ │ │ │ ├── url_reWrite_by_port_expression_synapse.xml │ │ │ │ │ └── url_reWrite_by_port_synapse.xml │ │ │ │ ├── router │ │ │ │ │ ├── router_breakRouter_false_test.xml │ │ │ │ │ ├── router_continueAfter_false_test.xml │ │ │ │ │ ├── router_continueAfter_true_test.xml │ │ │ │ │ ├── router_endpoint.xml │ │ │ │ │ ├── router_endpoint_test.xml │ │ │ │ │ ├── router_expression_test.xml │ │ │ │ │ ├── router_https_endpoint.xml │ │ │ │ │ ├── router_multiple_routs_test.xml │ │ │ │ │ ├── router_sequence.xml │ │ │ │ │ └── router_sequence_test.xml │ │ │ │ ├── script │ │ │ │ │ ├── stockquoteTransform.js │ │ │ │ │ └── stockquoteTransform.rb │ │ │ │ ├── script_js │ │ │ │ │ ├── detailTransform.js │ │ │ │ │ ├── stockquoteTransform.js │ │ │ │ │ └── test54.js │ │ │ │ ├── send │ │ │ │ │ ├── endpoints │ │ │ │ │ │ └── registry_endpoint.xml │ │ │ │ │ ├── sequence │ │ │ │ │ │ ├── test_sequence_build_message_conf.xml │ │ │ │ │ │ ├── test_sequence_build_message_gov.xml │ │ │ │ │ │ └── test_sequence_build_message_local.xml │ │ │ │ │ ├── synapse_config.xml │ │ │ │ │ ├── synapse_default.xml │ │ │ │ │ ├── synapse_dynamic.xml │ │ │ │ │ ├── synapse_endpoint_registry.xml │ │ │ │ │ ├── synapse_gov.xml │ │ │ │ │ ├── synapse_local.xml │ │ │ │ │ └── synapse_uncaught_exception.xml │ │ │ │ ├── sequence │ │ │ │ │ ├── synapse_proxy.xml │ │ │ │ │ └── synapse_sequence_mediator.xml │ │ │ │ ├── spring │ │ │ │ │ ├── spring_mediation.xml │ │ │ │ │ ├── spring_mediation_different_bean_id.xml │ │ │ │ │ ├── spring_mediation_invalid_spring_bean.xml │ │ │ │ │ ├── spring_mediation_springBean_resource_not_exist.xml │ │ │ │ │ └── utils │ │ │ │ │ │ ├── different_bean_names.xml │ │ │ │ │ │ ├── invalid_spring_bean.xml │ │ │ │ │ │ ├── springbean.xml │ │ │ │ │ │ └── updating_spring.xml │ │ │ │ ├── switch_conf │ │ │ │ │ └── switch_mediator_subsequence_matching.xml │ │ │ │ ├── validate │ │ │ │ │ └── schema.xml │ │ │ │ ├── xquery │ │ │ │ │ ├── synapse101.xml │ │ │ │ │ ├── xquery_empty_soap_request.xml │ │ │ │ │ ├── xquery_replace_body_synapse101.xml │ │ │ │ │ ├── xquery_variable_type_boolean_synapse101.xml │ │ │ │ │ ├── xquery_variable_type_byte_synapse101.xml │ │ │ │ │ ├── xquery_variable_type_double_synapse101.xml │ │ │ │ │ ├── xquery_variable_type_float_synapse101.xml │ │ │ │ │ ├── xquery_variable_type_int_synapse101.xml │ │ │ │ │ ├── xquery_variable_type_integer_synapse101.xml │ │ │ │ │ ├── xquery_variable_type_long_synapse101.xml │ │ │ │ │ └── xquery_variable_type_string_synapse101.xml │ │ │ │ └── xslt │ │ │ │ │ ├── local_entry_refer_xslt_transformation_synapse.xml │ │ │ │ │ ├── transform.xslt │ │ │ │ │ ├── transform_back.xslt │ │ │ │ │ ├── xslt_dynamic_key_synapse.xml │ │ │ │ │ ├── xslt_from_config_registry_local_entry_synapse.xml │ │ │ │ │ ├── xslt_from_governance_registry_local_entry_synapse.xml │ │ │ │ │ ├── xslt_from_url_synapse.xml │ │ │ │ │ ├── xslt_in_file_system_local_entry_synapse.xml │ │ │ │ │ ├── xslt_in_line_local_entry_synapse.xml │ │ │ │ │ └── xslt_transformation_with_property_synapse.xml │ │ │ │ ├── messageProcessorConfig │ │ │ │ └── Message_Processor_Persistence_After_Restart_Synapse.xml │ │ │ │ ├── mtom │ │ │ │ └── asf-logo.gif │ │ │ │ ├── nhttp │ │ │ │ └── transport │ │ │ │ │ └── certificatevalidation │ │ │ │ │ ├── axis2.xml │ │ │ │ │ └── simple_proxy.xml │ │ │ │ ├── other │ │ │ │ ├── index.html │ │ │ │ └── log4j2.properties │ │ │ │ ├── passthru │ │ │ │ └── transport │ │ │ │ │ └── httpproxy │ │ │ │ │ ├── axis2.xml │ │ │ │ │ └── httpProxy.xml │ │ │ │ ├── proxyconfig │ │ │ │ └── proxy │ │ │ │ │ ├── customProxy │ │ │ │ │ ├── insequence_existing_sequence.xml │ │ │ │ │ ├── insequence_inline_endpoint_inline.xml │ │ │ │ │ ├── insequence_none_endpoint_existing.xml │ │ │ │ │ ├── insequence_none_endpoint_inline.xml │ │ │ │ │ ├── non_existing_proxy.xml │ │ │ │ │ ├── non_existing_proxy_route_to_main.xml │ │ │ │ │ └── simple_proxy.xml │ │ │ │ │ ├── enablelocaltransport │ │ │ │ │ └── axis2.xml │ │ │ │ │ ├── loggingProxy │ │ │ │ │ ├── request_log_level_full_response_log_level_full.xml │ │ │ │ │ ├── request_log_level_none_response_log_level_none.xml │ │ │ │ │ └── request_log_level_simple_response_log_level_simple.xml │ │ │ │ │ ├── passThroughProxy │ │ │ │ │ ├── EditPassThroughProxy.xml │ │ │ │ │ ├── customServiceURI │ │ │ │ │ │ ├── axis2.xml │ │ │ │ │ │ └── custom_service_uri_enabling_only_https.xml │ │ │ │ │ ├── proxy_service_enabling_only_http.xml │ │ │ │ │ ├── proxy_service_enabling_only_https.xml │ │ │ │ │ ├── proxy_service_with_end_point_through_url.xml │ │ │ │ │ ├── wsdl_options_pick_from_registry.xml │ │ │ │ │ └── wsdl_options_specified_inline.xml │ │ │ │ │ ├── protocolViolationProxy │ │ │ │ │ └── synapse.xml │ │ │ │ │ ├── proxyservice │ │ │ │ │ ├── editProxyWithPinnedServer.xml │ │ │ │ │ ├── formDataProxy.xml │ │ │ │ │ ├── http_to_https_proxy.xml │ │ │ │ │ ├── proxyConfig.xml │ │ │ │ │ └── proxyWithPinnedServer.xml │ │ │ │ │ ├── secureProxy │ │ │ │ │ ├── passthrough_proxy_engaging_security_with_secueBackEnd.xml │ │ │ │ │ ├── passthrough_proxy_with_secueBackEnd.xml │ │ │ │ │ ├── sample_0_with_wso2_registry.xml │ │ │ │ │ ├── secure_proxy_service_scenarios.xml │ │ │ │ │ ├── secured_proxy_secured_backend.xml │ │ │ │ │ ├── security_transformation_proxy_for_policy2_backEnd.xml │ │ │ │ │ ├── security_transformation_proxy_for_policy3_backend.xml │ │ │ │ │ ├── security_transformation_proxy_for_policy4_backend.xml │ │ │ │ │ ├── security_transformation_proxy_for_policy5_backend.xml │ │ │ │ │ ├── security_transformation_proxy_for_policy6_backend.xml │ │ │ │ │ ├── security_transformation_proxy_for_policy7_backend.xml │ │ │ │ │ ├── security_transformation_proxy_for_policy8_backend.xml │ │ │ │ │ ├── stock_quote_passthrough_proxy.xml │ │ │ │ │ ├── stock_quote_proxy.xml │ │ │ │ │ ├── stockquote_pass_through_proxy.xml │ │ │ │ │ └── stockquote_proxy_unsecured.xml │ │ │ │ │ ├── transformerProxy │ │ │ │ │ ├── pick_end_point_from_registry.xml │ │ │ │ │ ├── proxy_service_enabling_only_http.xml │ │ │ │ │ ├── wsdl_options_pick_from_registry.xml │ │ │ │ │ ├── wsdl_options_specified_inline.xml │ │ │ │ │ └── wsdl_options_specified_source_url.xml │ │ │ │ │ ├── utils │ │ │ │ │ ├── fault_sequence.xml │ │ │ │ │ ├── invalid_transform.xslt │ │ │ │ │ ├── out_sequence.xml │ │ │ │ │ ├── registry_endpoint.xml │ │ │ │ │ └── sample_proxy_1.wsdl │ │ │ │ │ └── wsdlBasedProxy │ │ │ │ │ ├── delay-wsdl.xml │ │ │ │ │ ├── proxy_service_enabling_only_http.xml │ │ │ │ │ ├── proxy_service_enabling_only_https.xml │ │ │ │ │ ├── proxy_service_with_publish_same_service_contract.xml │ │ │ │ │ ├── wsdl-fault-proxy.xml │ │ │ │ │ ├── wsdl_options_pick_from_registry.xml │ │ │ │ │ ├── wsdl_options_specified_inline.xml │ │ │ │ │ └── wsdl_options_specified_source_url.xml │ │ │ │ ├── restapi │ │ │ │ ├── axis2.xml │ │ │ │ └── deployment.toml │ │ │ │ ├── scheduledTask │ │ │ │ ├── InjectToProxyTestConfig.xml │ │ │ │ ├── InjectToSequenceTestConfig.xml │ │ │ │ └── task_deploy_car_1.0.0.car │ │ │ │ ├── server │ │ │ │ ├── conf │ │ │ │ │ ├── axis2 │ │ │ │ │ │ └── axis2.xml │ │ │ │ │ ├── deployment.toml │ │ │ │ │ └── synapse.properties │ │ │ │ ├── registry │ │ │ │ │ └── config │ │ │ │ │ │ ├── proxy │ │ │ │ │ │ ├── registry_endpoint.xml │ │ │ │ │ │ └── sample_proxy_1.wsdl │ │ │ │ │ │ ├── script_xslt │ │ │ │ │ │ ├── invalid_transform.xslt │ │ │ │ │ │ ├── transform.xslt │ │ │ │ │ │ └── transform_back.xslt │ │ │ │ │ │ ├── sequence │ │ │ │ │ │ ├── fault_sequence.xml │ │ │ │ │ │ ├── out_sequence.xml │ │ │ │ │ │ └── proxy_sequence.xml │ │ │ │ │ │ └── test_ep_config │ │ │ │ │ │ ├── addressEP_Test.xml │ │ │ │ │ │ ├── defaultEP_Test.xml │ │ │ │ │ │ ├── failoverEP_Test.xml │ │ │ │ │ │ ├── loadbalancingEP_Test.xml │ │ │ │ │ │ └── wsdlEP_Test.xml │ │ │ │ └── repository │ │ │ │ │ └── deployment │ │ │ │ │ └── server │ │ │ │ │ ├── carbonapps │ │ │ │ │ ├── MediatorCApp_1.0.0.car │ │ │ │ │ ├── esb-artifacts-car_1.0.0.car │ │ │ │ │ ├── templateEndpointInRegistryTestCapp_1.0.0.car │ │ │ │ │ └── xslt-transformation-car_1.0.0.car │ │ │ │ │ └── synapse-configs │ │ │ │ │ └── default │ │ │ │ │ ├── api │ │ │ │ │ ├── ClientApi.xml │ │ │ │ │ ├── CustomerBackendAPI.xml │ │ │ │ │ ├── CustomerServiceAPI.xml │ │ │ │ │ ├── ESBJAVA5208LastQueryParamEmptyAPI.xml │ │ │ │ │ ├── HTTPEndpointBasicAuthTestSample.xml │ │ │ │ │ ├── JSONPayloadFormatingTestAPI.xml │ │ │ │ │ ├── MockAPI.xml │ │ │ │ │ ├── MockDelayedAPI.xml │ │ │ │ │ ├── MyAPI1.xml │ │ │ │ │ ├── MyAPI2.xml │ │ │ │ │ ├── ReturnContentTypeTestAPI.xml │ │ │ │ │ ├── ServerApi.xml │ │ │ │ │ ├── StockQuoteAPI1.xml │ │ │ │ │ ├── StockQuoteAPI2.xml │ │ │ │ │ ├── SwaggerPetstore.xml │ │ │ │ │ └── headTest.xml │ │ │ │ │ ├── endpoints │ │ │ │ │ ├── HTTPEndpointTestEP.xml │ │ │ │ │ ├── MockDelayedTimeoutEndpoint.xml │ │ │ │ │ ├── MockDelayedTimeoutTemplateEndpoint.xml │ │ │ │ │ ├── MockTimeoutEndpoint.xml │ │ │ │ │ ├── MockTimeoutTemplateEndpoint.xml │ │ │ │ │ ├── StockQuoteService11016.xml │ │ │ │ │ ├── defaultEP.xml │ │ │ │ │ ├── failoverEndpoint.xml │ │ │ │ │ ├── indirectEP.xml │ │ │ │ │ ├── resolvingEP.xml │ │ │ │ │ ├── service_endpoint.xml │ │ │ │ │ ├── wsdlEpTest.xml │ │ │ │ │ └── wsdlEpWithStatisticsEnabledTest.xml │ │ │ │ │ ├── local-entries │ │ │ │ │ ├── PickEndpointFromRegTestLE.xml │ │ │ │ │ ├── SecurityPolicyLE.xml │ │ │ │ │ ├── in_transform.xml │ │ │ │ │ ├── local-entry-sequence-key.xml │ │ │ │ │ ├── out_transform.xml │ │ │ │ │ ├── sampleProxy1WsdlLE.xml │ │ │ │ │ ├── throttle_policy.xml │ │ │ │ │ └── timeout.xml │ │ │ │ │ ├── proxy-services │ │ │ │ │ ├── ChainingTestProxy.xml │ │ │ │ │ ├── CorrectPinnedServerTestProxy.xml │ │ │ │ │ ├── EditProxyWithPinnedServer.xml │ │ │ │ │ ├── EditStockQuotePassThroughProxy.xml │ │ │ │ │ ├── EndPointFailOverProxy.xml │ │ │ │ │ ├── EndpointFormatRestPTTestProxy.xml │ │ │ │ │ ├── HttpEndPointProxy.xml │ │ │ │ │ ├── InvalidHttpEndPointProxy.xml │ │ │ │ │ ├── InvalidPropertyAddressEndPoint.xml │ │ │ │ │ ├── IterateDynamicProxy.xml │ │ │ │ │ ├── JSONProxy.xml │ │ │ │ │ ├── LoadBalanceFailOverSynapseProxy.xml │ │ │ │ │ ├── MissingVariableEndPointProxy.xml │ │ │ │ │ ├── MockDelayedTimeoutProxy.xml │ │ │ │ │ ├── MockDelayedTimeoutTemplateProxy.xml │ │ │ │ │ ├── MockTimeoutProxy.xml │ │ │ │ │ ├── MockTimeoutTemplateProxy.xml │ │ │ │ │ ├── MyProxy.xml │ │ │ │ │ ├── OrderFiveProxy.xml │ │ │ │ │ ├── OrderFourProxy.xml │ │ │ │ │ ├── OrderOneProxy.xml │ │ │ │ │ ├── OrderSixProxy.xml │ │ │ │ │ ├── OrderThreeProxy.xml │ │ │ │ │ ├── OrderTwoProxy.xml │ │ │ │ │ ├── ProxyForTaskWithLargeInterval.xml │ │ │ │ │ ├── SampleProxy.xml │ │ │ │ │ ├── SecureProxyWithPolicyInLocalEntryTestProxy.xml │ │ │ │ │ ├── SequenceAsLocalRegistryEntryProxy.xml │ │ │ │ │ ├── Service1.xml │ │ │ │ │ ├── Service2.xml │ │ │ │ │ ├── Service3.xml │ │ │ │ │ ├── ServiceChainingProxy.xml │ │ │ │ │ ├── StockQuoteLoggingProxy.xml │ │ │ │ │ ├── StockQuotePassThroughProxy.xml │ │ │ │ │ ├── StockQuotePassThroughProxyWithAddressing.xml │ │ │ │ │ ├── StockQuoteProxy123.xml │ │ │ │ │ ├── StockQuoteProxyEndpointBinding.xml │ │ │ │ │ ├── StockQuoteProxyFive.xml │ │ │ │ │ ├── StockQuoteProxyFour.xml │ │ │ │ │ ├── StockQuoteProxyHttp.xml │ │ │ │ │ ├── StockQuoteProxyHttps.xml │ │ │ │ │ ├── StockQuoteProxyOne.xml │ │ │ │ │ ├── StockQuoteProxySix.xml │ │ │ │ │ ├── StockQuoteProxyTestHTTPVersion.xml │ │ │ │ │ ├── StockQuoteProxyThree.xml │ │ │ │ │ ├── StockQuoteProxyTwo.xml │ │ │ │ │ ├── StockQuoteProxyWithEndpoint.xml │ │ │ │ │ ├── TestProxy.xml │ │ │ │ │ ├── addressEndpointRegistryConfigProxy.xml │ │ │ │ │ ├── addressEndpointTestProxy.xml │ │ │ │ │ ├── defaultEndPoint.xml │ │ │ │ │ ├── defaultEndPointWithSuspension.xml │ │ │ │ │ ├── defaultEndPoint_Config_Reg.xml │ │ │ │ │ ├── doubleFailoverEndPoint.xml │ │ │ │ │ ├── enableHttpLoggingProxy.xml │ │ │ │ │ ├── enableHttpPassthroughProxy.xml │ │ │ │ │ ├── enableHttpTransformerProxy.xml │ │ │ │ │ ├── enableHttpWsdlBasedProxy.xml │ │ │ │ │ ├── enableHttpsLoggingProxy.xml │ │ │ │ │ ├── enableHttpsPassthroughProxy.xml │ │ │ │ │ ├── enableHttpsTransformerProxy.xml │ │ │ │ │ ├── enableHttpsWsdlProxy.xml │ │ │ │ │ ├── endpointThroughURLPassthroughProxy.xml │ │ │ │ │ ├── endpointThroughURLTransformerProxy.xml │ │ │ │ │ ├── failoverEndPoint.xml │ │ │ │ │ ├── failoverEndPoint2.xml │ │ │ │ │ ├── failoverEndPoint3.xml │ │ │ │ │ ├── failoverEndPoint4.xml │ │ │ │ │ ├── failoverEndPoint_Config_Reg.xml │ │ │ │ │ ├── failoverEndPoint_Specific_Errors.xml │ │ │ │ │ ├── inSeqExistingSeqCustomProxy.xml │ │ │ │ │ ├── inSeqFromRegCustomProxy.xml │ │ │ │ │ ├── inSeqInlineEndpointInlineCustomProxy.xml │ │ │ │ │ ├── inSeqNonEndpointFromRegCustomProxy.xml │ │ │ │ │ ├── inSeqNoneEndpointExistingTestProxy.xml │ │ │ │ │ ├── inSeqNoneEndpointInlineCustomProxy.xml │ │ │ │ │ ├── indirectEndpointTestProxy.xml │ │ │ │ │ ├── invalidAddressEndpointProxy.xml │ │ │ │ │ ├── invalidXsltTransformerProxy.xml │ │ │ │ │ ├── loadbalancingEndPoint.xml │ │ │ │ │ ├── loadbalancingEndPoint_Config_Reg.xml │ │ │ │ │ ├── pickEndpointFromRegLoggingProxy.xml │ │ │ │ │ ├── pickEndpointFromRegTestProxy.xml │ │ │ │ │ ├── pickEndpointFromRegTransformerProxy.xml │ │ │ │ │ ├── proxyWithAddressing.xml │ │ │ │ │ ├── proxyWithAddressingPriority.xml │ │ │ │ │ ├── proxyWithPinnedServer.xml │ │ │ │ │ ├── resolvingEndpointTestProxy.xml │ │ │ │ │ ├── response.xml │ │ │ │ │ ├── restCheck.xml │ │ │ │ │ ├── simpleProxy.xml │ │ │ │ │ ├── soap12ActionHeader.xml │ │ │ │ │ ├── test_failover.xml │ │ │ │ │ ├── throttlePolicyInLocalEntryProxy.xml │ │ │ │ │ ├── wsdlEndPoint.xml │ │ │ │ │ ├── wsdlEndPoint_Config_Reg.xml │ │ │ │ │ ├── wsdlOptionsFromInlineLoggingProxy.xml │ │ │ │ │ ├── wsdlOptionsFromInlinePassthroughProxy.xml │ │ │ │ │ ├── wsdlOptionsFromInlineTransformerProxy.xml │ │ │ │ │ ├── wsdlOptionsFromInlineWsdlBasedProxy.xml │ │ │ │ │ ├── wsdlOptionsFromRegLoggingProxy.xml │ │ │ │ │ ├── wsdlOptionsFromRegPassthroughProxy.xml │ │ │ │ │ ├── wsdlOptionsFromRegTransformerProxy.xml │ │ │ │ │ ├── wsdlOptionsFromRegWsdlBasedProxy.xml │ │ │ │ │ ├── wsdlOptionsFromSourceUrlLoggingProxy.xml │ │ │ │ │ ├── wsdlOptionsFromSourceUrlPassthroughProxy.xml │ │ │ │ │ ├── wsdlOptionsFromSourceUrlTransformerProxy.xml │ │ │ │ │ └── wsdlOptionsFromSourceUrlWsdlBasedProxy.xml │ │ │ │ │ ├── sequences │ │ │ │ │ ├── ReceiveSeq_1.xml │ │ │ │ │ ├── ReceiveSeq_2.xml │ │ │ │ │ ├── SampleSequence.xml │ │ │ │ │ ├── changeResponseBodySeq.xml │ │ │ │ │ ├── enableHttpPassthroughInSeq.xml │ │ │ │ │ ├── enableHttpPassthroughOutSeq.xml │ │ │ │ │ ├── enableHttpsPassthroughInSeq.xml │ │ │ │ │ ├── enableHttpsPassthroughOutSeq.xml │ │ │ │ │ ├── endpointThroughURLPassthroughInSeq.xml │ │ │ │ │ ├── endpointThroughURLPassthroughOutSeq.xml │ │ │ │ │ ├── errorHandler.xml │ │ │ │ │ ├── fault.xml │ │ │ │ │ ├── pickEndpointFromRegTestOutSeq.xml │ │ │ │ │ ├── pickEndpointFromRegTestSeq.xml │ │ │ │ │ ├── proxy.xml │ │ │ │ │ ├── proxySequence.xml │ │ │ │ │ ├── wsdlOptionsFromInlinePassthroughInSeq.xml │ │ │ │ │ ├── wsdlOptionsFromInlinePassthroughOutSeq.xml │ │ │ │ │ ├── wsdlOptionsFromRegPassthroughInSeq.xml │ │ │ │ │ ├── wsdlOptionsFromRegPassthroughOutSeq.xml │ │ │ │ │ ├── wsdlOptionsFromSourceUrlPassthroughInSeq.xml │ │ │ │ │ └── wsdlOptionsFromSourceUrlPassthroughOutSeq.xml │ │ │ │ │ └── templates │ │ │ │ │ └── HTTPEndpointTemplate.xml │ │ │ │ ├── synapseconfig │ │ │ │ ├── CheckAggregateChildContentConfig │ │ │ │ │ └── synapse.xml │ │ │ │ ├── LargeAggregationWithoutTimeoutConfig │ │ │ │ │ └── synapse.xml │ │ │ │ ├── MaxOpenConnections │ │ │ │ │ ├── max_open_connections.xml │ │ │ │ │ ├── nhttp.properties │ │ │ │ │ ├── nhttp │ │ │ │ │ │ └── axis2.xml │ │ │ │ │ ├── passthru-http.properties │ │ │ │ │ └── ptt │ │ │ │ │ │ └── axis2.xml │ │ │ │ ├── addressEndpointConfig │ │ │ │ │ ├── addressEP_Test.xml │ │ │ │ │ └── synapse.xml │ │ │ │ ├── aggregateWithinTimoutConfig │ │ │ │ │ └── synapse.xml │ │ │ │ ├── aggregatedEnclosingElement │ │ │ │ │ └── synapse.xml │ │ │ │ ├── class_mediator │ │ │ │ │ └── synapse.xml │ │ │ │ ├── config06 │ │ │ │ │ └── synapse.xml │ │ │ │ ├── config1 │ │ │ │ │ ├── endpoints │ │ │ │ │ │ ├── Axis2EPR.xml │ │ │ │ │ │ ├── BCISEndpoint.xml │ │ │ │ │ │ ├── CreditEpr.xml │ │ │ │ │ │ ├── PersonInfoEpr.xml │ │ │ │ │ │ ├── RSMeansEndpoint.xml │ │ │ │ │ │ ├── RuleServiceEndpoint.xml │ │ │ │ │ │ ├── SimpleStockQuoteService.xml │ │ │ │ │ │ ├── club_profile_ds_endpoint.xml │ │ │ │ │ │ ├── club_profile_ds_lb_endpoint.xml │ │ │ │ │ │ ├── club_record_ds_endpoint.xml │ │ │ │ │ │ ├── club_record_ds_lb_endpoint.xml │ │ │ │ │ │ ├── ds_endpoint.xml │ │ │ │ │ │ ├── geo_endpoint.xml │ │ │ │ │ │ ├── gis_endpoint.xml │ │ │ │ │ │ ├── resut_display_ep.xml │ │ │ │ │ │ ├── samplefailoverendpoint.xml │ │ │ │ │ │ └── samplewsdlendpoint.xml │ │ │ │ │ ├── local-entries │ │ │ │ │ │ ├── ResutDisplayServiceTransform.xml │ │ │ │ │ │ ├── geo_transform.xml │ │ │ │ │ │ ├── resource_proxy_reply_transformation.xml │ │ │ │ │ │ ├── rule_service_transformation.xml │ │ │ │ │ │ ├── testBean.xml │ │ │ │ │ │ └── validate_schema.xml │ │ │ │ │ ├── message-processors │ │ │ │ │ │ └── MProc1.xml │ │ │ │ │ ├── message-store │ │ │ │ │ │ └── MStore1.xml │ │ │ │ │ ├── priority-executors │ │ │ │ │ │ └── samplePriority2.xml │ │ │ │ │ ├── proxy-services │ │ │ │ │ │ ├── DemoProxy.xml │ │ │ │ │ │ └── StockQuoteProxy.xml │ │ │ │ │ ├── registry.xml │ │ │ │ │ ├── sequences │ │ │ │ │ │ ├── fault.xml │ │ │ │ │ │ └── main.xml │ │ │ │ │ ├── synapse.xml │ │ │ │ │ └── tasks │ │ │ │ │ │ └── sampleTask.xml │ │ │ │ ├── config10 │ │ │ │ │ └── synapse.xml │ │ │ │ ├── config11 │ │ │ │ │ └── synapse.xml │ │ │ │ ├── config12 │ │ │ │ │ └── synapse.xml │ │ │ │ ├── config13 │ │ │ │ │ └── synapse.xml │ │ │ │ ├── config16 │ │ │ │ │ └── synapse.xml │ │ │ │ ├── config17 │ │ │ │ │ └── synapse.xml │ │ │ │ ├── config18 │ │ │ │ │ └── synapse.xml │ │ │ │ ├── config19 │ │ │ │ │ └── synapse.xml │ │ │ │ ├── config20 │ │ │ │ │ └── synapse.xml │ │ │ │ ├── config21 │ │ │ │ │ └── synapse.xml │ │ │ │ ├── config3 │ │ │ │ │ ├── proxy-services │ │ │ │ │ │ └── StockQuoteProxy.xml │ │ │ │ │ ├── registry.xml │ │ │ │ │ └── synapse.xml │ │ │ │ ├── config4 │ │ │ │ │ └── proxy-services │ │ │ │ │ │ └── simplePassThoughProxy.xml │ │ │ │ ├── config46 │ │ │ │ │ └── synapse.xml │ │ │ │ ├── config5 │ │ │ │ │ └── proxy-services │ │ │ │ │ │ └── simplePassThoughWithWSDL.xml │ │ │ │ ├── config54 │ │ │ │ │ └── synapse.xml │ │ │ │ ├── config55 │ │ │ │ │ └── synapse.xml │ │ │ │ ├── config6 │ │ │ │ │ └── synapse.xml │ │ │ │ ├── config603 │ │ │ │ │ └── synapse.xml │ │ │ │ ├── config65 │ │ │ │ │ └── synapse.xml │ │ │ │ ├── config66 │ │ │ │ │ └── synapse.xml │ │ │ │ ├── config67 │ │ │ │ │ └── synapse.xml │ │ │ │ ├── config7 │ │ │ │ │ └── synapse.xml │ │ │ │ ├── config8 │ │ │ │ │ ├── classes │ │ │ │ │ │ └── synapse.properties │ │ │ │ │ └── synapse.xml │ │ │ │ ├── config9 │ │ │ │ │ └── synapse.xml │ │ │ │ ├── configForInvaliedXquaryKey │ │ │ │ │ └── synapse.xml │ │ │ │ ├── config_multiple_rule │ │ │ │ │ └── synapse.xml │ │ │ │ ├── config_rule_s3 │ │ │ │ │ └── synapse.xml │ │ │ │ ├── config_single_rule │ │ │ │ │ └── synapse.xml │ │ │ │ ├── config_without_rule │ │ │ │ │ └── synapse.xml │ │ │ │ ├── core │ │ │ │ │ ├── synapse.xml │ │ │ │ │ ├── synapse_add_child_from_property.xml │ │ │ │ │ ├── synapse_add_sibling_from_property.xml │ │ │ │ │ ├── synapse_body_to_child_of_body.xml │ │ │ │ │ ├── synapse_body_to_sibling_of_body.xml │ │ │ │ │ ├── synapse_body_to_xpath_child.xml │ │ │ │ │ ├── synapse_body_to_xpath_sibling.xml │ │ │ │ │ ├── synapse_child_xpath.xml │ │ │ │ │ ├── synapse_envelope1.xml │ │ │ │ │ ├── synapse_replace_envelope_property.xml │ │ │ │ │ ├── synapse_replace_multiple_node.xml │ │ │ │ │ └── synapse_sourcexpath_targetxpath.xml │ │ │ │ ├── core_mediator │ │ │ │ │ ├── synapse.xml │ │ │ │ │ ├── synapseLoopbackMediatorConfig.xml │ │ │ │ │ └── synapseRepondMediatorConfig.xml │ │ │ │ ├── customSSLprofileWithsecurevault │ │ │ │ │ ├── axis2.xml │ │ │ │ │ ├── cipher-text.properties │ │ │ │ │ ├── cipher-tool.properties │ │ │ │ │ ├── password-tmp │ │ │ │ │ └── secret-conf.properties │ │ │ │ ├── default │ │ │ │ │ ├── api │ │ │ │ │ │ ├── StockQuoteAPI.xml │ │ │ │ │ │ └── StockQuoteAPI2.xml │ │ │ │ │ ├── endpoints │ │ │ │ │ │ └── addressEpTest.xml │ │ │ │ │ ├── local-entries │ │ │ │ │ │ └── local-entry-sequence-key.xml │ │ │ │ │ ├── proxy-services │ │ │ │ │ │ ├── SampleProxy.xml │ │ │ │ │ │ ├── StockQuoteProxy.xml │ │ │ │ │ │ └── addressEndPoint.xml │ │ │ │ │ ├── registry.xml │ │ │ │ │ ├── sequences │ │ │ │ │ │ ├── fault.xml │ │ │ │ │ │ └── main.xml │ │ │ │ │ ├── synapse.xml │ │ │ │ │ └── tasks │ │ │ │ │ │ └── SampleInjectToProxyTask.xml │ │ │ │ ├── defaultEndpointConfig │ │ │ │ │ ├── defaultEP_Test.xml │ │ │ │ │ └── synapse.xml │ │ │ │ ├── defaultconfig │ │ │ │ │ └── default-synapse.xml │ │ │ │ ├── endpointDynamicTimeout │ │ │ │ │ └── synapse.xml │ │ │ │ ├── enrich │ │ │ │ │ ├── add_source_as_sibling_in_body.xml │ │ │ │ │ ├── replace_envelop.xml │ │ │ │ │ └── replace_part_of_msg_by_body.xml │ │ │ │ ├── enrich_mediator │ │ │ │ │ ├── add_child_using_xpath_synapse.xml │ │ │ │ │ ├── copy_xpathOf_single_node.xml │ │ │ │ │ ├── replaceBodyOfMessageSynapse.xml │ │ │ │ │ ├── replaceBodySynapse.xml │ │ │ │ │ ├── replace_body_using_source_type_body.xml │ │ │ │ │ └── synapse.xml │ │ │ │ ├── esbjava2283 │ │ │ │ │ ├── api.xml │ │ │ │ │ └── synapse.xml │ │ │ │ ├── filters │ │ │ │ │ ├── conditional_router │ │ │ │ │ │ ├── dynamic_seq1.xml │ │ │ │ │ │ ├── synapse1.xml │ │ │ │ │ │ ├── synapse2.xml │ │ │ │ │ │ ├── synapse3.xml │ │ │ │ │ │ ├── synapse4.xml │ │ │ │ │ │ ├── synapse5.xml │ │ │ │ │ │ └── synapse6.xml │ │ │ │ │ ├── filter │ │ │ │ │ │ ├── synapse1.xml │ │ │ │ │ │ ├── synapse2.xml │ │ │ │ │ │ └── synapse3.xml │ │ │ │ │ ├── in │ │ │ │ │ │ └── synapse.xml │ │ │ │ │ ├── out │ │ │ │ │ │ ├── multiple_out_mediators_config.xml │ │ │ │ │ │ └── out_without_children.xml │ │ │ │ │ ├── switchMediator │ │ │ │ │ │ ├── ESBJAVA_1857_switch_case_synapse.xml │ │ │ │ │ │ ├── Invalid_xpath.xml │ │ │ │ │ │ ├── SOAP11_SOAP12_XPath.xml │ │ │ │ │ │ ├── SOAP11_SOAP12_XPath_nagative_case.xml │ │ │ │ │ │ ├── basic_and_without_default_case_synapse.xml │ │ │ │ │ │ ├── further_processing_of_switch_after_match.xml │ │ │ │ │ │ ├── invalid_prefix.xml │ │ │ │ │ │ ├── onerror_sequence_within_switch_config.xml │ │ │ │ │ │ ├── switch_inside_switch_config.xml │ │ │ │ │ │ └── switching_based_on_address_synapse.xml │ │ │ │ │ └── validate │ │ │ │ │ │ ├── schema1.xml │ │ │ │ │ │ ├── schema1a.xml │ │ │ │ │ │ ├── synapse1.xml │ │ │ │ │ │ └── validate_synapse.xml │ │ │ │ ├── groovy │ │ │ │ │ ├── axis2.xml │ │ │ │ │ ├── synapse_with_groovy.xml │ │ │ │ │ └── synapse_without_groovy.xml │ │ │ │ ├── healthcarescenario │ │ │ │ │ ├── GeoService.wsdl │ │ │ │ │ ├── HCCService.wsdl │ │ │ │ │ ├── HCFacilityLocatorService.wsdl │ │ │ │ │ ├── HCInformationService.wsdl │ │ │ │ │ └── synapse.xml │ │ │ │ ├── highTimeoutValueConfig │ │ │ │ │ └── synapse.xml │ │ │ │ ├── http_transport │ │ │ │ │ ├── set_host_http_header.xml │ │ │ │ │ └── set_host_http_header_with_port.xml │ │ │ │ ├── log_mediator │ │ │ │ │ └── synapse.xml │ │ │ │ ├── messageStore │ │ │ │ │ ├── ESBJAVA-2907StoreOmElementsAsProperties.xml │ │ │ │ │ ├── axis2.xml │ │ │ │ │ ├── sample_700.xml │ │ │ │ │ ├── scriptMediator │ │ │ │ │ │ └── axis2.xml │ │ │ │ │ ├── special_character.xml │ │ │ │ │ └── test.xml │ │ │ │ ├── messagewithoutcontent │ │ │ │ │ ├── request.xml │ │ │ │ │ ├── synapse.xml │ │ │ │ │ └── xmlrequest.xml │ │ │ │ ├── nhttp_transport │ │ │ │ │ ├── content_type_charset_synapse.xml │ │ │ │ │ ├── nhttp.properties │ │ │ │ │ └── nhttp_test_synapse.xml │ │ │ │ ├── nonBlockingHTTP │ │ │ │ │ ├── axis2.xml │ │ │ │ │ └── local_jms_proxy_synapse.xml │ │ │ │ ├── onCompleteSequenceConfig │ │ │ │ │ ├── sequences │ │ │ │ │ │ └── dynamic_seq1.xml │ │ │ │ │ └── synapse.xml │ │ │ │ ├── onCompleteSequenceFromGreg │ │ │ │ │ ├── sequences │ │ │ │ │ │ └── dynamic_seq1.xml │ │ │ │ │ └── synapse.xml │ │ │ │ ├── patchAutomation │ │ │ │ │ ├── failover_endpoint_for_single_leaf_endpoint_synapse.xml │ │ │ │ │ ├── https_request_via_http_proxy_synapse.xml │ │ │ │ │ ├── non_ascii_value_properties_synapse_.xml │ │ │ │ │ └── url_encoded_form_post_proxy.xml │ │ │ │ ├── patch_automation │ │ │ │ │ ├── CARBON11016_synapse.xml │ │ │ │ │ ├── CloneArtifactTestCase.xml │ │ │ │ │ └── failover_endpoint_for_single_leaf_endpoint_synapse.xml │ │ │ │ ├── payloadmediatype │ │ │ │ │ ├── media_type_xml_json_default.xml │ │ │ │ │ ├── no_arguments.xml │ │ │ │ │ ├── value_argument.xml │ │ │ │ │ └── valueandexpression_arguments.xml │ │ │ │ ├── processor │ │ │ │ │ └── forwarding │ │ │ │ │ │ ├── InMemoryStoreSynapse1.xml │ │ │ │ │ │ ├── Retry_On_SOAPFault_In_Out.xml │ │ │ │ │ │ └── Retry_On_SOAPFault_true_In_Out.xml │ │ │ │ ├── propertyMediatorConfig │ │ │ │ │ └── synapse.xml │ │ │ │ ├── propertyWithinIterateConfig │ │ │ │ │ └── synapse.xml │ │ │ │ ├── proxyadmin │ │ │ │ │ └── testconfig.xml │ │ │ │ ├── rest │ │ │ │ │ ├── CorrectApi.xml │ │ │ │ │ ├── CorruptedApi.xml │ │ │ │ │ ├── ESBJAVA4519synapseConfig.xml │ │ │ │ │ ├── ESBJAVA4852APIConfig.xml │ │ │ │ │ ├── LastQueryParamEmptyTestAPI.xml │ │ │ │ │ ├── RestPostFixUrl.xml │ │ │ │ │ ├── axis2-service-synapse.xml │ │ │ │ │ ├── customer-service-proxy.xml │ │ │ │ │ ├── headTest.xml │ │ │ │ │ ├── rest-client-and-rest-service.xml │ │ │ │ │ ├── rest-service-proxy.xml │ │ │ │ │ ├── student-service-synapse.xml │ │ │ │ │ ├── synapse.xml │ │ │ │ │ └── uri-template-synapse.xml │ │ │ │ ├── script_mediator │ │ │ │ │ ├── groovy_script_with_setPayloadJson.xml │ │ │ │ │ ├── groovy_script_with_the_mediator.xml │ │ │ │ │ ├── jsfromEntry_config.xml │ │ │ │ │ ├── retrieve_script_from_gov_reg_mediation.xml │ │ │ │ │ ├── synapse.xml │ │ │ │ │ ├── synapse3.xml │ │ │ │ │ └── synapse_generate_fault.xml │ │ │ │ ├── sendMediatorConfig │ │ │ │ │ ├── synapse.xml │ │ │ │ │ ├── test_sequences_config │ │ │ │ │ │ └── receivingSequence_Conf.xml │ │ │ │ │ ├── test_sequences_gov │ │ │ │ │ │ └── receivingSequence_Gov.xml │ │ │ │ │ └── test_sequences_local │ │ │ │ │ │ └── receivingSequence_Local.xml │ │ │ │ ├── send_mediator │ │ │ │ │ ├── endpoints │ │ │ │ │ │ └── registry_endpoint.xml │ │ │ │ │ └── synapse_config.xml │ │ │ │ ├── servletTransport │ │ │ │ │ ├── axis2.xml │ │ │ │ │ ├── pox_servlet_transport_axis2.xml │ │ │ │ │ └── soap_2_pox.xml │ │ │ │ ├── smooks │ │ │ │ │ ├── axis2.xml │ │ │ │ │ ├── large_csv_smooks_test.xml │ │ │ │ │ ├── person.csv │ │ │ │ │ ├── smooks_config.xml │ │ │ │ │ └── smooks_synapse.xml │ │ │ │ ├── throttle │ │ │ │ │ ├── ConcurrencyAndRequestBasedThrottlingConcurrency.xml │ │ │ │ │ ├── ConcurrencyAndRequestBasedThrottlingRequest.xml │ │ │ │ │ ├── MaximumConcurrentAccess.xml │ │ │ │ │ ├── concurrencyTest.xml │ │ │ │ │ ├── concurrencyTestMaxConcurrentAccessOne.xml │ │ │ │ │ ├── concurrentAccessLargeRequestCountSmallTest.xml │ │ │ │ │ ├── invalidThrottlingPolicyTest.xml │ │ │ │ │ └── specifyThrottlingPolicyAsARegistryKey.xml │ │ │ │ ├── validatemediator │ │ │ │ │ ├── dynamickey.xml │ │ │ │ │ ├── invalid_dynamic_key.xml │ │ │ │ │ ├── staticKey.xml │ │ │ │ │ ├── validate_secure_false.xml │ │ │ │ │ ├── validate_secure_true.xml │ │ │ │ │ ├── validate_with_invalid_Xpath.xml │ │ │ │ │ ├── validate_with_proxy.xml │ │ │ │ │ └── validate_with_resources.xml │ │ │ │ ├── validatemediator2 │ │ │ │ │ └── synapse.xml │ │ │ │ ├── vfsTransport │ │ │ │ │ ├── edi.txt │ │ │ │ │ ├── fail.xml │ │ │ │ │ ├── out │ │ │ │ │ │ └── test.txt │ │ │ │ │ ├── smooks-config.xml │ │ │ │ │ ├── synapse_config_658.xml │ │ │ │ │ ├── synapse_sample_658_input.xml │ │ │ │ │ ├── test.txt │ │ │ │ │ ├── test.xml │ │ │ │ │ ├── vfs_test_smook_config_at_registry.xml │ │ │ │ │ ├── vfs_test_synapse.xml │ │ │ │ │ └── vfs_xml_to_xml.xml │ │ │ │ └── wsdlEndpointConfig │ │ │ │ │ ├── synapse.xml │ │ │ │ │ └── wsdlEP_Test.xml │ │ │ │ └── tcp │ │ │ │ └── transport │ │ │ │ ├── axis2.xml │ │ │ │ ├── client_axis2.xml │ │ │ │ └── tcpProxy.xml │ │ │ ├── automation.xml │ │ │ ├── automationXMLSchema.xsd │ │ │ ├── bin │ │ │ └── integrator.sh │ │ │ ├── log4j.properties │ │ │ ├── security │ │ │ ├── keystore │ │ │ │ ├── client.jks │ │ │ │ └── service.jks │ │ │ └── policies │ │ │ │ ├── custom │ │ │ │ ├── scenario1-policy.xml │ │ │ │ ├── scenario10-policy.xml │ │ │ │ ├── scenario11-policy.xml │ │ │ │ ├── scenario12-policy.xml │ │ │ │ ├── scenario13-policy.xml │ │ │ │ ├── scenario14-policy.xml │ │ │ │ ├── scenario15-policy.xml │ │ │ │ ├── scenario16-policy.xml │ │ │ │ ├── scenario17-policy.xml │ │ │ │ ├── scenario2-policy.xml │ │ │ │ ├── scenario3-policy.xml │ │ │ │ ├── scenario4-policy.xml │ │ │ │ ├── scenario5-policy.xml │ │ │ │ ├── scenario6-policy.xml │ │ │ │ ├── scenario7-policy.xml │ │ │ │ ├── scenario8-policy.xml │ │ │ │ └── scenario9-policy.xml │ │ │ │ ├── scenario-config.xml │ │ │ │ ├── scenario1-policy.xml │ │ │ │ ├── scenario10-policy.xml │ │ │ │ ├── scenario11-policy.xml │ │ │ │ ├── scenario12-policy.xml │ │ │ │ ├── scenario13-policy.xml │ │ │ │ ├── scenario14-policy.xml │ │ │ │ ├── scenario15-policy.xml │ │ │ │ ├── scenario16-policy.xml │ │ │ │ ├── scenario17-policy.xml │ │ │ │ ├── scenario2-policy.xml │ │ │ │ ├── scenario27-policy.xml │ │ │ │ ├── scenario3-policy.xml │ │ │ │ ├── scenario4-policy.xml │ │ │ │ ├── scenario5-policy.xml │ │ │ │ ├── scenario6-policy.xml │ │ │ │ ├── scenario7-policy.xml │ │ │ │ ├── scenario8-policy.xml │ │ │ │ └── scenario9-policy.xml │ │ │ ├── testng.xml │ │ │ └── tomcat │ │ │ └── catalina-server.xml │ ├── tests-transport-2 │ │ ├── pom.xml │ │ └── src │ │ │ └── test │ │ │ ├── java │ │ │ └── org │ │ │ │ └── wso2 │ │ │ │ └── carbon │ │ │ │ └── esb │ │ │ │ └── http2 │ │ │ │ └── test │ │ │ │ ├── BackendServer.java │ │ │ │ ├── ClientToESBHttp2Test.java │ │ │ │ ├── ClientToESBSecureHttp2Test.java │ │ │ │ ├── ESBtoBackendHttp2Test.java │ │ │ │ └── ESBtoBackendSecureHttp2Test.java │ │ │ └── resources │ │ │ ├── artifacts │ │ │ └── ESB │ │ │ │ └── server │ │ │ │ └── repository │ │ │ │ └── deployment │ │ │ │ └── server │ │ │ │ └── synapse-configs │ │ │ │ └── default │ │ │ │ ├── api │ │ │ │ ├── backendCall.xml │ │ │ │ ├── backendCallHttps.xml │ │ │ │ └── clientToESBHttp2Test.xml │ │ │ │ └── inbound-endpoints │ │ │ │ ├── httpswss.xml │ │ │ │ ├── httpswssWithBackendCall.xml │ │ │ │ ├── httpws.xml │ │ │ │ └── httpwsWithBackendCall.xml │ │ │ ├── automation.xml │ │ │ ├── automationXMLSchema.xsd │ │ │ ├── log4j.properties │ │ │ └── testng.xml │ └── tests-transport │ │ ├── .gitignore │ │ ├── pom.xml │ │ └── src │ │ └── test │ │ ├── java │ │ └── org │ │ │ └── wso2 │ │ │ └── carbon │ │ │ └── esb │ │ │ ├── ServerStartupTestCase.java │ │ │ ├── axis2 │ │ │ └── transport │ │ │ │ └── test │ │ │ │ └── MultipartFormDataFormatTestCase.java │ │ │ ├── file │ │ │ └── inbound │ │ │ │ └── transport │ │ │ │ └── test │ │ │ │ ├── FileInboundWithDynamicSequenceTestCase.java │ │ │ │ ├── FtpInboundTransportTest.java │ │ │ │ ├── InboundEndpointContentTypePlainTest.java │ │ │ │ └── InboundTransportTest.java │ │ │ ├── generic │ │ │ └── inbound │ │ │ │ └── transport │ │ │ │ └── test │ │ │ │ └── GenericInboundTransportTestCase.java │ │ │ ├── hl7 │ │ │ ├── inbound.transport.test │ │ │ │ └── HL7InboundPreprocessorTest.java │ │ │ └── transport │ │ │ │ └── test │ │ │ │ └── HL7TransportTests.java │ │ │ ├── http │ │ │ └── inbound │ │ │ │ └── transport │ │ │ │ └── test │ │ │ │ ├── HttpInboundDispatchTestCase.java │ │ │ │ └── HttpInboundTransportTestCase.java │ │ │ ├── https │ │ │ └── inbound │ │ │ │ └── transport │ │ │ │ └── test │ │ │ │ └── HttpsInboundTransportTestCase.java │ │ │ ├── jms │ │ │ ├── ViewPopRedirectTests │ │ │ │ ├── RedirectTest.java │ │ │ │ └── ViewPopTest.java │ │ │ ├── inbound │ │ │ │ └── transport │ │ │ │ │ └── test │ │ │ │ │ ├── ESBJAVA4702JMSHeaderTest.java │ │ │ │ │ ├── ESBJAVA5094SetOperationContextWithInboundEndpointTestCase.java │ │ │ │ │ ├── JMSInboundBrokerShutdownTestCase.java │ │ │ │ │ ├── JMSInboundMessagePollingTestCase.java │ │ │ │ │ ├── JMSInboundMessageSupportTestCase.java │ │ │ │ │ ├── JMSInboundRollbackTestCase.java │ │ │ │ │ ├── JMSInboundTransactionTestCase.java │ │ │ │ │ ├── JmsClientAckInboundEndpointTestCase.java │ │ │ │ │ ├── JmsToBackendWithInboundEndpointTestCase.java │ │ │ │ │ └── JmsTypeHeaderInboundEndpointTestCase.java │ │ │ ├── securevault │ │ │ │ └── test │ │ │ │ │ └── JMSTransportSecureVaultTest.java │ │ │ ├── transport │ │ │ │ └── test │ │ │ │ │ ├── ESBJAVA1793TestCase.java │ │ │ │ │ ├── ESBJAVA1832MessageInjectorTestCase.java │ │ │ │ │ ├── ESBJAVA1910TestCase.java │ │ │ │ │ ├── ESBJAVA2464TestCase.java │ │ │ │ │ ├── ESBJAVA2824MissingResponseTestCase.java │ │ │ │ │ ├── ESBJAVA2907TestCase.java │ │ │ │ │ ├── JMSAccessSOAPFaultDataTestCase.java │ │ │ │ │ ├── JMSBlockingCallWithToHeaderTestCase.java │ │ │ │ │ ├── JMSCAppDeploymentWithFaultyProxyTestCase.java │ │ │ │ │ ├── JMSClientAndRestServiceTestCase.java │ │ │ │ │ ├── JMSEndpointSuspensionTestCase.java │ │ │ │ │ ├── JMSEndpointTestCase.java │ │ │ │ │ ├── JMSMapMessageTestCase.java │ │ │ │ │ ├── JMSMessageProcessorTestCase.java │ │ │ │ │ ├── JMSMessageStoreProcRESTTestCase.java │ │ │ │ │ ├── JMSMessageStoreUnavailableTestCase.java │ │ │ │ │ ├── JMSOutOnlyTestCase.java │ │ │ │ │ ├── JMSQueueAsProxyEndpointTestCase.java │ │ │ │ │ ├── JMSSenderStaleConnectionsTestCase.java │ │ │ │ │ ├── JMSServerReconnectionTestCase.java │ │ │ │ │ ├── JMSTransportProxyTestCase.java │ │ │ │ │ ├── MSMPCronForwarderCase.java │ │ │ │ │ ├── SpecialCharacterTestCase.java │ │ │ │ │ └── topic │ │ │ │ │ └── JMSTopicAsProxyEndpointTestCase.java │ │ │ └── utils │ │ │ │ └── JMSBroker.java │ │ │ ├── local │ │ │ └── transport │ │ │ │ └── test │ │ │ │ └── LocalTransportTestCase.java │ │ │ ├── mailto │ │ │ └── transport │ │ │ │ ├── receiver │ │ │ │ └── test │ │ │ │ │ ├── MailToTransportActionAfterFailureDELETETestCase.java │ │ │ │ │ ├── MailToTransportActionAfterFailureMOVETestCase.java │ │ │ │ │ ├── MailToTransportActionAfterProcessDeleteTestCase.java │ │ │ │ │ ├── MailToTransportActionAfterProcessMoveTestCase.java │ │ │ │ │ ├── MailToTransportBaseClass.java │ │ │ │ │ ├── MailToTransportFolderTestCase.java │ │ │ │ │ ├── MailToTransportInvalidAddressTestCase.java │ │ │ │ │ ├── MailToTransportInvalidFolderTestCase.java │ │ │ │ │ ├── MailToTransportPreserveHeadersTestCase.java │ │ │ │ │ └── MailToTransportRemoveHeaderTestCase.java │ │ │ │ └── sender │ │ │ │ └── test │ │ │ │ ├── SendMailWithBCCThroughESBTestCase.java │ │ │ │ ├── SendMailWithMultipartThroughESBTestCase.java │ │ │ │ ├── SendMailWithSecondaryAccountThroughESBTestCase.java │ │ │ │ └── SenderBaseClass.java │ │ │ ├── mqtt │ │ │ ├── inbound │ │ │ │ └── transport │ │ │ │ │ └── test │ │ │ │ │ ├── MQTTInboundMessagePollingTestCase.java │ │ │ │ │ └── MQTTInboundTempFileCreationTestCase.java │ │ │ └── utils │ │ │ │ ├── MQTTTestClient.java │ │ │ │ ├── QualityOfService.java │ │ │ │ └── SimpleMQTTCallback.java │ │ │ ├── passthru │ │ │ └── transport │ │ │ │ └── test │ │ │ │ ├── AcceptHeaderTestCase.java │ │ │ │ ├── CheckAuthHeaderOrderTestCase.java │ │ │ │ ├── ContentTypeCharsetTestCase.java │ │ │ │ ├── ConversionWithNonSOAPContentTypeBackendTestCase.java │ │ │ │ ├── CookieHeaderExpiresHavingCommaTestCase.java │ │ │ │ ├── ESBJAVA1897HttpHeadMethodTestCase.java │ │ │ │ ├── ESBJAVA1994SOAPFormatSwitchingTestcase.java │ │ │ │ ├── ESBJAVA3022SendingSoapRequestAfterRestRequestTestCase.java │ │ │ │ ├── ESBJAVA3051HTTPPatchMethodSupportTestCase.java │ │ │ │ ├── ESBJAVA4326OverridingHostHeaderTestCase.java │ │ │ │ ├── ESBJAVA4402MessageWithoutPayloadTestCase.java │ │ │ │ ├── ESBJAVA4468ContentTypeCharsetInResponseTestCase.java │ │ │ │ ├── ESBJAVA4891ConsumeAndDiscardTest.java │ │ │ │ ├── ESBJAVA4999ResponsePayloadWithHTTPAcceptedTestCase.java │ │ │ │ ├── ESBJAVA5069AccessSwaggerTenantTestCase.java │ │ │ │ ├── ESBJAVA5135ResponseBodyWith202TestCase.java │ │ │ │ ├── HTTPDeleteTestCases.java │ │ │ │ ├── HeadMethodResponseTestCase.java │ │ │ │ ├── LocationHeaderWithRelativeURLPathTestCase.java │ │ │ │ ├── MTOMMIMEBoundaryWhenContentTypePreservedTestCase.java │ │ │ │ ├── MaximumOpenConnectionsClient.java │ │ │ │ ├── MessageWithoutContentTypeTestCase.java │ │ │ │ ├── MultipartFormDataWithCharacterEncodingPropertyTestCase.java │ │ │ │ ├── PartialInputStreamReadError.java │ │ │ │ ├── PassthroughTransportHttpProxyTestCase.java │ │ │ │ ├── PttMaximumOpenConnections.java │ │ │ │ ├── RetrieveBackendWsdlTestCase.java │ │ │ │ ├── SetHostHttpHeaderTestCase.java │ │ │ │ └── SetPropertyMessageBuilderInvokedWithEmptyContentTypeTestCase.java │ │ │ ├── servlet │ │ │ └── transport │ │ │ │ └── test │ │ │ │ └── POXOverServletTransportTestCase.java │ │ │ ├── ssl │ │ │ └── test │ │ │ │ ├── ClientSSLCertificateTestCase.java │ │ │ │ └── DynamicSSLProfilesPTTListenerTestCase.java │ │ │ ├── tcp │ │ │ └── transport │ │ │ │ ├── README.md │ │ │ │ └── test │ │ │ │ ├── TCPSessionPersistenceSplitByCharacterTestCase.java │ │ │ │ ├── TCPSessionPersistenceSplitBySpecialCharacterTestCase.java │ │ │ │ ├── TCPSessionPersistenceSplitByStringTestCase.java │ │ │ │ ├── TcpTransportProxyServiceTestCase.java │ │ │ │ └── util │ │ │ │ ├── NativeTCPClient.java │ │ │ │ └── TcpClient.java │ │ │ ├── vfs │ │ │ └── transport │ │ │ │ └── test │ │ │ │ ├── ESBJAVA3430TestCase.java │ │ │ │ ├── ESBJAVA4450TestCase.java │ │ │ │ ├── VFSHidePasswordLogESBJAVA3419.java │ │ │ │ ├── VFSQueryParameterAppendESBJAVA2373TestCase.java │ │ │ │ └── VFSTransportTestCase.java │ │ │ └── websocket │ │ │ ├── client │ │ │ ├── WebSocketClientHandler.java │ │ │ └── WebSocketTestClient.java │ │ │ ├── inbound │ │ │ └── transport │ │ │ │ └── test │ │ │ │ └── WebSocketInboundTestCase.java │ │ │ └── server │ │ │ ├── WebSocketRemoteServerFrameHandler.java │ │ │ ├── WebSocketRemoteServerInitializer.java │ │ │ └── WebSocketServer.java │ │ └── resources │ │ ├── artifacts │ │ ├── AXIS2 │ │ │ ├── aar │ │ │ │ ├── Axis2 Service.aar │ │ │ │ ├── Axis2Service.aar │ │ │ │ ├── Echo.aar │ │ │ │ ├── HelloWorld.aar │ │ │ │ ├── LBService1.aar │ │ │ │ ├── LBService2.aar │ │ │ │ ├── LBService3.aar │ │ │ │ ├── MTOMSwASampleService.aar │ │ │ │ ├── RetryOnSoapFault.aar │ │ │ │ ├── SecureStockQuoteService.aar │ │ │ │ ├── SecureStockQuoteServiceScenario1.aar │ │ │ │ ├── SecureStockQuoteServiceScenario10.aar │ │ │ │ ├── SecureStockQuoteServiceScenario2.aar │ │ │ │ ├── SecureStockQuoteServiceScenario3.aar │ │ │ │ ├── SecureStockQuoteServiceScenario4.aar │ │ │ │ ├── SecureStockQuoteServiceScenario5.aar │ │ │ │ ├── SecureStockQuoteServiceScenario6.aar │ │ │ │ ├── SecureStockQuoteServiceScenario7.aar │ │ │ │ ├── SecureStockQuoteServiceScenario8.aar │ │ │ │ ├── SecureStockQuoteServiceScenario9.aar │ │ │ │ ├── SimpleStockQuoteService.aar │ │ │ │ ├── SimpleStockQuoteService_timeout.aar │ │ │ │ ├── StratosSchemaimportservice.aar │ │ │ │ ├── StudentService.aar │ │ │ │ ├── geows.aar │ │ │ │ ├── hcfacilitylocator.aar │ │ │ │ └── hcinformationservice.aar │ │ │ └── config │ │ │ │ ├── test_axis2_server_9000.xml │ │ │ │ ├── test_axis2_server_9001.xml │ │ │ │ ├── test_axis2_server_9002.xml │ │ │ │ ├── test_axis2_server_9003.xml │ │ │ │ ├── test_axis2_server_9007.xml │ │ │ │ ├── test_axis2_server_9009.xml │ │ │ │ ├── test_axis2_server_9015.xml │ │ │ │ └── test_axis2_server_9017.xml │ │ └── ESB │ │ │ ├── api │ │ │ └── Tenant.xml │ │ │ ├── car │ │ │ ├── DemoProxy-1.0.0.car │ │ │ ├── ESBproject1-1.0.0.car │ │ │ ├── ESBproject2-1.0.0.car │ │ │ ├── ESBproject3-1.0.0.car │ │ │ ├── ESBproject4-1.0.0.car │ │ │ ├── JMSProxyDeploymentTestCar_1.0.0.car │ │ │ ├── MediatorCApp2_1.0.0.car │ │ │ ├── MediatorCApp_1.0.0.car │ │ │ ├── ServiceChaining-1.0.0.car │ │ │ ├── SynchroDepInValidCarApp_1.0.0.car │ │ │ ├── SynchroDepValidCarApp_1.0.0.car │ │ │ ├── cApp_faulty_jms_1.0.0.car │ │ │ ├── esb-artifacts-car_1.0.0.car │ │ │ └── xslt-transformation-car_1.0.0.car │ │ │ ├── compression │ │ │ └── gzip │ │ │ │ └── gzip-compression.xml │ │ │ ├── config │ │ │ └── testconfig.xml │ │ │ ├── defaultconfigs │ │ │ └── synapse.xml │ │ │ ├── dynamicsslprofiles │ │ │ └── pttlistener │ │ │ │ ├── axis2.xml │ │ │ │ ├── clienttruststore.jks │ │ │ │ ├── deployment.toml │ │ │ │ ├── esb.jks │ │ │ │ ├── listenerprofiles.xml │ │ │ │ ├── restorelistenerprofiles.xml │ │ │ │ └── updatedlistenerprofiles.xml │ │ │ ├── endpoint │ │ │ ├── CARBON11016_synapse.xml │ │ │ ├── addressEndpointConfig │ │ │ │ ├── addressEP_Test.xml │ │ │ │ ├── invalidPropertyAddressEndPoint.xml │ │ │ │ └── synapse.xml │ │ │ ├── defaultEndpointConfig │ │ │ │ ├── defaultEP_Test.xml │ │ │ │ └── synapse.xml │ │ │ ├── endpointFotmatRestPTTestConfig.xml │ │ │ ├── failoverEndpointConfig │ │ │ │ ├── failOverWithDisabledErrors.xml │ │ │ │ ├── failoverEP_Test.xml │ │ │ │ └── synapse.xml │ │ │ ├── httpEndpointConfig │ │ │ │ └── synapse.xml │ │ │ ├── loadbalancingEndpointConfig │ │ │ │ ├── loadbalancingEP_Test.xml │ │ │ │ └── synapse.xml │ │ │ ├── wsdlEndpointConfig │ │ │ │ ├── synapse.xml │ │ │ │ └── wsdlEP_Test.xml │ │ │ └── wsdlTestEp.xml │ │ │ ├── endpointlookup.xml │ │ │ ├── entitlementMediatorConfig │ │ │ └── entitlementMediatorSynapse.xml │ │ │ ├── file │ │ │ └── inbound │ │ │ │ └── transport │ │ │ │ ├── fileInboundDynamicSequence.xml │ │ │ │ └── test.xml │ │ │ ├── generic │ │ │ └── inbound │ │ │ │ └── transport │ │ │ │ └── synapse.xml │ │ │ ├── hl7 │ │ │ ├── conf │ │ │ │ └── deployment.toml │ │ │ └── proxy │ │ │ │ └── HL7ReceiverProxy.xml │ │ │ ├── http.inbound.transport │ │ │ ├── Test.xml │ │ │ ├── apidispatch.xml │ │ │ ├── inbound1.xml │ │ │ ├── inbound2.xml │ │ │ └── synapse.xml │ │ │ ├── https.inbound.transport │ │ │ └── synapse.xml │ │ │ ├── jaxrs │ │ │ ├── getperson.xml │ │ │ └── putpeopleproxy.xml │ │ │ ├── jms │ │ │ ├── inbound │ │ │ │ └── transport │ │ │ │ │ ├── jmsInboundTransactionCommitInboundEp.xml │ │ │ │ │ ├── jmsInboundTransactionRollbackInboundEp.xml │ │ │ │ │ ├── jmsTypeHeaderInboundEndpoint.xml │ │ │ │ │ ├── jms_http_tenant_transport.xml │ │ │ │ │ ├── jms_transport_proxy_service.xml │ │ │ │ │ └── message.xml │ │ │ ├── securevault │ │ │ │ ├── axis2.xml │ │ │ │ ├── cipher-text.properties │ │ │ │ ├── cipher-tool.properties │ │ │ │ ├── password-tmp │ │ │ │ └── secret-conf.properties │ │ │ └── transport │ │ │ │ ├── ESBJAVA-1716_messageStore.xml │ │ │ │ ├── ESBJAVA-1793MessageStore-targetEndPointFormat-pox.xml │ │ │ │ ├── HTTP_SC.xml │ │ │ │ ├── JMSAXISFault.xml │ │ │ │ ├── axis2config │ │ │ │ ├── activemq │ │ │ │ │ └── axis2.xml │ │ │ │ └── mb │ │ │ │ │ └── axis2.xml │ │ │ │ ├── jms_message_store_unavailable_service.xml │ │ │ │ ├── jms_transport_jms_suspension.xml │ │ │ │ ├── jms_wait_response.xml │ │ │ │ ├── jmsclient-and-restService.xml │ │ │ │ ├── jndi.properties │ │ │ │ └── msgInjection │ │ │ │ └── ESBJAVA1832MessageInjectorTestTask.xml │ │ │ ├── json │ │ │ ├── blockingSenderWithJson.xml │ │ │ └── json-to-soap-conversion.xml │ │ │ ├── kafka │ │ │ └── inbound │ │ │ │ └── transport │ │ │ │ ├── kafka_commit_synapse.xml │ │ │ │ ├── kafka_commit_synapse1.xml │ │ │ │ └── kafka_commit_synapse2.xml │ │ │ ├── local │ │ │ ├── local-transport-header.xml │ │ │ └── local-transport.xml │ │ │ ├── localEntryConfig │ │ │ ├── sequence_as_local_registry_entry.xml │ │ │ └── throttle_policy_as_a_local_entry.xml │ │ │ ├── mailTransport │ │ │ ├── mailTransportReceiver │ │ │ │ ├── mail_transport_actionafter_failure_delete.xml │ │ │ │ ├── mail_transport_actionafter_failure_move.xml │ │ │ │ ├── mail_transport_delete.xml │ │ │ │ ├── mail_transport_folder.xml │ │ │ │ ├── mail_transport_invalid_address.xml │ │ │ │ ├── mail_transport_invalid_folder.xml │ │ │ │ ├── mail_transport_move.xml │ │ │ │ ├── mail_transport_preserve_header.xml │ │ │ │ └── mail_transport_remove_header.xml │ │ │ └── mailTransportSender │ │ │ │ ├── multipart │ │ │ │ └── mail_sender_multipart.xml │ │ │ │ ├── secondaryAccount │ │ │ │ ├── axis2.xml │ │ │ │ └── mail_sender_secondary.xml │ │ │ │ └── smtpBcc │ │ │ │ └── mail_sender_bcc.xml │ │ │ ├── mediatorconfig │ │ │ ├── cache │ │ │ │ ├── CollectorTypeCacheMediator.xml │ │ │ │ └── LargeCacheTimeOut.xml │ │ │ ├── call │ │ │ │ ├── synapse.xml │ │ │ │ ├── synapse1.xml │ │ │ │ ├── synapse10.xml │ │ │ │ ├── synapse11.xml │ │ │ │ ├── synapse12.xml │ │ │ │ ├── synapse13.xml │ │ │ │ ├── synapse14.xml │ │ │ │ ├── synapse15.xml │ │ │ │ ├── synapse17.xml │ │ │ │ ├── synapse18.xml │ │ │ │ ├── synapse19.xml │ │ │ │ ├── synapse2.xml │ │ │ │ ├── synapse20.xml │ │ │ │ ├── synapse21.xml │ │ │ │ ├── synapse3.xml │ │ │ │ ├── synapse4.xml │ │ │ │ ├── synapse5.xml │ │ │ │ ├── synapse6.xml │ │ │ │ ├── synapse7.xml │ │ │ │ ├── synapse8.xml │ │ │ │ ├── synapse9.xml │ │ │ │ ├── synapse_expressions.xml │ │ │ │ └── synapse_param_with_values.xml │ │ │ ├── call_template │ │ │ │ ├── synapse.xml │ │ │ │ ├── synapse_expressions.xml │ │ │ │ └── synapse_param_with_values.xml │ │ │ ├── callout │ │ │ │ ├── CallOutMediatorOutOnlyTest.xml │ │ │ │ ├── CallOutMediatorWithMTOMTest.xml │ │ │ │ ├── DynamicEndpointTest.xml │ │ │ │ ├── DynamicProperties.xml │ │ │ │ ├── FaultSeq.xml │ │ │ │ ├── InboundOutboundSecurityTest.xml │ │ │ │ ├── SecurityTest.xml │ │ │ │ ├── TranportCleanupOnFaultTest.xml │ │ │ │ ├── ValidPath_Axis2Repo.xml │ │ │ │ ├── ValidPath_Axis2Xml.xml │ │ │ │ ├── client_repo │ │ │ │ │ └── conf │ │ │ │ │ │ └── axis2.xml │ │ │ │ ├── synapse_sample_430.xml │ │ │ │ └── transport_headers.xml │ │ │ ├── class │ │ │ │ ├── class_mediation_with_twenty_properties.xml │ │ │ │ ├── class_property_persistence_five_properties.xml │ │ │ │ ├── class_property_persistence_four_properties.xml │ │ │ │ └── class_property_persistence_three_properties.xml │ │ │ ├── clone │ │ │ │ ├── cloneLogAndSendSequence.xml │ │ │ │ ├── clone_SOAP_Action.xml │ │ │ │ ├── clone_http.xml │ │ │ │ ├── clone_https.xml │ │ │ │ ├── clone_https_sequence.xml │ │ │ │ ├── clone_jms.xml │ │ │ │ ├── clone_named_endpoints.xml │ │ │ │ ├── clone_sequence.xml │ │ │ │ ├── clone_simple.xml │ │ │ │ ├── clone_unknown_endpoints.xml │ │ │ │ ├── clone_unmaching_aggregate.xml │ │ │ │ └── large_message.txt │ │ │ ├── db │ │ │ │ └── synapse_sample_364.xml │ │ │ ├── dblookup │ │ │ │ ├── sample_360.xml │ │ │ │ ├── sample_360_multiple_SQL_statements.xml │ │ │ │ ├── sample_360_multiple_results_test.xml │ │ │ │ ├── sample_360_stored_function_test.xml │ │ │ │ └── sample_360_stored_procedure.xml │ │ │ ├── dbreport │ │ │ │ ├── synapse_dbReport.xml │ │ │ │ ├── synapse_sample_361.xml │ │ │ │ ├── synapse_sample_364.xml │ │ │ │ └── synapse_use_transaction.xml │ │ │ ├── enrich │ │ │ │ ├── add_propert_as_child.xml │ │ │ │ ├── add_property_as_sibling.xml │ │ │ │ ├── add_sibling.xml │ │ │ │ ├── enrich_add_as_child.xml │ │ │ │ ├── enrich_add_sibling_in_out_msg.xml │ │ │ │ ├── enrich_byGetProperty.xml │ │ │ │ ├── enrich_by_enrich.xml │ │ │ │ ├── enrich_omText.xml │ │ │ │ ├── enrich_replace_body_by_specified_property.xml │ │ │ │ ├── enrich_replace_by_property.xml │ │ │ │ ├── registry_synapse.xml │ │ │ │ └── required │ │ │ │ │ └── registry_configs.xml │ │ │ ├── fast_xslt │ │ │ │ ├── calltemplate_integration_fastxslt_sample750_synapse.xml │ │ │ │ ├── fast_xslt_dynamic_key_synapse.xml │ │ │ │ └── synapse_fast_xslt_sample_8.xml │ │ │ ├── fault │ │ │ │ ├── soap11_fault_actor_synapse.xml │ │ │ │ ├── soap11_fault_code_Client_synapse.xml │ │ │ │ ├── soap11_fault_code_MustUnderstand_synapse.xml │ │ │ │ ├── soap11_fault_code_Server_synapse.xml │ │ │ │ ├── soap11_fault_code_VersionMismatch_synapse.xml │ │ │ │ ├── soap11_fault_detail_as_element_synapse.xml │ │ │ │ ├── soap11_fault_detail_synapse.xml │ │ │ │ ├── soap11_fault_full_synapse.xml │ │ │ │ ├── soap11_fault_out_sequence_synapse.xml │ │ │ │ ├── soap11_fault_response_validate_synapse.xml │ │ │ │ ├── soap11_fault_set_response_attribute_false_with_addressing_synapse.xml │ │ │ │ ├── soap11_fault_set_response_false_synapse.xml │ │ │ │ ├── soap11_fault_set_response_true_synapse.xml │ │ │ │ ├── soap11_fault_string_expression_synapse.xml │ │ │ │ ├── soap11_fault_string_value_synapse.xml │ │ │ │ ├── soap12_fault_actor_synapse.xml │ │ │ │ ├── soap12_fault_code_DataEncodingUnknown_synapse.xml │ │ │ │ ├── soap12_fault_code_MustUnderstand_synapse.xml │ │ │ │ ├── soap12_fault_code_Receiver_synapse.xml │ │ │ │ ├── soap12_fault_code_Sender_synapse.xml │ │ │ │ ├── soap12_fault_code_VersionMismatch_synapse.xml │ │ │ │ ├── soap12_fault_detail_as_element_synapse.xml │ │ │ │ ├── soap12_fault_detail_synapse.xml │ │ │ │ ├── soap12_fault_full_synapse.xml │ │ │ │ ├── soap12_fault_node_synapse.xml │ │ │ │ ├── soap12_fault_out_sequence_synapse.xml │ │ │ │ ├── soap12_fault_response_validate_synapse.xml │ │ │ │ ├── soap12_fault_set_response_attribute_false_with_addressing_synapse.xml │ │ │ │ ├── soap12_fault_set_response_false_synapse.xml │ │ │ │ ├── soap12_fault_set_response_true_synapse.xml │ │ │ │ ├── soap12_fault_string_expression_synapse.xml │ │ │ │ └── soap12_fault_string_value_synapse.xml │ │ │ ├── header │ │ │ │ ├── action_header_set_synapse.xml │ │ │ │ ├── action_remove_security_synapse.xml │ │ │ │ └── to_header_set_synapse.xml │ │ │ ├── iterate │ │ │ │ ├── ESBJAVA-2843-iterateIfPreservePayloadFalse.xml │ │ │ │ ├── IterateIDAggregateIDMismatch.xml │ │ │ │ ├── Iterate_anonymous_endpoints.xml │ │ │ │ ├── invalid_XPath.xml │ │ │ │ ├── invalid_name_space_attachpath.xml │ │ │ │ ├── invalid_namespace_iterateexpression.xml │ │ │ │ ├── invalid_soapaction.xml │ │ │ │ ├── invalid_soapaction_valid_payload.xml │ │ │ │ ├── invalid_target_address.xml │ │ │ │ ├── iterate.txt │ │ │ │ ├── iterate1.txt │ │ │ │ ├── iterateEndpoint.xml │ │ │ │ ├── iterateLogAndSendSequence.xml │ │ │ │ ├── iterateSequentialTrueProperty.xml │ │ │ │ ├── iterateSequentialTruePropertyWithOutProperty.xml │ │ │ │ ├── iterate_SOAP_Action.xml │ │ │ │ ├── iterate_configuration_endpoint.xml │ │ │ │ ├── iterate_continue_parent_false.xml │ │ │ │ ├── iterate_continue_parent_true.xml │ │ │ │ ├── iterate_different_ID.xml │ │ │ │ ├── iterate_govners_endpoint.xml │ │ │ │ ├── iterate_https_endpoint.xml │ │ │ │ ├── iterate_named_endpoints.xml │ │ │ │ ├── iterate_named_sequence.xml │ │ │ │ ├── iterate_sequential.xml │ │ │ │ ├── iterate_small.txt │ │ │ │ ├── iterate_target_configuration.xml │ │ │ │ ├── iterate_target_govenerce.xml │ │ │ │ ├── iterator_attach_path.xml │ │ │ │ ├── iterator_expressionLess.xml │ │ │ │ ├── null_namespace.xml │ │ │ │ ├── null_namespace_for_expression.xml │ │ │ │ ├── simple_iterator.xml │ │ │ │ └── valid_iterate_exp_mismatch_original_message.xml │ │ │ ├── payload │ │ │ │ └── factory │ │ │ │ │ ├── axis2 │ │ │ │ │ └── axis2.xml │ │ │ │ │ ├── expression_arg_payload_factory_synapse.xml │ │ │ │ │ ├── jsonFormat_JsonExpressiosns.xml │ │ │ │ │ ├── jsonFormat_JsonXmlExpressions_values.xml │ │ │ │ │ ├── jsonFormat_XmlExpressiosns.xml │ │ │ │ │ ├── no_arg_payload_factory_synapse.xml │ │ │ │ │ ├── om_arg_payload_factory_synapse.xml │ │ │ │ │ ├── payload-in.xml │ │ │ │ │ ├── payload_factory_dynamic_key.xml │ │ │ │ │ ├── special_chractors_at_payload_factory.xml │ │ │ │ │ ├── value_arg_payload_factory_synapse.xml │ │ │ │ │ ├── value_expression_arg_payload_factory_synapse.xml │ │ │ │ │ └── xmlFormat_JsonExpressiosns.xml │ │ │ ├── policy │ │ │ │ └── throttle_policy.xml │ │ │ ├── property │ │ │ │ ├── DISABLE_CHUNKING.xml │ │ │ │ ├── NO_ENTITY_BODY.xml │ │ │ │ ├── NO_KEEPALIVE.xml │ │ │ │ ├── POST_TO_URI.xml │ │ │ │ ├── PRESERVE_WS_ADDRESSING.xml │ │ │ │ ├── REST_URL_postfix.xml │ │ │ │ ├── TRANSPORT_HEADERS.xml │ │ │ │ ├── disableAddressingForOutMessages.xml │ │ │ │ ├── synapse_http_header_case_sensitivity.xml │ │ │ │ └── transport_scope_property.xml │ │ │ ├── rewrite │ │ │ │ ├── full_url_append_synapse.xml │ │ │ │ ├── full_url_prepend_synapse.xml │ │ │ │ ├── full_url_rewrite_synapse.xml │ │ │ │ ├── full_url_set_synapse.xml │ │ │ │ ├── full_url_set_when_no_url_synapse.xml │ │ │ │ ├── hostname_append_synapse.xml │ │ │ │ ├── hostname_prepend_synapse.xml │ │ │ │ ├── hostname_set_synapse.xml │ │ │ │ ├── path_append_synapse.xml │ │ │ │ ├── path_prepend_synapse.xml │ │ │ │ ├── path_set_synapse.xml │ │ │ │ ├── port_append_synapse.xml │ │ │ │ ├── port_prepend_synapse.xml │ │ │ │ ├── port_set_synapse.xml │ │ │ │ ├── protocol_append_synapse.xml │ │ │ │ ├── protocol_prepend_synapse.xml │ │ │ │ ├── protocol_rewrite_from_property_synapse.xml │ │ │ │ ├── protocol_rewrite_synapse.xml │ │ │ │ ├── protocol_set_synapse.xml │ │ │ │ ├── remove_rewrite_full_url_synapse.xml │ │ │ │ ├── remove_rewrite_host_synapse.xml │ │ │ │ ├── remove_rewrite_path_synapse.xml │ │ │ │ ├── remove_rewrite_port_synapse.xml │ │ │ │ ├── remove_rewrite_protocol_synapse.xml │ │ │ │ ├── synapse_sample451.xml │ │ │ │ ├── url_reWrite_by_context_synapse.xml │ │ │ │ ├── url_reWrite_by_host_synapse.xml │ │ │ │ ├── url_reWrite_by_port_expression_synapse.xml │ │ │ │ └── url_reWrite_by_port_synapse.xml │ │ │ ├── router │ │ │ │ ├── router_breakRouter_false_test.xml │ │ │ │ ├── router_continueAfter_false_test.xml │ │ │ │ ├── router_continueAfter_true_test.xml │ │ │ │ ├── router_endpoint.xml │ │ │ │ ├── router_endpoint_test.xml │ │ │ │ ├── router_expression_test.xml │ │ │ │ ├── router_https_endpoint.xml │ │ │ │ ├── router_multiple_routs_test.xml │ │ │ │ ├── router_sequence.xml │ │ │ │ └── router_sequence_test.xml │ │ │ ├── script │ │ │ │ ├── stockquoteTransform.js │ │ │ │ └── stockquoteTransform.rb │ │ │ ├── script_js │ │ │ │ ├── detailTransform.js │ │ │ │ ├── stockquoteTransform.js │ │ │ │ └── test54.js │ │ │ ├── send │ │ │ │ ├── endpoints │ │ │ │ │ └── registry_endpoint.xml │ │ │ │ ├── sequence │ │ │ │ │ ├── test_sequence_build_message_conf.xml │ │ │ │ │ ├── test_sequence_build_message_gov.xml │ │ │ │ │ └── test_sequence_build_message_local.xml │ │ │ │ ├── synapse_config.xml │ │ │ │ ├── synapse_default.xml │ │ │ │ ├── synapse_dynamic.xml │ │ │ │ ├── synapse_endpoint_registry.xml │ │ │ │ ├── synapse_gov.xml │ │ │ │ ├── synapse_local.xml │ │ │ │ └── synapse_uncaught_exception.xml │ │ │ ├── sequence │ │ │ │ ├── synapse_proxy.xml │ │ │ │ └── synapse_sequence_mediator.xml │ │ │ ├── spring │ │ │ │ ├── spring_mediation.xml │ │ │ │ ├── spring_mediation_different_bean_id.xml │ │ │ │ ├── spring_mediation_invalid_spring_bean.xml │ │ │ │ ├── spring_mediation_springBean_resource_not_exist.xml │ │ │ │ └── utils │ │ │ │ │ ├── different_bean_names.xml │ │ │ │ │ ├── invalid_spring_bean.xml │ │ │ │ │ ├── springbean.xml │ │ │ │ │ └── updating_spring.xml │ │ │ ├── switch_conf │ │ │ │ └── switch_mediator_subsequence_matching.xml │ │ │ ├── validate │ │ │ │ └── schema.xml │ │ │ ├── xquery │ │ │ │ ├── synapse101.xml │ │ │ │ ├── xquery_empty_soap_request.xml │ │ │ │ ├── xquery_replace_body_synapse101.xml │ │ │ │ ├── xquery_variable_type_boolean_synapse101.xml │ │ │ │ ├── xquery_variable_type_byte_synapse101.xml │ │ │ │ ├── xquery_variable_type_double_synapse101.xml │ │ │ │ ├── xquery_variable_type_float_synapse101.xml │ │ │ │ ├── xquery_variable_type_int_synapse101.xml │ │ │ │ ├── xquery_variable_type_integer_synapse101.xml │ │ │ │ ├── xquery_variable_type_long_synapse101.xml │ │ │ │ └── xquery_variable_type_string_synapse101.xml │ │ │ └── xslt │ │ │ │ ├── local_entry_refer_xslt_transformation_synapse.xml │ │ │ │ ├── transform.xslt │ │ │ │ ├── transform_back.xslt │ │ │ │ ├── xslt_dynamic_key_synapse.xml │ │ │ │ ├── xslt_from_config_registry_local_entry_synapse.xml │ │ │ │ ├── xslt_from_governance_registry_local_entry_synapse.xml │ │ │ │ ├── xslt_from_url_synapse.xml │ │ │ │ ├── xslt_in_file_system_local_entry_synapse.xml │ │ │ │ ├── xslt_in_line_local_entry_synapse.xml │ │ │ │ └── xslt_transformation_with_property_synapse.xml │ │ │ ├── messageProcessorConfig │ │ │ └── Message_Processor_Persistence_After_Restart_Synapse.xml │ │ │ ├── mqtt │ │ │ └── inbound │ │ │ │ └── transport │ │ │ │ ├── MQTT_Test_Inbound_EP.xml │ │ │ │ ├── PublishToMqttTestEndpoint.xml │ │ │ │ ├── PublishToMqttTestSequence.xml │ │ │ │ └── simple_mqtt_inboud_transport_config.xml │ │ │ ├── mtom │ │ │ └── asf-logo.gif │ │ │ ├── other │ │ │ └── index.html │ │ │ ├── passthru │ │ │ └── transport │ │ │ │ ├── ESBJAVA-4326.xml │ │ │ │ ├── ESBJAVA-4616.xml │ │ │ │ ├── ESBJAVA-4999.xml │ │ │ │ ├── ESBJAVA-5135.xml │ │ │ │ ├── ESBJAVA4468.xml │ │ │ │ ├── httpproxy │ │ │ │ ├── axis2.xml │ │ │ │ ├── deployment.toml │ │ │ │ └── httpProxySwitchingSoap12.xml │ │ │ │ ├── inputESBJAVA4616.xml │ │ │ │ ├── inputESBJAVA4891.xml │ │ │ │ └── soapconversion │ │ │ │ └── axis2.xml │ │ │ ├── proxyconfig │ │ │ └── proxy │ │ │ │ ├── customProxy │ │ │ │ ├── insequence_existing_sequence.xml │ │ │ │ ├── insequence_from_registry.xml │ │ │ │ ├── insequence_inline_endpoint_from_registry.xml │ │ │ │ ├── insequence_inline_endpoint_inline.xml │ │ │ │ ├── insequence_none_endpoint_existing.xml │ │ │ │ ├── insequence_none_endpoint_from_registry.xml │ │ │ │ ├── insequence_none_endpoint_inline.xml │ │ │ │ ├── non_existing_proxy.xml │ │ │ │ ├── non_existing_proxy_route_to_main.xml │ │ │ │ ├── outsequence_faultsequence.xml │ │ │ │ └── simple_proxy.xml │ │ │ │ ├── enablelocaltransport │ │ │ │ └── axis2.xml │ │ │ │ ├── loggingProxy │ │ │ │ ├── pick_end_point_from_registry.xml │ │ │ │ ├── proxy_service_enabling_only_http.xml │ │ │ │ ├── proxy_service_enabling_only_https.xml │ │ │ │ ├── proxy_service_with_end_point_through_url.xml │ │ │ │ ├── request_log_level_full_response_log_level_full.xml │ │ │ │ ├── request_log_level_none_response_log_level_none.xml │ │ │ │ ├── request_log_level_simple_response_log_level_simple.xml │ │ │ │ ├── wsdl_options_pick_from_registry.xml │ │ │ │ ├── wsdl_options_specified_inline.xml │ │ │ │ └── wsdl_options_specified_source_url.xml │ │ │ │ ├── passThroughProxy │ │ │ │ ├── EditPassThroughProxy.xml │ │ │ │ ├── customServiceURI │ │ │ │ │ ├── axis2.xml │ │ │ │ │ └── custom_service_uri_enabling_only_https.xml │ │ │ │ ├── passThroughProxy.xml │ │ │ │ ├── pick_end_point_from_registry.xml │ │ │ │ ├── proxy_service_enabling_only_http.xml │ │ │ │ ├── proxy_service_enabling_only_https.xml │ │ │ │ ├── proxy_service_with_end_point_through_url.xml │ │ │ │ ├── wsdl_options_pick_from_registry.xml │ │ │ │ ├── wsdl_options_specified_inline.xml │ │ │ │ └── wsdl_options_specified_source_url.xml │ │ │ │ ├── protocolViolationProxy │ │ │ │ └── synapse.xml │ │ │ │ ├── proxyservice │ │ │ │ ├── http_to_https_proxy.xml │ │ │ │ ├── proxy_with_addressing.xml │ │ │ │ └── stock_quote_proxy.xml │ │ │ │ ├── secureProxy │ │ │ │ ├── passthrough_proxy_engaging_security_with_secueBackEnd.xml │ │ │ │ ├── passthrough_proxy_with_secueBackEnd.xml │ │ │ │ ├── sample_0_with_wso2_registry.xml │ │ │ │ ├── secure_proxy_service_scenarios.xml │ │ │ │ ├── secured_proxy_secured_backend.xml │ │ │ │ ├── security_transformation_proxy_for_policy2_backEnd.xml │ │ │ │ ├── security_transformation_proxy_for_policy3_backend.xml │ │ │ │ ├── security_transformation_proxy_for_policy4_backend.xml │ │ │ │ ├── security_transformation_proxy_for_policy5_backend.xml │ │ │ │ ├── security_transformation_proxy_for_policy6_backend.xml │ │ │ │ ├── security_transformation_proxy_for_policy7_backend.xml │ │ │ │ ├── security_transformation_proxy_for_policy8_backend.xml │ │ │ │ ├── stock_quote_passthrough_proxy.xml │ │ │ │ ├── stock_quote_proxy.xml │ │ │ │ ├── stockquote_pass_through_proxy.xml │ │ │ │ └── stockquote_proxy_unsecured.xml │ │ │ │ ├── transformerProxy │ │ │ │ ├── invalid_xslt_test.xml │ │ │ │ ├── pick_end_point_from_registry.xml │ │ │ │ ├── proxy_service_enabling_only_http.xml │ │ │ │ ├── proxy_service_enabling_only_https.xml │ │ │ │ ├── proxy_service_with_end_point_through_url.xml │ │ │ │ ├── wsdl_options_pick_from_registry.xml │ │ │ │ ├── wsdl_options_specified_inline.xml │ │ │ │ └── wsdl_options_specified_source_url.xml │ │ │ │ ├── utils │ │ │ │ ├── fault_sequence.xml │ │ │ │ ├── invalid_transform.xslt │ │ │ │ ├── out_sequence.xml │ │ │ │ ├── proxy_sequence.xml │ │ │ │ ├── registry_endpoint.xml │ │ │ │ └── sample_proxy_1.wsdl │ │ │ │ └── wsdlBasedProxy │ │ │ │ ├── proxy_service_enabling_only_http.xml │ │ │ │ ├── proxy_service_enabling_only_https.xml │ │ │ │ ├── proxy_service_with_publish_same_service_contract.xml │ │ │ │ ├── wsdl_options_pick_from_registry.xml │ │ │ │ ├── wsdl_options_specified_inline.xml │ │ │ │ └── wsdl_options_specified_source_url.xml │ │ │ ├── scheduledTask │ │ │ ├── InjectToProxyTestConfig.xml │ │ │ └── InjectToSequenceTestConfig.xml │ │ │ ├── server │ │ │ ├── conf │ │ │ │ ├── axis2 │ │ │ │ │ └── axis2.xml │ │ │ │ └── deployment.toml │ │ │ ├── lib │ │ │ │ ├── JMSProxyDeploymentTest.jar │ │ │ │ ├── activemq-client-5.9.1.jar │ │ │ │ ├── certmediator-1.0.jar │ │ │ │ ├── geronimo-j2ee-management_1.1_spec-1.0.1.jar │ │ │ │ ├── geronimo-jms_1.1_spec-1.1.1.jar │ │ │ │ ├── hawtbuf-1.9.jar │ │ │ │ ├── org.eclipse.paho.client.mqttv3-1.2.0.jar │ │ │ │ ├── org.wso2.carbon.inbound.endpoint.test-1.0.jar │ │ │ │ └── sample-hl7-preprocessor-1.0-SNAPSHOT.jar │ │ │ ├── registry │ │ │ │ └── governance │ │ │ │ │ ├── .metadata │ │ │ │ │ └── fileInboundDynamicSequence.xml.meta │ │ │ │ │ └── fileInboundDynamicSequence.xml │ │ │ └── repository │ │ │ │ └── deployment │ │ │ │ └── server │ │ │ │ └── synapse-configs │ │ │ │ └── default │ │ │ │ ├── api │ │ │ │ ├── AcceptHeaderTestAPI.xml │ │ │ │ ├── AuthHeaderTestAPI.xml │ │ │ │ ├── BOO.xml │ │ │ │ ├── CookieHeaderTestAPI.xml │ │ │ │ ├── CookieHeaderThirdPartyTestAPI.xml │ │ │ │ ├── DefaultRequestContentTypeTestAPI.xml │ │ │ │ ├── FOO.xml │ │ │ │ ├── MIMEBoundaryTestAPI.xml │ │ │ │ ├── MimeAttachmentAPI.xml │ │ │ │ ├── MultipartFormdataWithCharacterEncodingPropertyTest.xml │ │ │ │ ├── PatchTest.xml │ │ │ │ ├── SetPropertyMessageBuilderInvokedWithEmptyContentTypeAPI.xml │ │ │ │ ├── TenantContext.xml │ │ │ │ ├── Test.xml │ │ │ │ ├── TestBackEndSimulateAPI.xml │ │ │ │ ├── api_poc_messagetype.xml │ │ │ │ ├── customerservice.xml │ │ │ │ ├── hl7-api.xml │ │ │ │ ├── payload-with-202.xml │ │ │ │ ├── productsapi.xml │ │ │ │ └── testDeleteCall.xml │ │ │ │ ├── endpoints │ │ │ │ ├── JMSEndPoint.xml │ │ │ │ ├── JMSProcessorEndPoint.xml │ │ │ │ ├── ep2.xml │ │ │ │ ├── epforMSMPCronForwarderCase.xml │ │ │ │ ├── hl7Server_EP.xml │ │ │ │ ├── hl7Server_InboundEP.xml │ │ │ │ ├── jmsEndpointPox.xml │ │ │ │ ├── jmsEndpointSoap11.xml │ │ │ │ ├── jmsEndpointSoap12.xml │ │ │ │ ├── jsmQueueEP.xml │ │ │ │ ├── pocmt_epSoapClient.xml │ │ │ │ ├── pocmt_epTextPlainClient.xml │ │ │ │ └── stockQuoteEP.xml │ │ │ │ ├── inbound-endpoints │ │ │ │ ├── HttpListenerEP.xml │ │ │ │ ├── HttpListenerEP2.xml │ │ │ │ ├── jmsClientAckInboundEndpoint.xml │ │ │ │ ├── jmsQueueToHttpInboundEndpoint.xml │ │ │ │ ├── jmsRollbackTestInboundEndpoint.xml │ │ │ │ ├── jmsTypeHeaderInboundEndpoint.xml │ │ │ │ └── websocketTestInbound.xml │ │ │ │ ├── local-entries │ │ │ │ └── sampleProxy1Wsdl.xml │ │ │ │ ├── message-processors │ │ │ │ ├── BASE_Processor.xml │ │ │ │ ├── ESBJAVA1832MessageInjectorTestMP.xml │ │ │ │ ├── Forwarder1.xml │ │ │ │ ├── JMSMessageProcessorTestMP.xml │ │ │ │ ├── JMSTestMessageProcessor.xml │ │ │ │ ├── REDIRECT_Processor.xml │ │ │ │ ├── SamplingProcessor1.xml │ │ │ │ ├── VPE_Processor.xml │ │ │ │ └── testFP.xml │ │ │ │ ├── message-stores │ │ │ │ ├── BASE_Store.xml │ │ │ │ ├── ESBJAVA1832MessageInjectorTestMS.xml │ │ │ │ ├── JMSMS.xml │ │ │ │ ├── JMSTestMessageStore.xml │ │ │ │ ├── JMSTestMessageStoreUpdatingTest.xml │ │ │ │ ├── JMS_Store.xml │ │ │ │ ├── REDIRECT_Store.xml │ │ │ │ ├── RESTMessageStore.xml │ │ │ │ ├── VPE_Store.xml │ │ │ │ └── test.xml │ │ │ │ ├── proxy-services │ │ │ │ ├── ApplicationDimeSOAPBackend.xml │ │ │ │ ├── BASE_Proxy.xml │ │ │ │ ├── ClientProxy.xml │ │ │ │ ├── ClientSSLCertTestProxy.xml │ │ │ │ ├── ESBJAVA1832MessageInjectorTestProxy.xml │ │ │ │ ├── ESBJAVA2464TestProxy.xml │ │ │ │ ├── ESBJAVA4891ConsumeAndDiscardTestProxy.xml │ │ │ │ ├── EchoTest.xml │ │ │ │ ├── EndLogProxy.xml │ │ │ │ ├── FileInboundDynamicSequenceTestProxy.xml │ │ │ │ ├── FooProxy.xml │ │ │ │ ├── HEADTestProxy.xml │ │ │ │ ├── HeadMethodResponseTestClientProxy.xml │ │ │ │ ├── HeadMethodResponseTestProxy.xml │ │ │ │ ├── HttpHostHeaderSetProxy.xml │ │ │ │ ├── HttpHostHeaderSetProxyWithPort.xml │ │ │ │ ├── HttpHostHeaderTestProxy.xml │ │ │ │ ├── HttpHostHeaderTestProxyWithPort.xml │ │ │ │ ├── HttpInboundDispatchTestProxy.xml │ │ │ │ ├── HttpProxyTest.xml │ │ │ │ ├── JMSBlockingCallWithToHeaderTestCaseProxy.xml │ │ │ │ ├── JMSEndpointTestCaseProxy.xml │ │ │ │ ├── JMSMapMessageTestIn.xml │ │ │ │ ├── JMSMapMessageTestIntermediate.xml │ │ │ │ ├── JMSSecureVaultTestProxy.xml │ │ │ │ ├── JMSSenderStaleConnectionsTestProxy.xml │ │ │ │ ├── JMSStoreAndProcessorTestCaseProxy.xml │ │ │ │ ├── JMSStoreAndProcessorTestProxy.xml │ │ │ │ ├── JMSStoreNotAvailableTestCaseProxy.xml │ │ │ │ ├── JmsProxy.xml │ │ │ │ ├── JmsToRestProxy.xml │ │ │ │ ├── JmsTransportProxy.xml │ │ │ │ ├── LocalTransportProxy.xml │ │ │ │ ├── LocationHeaderInnerTestProxy.xml │ │ │ │ ├── LocationHeaderTestProxy.xml │ │ │ │ ├── MSMPRetrytest.xml │ │ │ │ ├── MTOMMIMEBoundaryWhenContentTypePreservedTestBackendProxy.xml │ │ │ │ ├── MTOMMIMEBoundaryWhenContentTypePreservedTestProxy.xml │ │ │ │ ├── MTOMMIMEBoundaryWithDisableChunking.xml │ │ │ │ ├── MailToTransportSecondaryAccount.xml │ │ │ │ ├── MailToTransportSenderBCC.xml │ │ │ │ ├── MailToTransportSenderMultipart.xml │ │ │ │ ├── MainProxy.xml │ │ │ │ ├── MaxOpenConnectionsTestProxy.xml │ │ │ │ ├── MultipartFormDataTestProxy.xml │ │ │ │ ├── NhttpLogsTestProxy.xml │ │ │ │ ├── PassthroughTransportHttpTestProxy.xml │ │ │ │ ├── PatchProxy.xml │ │ │ │ ├── PatchRespondProxy.xml │ │ │ │ ├── ProcessPO.xml │ │ │ │ ├── ProcessPO2.xml │ │ │ │ ├── RESTProxy.xml │ │ │ │ ├── ResponseQue.xml │ │ │ │ ├── RestServiceProxy.xml │ │ │ │ ├── SOAP11ProxyService.xml │ │ │ │ ├── SecondProxy.xml │ │ │ │ ├── StockQuoteProxy.xml │ │ │ │ ├── StockQuoteProxyToJMSTopic.xml │ │ │ │ ├── TCPProxy2.xml │ │ │ │ ├── TestProxy.xml │ │ │ │ ├── TestProxy_1559548635582.xml │ │ │ │ ├── VFSProxyAscii.xml │ │ │ │ ├── VFSProxyBinary.xml │ │ │ │ ├── VFSProxyDefault.xml │ │ │ │ ├── VFSProxyFileCreateInDirectory.xml │ │ │ │ ├── VFSProxyFileCreateInRoot.xml │ │ │ │ ├── VPE_Proxy.xml │ │ │ │ ├── contentTypeCharsetProxy1.xml │ │ │ │ ├── contentTypeCharsetProxy2.xml │ │ │ │ ├── contentTypeCharsetProxy3.xml │ │ │ │ ├── echo.xml │ │ │ │ ├── echoProxy.xml │ │ │ │ ├── jmsHeaderInboundEpTestProxy.xml │ │ │ │ ├── mockProxy.xml │ │ │ │ ├── proxyWithJmsEndpointPox.xml │ │ │ │ ├── proxyWithJmsEndpointSoap11.xml │ │ │ │ ├── proxyWithJmsEndpointSoap12.xml │ │ │ │ ├── respondBE.xml │ │ │ │ ├── response_nhttp_synapse_proxy.xml │ │ │ │ ├── retrieveBackendServiceTestProxy.xml │ │ │ │ ├── sslTestProxy.xml │ │ │ │ ├── tcpProxy.xml │ │ │ │ ├── tcpProxy_splitByCharacter.xml │ │ │ │ ├── tcpProxy_splitBySpecialCharacter.xml │ │ │ │ ├── tcpProxy_splitByString.xml │ │ │ │ ├── testDeleteProxy.xml │ │ │ │ └── testPS.xml │ │ │ │ ├── sequences │ │ │ │ ├── BoTest.xml │ │ │ │ ├── HTTPSInboundTestIn.xml │ │ │ │ ├── PublishToMqttTestSequence.xml │ │ │ │ ├── SamplingSeq.xml │ │ │ │ ├── TestIn.xml │ │ │ │ ├── TestInSeq.xml │ │ │ │ ├── TestOut.xml │ │ │ │ ├── deleteCallWithoutEntity.xml │ │ │ │ ├── dispatchSeq.xml │ │ │ │ ├── fault.xml │ │ │ │ ├── hl7-log.xml │ │ │ │ ├── hl7-payload.xml │ │ │ │ ├── inFault.xml │ │ │ │ ├── inboundFaultSeq.xml │ │ │ │ ├── jmsClientAckInboundEPSendInSequence.xml │ │ │ │ ├── jmsHeaderInboundEpTestLogSequence.xml │ │ │ │ ├── jmsInboundEndpointTransactionRequestHandlerSequence.xml │ │ │ │ ├── jmsInboundEpTransactionRollbackTestFaultSequence.xml │ │ │ │ ├── jmsInboundEpTransactionRollbackTestInSequence.xml │ │ │ │ ├── jmsQueueToHttpWithInboundEPSendInSequence.xml │ │ │ │ ├── jmsRollbackInboundEPInSequence.xml │ │ │ │ ├── jmsTypeHeaderInboundEPSendInSequence.xml │ │ │ │ ├── makeCallWithDelete.xml │ │ │ │ ├── onFault.xml │ │ │ │ ├── outDispatchSeq.xml │ │ │ │ ├── pocmt_epMakeTextPlainCall.xml │ │ │ │ ├── pocmt_epMakeTextPlainCall_r.xml │ │ │ │ ├── pocmt_seqFinish.xml │ │ │ │ ├── pocmt_seqMakeSoapCall.xml │ │ │ │ ├── pocmt_seqMakeSoapCall2.xml │ │ │ │ ├── pocmt_seqMakeSoapCall2_r.xml │ │ │ │ ├── pocmt_seqMakeSoapCall_r.xml │ │ │ │ ├── pocmt_seqPlaintTextClient_Finish.xml │ │ │ │ ├── pocmt_seqPlaintTextClient_Start.xml │ │ │ │ ├── pocmt_seqSoapClient_Finish.xml │ │ │ │ ├── pocmt_seqSoapClient_Start.xml │ │ │ │ ├── pocmt_seqStart.xml │ │ │ │ ├── reciveSeq.xml │ │ │ │ ├── repSeq.xml │ │ │ │ ├── replySeq.xml │ │ │ │ ├── requestHandlerSeq.xml │ │ │ │ ├── secondSeq.xml │ │ │ │ ├── super.xml │ │ │ │ └── testBackendAPISequence.xml │ │ │ │ └── templates │ │ │ │ ├── SetMessageBuilderInvokedWithEmptyContentTypeTemplate.xml │ │ │ │ ├── pocmt_tmplEpStaticRestUri.xml │ │ │ │ └── pocmt_tmplEpStaticUri.xml │ │ │ ├── sql │ │ │ └── store_message.sql │ │ │ ├── ssl │ │ │ ├── axis2.xml │ │ │ └── deployment.toml │ │ │ ├── synapseconfig │ │ │ ├── CheckAggregateChildContentConfig │ │ │ │ └── synapse.xml │ │ │ ├── LargeAggregationWithoutTimeoutConfig │ │ │ │ └── synapse.xml │ │ │ ├── MaxOpenConnections │ │ │ │ ├── deployment.toml │ │ │ │ ├── nhttp.properties │ │ │ │ ├── nhttp │ │ │ │ │ └── axis2.xml │ │ │ │ ├── passthru-http.properties │ │ │ │ └── ptt │ │ │ │ │ └── axis2.xml │ │ │ ├── MessageWithoutPayload │ │ │ │ └── synapse.xml │ │ │ ├── addressEndpointConfig │ │ │ │ ├── addressEP_Test.xml │ │ │ │ └── synapse.xml │ │ │ ├── aggregateWithinTimoutConfig │ │ │ │ └── synapse.xml │ │ │ ├── aggregatedEnclosingElement │ │ │ │ └── synapse.xml │ │ │ ├── class_mediator │ │ │ │ └── synapse.xml │ │ │ ├── config06 │ │ │ │ └── synapse.xml │ │ │ ├── config1 │ │ │ │ ├── endpoints │ │ │ │ │ ├── Axis2EPR.xml │ │ │ │ │ ├── BCISEndpoint.xml │ │ │ │ │ ├── CreditEpr.xml │ │ │ │ │ ├── PersonInfoEpr.xml │ │ │ │ │ ├── RSMeansEndpoint.xml │ │ │ │ │ ├── RuleServiceEndpoint.xml │ │ │ │ │ ├── SimpleStockQuoteService.xml │ │ │ │ │ ├── club_profile_ds_endpoint.xml │ │ │ │ │ ├── club_profile_ds_lb_endpoint.xml │ │ │ │ │ ├── club_record_ds_endpoint.xml │ │ │ │ │ ├── club_record_ds_lb_endpoint.xml │ │ │ │ │ ├── ds_endpoint.xml │ │ │ │ │ ├── geo_endpoint.xml │ │ │ │ │ ├── gis_endpoint.xml │ │ │ │ │ ├── resut_display_ep.xml │ │ │ │ │ ├── samplefailoverendpoint.xml │ │ │ │ │ └── samplewsdlendpoint.xml │ │ │ │ ├── local-entries │ │ │ │ │ ├── ResutDisplayServiceTransform.xml │ │ │ │ │ ├── geo_transform.xml │ │ │ │ │ ├── resource_proxy_reply_transformation.xml │ │ │ │ │ ├── rule_service_transformation.xml │ │ │ │ │ ├── testBean.xml │ │ │ │ │ └── validate_schema.xml │ │ │ │ ├── message-processors │ │ │ │ │ └── MProc1.xml │ │ │ │ ├── message-store │ │ │ │ │ └── MStore1.xml │ │ │ │ ├── priority-executors │ │ │ │ │ └── samplePriority2.xml │ │ │ │ ├── proxy-services │ │ │ │ │ ├── DemoProxy.xml │ │ │ │ │ └── StockQuoteProxy.xml │ │ │ │ ├── registry.xml │ │ │ │ ├── sequences │ │ │ │ │ ├── fault.xml │ │ │ │ │ └── main.xml │ │ │ │ ├── synapse.xml │ │ │ │ └── tasks │ │ │ │ │ └── sampleTask.xml │ │ │ ├── config10 │ │ │ │ └── synapse.xml │ │ │ ├── config11 │ │ │ │ └── synapse.xml │ │ │ ├── config12 │ │ │ │ └── synapse.xml │ │ │ ├── config13 │ │ │ │ └── synapse.xml │ │ │ ├── config16 │ │ │ │ └── synapse.xml │ │ │ ├── config17 │ │ │ │ └── synapse.xml │ │ │ ├── config18 │ │ │ │ └── synapse.xml │ │ │ ├── config19 │ │ │ │ └── synapse.xml │ │ │ ├── config20 │ │ │ │ └── synapse.xml │ │ │ ├── config21 │ │ │ │ └── synapse.xml │ │ │ ├── config3 │ │ │ │ ├── proxy-services │ │ │ │ │ └── StockQuoteProxy.xml │ │ │ │ ├── registry.xml │ │ │ │ └── synapse.xml │ │ │ ├── config4 │ │ │ │ └── proxy-services │ │ │ │ │ └── simplePassThoughProxy.xml │ │ │ ├── config46 │ │ │ │ └── synapse.xml │ │ │ ├── config5 │ │ │ │ └── proxy-services │ │ │ │ │ └── simplePassThoughWithWSDL.xml │ │ │ ├── config54 │ │ │ │ └── synapse.xml │ │ │ ├── config55 │ │ │ │ └── synapse.xml │ │ │ ├── config6 │ │ │ │ └── synapse.xml │ │ │ ├── config603 │ │ │ │ └── synapse.xml │ │ │ ├── config65 │ │ │ │ └── synapse.xml │ │ │ ├── config66 │ │ │ │ └── synapse.xml │ │ │ ├── config67 │ │ │ │ └── synapse.xml │ │ │ ├── config7 │ │ │ │ └── synapse.xml │ │ │ ├── config8 │ │ │ │ ├── classes │ │ │ │ │ └── synapse.properties │ │ │ │ └── synapse.xml │ │ │ ├── config9 │ │ │ │ └── synapse.xml │ │ │ ├── configFailOver │ │ │ │ └── ConfigFailOver.xml │ │ │ ├── configForInvaliedXquaryKey │ │ │ │ └── synapse.xml │ │ │ ├── config_multiple_rule │ │ │ │ └── synapse.xml │ │ │ ├── config_rule_s3 │ │ │ │ └── synapse.xml │ │ │ ├── config_single_rule │ │ │ │ └── synapse.xml │ │ │ ├── config_without_rule │ │ │ │ └── synapse.xml │ │ │ ├── core │ │ │ │ ├── synapse.xml │ │ │ │ ├── synapse_add_child_from_property.xml │ │ │ │ ├── synapse_add_sibling_from_property.xml │ │ │ │ ├── synapse_body_to_child_of_body.xml │ │ │ │ ├── synapse_body_to_sibling_of_body.xml │ │ │ │ ├── synapse_body_to_xpath_child.xml │ │ │ │ ├── synapse_body_to_xpath_sibling.xml │ │ │ │ ├── synapse_child_xpath.xml │ │ │ │ ├── synapse_envelope1.xml │ │ │ │ ├── synapse_replace_envelope_property.xml │ │ │ │ ├── synapse_replace_multiple_node.xml │ │ │ │ └── synapse_sourcexpath_targetxpath.xml │ │ │ ├── core_mediator │ │ │ │ ├── synapse.xml │ │ │ │ ├── synapseLoopbackMediatorConfig.xml │ │ │ │ └── synapseRepondMediatorConfig.xml │ │ │ ├── customSSLprofileWithsecurevault │ │ │ │ ├── axis2.xml │ │ │ │ ├── cipher-text.properties │ │ │ │ ├── cipher-tool.properties │ │ │ │ ├── password-tmp │ │ │ │ └── secret-conf.properties │ │ │ ├── default │ │ │ │ ├── api │ │ │ │ │ ├── StockQuoteAPI.xml │ │ │ │ │ └── StockQuoteAPI2.xml │ │ │ │ ├── endpoints │ │ │ │ │ └── addressEpTest.xml │ │ │ │ ├── local-entries │ │ │ │ │ └── local-entry-sequence-key.xml │ │ │ │ ├── proxy-services │ │ │ │ │ ├── SampleProxy.xml │ │ │ │ │ ├── StockQuoteProxy.xml │ │ │ │ │ └── addressEndPoint.xml │ │ │ │ ├── registry.xml │ │ │ │ ├── sequences │ │ │ │ │ ├── fault.xml │ │ │ │ │ └── main.xml │ │ │ │ ├── synapse.xml │ │ │ │ └── tasks │ │ │ │ │ └── SampleInjectToProxyTask.xml │ │ │ ├── defaultEndpointConfig │ │ │ │ ├── defaultEP_Test.xml │ │ │ │ └── synapse.xml │ │ │ ├── defaultconfig │ │ │ │ └── default-synapse.xml │ │ │ ├── enrich │ │ │ │ ├── add_source_as_sibling_in_body.xml │ │ │ │ ├── replace_envelop.xml │ │ │ │ └── replace_part_of_msg_by_body.xml │ │ │ ├── enrich_mediator │ │ │ │ ├── add_child_using_xpath_synapse.xml │ │ │ │ ├── copy_xpathOf_single_node.xml │ │ │ │ ├── replaceBodyOfMessageSynapse.xml │ │ │ │ ├── replaceBodySynapse.xml │ │ │ │ ├── replace_body_using_source_type_body.xml │ │ │ │ └── synapse.xml │ │ │ ├── esbjava2283 │ │ │ │ └── synapse.xml │ │ │ ├── esbjava3022 │ │ │ │ └── synapse.xml │ │ │ ├── filters │ │ │ │ ├── conditional_router │ │ │ │ │ ├── dynamic_seq1.xml │ │ │ │ │ ├── synapse1.xml │ │ │ │ │ ├── synapse2.xml │ │ │ │ │ ├── synapse3.xml │ │ │ │ │ ├── synapse4.xml │ │ │ │ │ ├── synapse5.xml │ │ │ │ │ └── synapse6.xml │ │ │ │ ├── filter │ │ │ │ │ ├── synapse1.xml │ │ │ │ │ ├── synapse2.xml │ │ │ │ │ └── synapse3.xml │ │ │ │ ├── in │ │ │ │ │ └── synapse.xml │ │ │ │ ├── out │ │ │ │ │ ├── multiple_out_mediators_config.xml │ │ │ │ │ └── out_without_children.xml │ │ │ │ ├── switchMediator │ │ │ │ │ ├── ESBJAVA_1857_switch_case_synapse.xml │ │ │ │ │ ├── Invalid_xpath.xml │ │ │ │ │ ├── SOAP11_SOAP12_XPath.xml │ │ │ │ │ ├── SOAP11_SOAP12_XPath_nagative_case.xml │ │ │ │ │ ├── basic_and_without_default_case_synapse.xml │ │ │ │ │ ├── further_processing_of_switch_after_match.xml │ │ │ │ │ ├── invalid_prefix.xml │ │ │ │ │ ├── onerror_sequence_within_switch_config.xml │ │ │ │ │ ├── switch_inside_switch_config.xml │ │ │ │ │ └── switching_based_on_address_synapse.xml │ │ │ │ └── validate │ │ │ │ │ ├── schema1.xml │ │ │ │ │ ├── schema1a.xml │ │ │ │ │ ├── synapse1.xml │ │ │ │ │ └── validate_synapse.xml │ │ │ ├── groovy │ │ │ │ ├── axis2.xml │ │ │ │ ├── synapse_with_groovy.xml │ │ │ │ └── synapse_without_groovy.xml │ │ │ ├── healthcarescenario │ │ │ │ ├── GeoService.wsdl │ │ │ │ ├── HCCService.wsdl │ │ │ │ ├── HCFacilityLocatorService.wsdl │ │ │ │ ├── HCInformationService.wsdl │ │ │ │ └── synapse.xml │ │ │ ├── highTimeoutValueConfig │ │ │ │ └── synapse.xml │ │ │ ├── http_transport │ │ │ │ ├── HTTPDeleteSupportTestSynapseConfig.xml │ │ │ │ └── HTTPPatchMethodSupportTestSynapse.xml │ │ │ ├── log_mediator │ │ │ │ └── synapse.xml │ │ │ ├── messageStore │ │ │ │ ├── axis2.xml │ │ │ │ ├── sample_700.xml │ │ │ │ ├── scriptMediator │ │ │ │ │ └── axis2.xml │ │ │ │ ├── special_character.xml │ │ │ │ └── test.xml │ │ │ ├── messagewithoutcontent │ │ │ │ ├── request.xml │ │ │ │ ├── synapse.xml │ │ │ │ └── xmlrequest.xml │ │ │ ├── nhttp_transport │ │ │ │ ├── content_type_charset_synapse.xml │ │ │ │ ├── default_content_type_axis2.xml │ │ │ │ ├── default_content_type_synapse.xml │ │ │ │ ├── nhttp.properties │ │ │ │ ├── nhttp_test_synapse.xml │ │ │ │ └── response_nhttp_synapse.xml │ │ │ ├── nonBlockingHTTP │ │ │ │ └── axis2.xml │ │ │ ├── onCompleteSequenceConfig │ │ │ │ ├── sequences │ │ │ │ │ └── dynamic_seq1.xml │ │ │ │ └── synapse.xml │ │ │ ├── onCompleteSequenceFromGreg │ │ │ │ ├── sequences │ │ │ │ │ └── dynamic_seq1.xml │ │ │ │ └── synapse.xml │ │ │ ├── patchAutomation │ │ │ │ ├── failover_endpoint_for_single_leaf_endpoint_synapse.xml │ │ │ │ ├── https_request_via_http_proxy_synapse.xml │ │ │ │ ├── non_ascii_value_properties_synapse_.xml │ │ │ │ └── url_encoded_form_post_proxy.xml │ │ │ ├── patch_automation │ │ │ │ ├── CARBON11016_synapse.xml │ │ │ │ ├── CloneArtifactTestCase.xml │ │ │ │ ├── failover_endpoint_for_single_leaf_endpoint_synapse.xml │ │ │ │ └── load_balance_failover_synapse.xml │ │ │ ├── payloadmediatype │ │ │ │ ├── media_type_xml_json_default.xml │ │ │ │ ├── no_arguments.xml │ │ │ │ ├── value_argument.xml │ │ │ │ └── valueandexpression_arguments.xml │ │ │ ├── processor │ │ │ │ └── forwarding │ │ │ │ │ ├── InMemoryStoreSynapse1.xml │ │ │ │ │ ├── Retry_On_SOAPFault_In_Out.xml │ │ │ │ │ └── Retry_On_SOAPFault_true_In_Out.xml │ │ │ ├── propertyMediatorConfig │ │ │ │ └── synapse.xml │ │ │ ├── propertyWithinIterateConfig │ │ │ │ └── synapse.xml │ │ │ ├── proxyadmin │ │ │ │ └── testconfig.xml │ │ │ ├── rest │ │ │ │ ├── axis2-service-synapse.xml │ │ │ │ ├── customer-service-proxy.xml │ │ │ │ ├── rest-client-and-rest-service.xml │ │ │ │ ├── student-service-synapse.xml │ │ │ │ ├── synapse.xml │ │ │ │ └── uri-template-synapse.xml │ │ │ ├── script_mediator │ │ │ │ ├── groovy_script_with_setPayloadJson.xml │ │ │ │ ├── groovy_script_with_the_mediator.xml │ │ │ │ ├── jsfromEntry_config.xml │ │ │ │ ├── retrieve_script_from_gov_reg_mediation.xml │ │ │ │ ├── synapse.xml │ │ │ │ ├── synapse3.xml │ │ │ │ └── synapse_generate_fault.xml │ │ │ ├── sendMediatorConfig │ │ │ │ ├── synapse.xml │ │ │ │ ├── test_sequences_config │ │ │ │ │ └── receivingSequence_Conf.xml │ │ │ │ ├── test_sequences_gov │ │ │ │ │ └── receivingSequence_Gov.xml │ │ │ │ └── test_sequences_local │ │ │ │ │ └── receivingSequence_Local.xml │ │ │ ├── send_mediator │ │ │ │ ├── endpoints │ │ │ │ │ └── registry_endpoint.xml │ │ │ │ └── synapse_config.xml │ │ │ ├── servletTransport │ │ │ │ ├── axis2.xml │ │ │ │ └── soap_2_pox.xml │ │ │ ├── smooks │ │ │ │ ├── axis2.xml │ │ │ │ ├── large_csv_smooks_test.xml │ │ │ │ ├── person.csv │ │ │ │ ├── smooks_config.xml │ │ │ │ └── smooks_synapse.xml │ │ │ ├── throttle │ │ │ │ ├── ConcurrencyAndRequestBasedThrottlingConcurrency.xml │ │ │ │ ├── ConcurrencyAndRequestBasedThrottlingRequest.xml │ │ │ │ ├── MaximumConcurrentAccess.xml │ │ │ │ ├── concurrencyTest.xml │ │ │ │ ├── concurrencyTestMaxConcurrentAccessOne.xml │ │ │ │ ├── concurrentAccessLargeRequestCountSmallTest.xml │ │ │ │ ├── invalidThrottlingPolicyTest.xml │ │ │ │ └── specifyThrottlingPolicyAsARegistryKey.xml │ │ │ ├── validatemediator │ │ │ │ ├── dynamickey.xml │ │ │ │ ├── invalid_dynamic_key.xml │ │ │ │ ├── staticKey.xml │ │ │ │ ├── validate_secure_false.xml │ │ │ │ ├── validate_secure_true.xml │ │ │ │ ├── validate_with_invalid_Xpath.xml │ │ │ │ ├── validate_with_proxy.xml │ │ │ │ └── validate_with_resources.xml │ │ │ ├── validatemediator2 │ │ │ │ └── synapse.xml │ │ │ ├── vfsTransport │ │ │ │ ├── edi.txt │ │ │ │ ├── fail.xml │ │ │ │ ├── out │ │ │ │ │ └── test.txt │ │ │ │ ├── smooks-config.xml │ │ │ │ ├── synapse_config_658.xml │ │ │ │ ├── synapse_sample_658_input.xml │ │ │ │ ├── test.txt │ │ │ │ ├── test.xml │ │ │ │ ├── vfs_test_smook_config_at_registry.xml │ │ │ │ ├── vfs_test_synapse.xml │ │ │ │ └── vfs_xml_to_xml.xml │ │ │ └── wsdlEndpointConfig │ │ │ │ ├── synapse.xml │ │ │ │ └── wsdlEP_Test.xml │ │ │ ├── tcp │ │ │ └── transport │ │ │ │ └── client_axis2.xml │ │ │ └── websocket │ │ │ └── synapse-websocket-inbound.xml │ │ ├── automation.xml │ │ ├── automationXMLSchema.xsd │ │ ├── bin │ │ └── integrator.sh │ │ ├── client │ │ └── modules │ │ │ ├── addressing-1.6.1-wso2v35.mar │ │ │ └── rampart-1.6.1-wso2v34.mar │ │ ├── log4j.properties │ │ ├── security │ │ ├── keystore │ │ │ ├── client.jks │ │ │ └── service.jks │ │ └── policies │ │ │ ├── custom │ │ │ ├── scenario1-policy.xml │ │ │ ├── scenario10-policy.xml │ │ │ ├── scenario11-policy.xml │ │ │ ├── scenario12-policy.xml │ │ │ ├── scenario13-policy.xml │ │ │ ├── scenario14-policy.xml │ │ │ ├── scenario15-policy.xml │ │ │ ├── scenario16-policy.xml │ │ │ ├── scenario17-policy.xml │ │ │ ├── scenario2-policy.xml │ │ │ ├── scenario3-policy.xml │ │ │ ├── scenario4-policy.xml │ │ │ ├── scenario5-policy.xml │ │ │ ├── scenario6-policy.xml │ │ │ ├── scenario7-policy.xml │ │ │ ├── scenario8-policy.xml │ │ │ └── scenario9-policy.xml │ │ │ ├── scenario-config.xml │ │ │ ├── scenario1-policy.xml │ │ │ ├── scenario10-policy.xml │ │ │ ├── scenario11-policy.xml │ │ │ ├── scenario12-policy.xml │ │ │ ├── scenario13-policy.xml │ │ │ ├── scenario14-policy.xml │ │ │ ├── scenario15-policy.xml │ │ │ ├── scenario16-policy.xml │ │ │ ├── scenario17-policy.xml │ │ │ ├── scenario2-policy.xml │ │ │ ├── scenario27-policy.xml │ │ │ ├── scenario3-policy.xml │ │ │ ├── scenario4-policy.xml │ │ │ ├── scenario5-policy.xml │ │ │ ├── scenario6-policy.xml │ │ │ ├── scenario7-policy.xml │ │ │ ├── scenario8-policy.xml │ │ │ └── scenario9-policy.xml │ │ ├── testng.xml │ │ └── tomcat │ │ └── catalina-server.xml ├── pom.xml ├── samples │ ├── axis2Client │ │ ├── build.xml │ │ ├── client_repo │ │ │ ├── conf │ │ │ │ └── axis2.xml │ │ │ └── modules │ │ │ │ ├── addressing.mar │ │ │ │ ├── rampart.mar │ │ │ │ └── sandesha2.mar │ │ ├── resources │ │ │ └── bpel │ │ │ │ ├── ClaimsApprovalProcess.properties │ │ │ │ ├── CreditRating.properties │ │ │ │ ├── CustomerInfo.properties │ │ │ │ └── HelloWorld2.properties │ │ └── src │ │ │ └── samples │ │ │ ├── common │ │ │ └── StockQuoteHandler.java │ │ │ ├── mediators │ │ │ ├── BinaryExtractMediator.java │ │ │ ├── DiscountQuoteMediator.java │ │ │ └── extensions │ │ │ │ └── SpringCustomLogger.java │ │ │ ├── userguide │ │ │ ├── AMQPConsumer.java │ │ │ ├── EventSender.java │ │ │ ├── EventSubscriber.java │ │ │ ├── FIXClient.java │ │ │ ├── GenericJMSClient.java │ │ │ ├── JSONClient.java │ │ │ ├── LoadbalanceFailoverClient.java │ │ │ ├── MDDConsumer.java │ │ │ ├── MDDProducer.java │ │ │ ├── MTOMSwAClient.java │ │ │ ├── PWCallback.java │ │ │ ├── ServiceInvoker.java │ │ │ ├── SimpleLoggingObserver.java │ │ │ ├── StockQuoteCallback.java │ │ │ ├── StockQuoteClient.java │ │ │ └── ThreadedClient.java │ │ │ └── util │ │ │ ├── Bootstrap.java │ │ │ ├── SampleAxis2Server.java │ │ │ └── SampleAxis2ServerManager.java │ ├── axis2Server │ │ ├── axis2server.bat │ │ ├── axis2server.sh │ │ ├── repository │ │ │ ├── conf │ │ │ │ └── axis2.xml │ │ │ ├── modules │ │ │ │ ├── addressing.mar │ │ │ │ ├── rampart.mar │ │ │ │ └── sandesha2.mar │ │ │ └── services │ │ │ │ └── CreditRatingService-3.6.0.aar │ │ └── src │ │ │ ├── FastStockQuoteService │ │ │ ├── build.xml │ │ │ ├── conf │ │ │ │ └── services.xml │ │ │ └── src │ │ │ │ └── samples │ │ │ │ └── services │ │ │ │ ├── FastStockQuoteService.java │ │ │ │ ├── GetQuote.java │ │ │ │ ├── GetQuoteResponse.java │ │ │ │ └── PlaceOrder.java │ │ │ ├── HelloWorld │ │ │ ├── build.xml │ │ │ ├── conf │ │ │ │ └── services.xml │ │ │ └── src │ │ │ │ └── org │ │ │ │ └── wso2 │ │ │ │ └── appserver │ │ │ │ └── sample │ │ │ │ └── helloworld │ │ │ │ └── HelloService.java │ │ │ ├── LoadbalanceFailoverService │ │ │ ├── build.xml │ │ │ ├── conf │ │ │ │ ├── service1 │ │ │ │ │ └── services.xml │ │ │ │ └── service2 │ │ │ │ │ └── services.xml │ │ │ └── src │ │ │ │ └── samples │ │ │ │ └── services │ │ │ │ ├── LBService1.java │ │ │ │ └── LBService2.java │ │ │ ├── MTOMSwASampleService │ │ │ ├── build.xml │ │ │ ├── conf │ │ │ │ └── services.xml │ │ │ └── src │ │ │ │ └── samples │ │ │ │ └── services │ │ │ │ └── MTOMSwASampleService.java │ │ │ ├── ReliableStockQuoteService │ │ │ ├── build.xml │ │ │ ├── conf │ │ │ │ └── services.xml │ │ │ └── src │ │ │ │ └── samples │ │ │ │ └── services │ │ │ │ ├── GetQuote.java │ │ │ │ ├── GetQuoteResponse.java │ │ │ │ ├── PlaceOrder.java │ │ │ │ └── ReliableStockQuoteService.java │ │ │ ├── SecureStockQuoteService │ │ │ ├── build.xml │ │ │ ├── conf │ │ │ │ └── services.xml │ │ │ ├── src │ │ │ │ └── samples │ │ │ │ │ └── services │ │ │ │ │ ├── GetFullQuote.java │ │ │ │ │ ├── GetFullQuoteResponse.java │ │ │ │ │ ├── GetMarketActivity.java │ │ │ │ │ ├── GetMarketActivityResponse.java │ │ │ │ │ ├── GetQuote.java │ │ │ │ │ ├── GetQuoteResponse.java │ │ │ │ │ ├── PlaceOrder.java │ │ │ │ │ ├── SimpleStockQuoteService.java │ │ │ │ │ └── TradingDay.java │ │ │ └── store.jks │ │ │ └── SimpleStockQuoteService │ │ │ ├── build.xml │ │ │ ├── conf │ │ │ └── services.xml │ │ │ └── src │ │ │ └── samples │ │ │ └── services │ │ │ ├── GetFullQuote.java │ │ │ ├── GetFullQuoteResponse.java │ │ │ ├── GetMarketActivity.java │ │ │ ├── GetMarketActivityResponse.java │ │ │ ├── GetQuote.java │ │ │ ├── GetQuoteResponse.java │ │ │ ├── PlaceOrder.java │ │ │ ├── SimpleStockQuoteService.java │ │ │ └── TradingDay.java │ ├── data-services │ │ ├── README │ │ ├── build.xml │ │ ├── clients │ │ │ ├── README │ │ │ ├── build.xml │ │ │ ├── log4j.properties │ │ │ ├── src │ │ │ │ └── org │ │ │ │ │ └── wso2 │ │ │ │ │ └── carbon │ │ │ │ │ └── dataservices │ │ │ │ │ └── samples │ │ │ │ │ ├── Base64.java │ │ │ │ │ ├── BaseSample.java │ │ │ │ │ ├── BatchRequestSample.java │ │ │ │ │ ├── CSVSample.java │ │ │ │ │ ├── ExcelSample.java │ │ │ │ │ ├── FileServiceApp.java │ │ │ │ │ ├── GSpreadSample.java │ │ │ │ │ ├── RDBMSSample.java │ │ │ │ │ └── SecureSample.java │ │ │ └── wsdl │ │ │ │ ├── BatchRequestSample.wsdl │ │ │ │ ├── CSVSampleService.wsdl │ │ │ │ ├── DTPSampleService.wsdl │ │ │ │ ├── EventingSample.wsdl │ │ │ │ ├── ExcelSampleService.wsdl │ │ │ │ ├── FaultDBService.wsdl │ │ │ │ ├── FileService.wsdl │ │ │ │ ├── GSpreadSample.wsdl │ │ │ │ ├── NestedQuerySample.wsdl │ │ │ │ ├── RDBMSSample.wsdl │ │ │ │ ├── RDFSampleService.wsdl │ │ │ │ └── SecureDataService.wsdl │ │ ├── dbs │ │ │ ├── cassandra │ │ │ │ └── CassandraSample.dbs │ │ │ ├── csv │ │ │ │ └── CSVSampleService.dbs │ │ │ ├── excel │ │ │ │ ├── ExcelSQLDriverSampleService.dbs │ │ │ │ └── ExcelSampleService.dbs │ │ │ ├── gspread │ │ │ │ ├── GSpreadSQLDriverSample.dbs │ │ │ │ └── GSpreadSample.dbs │ │ │ ├── inmemory │ │ │ │ └── InMemoryDSSample.dbs │ │ │ ├── mongoDB │ │ │ │ └── MongoDBSampleService.dbs │ │ │ ├── odata │ │ │ │ └── ODataSampleService.dbs │ │ │ ├── rdbms │ │ │ │ ├── BatchRequestSample.dbs │ │ │ │ ├── DOCTORS_DataService.dbs │ │ │ │ ├── DTPSampleService.dbs │ │ │ │ ├── EventingSample.dbs │ │ │ │ ├── FileService.dbs │ │ │ │ ├── JSONSample.dbs │ │ │ │ ├── NestedQuerySample.dbs │ │ │ │ ├── RDBMSSample.dbs │ │ │ │ ├── RDBMSSample_services.xml │ │ │ │ ├── ResourcesSample.dbs │ │ │ │ ├── ReturnUpdatedRowCountSample.dbs │ │ │ │ └── SecureDataService.dbs │ │ │ ├── rdf │ │ │ │ ├── RDFExposeAsRDFSample.dbs │ │ │ │ └── RDFSampleService.dbs │ │ │ └── web │ │ │ │ └── WebResourceSample.dbs │ │ ├── resources │ │ │ ├── Movies.rdf │ │ │ ├── Products.csv │ │ │ ├── Products.xls │ │ │ ├── Products_Excel.xls │ │ │ ├── sample_axis2_client.xml │ │ │ └── web_resource_config.xml │ │ ├── security │ │ │ └── secure_sample_policy.xml │ │ ├── shopping_cart │ │ │ ├── dbs │ │ │ │ └── ShoppingCartDS.dbs │ │ │ └── sql │ │ │ │ ├── h2 │ │ │ │ ├── Category.sql │ │ │ │ ├── CreateTables.sql │ │ │ │ └── Product.sql │ │ │ │ └── mysql │ │ │ │ ├── Category.sql │ │ │ │ ├── CreateDB.sql │ │ │ │ ├── CreateTables.sql │ │ │ │ ├── Init_Sample_Query.sql │ │ │ │ └── Product.sql │ │ ├── sql │ │ │ └── h2 │ │ │ │ ├── CreateTables.sql │ │ │ │ ├── CreateTables2.sql │ │ │ │ ├── Customers.sql │ │ │ │ ├── Doctors.sql │ │ │ │ ├── Employees.sql │ │ │ │ ├── Offices.sql │ │ │ │ ├── OrderDetails.sql │ │ │ │ ├── Orders.sql │ │ │ │ ├── Payments.sql │ │ │ │ ├── ProductLines.sql │ │ │ │ └── Products.sql │ │ ├── wsdl │ │ │ └── ContractFirstSample.wsdl │ │ └── xslt │ │ │ └── transform.xslt │ ├── product │ │ ├── pom.xml │ │ ├── services │ │ │ ├── FastStockQuoteService │ │ │ │ ├── build.xml │ │ │ │ ├── conf │ │ │ │ │ └── services.xml │ │ │ │ └── src │ │ │ │ │ └── samples │ │ │ │ │ └── services │ │ │ │ │ ├── FastStockQuoteService.java │ │ │ │ │ ├── GetQuote.java │ │ │ │ │ ├── GetQuoteResponse.java │ │ │ │ │ └── PlaceOrder.java │ │ │ ├── HelloWorld │ │ │ │ ├── build.xml │ │ │ │ ├── conf │ │ │ │ │ └── services.xml │ │ │ │ └── src │ │ │ │ │ └── org │ │ │ │ │ └── wso2 │ │ │ │ │ └── appserver │ │ │ │ │ └── sample │ │ │ │ │ └── helloworld │ │ │ │ │ └── HelloService.java │ │ │ ├── LoadbalanceFailoverService │ │ │ │ ├── build.xml │ │ │ │ ├── conf │ │ │ │ │ ├── service1 │ │ │ │ │ │ └── services.xml │ │ │ │ │ └── service2 │ │ │ │ │ │ └── services.xml │ │ │ │ └── src │ │ │ │ │ └── samples │ │ │ │ │ └── services │ │ │ │ │ ├── LBService1.java │ │ │ │ │ └── LBService2.java │ │ │ ├── MTOMSwASampleService │ │ │ │ ├── build.xml │ │ │ │ ├── conf │ │ │ │ │ └── services.xml │ │ │ │ └── src │ │ │ │ │ └── samples │ │ │ │ │ └── services │ │ │ │ │ └── MTOMSwASampleService.java │ │ │ ├── ReliableStockQuoteService │ │ │ │ ├── build.xml │ │ │ │ ├── conf │ │ │ │ │ └── services.xml │ │ │ │ └── src │ │ │ │ │ └── samples │ │ │ │ │ └── services │ │ │ │ │ ├── GetQuote.java │ │ │ │ │ ├── GetQuoteResponse.java │ │ │ │ │ ├── PlaceOrder.java │ │ │ │ │ └── ReliableStockQuoteService.java │ │ │ ├── SecureStockQuoteService │ │ │ │ ├── build.xml │ │ │ │ ├── conf │ │ │ │ │ └── services.xml │ │ │ │ ├── src │ │ │ │ │ └── samples │ │ │ │ │ │ └── services │ │ │ │ │ │ ├── GetFullQuote.java │ │ │ │ │ │ ├── GetFullQuoteResponse.java │ │ │ │ │ │ ├── GetMarketActivity.java │ │ │ │ │ │ ├── GetMarketActivityResponse.java │ │ │ │ │ │ ├── GetQuote.java │ │ │ │ │ │ ├── GetQuoteResponse.java │ │ │ │ │ │ ├── PlaceOrder.java │ │ │ │ │ │ ├── SimpleStockQuoteService.java │ │ │ │ │ │ └── TradingDay.java │ │ │ │ └── store.jks │ │ │ └── SimpleStockQuoteService │ │ │ │ ├── build.xml │ │ │ │ ├── conf │ │ │ │ └── services.xml │ │ │ │ └── src │ │ │ │ └── samples │ │ │ │ └── services │ │ │ │ ├── GetFullQuote.java │ │ │ │ ├── GetFullQuoteResponse.java │ │ │ │ ├── GetMarketActivity.java │ │ │ │ ├── GetMarketActivityResponse.java │ │ │ │ ├── GetQuote.java │ │ │ │ ├── GetQuoteResponse.java │ │ │ │ ├── PlaceOrder.java │ │ │ │ ├── SimpleStockQuoteService.java │ │ │ │ └── TradingDay.java │ │ └── src │ │ │ └── main │ │ │ ├── conf │ │ │ ├── client │ │ │ │ ├── README.txt │ │ │ │ └── axis2.xml │ │ │ ├── server │ │ │ │ ├── README.txt │ │ │ │ ├── axis2.xml │ │ │ │ └── sample-server-wrapper.conf │ │ │ └── synapse │ │ │ │ ├── README.txt │ │ │ │ ├── registry.xml │ │ │ │ ├── resources │ │ │ │ ├── endpoint │ │ │ │ │ └── dynamic_endpt_1.xml │ │ │ │ ├── fix │ │ │ │ │ ├── FIX40-synapse.xml │ │ │ │ │ ├── banzai.cfg │ │ │ │ │ ├── conn.properties │ │ │ │ │ ├── direct.properties │ │ │ │ │ ├── executor.cfg │ │ │ │ │ ├── fix-synapse-m40.cfg │ │ │ │ │ ├── fix-synapse.cfg │ │ │ │ │ ├── synapse-sender-m.cfg │ │ │ │ │ └── synapse-sender.cfg │ │ │ │ ├── misc │ │ │ │ │ ├── commission.xml │ │ │ │ │ └── synapse.xml │ │ │ │ ├── mtom │ │ │ │ │ └── asf-logo.gif │ │ │ │ ├── policy │ │ │ │ │ ├── client_policy_3.xml │ │ │ │ │ ├── policy_1.xml │ │ │ │ │ ├── policy_3.xml │ │ │ │ │ ├── sample_policy_1.xml │ │ │ │ │ ├── sample_rm_policy_1.xml │ │ │ │ │ └── throttle_policy.xml │ │ │ │ ├── proxy │ │ │ │ │ ├── sample_proxy_1.wsdl │ │ │ │ │ └── sample_proxy_2.wsdl │ │ │ │ ├── rule │ │ │ │ │ ├── advanced_rule_base.xml │ │ │ │ │ ├── always_ibm.xml │ │ │ │ │ ├── commission_rule.xml │ │ │ │ │ ├── simple_rule_base.drl │ │ │ │ │ ├── simple_rule_base.xml │ │ │ │ │ ├── tranform_back_rule.drl │ │ │ │ │ └── tranform_forward_rule.drl │ │ │ │ ├── script │ │ │ │ │ ├── stockquoteTransform.js │ │ │ │ │ ├── stockquoteTransform.rb │ │ │ │ │ └── stockquoteTransformNashorn.js │ │ │ │ ├── security │ │ │ │ │ └── store.jks │ │ │ │ ├── sequence │ │ │ │ │ └── dynamic_seq_1.xml │ │ │ │ ├── smooks │ │ │ │ │ ├── CreateOrdersDB.sql │ │ │ │ │ ├── PlaceStockOrder.wsdl │ │ │ │ │ ├── edi-mapping.xml │ │ │ │ │ ├── edi.txt │ │ │ │ │ ├── input-message-658.xml │ │ │ │ │ ├── input-message-659.txt │ │ │ │ │ ├── input-message-660.xml │ │ │ │ │ ├── input-message-661.xml │ │ │ │ │ ├── mapping.xml │ │ │ │ │ ├── smooks-config-658.xml │ │ │ │ │ ├── smooks-config-659.xml │ │ │ │ │ ├── smooks-config-660.xml │ │ │ │ │ ├── smooks-config-661.xml │ │ │ │ │ ├── smooks-config.xml │ │ │ │ │ └── transform.xslt │ │ │ │ ├── synapse.xml │ │ │ │ ├── transform │ │ │ │ │ ├── transform.xslt │ │ │ │ │ ├── transform_back.xslt │ │ │ │ │ ├── transform_eventing.xslt │ │ │ │ │ ├── transform_fix_to_http.xslt │ │ │ │ │ └── transform_unittest.xslt │ │ │ │ ├── validate │ │ │ │ │ ├── validate.xsd │ │ │ │ │ └── validate2.xsd │ │ │ │ ├── vfs │ │ │ │ │ └── test.xml │ │ │ │ └── xquery │ │ │ │ │ ├── xquery_commisson.xq │ │ │ │ │ ├── xquery_req.xq │ │ │ │ │ └── xquery_res.xq │ │ │ │ ├── synapse.xml │ │ │ │ ├── synapse_sample_0.xml │ │ │ │ ├── synapse_sample_1.xml │ │ │ │ ├── synapse_sample_10.xml │ │ │ │ ├── synapse_sample_100.xml │ │ │ │ ├── synapse_sample_11.xml │ │ │ │ ├── synapse_sample_12.xml │ │ │ │ ├── synapse_sample_14.xml │ │ │ │ ├── synapse_sample_15.xml │ │ │ │ ├── synapse_sample_150.xml │ │ │ │ ├── synapse_sample_151.xml │ │ │ │ ├── synapse_sample_152.xml │ │ │ │ ├── synapse_sample_153.xml │ │ │ │ ├── synapse_sample_154.xml │ │ │ │ ├── synapse_sample_155.xml │ │ │ │ ├── synapse_sample_156.xml │ │ │ │ ├── synapse_sample_16.xml │ │ │ │ ├── synapse_sample_17.xml │ │ │ │ ├── synapse_sample_18.xml │ │ │ │ ├── synapse_sample_2.xml │ │ │ │ ├── synapse_sample_200.xml │ │ │ │ ├── synapse_sample_250.xml │ │ │ │ ├── synapse_sample_251.xml │ │ │ │ ├── synapse_sample_252.xml │ │ │ │ ├── synapse_sample_253.xml │ │ │ │ ├── synapse_sample_254.xml │ │ │ │ ├── synapse_sample_255.xml │ │ │ │ ├── synapse_sample_256.xml │ │ │ │ ├── synapse_sample_257.xml │ │ │ │ ├── synapse_sample_258.xml │ │ │ │ ├── synapse_sample_259.xml │ │ │ │ ├── synapse_sample_260.xml │ │ │ │ ├── synapse_sample_261.xml │ │ │ │ ├── synapse_sample_262.xml │ │ │ │ ├── synapse_sample_263.xml │ │ │ │ ├── synapse_sample_264.xml │ │ │ │ ├── synapse_sample_265.xml │ │ │ │ ├── synapse_sample_266.xml │ │ │ │ ├── synapse_sample_267.xml │ │ │ │ ├── synapse_sample_268.xml │ │ │ │ ├── synapse_sample_270.xml │ │ │ │ ├── synapse_sample_272.xml │ │ │ │ ├── synapse_sample_3.xml │ │ │ │ ├── synapse_sample_300.xml │ │ │ │ ├── synapse_sample_350.xml │ │ │ │ ├── synapse_sample_351.xml │ │ │ │ ├── synapse_sample_352.xml │ │ │ │ ├── synapse_sample_353.xml │ │ │ │ ├── synapse_sample_354.xml │ │ │ │ ├── synapse_sample_360.xml │ │ │ │ ├── synapse_sample_361.xml │ │ │ │ ├── synapse_sample_362.xml │ │ │ │ ├── synapse_sample_363.xml │ │ │ │ ├── synapse_sample_364.xml │ │ │ │ ├── synapse_sample_370.xml │ │ │ │ ├── synapse_sample_371.xml │ │ │ │ ├── synapse_sample_372.xml │ │ │ │ ├── synapse_sample_380.xml │ │ │ │ ├── synapse_sample_381.xml │ │ │ │ ├── synapse_sample_390.xml │ │ │ │ ├── synapse_sample_391.xml │ │ │ │ ├── synapse_sample_4.xml │ │ │ │ ├── synapse_sample_400.xml │ │ │ │ ├── synapse_sample_420.xml │ │ │ │ ├── synapse_sample_430.xml │ │ │ │ ├── synapse_sample_440.xml │ │ │ │ ├── synapse_sample_441.xml │ │ │ │ ├── synapse_sample_450.xml │ │ │ │ ├── synapse_sample_451.xml │ │ │ │ ├── synapse_sample_452.xml │ │ │ │ ├── synapse_sample_5.xml │ │ │ │ ├── synapse_sample_50.xml │ │ │ │ ├── synapse_sample_500.xml │ │ │ │ ├── synapse_sample_51.xml │ │ │ │ ├── synapse_sample_52.xml │ │ │ │ ├── synapse_sample_53.xml │ │ │ │ ├── synapse_sample_54.xml │ │ │ │ ├── synapse_sample_55.xml │ │ │ │ ├── synapse_sample_550.xml │ │ │ │ ├── synapse_sample_551.xml │ │ │ │ ├── synapse_sample_56.xml │ │ │ │ ├── synapse_sample_57.xml │ │ │ │ ├── synapse_sample_58.xml │ │ │ │ ├── synapse_sample_59.xml │ │ │ │ ├── synapse_sample_6.xml │ │ │ │ ├── synapse_sample_60.xml │ │ │ │ ├── synapse_sample_600.xml │ │ │ │ ├── synapse_sample_601.xml │ │ │ │ ├── synapse_sample_61.xml │ │ │ │ ├── synapse_sample_62.xml │ │ │ │ ├── synapse_sample_650.xml │ │ │ │ ├── endpoints │ │ │ │ │ └── foo.xml │ │ │ │ ├── events │ │ │ │ │ └── event1.xml │ │ │ │ ├── local-entries │ │ │ │ │ └── bar.xml │ │ │ │ ├── proxy-services │ │ │ │ │ ├── proxy1.xml │ │ │ │ │ ├── proxy2.xml │ │ │ │ │ └── proxy3.xml │ │ │ │ ├── registry.xml │ │ │ │ ├── sequences │ │ │ │ │ ├── custom-logger.xml │ │ │ │ │ ├── fault.xml │ │ │ │ │ └── main.xml │ │ │ │ ├── synapse.xml │ │ │ │ └── tasks │ │ │ │ │ └── task1.xml │ │ │ │ ├── synapse_sample_654.xml │ │ │ │ ├── synapse_sample_655.xml │ │ │ │ ├── synapse_sample_656.xml │ │ │ │ ├── synapse_sample_657.xml │ │ │ │ ├── synapse_sample_658.xml │ │ │ │ ├── synapse_sample_659.xml │ │ │ │ ├── synapse_sample_660.xml │ │ │ │ ├── synapse_sample_661.xml │ │ │ │ ├── synapse_sample_662.xml │ │ │ │ ├── synapse_sample_663.xml │ │ │ │ ├── synapse_sample_7.xml │ │ │ │ ├── synapse_sample_700.xml │ │ │ │ ├── synapse_sample_701.xml │ │ │ │ ├── synapse_sample_702.xml │ │ │ │ ├── synapse_sample_703.xml │ │ │ │ ├── synapse_sample_704.xml │ │ │ │ ├── synapse_sample_705.xml │ │ │ │ ├── synapse_sample_750.xml │ │ │ │ ├── synapse_sample_751.xml │ │ │ │ ├── synapse_sample_752.xml │ │ │ │ ├── synapse_sample_8.xml │ │ │ │ ├── synapse_sample_800.xml │ │ │ │ ├── synapse_sample_9.xml │ │ │ │ ├── synapse_sample_900.xml │ │ │ │ ├── synapse_sample_901.xml │ │ │ │ ├── synapse_sample_902.xml │ │ │ │ ├── synapse_sample_903.xml │ │ │ │ ├── synapse_sample_904.xml │ │ │ │ ├── synapse_sample_905.xml │ │ │ │ ├── synapse_sample_906.xml │ │ │ │ ├── synapse_sample_907.xml │ │ │ │ └── synapse_sample_908.xml │ │ │ ├── java │ │ │ └── samples │ │ │ │ ├── common │ │ │ │ └── StockQuoteHandler.java │ │ │ │ ├── mediators │ │ │ │ ├── BinaryExtractMediator.java │ │ │ │ ├── DiscountQuoteMediator.java │ │ │ │ └── extensions │ │ │ │ │ └── SpringCustomLogger.java │ │ │ │ ├── userguide │ │ │ │ ├── AMQPConsumer.java │ │ │ │ ├── EventSender.java │ │ │ │ ├── EventSubscriber.java │ │ │ │ ├── FIXClient.java │ │ │ │ ├── GenericJMSClient.java │ │ │ │ ├── JSONClient.java │ │ │ │ ├── LoadbalanceFailoverClient.java │ │ │ │ ├── MDDConsumer.java │ │ │ │ ├── MDDProducer.java │ │ │ │ ├── MTOMSwAClient.java │ │ │ │ ├── PWCallback.java │ │ │ │ ├── ServiceInvoker.java │ │ │ │ ├── SimpleLoggingObserver.java │ │ │ │ ├── StockQuoteCallback.java │ │ │ │ ├── StockQuoteClient.java │ │ │ │ └── ThreadedClient.java │ │ │ │ └── util │ │ │ │ ├── Bootstrap.java │ │ │ │ ├── SampleAxis2Server.java │ │ │ │ └── SampleAxis2ServerManager.java │ │ │ └── scripts │ │ │ ├── axis2server.bat │ │ │ ├── axis2server.sh │ │ │ ├── build.xml │ │ │ ├── wso2esb-samples.bat │ │ │ └── wso2esb-samples.sh │ └── service-bus │ │ ├── README.txt │ │ ├── registry.xml │ │ ├── resources │ │ ├── endpoint │ │ │ └── dynamic_endpt_1.xml │ │ ├── fix │ │ │ ├── FIX40-synapse.xml │ │ │ ├── banzai.cfg │ │ │ ├── conn.properties │ │ │ ├── direct.properties │ │ │ ├── executor.cfg │ │ │ ├── fix-synapse-m40.cfg │ │ │ ├── fix-synapse.cfg │ │ │ ├── synapse-sender-m.cfg │ │ │ └── synapse-sender.cfg │ │ ├── misc │ │ │ ├── commission.xml │ │ │ └── synapse.xml │ │ ├── mtom │ │ │ └── asf-logo.gif │ │ ├── policy │ │ │ ├── client_policy_3.xml │ │ │ ├── policy_1.xml │ │ │ ├── policy_3.xml │ │ │ ├── sample_policy_1.xml │ │ │ ├── sample_rm_policy_1.xml │ │ │ └── throttle_policy.xml │ │ ├── proxy │ │ │ ├── sample_proxy_1.wsdl │ │ │ ├── sample_proxy_2.wsdl │ │ │ └── sample_proxy_3.wsdl │ │ ├── rule │ │ │ ├── advanced_rule_base.xml │ │ │ ├── always_ibm.xml │ │ │ ├── commission_rule.xml │ │ │ ├── simple_rule_base.drl │ │ │ ├── simple_rule_base.xml │ │ │ ├── tranform_back_rule.drl │ │ │ └── tranform_forward_rule.drl │ │ ├── script │ │ │ ├── stockquoteTransform.js │ │ │ ├── stockquoteTransform.rb │ │ │ └── stockquoteTransformNashorn.js │ │ ├── security │ │ │ └── store.jks │ │ ├── sequence │ │ │ └── dynamic_seq_1.xml │ │ ├── smooks │ │ │ ├── CreateOrdersDB.sql │ │ │ ├── PlaceStockOrder.wsdl │ │ │ ├── edi-mapping.xml │ │ │ ├── edi.txt │ │ │ ├── input-message-658.xml │ │ │ ├── input-message-659.txt │ │ │ ├── input-message-660.xml │ │ │ ├── input-message-661.xml │ │ │ ├── mapping.xml │ │ │ ├── smooks-config-658.xml │ │ │ ├── smooks-config-659.xml │ │ │ ├── smooks-config-660.xml │ │ │ ├── smooks-config-661.xml │ │ │ ├── smooks-config.xml │ │ │ └── transform.xslt │ │ ├── synapse.xml │ │ ├── transform │ │ │ ├── transform.xslt │ │ │ ├── transform_back.xslt │ │ │ ├── transform_eventing.xslt │ │ │ ├── transform_fix_to_http.xslt │ │ │ └── transform_unittest.xslt │ │ ├── validate │ │ │ ├── validate.xsd │ │ │ └── validate2.xsd │ │ ├── vfs │ │ │ └── test.xml │ │ └── xquery │ │ │ ├── xquery_commisson.xq │ │ │ ├── xquery_req.xq │ │ │ └── xquery_res.xq │ │ ├── synapse.xml │ │ ├── synapse_sample_0.xml │ │ ├── synapse_sample_1.xml │ │ ├── synapse_sample_10.xml │ │ ├── synapse_sample_100.xml │ │ ├── synapse_sample_11.xml │ │ ├── synapse_sample_12.xml │ │ ├── synapse_sample_14.xml │ │ ├── synapse_sample_15.xml │ │ ├── synapse_sample_150.xml │ │ ├── synapse_sample_151.xml │ │ ├── synapse_sample_152.xml │ │ ├── synapse_sample_153.xml │ │ ├── synapse_sample_154.xml │ │ ├── synapse_sample_155.xml │ │ ├── synapse_sample_156.xml │ │ ├── synapse_sample_16.xml │ │ ├── synapse_sample_17.xml │ │ ├── synapse_sample_18.xml │ │ ├── synapse_sample_2.xml │ │ ├── synapse_sample_200.xml │ │ ├── synapse_sample_250.xml │ │ ├── synapse_sample_251.xml │ │ ├── synapse_sample_252.xml │ │ ├── synapse_sample_253.xml │ │ ├── synapse_sample_254.xml │ │ ├── synapse_sample_255.xml │ │ ├── synapse_sample_256.xml │ │ ├── synapse_sample_257.xml │ │ ├── synapse_sample_258.xml │ │ ├── synapse_sample_259.xml │ │ ├── synapse_sample_260.xml │ │ ├── synapse_sample_261.xml │ │ ├── synapse_sample_262.xml │ │ ├── synapse_sample_263.xml │ │ ├── synapse_sample_264.xml │ │ ├── synapse_sample_265.xml │ │ ├── synapse_sample_266.xml │ │ ├── synapse_sample_267.xml │ │ ├── synapse_sample_268.xml │ │ ├── synapse_sample_270.xml │ │ ├── synapse_sample_272.xml │ │ ├── synapse_sample_3.xml │ │ ├── synapse_sample_300.xml │ │ ├── synapse_sample_350.xml │ │ ├── synapse_sample_351.xml │ │ ├── synapse_sample_352.xml │ │ ├── synapse_sample_353.xml │ │ ├── synapse_sample_354.xml │ │ ├── synapse_sample_360.xml │ │ ├── synapse_sample_361.xml │ │ ├── synapse_sample_362.xml │ │ ├── synapse_sample_363.xml │ │ ├── synapse_sample_364.xml │ │ ├── synapse_sample_370.xml │ │ ├── synapse_sample_371.xml │ │ ├── synapse_sample_372.xml │ │ ├── synapse_sample_380.xml │ │ ├── synapse_sample_381.xml │ │ ├── synapse_sample_390.xml │ │ ├── synapse_sample_391.xml │ │ ├── synapse_sample_4.xml │ │ ├── synapse_sample_400.xml │ │ ├── synapse_sample_420.xml │ │ ├── synapse_sample_430.xml │ │ ├── synapse_sample_440.xml │ │ ├── synapse_sample_441.xml │ │ ├── synapse_sample_450.xml │ │ ├── synapse_sample_451.xml │ │ ├── synapse_sample_452.xml │ │ ├── synapse_sample_5.xml │ │ ├── synapse_sample_50.xml │ │ ├── synapse_sample_500.xml │ │ ├── synapse_sample_51.xml │ │ ├── synapse_sample_52.xml │ │ ├── synapse_sample_53.xml │ │ ├── synapse_sample_54.xml │ │ ├── synapse_sample_55.xml │ │ ├── synapse_sample_550.xml │ │ ├── synapse_sample_551.xml │ │ ├── synapse_sample_56.xml │ │ ├── synapse_sample_57.xml │ │ ├── synapse_sample_58.xml │ │ ├── synapse_sample_59.xml │ │ ├── synapse_sample_6.xml │ │ ├── synapse_sample_60.xml │ │ ├── synapse_sample_600.xml │ │ ├── synapse_sample_601.xml │ │ ├── synapse_sample_61.xml │ │ ├── synapse_sample_62.xml │ │ ├── synapse_sample_650.xml │ │ ├── endpoints │ │ │ └── foo.xml │ │ ├── events │ │ │ └── event1.xml │ │ ├── local-entries │ │ │ └── bar.xml │ │ ├── proxy-services │ │ │ ├── proxy1.xml │ │ │ ├── proxy2.xml │ │ │ └── proxy3.xml │ │ ├── registry.xml │ │ ├── sequences │ │ │ ├── custom-logger.xml │ │ │ ├── fault.xml │ │ │ └── main.xml │ │ ├── synapse.xml │ │ └── tasks │ │ │ └── task1.xml │ │ ├── synapse_sample_654.xml │ │ ├── synapse_sample_655.xml │ │ ├── synapse_sample_656.xml │ │ ├── synapse_sample_657.xml │ │ ├── synapse_sample_658.xml │ │ ├── synapse_sample_659.xml │ │ ├── synapse_sample_660.xml │ │ ├── synapse_sample_661.xml │ │ ├── synapse_sample_662.xml │ │ ├── synapse_sample_663.xml │ │ ├── synapse_sample_7.xml │ │ ├── synapse_sample_700.xml │ │ ├── synapse_sample_701.xml │ │ ├── synapse_sample_702.xml │ │ ├── synapse_sample_703.xml │ │ ├── synapse_sample_704.xml │ │ ├── synapse_sample_705.xml │ │ ├── synapse_sample_750.xml │ │ ├── synapse_sample_751.xml │ │ ├── synapse_sample_752.xml │ │ ├── synapse_sample_8.xml │ │ ├── synapse_sample_800.xml │ │ ├── synapse_sample_9.xml │ │ ├── synapse_sample_900.xml │ │ ├── synapse_sample_901.xml │ │ ├── synapse_sample_902.xml │ │ ├── synapse_sample_903.xml │ │ ├── synapse_sample_904.xml │ │ ├── synapse_sample_905.xml │ │ ├── synapse_sample_906.xml │ │ ├── synapse_sample_907.xml │ │ └── synapse_sample_908.xml └── tests-common │ ├── admin-clients │ ├── pom.xml │ └── src │ │ └── main │ │ ├── java │ │ └── org │ │ │ └── wso2 │ │ │ └── esb │ │ │ └── integration │ │ │ └── common │ │ │ └── clients │ │ │ ├── aar │ │ │ └── services │ │ │ │ └── AARServiceUploaderClient.java │ │ │ ├── application │ │ │ └── mgt │ │ │ │ └── SynapseApplicationAdminClient.java │ │ │ ├── client │ │ │ └── utils │ │ │ │ └── AuthenticateStub.java │ │ │ ├── connector │ │ │ ├── MediationLibraryAdminServiceClient.java │ │ │ └── MediationLibraryUploaderClient.java │ │ │ ├── endpoint │ │ │ └── EndPointAdminClient.java │ │ │ ├── executor │ │ │ └── PriorityMediationAdminClient.java │ │ │ ├── inbound │ │ │ └── endpoint │ │ │ │ └── InboundAdminClient.java │ │ │ ├── localentry │ │ │ ├── AdminServiceLocalEntryAdminService.java │ │ │ ├── LocalEntriesAdminClient.java │ │ │ └── LocalEntryAdminService.java │ │ │ ├── mediation │ │ │ ├── ConfigServiceAdminClient.java │ │ │ ├── EventBrokerAdminClient.java │ │ │ ├── MassageStoreAdminClient.java │ │ │ ├── MessageProcessorClient.java │ │ │ ├── MessageStoreAdminClient.java │ │ │ ├── SynapseArtifactUploaderClient.java │ │ │ ├── SynapseConfigAdminClient.java │ │ │ └── TopicAdminClient.java │ │ │ ├── proxy │ │ │ └── admin │ │ │ │ └── ProxyServiceAdminClient.java │ │ │ ├── registry │ │ │ ├── ActivityAdminServiceClient.java │ │ │ ├── ContentSearchAdminClient.java │ │ │ ├── HandlerManagementServiceClient.java │ │ │ ├── InfoServiceAdminClient.java │ │ │ ├── ProfilesAdminServiceClient.java │ │ │ ├── PropertiesAdminServiceClient.java │ │ │ ├── RelationAdminServiceClient.java │ │ │ ├── ReportAdminServiceClient.java │ │ │ ├── ResourceAdminServiceClient.java │ │ │ └── SearchAdminServiceClient.java │ │ │ ├── rest │ │ │ └── api │ │ │ │ └── RestApiAdminClient.java │ │ │ ├── sequences │ │ │ └── SequenceAdminServiceClient.java │ │ │ ├── service │ │ │ └── mgt │ │ │ │ └── ServiceAdminClient.java │ │ │ ├── tasks │ │ │ └── TaskAdminClient.java │ │ │ ├── template │ │ │ ├── EndpointTemplateAdminServiceClient.java │ │ │ └── SequenceTemplateAdminServiceClient.java │ │ │ └── transport │ │ │ └── mgt │ │ │ └── TransportManagementAdminServiceClient.java │ │ └── resources │ │ └── org │ │ └── wso2 │ │ └── carbon │ │ └── proxyadmin │ │ └── Resources.properties │ ├── integration-test-utils │ ├── pom.xml │ ├── resources │ │ └── axis2Server │ │ │ ├── axis2server.bat │ │ │ ├── axis2server.sh │ │ │ ├── repository │ │ │ ├── conf │ │ │ │ └── axis2.xml │ │ │ ├── modules │ │ │ │ ├── addressing.mar │ │ │ │ ├── rampart.mar │ │ │ │ └── sandesha2.mar │ │ │ └── services │ │ │ │ └── CreditRatingService-3.6.0.aar │ │ │ └── src │ │ │ ├── FastStockQuoteService │ │ │ ├── build.xml │ │ │ ├── conf │ │ │ │ └── services.xml │ │ │ └── src │ │ │ │ └── samples │ │ │ │ └── services │ │ │ │ ├── FastStockQuoteService.java │ │ │ │ ├── GetQuote.java │ │ │ │ ├── GetQuoteResponse.java │ │ │ │ └── PlaceOrder.java │ │ │ ├── HelloWorld │ │ │ ├── build.xml │ │ │ ├── conf │ │ │ │ └── services.xml │ │ │ └── src │ │ │ │ └── org │ │ │ │ └── wso2 │ │ │ │ └── appserver │ │ │ │ └── sample │ │ │ │ └── helloworld │ │ │ │ └── HelloService.java │ │ │ ├── LoadbalanceFailoverService │ │ │ ├── build.xml │ │ │ ├── conf │ │ │ │ ├── service1 │ │ │ │ │ └── services.xml │ │ │ │ └── service2 │ │ │ │ │ └── services.xml │ │ │ └── src │ │ │ │ └── samples │ │ │ │ └── services │ │ │ │ ├── LBService1.java │ │ │ │ └── LBService2.java │ │ │ ├── MTOMSwASampleService │ │ │ ├── build.xml │ │ │ ├── conf │ │ │ │ └── services.xml │ │ │ └── src │ │ │ │ └── samples │ │ │ │ └── services │ │ │ │ └── MTOMSwASampleService.java │ │ │ ├── ReliableStockQuoteService │ │ │ ├── build.xml │ │ │ ├── conf │ │ │ │ └── services.xml │ │ │ └── src │ │ │ │ └── samples │ │ │ │ └── services │ │ │ │ ├── GetQuote.java │ │ │ │ ├── GetQuoteResponse.java │ │ │ │ ├── PlaceOrder.java │ │ │ │ └── ReliableStockQuoteService.java │ │ │ ├── SecureStockQuoteService │ │ │ ├── build.xml │ │ │ ├── conf │ │ │ │ └── services.xml │ │ │ ├── src │ │ │ │ └── samples │ │ │ │ │ └── services │ │ │ │ │ ├── GetFullQuote.java │ │ │ │ │ ├── GetFullQuoteResponse.java │ │ │ │ │ ├── GetMarketActivity.java │ │ │ │ │ ├── GetMarketActivityResponse.java │ │ │ │ │ ├── GetQuote.java │ │ │ │ │ ├── GetQuoteResponse.java │ │ │ │ │ ├── PlaceOrder.java │ │ │ │ │ ├── SimpleStockQuoteService.java │ │ │ │ │ └── TradingDay.java │ │ │ └── store.jks │ │ │ └── SimpleStockQuoteService │ │ │ ├── build.xml │ │ │ ├── conf │ │ │ └── services.xml │ │ │ └── src │ │ │ └── samples │ │ │ └── services │ │ │ ├── GetFullQuote.java │ │ │ ├── GetFullQuoteResponse.java │ │ │ ├── GetMarketActivity.java │ │ │ ├── GetMarketActivityResponse.java │ │ │ ├── GetQuote.java │ │ │ ├── GetQuoteResponse.java │ │ │ ├── PlaceOrder.java │ │ │ ├── SimpleStockQuoteService.java │ │ │ └── TradingDay.java │ └── src │ │ └── main │ │ └── java │ │ └── org │ │ └── wso2 │ │ └── esb │ │ └── integration │ │ └── common │ │ └── utils │ │ ├── ArtifactReaderUtil.java │ │ ├── CPUMonitor.java │ │ ├── CarbonLogReader.java │ │ ├── CarbonLogTailer.java │ │ ├── ESBBaseTest.java │ │ ├── ESBIntegrationTest.java │ │ ├── ESBIntegrationUITest.java │ │ ├── ESBTestCaseUtils.java │ │ ├── ESBTestConstant.java │ │ ├── EndpointGenerator.java │ │ ├── HttpDeleteWithEntity.java │ │ ├── JMSEndpointManager.java │ │ ├── LogReaderManager.java │ │ ├── MailToTransportUtil.java │ │ ├── MicroRegistryManager.java │ │ ├── ServiceDeploymentUtil.java │ │ ├── ServiceTransportUtil.java │ │ ├── Utils.java │ │ ├── clients │ │ ├── CloneClient.java │ │ ├── FIXClient.java │ │ ├── GreenMailClient.java │ │ ├── JMXClient.java │ │ ├── JSONClient.java │ │ ├── LoadBalanceSessionFullClient.java │ │ ├── LoadbalanceFailoverClient.java │ │ ├── ResponseData.java │ │ ├── SecureServiceClient.java │ │ ├── SimpleHttpClient.java │ │ ├── TCPClient.java │ │ ├── UDPClient.java │ │ ├── axis2client │ │ │ ├── AxisOperationClient.java │ │ │ ├── AxisServiceClient.java │ │ │ ├── AxisServiceClientUtils.java │ │ │ ├── ClientUtils.java │ │ │ ├── ConfigurationContextProvider.java │ │ │ └── SecureAxisServiceClient.java │ │ ├── jmsclient │ │ │ ├── JMSQueueMessageProducer.java │ │ │ └── JmsClientHelper.java │ │ ├── rabbitmqclient │ │ │ ├── RabbitMQConsumerClient.java │ │ │ └── RabbitMQProducerClient.java │ │ └── stockquoteclient │ │ │ ├── SecureStockQuoteClient.java │ │ │ └── StockQuoteClient.java │ │ ├── common │ │ ├── AvailabilityPollingUtils.java │ │ ├── FileManager.java │ │ ├── FixedSizeStringGenerator.java │ │ ├── FixedSizeSymbolGenerator.java │ │ ├── ServerConfigurationManager.java │ │ ├── SqlDataSourceUtil.java │ │ ├── TestConfigurationProvider.java │ │ ├── XPathConstants.java │ │ └── XmlFileReaderUtil.java │ │ ├── coverage │ │ └── TestCoverageGenerator.java │ │ ├── exception │ │ ├── ESBIntegrationTestException.java │ │ ├── ESBMailTransportIntegrationTestException.java │ │ └── RabbitMQTransportException.java │ │ └── servers │ │ ├── ActiveMQServer.java │ │ ├── GreenMailServer.java │ │ ├── KeyStoreUtil.java │ │ ├── MultiMessageReceiver.java │ │ ├── RabbitMQServer.java │ │ ├── ResponsePushingSocketServer.java │ │ ├── SftpServerRunner.java │ │ ├── SimpleHTTPServer.java │ │ ├── SimpleSocketServer.java │ │ ├── ThriftServer.java │ │ ├── WireMonitor.java │ │ ├── WireMonitorServer.java │ │ └── axis2 │ │ ├── BackendServer.java │ │ └── SampleAxis2Server.java │ └── pom.xml ├── migration ├── data-mapper-config-migration-service │ ├── README.md │ ├── pom.xml │ └── src │ │ └── main │ │ └── java │ │ └── org │ │ └── wso2 │ │ └── mi │ │ └── car │ │ └── migration │ │ └── DataMapperConfigMigrator.java ├── migration-service │ ├── README.md │ ├── pom.xml │ └── src │ │ └── main │ │ └── java │ │ └── org │ │ └── wso2 │ │ └── mi │ │ └── migration │ │ ├── internal │ │ ├── EIMigrationServiceComponent.java │ │ ├── EIRegistryDataHolder.java │ │ └── MIMigrationServiceComponent.java │ │ ├── migrate │ │ ├── MigrationClientConfig.java │ │ ├── MigrationClientException.java │ │ ├── MigrationConstants.java │ │ ├── ei │ │ │ └── EIPasswordMigrationClient.java │ │ └── mi │ │ │ └── MIPasswordMigrationClient.java │ │ └── utils │ │ └── MigrationIOUtils.java ├── registry-migration-service │ ├── README.md │ ├── pom.xml │ └── src │ │ └── main │ │ ├── java │ │ └── org │ │ │ └── wso2 │ │ │ └── mi │ │ │ └── registry │ │ │ └── migration │ │ │ ├── CARExporter.java │ │ │ ├── LoginAdminServiceClient.java │ │ │ ├── PropertiesAdminServiceClient.java │ │ │ ├── RegistryCollection.java │ │ │ ├── RegistryExporter.java │ │ │ ├── RegistryItem.java │ │ │ ├── RegistryMigrationClient.java │ │ │ ├── RegistryResource.java │ │ │ ├── RegistryResourceProjectExporter.java │ │ │ ├── ResourceAdminServiceClient.java │ │ │ ├── exception │ │ │ ├── ArchiveException.java │ │ │ ├── ProjectCreationException.java │ │ │ └── RegistryMigrationException.java │ │ │ └── utils │ │ │ ├── DataTable.java │ │ │ ├── FileUtils.java │ │ │ ├── MigrationClientUtils.java │ │ │ └── resources │ │ │ ├── Artifacts.java │ │ │ ├── Collection.java │ │ │ ├── Dependency.java │ │ │ ├── RegistryInfo.java │ │ │ ├── ResourceArtifact.java │ │ │ ├── ResourceItem.java │ │ │ ├── ResourceMetaInfo.java │ │ │ ├── ResourceProjectArtifact.java │ │ │ ├── ResourceProjectArtifacts.java │ │ │ ├── ResourceProperties.java │ │ │ ├── ResourceProperty.java │ │ │ └── RootArtifact.java │ │ └── resources │ │ ├── integration-project-description │ │ ├── composite-exporter-description.xml │ │ ├── integration-project-description.xml │ │ └── registry-resource-project-description.xml │ │ ├── integration-project-pom │ │ ├── composite-exporter-pom.xml │ │ ├── integration-project-pom.xml │ │ └── registry-resource-project-pom.xml │ │ ├── log4j2.properties │ │ └── registry_module_classpath.xml └── registry │ └── from-mi-1.0.0-to-later │ ├── README.md │ ├── pom.xml │ └── src │ └── main │ └── java │ └── RegistryMigrator.java ├── p2-profile ├── carbon.product └── pom.xml ├── performance └── benchmarks │ ├── summary.csv │ └── summary.md ├── pom.xml ├── product-scenarios ├── .gitignore ├── 1-integrating-systems-that-communicate-in-heterogeneous-message-formats │ ├── 01-SynapseConfigProject │ │ ├── 01-synapseConfig-filter │ │ │ └── pom.xml │ │ ├── 01-synapseConfig │ │ │ ├── .project │ │ │ ├── artifact.xml │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── synapse-config │ │ │ │ ├── api │ │ │ │ ├── 1_2_1_API_pox_to_json_using_payload_factory.xml │ │ │ │ ├── 1_2_2_API_pox_to_json_using_message_type.xml │ │ │ │ ├── 1_3_1_API_json_to_soap_using_xslt.xml │ │ │ │ ├── 1_3_2_API_json_to_soap_using_payload_factory.xml │ │ │ │ ├── 1_6_12_API_performArithmeticOperations.xml │ │ │ │ ├── 1_6_13_API_performStringOperations.xml │ │ │ │ ├── 1_JsonMapping.xml │ │ │ │ ├── 1_SoapMapping.xml │ │ │ │ └── 1_TextMapping.xml │ │ │ │ ├── endpoints │ │ │ │ ├── JSON_EP.xml │ │ │ │ ├── POX_EP.xml │ │ │ │ ├── Plaintext_EP.xml │ │ │ │ ├── SOAP_EP.xml │ │ │ │ └── VFS_Sample_EP.xml │ │ │ │ ├── local-entries │ │ │ │ ├── in_transform.xml │ │ │ │ └── out_transform.xml │ │ │ │ ├── proxy-services │ │ │ │ ├── 1_1_1_Proxy_soap_to_json_using_payload_factory.xml │ │ │ │ ├── 1_1_2_Proxy_soap_to_json_using_message_type.xml │ │ │ │ ├── 1_1_3_Proxy_soap_to_json_using_data_mapper.xml │ │ │ │ ├── 1_6_10_1_Proxy_AlterPayloadWithInlineGroovyScript.xml │ │ │ │ ├── 1_6_10_2_Proxy_alterPayloadWithInlineJavaScript.xml │ │ │ │ ├── 1_6_1_1_Proxy_SoapToPoxMsgEnrichWithChild.xml │ │ │ │ ├── 1_6_1_2_Proxy_SoapToPoxEnrichWithXpathAsChild.xml │ │ │ │ ├── 1_6_1_3_Proxy_addCurrentPayloadAsChild.xml │ │ │ │ ├── 1_6_1_4_Proxy_addPayloadStoredInPropertyAsChild.xml │ │ │ │ ├── 1_6_2_1_Proxy_Add_Sibling_Inline.xml │ │ │ │ ├── 1_6_2_2_Proxy_Add_Sibling_xpath.xml │ │ │ │ ├── 1_6_2_3_Proxy_Add_Sibling_toTargetBody.xml │ │ │ │ ├── 1_6_2_4_Proxy_Add_Sibling_toMessageBodyStoredInProperty.xml │ │ │ │ ├── 1_6_3_1_Proxy_replace_messageBody_usingPayloadStoredInProperty.xml │ │ │ │ ├── 1_6_3_2_Proxy_replace_targetBySourceBodyDefinedThroughXpath.xml │ │ │ │ ├── 1_6_3_3_Proxy_replace_targetDefinedThroughXpathBySourceProperty.xml │ │ │ │ ├── 1_6_3_4_Proxy_replace_targetDefinedThroughXpathBySourceInlineContent.xml │ │ │ │ ├── 1_6_3_5_Proxy_replaceBodyOfPayloadSourceDefinedInlineGovReg.xml │ │ │ │ ├── 1_6_3_6_Proxy_replaceBodyOfPayloadUsingSourceDefinedInlineConfReg.xml │ │ │ │ ├── 1_6_3_7_Proxy_replaceTargetDefinedThroughXpathSourceInlineGovReg.xml │ │ │ │ ├── 1_6_3_8_Proxy_replaceTargetDefinedThroughXpathSourceInlineConfReg.xml │ │ │ │ ├── 1_6_4_1_Proxy_RemoveElements_ScriptMediator.xml │ │ │ │ ├── 1_6_4_2_Proxy_RemoveContentofElements_EnrichMediator.xml │ │ │ │ ├── 1_6_4_3_Proxy_removeElementUsingXsltMediator.xml │ │ │ │ └── 1_8_1_1_Proxy_PlainTextReceiver.xml │ │ │ │ └── sequences │ │ │ │ ├── CallTextMappingApi.xml │ │ │ │ ├── callJsonMappingApi.xml │ │ │ │ ├── callPOXEndpointSeq.xml │ │ │ │ ├── callSoapMappingApi.xml │ │ │ │ ├── callSoapSeq.xml │ │ │ │ ├── callTextEndpointSeq.xml │ │ │ │ ├── contentMismatchJsonPayload.xml │ │ │ │ ├── contentMismatchXMLPayload.xml │ │ │ │ └── fullLogSeq.xml │ │ ├── 01-synapseConfigCompositeApplication │ │ │ ├── .project │ │ │ └── pom.xml │ │ ├── 01-synapseConfigCompositeApplication_490 │ │ │ ├── .project │ │ │ └── pom.xml │ │ ├── 01-synapseConfigRegistry │ │ │ ├── .classpath │ │ │ ├── .project │ │ │ ├── artifact.xml │ │ │ ├── config_1.6.3.5.xml │ │ │ ├── config_1.6.3.6.xml │ │ │ ├── config_1.6.3.7.xml │ │ │ ├── config_1_6_12_1.datamapper │ │ │ ├── config_1_6_12_1.datamapper_diagram │ │ │ ├── config_1_6_12_1.dmc │ │ │ ├── config_1_6_12_10.datamapper │ │ │ ├── config_1_6_12_10.datamapper_diagram │ │ │ ├── config_1_6_12_10.dmc │ │ │ ├── config_1_6_12_10_inputSchema.json │ │ │ ├── config_1_6_12_10_outputSchema.json │ │ │ ├── config_1_6_12_1_inputSchema.json │ │ │ ├── config_1_6_12_1_outputSchema.json │ │ │ ├── config_1_6_12_2.datamapper │ │ │ ├── config_1_6_12_2.datamapper_diagram │ │ │ ├── config_1_6_12_2.dmc │ │ │ ├── config_1_6_12_2_inputSchema.json │ │ │ ├── config_1_6_12_2_outputSchema.json │ │ │ ├── config_1_6_12_3.datamapper │ │ │ ├── config_1_6_12_3.datamapper_diagram │ │ │ ├── config_1_6_12_3.dmc │ │ │ ├── config_1_6_12_3_inputSchema.json │ │ │ ├── config_1_6_12_3_outputSchema.json │ │ │ ├── config_1_6_12_4.datamapper │ │ │ ├── config_1_6_12_4.datamapper_diagram │ │ │ ├── config_1_6_12_4.dmc │ │ │ ├── config_1_6_12_4_inputSchema.json │ │ │ ├── config_1_6_12_4_outputSchema.json │ │ │ ├── config_1_6_12_5.datamapper │ │ │ ├── config_1_6_12_5.datamapper_diagram │ │ │ ├── config_1_6_12_5.dmc │ │ │ ├── config_1_6_12_5_inputSchema.json │ │ │ ├── config_1_6_12_5_outputSchema.json │ │ │ ├── config_1_6_12_6.datamapper │ │ │ ├── config_1_6_12_6.datamapper_diagram │ │ │ ├── config_1_6_12_6.dmc │ │ │ ├── config_1_6_12_6_inputSchema.json │ │ │ ├── config_1_6_12_6_outputSchema.json │ │ │ ├── config_1_6_12_7.datamapper │ │ │ ├── config_1_6_12_7.datamapper_diagram │ │ │ ├── config_1_6_12_7.dmc │ │ │ ├── config_1_6_12_7_inputSchema.json │ │ │ ├── config_1_6_12_7_outputSchema.json │ │ │ ├── config_1_6_12_8.datamapper │ │ │ ├── config_1_6_12_8.datamapper_diagram │ │ │ ├── config_1_6_12_8.dmc │ │ │ ├── config_1_6_12_8_inputSchema.json │ │ │ ├── config_1_6_12_8_outputSchema.json │ │ │ ├── config_1_6_12_9.datamapper │ │ │ ├── config_1_6_12_9.datamapper_diagram │ │ │ ├── config_1_6_12_9.dmc │ │ │ ├── config_1_6_12_9_inputSchema.json │ │ │ ├── config_1_6_12_9_outputSchema.json │ │ │ ├── config_1_6_13_1.datamapper │ │ │ ├── config_1_6_13_1.datamapper_diagram │ │ │ ├── config_1_6_13_1.dmc │ │ │ ├── config_1_6_13_1_inputSchema.json │ │ │ ├── config_1_6_13_1_outputSchema.json │ │ │ ├── config_1_6_13_2.datamapper │ │ │ ├── config_1_6_13_2.datamapper_diagram │ │ │ ├── config_1_6_13_2.dmc │ │ │ ├── config_1_6_13_2_inputSchema.json │ │ │ ├── config_1_6_13_2_outputSchema.json │ │ │ ├── config_1_6_13_3.datamapper │ │ │ ├── config_1_6_13_3.datamapper_diagram │ │ │ ├── config_1_6_13_3.dmc │ │ │ ├── config_1_6_13_3_inputSchema.json │ │ │ ├── config_1_6_13_3_outputSchema.json │ │ │ ├── config_1_6_13_4.datamapper │ │ │ ├── config_1_6_13_4.datamapper_diagram │ │ │ ├── config_1_6_13_4.dmc │ │ │ ├── config_1_6_13_4_inputSchema.json │ │ │ ├── config_1_6_13_4_outputSchema.json │ │ │ ├── config_1_6_13_5.datamapper │ │ │ ├── config_1_6_13_5.datamapper_diagram │ │ │ ├── config_1_6_13_5.dmc │ │ │ ├── config_1_6_13_5_inputSchema.json │ │ │ ├── config_1_6_13_5_outputSchema.json │ │ │ ├── config_1_6_13_6.datamapper │ │ │ ├── config_1_6_13_6.datamapper_diagram │ │ │ ├── config_1_6_13_6.dmc │ │ │ ├── config_1_6_13_6_inputSchema.json │ │ │ ├── config_1_6_13_6_outputSchema.json │ │ │ ├── config_1_6_13_7.datamapper │ │ │ ├── config_1_6_13_7.datamapper_diagram │ │ │ ├── config_1_6_13_7.dmc │ │ │ ├── config_1_6_13_7_inputSchema.json │ │ │ ├── config_1_6_13_7_outputSchema.json │ │ │ ├── config_1_6_3_8.xml │ │ │ ├── config_1_6_4_3_xsltStyleSheet.xml │ │ │ ├── config_convert_json_to_soap.datamapper │ │ │ ├── config_convert_json_to_soap.datamapper_diagram │ │ │ ├── config_convert_json_to_soap.dmc │ │ │ ├── config_convert_json_to_soap_inputSchema.json │ │ │ ├── config_convert_json_to_soap_outputSchema.json │ │ │ ├── config_convert_json_to_soap_xsltStyleSheet.xml │ │ │ ├── config_convert_soap_to_json.datamapper │ │ │ ├── config_convert_soap_to_json.datamapper_diagram │ │ │ ├── config_convert_soap_to_json.dmc │ │ │ ├── config_convert_soap_to_json_inputSchema.json │ │ │ ├── config_convert_soap_to_json_outputSchema.json │ │ │ ├── config_convert_soap_to_json_xsltStyleSheet.xml │ │ │ └── pom.xml │ │ ├── 1_1_1_synapse-configCompositeApplication │ │ │ └── pom.xml │ │ ├── 1_1_2-synapse-configCompositeApplication │ │ │ └── pom.xml │ │ ├── 1_1_3_synapse-configCompositeApplication │ │ │ └── pom.xml │ │ ├── 1_2_1_synapse-configCompositeApplication │ │ │ └── pom.xml │ │ ├── 1_2_2_synapse-configCompositeApplication │ │ │ └── pom.xml │ │ ├── 1_3_1_synapse-configCompositeApplication │ │ │ └── pom.xml │ │ ├── 1_3_2_synapse-configCompositeApplication │ │ │ └── pom.xml │ │ ├── 1_6_1-synapse-configCompositeApplication │ │ │ ├── .project │ │ │ └── pom.xml │ │ ├── 1_8-synapse-configCompositeApplication │ │ │ └── pom.xml │ │ └── pom.xml │ ├── 1.1-converting-soap-to-json │ │ ├── 1.1.1-soap-to-json-using-payloadfactory-mediator │ │ │ ├── TestCases.md │ │ │ ├── images │ │ │ │ └── SOAP-to-JSON.png │ │ │ ├── pom.xml │ │ │ ├── readme.md │ │ │ └── src │ │ │ │ └── test │ │ │ │ ├── java │ │ │ │ └── org │ │ │ │ │ └── wso2 │ │ │ │ │ └── carbon │ │ │ │ │ └── esb │ │ │ │ │ └── scenario │ │ │ │ │ └── test │ │ │ │ │ └── SoapToJsonUsingPayloadFactoryTest.java │ │ │ │ └── resources │ │ │ │ ├── artifacts │ │ │ │ └── 1_1_1_synapse-configCompositeApplication_1.0.0.car │ │ │ │ ├── log4j.properties │ │ │ │ ├── source_files │ │ │ │ ├── 1.1.1.1 │ │ │ │ │ ├── request │ │ │ │ │ │ └── 1_1_1_1_1.xml │ │ │ │ │ └── response │ │ │ │ │ │ └── 1_1_1_1_1.xml │ │ │ │ └── 1.1.1.2 │ │ │ │ │ ├── request │ │ │ │ │ └── 1_1_1_2_1.xml │ │ │ │ │ └── response │ │ │ │ │ └── 1_1_1_2_1.xml │ │ │ │ └── testng.xml │ │ ├── 1.1.2-soap-to-json-using-messagetype-property │ │ │ ├── TestCases.md │ │ │ ├── images │ │ │ │ └── SOAP-to-JSON.png │ │ │ ├── pom.xml │ │ │ ├── readme.md │ │ │ └── src │ │ │ │ └── test │ │ │ │ ├── java │ │ │ │ └── org │ │ │ │ │ └── wso2 │ │ │ │ │ └── carbon │ │ │ │ │ └── esb │ │ │ │ │ └── scenario │ │ │ │ │ └── test │ │ │ │ │ └── SoapToJsonUsingMessageTypeTest.java │ │ │ │ └── resources │ │ │ │ ├── artifacts │ │ │ │ └── 1_1_2-synapse-configCompositeApplication_1.0.0.car │ │ │ │ ├── log4j.properties │ │ │ │ ├── source_files │ │ │ │ ├── 1.1.2.1 │ │ │ │ │ ├── request │ │ │ │ │ │ └── 1_1_2_1_1.xml │ │ │ │ │ └── response │ │ │ │ │ │ └── 1_1_2_1_1.xml │ │ │ │ ├── 1.1.2.2 │ │ │ │ │ ├── request │ │ │ │ │ │ └── 1_1_2_2_1.xml │ │ │ │ │ └── response │ │ │ │ │ │ └── 1_1_2_2_1.xml │ │ │ │ └── 1.1.2.3 │ │ │ │ │ ├── request │ │ │ │ │ └── 1_1_2_3_1.xml │ │ │ │ │ └── response │ │ │ │ │ └── 1_1_2_3_1.xml │ │ │ │ └── testng.xml │ │ ├── 1.1.3-soap-to-json-using-data-mapper │ │ │ ├── TestCases.md │ │ │ ├── pom.xml │ │ │ ├── readme.md │ │ │ └── src │ │ │ │ └── test │ │ │ │ ├── java │ │ │ │ └── org │ │ │ │ │ └── wso2 │ │ │ │ │ └── carbon │ │ │ │ │ └── esb │ │ │ │ │ └── scenario │ │ │ │ │ └── test │ │ │ │ │ └── SoapToJsonUsingDataMapperTest.java │ │ │ │ └── resources │ │ │ │ ├── artifacts │ │ │ │ └── 1_1_3_synapse-configCompositeApplication_1.0.0.car │ │ │ │ ├── keystores │ │ │ │ ├── key.crt │ │ │ │ └── wso2carbon.jks │ │ │ │ ├── log4j.properties │ │ │ │ ├── source_files │ │ │ │ ├── 1.1.3.1 │ │ │ │ │ ├── request │ │ │ │ │ │ └── 1_1_3_1_1.xml │ │ │ │ │ └── response │ │ │ │ │ │ └── 1_1_3_1_1.xml │ │ │ │ ├── 1.1.3.2 │ │ │ │ │ ├── request │ │ │ │ │ │ └── 1_1_3_2_1.xml │ │ │ │ │ └── response │ │ │ │ │ │ └── 1_1_3_2_1.xml │ │ │ │ └── 1.1.3.3 │ │ │ │ │ ├── request │ │ │ │ │ └── 1_1_3_3_1.xml │ │ │ │ │ └── response │ │ │ │ │ └── 1_1_3_3_1.xml │ │ │ │ └── testng.xml │ │ ├── pom.xml │ │ └── readme.md │ ├── 1.2-converting-pox-to-json │ │ ├── 1.2.1-pox-to-json-using-payloadfactory-mediator │ │ │ ├── TestCases.md │ │ │ ├── pom.xml │ │ │ ├── readme.md │ │ │ └── src │ │ │ │ └── test │ │ │ │ ├── java │ │ │ │ └── org │ │ │ │ │ └── wso2 │ │ │ │ │ └── carbon │ │ │ │ │ └── esb │ │ │ │ │ └── scenario │ │ │ │ │ └── test │ │ │ │ │ └── PoxToJsonUsingPayloadFactoryTest.java │ │ │ │ └── resources │ │ │ │ ├── artifacts │ │ │ │ └── 1_2_1_synapse-configCompositeApplication_1.0.0.car │ │ │ │ ├── log4j.properties │ │ │ │ ├── source_files │ │ │ │ └── 1.2.1.1 │ │ │ │ │ ├── request │ │ │ │ │ └── 1_2_1_1_1.xml │ │ │ │ │ └── response │ │ │ │ │ └── 1_2_1_1_1.xml │ │ │ │ └── testng.xml │ │ ├── 1.2.2-pox-to-json-using-messagetype-property │ │ │ ├── TestCases.md │ │ │ ├── pom.xml │ │ │ ├── readme.md │ │ │ └── src │ │ │ │ └── test │ │ │ │ ├── java │ │ │ │ └── org │ │ │ │ │ └── wso2 │ │ │ │ │ └── carbon │ │ │ │ │ └── esb │ │ │ │ │ └── scenario │ │ │ │ │ └── test │ │ │ │ │ └── PoxToJsonUsingMessageTypeTest.java │ │ │ │ └── resources │ │ │ │ ├── artifacts │ │ │ │ └── 1_2_2_synapse-configCompositeApplication_1.0.0.car │ │ │ │ ├── log4j.properties │ │ │ │ ├── source_files │ │ │ │ ├── 1.2.2.1 │ │ │ │ │ ├── request │ │ │ │ │ │ ├── 1_2_2_1_1.xml │ │ │ │ │ │ ├── 1_2_2_1_2.xml │ │ │ │ │ │ ├── 1_2_2_1_3.xml │ │ │ │ │ │ └── 1_2_2_1_4.xml │ │ │ │ │ └── response │ │ │ │ │ │ ├── 1_2_2_1_1.xml │ │ │ │ │ │ ├── 1_2_2_1_2.xml │ │ │ │ │ │ ├── 1_2_2_1_3.xml │ │ │ │ │ │ └── 1_2_2_1_4.xml │ │ │ │ └── 1.2.2.2 │ │ │ │ │ ├── request │ │ │ │ │ └── 1_2_2_2_1.xml │ │ │ │ │ └── response │ │ │ │ │ └── 1_2_2_2_1.xml │ │ │ │ └── testng.xml │ │ ├── 1.2.3-pox-to-json-using-data-mapper │ │ │ ├── TestCases.md │ │ │ └── readme.md │ │ ├── pom.xml │ │ └── readme.md │ ├── 1.3-converting-json-to-soap │ │ ├── 1.3.1-json-to-soap-usingXSLT │ │ │ ├── TestCases.md │ │ │ ├── images │ │ │ │ └── JSON-to-SOAP.png │ │ │ ├── pom.xml │ │ │ ├── readme.md │ │ │ └── src │ │ │ │ └── test │ │ │ │ ├── java │ │ │ │ └── org │ │ │ │ │ └── wso2 │ │ │ │ │ └── carbon │ │ │ │ │ └── esb │ │ │ │ │ └── scenario │ │ │ │ │ └── test │ │ │ │ │ └── JsonToSoapUsingXSLTTest.java │ │ │ │ └── resources │ │ │ │ ├── artifacts │ │ │ │ └── 1_3_1_synapse-configCompositeApplication_1.0.0.car │ │ │ │ ├── log4j.properties │ │ │ │ └── testng.xml │ │ ├── 1.3.2-json-to-soap-using-payload-factory-mediator │ │ │ ├── TestCases.md │ │ │ ├── images │ │ │ │ └── JSON-to-SOAP.png │ │ │ ├── pom.xml │ │ │ ├── readme.md │ │ │ └── src │ │ │ │ └── test │ │ │ │ ├── java │ │ │ │ └── org │ │ │ │ │ └── wso2 │ │ │ │ │ └── carbon │ │ │ │ │ └── esb │ │ │ │ │ └── scenario │ │ │ │ │ └── test │ │ │ │ │ └── JsonToSoapUsingPayloadFactoryTest.java │ │ │ │ └── resources │ │ │ │ ├── artifacts │ │ │ │ └── 1_3_2_synapse-configCompositeApplication_1.0.0.car │ │ │ │ ├── log4j.properties │ │ │ │ ├── source_files │ │ │ │ └── 1.3.2.1 │ │ │ │ │ ├── request │ │ │ │ │ └── 1_3_2_1_1.json │ │ │ │ │ └── response │ │ │ │ │ └── 1_3_2_2_1.json │ │ │ │ └── testng.xml │ │ ├── 1.3.3-json-to-soap-using-message-type-property │ │ │ ├── TestCases.md │ │ │ ├── images │ │ │ │ └── JSON-to-SOAP.png │ │ │ └── readme.md │ │ ├── pom.xml │ │ ├── readme.md │ │ └── scenario_1.3-test-artifacts │ │ │ ├── scenario_1_3-synapse-config │ │ │ ├── .project │ │ │ ├── artifact.xml │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── synapse-config │ │ │ │ ├── api │ │ │ │ └── JsonToSoap.xml │ │ │ │ ├── endpoints │ │ │ │ └── EP_StockQuote.xml │ │ │ │ ├── local-entries │ │ │ │ ├── in_transform.xml │ │ │ │ └── out_transform.xml │ │ │ │ └── sequences │ │ │ │ └── SEQ_JsonToXMLTransformation.xml │ │ │ └── scenario_1_3-synapse-configCompositeApplication │ │ │ ├── .project │ │ │ └── pom.xml │ ├── 1.4-converting-csv-to-other-messsage-formats │ │ ├── 1.4.1-csv-to-other-format-using-data-mapper │ │ │ ├── TestCases.md │ │ │ └── readme.md │ │ └── readme.md │ ├── 1.5-converting-other-messsage-formats- to-csv │ │ ├── 1.5.1-other-format-to-csv-using-data-mapper │ │ │ └── readme.md │ │ └── readme.md │ ├── 1.5-converting-other-messsage-formats-to-csv │ │ ├── 1.5.1-other-format-to-csv-using-data-mapper │ │ │ ├── TestCases.md │ │ │ └── readme.md │ │ └── readme.md │ ├── 1.6-xml-message-enrichment │ │ ├── 1.6.1-Modify-payload-by-adding-a-child-using-enrich-mediator │ │ │ ├── TestCases.md │ │ │ ├── pom.xml │ │ │ ├── readme.md │ │ │ └── src │ │ │ │ └── test │ │ │ │ ├── java │ │ │ │ └── org.wso2.carbon.ei.scenario.test │ │ │ │ │ └── AddChildToXMLTest.java │ │ │ │ └── resources │ │ │ │ ├── artifacts │ │ │ │ └── 1_6_1-synapse-configCompositeApplication_1.0.0.car │ │ │ │ ├── log4j.properties │ │ │ │ ├── source_files │ │ │ │ ├── request_1_6_1_1.xml │ │ │ │ ├── request_1_6_1_2.xml │ │ │ │ ├── response_1_6_1_1.xml │ │ │ │ └── response_1_6_1_2.xml │ │ │ │ └── testng.xml │ │ ├── 1.6.10-Setting-a-request-payload-with-a-script │ │ │ ├── TestCases.md │ │ │ ├── pom.xml │ │ │ ├── readme.md │ │ │ └── src │ │ │ │ └── test │ │ │ │ ├── java │ │ │ │ └── org.wso2.carbon.ei.scenario.test │ │ │ │ │ └── AlterRequestWithScriptTest.java │ │ │ │ └── resources │ │ │ │ ├── artifacts │ │ │ │ └── 1_6_10-synapseConfigCompositeApplication_1.0.0.car │ │ │ │ ├── log4j.properties │ │ │ │ └── testng.xml │ │ ├── 1.6.11-Modify-the-response-with-a-script │ │ │ └── readme.md │ │ ├── 1.6.12-Perform-Arithmetic-operations-in-XML-payload │ │ │ ├── TestCases.md │ │ │ ├── images │ │ │ │ ├── addNumbers.png │ │ │ │ ├── api.png │ │ │ │ ├── datamapper-mediator.png │ │ │ │ └── postman-req.png │ │ │ ├── pom.xml │ │ │ ├── readme.md │ │ │ └── src │ │ │ │ └── test │ │ │ │ ├── java │ │ │ │ └── org.wso2.carbon.ei.scenario.test │ │ │ │ │ └── ArithmeticOperationsInXMLUsingDatamapperTest.java │ │ │ │ └── resources │ │ │ │ ├── artifacts │ │ │ │ └── 1_6_12_1-synapseCompositeApplication_1.0.0.car │ │ │ │ ├── log4j.properties │ │ │ │ └── testng.xml │ │ ├── 1.6.13-Perform-String-operations-in-XML-payload │ │ │ ├── TestCases.md │ │ │ ├── images │ │ │ │ ├── datamapper-mediator.png │ │ │ │ ├── request.png │ │ │ │ ├── response.png │ │ │ │ └── uppercase.png │ │ │ ├── pom.xml │ │ │ ├── readme.md │ │ │ └── src │ │ │ │ └── test │ │ │ │ ├── java │ │ │ │ └── org.wso2.carbon.ei.scenario.test │ │ │ │ │ └── StringOperationsUsingDatamapperTest.java │ │ │ │ └── resources │ │ │ │ ├── log4j.properties │ │ │ │ └── testng.xml │ │ ├── 1.6.14-Group-Paylaod-by-a-distinct-value │ │ │ └── readme.md │ │ ├── 1.6.15-Adding-namespace-and-prefix-to-tags-inside-payload │ │ │ └── readme.md │ │ ├── 1.6.2-Modify-payload-by-adding-a-sibling-using-enrich-mediator │ │ │ ├── TestCases.md │ │ │ ├── pom.xml │ │ │ ├── readme.md │ │ │ └── src │ │ │ │ └── test │ │ │ │ ├── java │ │ │ │ └── org.wso2.carbon.ei.scenario.test │ │ │ │ │ └── AddSiblingUsingEnrichMediatorTest.java │ │ │ │ └── resources │ │ │ │ ├── artifacts │ │ │ │ └── 1_6_2-synapse-configCompositeApplication_1.0.0.car │ │ │ │ ├── log4j.properties │ │ │ │ └── testng.xml │ │ ├── 1.6.3-Replace-a-value-of-the-incoming-message-using-enrich-mediator │ │ │ ├── TestCases.md │ │ │ ├── pom.xml │ │ │ ├── readme.md │ │ │ └── src │ │ │ │ └── test │ │ │ │ ├── java │ │ │ │ └── org │ │ │ │ │ └── wso2 │ │ │ │ │ └── carbon │ │ │ │ │ └── ei │ │ │ │ │ └── scenario │ │ │ │ │ └── test │ │ │ │ │ └── ReplaceElementsTest.java │ │ │ │ └── resources │ │ │ │ ├── log4j.properties │ │ │ │ └── testng.xml │ │ ├── 1.6.4-Modify-payload-by-removing-elements │ │ │ ├── TestCases.md │ │ │ ├── pom.xml │ │ │ ├── readme.md │ │ │ └── src │ │ │ │ └── test │ │ │ │ ├── java │ │ │ │ └── org.wso2.carbon.ei.scenario.test │ │ │ │ │ └── RemoveElementsTest.java │ │ │ │ └── resources │ │ │ │ ├── artifacts │ │ │ │ └── 1_6_4-synapse-configCompositeApplication_1.0.0.car │ │ │ │ ├── log4j.properties │ │ │ │ └── testng.xml │ │ ├── 1.6.5-Modify-the-response │ │ │ ├── 1.6.5.1-modify-the-response-partially-using-enrich-mediator │ │ │ │ └── readme.md │ │ │ └── 1.6.5.2-modify-the-entire-response-using-xslt-mediator │ │ │ │ └── readme.md │ │ ├── 1.6.6-Modify-the-entire-request │ │ │ └── readme.md │ │ ├── 1.6.7-Modify-the-selected-element-of-request │ │ │ └── readme.md │ │ ├── 1.6.8-Modify-the-selected-element-of-response │ │ │ └── readme.md │ │ ├── 1.6.9-Extracting-elements-from-a-payload │ │ │ └── readme.md │ │ ├── pom.xml │ │ └── readme.md │ ├── 1.7-json-message-enrichment │ │ ├── 1.7.1-Modify-selected-value-of-a-json-payload-using-Script-mediator │ │ │ └── readme.md │ │ ├── 1.7.2-Perform-delete-operation-in-json-payload │ │ │ └── readme.md │ │ └── readme.md │ ├── 1.8-plaintext-message-enrichment │ │ ├── 1.8.1-plaintext-enrichment-using-scriptMediator │ │ │ ├── TestCases.md │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── test │ │ │ │ ├── java │ │ │ │ └── org │ │ │ │ │ └── wso2 │ │ │ │ │ └── carbon │ │ │ │ │ └── esb │ │ │ │ │ └── scenario │ │ │ │ │ └── test │ │ │ │ │ └── PlainTextEnrichmentTest.java │ │ │ │ └── resources │ │ │ │ ├── artifacts │ │ │ │ └── scenario_1_8-synapse-configCompositeApplication_1.0.0.car │ │ │ │ ├── log4j.properties │ │ │ │ └── testng.xml │ │ ├── images │ │ │ └── plain_text_enrichment.png │ │ ├── pom.xml │ │ └── readme.md │ ├── pom.xml │ ├── readme.md │ └── resources │ │ └── keystores │ │ ├── key.crt │ │ └── wso2carbon.jks ├── 10-file-processing │ ├── 10-SynapseConfigProject │ │ ├── 10-synapseConfig-filter │ │ │ └── pom.xml │ │ ├── 10-synapseConfig │ │ │ ├── .project │ │ │ ├── artifact.xml │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── synapse-config │ │ │ │ ├── api │ │ │ │ ├── 10_1_1_7_3_API_reading_a_file_from_local_location_using_file_connector.xml │ │ │ │ └── API_file_operations.xml │ │ │ │ ├── endpoints │ │ │ │ └── 10_SOAP_EP.xml │ │ │ │ └── proxy-services │ │ │ │ ├── 10_1_1_1_1_Proxy_reading_a_file_from_ftp_location_using_vfs_listener.xml │ │ │ │ └── 10_1_1_7_1_Proxy_reading_a_file_from_local_location_using_vfs_listener.xml │ │ ├── 10-synapseConfigCompositeApplication │ │ │ ├── .project │ │ │ └── pom.xml │ │ ├── 10-synapseConfigConnectorExporter │ │ │ ├── .project │ │ │ ├── artifact.xml │ │ │ ├── fileconnector-connector-2.0.12.zip │ │ │ └── pom.xml │ │ ├── 10-synapseConfigRegistry │ │ │ ├── .project │ │ │ ├── artifact.xml │ │ │ └── pom.xml │ │ └── pom.xml │ ├── 10.1-simple-file-movement-between-two-systems │ │ ├── 10.1.1-reading-a-file-from-a-specified-location-in-file-system │ │ │ ├── 10.1.1.1-reading-a-file-from-FTP-location │ │ │ │ ├── pom.xml │ │ │ │ └── src │ │ │ │ │ └── test │ │ │ │ │ ├── java │ │ │ │ │ └── org │ │ │ │ │ │ └── wso2 │ │ │ │ │ │ └── carbon │ │ │ │ │ │ └── esb │ │ │ │ │ │ └── scenario │ │ │ │ │ │ └── test │ │ │ │ │ │ └── ReadFileFromFTPLocationTest.java │ │ │ │ │ └── resources │ │ │ │ │ ├── log4j.properties │ │ │ │ │ ├── testng.xml │ │ │ │ │ └── vfs │ │ │ │ │ └── source_files │ │ │ │ │ └── requestQuote.xml │ │ │ ├── 10.1.1.7-reading-a-file-from-local-location │ │ │ │ ├── pom.xml │ │ │ │ └── src │ │ │ │ │ └── test │ │ │ │ │ ├── java │ │ │ │ │ └── org │ │ │ │ │ │ └── wso2 │ │ │ │ │ │ └── carbon │ │ │ │ │ │ └── esb │ │ │ │ │ │ └── scenario │ │ │ │ │ │ └── test │ │ │ │ │ │ └── ReadFileFromLocalLocationTest.java │ │ │ │ │ └── resources │ │ │ │ │ ├── log4j.properties │ │ │ │ │ ├── testng.xml │ │ │ │ │ └── vfs │ │ │ │ │ └── source_files │ │ │ │ │ └── requestQuote.xml │ │ │ └── pom.xml │ │ ├── pom.xml │ │ └── readme.md │ ├── 10.2-file-movement-with-file-processing-between-two-systems │ │ ├── pom.xml │ │ └── readme.md │ ├── 10.3-mask-valuable-business-data-stored-in-files │ │ ├── pom.xml │ │ └── readme.md │ ├── images │ │ └── file_processing.png │ ├── pom.xml │ ├── readme.md │ └── resources │ │ └── keystores │ │ ├── key.crt │ │ └── wso2carbon.jks ├── 11-Asynchronous-message-processing │ ├── 11-SynapseConfigProject │ │ ├── 11-synapseConfig-filter │ │ │ └── pom.xml │ │ ├── 11-synapseConfig │ │ │ ├── .project │ │ │ ├── artifact.xml │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── synapse-config │ │ │ │ ├── api │ │ │ │ ├── 11_1_1_1_1_1_API_testAsyncHttpToHttpViaQueue.xml │ │ │ │ └── 11_1_1_1_1_2_API_testAsyncHttpToHttpViaQueue.xml │ │ │ │ ├── endpoints │ │ │ │ ├── 11_1_1_1_1_1_Queue_EP.xml │ │ │ │ ├── 11_1_1_1_1_2_Queue_EP.xml │ │ │ │ └── ECHO_EP.xml │ │ │ │ ├── inbound-endpoints │ │ │ │ └── 11.1.1.1.1.2_Inbound_jms.xml │ │ │ │ ├── proxy-services │ │ │ │ └── 11_1_1_1_1_1_Proxy_testAsyncHttpToHttpViaQueue.xml │ │ │ │ └── sequences │ │ │ │ └── Seq_request.xml │ │ ├── 11-synapseConfigCompositeApplication │ │ │ ├── .project │ │ │ └── pom.xml │ │ ├── 11-synapseConfigRegistry │ │ │ ├── .classpath │ │ │ ├── .project │ │ │ ├── artifact.xml │ │ │ └── pom.xml │ │ └── pom.xml │ ├── 11.1-Decoupling-interacting-parties-across-time-and-space │ │ ├── 11.1.1-Decouple-parties-using-JMS │ │ │ ├── 11.1.1.1-HTTP-ActiveMQ-HTTP │ │ │ │ ├── 11.1.1.1.1-asynchronous-point-to-point-via-queue │ │ │ │ │ ├── pom.xml │ │ │ │ │ └── src │ │ │ │ │ │ └── test │ │ │ │ │ │ ├── java │ │ │ │ │ │ └── org │ │ │ │ │ │ │ └── wso2 │ │ │ │ │ │ │ └── carbon │ │ │ │ │ │ │ └── ei │ │ │ │ │ │ │ └── scenario │ │ │ │ │ │ │ └── test │ │ │ │ │ │ │ └── AsyncHttpToHttpViaActiveMqQueueTest.java │ │ │ │ │ │ └── resources │ │ │ │ │ │ ├── log4j.properties │ │ │ │ │ │ └── testng.xml │ │ │ │ └── pom.xml │ │ │ ├── pom.xml │ │ │ └── readme.md │ │ ├── 11.1.10-Stop-polling-messages-in-runtime │ │ │ └── readme.md │ │ ├── 11.1.2-Decouple-parties-using-AMQP │ │ │ └── readme.md │ │ ├── 11.1.3-Decouple-parties-using-Kafka │ │ │ └── readme.md │ │ ├── 11.1.4-Receive-one-message-and-deliver-to-multiple-parties │ │ │ └── readme.md │ │ ├── 11.1.5-Receive-messages-conditionally-and-process │ │ │ └── readme.md │ │ ├── 11.1.6-scaling-message-consumers │ │ │ └── readme.md │ │ ├── 11.1.7-Receive-and-process-messages-one-by-one │ │ │ └── readme.md │ │ ├── 11.1.8-Speed-up-message-receival-from-queue-topic │ │ │ └── readme.md │ │ ├── 11.1.9-Retry-polling-for-JMS-messages-on-failure │ │ │ └── readme.md │ │ ├── pom.xml │ │ └── readme.md │ ├── 11.2-Asynchronous-request-processing │ │ └── readme.md │ ├── 11.3-Delivery-guarantees │ │ └── readme.md │ ├── 11.4-Connecting-to-broker │ │ └── readme.md │ ├── pom.xml │ ├── readme.md │ └── resources │ │ └── keystores │ │ ├── key.crt │ │ └── wso2carbon.jks ├── 12-workflows-and-human-interactions │ ├── 12.1-create-workflow-business-process-instance │ │ └── readme.md │ ├── 12.2-service-orchestration │ │ └── readme.md │ ├── 12.3-execute-activities-tasks │ │ └── readme.md │ ├── 12.4-human-interaction │ │ └── readme.md │ ├── 12.5-control-flow-within-workflow-business-process │ │ └── readme.md │ ├── 12.6-error-handling │ │ └── readme.md │ ├── 12.7-compensation-handling │ │ └── readme.md │ ├── 12.8-versioning │ │ └── readme.md │ └── readme.md ├── 13-micro-services │ ├── 13.1-Hosting-a-web-service │ │ └── pom.xml │ ├── 13.10-Templating │ │ └── pom.xml │ ├── 13.2-Handle-HTTP-sessions-in-micro-services │ │ └── pom.xml │ ├── 13.3-Package-micro-services-with-dependencies │ │ └── pom.xml │ ├── 13.4-Monitor-micro-services-deployed │ │ └── pom.xml │ ├── 13.5-Handling-request-data │ │ └── pom.xml │ ├── 13.6-Request-and-response-interceptors │ │ └── pom.xml │ ├── 13.7-Handling-connection-failures │ │ └── pom.xml │ ├── 13.8-Data-handling │ │ └── pom.xml │ ├── 13.9-Securing-services │ │ └── pom.xml │ ├── pom.xml │ ├── readme.md │ └── resources │ │ └── keystores │ │ ├── key.crt │ │ └── wso2carbon.jks ├── 14-periodically-execute-an-integration-process │ ├── 14-synapseConfigProject │ │ ├── 14-synapseConfig-filter │ │ │ ├── pom.xml │ │ │ └── target │ │ │ │ └── temp │ │ │ │ └── .project │ │ ├── 14-synapseConfig │ │ │ ├── .project │ │ │ ├── artifact.xml │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── synapse-config │ │ │ │ ├── sequences │ │ │ │ ├── 14_1_1_Seq_TaskWithInterval.xml │ │ │ │ └── 14_1_2_Seq_TaskWithCron.xml │ │ │ │ └── tasks │ │ │ │ ├── 14_1_1_Task_WithInterval.xml │ │ │ │ ├── 14_1_2_Task_WithCronJob.xml │ │ │ │ ├── 14_2_1_Task_CustomJavaWithInterval.xml │ │ │ │ └── 14_2_2_Task_CustomJavaWithCron.xml │ │ ├── 14-synapseConfigCompositeApplication │ │ │ ├── .project │ │ │ └── pom.xml │ │ └── pom.xml │ ├── 14-test-commons │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ └── java │ │ │ └── org │ │ │ └── wso2 │ │ │ └── carbon │ │ │ └── ei │ │ │ └── scenario │ │ │ └── test │ │ │ └── Scenario14TestBase.java │ ├── 14.1-scheduling-task-to-invoke-mediation-flow │ │ ├── 14.1.1-executing-a-scheduled-task-with-interval │ │ │ ├── pom.xml │ │ │ ├── readme.md │ │ │ └── src │ │ │ │ └── test │ │ │ │ ├── java │ │ │ │ └── org │ │ │ │ │ └── wso2 │ │ │ │ │ └── carbon │ │ │ │ │ └── ei │ │ │ │ │ └── scenario │ │ │ │ │ └── test │ │ │ │ │ └── InjectMessageToSequenceUsingScheduleTaskWithIntervalTest.java │ │ │ │ └── resources │ │ │ │ ├── log4j.properties │ │ │ │ └── testng.xml │ │ ├── 14.1.2-executing-a-scheduled-task-as-a-cron-job │ │ │ ├── pom.xml │ │ │ ├── readme.md │ │ │ └── src │ │ │ │ └── test │ │ │ │ ├── java │ │ │ │ └── org │ │ │ │ │ └── wso2 │ │ │ │ │ └── carbon │ │ │ │ │ └── ei │ │ │ │ │ └── scenario │ │ │ │ │ └── test │ │ │ │ │ └── InjectMessageToSequenceUsingScheduleTaskWithCronTest.java │ │ │ │ └── resources │ │ │ │ ├── log4j.properties │ │ │ │ └── testng.xml │ │ ├── pom.xml │ │ └── readme.md │ ├── 14.2-scheduling-a-customized-java-task │ │ ├── 14.2-customJavaTaskToRunWithInterval │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── java │ │ │ │ └── org │ │ │ │ └── wso2 │ │ │ │ └── carbon │ │ │ │ └── ei │ │ │ │ └── scenario │ │ │ │ └── test │ │ │ │ └── CustomTaskImpl.java │ │ ├── 14.2.1-scheduling-a-java-task-with-interval │ │ │ ├── pom.xml │ │ │ ├── readme.md │ │ │ └── src │ │ │ │ └── test │ │ │ │ ├── java │ │ │ │ └── org │ │ │ │ │ └── wso2 │ │ │ │ │ └── carbon │ │ │ │ │ └── ei │ │ │ │ │ └── scenario │ │ │ │ │ └── test │ │ │ │ │ └── ScheduleCustomJavaTaskWithIntervalTest.java │ │ │ │ └── resources │ │ │ │ ├── log4j.properties │ │ │ │ └── testng.xml │ │ ├── 14.2.2-scheduling-a-java-task-with-cron │ │ │ ├── pom.xml │ │ │ ├── readme.md │ │ │ └── src │ │ │ │ └── test │ │ │ │ ├── java │ │ │ │ └── org │ │ │ │ │ └── wso2 │ │ │ │ │ └── carbon │ │ │ │ │ └── ei │ │ │ │ │ └── scenario │ │ │ │ │ └── test │ │ │ │ │ └── ScheduleCustomJavaTaskWithCronTest.java │ │ │ │ └── resources │ │ │ │ ├── log4j.properties │ │ │ │ └── testng.xml │ │ ├── pom.xml │ │ └── readme.md │ ├── pom.xml │ ├── readme.md │ └── resources │ │ └── keystores │ │ ├── key.crt │ │ └── wso2carbon.jks ├── 15-smb2-scenario-configs │ ├── 1.2.0 │ │ └── smb.conf │ └── smb.conf ├── 16-master-smb2-scenario-configs │ └── smb.conf ├── 2-Bridging-systems-that-communicate-in-different-protocols │ ├── 02-synapseConfigProject │ │ ├── 02-synapseConfig │ │ │ ├── artifact.xml │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── synapse-config │ │ │ │ └── proxy-services │ │ │ │ ├── 2_1_1_1_Proxy_httpEndpointViaCallMediatorNonBlockingMode.xml │ │ │ │ ├── 2_1_1_2_Proxy_httpEndpointViaCallMediatorBlockingMode.xml │ │ │ │ ├── 2_1_1_3_Proxy_httpEndpointViaSendMediatorTohttpEp.xml │ │ │ │ ├── 2_1_1_5_Proxy_addressEndpointViaCallMediatorNonBlockingMode.xml │ │ │ │ ├── 2_1_1_7_Proxy_addressEndpointViaSendMediator.xml │ │ │ │ └── 2_SoapMappingProxy.xml │ │ ├── 02-synapseConfigCompositeApplication │ │ │ ├── bin │ │ │ │ └── pom.xml │ │ │ └── pom.xml │ │ └── pom.xml │ ├── 2.1-http-to-http-protocol-translation │ │ ├── 2.1.1-http-to-http-passthrough │ │ │ ├── TestCases.md │ │ │ ├── pom.xml │ │ │ ├── readme.md │ │ │ └── src │ │ │ │ └── test │ │ │ │ ├── java │ │ │ │ └── org │ │ │ │ │ └── wso2 │ │ │ │ │ └── carbon │ │ │ │ │ └── esb │ │ │ │ │ └── scenario │ │ │ │ │ └── test │ │ │ │ │ └── HttpMessageWithoutAlteringDownstreamTest.java │ │ │ │ └── resources │ │ │ │ ├── log4j.properties │ │ │ │ └── testng.xml │ │ ├── 2.1.2-http-to-http-processing │ │ │ └── readme.md │ │ ├── 2.1.3-http-to-http-chunking-behaviours │ │ │ └── readme.md │ │ ├── 2.1.4-http-to-http-keep-alive-behaviour │ │ │ └── readme.md │ │ ├── 2.1.5-different-http-methods │ │ │ └── readme.md │ │ ├── 2.1.6-http-to-http-proxy-server-like-squid │ │ │ └── readme.md │ │ ├── 2.1.7-http-to-http-different-types-of-responses │ │ │ └── readme.md │ │ ├── 2.1.8-http-to-http-balancing-the-load-in-round-robin │ │ │ └── readme.md │ │ ├── 2.1.9-http-to-http-failover-route-message │ │ │ └── readme.md │ │ ├── pom.xml │ │ └── readme.md │ ├── 2.2-JMS-to-HTTP-protocol-translation-EI-as-JMS-consumer │ │ ├── 2.2.1-ei-as-jms-consumer │ │ │ ├── images │ │ │ │ └── JMS-Consumer.png │ │ │ └── readme.md │ │ └── readme.md │ ├── 2.3-HTTP-to-JMS-protocol-translation-EI-as-JMS-producer │ │ ├── 2.3.1-ei-as-jms-producer │ │ │ ├── images │ │ │ │ └── JMS-producer.png │ │ │ └── readme.md │ │ └── readme.md │ ├── 2.4-Switching-from-TCP-to-HTTP-or-HTTPS │ │ ├── 2.4.1-tcp-to-tcp-protocol-translation │ │ │ └── readme.md │ │ └── readme.md │ ├── 2.5-Switching-from-UDP-to-HTTP-or-HTTPS │ │ ├── 02-synapseConfig │ │ │ ├── artifact.xml │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── synapse-config │ │ │ │ ├── endpoints │ │ │ │ └── EP_HttpMessageWithoutAlteringDownstreamTestHttp.xml │ │ │ │ ├── proxy-services │ │ │ │ ├── 2_1_1_1_Proxy_HttpMessageWithoutAlteringDownstreamTestProxy.xml │ │ │ │ ├── 2_1_1_2_Proxy_HttpMessageWithoutAlteringDownstreamTestProxy.xml │ │ │ │ ├── 2_1_1_3_Proxy_HttpMessageWithoutAlteringDownstreamTestProxy.xml │ │ │ │ ├── 2_1_1_4_Proxy_HttpMessageWithoutAlteringDownstreamTestProxy.xml │ │ │ │ ├── 2_1_1_5_Proxy_HttpMessageWithoutAlteringDownstreamTestProxy.xml │ │ │ │ ├── 2_1_1_6_Proxy_HttpMessageWithoutAlteringDownstreamTestProxy.xml │ │ │ │ ├── 2_1_1_7_Proxy_HttpMessageWithoutAlteringDownstreamTestProxy.xml │ │ │ │ └── 2_1_1_8_Proxy_HttpMessageWithoutAlteringDownstreamTestProxy.xml │ │ │ │ └── sequences │ │ │ │ └── seq_callSoap.xml │ │ ├── 02-synapseConfigCompositeApplication │ │ │ └── 02-synapseConfigCompositeApplication │ │ │ │ └── pom.xml │ │ ├── 2.5.1-udp-to-http-translation │ │ │ └── readme.md │ │ └── readme.md │ ├── 2.6-JMS-Synchronous-Invocations │ │ ├── 2.6.1-jms-quad-channel-invocation │ │ │ ├── images │ │ │ │ └── Quad-channel--synchronous-JMS.png │ │ │ └── readme.md │ │ ├── 2.6.2-dual-channel-invocation │ │ │ ├── images │ │ │ │ └── JMS_Synchronous_Invocations.png │ │ │ └── readme.md │ │ └── readme.md │ ├── 2.7-FTP-transport-listener-to-mail-transport-sender │ │ ├── 2.7.1-vfs-transport-invocation │ │ │ └── readme.md │ │ └── readme.md │ ├── 2.8-Proxy-Services-with-the-MailTo-Transport │ │ ├── 2.8.1-mailto-transport-invocation │ │ │ └── readme.md │ │ └── readme.md │ ├── 2.9-Integration-with-systems-that-communicate-domain-specific-protocols │ │ ├── 2.9.1-http-to-hl7ep │ │ │ ├── 2.9.1.1-Validating messages │ │ │ │ └── readme.md │ │ │ ├── 2.9.1.2-HL7 transport uses a thread pool to manage connections │ │ │ │ └── readme.md │ │ │ ├── 2.9.1.3-Configuring application acknowledgement │ │ │ │ └── readme.md │ │ │ └── readme.md │ │ ├── 2.9.2-fix-to-fix-transport │ │ │ └── readme.md │ │ └── readme.md │ ├── images │ │ └── protocol-switching.png │ ├── pom.xml │ ├── readme.md │ └── resources │ │ └── keystores │ │ ├── key.crt │ │ └── wso2carbon.jks ├── 3-connecting-web-apis-cloud-services │ ├── 3.1-connect-with-cloud-applications │ │ ├── 3.1.1-send-receive-manage-emails-from-gmail │ │ │ └── pom.xml │ │ ├── 3.1.2-manage-salesforce-operations │ │ │ └── pom.xml │ │ ├── 3.1.3-work-with-amazon-s3 │ │ │ └── pom.xml │ │ ├── 3.1.4-work-with-microsoft-azure-storage │ │ │ └── pom.xml │ │ └── pom.xml │ ├── 3.2-connect-on-premise-and-cloud-based-systems │ │ ├── 3.2.1-file-connector │ │ │ └── pom.xml │ │ ├── 3.2.2-kafka-connector │ │ │ └── pom.xml │ │ ├── 3.2.3-sap-by-design │ │ │ └── pom.xml │ │ ├── 3.2.4-db-event-listener │ │ │ └── pom.xml │ │ ├── 3.2.5-ldap-connector │ │ │ └── pom.xml │ │ └── pom.xml │ ├── images │ │ └── connectors.png │ ├── pom.xml │ ├── readme.md │ └── resources │ │ └── keystores │ │ ├── key.crt │ │ └── wso2carbon.jks ├── 4-gateway │ ├── 04-SynapseConfigProject │ │ ├── 04-synapseConfig │ │ │ ├── .project │ │ │ ├── artifact.xml │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── synapse-config │ │ │ │ ├── endpoints │ │ │ │ └── EP_SimpleStockQuoteService.xml │ │ │ │ ├── proxy-services │ │ │ │ ├── 4_1_1_1_10_Proxy_PublishWSDLInline.xml │ │ │ │ ├── 4_1_1_1_11_Proxy_PublishWSDLWithResource.xml │ │ │ │ ├── 4_1_1_1_13_Proxy_UseOriginalWSDL.xml │ │ │ │ ├── 4_1_1_1_14_Proxy_PublishWSDLModifyUserWSDLPortAddress.xml │ │ │ │ ├── 4_1_1_1_1_Proxy_SimplePassThroughTemplate.xml │ │ │ │ ├── 4_1_1_1_2_Proxy_SimpleCustomTemplate.xml │ │ │ │ ├── 4_1_1_1_3_Proxy_SimpleLogForwardTemplate.xml │ │ │ │ ├── 4_1_1_1_4_Proxy_SimpleWSDLProxyTemplate.xml │ │ │ │ ├── 4_1_1_1_5_Proxy_PassThroughWithNamedEP.xml │ │ │ │ ├── 4_1_1_1_6_Proxy_PassThroughProxyEPinTarget.xml │ │ │ │ ├── 4_1_1_1_7_Proxy_PublishWSDLFromRegistry.xml │ │ │ │ ├── 4_1_1_1_8_Proxy_PublishWSDLFromURL.xml │ │ │ │ └── 4_SoapMappingProxy.xml │ │ │ │ └── sequences │ │ │ │ └── Seq_fullLog.xml │ │ ├── 04-synapseConfigCompositeApplication │ │ │ ├── .project │ │ │ └── pom.xml │ │ ├── 04-synapseConfigRegistry │ │ │ ├── .classpath │ │ │ ├── .project │ │ │ ├── SimpleStockQuoteSchema.xsd │ │ │ ├── SimpleStockQuoteSchema2.xsd │ │ │ ├── SimpleStockQuoteService.wsdl │ │ │ ├── SimpleStockQuoteServiceWithImports.wsdl │ │ │ ├── artifact.xml │ │ │ └── pom.xml │ │ └── 4_1_1_1-synapse-configCompositeApplication │ │ │ ├── .project │ │ │ └── pom.xml │ ├── 4.1-Extend-the-reach-for-existing-or-legacy-applications │ │ ├── 4.1.1-Expose-back-ends-exposed-over-HTTP-as-SOAP-service │ │ │ ├── 4.1.1.1-Expose-a-SOAP-service-as-SOAP-service-using-proxy-service │ │ │ │ ├── TestCases.md │ │ │ │ ├── images │ │ │ │ │ ├── 4.1.1.1-Expose-a-SOAP-service-as-SOAP-service-using-proxy-service-sample.png │ │ │ │ │ └── 4.1.1.1-Expose-a-SOAP-service-as-SOAP-service-using-proxy-service.png │ │ │ │ ├── pom.xml │ │ │ │ ├── readme.md │ │ │ │ └── src │ │ │ │ │ └── test │ │ │ │ │ ├── java │ │ │ │ │ └── org │ │ │ │ │ │ └── wso2 │ │ │ │ │ │ └── carbon │ │ │ │ │ │ └── esb │ │ │ │ │ │ └── scenario │ │ │ │ │ │ └── test │ │ │ │ │ │ └── ExposeSOAPasSOAPTest.java │ │ │ │ │ └── resources │ │ │ │ │ ├── artifacts │ │ │ │ │ └── 4_1_1_1-synapse-configCompositeApplication_1.0.0.car │ │ │ │ │ ├── log4j.properties │ │ │ │ │ └── testng.xml │ │ │ ├── 4.1.1.2-Expose-a-SOAP-service-with-different-SOAP-interface-using-proxy-service │ │ │ │ └── readme.md │ │ │ ├── 4.1.1.3-Expose-multiple-SOAP-services-as-a-single-SOAP-service-using-proxy-service │ │ │ │ ├── images │ │ │ │ │ └── 4.1.1.3-Expose-multiple-SOAP-services-as-a-single-SOAP-service-using-proxy-service.png │ │ │ │ └── readme.md │ │ │ ├── 4.1.1.4-Expose-REST-back-end-as-a-SOAP-service-using-proxy-service │ │ │ │ ├── images │ │ │ │ │ └── 4.1.1.4-Expose-REST-back-end-as-a-SOAP-service-using-proxy-service.png │ │ │ │ └── readme.md │ │ │ ├── 4.1.1.5-Expose-multiple-REST-back-ends-as-a-single-SOAP-service-using-proxy-service │ │ │ │ ├── images │ │ │ │ │ └── 4.1.1.5-Expose-multiple-REST-back-ends-as-a-single-SOAP-service-using-proxy-service.png │ │ │ │ └── readme.md │ │ │ ├── 4.1.1.6-Expose-secured-SOAP-back-end-as-open-SOAP-service-using-proxy-service │ │ │ │ ├── images │ │ │ │ │ └── 4.1.1.6-Expose-secured-SOAP-back-end-as-open-SOAP-service-using-proxy-service.png │ │ │ │ └── readme.md │ │ │ ├── 4.1.1.7-Expose-secured-REST-back-end-as-open-SOAP-service-using-proxy-service │ │ │ │ ├── images │ │ │ │ │ └── 4.1.1.7-Expose-secured-REST-back-end-as-open-SOAP-service-using-proxy-service.png │ │ │ │ └── readme.md │ │ │ ├── pom.xml │ │ │ └── readme.md │ │ ├── 4.1.2-Expose-back-ends-exposed-over-HTTP-as-REST-API │ │ │ └── readme.md │ │ ├── 4.1.3-Expose-file-based-systems-over-HTTP │ │ │ └── readme.md │ │ ├── 4.1.4-Expose-back-end-services-based-on-proprietary-protocols-over-standard-protocols │ │ │ └── readme.md │ │ ├── images │ │ │ └── 4.1-Extend-the-reach-for-existing-or-legacy-applications.png │ │ ├── pom.xml │ │ ├── readme.md │ │ └── resources │ │ │ └── artifacts │ │ │ └── scenario_4_1-synapse-configCompositeApplication_1.0.0.car │ ├── 4.2-ESB-as-the-security-gateway │ │ ├── images │ │ │ └── 4.2-ESB-as-the-security-gateway.png │ │ └── readme.md │ ├── 4.3-Using-ESB-as-caching-layer │ │ ├── images │ │ │ └── 4.3-Using-ESB-as-caching-layer.png │ │ └── readme.md │ ├── 4.4-Protecting-back-end-by-request-throttling │ │ ├── images │ │ │ └── 4.4-Protecting-back-end-by-request-throttling.png │ │ └── readme.md │ ├── 4.5-Request-validation │ │ └── readme.md │ ├── 4.6-Request-load-balancing │ │ └── readme.md │ ├── pom.xml │ ├── readme.md │ └── resources │ │ └── keystores │ │ ├── key.crt │ │ └── wso2carbon.jks ├── 5-route-messages-between-systems │ ├── 05-synapseConfigProject │ │ ├── 05-synapseConfig │ │ │ ├── .project │ │ │ ├── artifact.xml │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── synapse-config │ │ │ │ ├── api │ │ │ │ ├── 5_1_API_Routing_messages_based_on_content_of_message_test.xml │ │ │ │ ├── 5_3_1_1_1_API_load_balance_group_test.xml │ │ │ │ ├── 5_3_1_1_2_API_load_balance_group_define_policy_test.xml │ │ │ │ ├── 5_3_1_1_3_API_load_balance_group_define_nothing.xml │ │ │ │ └── 5_XMLMapping.xml │ │ │ │ ├── complex-endpoints │ │ │ │ ├── 1545205230452.xml │ │ │ │ ├── 1545205255907.xml │ │ │ │ ├── 1545308711508.xml │ │ │ │ ├── 1545309943732.xml │ │ │ │ └── {ep.name}.xml │ │ │ │ └── endpoints │ │ │ │ ├── 05_EP_SOAP.xml │ │ │ │ ├── 05_EP_SOAP2.xml │ │ │ │ └── 05_EP_XML.xml │ │ ├── 05-synapseConfigCompositeApplication │ │ │ ├── .project │ │ │ └── pom.xml │ │ ├── 05-synapseConfigRegistry │ │ │ ├── .classpath │ │ │ ├── .project │ │ │ ├── artifact.xml │ │ │ └── pom.xml │ │ └── pom.xml │ ├── 5.1-Route-based-on-the-content-of-the-messages │ │ ├── 5.1.1-Route-messages-based-on-the-given-xpath │ │ │ ├── 5.1.1.1-Using-switch-mediator-on-given-xpath │ │ │ │ ├── TestCases.md │ │ │ │ ├── images │ │ │ │ │ └── message-routing.png │ │ │ │ ├── pom.xml │ │ │ │ ├── readme.md │ │ │ │ └── src │ │ │ │ │ └── test │ │ │ │ │ ├── java │ │ │ │ │ └── org │ │ │ │ │ │ └── wso2 │ │ │ │ │ │ └── carbon │ │ │ │ │ │ └── esb │ │ │ │ │ │ └── scenario │ │ │ │ │ │ └── test │ │ │ │ │ │ └── RoutingBasedOnXpathTest.java │ │ │ │ │ └── resources │ │ │ │ │ ├── artifacts │ │ │ │ │ └── scenario_5_1_1_CompositeApplication_1.0.0.car │ │ │ │ │ ├── log4j.properties │ │ │ │ │ └── testng.xml │ │ │ ├── 5.1.1.2-Using-switch-mediator-on-given-xpath-with-namespace │ │ │ │ └── readme.md │ │ │ ├── 5.1.1.3-Using-filter-mediator-on-given-xpath │ │ │ │ ├── TestCases.md │ │ │ │ ├── images │ │ │ │ │ └── Filter-message.png │ │ │ │ ├── pom.xml │ │ │ │ ├── readme.md │ │ │ │ └── src │ │ │ │ │ └── test │ │ │ │ │ ├── java │ │ │ │ │ └── org │ │ │ │ │ │ └── wso2 │ │ │ │ │ │ └── carbon │ │ │ │ │ │ └── esb │ │ │ │ │ │ └── scenario │ │ │ │ │ │ └── test │ │ │ │ │ │ └── RoutingBasedOnXpathWithFilterMTest.java │ │ │ │ │ └── resources │ │ │ │ │ ├── artifacts │ │ │ │ │ └── scenario_5_1_1_CompositeApplication_1.0.0.car │ │ │ │ │ ├── log4j.properties │ │ │ │ │ └── testng.xml │ │ │ ├── 5.1.1.4-Using-filter-mediator-on-given-xpath-with-namespace │ │ │ │ └── readme.md │ │ │ ├── pom.xml │ │ │ └── readme.md │ │ ├── 5.1.2-Route-messages-based-on-the-given-regular-expression │ │ │ ├── 5.1.2.1-Using-switch-mediator-on-given-regular-expressions │ │ │ │ ├── TestCases.md │ │ │ │ ├── pom.xml │ │ │ │ ├── readme.md │ │ │ │ └── src │ │ │ │ │ └── test │ │ │ │ │ ├── java │ │ │ │ │ └── org │ │ │ │ │ │ └── wso2 │ │ │ │ │ │ └── carbon │ │ │ │ │ │ └── esb │ │ │ │ │ │ └── scenario │ │ │ │ │ │ └── test │ │ │ │ │ │ └── RoutingBasedOnRegularExpressionTest.java │ │ │ │ │ └── resources │ │ │ │ │ ├── artifacts │ │ │ │ │ └── scenario_5_1_1_CompositeApplication_1.0.0.car │ │ │ │ │ ├── log4j.properties │ │ │ │ │ └── testng.xml │ │ │ ├── 5.1.2.2-Using-filter-mediator-on-given-regular-expressions │ │ │ │ └── readme.md │ │ │ ├── pom.xml │ │ │ └── readme.md │ │ ├── 5.1.3-Route-messages-based-on-the-request-with-json-format │ │ │ └── readme.md │ │ ├── 5.1.4-Route-messages-based-on-the-request-with-csv-format │ │ │ └── readme.md │ │ ├── 5.1.5-Route-messages-based-on-the-given-endpoint │ │ │ └── readme.md │ │ ├── 5.1.6-Route-messages-based-on-the-condtions │ │ │ └── readme.md │ │ ├── images │ │ │ ├── 5-Message-Router-behavior.png │ │ │ └── 5.1-Route-based-on-the-content-of-the-messages.png │ │ ├── pom.xml │ │ └── readme.md │ ├── 5.3-load-balance-messages-among-systems │ │ ├── 5.3.1-load-balance-messages-received-over-http │ │ │ ├── 5.3.1.1-load-balance-with-load-balance-group │ │ │ │ ├── TestCases.md │ │ │ │ ├── pom.xml │ │ │ │ ├── readme.md │ │ │ │ └── src │ │ │ │ │ └── test │ │ │ │ │ ├── java │ │ │ │ │ └── org │ │ │ │ │ │ └── wso2 │ │ │ │ │ │ └── carbon │ │ │ │ │ │ └── ei │ │ │ │ │ │ └── scenario │ │ │ │ │ │ └── test │ │ │ │ │ │ └── LoadBalanceEndpointsWithLoadBalanceGroupTest.java │ │ │ │ │ └── resources │ │ │ │ │ ├── artifacts │ │ │ │ │ └── 4_1_1_1-synapse-configCompositeApplication_1.0.0.car │ │ │ │ │ ├── keystores │ │ │ │ │ ├── key.crt │ │ │ │ │ └── wso2carbon.jks │ │ │ │ │ ├── log4j.properties │ │ │ │ │ └── testng.xml │ │ │ └── pom.xml │ │ └── pom.xml │ ├── images │ │ └── Message-Router-behavior.png │ ├── pom.xml │ ├── readme.md │ └── resources │ │ └── keystores │ │ ├── key.crt │ │ └── wso2carbon.jks ├── 6-service-orchestration │ ├── 6.1-synchronous-service-orchestration │ │ └── readme.md │ ├── 6.2-ssynchronous-service-orchestration │ │ └── readme.md │ ├── images │ │ ├── ServiceOrchestration.png │ │ └── ServiceOrchestration2.png │ └── readme.md ├── 7-connecting-with-packaged-applications │ ├── 7.1-connecting-with-SAP │ │ ├── 7.1.1-send-an-idoc-to-SAP │ │ │ └── pom.xml │ │ ├── 7.1.2-receive-an-idoc-from-SAP-and-forward-to-an-http-backend │ │ │ └── pom.xml │ │ ├── 7.1.3-call-a-BAPI-function-in-SAP │ │ │ └── pom.xml │ │ ├── 7.1.4-receive-a-BAPI-call-from-SAP │ │ │ └── pom.xml │ │ ├── 7.1.5-receive-BAPI-and-IDOC-from-SAP │ │ │ └── pom.xml │ │ ├── pom.xml │ │ └── readme.md │ ├── images │ │ └── sap_integration.png │ ├── pom.xml │ ├── readme.md │ └── resources │ │ └── keystores │ │ ├── key.crt │ │ └── wso2carbon.jks ├── 8-connect-devices-to-enterprise │ ├── 8.1-integration-with-mqtt │ │ ├── 8.1.1-ei-as-a-mqtt-subscriber │ │ │ ├── pom.xml │ │ │ └── readme.md │ │ ├── 8.1.2-ei-as-a-mqtt-events-publisher │ │ │ ├── pom.xml │ │ │ └── readme.md │ │ ├── pom.xml │ │ └── readme.md │ ├── images │ │ └── Device-integration.png │ ├── pom.xml │ └── readme.md ├── 9-data-integration │ ├── 9.1-Bringing-data-from-storage-to-screen-with-ease │ │ ├── 9.1.1-Expose-data-as-a-SOAP-service │ │ │ ├── 9.1.1.1-Expose-basic-CRUD-operations │ │ │ │ └── readme.md │ │ │ ├── 9.1.1.10-Passing-default-values-for-parameters-where-values-are-not-defined-in-the-request │ │ │ │ └── readme.md │ │ │ ├── 9.1.1.11-Supporting-different-data-types │ │ │ │ └── readme.md │ │ │ ├── 9.1.1.2-Passing-parameter-inputs-to-operation │ │ │ │ └── readme.md │ │ │ ├── 9.1.1.3-Selectively-map-result-data-columns-to-output-response │ │ │ │ └── readme.md │ │ │ ├── 9.1.1.4-Validating-inputs-parameters-to-the-query │ │ │ │ └── readme.md │ │ │ ├── 9.1.1.5-Inserting-multiple-records-in-a-single-operation │ │ │ │ └── readme.md │ │ │ ├── 9.1.1.6-Nested-output-read │ │ │ │ └── readme.md │ │ │ ├── 9.1.1.7-Manipulating-namespaces │ │ │ │ └── readme.md │ │ │ ├── 9.1.1.8-Control-viewing-data-based-on-the-user-role │ │ │ │ └── readme.md │ │ │ ├── 9.1.1.9-Invoking-multiple-operations-in-a-single-request │ │ │ │ └── readme.md │ │ │ └── readme.md │ │ ├── 9.1.2-Expose-data-as-a-REST-service │ │ │ ├── 9.1.2.1-Expose-basic-CRUD-operations │ │ │ │ └── readme.md │ │ │ ├── 9.1.2.10-Supporting-different-data-types │ │ │ │ └── readme.md │ │ │ ├── 9.1.2.2-Passing-parameter-inputs-to-operation │ │ │ │ └── readme.md │ │ │ ├── 9.1.2.3-Selectively-map-result-data-columns-to-output-response │ │ │ │ └── readme.md │ │ │ ├── 9.1.2.4-Validating-inputs-parameters-to-the-query │ │ │ │ └── readme.md │ │ │ ├── 9.1.2.5-Inserting-multiple-records-in-a-single-operation │ │ │ │ └── readme.md │ │ │ ├── 9.1.2.6-Nested-output-read │ │ │ │ └── readme.md │ │ │ ├── 9.1.2.7-Control-viewing-data-based-on-the-user-role │ │ │ │ └── readme.md │ │ │ ├── 9.1.2.8-Invoking-multiple-operations-in-a-single-request │ │ │ │ └── readme.md │ │ │ ├── 9.1.2.9-Passing-default-values-for-parameters-where-values-are-not-defined-in-the-request │ │ │ │ └── readme.md │ │ │ └── readme.md │ │ ├── 9.1.3-Receiving-notifications-for-events │ │ │ ├── 9.1.3.1-When-an-operation-with-particular-argument-is-invoked │ │ │ │ └── readme.md │ │ │ ├── 9.1.3.2-when-a-specific-response-is-returned-for-a-parameter │ │ │ │ └── readme.md │ │ │ └── readme.md │ │ ├── images │ │ │ └── 9.1-bringing-data-from-storage-to-screen-with-ease.png │ │ └── readme.md │ └── readme.md ├── backend-service │ ├── .gitignore │ ├── ballerinaService │ │ ├── resources │ │ │ ├── csv │ │ │ │ ├── request │ │ │ │ │ ├── 1_4_1_3.csv │ │ │ │ │ ├── 1_4_1_6.csv │ │ │ │ │ └── 1_4_1_7.csv │ │ │ │ └── response │ │ │ │ │ ├── 1_4_1_3.csv │ │ │ │ │ ├── 1_4_1_6.csv │ │ │ │ │ └── 1_4_1_7.csv │ │ │ ├── json │ │ │ │ ├── request │ │ │ │ │ ├── 1_1_1_1_1.json │ │ │ │ │ ├── 1_1_2_1_1.json │ │ │ │ │ ├── 1_1_2_3_1.json │ │ │ │ │ ├── 1_1_3_1_1.json │ │ │ │ │ ├── 1_1_3_3_1.json │ │ │ │ │ ├── 1_2_1_1_1.json │ │ │ │ │ ├── 1_2_2_1_1.json │ │ │ │ │ ├── 1_2_2_1_2.json │ │ │ │ │ ├── 1_2_2_1_3.json │ │ │ │ │ ├── 1_2_2_1_4.json │ │ │ │ │ ├── 1_2_2_3_1.json │ │ │ │ │ ├── 1_2_3_1_1.json │ │ │ │ │ ├── 1_4_1_1.json │ │ │ │ │ ├── 1_4_1_5.json │ │ │ │ │ ├── 1_4_1_9.json │ │ │ │ │ ├── 2_1_1_23.json │ │ │ │ │ └── loadBalanceMsg.json │ │ │ │ └── response │ │ │ │ │ ├── 1_1_1_1_1.json │ │ │ │ │ ├── 1_1_2_1_1.json │ │ │ │ │ ├── 1_1_2_3_1.json │ │ │ │ │ ├── 1_1_3_1_1.json │ │ │ │ │ ├── 1_1_3_3_1.json │ │ │ │ │ ├── 1_2_1_1_1.json │ │ │ │ │ ├── 1_2_2_1_1.json │ │ │ │ │ ├── 1_2_2_1_2.json │ │ │ │ │ ├── 1_2_2_1_3.json │ │ │ │ │ ├── 1_2_2_1_4.json │ │ │ │ │ ├── 1_2_2_3_1.json │ │ │ │ │ ├── 1_2_3_1_1.json │ │ │ │ │ ├── 1_4_1_1.json │ │ │ │ │ ├── 1_4_1_5.json │ │ │ │ │ ├── 1_4_1_9.json │ │ │ │ │ ├── 2_1_1_23.json │ │ │ │ │ ├── loadBalanceMsg.json │ │ │ │ │ └── sampleJsonResponse.json │ │ │ └── xml │ │ │ │ ├── request │ │ │ │ ├── 1_3_2_1_1.xml │ │ │ │ ├── 1_3_2_2_1.xml │ │ │ │ ├── 1_3_3_1_1.xml │ │ │ │ ├── 1_4_1_2.xml │ │ │ │ ├── 1_4_1_4.xml │ │ │ │ ├── 1_4_1_8.xml │ │ │ │ ├── 1_6_1_1.xml │ │ │ │ ├── 1_6_1_2.xml │ │ │ │ ├── 1_6_1_3.xml │ │ │ │ ├── 1_6_1_4.xml │ │ │ │ ├── 2_1_1_1.xml │ │ │ │ ├── 2_1_1_2.xml │ │ │ │ ├── 2_1_1_3.xml │ │ │ │ ├── 2_1_1_4.xml │ │ │ │ ├── 2_1_1_5.xml │ │ │ │ ├── 2_1_1_6.xml │ │ │ │ ├── 2_1_1_7.xml │ │ │ │ ├── 2_1_1_8.xml │ │ │ │ ├── 5_1_2_1_2.xml │ │ │ │ ├── 5_1_2_1_3.xml │ │ │ │ ├── 5_x.xml │ │ │ │ └── basic_xml.xml │ │ │ │ └── response │ │ │ │ ├── 1_3_2_1_1.xml │ │ │ │ ├── 1_3_2_2_1.xml │ │ │ │ ├── 1_3_3_1_1.xml │ │ │ │ ├── 1_4_1_2.xml │ │ │ │ ├── 1_4_1_4.xml │ │ │ │ ├── 1_4_1_8.xml │ │ │ │ ├── 1_6_1_1.xml │ │ │ │ ├── 1_6_1_2.xml │ │ │ │ ├── 1_6_1_3.xml │ │ │ │ ├── 1_6_1_4.xml │ │ │ │ ├── 2_1_1_1.xml │ │ │ │ ├── 2_1_1_2.xml │ │ │ │ ├── 2_1_1_3.xml │ │ │ │ ├── 2_1_1_4.xml │ │ │ │ ├── 2_1_1_5.xml │ │ │ │ ├── 2_1_1_6.xml │ │ │ │ ├── 2_1_1_7.xml │ │ │ │ ├── 2_1_1_8.xml │ │ │ │ ├── 5_x.xml │ │ │ │ └── basic_xml.xml │ │ └── src │ │ │ ├── .ballerina │ │ │ └── .gitignore │ │ │ ├── .gitignore │ │ │ ├── Ballerina.toml │ │ │ ├── README.md │ │ │ ├── facilitator │ │ │ ├── CSVFacilitator.bal │ │ │ ├── JSONFacilitator.bal │ │ │ ├── TImeoutFacilitator.bal │ │ │ ├── TextFacilitator.bal │ │ │ └── XMLFacilitator.bal │ │ │ ├── service.sh │ │ │ └── testServices │ │ │ └── testService.bal │ ├── clear_invocations.sh │ ├── schedule_clear_invocations.sh │ ├── schedule_sync_resources.sh │ ├── start_rest_services.sh │ ├── stockQuoteService │ │ └── axis2.war │ └── sync_resources.sh ├── build_artifacts.sh ├── code-coverage │ ├── code-coverage.sh │ └── pom.xml ├── deployment.properties ├── pom.xml ├── prepare_artifacts.sh ├── readme.md ├── scenarios-commons │ ├── pom.xml │ └── src │ │ └── main │ │ ├── java │ │ └── org │ │ │ └── wso2 │ │ │ └── carbon │ │ │ └── esb │ │ │ └── scenario │ │ │ └── test │ │ │ └── common │ │ │ ├── AuthenticatorClient.java │ │ │ ├── Request.java │ │ │ ├── ScenarioConstants.java │ │ │ ├── ScenarioTestBase.java │ │ │ ├── StringUtil.java │ │ │ ├── elasticsearch │ │ │ └── ElasticSearchClient.java │ │ │ ├── ftp │ │ │ └── FTPClientWrapper.java │ │ │ ├── http │ │ │ ├── HTTPUtils.java │ │ │ ├── HttpConstants.java │ │ │ ├── RESTClient.java │ │ │ └── SOAPClient.java │ │ │ ├── jms │ │ │ └── ActiveMQJMSClient.java │ │ │ ├── testng │ │ │ └── listeners │ │ │ │ ├── TestLoggingListener.java │ │ │ │ └── TestPrepExecutionListener.java │ │ │ └── utils │ │ │ ├── FileUtils.java │ │ │ ├── JsonUtils.java │ │ │ ├── XMLComparator.java │ │ │ └── XMLUtils.java │ │ └── resources │ │ ├── keystores │ │ ├── key.crt │ │ └── wso2carbon.jks │ │ └── lib │ │ ├── 14.2-customJavaTaskToRunWithInterval-6.4.0.jar │ │ └── groovy-all-2.2.0.jar └── test.sh ├── pull_request_template.md └── samples ├── APITesting ├── deployment │ ├── deployment.toml │ └── docker │ │ ├── Dockerfile │ │ └── resources │ │ ├── client-truststore.jks │ │ └── wso2carbon.jks ├── pom.xml └── src │ ├── main │ └── wso2mi │ │ ├── artifacts │ │ └── apis │ │ │ └── RESTApi.xml │ │ └── resources │ │ └── metadata │ │ ├── RESTApi_metadata.yaml │ │ └── RESTApi_swagger.yaml │ └── test │ └── wso2mi │ └── ApiTestSuite.xml ├── AnalyticsSampleDataProvider ├── README.md ├── pom.xml └── src │ └── main │ └── java │ └── org │ └── wso2 │ └── ei │ └── SampleCustomDataProvider.java ├── ContentBasedRouting ├── deployment │ ├── deployment.toml │ └── docker │ │ ├── Dockerfile │ │ └── resources │ │ ├── client-truststore.jks │ │ └── wso2carbon.jks ├── pom.xml └── src │ ├── main │ └── wso2mi │ │ ├── artifacts │ │ ├── apis │ │ │ └── ArithmaticOperationServiceAPI.xml │ │ └── endpoints │ │ │ ├── NumberAdditionEP.xml │ │ │ └── NumberDivisionEP.xml │ │ └── resources │ │ └── metadata │ │ ├── ArithmaticOperationServiceAPI_metadata.yaml │ │ └── ArithmaticOperationServiceAPI_swagger.yaml │ └── test │ └── wso2mi │ └── ArithmaticOperationServiceTest.xml ├── DatabasePolling ├── deployment │ ├── deployment.toml │ └── docker │ │ ├── Dockerfile │ │ └── resources │ │ ├── client-truststore.jks │ │ └── wso2carbon.jks ├── pom.xml └── src │ └── main │ └── wso2mi │ └── artifacts │ ├── data-services │ └── DoctorsDataService.dbs │ ├── endpoints │ └── DoctorsDataServiceEP.xml │ ├── sequences │ └── DoctorsRecordsSyncSeq.xml │ └── tasks │ └── DoctorsRecordsSyncTask.xml ├── EmailService ├── deployment │ ├── deployment.toml │ └── docker │ │ ├── Dockerfile │ │ └── resources │ │ ├── client-truststore.jks │ │ └── wso2carbon.jks ├── pom.xml └── src │ └── main │ └── wso2mi │ ├── artifacts │ ├── apis │ │ └── EmailService.xml │ └── local-entries │ │ ├── imapsconnection.xml │ │ └── smtpsconnection.xml │ └── resources │ ├── connectors │ └── email-connector-1.0.0.zip │ └── metadata │ ├── EmailService_metadata.yaml │ └── EmailService_swagger.yaml ├── ExceptionHandling ├── deployment │ ├── deployment.toml │ └── docker │ │ ├── Dockerfile │ │ └── resources │ │ ├── client-truststore.jks │ │ └── wso2carbon.jks ├── pom.xml └── src │ ├── main │ └── wso2mi │ │ ├── artifacts │ │ ├── apis │ │ │ └── TimeoutAPI.xml │ │ ├── endpoints │ │ │ └── DelayHttpEP.xml │ │ └── sequences │ │ │ └── TimeoutFailureSeq.xml │ │ └── resources │ │ └── metadata │ │ ├── TimeoutAPI_metadata.yaml │ │ └── TimeoutAPI_swagger.yaml │ └── test │ └── wso2mi │ └── TimeoutAPITest.xml ├── FetchSalesForceAccounts ├── deployment │ ├── deployment.toml │ └── docker │ │ ├── Dockerfile │ │ └── resources │ │ ├── client-truststore.jks │ │ └── wso2carbon.jks ├── pom.xml └── src │ └── main │ └── wso2mi │ ├── artifacts │ ├── apis │ │ └── SalesForceAccountServiceAPI.xml │ └── local-entries │ │ └── SalesforceConnection1.xml │ └── resources │ ├── connectors │ └── salesforcerest-connector-2.0.0.zip │ └── metadata │ ├── SalesForceAccountServiceAPI_metadata.yaml │ └── SalesForceAccountServiceAPI_swagger.yaml ├── FileTransfer ├── deployment │ ├── deployment.toml │ └── docker │ │ ├── Dockerfile │ │ └── resources │ │ ├── client-truststore.jks │ │ └── wso2carbon.jks ├── pom.xml └── src │ └── main │ └── wso2mi │ └── artifacts │ ├── inbound-endpoints │ └── StudentDataFileProcessInboundEP.xml │ └── sequences │ ├── StudentDataFileErrorSeq.xml │ └── StudentDataFileProcessSeq.xml ├── GuaranteedDelivery ├── deployment │ ├── deployment.toml │ └── docker │ │ ├── Dockerfile │ │ └── resources │ │ ├── client-truststore.jks │ │ └── wso2carbon.jks ├── pom.xml └── src │ └── main │ └── wso2mi │ ├── artifacts │ ├── apis │ │ ├── MockAPI.xml │ │ └── UserRegistrationAPI.xml │ ├── endpoints │ │ └── UserRegistrationEP.xml │ ├── message-processors │ │ └── UserRegistrationMP.xml │ ├── message-stores │ │ └── UserRegistrationMS.xml │ └── sequences │ │ ├── UserRegistrationErrorSeq.xml │ │ └── UserRegistrationResponseSeq.xml │ └── resources │ └── metadata │ ├── MockAPI_metadata.yaml │ ├── MockAPI_swagger.yaml │ ├── UserRegistrationAPI_metadata.yaml │ └── UserRegistrationAPI_swagger.yaml ├── HeaderBasedRouting ├── deployment │ ├── deployment.toml │ └── docker │ │ ├── Dockerfile │ │ └── resources │ │ ├── client-truststore.jks │ │ └── wso2carbon.jks ├── pom.xml └── src │ ├── main │ └── wso2mi │ │ ├── artifacts │ │ ├── apis │ │ │ └── CalculatorAPI.xml │ │ └── endpoints │ │ │ ├── CalculatorAddEP.xml │ │ │ └── CalculatorDivideEP.xml │ │ └── resources │ │ └── metadata │ │ ├── CalculatorAPI_metadata.yaml │ │ └── CalculatorAPI_swagger.yaml │ └── test │ └── wso2mi │ └── CalculatorAPITest.xml ├── HelloDocker ├── deployment │ ├── deployment.toml │ └── docker │ │ ├── Dockerfile │ │ └── resources │ │ ├── client-truststore.jks │ │ └── wso2carbon.jks ├── pom.xml └── src │ ├── main │ └── wso2mi │ │ ├── artifacts │ │ └── apis │ │ │ └── HelloWorld.xml │ │ └── resources │ │ └── metadata │ │ ├── HelloWorld_metadata.yaml │ │ └── HelloWorld_swagger.yaml │ └── test │ └── wso2mi │ └── HelloWorldTest.xml ├── HelloWorldService ├── deployment │ ├── deployment.toml │ └── docker │ │ ├── Dockerfile │ │ └── resources │ │ ├── client-truststore.jks │ │ └── wso2carbon.jks ├── pom.xml └── src │ ├── main │ └── wso2mi │ │ ├── artifacts │ │ └── apis │ │ │ └── HelloWorld.xml │ │ └── resources │ │ └── metadata │ │ ├── HelloWorld_metadata.yaml │ │ └── HelloWorld_swagger.yaml │ └── test │ └── wso2mi │ └── HelloWorldTest.xml ├── JMSIntegration ├── deployment │ ├── deployment.toml │ └── docker │ │ ├── Dockerfile │ │ └── resources │ │ ├── client-truststore.jks │ │ └── wso2carbon.jks ├── pom.xml └── src │ └── main │ └── wso2mi │ ├── artifacts │ ├── apis │ │ └── OrderPaymentServiceAPI.xml │ ├── endpoints │ │ └── OrderPaymentQueueEP.xml │ ├── inbound-endpoints │ │ └── OrderPaymentQueueInboundEP.xml │ └── sequences │ │ ├── OrderPaymentQueueErrorSeq.xml │ │ └── OrderPaymentQueueProcessSeq.xml │ └── resources │ └── metadata │ ├── OrderPaymentServiceAPI_metadata.yaml │ └── OrderPaymentServiceAPI_swagger.yaml ├── JSONtoXMLMapping ├── deployment │ ├── deployment.toml │ └── docker │ │ ├── Dockerfile │ │ └── resources │ │ ├── client-truststore.jks │ │ └── wso2carbon.jks ├── pom.xml └── src │ └── main │ └── wso2mi │ ├── artifacts │ └── apis │ │ └── SalesforceLeads.xml │ └── resources │ ├── metadata │ ├── SalesforceLeads_metadata.yaml │ └── SalesforceLeads_swagger.yaml │ └── registry │ ├── artifact.xml │ └── gov │ └── datamapper │ └── SalesforceLeadsMappingConfig │ ├── SalesforceLeadsMappingConfig.ts │ └── dm-utils.ts ├── KafkaConsumerAndProducer ├── deployment │ ├── deployment.toml │ ├── docker │ │ ├── Dockerfile │ │ └── resources │ │ │ ├── client-truststore.jks │ │ │ └── wso2carbon.jks │ └── libs │ │ └── org.apache.synapse.kafka.poll-1.2.3.jar ├── pom.xml └── src │ └── main │ └── wso2mi │ ├── artifacts │ ├── apis │ │ └── WeatherDataPublishAPI.xml │ ├── inbound-endpoints │ │ └── WeatherDataTransmitInboundEP.xml │ ├── local-entries │ │ └── KafkaConnection.xml │ ├── proxy-services │ │ └── WeatherDataPublishService.xml │ └── sequences │ │ ├── WeatherDataErrorSeq.xml │ │ └── WeatherDataProcessSeq.xml │ └── resources │ ├── connectors │ └── kafkaTransport-connector-3.2.0.zip │ └── metadata │ ├── WeatherDataPublishAPI_metadata.yaml │ ├── WeatherDataPublishAPI_swagger.yaml │ └── WeatherDataPublishService_proxy_metadata.yaml ├── MessageFiltering ├── deployment │ ├── deployment.toml │ └── docker │ │ ├── Dockerfile │ │ └── resources │ │ ├── client-truststore.jks │ │ └── wso2carbon.jks ├── pom.xml └── src │ ├── main │ └── wso2mi │ │ ├── artifacts │ │ ├── apis │ │ │ └── PhoneVerifyAPI.xml │ │ └── endpoints │ │ │ └── PhoneVerifyEP.xml │ │ └── resources │ │ └── metadata │ │ ├── PhoneVerifyAPI_metadata.yaml │ │ └── PhoneVerifyAPI_swagger.yaml │ └── test │ ├── resources │ └── mock-services │ │ └── PhoneVerifyEPMockService.xml │ └── wso2mi │ └── PhoneVerifyAPITest.xml ├── PeriodicalScheduledTasks ├── deployment │ ├── deployment.toml │ └── docker │ │ ├── Dockerfile │ │ └── resources │ │ ├── client-truststore.jks │ │ └── wso2carbon.jks ├── pom.xml └── src │ └── main │ └── wso2mi │ └── artifacts │ ├── endpoints │ └── PersonRecordEP.xml │ ├── sequences │ └── PersonRecordSeq.xml │ └── tasks │ └── PersonRecordRetrieveTask.xml ├── ProtocolSwitching ├── deployment │ ├── deployment.toml │ └── docker │ │ ├── Dockerfile │ │ └── resources │ │ ├── client-truststore.jks │ │ └── wso2carbon.jks ├── pom.xml └── src │ └── main │ └── wso2mi │ ├── artifacts │ ├── apis │ │ └── StudentRegistrationAPI.xml │ └── endpoints │ │ └── StudentQueueEP.xml │ └── resources │ └── metadata │ ├── StudentRegistrationAPI_metadata.yaml │ └── StudentRegistrationAPI_swagger.yaml ├── ProxyingaRESTService ├── deployment │ ├── deployment.toml │ └── docker │ │ └── Dockerfile ├── pom.xml └── src │ ├── main │ └── wso2mi │ │ ├── artifacts │ │ ├── apis │ │ │ └── UserInfoRestAPI.xml │ │ └── endpoints │ │ │ └── UsersHttpEP.xml │ │ └── resources │ │ └── metadata │ │ ├── UserInfoRestAPI_metadata.yaml │ │ └── UserInfoRestAPI_swagger.yaml │ └── test │ ├── resources │ └── mock-services │ │ └── ProxyingRESTMockService.xml │ └── wso2mi │ └── UserInfoRestAPITest.xml ├── ProxyingaSOAPService ├── deployment │ ├── deployment.toml │ └── docker │ │ └── Dockerfile ├── pom.xml └── src │ ├── main │ └── wso2mi │ │ ├── artifacts │ │ ├── endpoints │ │ │ └── EchoSoapEP.xml │ │ └── proxy-services │ │ │ ├── ProxyForEchoService.xml │ │ │ └── echo.xml │ │ └── resources │ │ └── metadata │ │ ├── ProxyForEchoService_proxy_metadata.yaml │ │ └── echo_proxy_metadata.yaml │ └── test │ └── wso2mi │ └── ProxyForEchoServiceTest.xml ├── RESTDataService ├── deployment │ ├── deployment.toml │ └── docker │ │ ├── Dockerfile │ │ └── resources │ │ ├── client-truststore.jks │ │ └── wso2carbon.jks ├── pom.xml └── src │ └── main │ └── wso2mi │ └── artifacts │ └── data-services │ └── RESTDataService.dbs ├── RESTtoSOAPConversion ├── deployment │ ├── deployment.toml │ └── docker │ │ ├── Dockerfile │ │ └── resources │ │ ├── client-truststore.jks │ │ └── wso2carbon.jks ├── pom.xml └── src │ ├── main │ └── wso2mi │ │ ├── artifacts │ │ ├── apis │ │ │ └── CityInformationAPI.xml │ │ └── endpoints │ │ │ └── CityLookupEP.xml │ │ └── resources │ │ └── metadata │ │ ├── CityInformationAPI_metadata.yaml │ │ └── CityInformationAPI_swagger.yaml │ └── test │ └── wso2mi │ └── CityInformationAPITest.xml ├── RabbitMQIntegration ├── deployment │ ├── deployment.toml │ └── docker │ │ ├── Dockerfile │ │ └── resources │ │ ├── client-truststore.jks │ │ └── wso2carbon.jks ├── pom.xml └── src │ └── main │ └── wso2mi │ ├── artifacts │ ├── endpoints │ │ └── SalesOrderQueueEP.xml │ ├── inbound-endpoints │ │ └── SalesOrderQueueInboundEP.xml │ ├── proxy-services │ │ └── SalesOrderAddService.xml │ └── sequences │ │ ├── SalesOrderQueueErrorSeq.xml │ │ └── SalesOrderQueueProcessSeq.xml │ └── resources │ └── metadata │ └── SalesOrderAddService_proxy_metadata.yaml ├── ScatterGatherIntegrationPattern ├── deployment │ ├── deployment.toml │ └── docker │ │ └── Dockerfile ├── pom.xml └── src │ ├── main │ └── wso2mi │ │ ├── artifacts │ │ ├── apis │ │ │ └── MissionServiceAPI.xml │ │ └── endpoints │ │ │ ├── MissionEP1.xml │ │ │ ├── MissionEP2.xml │ │ │ └── MissionEP3.xml │ │ └── resources │ │ └── metadata │ │ ├── MissionServiceAPI_metadata.yaml │ │ └── MissionServiceAPI_swagger.yaml │ └── test │ ├── resources │ └── mock-services │ │ ├── MissionEP1MockService.xml │ │ ├── MissionEP2MockService.xml │ │ └── MissionEP3MockService.xml │ └── wso2mi │ └── MissionServiceTest.xml ├── StudentsDataService ├── deployment │ ├── deployment.toml │ └── docker │ │ ├── Dockerfile │ │ └── resources │ │ ├── client-truststore.jks │ │ └── wso2carbon.jks ├── pom.xml └── src │ └── main │ └── wso2mi │ └── artifacts │ └── data-services │ └── StudentDataService.dbs ├── UnitTestTutorial ├── deployment │ ├── deployment.toml │ └── docker │ │ ├── Dockerfile │ │ └── resources │ │ ├── client-truststore.jks │ │ └── wso2carbon.jks ├── pom.xml └── src │ ├── main │ └── wso2mi │ │ ├── artifacts │ │ ├── apis │ │ │ └── business-logic.xml │ │ └── sequences │ │ │ ├── ErrorHandling.xml │ │ │ ├── firstSubFlow.xml │ │ │ ├── secondSubFlow.xml │ │ │ └── secondaryFlow.xml │ │ └── resources │ │ └── metadata │ │ ├── business-logic_metadata.yaml │ │ └── business-logic_swagger.yaml │ └── test │ └── wso2mi │ ├── businessLogicTestSuite.xml │ ├── fisrtSubFlowTestSuite.xml │ ├── secondSubFlowTestSuite.xml │ └── secondaryFlowTestSuite.xml ├── XMLToJSONTransformation ├── deployment │ ├── deployment.toml │ └── docker │ │ ├── Dockerfile │ │ └── resources │ │ ├── client-truststore.jks │ │ └── wso2carbon.jks ├── pom.xml └── src │ ├── main │ └── wso2mi │ │ ├── artifacts │ │ ├── apis │ │ │ └── ScienceLabAPI.xml │ │ └── endpoints │ │ │ └── ScienceLabEP.xml │ │ └── resources │ │ └── metadata │ │ ├── ScienceLabAPI_metadata.yaml │ │ └── ScienceLabAPI_swagger.yaml │ └── test │ ├── resources │ └── mock-services │ │ └── XmlToJsonMockService.xml │ └── wso2mi │ └── ScienceLabAPITest.xml └── XMLtoJSONMapping ├── deployment ├── deployment.toml └── docker │ ├── Dockerfile │ └── resources │ ├── client-truststore.jks │ └── wso2carbon.jks ├── pom.xml └── src └── main └── wso2mi ├── artifacts └── apis │ └── EngineerEmployeeServiceAPI.xml └── resources ├── metadata ├── EngineerEmployeeServiceAPI_metadata.yaml └── EngineerEmployeeServiceAPI_swagger.yaml └── registry ├── artifact.xml └── gov └── datamapper └── EmployeeToEngineerMappingConfig ├── EmployeeToEngineerMappingConfig.ts └── dm-utils.ts /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/.github/ISSUE_TEMPLATE/bug.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/improvement.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/.github/ISSUE_TEMPLATE/improvement.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/new-feature.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/.github/ISSUE_TEMPLATE/new-feature.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/task.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/.github/ISSUE_TEMPLATE/task.yml -------------------------------------------------------------------------------- /.github/workflows/all-tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/.github/workflows/all-tests.yml -------------------------------------------------------------------------------- /.github/workflows/cluster-tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/.github/workflows/cluster-tests.yml -------------------------------------------------------------------------------- /.github/workflows/coverage.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/.github/workflows/coverage.yml -------------------------------------------------------------------------------- /.github/workflows/jdk-17-tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/.github/workflows/jdk-17-tests.yml -------------------------------------------------------------------------------- /.github/workflows/jdk-21-tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/.github/workflows/jdk-21-tests.yml -------------------------------------------------------------------------------- /.github/workflows/smoke-tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/.github/workflows/smoke-tests.yml -------------------------------------------------------------------------------- /.github/workflows/windows-tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/.github/workflows/windows-tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/LICENSE -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/SECURITY.md -------------------------------------------------------------------------------- /codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/codecov.yml -------------------------------------------------------------------------------- /components/business-adaptors/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/components/business-adaptors/pom.xml -------------------------------------------------------------------------------- /components/crypto-service/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/components/crypto-service/pom.xml -------------------------------------------------------------------------------- /components/data/data-services/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/components/data/data-services/pom.xml -------------------------------------------------------------------------------- /components/data/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/components/data/pom.xml -------------------------------------------------------------------------------- /components/javax.cache/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/components/javax.cache/pom.xml -------------------------------------------------------------------------------- /components/javax.cache/src/main/java/javax/cache/Cache.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/components/javax.cache/src/main/java/javax/cache/Cache.java -------------------------------------------------------------------------------- /components/javax.cache/src/main/java/javax/cache/CacheBuilder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/components/javax.cache/src/main/java/javax/cache/CacheBuilder.java -------------------------------------------------------------------------------- /components/javax.cache/src/main/java/javax/cache/CacheException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/components/javax.cache/src/main/java/javax/cache/CacheException.java -------------------------------------------------------------------------------- /components/javax.cache/src/main/java/javax/cache/CacheLifecycle.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/components/javax.cache/src/main/java/javax/cache/CacheLifecycle.java -------------------------------------------------------------------------------- /components/javax.cache/src/main/java/javax/cache/CacheLoader.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/components/javax.cache/src/main/java/javax/cache/CacheLoader.java -------------------------------------------------------------------------------- /components/javax.cache/src/main/java/javax/cache/CacheManager.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/components/javax.cache/src/main/java/javax/cache/CacheManager.java -------------------------------------------------------------------------------- /components/javax.cache/src/main/java/javax/cache/CacheStatistics.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/components/javax.cache/src/main/java/javax/cache/CacheStatistics.java -------------------------------------------------------------------------------- /components/javax.cache/src/main/java/javax/cache/CacheWriter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/components/javax.cache/src/main/java/javax/cache/CacheWriter.java -------------------------------------------------------------------------------- /components/javax.cache/src/main/java/javax/cache/Caching.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/components/javax.cache/src/main/java/javax/cache/Caching.java -------------------------------------------------------------------------------- /components/javax.cache/src/main/java/javax/cache/OptionalFeature.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/components/javax.cache/src/main/java/javax/cache/OptionalFeature.java -------------------------------------------------------------------------------- /components/javax.cache/src/main/java/javax/cache/Status.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/components/javax.cache/src/main/java/javax/cache/Status.java -------------------------------------------------------------------------------- /components/javax.cache/src/main/java/javax/cache/event/packageinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/components/javax.cache/src/main/java/javax/cache/event/packageinfo -------------------------------------------------------------------------------- /components/javax.cache/src/main/java/javax/cache/mbeans/packageinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/components/javax.cache/src/main/java/javax/cache/mbeans/packageinfo -------------------------------------------------------------------------------- /components/javax.cache/src/main/java/javax/cache/packageinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/components/javax.cache/src/main/java/javax/cache/packageinfo -------------------------------------------------------------------------------- /components/javax.cache/src/main/java/javax/cache/spi/packageinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/components/javax.cache/src/main/java/javax/cache/spi/packageinfo -------------------------------------------------------------------------------- /components/mediation/data-publishers/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/components/mediation/data-publishers/pom.xml -------------------------------------------------------------------------------- /components/mediation/extensions/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/components/mediation/extensions/pom.xml -------------------------------------------------------------------------------- /components/mediation/inbound-endpoints/org.wso2.micro.integrator.inbound.endpoint/src/main/resources/META-INF/native/io_grpc_netty_shaded_netty_tcnative_windows_x86_64.dll: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/mediation/inbound-endpoints/org.wso2.micro.integrator.inbound.endpoint/src/main/resources/META-INF/native/libio_grpc_netty_shaded_netty_tcnative_linux_x86_64.so: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/mediation/inbound-endpoints/org.wso2.micro.integrator.inbound.endpoint/src/main/resources/META-INF/native/libio_grpc_netty_shaded_netty_tcnative_osx_x86_64.jnilib: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/mediation/inbound-endpoints/org.wso2.micro.integrator.inbound.endpoint/src/main/resources/META-INF/native/libio_grpc_netty_shaded_netty_transport_native_epoll_x86_64.so: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/mediation/inbound-endpoints/org.wso2.micro.integrator.inbound.endpoint/src/main/resources/META-INF/services/io.grpc.NameResolverProvider: -------------------------------------------------------------------------------- 1 | io.grpc.internal.DnsNameResolverProvider 2 | -------------------------------------------------------------------------------- /components/mediation/inbound-endpoints/org.wso2.micro.integrator.inbound.endpoint/src/test/resources/fileInbound/testFileAsUri/in/a.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/mediation/inbound-endpoints/org.wso2.micro.integrator.inbound.endpoint/src/test/resources/fileInbound/testFileAsUri/out/sample.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/mediation/inbound-endpoints/org.wso2.micro.integrator.inbound.endpoint/src/test/resources/fileInbound/testFileSizeLimit/in/a.txt: -------------------------------------------------------------------------------- 1 | Hello World!!! -------------------------------------------------------------------------------- /components/mediation/inbound-endpoints/org.wso2.micro.integrator.inbound.endpoint/src/test/resources/fileInbound/testFilesInChildren/in/a.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/mediation/inbound-endpoints/org.wso2.micro.integrator.inbound.endpoint/src/test/resources/fileInbound/testFilesInChildren/in/b.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/mediation/inbound-endpoints/org.wso2.micro.integrator.inbound.endpoint/src/test/resources/fileInbound/testFilesInChildren/in/child1/a.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/mediation/inbound-endpoints/org.wso2.micro.integrator.inbound.endpoint/src/test/resources/fileInbound/testFilesInChildren/in/child1/b.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/mediation/inbound-endpoints/org.wso2.micro.integrator.inbound.endpoint/src/test/resources/fileInbound/testFilesInChildren/in/child2/a.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/mediation/inbound-endpoints/org.wso2.micro.integrator.inbound.endpoint/src/test/resources/fileInbound/testFilesInChildren/in/child2/b.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/mediation/inbound-endpoints/org.wso2.micro.integrator.inbound.endpoint/src/test/resources/fileInbound/testFilesInChildren/out/sample.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/mediation/inbound-endpoints/org.wso2.micro.integrator.inbound.endpoint/src/test/resources/fileInbound/testFilesInChildrenRecursively/in/a.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/mediation/inbound-endpoints/org.wso2.micro.integrator.inbound.endpoint/src/test/resources/fileInbound/testFilesInChildrenRecursively/in/b.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/mediation/inbound-endpoints/org.wso2.micro.integrator.inbound.endpoint/src/test/resources/fileInbound/testFilesInChildrenRecursively/in/child1/a.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/mediation/inbound-endpoints/org.wso2.micro.integrator.inbound.endpoint/src/test/resources/fileInbound/testFilesInChildrenRecursively/in/child1/b.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/mediation/inbound-endpoints/org.wso2.micro.integrator.inbound.endpoint/src/test/resources/fileInbound/testFilesInChildrenRecursively/in/child1/child2/a.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/mediation/inbound-endpoints/org.wso2.micro.integrator.inbound.endpoint/src/test/resources/fileInbound/testFilesInChildrenRecursively/in/child1/child2/b.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/mediation/inbound-endpoints/org.wso2.micro.integrator.inbound.endpoint/src/test/resources/fileInbound/testFilesInChildrenRecursively/out/sample.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/mediation/inbound-endpoints/org.wso2.micro.integrator.inbound.endpoint/src/test/resources/fileInbound/testFilesInParent/in/a.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/mediation/inbound-endpoints/org.wso2.micro.integrator.inbound.endpoint/src/test/resources/fileInbound/testFilesInParent/in/b.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/mediation/inbound-endpoints/org.wso2.micro.integrator.inbound.endpoint/src/test/resources/fileInbound/testFilesInParent/out/sample.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/mediation/inbound-endpoints/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/components/mediation/inbound-endpoints/pom.xml -------------------------------------------------------------------------------- /components/mediation/mediators/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/components/mediation/mediators/pom.xml -------------------------------------------------------------------------------- /components/mediation/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/components/mediation/pom.xml -------------------------------------------------------------------------------- /components/mediation/registry/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/components/mediation/registry/pom.xml -------------------------------------------------------------------------------- /components/mediation/security/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/components/mediation/security/pom.xml -------------------------------------------------------------------------------- /components/mediation/startup/mediation-startup/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/components/mediation/startup/mediation-startup/pom.xml -------------------------------------------------------------------------------- /components/mediation/startup/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/components/mediation/startup/pom.xml -------------------------------------------------------------------------------- /components/mediation/tasks/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/components/mediation/tasks/pom.xml -------------------------------------------------------------------------------- /components/mediation/transports/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/components/mediation/transports/pom.xml -------------------------------------------------------------------------------- /components/org.wso2.micro.integrator.bootstrap/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/components/org.wso2.micro.integrator.bootstrap/pom.xml -------------------------------------------------------------------------------- /components/org.wso2.micro.integrator.coordination/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/components/org.wso2.micro.integrator.coordination/pom.xml -------------------------------------------------------------------------------- /components/org.wso2.micro.integrator.core/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/components/org.wso2.micro.integrator.core/pom.xml -------------------------------------------------------------------------------- /components/org.wso2.micro.integrator.extensions/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/components/org.wso2.micro.integrator.extensions/pom.xml -------------------------------------------------------------------------------- /components/org.wso2.micro.integrator.initializer/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/components/org.wso2.micro.integrator.initializer/pom.xml -------------------------------------------------------------------------------- /components/org.wso2.micro.integrator.log4j2.plugins/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/components/org.wso2.micro.integrator.log4j2.plugins/pom.xml -------------------------------------------------------------------------------- /components/org.wso2.micro.integrator.logging.updater/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/components/org.wso2.micro.integrator.logging.updater/pom.xml -------------------------------------------------------------------------------- /components/org.wso2.micro.integrator.ndatasource.common/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/components/org.wso2.micro.integrator.ndatasource.common/pom.xml -------------------------------------------------------------------------------- /components/org.wso2.micro.integrator.ndatasource.core/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/components/org.wso2.micro.integrator.ndatasource.core/pom.xml -------------------------------------------------------------------------------- /components/org.wso2.micro.integrator.ndatasource.rdbms/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/components/org.wso2.micro.integrator.ndatasource.rdbms/pom.xml -------------------------------------------------------------------------------- /components/org.wso2.micro.integrator.security/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/components/org.wso2.micro.integrator.security/pom.xml -------------------------------------------------------------------------------- /components/org.wso2.micro.integrator.server/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/components/org.wso2.micro.integrator.server/pom.xml -------------------------------------------------------------------------------- /components/org.wso2.micro.integrator.utils/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/components/org.wso2.micro.integrator.utils/pom.xml -------------------------------------------------------------------------------- /components/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/components/pom.xml -------------------------------------------------------------------------------- /distribution/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/distribution/pom.xml -------------------------------------------------------------------------------- /distribution/src/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/distribution/src/README.txt -------------------------------------------------------------------------------- /distribution/src/assembly/bin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/distribution/src/assembly/bin.xml -------------------------------------------------------------------------------- /distribution/src/assembly/filter.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/distribution/src/assembly/filter.properties -------------------------------------------------------------------------------- /distribution/src/conf/access-log.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/distribution/src/conf/access-log.properties -------------------------------------------------------------------------------- /distribution/src/conf/axis2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/distribution/src/conf/axis2.xml -------------------------------------------------------------------------------- /distribution/src/conf/axis2_blocking_client.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/distribution/src/conf/axis2_blocking_client.xml -------------------------------------------------------------------------------- /distribution/src/conf/carbon.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/distribution/src/conf/carbon.properties -------------------------------------------------------------------------------- /distribution/src/conf/carbon.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/distribution/src/conf/carbon.xml -------------------------------------------------------------------------------- /distribution/src/conf/cipher-standalone-config.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/distribution/src/conf/cipher-standalone-config.properties -------------------------------------------------------------------------------- /distribution/src/conf/ciphertool.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/distribution/src/conf/ciphertool.bat -------------------------------------------------------------------------------- /distribution/src/conf/ciphertool.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/distribution/src/conf/ciphertool.sh -------------------------------------------------------------------------------- /distribution/src/conf/datasources.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/distribution/src/conf/datasources.properties -------------------------------------------------------------------------------- /distribution/src/conf/datasources/master-datasources.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/distribution/src/conf/datasources/master-datasources.xml -------------------------------------------------------------------------------- /distribution/src/conf/deployment.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/distribution/src/conf/deployment.toml -------------------------------------------------------------------------------- /distribution/src/conf/deployment.toml.container: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/distribution/src/conf/deployment.toml.container -------------------------------------------------------------------------------- /distribution/src/conf/etc/launch.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/distribution/src/conf/etc/launch.ini -------------------------------------------------------------------------------- /distribution/src/conf/etc/logging-bridge.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/distribution/src/conf/etc/logging-bridge.properties -------------------------------------------------------------------------------- /distribution/src/conf/etc/pax-logging.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/distribution/src/conf/etc/pax-logging.properties -------------------------------------------------------------------------------- /distribution/src/conf/event-processor.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/distribution/src/conf/event-processor.xml -------------------------------------------------------------------------------- /distribution/src/conf/file.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/distribution/src/conf/file.properties -------------------------------------------------------------------------------- /distribution/src/conf/internal-apis.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/distribution/src/conf/internal-apis.xml -------------------------------------------------------------------------------- /distribution/src/conf/jndi.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/distribution/src/conf/jndi.properties -------------------------------------------------------------------------------- /distribution/src/conf/log4j2.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/distribution/src/conf/log4j2.properties -------------------------------------------------------------------------------- /distribution/src/conf/netty.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/distribution/src/conf/netty.properties -------------------------------------------------------------------------------- /distribution/src/conf/passthru-http.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/distribution/src/conf/passthru-http.properties -------------------------------------------------------------------------------- /distribution/src/conf/sec.policy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/distribution/src/conf/sec.policy -------------------------------------------------------------------------------- /distribution/src/conf/security/cipher-text.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/distribution/src/conf/security/cipher-text.properties -------------------------------------------------------------------------------- /distribution/src/conf/security/cipher-tool.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/distribution/src/conf/security/cipher-tool.properties -------------------------------------------------------------------------------- /distribution/src/conf/security/secret-conf.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/distribution/src/conf/security/secret-conf.properties -------------------------------------------------------------------------------- /distribution/src/conf/sequence-observers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/distribution/src/conf/sequence-observers.xml -------------------------------------------------------------------------------- /distribution/src/conf/synapse-configs/default/imports/empty.txt: -------------------------------------------------------------------------------- 1 | empty file to commit 2 | -------------------------------------------------------------------------------- /distribution/src/conf/synapse-configs/default/inbound-endpoints/empty.txt: -------------------------------------------------------------------------------- 1 | empty file to commit 2 | -------------------------------------------------------------------------------- /distribution/src/conf/synapse-configs/default/local-entries/empty.txt: -------------------------------------------------------------------------------- 1 | empty file to commit 2 | -------------------------------------------------------------------------------- /distribution/src/conf/synapse-configs/default/proxy-services/empty.txt: -------------------------------------------------------------------------------- 1 | empty file to commit 2 | -------------------------------------------------------------------------------- /distribution/src/conf/synapse-configs/default/registry.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/distribution/src/conf/synapse-configs/default/registry.xml -------------------------------------------------------------------------------- /distribution/src/conf/synapse-configs/default/sequences/fault.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/distribution/src/conf/synapse-configs/default/sequences/fault.xml -------------------------------------------------------------------------------- /distribution/src/conf/synapse-configs/default/sequences/main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/distribution/src/conf/synapse-configs/default/sequences/main.xml -------------------------------------------------------------------------------- /distribution/src/conf/synapse-configs/default/synapse.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/distribution/src/conf/synapse-configs/default/synapse.xml -------------------------------------------------------------------------------- /distribution/src/conf/synapse-handlers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/distribution/src/conf/synapse-handlers.xml -------------------------------------------------------------------------------- /distribution/src/conf/synapse.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/distribution/src/conf/synapse.properties -------------------------------------------------------------------------------- /distribution/src/conf/user-mgt.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/distribution/src/conf/user-mgt.xml -------------------------------------------------------------------------------- /distribution/src/conf/wrapper.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/distribution/src/conf/wrapper.conf -------------------------------------------------------------------------------- /distribution/src/dbscripts/db2/db2_cluster.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/distribution/src/dbscripts/db2/db2_cluster.sql -------------------------------------------------------------------------------- /distribution/src/dbscripts/db2/db2_transaction_count.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/distribution/src/dbscripts/db2/db2_transaction_count.sql -------------------------------------------------------------------------------- /distribution/src/dbscripts/db2/db2_user.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/distribution/src/dbscripts/db2/db2_user.sql -------------------------------------------------------------------------------- /distribution/src/dbscripts/mssql/mssql_cluster.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/distribution/src/dbscripts/mssql/mssql_cluster.sql -------------------------------------------------------------------------------- /distribution/src/dbscripts/mssql/mssql_transaction_count.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/distribution/src/dbscripts/mssql/mssql_transaction_count.sql -------------------------------------------------------------------------------- /distribution/src/dbscripts/mssql/mssql_user.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/distribution/src/dbscripts/mssql/mssql_user.sql -------------------------------------------------------------------------------- /distribution/src/dbscripts/mysql/mysql_cluster.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/distribution/src/dbscripts/mysql/mysql_cluster.sql -------------------------------------------------------------------------------- /distribution/src/dbscripts/mysql/mysql_transaction_count.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/distribution/src/dbscripts/mysql/mysql_transaction_count.sql -------------------------------------------------------------------------------- /distribution/src/dbscripts/mysql/mysql_user.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/distribution/src/dbscripts/mysql/mysql_user.sql -------------------------------------------------------------------------------- /distribution/src/dbscripts/oracle-rac/oracle_rac_cluster.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/distribution/src/dbscripts/oracle-rac/oracle_rac_cluster.sql -------------------------------------------------------------------------------- /distribution/src/dbscripts/oracle-rac/oracle_rac_user.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/distribution/src/dbscripts/oracle-rac/oracle_rac_user.sql -------------------------------------------------------------------------------- /distribution/src/dbscripts/oracle/oracle_cluster.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/distribution/src/dbscripts/oracle/oracle_cluster.sql -------------------------------------------------------------------------------- /distribution/src/dbscripts/oracle/oracle_transaction_count.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/distribution/src/dbscripts/oracle/oracle_transaction_count.sql -------------------------------------------------------------------------------- /distribution/src/dbscripts/oracle/oracle_user.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/distribution/src/dbscripts/oracle/oracle_user.sql -------------------------------------------------------------------------------- /distribution/src/dbscripts/postgres/postgresql_cluster.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/distribution/src/dbscripts/postgres/postgresql_cluster.sql -------------------------------------------------------------------------------- /distribution/src/dbscripts/postgres/postgresql_transaction_count.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/distribution/src/dbscripts/postgres/postgresql_transaction_count.sql -------------------------------------------------------------------------------- /distribution/src/dbscripts/postgres/postgresql_user.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/distribution/src/dbscripts/postgres/postgresql_user.sql -------------------------------------------------------------------------------- /distribution/src/docker-distribution/alpine/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/distribution/src/docker-distribution/alpine/Dockerfile -------------------------------------------------------------------------------- /distribution/src/docker-distribution/centos/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/distribution/src/docker-distribution/centos/Dockerfile -------------------------------------------------------------------------------- /distribution/src/docker-distribution/docker-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/distribution/src/docker-distribution/docker-entrypoint.sh -------------------------------------------------------------------------------- /distribution/src/docker-distribution/ubuntu/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/distribution/src/docker-distribution/ubuntu/Dockerfile -------------------------------------------------------------------------------- /distribution/src/docs/release-notes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/distribution/src/docs/release-notes.xml -------------------------------------------------------------------------------- /distribution/src/resources/capps/empty.txt: -------------------------------------------------------------------------------- 1 | empty file to commit 2 | -------------------------------------------------------------------------------- /distribution/src/resources/config-tool/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/distribution/src/resources/config-tool/README.md -------------------------------------------------------------------------------- /distribution/src/resources/config-tool/default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/distribution/src/resources/config-tool/default.json -------------------------------------------------------------------------------- /distribution/src/resources/config-tool/deployment-full.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/distribution/src/resources/config-tool/deployment-full.toml -------------------------------------------------------------------------------- /distribution/src/resources/config-tool/infer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/distribution/src/resources/config-tool/infer.json -------------------------------------------------------------------------------- /distribution/src/resources/config-tool/key-mappings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/distribution/src/resources/config-tool/key-mappings.json -------------------------------------------------------------------------------- /distribution/src/resources/config-tool/templates/conf/carbon.xml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/distribution/src/resources/config-tool/templates/conf/carbon.xml.j2 -------------------------------------------------------------------------------- /distribution/src/resources/config-tool/templates/conf/etc/jmx.xml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/distribution/src/resources/config-tool/templates/conf/etc/jmx.xml.j2 -------------------------------------------------------------------------------- /distribution/src/resources/config-tool/templates/conf/user-mgt.xml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/distribution/src/resources/config-tool/templates/conf/user-mgt.xml.j2 -------------------------------------------------------------------------------- /distribution/src/resources/config-tool/unit-resolve.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /distribution/src/resources/config-tool/validator.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /distribution/src/resources/dockerfiles/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/distribution/src/resources/dockerfiles/Dockerfile -------------------------------------------------------------------------------- /distribution/src/resources/dockerfiles/files/carbonapps/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /distribution/src/resources/security/publickey.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/distribution/src/resources/security/publickey.pem -------------------------------------------------------------------------------- /distribution/src/resources/updates/product.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/distribution/src/resources/updates/product.txt -------------------------------------------------------------------------------- /distribution/src/scripts/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/distribution/src/scripts/build.xml -------------------------------------------------------------------------------- /distribution/src/scripts/carbondump.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/distribution/src/scripts/carbondump.bat -------------------------------------------------------------------------------- /distribution/src/scripts/carbondump.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/distribution/src/scripts/carbondump.sh -------------------------------------------------------------------------------- /distribution/src/scripts/chpasswd.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/distribution/src/scripts/chpasswd.bat -------------------------------------------------------------------------------- /distribution/src/scripts/chpasswd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/distribution/src/scripts/chpasswd.sh -------------------------------------------------------------------------------- /distribution/src/scripts/diagnostics.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/distribution/src/scripts/diagnostics.sh -------------------------------------------------------------------------------- /distribution/src/scripts/extension-runner.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/distribution/src/scripts/extension-runner.sh -------------------------------------------------------------------------------- /distribution/src/scripts/micro-integrator.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/distribution/src/scripts/micro-integrator.bat -------------------------------------------------------------------------------- /distribution/src/scripts/micro-integrator.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/distribution/src/scripts/micro-integrator.sh -------------------------------------------------------------------------------- /distribution/src/scripts/tcpmon.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/distribution/src/scripts/tcpmon.bat -------------------------------------------------------------------------------- /distribution/src/scripts/tcpmon.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/distribution/src/scripts/tcpmon.sh -------------------------------------------------------------------------------- /doc/images/mi-esb-architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/doc/images/mi-esb-architecture.png -------------------------------------------------------------------------------- /doc/images/mi-microservices-architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/doc/images/mi-microservices-architecture.png -------------------------------------------------------------------------------- /doc/images/micro-Integrator-ci-cd-workflow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/doc/images/micro-Integrator-ci-cd-workflow.png -------------------------------------------------------------------------------- /features/data-features/data-services-feature/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/features/data-features/data-services-feature/pom.xml -------------------------------------------------------------------------------- /features/data-features/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/features/data-features/pom.xml -------------------------------------------------------------------------------- /features/etc/feature.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/features/etc/feature.properties -------------------------------------------------------------------------------- /features/mediation-features/builtin-mediators/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/features/mediation-features/builtin-mediators/pom.xml -------------------------------------------------------------------------------- /features/mediation-features/data-publisher-features/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/features/mediation-features/data-publisher-features/pom.xml -------------------------------------------------------------------------------- /features/mediation-features/inbound-endpoint/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/features/mediation-features/inbound-endpoint/pom.xml -------------------------------------------------------------------------------- /features/mediation-features/ntask-feature/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/features/mediation-features/ntask-feature/pom.xml -------------------------------------------------------------------------------- /features/mediation-features/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/features/mediation-features/pom.xml -------------------------------------------------------------------------------- /features/mediation-features/security-features/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/features/mediation-features/security-features/pom.xml -------------------------------------------------------------------------------- /features/mediation-features/transport-features/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/features/mediation-features/transport-features/pom.xml -------------------------------------------------------------------------------- /features/org.wso2.micro.integrator.initializer.feature/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/features/org.wso2.micro.integrator.initializer.feature/pom.xml -------------------------------------------------------------------------------- /features/org.wso2.micro.integrator.initializer.feature/resources/build.properties: -------------------------------------------------------------------------------- 1 | custom = true 2 | root.mediation-initilizer=synapse-configs 3 | -------------------------------------------------------------------------------- /features/org.wso2.micro.integrator.initializer.feature/src/main/resources/build.properties: -------------------------------------------------------------------------------- 1 | custom = true 2 | root.mediation-initilizer=synapse-configs 3 | -------------------------------------------------------------------------------- /features/org.wso2.micro.integrator.logging.updater.feature/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/features/org.wso2.micro.integrator.logging.updater.feature/pom.xml -------------------------------------------------------------------------------- /features/org.wso2.micro.integrator.ntask.core.feature/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/features/org.wso2.micro.integrator.ntask.core.feature/pom.xml -------------------------------------------------------------------------------- /features/org.wso2.micro.integrator.ntask.core.feature/resources/build.properties: -------------------------------------------------------------------------------- 1 | custom = true 2 | root.ntask=conf 3 | -------------------------------------------------------------------------------- /features/org.wso2.micro.integrator.server.feature/feature.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/features/org.wso2.micro.integrator.server.feature/feature.properties -------------------------------------------------------------------------------- /features/org.wso2.micro.integrator.server.feature/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/features/org.wso2.micro.integrator.server.feature/pom.xml -------------------------------------------------------------------------------- /features/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/features/pom.xml -------------------------------------------------------------------------------- /features/wso2mi-hl7/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/features/wso2mi-hl7/pom.xml -------------------------------------------------------------------------------- /features/wso2mi-hl7/src/assembly/hl7-package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/features/wso2mi-hl7/src/assembly/hl7-package.xml -------------------------------------------------------------------------------- /integration/automation-extensions/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/integration/automation-extensions/pom.xml -------------------------------------------------------------------------------- /integration/cli-tests/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/integration/cli-tests/pom.xml -------------------------------------------------------------------------------- /integration/cli-tests/src/test/java/EnvSetup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/integration/cli-tests/src/test/java/EnvSetup.sh -------------------------------------------------------------------------------- /integration/cli-tests/src/test/resources/automation.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/integration/cli-tests/src/test/resources/automation.xml -------------------------------------------------------------------------------- /integration/cli-tests/src/test/resources/automationXMLSchema.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/integration/cli-tests/src/test/resources/automationXMLSchema.xsd -------------------------------------------------------------------------------- /integration/cli-tests/src/test/resources/testng.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/integration/cli-tests/src/test/resources/testng.xml -------------------------------------------------------------------------------- /integration/dataservice-hosting-tests/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/integration/dataservice-hosting-tests/pom.xml -------------------------------------------------------------------------------- /integration/dataservice-hosting-tests/samples/data-services/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/integration/dataservice-hosting-tests/samples/data-services/README -------------------------------------------------------------------------------- /integration/dataservice-hosting-tests/samples/data-services/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/integration/dataservice-hosting-tests/samples/data-services/build.xml -------------------------------------------------------------------------------- /integration/dataservice-hosting-tests/samples/data-services/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/integration/dataservice-hosting-tests/samples/data-services/pom.xml -------------------------------------------------------------------------------- /integration/dataservice-hosting-tests/samples/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/integration/dataservice-hosting-tests/samples/pom.xml -------------------------------------------------------------------------------- /integration/dataservice-hosting-tests/tests-common/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/integration/dataservice-hosting-tests/tests-common/pom.xml -------------------------------------------------------------------------------- /integration/dataservice-hosting-tests/tests-integration/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/integration/dataservice-hosting-tests/tests-integration/pom.xml -------------------------------------------------------------------------------- /integration/dataservice-hosting-tests/tests-integration/tests/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/integration/dataservice-hosting-tests/tests-integration/tests/pom.xml -------------------------------------------------------------------------------- /integration/dataservice-hosting-tests/tests-integration/tests/src/test/resources/artifacts/DSS/resources/XMLInputFactory.properties: -------------------------------------------------------------------------------- 1 | com.ctc.wstx.minTextSegment=5000 2 | -------------------------------------------------------------------------------- /integration/management-api-tests/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/integration/management-api-tests/pom.xml -------------------------------------------------------------------------------- /integration/management-api-tests/src/test/resources/artifacts/ESB/registry-resources/test-initial.txt: -------------------------------------------------------------------------------- 1 | Initial 2 | content 3 | of the 4 | 5 | test file 6 | ../12356 -------------------------------------------------------------------------------- /integration/management-api-tests/src/test/resources/artifacts/ESB/registry-resources/test-update.txt: -------------------------------------------------------------------------------- 1 | Updated 2 | content 3 | 4 | of the 5 | 6 | test file 7 | ..../123 -------------------------------------------------------------------------------- /integration/management-api-tests/src/test/resources/artifacts/ESB/server/repository/deployment/server/carbonapps/DataSourceCarbonApplication_1.0.0.car: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /integration/management-api-tests/src/test/resources/automation.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/integration/management-api-tests/src/test/resources/automation.xml -------------------------------------------------------------------------------- /integration/management-api-tests/src/test/resources/log4j.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/integration/management-api-tests/src/test/resources/log4j.properties -------------------------------------------------------------------------------- /integration/management-api-tests/src/test/resources/testng.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/integration/management-api-tests/src/test/resources/testng.xml -------------------------------------------------------------------------------- /integration/mediation-tests/coverage-report/filters.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/integration/mediation-tests/coverage-report/filters.txt -------------------------------------------------------------------------------- /integration/mediation-tests/coverage-report/instrumentation.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/integration/mediation-tests/coverage-report/instrumentation.txt -------------------------------------------------------------------------------- /integration/mediation-tests/coverage-report/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/integration/mediation-tests/coverage-report/pom.xml -------------------------------------------------------------------------------- /integration/mediation-tests/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/integration/mediation-tests/pom.xml -------------------------------------------------------------------------------- /integration/mediation-tests/service-samples/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/integration/mediation-tests/service-samples/pom.xml -------------------------------------------------------------------------------- /integration/mediation-tests/tests-http/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/integration/mediation-tests/tests-http/pom.xml -------------------------------------------------------------------------------- /integration/mediation-tests/tests-http/src/test/resources/testng.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/integration/mediation-tests/tests-http/src/test/resources/testng.xml -------------------------------------------------------------------------------- /integration/mediation-tests/tests-mediator-1/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/integration/mediation-tests/tests-mediator-1/.gitignore -------------------------------------------------------------------------------- /integration/mediation-tests/tests-mediator-1/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/integration/mediation-tests/tests-mediator-1/pom.xml -------------------------------------------------------------------------------- /integration/mediation-tests/tests-mediator-1/src/test/resources/artifacts/ESB/server/registry/config/custom/test/property_mediator_test.txt: -------------------------------------------------------------------------------- 1 | Property mediator test resources -------------------------------------------------------------------------------- /integration/mediation-tests/tests-mediator-1/src/test/resources/artifacts/ESB/server/registry/config/custom/test/property_mediator_test.txt.properties: -------------------------------------------------------------------------------- 1 | resourceName=Config Reg Test String -------------------------------------------------------------------------------- /integration/mediation-tests/tests-mediator-1/src/test/resources/artifacts/ESB/server/registry/governance/custom/test/property_mediator_test.txt: -------------------------------------------------------------------------------- 1 | Property mediator test resources -------------------------------------------------------------------------------- /integration/mediation-tests/tests-mediator-1/src/test/resources/artifacts/ESB/server/registry/governance/custom/test/property_mediator_test.txt.properties: -------------------------------------------------------------------------------- 1 | resourceName=Gov Reg Test String -------------------------------------------------------------------------------- /integration/mediation-tests/tests-mediator-1/src/test/resources/artifacts/ESB/synapseconfig/vfsTransport/out/test.txt: -------------------------------------------------------------------------------- 1 | This is a test file! 2 | -------------------------------------------------------------------------------- /integration/mediation-tests/tests-mediator-1/src/test/resources/artifacts/ESB/synapseconfig/vfsTransport/test.txt: -------------------------------------------------------------------------------- 1 | WSO2 Lanka Pvt Ltd 2 | 59, Flower Road, Colombo 07 3 | andun@wso2.com 4 | -------------------------------------------------------------------------------- /integration/mediation-tests/tests-mediator-2/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/integration/mediation-tests/tests-mediator-2/.gitignore -------------------------------------------------------------------------------- /integration/mediation-tests/tests-mediator-2/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/integration/mediation-tests/tests-mediator-2/pom.xml -------------------------------------------------------------------------------- /integration/mediation-tests/tests-mediator-2/src/test/resources/artifacts/ESB/server/registry/config/jsontransform_schema/emptySchema.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /integration/mediation-tests/tests-mediator-2/src/test/resources/artifacts/ESB/server/registry/config/localEntries/request_transformation.txt.properties: -------------------------------------------------------------------------------- 1 | resourceName=request_transform.xslt -------------------------------------------------------------------------------- /integration/mediation-tests/tests-mediator-2/src/test/resources/artifacts/ESB/server/registry/config/localEntries/response_transformation_back.txt.properties: -------------------------------------------------------------------------------- 1 | resourceName=response_transform.xslt -------------------------------------------------------------------------------- /integration/mediation-tests/tests-mediator-2/src/test/resources/artifacts/ESB/server/registry/config/script_js/.metadata/stockquoteTransform.js.meta: -------------------------------------------------------------------------------- 1 | mediaType=application/javascript 2 | -------------------------------------------------------------------------------- /integration/mediation-tests/tests-mediator-2/src/test/resources/artifacts/ESB/server/registry/config/script_js/.metadata/stockquoteTransformNashorn.js.meta: -------------------------------------------------------------------------------- 1 | mediaType=application/javascript 2 | -------------------------------------------------------------------------------- /integration/mediation-tests/tests-mediator-2/src/test/resources/artifacts/ESB/server/registry/config/script_js/.metadata/test54.js.meta: -------------------------------------------------------------------------------- 1 | mediaType=application/javascript 2 | -------------------------------------------------------------------------------- /integration/mediation-tests/tests-mediator-2/src/test/resources/artifacts/ESB/server/registry/config/validate/.metadata/StockQuoteSchema.json.meta: -------------------------------------------------------------------------------- 1 | mediaType=application/json 2 | -------------------------------------------------------------------------------- /integration/mediation-tests/tests-mediator-2/src/test/resources/artifacts/ESB/server/registry/config/validate/.metadata/largeJsonSchema.json.meta: -------------------------------------------------------------------------------- 1 | mediaType=application/json -------------------------------------------------------------------------------- /integration/mediation-tests/tests-mediator-2/src/test/resources/artifacts/ESB/server/registry/governance/datamapperSimpleTestCase/xml_to_xml_using_xslt/testMap.dmc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /integration/mediation-tests/tests-mediator-2/src/test/resources/artifacts/ESB/server/registry/governance/script_js/.metadata/stockquoteTransformNashorn.js.meta: -------------------------------------------------------------------------------- 1 | mediaType=application/javascript 2 | -------------------------------------------------------------------------------- /integration/mediation-tests/tests-mediator-2/src/test/resources/artifacts/ESB/synapseconfig/smooks/data.csv: -------------------------------------------------------------------------------- 1 | Tom,Fennelly,Male,4,Ireland -------------------------------------------------------------------------------- /integration/mediation-tests/tests-other/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/integration/mediation-tests/tests-other/.gitignore -------------------------------------------------------------------------------- /integration/mediation-tests/tests-other/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/integration/mediation-tests/tests-other/pom.xml -------------------------------------------------------------------------------- /integration/mediation-tests/tests-other/src/test/resources/artifacts/ESB/connector/custom-connector-hello/repository/copy of ESB here.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /integration/mediation-tests/tests-other/src/test/resources/artifacts/ESB/jaxrs/jsonrequest.txt: -------------------------------------------------------------------------------- 1 | {"album":"Mango","singer":"MLTR"} 2 | -------------------------------------------------------------------------------- /integration/mediation-tests/tests-other/src/test/resources/artifacts/ESB/synapseconfig/customSSLprofileWithsecurevault/password-tmp: -------------------------------------------------------------------------------- 1 | wso2carbon -------------------------------------------------------------------------------- /integration/mediation-tests/tests-other/src/test/resources/artifacts/ESB/synapseconfig/vfsTransport/out/test.txt: -------------------------------------------------------------------------------- 1 | This is a test file! 2 | -------------------------------------------------------------------------------- /integration/mediation-tests/tests-other/src/test/resources/artifacts/ESB/synapseconfig/vfsTransport/test.txt: -------------------------------------------------------------------------------- 1 | WSO2 Lanka Pvt Ltd 2 | 59, Flower Road, Colombo 07 3 | andun@wso2.com 4 | -------------------------------------------------------------------------------- /integration/mediation-tests/tests-other/src/test/resources/test.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/integration/mediation-tests/tests-other/src/test/resources/test.env -------------------------------------------------------------------------------- /integration/mediation-tests/tests-other/src/test/resources/testng.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/integration/mediation-tests/tests-other/src/test/resources/testng.xml -------------------------------------------------------------------------------- /integration/mediation-tests/tests-patches-with-smb2/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/integration/mediation-tests/tests-patches-with-smb2/pom.xml -------------------------------------------------------------------------------- /integration/mediation-tests/tests-patches-with-smb2/src/test/resources/artifacts/ESB/synapseconfig/customSSLprofileWithsecurevault/password-tmp: -------------------------------------------------------------------------------- 1 | wso2carbon -------------------------------------------------------------------------------- /integration/mediation-tests/tests-patches-with-smb2/src/test/resources/artifacts/ESB/synapseconfig/registry/caching/sample.txt: -------------------------------------------------------------------------------- 1 | This is a test file -------------------------------------------------------------------------------- /integration/mediation-tests/tests-patches-with-smb2/src/test/resources/artifacts/ESB/synapseconfig/vfsTransport/out/test.txt: -------------------------------------------------------------------------------- 1 | This is a test file! 2 | -------------------------------------------------------------------------------- /integration/mediation-tests/tests-patches-with-smb2/src/test/resources/artifacts/ESB/synapseconfig/vfsTransport/test.txt: -------------------------------------------------------------------------------- 1 | WSO2 Lanka Pvt Ltd 2 | 59, Flower Road, Colombo 07 3 | andun@wso2.com 4 | -------------------------------------------------------------------------------- /integration/mediation-tests/tests-patches/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/integration/mediation-tests/tests-patches/.gitignore -------------------------------------------------------------------------------- /integration/mediation-tests/tests-patches/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/integration/mediation-tests/tests-patches/pom.xml -------------------------------------------------------------------------------- /integration/mediation-tests/tests-patches/src/test/resources/artifacts/ESB/synapseconfig/customSSLprofileWithsecurevault/password-tmp: -------------------------------------------------------------------------------- 1 | wso2carbon -------------------------------------------------------------------------------- /integration/mediation-tests/tests-patches/src/test/resources/artifacts/ESB/synapseconfig/registry/caching/sample.txt: -------------------------------------------------------------------------------- 1 | This is a test file -------------------------------------------------------------------------------- /integration/mediation-tests/tests-patches/src/test/resources/artifacts/ESB/synapseconfig/vfsTransport/out/test.txt: -------------------------------------------------------------------------------- 1 | This is a test file! 2 | -------------------------------------------------------------------------------- /integration/mediation-tests/tests-patches/src/test/resources/artifacts/ESB/synapseconfig/vfsTransport/test.txt: -------------------------------------------------------------------------------- 1 | WSO2 Lanka Pvt Ltd 2 | 59, Flower Road, Colombo 07 3 | andun@wso2.com 4 | -------------------------------------------------------------------------------- /integration/mediation-tests/tests-platform/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/integration/mediation-tests/tests-platform/pom.xml -------------------------------------------------------------------------------- /integration/mediation-tests/tests-platform/tests-coordination/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/integration/mediation-tests/tests-platform/tests-coordination/pom.xml -------------------------------------------------------------------------------- /integration/mediation-tests/tests-platform/tests-rabbitmq/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/integration/mediation-tests/tests-platform/tests-rabbitmq/.gitignore -------------------------------------------------------------------------------- /integration/mediation-tests/tests-platform/tests-rabbitmq/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/integration/mediation-tests/tests-platform/tests-rabbitmq/pom.xml -------------------------------------------------------------------------------- /integration/mediation-tests/tests-platform/tests-rabbitmq/src/test/resources/artifacts/ESB/securevault/password-tmp: -------------------------------------------------------------------------------- 1 | wso2carbon -------------------------------------------------------------------------------- /integration/mediation-tests/tests-platform/tests-sap/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/integration/mediation-tests/tests-platform/tests-sap/.gitignore -------------------------------------------------------------------------------- /integration/mediation-tests/tests-platform/tests-sap/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/integration/mediation-tests/tests-platform/tests-sap/README.md -------------------------------------------------------------------------------- /integration/mediation-tests/tests-platform/tests-sap/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/integration/mediation-tests/tests-platform/tests-sap/pom.xml -------------------------------------------------------------------------------- /integration/mediation-tests/tests-platform/tests-sap/src/test/resources/instrumentation.txt: -------------------------------------------------------------------------------- 1 | org.wso2.carbon.transports.sap_ -------------------------------------------------------------------------------- /integration/mediation-tests/tests-platform/tests-transaction/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/integration/mediation-tests/tests-platform/tests-transaction/pom.xml -------------------------------------------------------------------------------- /integration/mediation-tests/tests-platform/tests-transaction/src/test/resources/artifacts/ESB/db-clear-scripts/db2/db2_transaction_count.sql: -------------------------------------------------------------------------------- 1 | DROP TABLE CURRENT_STATS; 2 | -------------------------------------------------------------------------------- /integration/mediation-tests/tests-platform/tests-transaction/src/test/resources/artifacts/ESB/db-clear-scripts/oracle/oracle_transaction_count.sql: -------------------------------------------------------------------------------- 1 | DROP TABLE CURRENT_STATS; 2 | -------------------------------------------------------------------------------- /integration/mediation-tests/tests-platform/tests-userstore/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/integration/mediation-tests/tests-platform/tests-userstore/.gitignore -------------------------------------------------------------------------------- /integration/mediation-tests/tests-platform/tests-userstore/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/integration/mediation-tests/tests-platform/tests-userstore/README.md -------------------------------------------------------------------------------- /integration/mediation-tests/tests-platform/tests-userstore/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/integration/mediation-tests/tests-platform/tests-userstore/pom.xml -------------------------------------------------------------------------------- /integration/mediation-tests/tests-platform/tests-wso2mb/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/integration/mediation-tests/tests-platform/tests-wso2mb/README.txt -------------------------------------------------------------------------------- /integration/mediation-tests/tests-platform/tests-wso2mb/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/integration/mediation-tests/tests-platform/tests-wso2mb/pom.xml -------------------------------------------------------------------------------- /integration/mediation-tests/tests-sample/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/integration/mediation-tests/tests-sample/.gitignore -------------------------------------------------------------------------------- /integration/mediation-tests/tests-sample/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/integration/mediation-tests/tests-sample/pom.xml -------------------------------------------------------------------------------- /integration/mediation-tests/tests-sample/src/test/resources/artifacts/ESB/sample_271/drop_table.sql: -------------------------------------------------------------------------------- 1 | DROP TABLE IF EXISTS t_info; 2 | -------------------------------------------------------------------------------- /integration/mediation-tests/tests-sample/src/test/resources/artifacts/ESB/synapseconfig/customSSLprofileWithsecurevault/password-tmp: -------------------------------------------------------------------------------- 1 | wso2carbon -------------------------------------------------------------------------------- /integration/mediation-tests/tests-sample/src/test/resources/artifacts/ESB/synapseconfig/vfsTransport/out/test.txt: -------------------------------------------------------------------------------- 1 | This is a test file! 2 | -------------------------------------------------------------------------------- /integration/mediation-tests/tests-sample/src/test/resources/artifacts/ESB/synapseconfig/vfsTransport/test.txt: -------------------------------------------------------------------------------- 1 | WSO2 Lanka Pvt Ltd 2 | 59, Flower Road, Colombo 07 3 | andun@wso2.com 4 | -------------------------------------------------------------------------------- /integration/mediation-tests/tests-service/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/integration/mediation-tests/tests-service/.gitignore -------------------------------------------------------------------------------- /integration/mediation-tests/tests-service/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/integration/mediation-tests/tests-service/pom.xml -------------------------------------------------------------------------------- /integration/mediation-tests/tests-service/src/test/resources/artifacts/ESB/synapseconfig/customSSLprofileWithsecurevault/password-tmp: -------------------------------------------------------------------------------- 1 | wso2carbon -------------------------------------------------------------------------------- /integration/mediation-tests/tests-service/src/test/resources/artifacts/ESB/synapseconfig/vfsTransport/out/test.txt: -------------------------------------------------------------------------------- 1 | This is a test file! 2 | -------------------------------------------------------------------------------- /integration/mediation-tests/tests-service/src/test/resources/artifacts/ESB/synapseconfig/vfsTransport/test.txt: -------------------------------------------------------------------------------- 1 | WSO2 Lanka Pvt Ltd 2 | 59, Flower Road, Colombo 07 3 | andun@wso2.com 4 | -------------------------------------------------------------------------------- /integration/mediation-tests/tests-transport-2/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/integration/mediation-tests/tests-transport-2/pom.xml -------------------------------------------------------------------------------- /integration/mediation-tests/tests-transport/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/integration/mediation-tests/tests-transport/.gitignore -------------------------------------------------------------------------------- /integration/mediation-tests/tests-transport/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/integration/mediation-tests/tests-transport/pom.xml -------------------------------------------------------------------------------- /integration/mediation-tests/tests-transport/src/test/resources/artifacts/ESB/jms/securevault/password-tmp: -------------------------------------------------------------------------------- 1 | wso2carbon -------------------------------------------------------------------------------- /integration/mediation-tests/tests-transport/src/test/resources/artifacts/ESB/synapseconfig/customSSLprofileWithsecurevault/password-tmp: -------------------------------------------------------------------------------- 1 | wso2carbon -------------------------------------------------------------------------------- /integration/mediation-tests/tests-transport/src/test/resources/artifacts/ESB/synapseconfig/vfsTransport/out/test.txt: -------------------------------------------------------------------------------- 1 | This is a test file! 2 | -------------------------------------------------------------------------------- /integration/mediation-tests/tests-transport/src/test/resources/artifacts/ESB/synapseconfig/vfsTransport/test.txt: -------------------------------------------------------------------------------- 1 | WSO2 Lanka Pvt Ltd 2 | 59, Flower Road, Colombo 07 3 | andun@wso2.com 4 | -------------------------------------------------------------------------------- /integration/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/integration/pom.xml -------------------------------------------------------------------------------- /integration/samples/axis2Client/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/integration/samples/axis2Client/build.xml -------------------------------------------------------------------------------- /integration/samples/axis2Client/client_repo/conf/axis2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/integration/samples/axis2Client/client_repo/conf/axis2.xml -------------------------------------------------------------------------------- /integration/samples/axis2Client/client_repo/modules/addressing.mar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/integration/samples/axis2Client/client_repo/modules/addressing.mar -------------------------------------------------------------------------------- /integration/samples/axis2Client/client_repo/modules/rampart.mar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/integration/samples/axis2Client/client_repo/modules/rampart.mar -------------------------------------------------------------------------------- /integration/samples/axis2Client/client_repo/modules/sandesha2.mar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/integration/samples/axis2Client/client_repo/modules/sandesha2.mar -------------------------------------------------------------------------------- /integration/samples/axis2Client/resources/bpel/HelloWorld2.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/integration/samples/axis2Client/resources/bpel/HelloWorld2.properties -------------------------------------------------------------------------------- /integration/samples/axis2Client/src/samples/userguide/FIXClient.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/integration/samples/axis2Client/src/samples/userguide/FIXClient.java -------------------------------------------------------------------------------- /integration/samples/axis2Client/src/samples/userguide/JSONClient.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/integration/samples/axis2Client/src/samples/userguide/JSONClient.java -------------------------------------------------------------------------------- /integration/samples/axis2Client/src/samples/userguide/PWCallback.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/integration/samples/axis2Client/src/samples/userguide/PWCallback.java -------------------------------------------------------------------------------- /integration/samples/axis2Client/src/samples/util/Bootstrap.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/integration/samples/axis2Client/src/samples/util/Bootstrap.java -------------------------------------------------------------------------------- /integration/samples/axis2Server/axis2server.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/integration/samples/axis2Server/axis2server.bat -------------------------------------------------------------------------------- /integration/samples/axis2Server/axis2server.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/integration/samples/axis2Server/axis2server.sh -------------------------------------------------------------------------------- /integration/samples/axis2Server/repository/conf/axis2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/integration/samples/axis2Server/repository/conf/axis2.xml -------------------------------------------------------------------------------- /integration/samples/axis2Server/repository/modules/addressing.mar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/integration/samples/axis2Server/repository/modules/addressing.mar -------------------------------------------------------------------------------- /integration/samples/axis2Server/repository/modules/rampart.mar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/integration/samples/axis2Server/repository/modules/rampart.mar -------------------------------------------------------------------------------- /integration/samples/axis2Server/repository/modules/sandesha2.mar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/integration/samples/axis2Server/repository/modules/sandesha2.mar -------------------------------------------------------------------------------- /integration/samples/axis2Server/src/FastStockQuoteService/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/integration/samples/axis2Server/src/FastStockQuoteService/build.xml -------------------------------------------------------------------------------- /integration/samples/axis2Server/src/HelloWorld/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/integration/samples/axis2Server/src/HelloWorld/build.xml -------------------------------------------------------------------------------- /integration/samples/axis2Server/src/HelloWorld/conf/services.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/integration/samples/axis2Server/src/HelloWorld/conf/services.xml -------------------------------------------------------------------------------- /integration/samples/axis2Server/src/MTOMSwASampleService/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/integration/samples/axis2Server/src/MTOMSwASampleService/build.xml -------------------------------------------------------------------------------- /integration/samples/axis2Server/src/SecureStockQuoteService/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/integration/samples/axis2Server/src/SecureStockQuoteService/build.xml -------------------------------------------------------------------------------- /integration/samples/axis2Server/src/SecureStockQuoteService/store.jks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/integration/samples/axis2Server/src/SecureStockQuoteService/store.jks -------------------------------------------------------------------------------- /integration/samples/axis2Server/src/SimpleStockQuoteService/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/integration/samples/axis2Server/src/SimpleStockQuoteService/build.xml -------------------------------------------------------------------------------- /integration/samples/data-services/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/integration/samples/data-services/README -------------------------------------------------------------------------------- /integration/samples/data-services/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/integration/samples/data-services/build.xml -------------------------------------------------------------------------------- /integration/samples/data-services/clients/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/integration/samples/data-services/clients/README -------------------------------------------------------------------------------- /integration/samples/data-services/clients/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/integration/samples/data-services/clients/build.xml -------------------------------------------------------------------------------- /integration/samples/data-services/clients/log4j.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/integration/samples/data-services/clients/log4j.properties -------------------------------------------------------------------------------- /integration/samples/data-services/clients/wsdl/CSVSampleService.wsdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/integration/samples/data-services/clients/wsdl/CSVSampleService.wsdl -------------------------------------------------------------------------------- /integration/samples/data-services/clients/wsdl/DTPSampleService.wsdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/integration/samples/data-services/clients/wsdl/DTPSampleService.wsdl -------------------------------------------------------------------------------- /integration/samples/data-services/clients/wsdl/EventingSample.wsdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/integration/samples/data-services/clients/wsdl/EventingSample.wsdl -------------------------------------------------------------------------------- /integration/samples/data-services/clients/wsdl/FaultDBService.wsdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/integration/samples/data-services/clients/wsdl/FaultDBService.wsdl -------------------------------------------------------------------------------- /integration/samples/data-services/clients/wsdl/FileService.wsdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/integration/samples/data-services/clients/wsdl/FileService.wsdl -------------------------------------------------------------------------------- /integration/samples/data-services/clients/wsdl/GSpreadSample.wsdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/integration/samples/data-services/clients/wsdl/GSpreadSample.wsdl -------------------------------------------------------------------------------- /integration/samples/data-services/clients/wsdl/NestedQuerySample.wsdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/integration/samples/data-services/clients/wsdl/NestedQuerySample.wsdl -------------------------------------------------------------------------------- /integration/samples/data-services/clients/wsdl/RDBMSSample.wsdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/integration/samples/data-services/clients/wsdl/RDBMSSample.wsdl -------------------------------------------------------------------------------- /integration/samples/data-services/clients/wsdl/RDFSampleService.wsdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/integration/samples/data-services/clients/wsdl/RDFSampleService.wsdl -------------------------------------------------------------------------------- /integration/samples/data-services/clients/wsdl/SecureDataService.wsdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/integration/samples/data-services/clients/wsdl/SecureDataService.wsdl -------------------------------------------------------------------------------- /integration/samples/data-services/dbs/cassandra/CassandraSample.dbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/integration/samples/data-services/dbs/cassandra/CassandraSample.dbs -------------------------------------------------------------------------------- /integration/samples/data-services/dbs/csv/CSVSampleService.dbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/integration/samples/data-services/dbs/csv/CSVSampleService.dbs -------------------------------------------------------------------------------- /integration/samples/data-services/dbs/excel/ExcelSampleService.dbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/integration/samples/data-services/dbs/excel/ExcelSampleService.dbs -------------------------------------------------------------------------------- /integration/samples/data-services/dbs/gspread/GSpreadSample.dbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/integration/samples/data-services/dbs/gspread/GSpreadSample.dbs -------------------------------------------------------------------------------- /integration/samples/data-services/dbs/inmemory/InMemoryDSSample.dbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/integration/samples/data-services/dbs/inmemory/InMemoryDSSample.dbs -------------------------------------------------------------------------------- /integration/samples/data-services/dbs/odata/ODataSampleService.dbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/integration/samples/data-services/dbs/odata/ODataSampleService.dbs -------------------------------------------------------------------------------- /integration/samples/data-services/dbs/rdbms/BatchRequestSample.dbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/integration/samples/data-services/dbs/rdbms/BatchRequestSample.dbs -------------------------------------------------------------------------------- /integration/samples/data-services/dbs/rdbms/DOCTORS_DataService.dbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/integration/samples/data-services/dbs/rdbms/DOCTORS_DataService.dbs -------------------------------------------------------------------------------- /integration/samples/data-services/dbs/rdbms/DTPSampleService.dbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/integration/samples/data-services/dbs/rdbms/DTPSampleService.dbs -------------------------------------------------------------------------------- /integration/samples/data-services/dbs/rdbms/EventingSample.dbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/integration/samples/data-services/dbs/rdbms/EventingSample.dbs -------------------------------------------------------------------------------- /integration/samples/data-services/dbs/rdbms/FileService.dbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/integration/samples/data-services/dbs/rdbms/FileService.dbs -------------------------------------------------------------------------------- /integration/samples/data-services/dbs/rdbms/JSONSample.dbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/integration/samples/data-services/dbs/rdbms/JSONSample.dbs -------------------------------------------------------------------------------- /integration/samples/data-services/dbs/rdbms/NestedQuerySample.dbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/integration/samples/data-services/dbs/rdbms/NestedQuerySample.dbs -------------------------------------------------------------------------------- /integration/samples/data-services/dbs/rdbms/RDBMSSample.dbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/integration/samples/data-services/dbs/rdbms/RDBMSSample.dbs -------------------------------------------------------------------------------- /integration/samples/data-services/dbs/rdbms/RDBMSSample_services.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/integration/samples/data-services/dbs/rdbms/RDBMSSample_services.xml -------------------------------------------------------------------------------- /integration/samples/data-services/dbs/rdbms/ResourcesSample.dbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/integration/samples/data-services/dbs/rdbms/ResourcesSample.dbs -------------------------------------------------------------------------------- /integration/samples/data-services/dbs/rdbms/SecureDataService.dbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/integration/samples/data-services/dbs/rdbms/SecureDataService.dbs -------------------------------------------------------------------------------- /integration/samples/data-services/dbs/rdf/RDFExposeAsRDFSample.dbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/integration/samples/data-services/dbs/rdf/RDFExposeAsRDFSample.dbs -------------------------------------------------------------------------------- /integration/samples/data-services/dbs/rdf/RDFSampleService.dbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/integration/samples/data-services/dbs/rdf/RDFSampleService.dbs -------------------------------------------------------------------------------- /integration/samples/data-services/dbs/web/WebResourceSample.dbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/integration/samples/data-services/dbs/web/WebResourceSample.dbs -------------------------------------------------------------------------------- /integration/samples/data-services/resources/Movies.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/integration/samples/data-services/resources/Movies.rdf -------------------------------------------------------------------------------- /integration/samples/data-services/resources/Products.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/integration/samples/data-services/resources/Products.csv -------------------------------------------------------------------------------- /integration/samples/data-services/resources/Products.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/integration/samples/data-services/resources/Products.xls -------------------------------------------------------------------------------- /integration/samples/data-services/resources/Products_Excel.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/integration/samples/data-services/resources/Products_Excel.xls -------------------------------------------------------------------------------- /integration/samples/data-services/resources/sample_axis2_client.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/integration/samples/data-services/resources/sample_axis2_client.xml -------------------------------------------------------------------------------- /integration/samples/data-services/resources/web_resource_config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/integration/samples/data-services/resources/web_resource_config.xml -------------------------------------------------------------------------------- /integration/samples/data-services/security/secure_sample_policy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/integration/samples/data-services/security/secure_sample_policy.xml -------------------------------------------------------------------------------- /integration/samples/data-services/shopping_cart/sql/h2/Category.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/integration/samples/data-services/shopping_cart/sql/h2/Category.sql -------------------------------------------------------------------------------- /integration/samples/data-services/shopping_cart/sql/h2/Product.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/integration/samples/data-services/shopping_cart/sql/h2/Product.sql -------------------------------------------------------------------------------- /integration/samples/data-services/shopping_cart/sql/mysql/Product.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/integration/samples/data-services/shopping_cart/sql/mysql/Product.sql -------------------------------------------------------------------------------- /integration/samples/data-services/sql/h2/CreateTables.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/integration/samples/data-services/sql/h2/CreateTables.sql -------------------------------------------------------------------------------- /integration/samples/data-services/sql/h2/CreateTables2.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/integration/samples/data-services/sql/h2/CreateTables2.sql -------------------------------------------------------------------------------- /integration/samples/data-services/sql/h2/Customers.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/integration/samples/data-services/sql/h2/Customers.sql -------------------------------------------------------------------------------- /integration/samples/data-services/sql/h2/Doctors.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/integration/samples/data-services/sql/h2/Doctors.sql -------------------------------------------------------------------------------- /integration/samples/data-services/sql/h2/Employees.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/integration/samples/data-services/sql/h2/Employees.sql -------------------------------------------------------------------------------- /integration/samples/data-services/sql/h2/Offices.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/integration/samples/data-services/sql/h2/Offices.sql -------------------------------------------------------------------------------- /integration/samples/data-services/sql/h2/OrderDetails.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/integration/samples/data-services/sql/h2/OrderDetails.sql -------------------------------------------------------------------------------- /integration/samples/data-services/sql/h2/Orders.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/integration/samples/data-services/sql/h2/Orders.sql -------------------------------------------------------------------------------- /integration/samples/data-services/sql/h2/Payments.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/integration/samples/data-services/sql/h2/Payments.sql -------------------------------------------------------------------------------- /integration/samples/data-services/sql/h2/ProductLines.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/integration/samples/data-services/sql/h2/ProductLines.sql -------------------------------------------------------------------------------- /integration/samples/data-services/sql/h2/Products.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/integration/samples/data-services/sql/h2/Products.sql -------------------------------------------------------------------------------- /integration/samples/data-services/wsdl/ContractFirstSample.wsdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/integration/samples/data-services/wsdl/ContractFirstSample.wsdl -------------------------------------------------------------------------------- /integration/samples/data-services/xslt/transform.xslt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/integration/samples/data-services/xslt/transform.xslt -------------------------------------------------------------------------------- /integration/samples/product/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/integration/samples/product/pom.xml -------------------------------------------------------------------------------- /integration/samples/product/services/FastStockQuoteService/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/integration/samples/product/services/FastStockQuoteService/build.xml -------------------------------------------------------------------------------- /integration/samples/product/services/HelloWorld/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/integration/samples/product/services/HelloWorld/build.xml -------------------------------------------------------------------------------- /integration/samples/product/services/HelloWorld/conf/services.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/integration/samples/product/services/HelloWorld/conf/services.xml -------------------------------------------------------------------------------- /integration/samples/product/services/MTOMSwASampleService/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/integration/samples/product/services/MTOMSwASampleService/build.xml -------------------------------------------------------------------------------- /integration/samples/product/src/main/conf/client/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/integration/samples/product/src/main/conf/client/README.txt -------------------------------------------------------------------------------- /integration/samples/product/src/main/conf/client/axis2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/integration/samples/product/src/main/conf/client/axis2.xml -------------------------------------------------------------------------------- /integration/samples/product/src/main/conf/server/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/integration/samples/product/src/main/conf/server/README.txt -------------------------------------------------------------------------------- /integration/samples/product/src/main/conf/server/axis2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/integration/samples/product/src/main/conf/server/axis2.xml -------------------------------------------------------------------------------- /integration/samples/product/src/main/conf/synapse/README.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /integration/samples/product/src/main/conf/synapse/registry.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/integration/samples/product/src/main/conf/synapse/registry.xml -------------------------------------------------------------------------------- /integration/samples/product/src/main/conf/synapse/synapse.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/integration/samples/product/src/main/conf/synapse/synapse.xml -------------------------------------------------------------------------------- /integration/samples/product/src/main/scripts/axis2server.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/integration/samples/product/src/main/scripts/axis2server.bat -------------------------------------------------------------------------------- /integration/samples/product/src/main/scripts/axis2server.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/integration/samples/product/src/main/scripts/axis2server.sh -------------------------------------------------------------------------------- /integration/samples/product/src/main/scripts/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/integration/samples/product/src/main/scripts/build.xml -------------------------------------------------------------------------------- /integration/samples/product/src/main/scripts/wso2esb-samples.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/integration/samples/product/src/main/scripts/wso2esb-samples.bat -------------------------------------------------------------------------------- /integration/samples/product/src/main/scripts/wso2esb-samples.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/integration/samples/product/src/main/scripts/wso2esb-samples.sh -------------------------------------------------------------------------------- /integration/samples/service-bus/README.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /integration/samples/service-bus/registry.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/integration/samples/service-bus/registry.xml -------------------------------------------------------------------------------- /integration/samples/service-bus/resources/fix/FIX40-synapse.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/integration/samples/service-bus/resources/fix/FIX40-synapse.xml -------------------------------------------------------------------------------- /integration/samples/service-bus/resources/fix/banzai.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/integration/samples/service-bus/resources/fix/banzai.cfg -------------------------------------------------------------------------------- /integration/samples/service-bus/resources/fix/conn.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/integration/samples/service-bus/resources/fix/conn.properties -------------------------------------------------------------------------------- /integration/samples/service-bus/resources/fix/direct.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/integration/samples/service-bus/resources/fix/direct.properties -------------------------------------------------------------------------------- /integration/samples/service-bus/resources/fix/executor.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/integration/samples/service-bus/resources/fix/executor.cfg -------------------------------------------------------------------------------- /integration/samples/service-bus/resources/fix/fix-synapse-m40.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/integration/samples/service-bus/resources/fix/fix-synapse-m40.cfg -------------------------------------------------------------------------------- /integration/samples/service-bus/resources/fix/fix-synapse.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/integration/samples/service-bus/resources/fix/fix-synapse.cfg -------------------------------------------------------------------------------- /integration/samples/service-bus/resources/fix/synapse-sender-m.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/integration/samples/service-bus/resources/fix/synapse-sender-m.cfg -------------------------------------------------------------------------------- /integration/samples/service-bus/resources/fix/synapse-sender.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/integration/samples/service-bus/resources/fix/synapse-sender.cfg -------------------------------------------------------------------------------- /integration/samples/service-bus/resources/misc/commission.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/integration/samples/service-bus/resources/misc/commission.xml -------------------------------------------------------------------------------- /integration/samples/service-bus/resources/misc/synapse.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/integration/samples/service-bus/resources/misc/synapse.xml -------------------------------------------------------------------------------- /integration/samples/service-bus/resources/mtom/asf-logo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/integration/samples/service-bus/resources/mtom/asf-logo.gif -------------------------------------------------------------------------------- /integration/samples/service-bus/resources/policy/policy_1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/integration/samples/service-bus/resources/policy/policy_1.xml -------------------------------------------------------------------------------- /integration/samples/service-bus/resources/policy/policy_3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/integration/samples/service-bus/resources/policy/policy_3.xml -------------------------------------------------------------------------------- /integration/samples/service-bus/resources/rule/always_ibm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/integration/samples/service-bus/resources/rule/always_ibm.xml -------------------------------------------------------------------------------- /integration/samples/service-bus/resources/rule/commission_rule.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/integration/samples/service-bus/resources/rule/commission_rule.xml -------------------------------------------------------------------------------- /integration/samples/service-bus/resources/security/store.jks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/integration/samples/service-bus/resources/security/store.jks -------------------------------------------------------------------------------- /integration/samples/service-bus/resources/smooks/edi-mapping.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/integration/samples/service-bus/resources/smooks/edi-mapping.xml -------------------------------------------------------------------------------- /integration/samples/service-bus/resources/smooks/edi.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/integration/samples/service-bus/resources/smooks/edi.txt -------------------------------------------------------------------------------- /integration/samples/service-bus/resources/smooks/mapping.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/integration/samples/service-bus/resources/smooks/mapping.xml -------------------------------------------------------------------------------- /integration/samples/service-bus/resources/smooks/smooks-config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/integration/samples/service-bus/resources/smooks/smooks-config.xml -------------------------------------------------------------------------------- /integration/samples/service-bus/resources/smooks/transform.xslt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/integration/samples/service-bus/resources/smooks/transform.xslt -------------------------------------------------------------------------------- /integration/samples/service-bus/resources/synapse.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/integration/samples/service-bus/resources/synapse.xml -------------------------------------------------------------------------------- /integration/samples/service-bus/resources/transform/transform.xslt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/integration/samples/service-bus/resources/transform/transform.xslt -------------------------------------------------------------------------------- /integration/samples/service-bus/resources/validate/validate.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/integration/samples/service-bus/resources/validate/validate.xsd -------------------------------------------------------------------------------- /integration/samples/service-bus/resources/validate/validate2.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/integration/samples/service-bus/resources/validate/validate2.xsd -------------------------------------------------------------------------------- /integration/samples/service-bus/resources/vfs/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/integration/samples/service-bus/resources/vfs/test.xml -------------------------------------------------------------------------------- /integration/samples/service-bus/resources/xquery/xquery_req.xq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/integration/samples/service-bus/resources/xquery/xquery_req.xq -------------------------------------------------------------------------------- /integration/samples/service-bus/resources/xquery/xquery_res.xq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/integration/samples/service-bus/resources/xquery/xquery_res.xq -------------------------------------------------------------------------------- /integration/samples/service-bus/synapse.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/integration/samples/service-bus/synapse.xml -------------------------------------------------------------------------------- /integration/samples/service-bus/synapse_sample_0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/integration/samples/service-bus/synapse_sample_0.xml -------------------------------------------------------------------------------- /integration/samples/service-bus/synapse_sample_1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/integration/samples/service-bus/synapse_sample_1.xml -------------------------------------------------------------------------------- /integration/samples/service-bus/synapse_sample_10.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/integration/samples/service-bus/synapse_sample_10.xml -------------------------------------------------------------------------------- /integration/samples/service-bus/synapse_sample_100.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/integration/samples/service-bus/synapse_sample_100.xml -------------------------------------------------------------------------------- /integration/samples/service-bus/synapse_sample_11.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/integration/samples/service-bus/synapse_sample_11.xml -------------------------------------------------------------------------------- /integration/samples/service-bus/synapse_sample_12.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/integration/samples/service-bus/synapse_sample_12.xml -------------------------------------------------------------------------------- /integration/samples/service-bus/synapse_sample_14.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/integration/samples/service-bus/synapse_sample_14.xml -------------------------------------------------------------------------------- /integration/samples/service-bus/synapse_sample_15.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/integration/samples/service-bus/synapse_sample_15.xml -------------------------------------------------------------------------------- /integration/samples/service-bus/synapse_sample_150.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/integration/samples/service-bus/synapse_sample_150.xml -------------------------------------------------------------------------------- /integration/samples/service-bus/synapse_sample_151.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/integration/samples/service-bus/synapse_sample_151.xml -------------------------------------------------------------------------------- /integration/samples/service-bus/synapse_sample_152.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/integration/samples/service-bus/synapse_sample_152.xml -------------------------------------------------------------------------------- /integration/samples/service-bus/synapse_sample_153.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/integration/samples/service-bus/synapse_sample_153.xml -------------------------------------------------------------------------------- /integration/samples/service-bus/synapse_sample_154.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/integration/samples/service-bus/synapse_sample_154.xml -------------------------------------------------------------------------------- /integration/samples/service-bus/synapse_sample_155.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/integration/samples/service-bus/synapse_sample_155.xml -------------------------------------------------------------------------------- /integration/samples/service-bus/synapse_sample_156.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/integration/samples/service-bus/synapse_sample_156.xml -------------------------------------------------------------------------------- /integration/samples/service-bus/synapse_sample_16.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/integration/samples/service-bus/synapse_sample_16.xml -------------------------------------------------------------------------------- /integration/samples/service-bus/synapse_sample_17.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/integration/samples/service-bus/synapse_sample_17.xml -------------------------------------------------------------------------------- /integration/samples/service-bus/synapse_sample_18.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/integration/samples/service-bus/synapse_sample_18.xml -------------------------------------------------------------------------------- /integration/samples/service-bus/synapse_sample_2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/integration/samples/service-bus/synapse_sample_2.xml -------------------------------------------------------------------------------- /integration/samples/service-bus/synapse_sample_200.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/integration/samples/service-bus/synapse_sample_200.xml -------------------------------------------------------------------------------- /integration/samples/service-bus/synapse_sample_250.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/integration/samples/service-bus/synapse_sample_250.xml -------------------------------------------------------------------------------- /integration/samples/service-bus/synapse_sample_251.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/integration/samples/service-bus/synapse_sample_251.xml -------------------------------------------------------------------------------- /integration/samples/service-bus/synapse_sample_252.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/integration/samples/service-bus/synapse_sample_252.xml -------------------------------------------------------------------------------- /integration/samples/service-bus/synapse_sample_253.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/integration/samples/service-bus/synapse_sample_253.xml -------------------------------------------------------------------------------- /integration/samples/service-bus/synapse_sample_254.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/integration/samples/service-bus/synapse_sample_254.xml -------------------------------------------------------------------------------- /integration/samples/service-bus/synapse_sample_255.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/integration/samples/service-bus/synapse_sample_255.xml -------------------------------------------------------------------------------- /integration/samples/service-bus/synapse_sample_256.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/integration/samples/service-bus/synapse_sample_256.xml -------------------------------------------------------------------------------- /integration/samples/service-bus/synapse_sample_257.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/integration/samples/service-bus/synapse_sample_257.xml -------------------------------------------------------------------------------- /integration/samples/service-bus/synapse_sample_258.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/integration/samples/service-bus/synapse_sample_258.xml -------------------------------------------------------------------------------- /integration/samples/service-bus/synapse_sample_259.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/integration/samples/service-bus/synapse_sample_259.xml -------------------------------------------------------------------------------- /integration/samples/service-bus/synapse_sample_260.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/integration/samples/service-bus/synapse_sample_260.xml -------------------------------------------------------------------------------- /integration/samples/service-bus/synapse_sample_261.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/integration/samples/service-bus/synapse_sample_261.xml -------------------------------------------------------------------------------- /integration/samples/service-bus/synapse_sample_262.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/integration/samples/service-bus/synapse_sample_262.xml -------------------------------------------------------------------------------- /integration/samples/service-bus/synapse_sample_263.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/integration/samples/service-bus/synapse_sample_263.xml -------------------------------------------------------------------------------- /integration/samples/service-bus/synapse_sample_264.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/integration/samples/service-bus/synapse_sample_264.xml -------------------------------------------------------------------------------- /integration/samples/service-bus/synapse_sample_265.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/integration/samples/service-bus/synapse_sample_265.xml -------------------------------------------------------------------------------- /integration/samples/service-bus/synapse_sample_266.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/integration/samples/service-bus/synapse_sample_266.xml -------------------------------------------------------------------------------- /integration/samples/service-bus/synapse_sample_267.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/integration/samples/service-bus/synapse_sample_267.xml -------------------------------------------------------------------------------- /integration/samples/service-bus/synapse_sample_268.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/integration/samples/service-bus/synapse_sample_268.xml -------------------------------------------------------------------------------- /integration/samples/service-bus/synapse_sample_270.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/integration/samples/service-bus/synapse_sample_270.xml -------------------------------------------------------------------------------- /integration/samples/service-bus/synapse_sample_272.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/integration/samples/service-bus/synapse_sample_272.xml -------------------------------------------------------------------------------- /integration/samples/service-bus/synapse_sample_3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/integration/samples/service-bus/synapse_sample_3.xml -------------------------------------------------------------------------------- /integration/samples/service-bus/synapse_sample_300.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/integration/samples/service-bus/synapse_sample_300.xml -------------------------------------------------------------------------------- /integration/samples/service-bus/synapse_sample_350.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/integration/samples/service-bus/synapse_sample_350.xml -------------------------------------------------------------------------------- /integration/samples/service-bus/synapse_sample_351.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/integration/samples/service-bus/synapse_sample_351.xml -------------------------------------------------------------------------------- /integration/samples/service-bus/synapse_sample_352.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/integration/samples/service-bus/synapse_sample_352.xml -------------------------------------------------------------------------------- /integration/samples/service-bus/synapse_sample_353.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/integration/samples/service-bus/synapse_sample_353.xml -------------------------------------------------------------------------------- /integration/samples/service-bus/synapse_sample_354.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/integration/samples/service-bus/synapse_sample_354.xml -------------------------------------------------------------------------------- /integration/samples/service-bus/synapse_sample_360.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/integration/samples/service-bus/synapse_sample_360.xml -------------------------------------------------------------------------------- /integration/samples/service-bus/synapse_sample_361.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/integration/samples/service-bus/synapse_sample_361.xml -------------------------------------------------------------------------------- /integration/samples/service-bus/synapse_sample_362.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/integration/samples/service-bus/synapse_sample_362.xml -------------------------------------------------------------------------------- /integration/samples/service-bus/synapse_sample_363.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/integration/samples/service-bus/synapse_sample_363.xml -------------------------------------------------------------------------------- /integration/samples/service-bus/synapse_sample_364.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/integration/samples/service-bus/synapse_sample_364.xml -------------------------------------------------------------------------------- /integration/samples/service-bus/synapse_sample_370.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/integration/samples/service-bus/synapse_sample_370.xml -------------------------------------------------------------------------------- /integration/samples/service-bus/synapse_sample_371.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/integration/samples/service-bus/synapse_sample_371.xml -------------------------------------------------------------------------------- /integration/samples/service-bus/synapse_sample_372.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/integration/samples/service-bus/synapse_sample_372.xml -------------------------------------------------------------------------------- /integration/samples/service-bus/synapse_sample_380.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/integration/samples/service-bus/synapse_sample_380.xml -------------------------------------------------------------------------------- /integration/samples/service-bus/synapse_sample_381.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/integration/samples/service-bus/synapse_sample_381.xml -------------------------------------------------------------------------------- /integration/samples/service-bus/synapse_sample_390.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/integration/samples/service-bus/synapse_sample_390.xml -------------------------------------------------------------------------------- /integration/samples/service-bus/synapse_sample_391.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/integration/samples/service-bus/synapse_sample_391.xml -------------------------------------------------------------------------------- /integration/samples/service-bus/synapse_sample_4.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/integration/samples/service-bus/synapse_sample_4.xml -------------------------------------------------------------------------------- /integration/samples/service-bus/synapse_sample_400.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/integration/samples/service-bus/synapse_sample_400.xml -------------------------------------------------------------------------------- /integration/samples/service-bus/synapse_sample_420.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/integration/samples/service-bus/synapse_sample_420.xml -------------------------------------------------------------------------------- /integration/samples/service-bus/synapse_sample_430.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/integration/samples/service-bus/synapse_sample_430.xml -------------------------------------------------------------------------------- /integration/samples/service-bus/synapse_sample_440.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/integration/samples/service-bus/synapse_sample_440.xml -------------------------------------------------------------------------------- /integration/samples/service-bus/synapse_sample_441.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/integration/samples/service-bus/synapse_sample_441.xml -------------------------------------------------------------------------------- /integration/samples/service-bus/synapse_sample_450.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/integration/samples/service-bus/synapse_sample_450.xml -------------------------------------------------------------------------------- /integration/samples/service-bus/synapse_sample_451.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/integration/samples/service-bus/synapse_sample_451.xml -------------------------------------------------------------------------------- /integration/samples/service-bus/synapse_sample_452.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/integration/samples/service-bus/synapse_sample_452.xml -------------------------------------------------------------------------------- /integration/samples/service-bus/synapse_sample_5.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/integration/samples/service-bus/synapse_sample_5.xml -------------------------------------------------------------------------------- /integration/samples/service-bus/synapse_sample_50.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/integration/samples/service-bus/synapse_sample_50.xml -------------------------------------------------------------------------------- /integration/samples/service-bus/synapse_sample_500.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/integration/samples/service-bus/synapse_sample_500.xml -------------------------------------------------------------------------------- /integration/samples/service-bus/synapse_sample_51.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/integration/samples/service-bus/synapse_sample_51.xml -------------------------------------------------------------------------------- /integration/samples/service-bus/synapse_sample_52.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/integration/samples/service-bus/synapse_sample_52.xml -------------------------------------------------------------------------------- /integration/samples/service-bus/synapse_sample_53.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/integration/samples/service-bus/synapse_sample_53.xml -------------------------------------------------------------------------------- /integration/samples/service-bus/synapse_sample_54.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/integration/samples/service-bus/synapse_sample_54.xml -------------------------------------------------------------------------------- /integration/samples/service-bus/synapse_sample_55.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/integration/samples/service-bus/synapse_sample_55.xml -------------------------------------------------------------------------------- /integration/samples/service-bus/synapse_sample_550.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/integration/samples/service-bus/synapse_sample_550.xml -------------------------------------------------------------------------------- /integration/samples/service-bus/synapse_sample_551.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/integration/samples/service-bus/synapse_sample_551.xml -------------------------------------------------------------------------------- /integration/samples/service-bus/synapse_sample_56.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/integration/samples/service-bus/synapse_sample_56.xml -------------------------------------------------------------------------------- /integration/samples/service-bus/synapse_sample_57.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/integration/samples/service-bus/synapse_sample_57.xml -------------------------------------------------------------------------------- /integration/samples/service-bus/synapse_sample_58.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/integration/samples/service-bus/synapse_sample_58.xml -------------------------------------------------------------------------------- /integration/samples/service-bus/synapse_sample_59.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/integration/samples/service-bus/synapse_sample_59.xml -------------------------------------------------------------------------------- /integration/samples/service-bus/synapse_sample_6.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/integration/samples/service-bus/synapse_sample_6.xml -------------------------------------------------------------------------------- /integration/samples/service-bus/synapse_sample_60.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/integration/samples/service-bus/synapse_sample_60.xml -------------------------------------------------------------------------------- /integration/samples/service-bus/synapse_sample_600.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/integration/samples/service-bus/synapse_sample_600.xml -------------------------------------------------------------------------------- /integration/samples/service-bus/synapse_sample_601.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/integration/samples/service-bus/synapse_sample_601.xml -------------------------------------------------------------------------------- /integration/samples/service-bus/synapse_sample_61.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/integration/samples/service-bus/synapse_sample_61.xml -------------------------------------------------------------------------------- /integration/samples/service-bus/synapse_sample_62.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/integration/samples/service-bus/synapse_sample_62.xml -------------------------------------------------------------------------------- /integration/samples/service-bus/synapse_sample_650.xml/synapse.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/integration/samples/service-bus/synapse_sample_650.xml/synapse.xml -------------------------------------------------------------------------------- /integration/samples/service-bus/synapse_sample_654.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/integration/samples/service-bus/synapse_sample_654.xml -------------------------------------------------------------------------------- /integration/samples/service-bus/synapse_sample_655.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/integration/samples/service-bus/synapse_sample_655.xml -------------------------------------------------------------------------------- /integration/samples/service-bus/synapse_sample_656.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/integration/samples/service-bus/synapse_sample_656.xml -------------------------------------------------------------------------------- /integration/samples/service-bus/synapse_sample_657.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/integration/samples/service-bus/synapse_sample_657.xml -------------------------------------------------------------------------------- /integration/samples/service-bus/synapse_sample_658.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/integration/samples/service-bus/synapse_sample_658.xml -------------------------------------------------------------------------------- /integration/samples/service-bus/synapse_sample_659.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/integration/samples/service-bus/synapse_sample_659.xml -------------------------------------------------------------------------------- /integration/samples/service-bus/synapse_sample_660.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/integration/samples/service-bus/synapse_sample_660.xml -------------------------------------------------------------------------------- /integration/samples/service-bus/synapse_sample_661.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/integration/samples/service-bus/synapse_sample_661.xml -------------------------------------------------------------------------------- /integration/samples/service-bus/synapse_sample_662.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/integration/samples/service-bus/synapse_sample_662.xml -------------------------------------------------------------------------------- /integration/samples/service-bus/synapse_sample_663.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/integration/samples/service-bus/synapse_sample_663.xml -------------------------------------------------------------------------------- /integration/samples/service-bus/synapse_sample_7.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/integration/samples/service-bus/synapse_sample_7.xml -------------------------------------------------------------------------------- /integration/samples/service-bus/synapse_sample_700.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/integration/samples/service-bus/synapse_sample_700.xml -------------------------------------------------------------------------------- /integration/samples/service-bus/synapse_sample_701.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/integration/samples/service-bus/synapse_sample_701.xml -------------------------------------------------------------------------------- /integration/samples/service-bus/synapse_sample_702.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/integration/samples/service-bus/synapse_sample_702.xml -------------------------------------------------------------------------------- /integration/samples/service-bus/synapse_sample_703.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/integration/samples/service-bus/synapse_sample_703.xml -------------------------------------------------------------------------------- /integration/samples/service-bus/synapse_sample_704.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/integration/samples/service-bus/synapse_sample_704.xml -------------------------------------------------------------------------------- /integration/samples/service-bus/synapse_sample_705.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/integration/samples/service-bus/synapse_sample_705.xml -------------------------------------------------------------------------------- /integration/samples/service-bus/synapse_sample_750.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/integration/samples/service-bus/synapse_sample_750.xml -------------------------------------------------------------------------------- /integration/samples/service-bus/synapse_sample_751.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/integration/samples/service-bus/synapse_sample_751.xml -------------------------------------------------------------------------------- /integration/samples/service-bus/synapse_sample_752.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/integration/samples/service-bus/synapse_sample_752.xml -------------------------------------------------------------------------------- /integration/samples/service-bus/synapse_sample_8.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/integration/samples/service-bus/synapse_sample_8.xml -------------------------------------------------------------------------------- /integration/samples/service-bus/synapse_sample_800.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/integration/samples/service-bus/synapse_sample_800.xml -------------------------------------------------------------------------------- /integration/samples/service-bus/synapse_sample_9.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/integration/samples/service-bus/synapse_sample_9.xml -------------------------------------------------------------------------------- /integration/samples/service-bus/synapse_sample_900.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/integration/samples/service-bus/synapse_sample_900.xml -------------------------------------------------------------------------------- /integration/samples/service-bus/synapse_sample_901.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/integration/samples/service-bus/synapse_sample_901.xml -------------------------------------------------------------------------------- /integration/samples/service-bus/synapse_sample_902.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/integration/samples/service-bus/synapse_sample_902.xml -------------------------------------------------------------------------------- /integration/samples/service-bus/synapse_sample_903.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/integration/samples/service-bus/synapse_sample_903.xml -------------------------------------------------------------------------------- /integration/samples/service-bus/synapse_sample_904.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/integration/samples/service-bus/synapse_sample_904.xml -------------------------------------------------------------------------------- /integration/samples/service-bus/synapse_sample_905.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/integration/samples/service-bus/synapse_sample_905.xml -------------------------------------------------------------------------------- /integration/samples/service-bus/synapse_sample_906.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/integration/samples/service-bus/synapse_sample_906.xml -------------------------------------------------------------------------------- /integration/samples/service-bus/synapse_sample_907.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/integration/samples/service-bus/synapse_sample_907.xml -------------------------------------------------------------------------------- /integration/samples/service-bus/synapse_sample_908.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/integration/samples/service-bus/synapse_sample_908.xml -------------------------------------------------------------------------------- /integration/tests-common/admin-clients/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/integration/tests-common/admin-clients/pom.xml -------------------------------------------------------------------------------- /integration/tests-common/integration-test-utils/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/integration/tests-common/integration-test-utils/pom.xml -------------------------------------------------------------------------------- /integration/tests-common/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/integration/tests-common/pom.xml -------------------------------------------------------------------------------- /migration/data-mapper-config-migration-service/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/migration/data-mapper-config-migration-service/README.md -------------------------------------------------------------------------------- /migration/data-mapper-config-migration-service/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/migration/data-mapper-config-migration-service/pom.xml -------------------------------------------------------------------------------- /migration/migration-service/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/migration/migration-service/README.md -------------------------------------------------------------------------------- /migration/migration-service/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/migration/migration-service/pom.xml -------------------------------------------------------------------------------- /migration/registry-migration-service/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/migration/registry-migration-service/README.md -------------------------------------------------------------------------------- /migration/registry-migration-service/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/migration/registry-migration-service/pom.xml -------------------------------------------------------------------------------- /migration/registry/from-mi-1.0.0-to-later/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/migration/registry/from-mi-1.0.0-to-later/README.md -------------------------------------------------------------------------------- /migration/registry/from-mi-1.0.0-to-later/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/migration/registry/from-mi-1.0.0-to-later/pom.xml -------------------------------------------------------------------------------- /p2-profile/carbon.product: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/p2-profile/carbon.product -------------------------------------------------------------------------------- /p2-profile/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/p2-profile/pom.xml -------------------------------------------------------------------------------- /performance/benchmarks/summary.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/performance/benchmarks/summary.csv -------------------------------------------------------------------------------- /performance/benchmarks/summary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/performance/benchmarks/summary.md -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/pom.xml -------------------------------------------------------------------------------- /product-scenarios/.gitignore: -------------------------------------------------------------------------------- 1 | m2 2 | -------------------------------------------------------------------------------- /product-scenarios/1-integrating-systems-that-communicate-in-heterogeneous-message-formats/1.7-json-message-enrichment/readme.md: -------------------------------------------------------------------------------- 1 | # 1.7 Json Message Enrichment 2 | 3 | ## Test Scenarios 4 | -------------------------------------------------------------------------------- /product-scenarios/10-file-processing/images/file_processing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/product-scenarios/10-file-processing/images/file_processing.png -------------------------------------------------------------------------------- /product-scenarios/10-file-processing/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/product-scenarios/10-file-processing/pom.xml -------------------------------------------------------------------------------- /product-scenarios/10-file-processing/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/product-scenarios/10-file-processing/readme.md -------------------------------------------------------------------------------- /product-scenarios/10-file-processing/resources/keystores/key.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/product-scenarios/10-file-processing/resources/keystores/key.crt -------------------------------------------------------------------------------- /product-scenarios/11-Asynchronous-message-processing/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/product-scenarios/11-Asynchronous-message-processing/pom.xml -------------------------------------------------------------------------------- /product-scenarios/11-Asynchronous-message-processing/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/product-scenarios/11-Asynchronous-message-processing/readme.md -------------------------------------------------------------------------------- /product-scenarios/12-workflows-and-human-interactions/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/product-scenarios/12-workflows-and-human-interactions/readme.md -------------------------------------------------------------------------------- /product-scenarios/13-micro-services/13.10-Templating/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/product-scenarios/13-micro-services/13.10-Templating/pom.xml -------------------------------------------------------------------------------- /product-scenarios/13-micro-services/13.8-Data-handling/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/product-scenarios/13-micro-services/13.8-Data-handling/pom.xml -------------------------------------------------------------------------------- /product-scenarios/13-micro-services/13.9-Securing-services/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/product-scenarios/13-micro-services/13.9-Securing-services/pom.xml -------------------------------------------------------------------------------- /product-scenarios/13-micro-services/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/product-scenarios/13-micro-services/pom.xml -------------------------------------------------------------------------------- /product-scenarios/13-micro-services/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/product-scenarios/13-micro-services/readme.md -------------------------------------------------------------------------------- /product-scenarios/13-micro-services/resources/keystores/key.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/product-scenarios/13-micro-services/resources/keystores/key.crt -------------------------------------------------------------------------------- /product-scenarios/14-periodically-execute-an-integration-process/14.2-scheduling-a-customized-java-task/14.2.1-scheduling-a-java-task-with-interval/readme.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /product-scenarios/14-periodically-execute-an-integration-process/14.2-scheduling-a-customized-java-task/14.2.2-scheduling-a-java-task-with-cron/readme.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /product-scenarios/15-smb2-scenario-configs/1.2.0/smb.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/product-scenarios/15-smb2-scenario-configs/1.2.0/smb.conf -------------------------------------------------------------------------------- /product-scenarios/15-smb2-scenario-configs/smb.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/product-scenarios/15-smb2-scenario-configs/smb.conf -------------------------------------------------------------------------------- /product-scenarios/16-master-smb2-scenario-configs/smb.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/product-scenarios/16-master-smb2-scenario-configs/smb.conf -------------------------------------------------------------------------------- /product-scenarios/3-connecting-web-apis-cloud-services/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/product-scenarios/3-connecting-web-apis-cloud-services/pom.xml -------------------------------------------------------------------------------- /product-scenarios/3-connecting-web-apis-cloud-services/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/product-scenarios/3-connecting-web-apis-cloud-services/readme.md -------------------------------------------------------------------------------- /product-scenarios/4-gateway/4.5-Request-validation/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/product-scenarios/4-gateway/4.5-Request-validation/readme.md -------------------------------------------------------------------------------- /product-scenarios/4-gateway/4.6-Request-load-balancing/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/product-scenarios/4-gateway/4.6-Request-load-balancing/readme.md -------------------------------------------------------------------------------- /product-scenarios/4-gateway/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/product-scenarios/4-gateway/pom.xml -------------------------------------------------------------------------------- /product-scenarios/4-gateway/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/product-scenarios/4-gateway/readme.md -------------------------------------------------------------------------------- /product-scenarios/4-gateway/resources/keystores/key.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/product-scenarios/4-gateway/resources/keystores/key.crt -------------------------------------------------------------------------------- /product-scenarios/4-gateway/resources/keystores/wso2carbon.jks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/product-scenarios/4-gateway/resources/keystores/wso2carbon.jks -------------------------------------------------------------------------------- /product-scenarios/5-route-messages-between-systems/05-synapseConfigProject/05-synapseConfigRegistry/artifact.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /product-scenarios/5-route-messages-between-systems/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/product-scenarios/5-route-messages-between-systems/pom.xml -------------------------------------------------------------------------------- /product-scenarios/5-route-messages-between-systems/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/product-scenarios/5-route-messages-between-systems/readme.md -------------------------------------------------------------------------------- /product-scenarios/6-service-orchestration/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/product-scenarios/6-service-orchestration/readme.md -------------------------------------------------------------------------------- /product-scenarios/7-connecting-with-packaged-applications/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/product-scenarios/7-connecting-with-packaged-applications/pom.xml -------------------------------------------------------------------------------- /product-scenarios/8-connect-devices-to-enterprise/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/product-scenarios/8-connect-devices-to-enterprise/pom.xml -------------------------------------------------------------------------------- /product-scenarios/8-connect-devices-to-enterprise/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/product-scenarios/8-connect-devices-to-enterprise/readme.md -------------------------------------------------------------------------------- /product-scenarios/9-data-integration/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/product-scenarios/9-data-integration/readme.md -------------------------------------------------------------------------------- /product-scenarios/backend-service/.gitignore: -------------------------------------------------------------------------------- 1 | !stockQuoteService/axis2.war -------------------------------------------------------------------------------- /product-scenarios/backend-service/ballerinaService/resources/json/request/2_1_1_23.json: -------------------------------------------------------------------------------- 1 | {"LookupCity":{"Zip":60601}} 2 | -------------------------------------------------------------------------------- /product-scenarios/backend-service/ballerinaService/src/.ballerina/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /product-scenarios/backend-service/ballerinaService/src/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/product-scenarios/backend-service/ballerinaService/src/.gitignore -------------------------------------------------------------------------------- /product-scenarios/backend-service/ballerinaService/src/Ballerina.toml: -------------------------------------------------------------------------------- 1 | [project] 2 | org-name = "wso2" 3 | version = "1.0.0" 4 | 5 | -------------------------------------------------------------------------------- /product-scenarios/backend-service/ballerinaService/src/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/product-scenarios/backend-service/ballerinaService/src/README.md -------------------------------------------------------------------------------- /product-scenarios/backend-service/ballerinaService/src/service.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/product-scenarios/backend-service/ballerinaService/src/service.sh -------------------------------------------------------------------------------- /product-scenarios/backend-service/clear_invocations.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/product-scenarios/backend-service/clear_invocations.sh -------------------------------------------------------------------------------- /product-scenarios/backend-service/schedule_clear_invocations.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/product-scenarios/backend-service/schedule_clear_invocations.sh -------------------------------------------------------------------------------- /product-scenarios/backend-service/schedule_sync_resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/product-scenarios/backend-service/schedule_sync_resources.sh -------------------------------------------------------------------------------- /product-scenarios/backend-service/start_rest_services.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/product-scenarios/backend-service/start_rest_services.sh -------------------------------------------------------------------------------- /product-scenarios/backend-service/stockQuoteService/axis2.war: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/product-scenarios/backend-service/stockQuoteService/axis2.war -------------------------------------------------------------------------------- /product-scenarios/backend-service/sync_resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/product-scenarios/backend-service/sync_resources.sh -------------------------------------------------------------------------------- /product-scenarios/build_artifacts.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/product-scenarios/build_artifacts.sh -------------------------------------------------------------------------------- /product-scenarios/code-coverage/code-coverage.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/product-scenarios/code-coverage/code-coverage.sh -------------------------------------------------------------------------------- /product-scenarios/code-coverage/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/product-scenarios/code-coverage/pom.xml -------------------------------------------------------------------------------- /product-scenarios/deployment.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/product-scenarios/deployment.properties -------------------------------------------------------------------------------- /product-scenarios/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/product-scenarios/pom.xml -------------------------------------------------------------------------------- /product-scenarios/prepare_artifacts.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/product-scenarios/prepare_artifacts.sh -------------------------------------------------------------------------------- /product-scenarios/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/product-scenarios/readme.md -------------------------------------------------------------------------------- /product-scenarios/scenarios-commons/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/product-scenarios/scenarios-commons/pom.xml -------------------------------------------------------------------------------- /product-scenarios/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/product-scenarios/test.sh -------------------------------------------------------------------------------- /pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/pull_request_template.md -------------------------------------------------------------------------------- /samples/APITesting/deployment/deployment.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/samples/APITesting/deployment/deployment.toml -------------------------------------------------------------------------------- /samples/APITesting/deployment/docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/samples/APITesting/deployment/docker/Dockerfile -------------------------------------------------------------------------------- /samples/APITesting/deployment/docker/resources/wso2carbon.jks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/samples/APITesting/deployment/docker/resources/wso2carbon.jks -------------------------------------------------------------------------------- /samples/APITesting/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/samples/APITesting/pom.xml -------------------------------------------------------------------------------- /samples/APITesting/src/main/wso2mi/artifacts/apis/RESTApi.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/samples/APITesting/src/main/wso2mi/artifacts/apis/RESTApi.xml -------------------------------------------------------------------------------- /samples/APITesting/src/test/wso2mi/ApiTestSuite.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/samples/APITesting/src/test/wso2mi/ApiTestSuite.xml -------------------------------------------------------------------------------- /samples/AnalyticsSampleDataProvider/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/samples/AnalyticsSampleDataProvider/README.md -------------------------------------------------------------------------------- /samples/AnalyticsSampleDataProvider/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/samples/AnalyticsSampleDataProvider/pom.xml -------------------------------------------------------------------------------- /samples/ContentBasedRouting/deployment/deployment.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/samples/ContentBasedRouting/deployment/deployment.toml -------------------------------------------------------------------------------- /samples/ContentBasedRouting/deployment/docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/samples/ContentBasedRouting/deployment/docker/Dockerfile -------------------------------------------------------------------------------- /samples/ContentBasedRouting/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/samples/ContentBasedRouting/pom.xml -------------------------------------------------------------------------------- /samples/DatabasePolling/deployment/deployment.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/samples/DatabasePolling/deployment/deployment.toml -------------------------------------------------------------------------------- /samples/DatabasePolling/deployment/docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/samples/DatabasePolling/deployment/docker/Dockerfile -------------------------------------------------------------------------------- /samples/DatabasePolling/deployment/docker/resources/wso2carbon.jks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/samples/DatabasePolling/deployment/docker/resources/wso2carbon.jks -------------------------------------------------------------------------------- /samples/DatabasePolling/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/samples/DatabasePolling/pom.xml -------------------------------------------------------------------------------- /samples/EmailService/deployment/deployment.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/samples/EmailService/deployment/deployment.toml -------------------------------------------------------------------------------- /samples/EmailService/deployment/docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/samples/EmailService/deployment/docker/Dockerfile -------------------------------------------------------------------------------- /samples/EmailService/deployment/docker/resources/wso2carbon.jks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/samples/EmailService/deployment/docker/resources/wso2carbon.jks -------------------------------------------------------------------------------- /samples/EmailService/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/samples/EmailService/pom.xml -------------------------------------------------------------------------------- /samples/ExceptionHandling/deployment/deployment.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/samples/ExceptionHandling/deployment/deployment.toml -------------------------------------------------------------------------------- /samples/ExceptionHandling/deployment/docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/samples/ExceptionHandling/deployment/docker/Dockerfile -------------------------------------------------------------------------------- /samples/ExceptionHandling/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/samples/ExceptionHandling/pom.xml -------------------------------------------------------------------------------- /samples/ExceptionHandling/src/test/wso2mi/TimeoutAPITest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/samples/ExceptionHandling/src/test/wso2mi/TimeoutAPITest.xml -------------------------------------------------------------------------------- /samples/FetchSalesForceAccounts/deployment/deployment.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/samples/FetchSalesForceAccounts/deployment/deployment.toml -------------------------------------------------------------------------------- /samples/FetchSalesForceAccounts/deployment/docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/samples/FetchSalesForceAccounts/deployment/docker/Dockerfile -------------------------------------------------------------------------------- /samples/FetchSalesForceAccounts/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/samples/FetchSalesForceAccounts/pom.xml -------------------------------------------------------------------------------- /samples/FileTransfer/deployment/deployment.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/samples/FileTransfer/deployment/deployment.toml -------------------------------------------------------------------------------- /samples/FileTransfer/deployment/docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/samples/FileTransfer/deployment/docker/Dockerfile -------------------------------------------------------------------------------- /samples/FileTransfer/deployment/docker/resources/wso2carbon.jks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/samples/FileTransfer/deployment/docker/resources/wso2carbon.jks -------------------------------------------------------------------------------- /samples/FileTransfer/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/samples/FileTransfer/pom.xml -------------------------------------------------------------------------------- /samples/GuaranteedDelivery/deployment/deployment.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/samples/GuaranteedDelivery/deployment/deployment.toml -------------------------------------------------------------------------------- /samples/GuaranteedDelivery/deployment/docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/samples/GuaranteedDelivery/deployment/docker/Dockerfile -------------------------------------------------------------------------------- /samples/GuaranteedDelivery/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/samples/GuaranteedDelivery/pom.xml -------------------------------------------------------------------------------- /samples/HeaderBasedRouting/deployment/deployment.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/samples/HeaderBasedRouting/deployment/deployment.toml -------------------------------------------------------------------------------- /samples/HeaderBasedRouting/deployment/docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/samples/HeaderBasedRouting/deployment/docker/Dockerfile -------------------------------------------------------------------------------- /samples/HeaderBasedRouting/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/samples/HeaderBasedRouting/pom.xml -------------------------------------------------------------------------------- /samples/HeaderBasedRouting/src/test/wso2mi/CalculatorAPITest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/samples/HeaderBasedRouting/src/test/wso2mi/CalculatorAPITest.xml -------------------------------------------------------------------------------- /samples/HelloDocker/deployment/deployment.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/samples/HelloDocker/deployment/deployment.toml -------------------------------------------------------------------------------- /samples/HelloDocker/deployment/docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/samples/HelloDocker/deployment/docker/Dockerfile -------------------------------------------------------------------------------- /samples/HelloDocker/deployment/docker/resources/wso2carbon.jks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/samples/HelloDocker/deployment/docker/resources/wso2carbon.jks -------------------------------------------------------------------------------- /samples/HelloDocker/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/samples/HelloDocker/pom.xml -------------------------------------------------------------------------------- /samples/HelloDocker/src/main/wso2mi/artifacts/apis/HelloWorld.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/samples/HelloDocker/src/main/wso2mi/artifacts/apis/HelloWorld.xml -------------------------------------------------------------------------------- /samples/HelloDocker/src/test/wso2mi/HelloWorldTest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/samples/HelloDocker/src/test/wso2mi/HelloWorldTest.xml -------------------------------------------------------------------------------- /samples/HelloWorldService/deployment/deployment.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/samples/HelloWorldService/deployment/deployment.toml -------------------------------------------------------------------------------- /samples/HelloWorldService/deployment/docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/samples/HelloWorldService/deployment/docker/Dockerfile -------------------------------------------------------------------------------- /samples/HelloWorldService/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/samples/HelloWorldService/pom.xml -------------------------------------------------------------------------------- /samples/HelloWorldService/src/test/wso2mi/HelloWorldTest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/samples/HelloWorldService/src/test/wso2mi/HelloWorldTest.xml -------------------------------------------------------------------------------- /samples/JMSIntegration/deployment/deployment.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/samples/JMSIntegration/deployment/deployment.toml -------------------------------------------------------------------------------- /samples/JMSIntegration/deployment/docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/samples/JMSIntegration/deployment/docker/Dockerfile -------------------------------------------------------------------------------- /samples/JMSIntegration/deployment/docker/resources/wso2carbon.jks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/samples/JMSIntegration/deployment/docker/resources/wso2carbon.jks -------------------------------------------------------------------------------- /samples/JMSIntegration/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/samples/JMSIntegration/pom.xml -------------------------------------------------------------------------------- /samples/JSONtoXMLMapping/deployment/deployment.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/samples/JSONtoXMLMapping/deployment/deployment.toml -------------------------------------------------------------------------------- /samples/JSONtoXMLMapping/deployment/docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/samples/JSONtoXMLMapping/deployment/docker/Dockerfile -------------------------------------------------------------------------------- /samples/JSONtoXMLMapping/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/samples/JSONtoXMLMapping/pom.xml -------------------------------------------------------------------------------- /samples/KafkaConsumerAndProducer/deployment/deployment.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/samples/KafkaConsumerAndProducer/deployment/deployment.toml -------------------------------------------------------------------------------- /samples/KafkaConsumerAndProducer/deployment/docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/samples/KafkaConsumerAndProducer/deployment/docker/Dockerfile -------------------------------------------------------------------------------- /samples/KafkaConsumerAndProducer/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/samples/KafkaConsumerAndProducer/pom.xml -------------------------------------------------------------------------------- /samples/MessageFiltering/deployment/deployment.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/samples/MessageFiltering/deployment/deployment.toml -------------------------------------------------------------------------------- /samples/MessageFiltering/deployment/docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/samples/MessageFiltering/deployment/docker/Dockerfile -------------------------------------------------------------------------------- /samples/MessageFiltering/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/samples/MessageFiltering/pom.xml -------------------------------------------------------------------------------- /samples/MessageFiltering/src/test/wso2mi/PhoneVerifyAPITest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/samples/MessageFiltering/src/test/wso2mi/PhoneVerifyAPITest.xml -------------------------------------------------------------------------------- /samples/PeriodicalScheduledTasks/deployment/deployment.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/samples/PeriodicalScheduledTasks/deployment/deployment.toml -------------------------------------------------------------------------------- /samples/PeriodicalScheduledTasks/deployment/docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/samples/PeriodicalScheduledTasks/deployment/docker/Dockerfile -------------------------------------------------------------------------------- /samples/PeriodicalScheduledTasks/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/samples/PeriodicalScheduledTasks/pom.xml -------------------------------------------------------------------------------- /samples/ProtocolSwitching/deployment/deployment.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/samples/ProtocolSwitching/deployment/deployment.toml -------------------------------------------------------------------------------- /samples/ProtocolSwitching/deployment/docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/samples/ProtocolSwitching/deployment/docker/Dockerfile -------------------------------------------------------------------------------- /samples/ProtocolSwitching/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/samples/ProtocolSwitching/pom.xml -------------------------------------------------------------------------------- /samples/ProxyingaRESTService/deployment/deployment.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/samples/ProxyingaRESTService/deployment/deployment.toml -------------------------------------------------------------------------------- /samples/ProxyingaRESTService/deployment/docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/samples/ProxyingaRESTService/deployment/docker/Dockerfile -------------------------------------------------------------------------------- /samples/ProxyingaRESTService/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/samples/ProxyingaRESTService/pom.xml -------------------------------------------------------------------------------- /samples/ProxyingaSOAPService/deployment/deployment.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/samples/ProxyingaSOAPService/deployment/deployment.toml -------------------------------------------------------------------------------- /samples/ProxyingaSOAPService/deployment/docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/samples/ProxyingaSOAPService/deployment/docker/Dockerfile -------------------------------------------------------------------------------- /samples/ProxyingaSOAPService/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/samples/ProxyingaSOAPService/pom.xml -------------------------------------------------------------------------------- /samples/RESTDataService/deployment/deployment.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/samples/RESTDataService/deployment/deployment.toml -------------------------------------------------------------------------------- /samples/RESTDataService/deployment/docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/samples/RESTDataService/deployment/docker/Dockerfile -------------------------------------------------------------------------------- /samples/RESTDataService/deployment/docker/resources/wso2carbon.jks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/samples/RESTDataService/deployment/docker/resources/wso2carbon.jks -------------------------------------------------------------------------------- /samples/RESTDataService/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/samples/RESTDataService/pom.xml -------------------------------------------------------------------------------- /samples/RESTtoSOAPConversion/deployment/deployment.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/samples/RESTtoSOAPConversion/deployment/deployment.toml -------------------------------------------------------------------------------- /samples/RESTtoSOAPConversion/deployment/docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/samples/RESTtoSOAPConversion/deployment/docker/Dockerfile -------------------------------------------------------------------------------- /samples/RESTtoSOAPConversion/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/samples/RESTtoSOAPConversion/pom.xml -------------------------------------------------------------------------------- /samples/RabbitMQIntegration/deployment/deployment.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/samples/RabbitMQIntegration/deployment/deployment.toml -------------------------------------------------------------------------------- /samples/RabbitMQIntegration/deployment/docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/samples/RabbitMQIntegration/deployment/docker/Dockerfile -------------------------------------------------------------------------------- /samples/RabbitMQIntegration/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/samples/RabbitMQIntegration/pom.xml -------------------------------------------------------------------------------- /samples/ScatterGatherIntegrationPattern/deployment/deployment.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/samples/ScatterGatherIntegrationPattern/deployment/deployment.toml -------------------------------------------------------------------------------- /samples/ScatterGatherIntegrationPattern/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/samples/ScatterGatherIntegrationPattern/pom.xml -------------------------------------------------------------------------------- /samples/StudentsDataService/deployment/deployment.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/samples/StudentsDataService/deployment/deployment.toml -------------------------------------------------------------------------------- /samples/StudentsDataService/deployment/docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/samples/StudentsDataService/deployment/docker/Dockerfile -------------------------------------------------------------------------------- /samples/StudentsDataService/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/samples/StudentsDataService/pom.xml -------------------------------------------------------------------------------- /samples/UnitTestTutorial/deployment/deployment.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/samples/UnitTestTutorial/deployment/deployment.toml -------------------------------------------------------------------------------- /samples/UnitTestTutorial/deployment/docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/samples/UnitTestTutorial/deployment/docker/Dockerfile -------------------------------------------------------------------------------- /samples/UnitTestTutorial/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/samples/UnitTestTutorial/pom.xml -------------------------------------------------------------------------------- /samples/UnitTestTutorial/src/test/wso2mi/fisrtSubFlowTestSuite.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/samples/UnitTestTutorial/src/test/wso2mi/fisrtSubFlowTestSuite.xml -------------------------------------------------------------------------------- /samples/XMLToJSONTransformation/deployment/deployment.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/samples/XMLToJSONTransformation/deployment/deployment.toml -------------------------------------------------------------------------------- /samples/XMLToJSONTransformation/deployment/docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/samples/XMLToJSONTransformation/deployment/docker/Dockerfile -------------------------------------------------------------------------------- /samples/XMLToJSONTransformation/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/samples/XMLToJSONTransformation/pom.xml -------------------------------------------------------------------------------- /samples/XMLtoJSONMapping/deployment/deployment.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/samples/XMLtoJSONMapping/deployment/deployment.toml -------------------------------------------------------------------------------- /samples/XMLtoJSONMapping/deployment/docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/samples/XMLtoJSONMapping/deployment/docker/Dockerfile -------------------------------------------------------------------------------- /samples/XMLtoJSONMapping/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-micro-integrator/HEAD/samples/XMLtoJSONMapping/pom.xml --------------------------------------------------------------------------------