├── .gitignore ├── .travis.yml ├── Procfile ├── README.md ├── Weather1-0-soapui-project.xml ├── infinitest.filters ├── kibana_SOAP-Analytics_dashboard.png ├── kibana_SOAP-Message-Analytics.png ├── kibana_export.json ├── pom.xml ├── src ├── main │ ├── java │ │ └── de │ │ │ └── codecentric │ │ │ └── soap │ │ │ ├── SoapApplication.java │ │ │ ├── backend │ │ │ └── WeatherBackend.java │ │ │ ├── common │ │ │ ├── BusinessException.java │ │ │ ├── FaultConst.java │ │ │ ├── WeatherConstants.java │ │ │ └── XmlUtils.java │ │ │ ├── configuration │ │ │ ├── ApplicationConfiguration.java │ │ │ ├── WebServiceConfiguration.java │ │ │ ├── WebServiceMessageLoggerConfiguration.java │ │ │ └── customsoapfaults │ │ │ │ ├── WeatherServiceCustomSoapFaultInterceptor.java │ │ │ │ └── WeatherSoapFaultHelper.java │ │ │ ├── controller │ │ │ ├── WeatherServiceController.java │ │ │ ├── WeatherServiceControllerFacadeAspect.java │ │ │ └── WeatherServiceControllerImpl.java │ │ │ ├── endpoint │ │ │ └── WeatherServiceEndpoint.java │ │ │ ├── internalmodel │ │ │ ├── GeneralOutlook.java │ │ │ ├── MethodOfPayment.java │ │ │ ├── Product.java │ │ │ ├── User.java │ │ │ └── Weather.java │ │ │ ├── logging │ │ │ ├── CxfLoggingSoapActionUtil.java │ │ │ ├── ElasticsearchField.java │ │ │ ├── LogCorrelationFilter.java │ │ │ ├── SoapFrameworkLogger.java │ │ │ └── soapmsg │ │ │ │ ├── LoggingInInterceptorSlf4jSoapMsgExtractor.java │ │ │ │ ├── LoggingInInterceptorXmlOnly.java │ │ │ │ ├── LoggingOutInterceptorSlf4jSoapMsgExtractor.java │ │ │ │ └── LoggingOutInterceptorXmlOnly.java │ │ │ ├── rules │ │ │ ├── PlausibilityChecker.java │ │ │ ├── RuleKeys.java │ │ │ └── Rules.java │ │ │ └── transformation │ │ │ ├── GetCityForecastByZIPInMapper.java │ │ │ ├── GetCityForecastByZIPOutMapper.java │ │ │ ├── GetCityWeatherByZIPOutMapper.java │ │ │ ├── GetWeatherInformationOutMapper.java │ │ │ └── WeatherOutError.java │ └── resources │ │ ├── META-INF │ │ └── cxf │ │ │ └── org.apache.cxf.Logger │ │ ├── application.properties │ │ ├── logback-spring.xml │ │ ├── responses │ │ ├── GetCityForecastByZIPDummyResponse.xml │ │ ├── GetCityWeatherByZIPDummyResponse.xml │ │ ├── GetWeatherInformationDummyResponse.xml │ │ └── forecast.pdf │ │ ├── rules │ │ ├── facadeModeActive.dmn │ │ ├── weatherFields2Check.dmn │ │ └── weatherRules.dmn │ │ └── service-api-definition │ │ ├── Weather-Schemes │ │ ├── w3c-xmlmime-definition.xsd │ │ ├── weather-datatypes.xsd │ │ ├── weather-exception.xsd │ │ └── weather-general.xsd │ │ ├── Weather1.0.wsdl │ │ ├── Weather1.0.xsd │ │ └── bindings.xml └── test │ ├── java │ └── de │ │ └── codecentric │ │ └── soap │ │ ├── SoapTestApplication.java │ │ ├── configuration │ │ ├── ApplicationTestConfiguration.java │ │ └── WebServiceTestConfiguration.java │ │ ├── controller │ │ └── WeatherServiceFacadeSystemTest.java │ │ ├── endpoint │ │ ├── WeatherServiceEndpointSystemTest.java │ │ ├── WeatherServiceEndpointTest.java │ │ └── WeatherServiceEndpointXMLErrorTest.java │ │ ├── logging │ │ └── CxfLoggingSoapActionUtilTest.java │ │ ├── rules │ │ ├── PlausibilityIntegrationTest.java │ │ └── PlausibilityTests.java │ │ └── soaprawclient │ │ ├── SoapRawClient.java │ │ └── SoapRawClientResponse.java │ └── resources │ ├── dev-test.properties │ └── requests │ ├── GetCityForecastByZIPTest.xml │ ├── GetCityWeatherByZIP.xml │ ├── GetWeatherInformationTest.xml │ ├── rules │ ├── GetCityForecastByZIPActivateFacadeMode.xml │ └── GetCityForecastByZIPPostalcodeToLong.xml │ ├── xmlErrorNotXmlSchemeCompliantRootElementTest.xml │ ├── xmlErrorNotXmlSchemeCompliantUnderRootElementTest.xml │ ├── xmlErrorSoapBodyTagMissingBracketTest.xml │ ├── xmlErrorSoapEnvelopeTagMissingBracketTest.xml │ ├── xmlErrorSoapHeaderMissingSlash.xml │ ├── xmlErrorSoapHeaderTagMissingBracketTest.xml │ ├── xmlErrorXMLHeaderDefinitionMissingBracket.xml │ └── xmlErrorXMLTagNotClosedInsideBodyTest.xml ├── weatherFields2CheckDMN.png └── weatherRulesDMN.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/soap-spring-boot-cxf/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/soap-spring-boot-cxf/HEAD/.travis.yml -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | web java -Dserver.port=$PORT $JAVA_OPTS -jar target/soap-spring-boot-cxf-0.0.7-SNAPSHOT.jar -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/soap-spring-boot-cxf/HEAD/README.md -------------------------------------------------------------------------------- /Weather1-0-soapui-project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/soap-spring-boot-cxf/HEAD/Weather1-0-soapui-project.xml -------------------------------------------------------------------------------- /infinitest.filters: -------------------------------------------------------------------------------- 1 | .*IntegrationTest -------------------------------------------------------------------------------- /kibana_SOAP-Analytics_dashboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/soap-spring-boot-cxf/HEAD/kibana_SOAP-Analytics_dashboard.png -------------------------------------------------------------------------------- /kibana_SOAP-Message-Analytics.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/soap-spring-boot-cxf/HEAD/kibana_SOAP-Message-Analytics.png -------------------------------------------------------------------------------- /kibana_export.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/soap-spring-boot-cxf/HEAD/kibana_export.json -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/soap-spring-boot-cxf/HEAD/pom.xml -------------------------------------------------------------------------------- /src/main/java/de/codecentric/soap/SoapApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/soap-spring-boot-cxf/HEAD/src/main/java/de/codecentric/soap/SoapApplication.java -------------------------------------------------------------------------------- /src/main/java/de/codecentric/soap/backend/WeatherBackend.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/soap-spring-boot-cxf/HEAD/src/main/java/de/codecentric/soap/backend/WeatherBackend.java -------------------------------------------------------------------------------- /src/main/java/de/codecentric/soap/common/BusinessException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/soap-spring-boot-cxf/HEAD/src/main/java/de/codecentric/soap/common/BusinessException.java -------------------------------------------------------------------------------- /src/main/java/de/codecentric/soap/common/FaultConst.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/soap-spring-boot-cxf/HEAD/src/main/java/de/codecentric/soap/common/FaultConst.java -------------------------------------------------------------------------------- /src/main/java/de/codecentric/soap/common/WeatherConstants.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/soap-spring-boot-cxf/HEAD/src/main/java/de/codecentric/soap/common/WeatherConstants.java -------------------------------------------------------------------------------- /src/main/java/de/codecentric/soap/common/XmlUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/soap-spring-boot-cxf/HEAD/src/main/java/de/codecentric/soap/common/XmlUtils.java -------------------------------------------------------------------------------- /src/main/java/de/codecentric/soap/configuration/ApplicationConfiguration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/soap-spring-boot-cxf/HEAD/src/main/java/de/codecentric/soap/configuration/ApplicationConfiguration.java -------------------------------------------------------------------------------- /src/main/java/de/codecentric/soap/configuration/WebServiceConfiguration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/soap-spring-boot-cxf/HEAD/src/main/java/de/codecentric/soap/configuration/WebServiceConfiguration.java -------------------------------------------------------------------------------- /src/main/java/de/codecentric/soap/configuration/WebServiceMessageLoggerConfiguration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/soap-spring-boot-cxf/HEAD/src/main/java/de/codecentric/soap/configuration/WebServiceMessageLoggerConfiguration.java -------------------------------------------------------------------------------- /src/main/java/de/codecentric/soap/configuration/customsoapfaults/WeatherServiceCustomSoapFaultInterceptor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/soap-spring-boot-cxf/HEAD/src/main/java/de/codecentric/soap/configuration/customsoapfaults/WeatherServiceCustomSoapFaultInterceptor.java -------------------------------------------------------------------------------- /src/main/java/de/codecentric/soap/configuration/customsoapfaults/WeatherSoapFaultHelper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/soap-spring-boot-cxf/HEAD/src/main/java/de/codecentric/soap/configuration/customsoapfaults/WeatherSoapFaultHelper.java -------------------------------------------------------------------------------- /src/main/java/de/codecentric/soap/controller/WeatherServiceController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/soap-spring-boot-cxf/HEAD/src/main/java/de/codecentric/soap/controller/WeatherServiceController.java -------------------------------------------------------------------------------- /src/main/java/de/codecentric/soap/controller/WeatherServiceControllerFacadeAspect.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/soap-spring-boot-cxf/HEAD/src/main/java/de/codecentric/soap/controller/WeatherServiceControllerFacadeAspect.java -------------------------------------------------------------------------------- /src/main/java/de/codecentric/soap/controller/WeatherServiceControllerImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/soap-spring-boot-cxf/HEAD/src/main/java/de/codecentric/soap/controller/WeatherServiceControllerImpl.java -------------------------------------------------------------------------------- /src/main/java/de/codecentric/soap/endpoint/WeatherServiceEndpoint.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/soap-spring-boot-cxf/HEAD/src/main/java/de/codecentric/soap/endpoint/WeatherServiceEndpoint.java -------------------------------------------------------------------------------- /src/main/java/de/codecentric/soap/internalmodel/GeneralOutlook.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/soap-spring-boot-cxf/HEAD/src/main/java/de/codecentric/soap/internalmodel/GeneralOutlook.java -------------------------------------------------------------------------------- /src/main/java/de/codecentric/soap/internalmodel/MethodOfPayment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/soap-spring-boot-cxf/HEAD/src/main/java/de/codecentric/soap/internalmodel/MethodOfPayment.java -------------------------------------------------------------------------------- /src/main/java/de/codecentric/soap/internalmodel/Product.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/soap-spring-boot-cxf/HEAD/src/main/java/de/codecentric/soap/internalmodel/Product.java -------------------------------------------------------------------------------- /src/main/java/de/codecentric/soap/internalmodel/User.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/soap-spring-boot-cxf/HEAD/src/main/java/de/codecentric/soap/internalmodel/User.java -------------------------------------------------------------------------------- /src/main/java/de/codecentric/soap/internalmodel/Weather.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/soap-spring-boot-cxf/HEAD/src/main/java/de/codecentric/soap/internalmodel/Weather.java -------------------------------------------------------------------------------- /src/main/java/de/codecentric/soap/logging/CxfLoggingSoapActionUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/soap-spring-boot-cxf/HEAD/src/main/java/de/codecentric/soap/logging/CxfLoggingSoapActionUtil.java -------------------------------------------------------------------------------- /src/main/java/de/codecentric/soap/logging/ElasticsearchField.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/soap-spring-boot-cxf/HEAD/src/main/java/de/codecentric/soap/logging/ElasticsearchField.java -------------------------------------------------------------------------------- /src/main/java/de/codecentric/soap/logging/LogCorrelationFilter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/soap-spring-boot-cxf/HEAD/src/main/java/de/codecentric/soap/logging/LogCorrelationFilter.java -------------------------------------------------------------------------------- /src/main/java/de/codecentric/soap/logging/SoapFrameworkLogger.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/soap-spring-boot-cxf/HEAD/src/main/java/de/codecentric/soap/logging/SoapFrameworkLogger.java -------------------------------------------------------------------------------- /src/main/java/de/codecentric/soap/logging/soapmsg/LoggingInInterceptorSlf4jSoapMsgExtractor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/soap-spring-boot-cxf/HEAD/src/main/java/de/codecentric/soap/logging/soapmsg/LoggingInInterceptorSlf4jSoapMsgExtractor.java -------------------------------------------------------------------------------- /src/main/java/de/codecentric/soap/logging/soapmsg/LoggingInInterceptorXmlOnly.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/soap-spring-boot-cxf/HEAD/src/main/java/de/codecentric/soap/logging/soapmsg/LoggingInInterceptorXmlOnly.java -------------------------------------------------------------------------------- /src/main/java/de/codecentric/soap/logging/soapmsg/LoggingOutInterceptorSlf4jSoapMsgExtractor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/soap-spring-boot-cxf/HEAD/src/main/java/de/codecentric/soap/logging/soapmsg/LoggingOutInterceptorSlf4jSoapMsgExtractor.java -------------------------------------------------------------------------------- /src/main/java/de/codecentric/soap/logging/soapmsg/LoggingOutInterceptorXmlOnly.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/soap-spring-boot-cxf/HEAD/src/main/java/de/codecentric/soap/logging/soapmsg/LoggingOutInterceptorXmlOnly.java -------------------------------------------------------------------------------- /src/main/java/de/codecentric/soap/rules/PlausibilityChecker.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/soap-spring-boot-cxf/HEAD/src/main/java/de/codecentric/soap/rules/PlausibilityChecker.java -------------------------------------------------------------------------------- /src/main/java/de/codecentric/soap/rules/RuleKeys.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/soap-spring-boot-cxf/HEAD/src/main/java/de/codecentric/soap/rules/RuleKeys.java -------------------------------------------------------------------------------- /src/main/java/de/codecentric/soap/rules/Rules.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/soap-spring-boot-cxf/HEAD/src/main/java/de/codecentric/soap/rules/Rules.java -------------------------------------------------------------------------------- /src/main/java/de/codecentric/soap/transformation/GetCityForecastByZIPInMapper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/soap-spring-boot-cxf/HEAD/src/main/java/de/codecentric/soap/transformation/GetCityForecastByZIPInMapper.java -------------------------------------------------------------------------------- /src/main/java/de/codecentric/soap/transformation/GetCityForecastByZIPOutMapper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/soap-spring-boot-cxf/HEAD/src/main/java/de/codecentric/soap/transformation/GetCityForecastByZIPOutMapper.java -------------------------------------------------------------------------------- /src/main/java/de/codecentric/soap/transformation/GetCityWeatherByZIPOutMapper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/soap-spring-boot-cxf/HEAD/src/main/java/de/codecentric/soap/transformation/GetCityWeatherByZIPOutMapper.java -------------------------------------------------------------------------------- /src/main/java/de/codecentric/soap/transformation/GetWeatherInformationOutMapper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/soap-spring-boot-cxf/HEAD/src/main/java/de/codecentric/soap/transformation/GetWeatherInformationOutMapper.java -------------------------------------------------------------------------------- /src/main/java/de/codecentric/soap/transformation/WeatherOutError.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/soap-spring-boot-cxf/HEAD/src/main/java/de/codecentric/soap/transformation/WeatherOutError.java -------------------------------------------------------------------------------- /src/main/resources/META-INF/cxf/org.apache.cxf.Logger: -------------------------------------------------------------------------------- 1 | org.apache.cxf.common.logging.Slf4jLogger -------------------------------------------------------------------------------- /src/main/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/soap-spring-boot-cxf/HEAD/src/main/resources/application.properties -------------------------------------------------------------------------------- /src/main/resources/logback-spring.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/soap-spring-boot-cxf/HEAD/src/main/resources/logback-spring.xml -------------------------------------------------------------------------------- /src/main/resources/responses/GetCityForecastByZIPDummyResponse.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/soap-spring-boot-cxf/HEAD/src/main/resources/responses/GetCityForecastByZIPDummyResponse.xml -------------------------------------------------------------------------------- /src/main/resources/responses/GetCityWeatherByZIPDummyResponse.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/soap-spring-boot-cxf/HEAD/src/main/resources/responses/GetCityWeatherByZIPDummyResponse.xml -------------------------------------------------------------------------------- /src/main/resources/responses/GetWeatherInformationDummyResponse.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/soap-spring-boot-cxf/HEAD/src/main/resources/responses/GetWeatherInformationDummyResponse.xml -------------------------------------------------------------------------------- /src/main/resources/responses/forecast.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/soap-spring-boot-cxf/HEAD/src/main/resources/responses/forecast.pdf -------------------------------------------------------------------------------- /src/main/resources/rules/facadeModeActive.dmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/soap-spring-boot-cxf/HEAD/src/main/resources/rules/facadeModeActive.dmn -------------------------------------------------------------------------------- /src/main/resources/rules/weatherFields2Check.dmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/soap-spring-boot-cxf/HEAD/src/main/resources/rules/weatherFields2Check.dmn -------------------------------------------------------------------------------- /src/main/resources/rules/weatherRules.dmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/soap-spring-boot-cxf/HEAD/src/main/resources/rules/weatherRules.dmn -------------------------------------------------------------------------------- /src/main/resources/service-api-definition/Weather-Schemes/w3c-xmlmime-definition.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/soap-spring-boot-cxf/HEAD/src/main/resources/service-api-definition/Weather-Schemes/w3c-xmlmime-definition.xsd -------------------------------------------------------------------------------- /src/main/resources/service-api-definition/Weather-Schemes/weather-datatypes.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/soap-spring-boot-cxf/HEAD/src/main/resources/service-api-definition/Weather-Schemes/weather-datatypes.xsd -------------------------------------------------------------------------------- /src/main/resources/service-api-definition/Weather-Schemes/weather-exception.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/soap-spring-boot-cxf/HEAD/src/main/resources/service-api-definition/Weather-Schemes/weather-exception.xsd -------------------------------------------------------------------------------- /src/main/resources/service-api-definition/Weather-Schemes/weather-general.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/soap-spring-boot-cxf/HEAD/src/main/resources/service-api-definition/Weather-Schemes/weather-general.xsd -------------------------------------------------------------------------------- /src/main/resources/service-api-definition/Weather1.0.wsdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/soap-spring-boot-cxf/HEAD/src/main/resources/service-api-definition/Weather1.0.wsdl -------------------------------------------------------------------------------- /src/main/resources/service-api-definition/Weather1.0.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/soap-spring-boot-cxf/HEAD/src/main/resources/service-api-definition/Weather1.0.xsd -------------------------------------------------------------------------------- /src/main/resources/service-api-definition/bindings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/soap-spring-boot-cxf/HEAD/src/main/resources/service-api-definition/bindings.xml -------------------------------------------------------------------------------- /src/test/java/de/codecentric/soap/SoapTestApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/soap-spring-boot-cxf/HEAD/src/test/java/de/codecentric/soap/SoapTestApplication.java -------------------------------------------------------------------------------- /src/test/java/de/codecentric/soap/configuration/ApplicationTestConfiguration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/soap-spring-boot-cxf/HEAD/src/test/java/de/codecentric/soap/configuration/ApplicationTestConfiguration.java -------------------------------------------------------------------------------- /src/test/java/de/codecentric/soap/configuration/WebServiceTestConfiguration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/soap-spring-boot-cxf/HEAD/src/test/java/de/codecentric/soap/configuration/WebServiceTestConfiguration.java -------------------------------------------------------------------------------- /src/test/java/de/codecentric/soap/controller/WeatherServiceFacadeSystemTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/soap-spring-boot-cxf/HEAD/src/test/java/de/codecentric/soap/controller/WeatherServiceFacadeSystemTest.java -------------------------------------------------------------------------------- /src/test/java/de/codecentric/soap/endpoint/WeatherServiceEndpointSystemTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/soap-spring-boot-cxf/HEAD/src/test/java/de/codecentric/soap/endpoint/WeatherServiceEndpointSystemTest.java -------------------------------------------------------------------------------- /src/test/java/de/codecentric/soap/endpoint/WeatherServiceEndpointTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/soap-spring-boot-cxf/HEAD/src/test/java/de/codecentric/soap/endpoint/WeatherServiceEndpointTest.java -------------------------------------------------------------------------------- /src/test/java/de/codecentric/soap/endpoint/WeatherServiceEndpointXMLErrorTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/soap-spring-boot-cxf/HEAD/src/test/java/de/codecentric/soap/endpoint/WeatherServiceEndpointXMLErrorTest.java -------------------------------------------------------------------------------- /src/test/java/de/codecentric/soap/logging/CxfLoggingSoapActionUtilTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/soap-spring-boot-cxf/HEAD/src/test/java/de/codecentric/soap/logging/CxfLoggingSoapActionUtilTest.java -------------------------------------------------------------------------------- /src/test/java/de/codecentric/soap/rules/PlausibilityIntegrationTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/soap-spring-boot-cxf/HEAD/src/test/java/de/codecentric/soap/rules/PlausibilityIntegrationTest.java -------------------------------------------------------------------------------- /src/test/java/de/codecentric/soap/rules/PlausibilityTests.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/soap-spring-boot-cxf/HEAD/src/test/java/de/codecentric/soap/rules/PlausibilityTests.java -------------------------------------------------------------------------------- /src/test/java/de/codecentric/soap/soaprawclient/SoapRawClient.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/soap-spring-boot-cxf/HEAD/src/test/java/de/codecentric/soap/soaprawclient/SoapRawClient.java -------------------------------------------------------------------------------- /src/test/java/de/codecentric/soap/soaprawclient/SoapRawClientResponse.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/soap-spring-boot-cxf/HEAD/src/test/java/de/codecentric/soap/soaprawclient/SoapRawClientResponse.java -------------------------------------------------------------------------------- /src/test/resources/dev-test.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/soap-spring-boot-cxf/HEAD/src/test/resources/dev-test.properties -------------------------------------------------------------------------------- /src/test/resources/requests/GetCityForecastByZIPTest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/soap-spring-boot-cxf/HEAD/src/test/resources/requests/GetCityForecastByZIPTest.xml -------------------------------------------------------------------------------- /src/test/resources/requests/GetCityWeatherByZIP.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/soap-spring-boot-cxf/HEAD/src/test/resources/requests/GetCityWeatherByZIP.xml -------------------------------------------------------------------------------- /src/test/resources/requests/GetWeatherInformationTest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/soap-spring-boot-cxf/HEAD/src/test/resources/requests/GetWeatherInformationTest.xml -------------------------------------------------------------------------------- /src/test/resources/requests/rules/GetCityForecastByZIPActivateFacadeMode.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/soap-spring-boot-cxf/HEAD/src/test/resources/requests/rules/GetCityForecastByZIPActivateFacadeMode.xml -------------------------------------------------------------------------------- /src/test/resources/requests/rules/GetCityForecastByZIPPostalcodeToLong.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/soap-spring-boot-cxf/HEAD/src/test/resources/requests/rules/GetCityForecastByZIPPostalcodeToLong.xml -------------------------------------------------------------------------------- /src/test/resources/requests/xmlErrorNotXmlSchemeCompliantRootElementTest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/soap-spring-boot-cxf/HEAD/src/test/resources/requests/xmlErrorNotXmlSchemeCompliantRootElementTest.xml -------------------------------------------------------------------------------- /src/test/resources/requests/xmlErrorNotXmlSchemeCompliantUnderRootElementTest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/soap-spring-boot-cxf/HEAD/src/test/resources/requests/xmlErrorNotXmlSchemeCompliantUnderRootElementTest.xml -------------------------------------------------------------------------------- /src/test/resources/requests/xmlErrorSoapBodyTagMissingBracketTest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/soap-spring-boot-cxf/HEAD/src/test/resources/requests/xmlErrorSoapBodyTagMissingBracketTest.xml -------------------------------------------------------------------------------- /src/test/resources/requests/xmlErrorSoapEnvelopeTagMissingBracketTest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/soap-spring-boot-cxf/HEAD/src/test/resources/requests/xmlErrorSoapEnvelopeTagMissingBracketTest.xml -------------------------------------------------------------------------------- /src/test/resources/requests/xmlErrorSoapHeaderMissingSlash.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/soap-spring-boot-cxf/HEAD/src/test/resources/requests/xmlErrorSoapHeaderMissingSlash.xml -------------------------------------------------------------------------------- /src/test/resources/requests/xmlErrorSoapHeaderTagMissingBracketTest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/soap-spring-boot-cxf/HEAD/src/test/resources/requests/xmlErrorSoapHeaderTagMissingBracketTest.xml -------------------------------------------------------------------------------- /src/test/resources/requests/xmlErrorXMLHeaderDefinitionMissingBracket.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/soap-spring-boot-cxf/HEAD/src/test/resources/requests/xmlErrorXMLHeaderDefinitionMissingBracket.xml -------------------------------------------------------------------------------- /src/test/resources/requests/xmlErrorXMLTagNotClosedInsideBodyTest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/soap-spring-boot-cxf/HEAD/src/test/resources/requests/xmlErrorXMLTagNotClosedInsideBodyTest.xml -------------------------------------------------------------------------------- /weatherFields2CheckDMN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/soap-spring-boot-cxf/HEAD/weatherFields2CheckDMN.png -------------------------------------------------------------------------------- /weatherRulesDMN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/soap-spring-boot-cxf/HEAD/weatherRulesDMN.png --------------------------------------------------------------------------------