├── .gitignore ├── LICENSE ├── README.md ├── pom.xml ├── step10_simple_app_with_cxf-spring-boot-starter ├── pom.xml └── src │ ├── main │ ├── java │ │ └── de │ │ │ └── jonashackt │ │ │ └── tutorial │ │ │ ├── SimpleBootCxfApplication.java │ │ │ ├── common │ │ │ └── CustomIds.java │ │ │ ├── configuration │ │ │ └── SimpleBootCxfConfiguration.java │ │ │ ├── controller │ │ │ └── WeatherServiceController.java │ │ │ ├── endpoint │ │ │ └── WeatherServiceEndpoint.java │ │ │ ├── transformation │ │ │ └── GetCityForecastByZIPOutMapper.java │ │ │ └── xmlvalidation │ │ │ └── WeatherFaultBuilder.java │ └── resources │ │ ├── application.properties │ │ ├── logback-spring.xml │ │ └── service-api-definition │ │ ├── Weather-Schemes │ │ ├── w3c-xmlmime-definition.xsd │ │ ├── weather-datatypes.xsd │ │ ├── weather-exception.xsd │ │ └── weather-general.xsd │ │ ├── Weather1.0.wsdl │ │ └── Weather1.0.xsd │ └── test │ ├── java │ └── de │ │ └── jonashackt │ │ └── tutorial │ │ ├── SimpleBootCxfSystemTestApplication.java │ │ ├── SimpleBootCxfSystemTestConfiguration.java │ │ ├── endpoint │ │ └── WeatherServiceXmlFileSystemTest.java │ │ └── xmlvalidation │ │ └── WeatherServiceXmlErrorSystemTest.java │ └── resources │ └── requests │ ├── GetCityForecastByZIPTest.xml │ └── xmlerrors │ ├── xmlErrorNotXmlSchemeCompliantRootElementTest.xml │ ├── xmlErrorNotXmlSchemeCompliantUnderRootElementTest.xml │ ├── xmlErrorSoapBodyTagMissingBracketTest.xml │ ├── xmlErrorSoapEnvelopeTagMissingBracketTest.xml │ ├── xmlErrorSoapHeaderMissingSlash.xml │ ├── xmlErrorSoapHeaderTagMissingBracketTest.xml │ ├── xmlErrorXMLHeaderDefinitionMissingBracket.xml │ └── xmlErrorXMLTagNotClosedInsideBodyTest.xml ├── step1_simple_springboot_app_with_cxf ├── pom.xml └── src │ ├── main │ ├── java │ │ └── de │ │ │ └── jonashackt │ │ │ └── tutorial │ │ │ └── SimpleBootCxfApplication.java │ └── resources │ │ └── application.properties │ └── test │ └── java │ └── de │ └── jonashackt │ └── tutorial │ └── SimpleBootCxfApplicationTests.java ├── step2_wsdl_2_java_maven ├── pom.xml └── src │ ├── main │ ├── java │ │ └── de │ │ │ └── jonashackt │ │ │ └── tutorial │ │ │ └── SimpleBootCxfApplication.java │ └── resources │ │ ├── application.properties │ │ └── service-api-definition │ │ ├── Weather-Schemes │ │ ├── w3c-xmlmime-definition.xsd │ │ ├── weather-datatypes.xsd │ │ ├── weather-exception.xsd │ │ └── weather-general.xsd │ │ ├── Weather1.0.wsdl │ │ └── Weather1.0.xsd │ └── test │ └── java │ └── de │ └── jonashackt │ └── tutorial │ └── SimpleBootCxfApplicationTests.java ├── step3_jaxws-endpoint-cxf-spring-boot-orig-wsdl ├── pom.xml └── src │ ├── main │ ├── java │ │ └── de │ │ │ └── jonashackt │ │ │ └── tutorial │ │ │ ├── SimpleBootCxfApplication.java │ │ │ ├── configuration │ │ │ └── WebServiceConfiguration.java │ │ │ └── endpoint │ │ │ └── WeatherServiceEndpoint.java │ └── resources │ │ ├── application.properties │ │ └── service-api-definition │ │ ├── Weather-Schemes │ │ ├── w3c-xmlmime-definition.xsd │ │ ├── weather-datatypes.xsd │ │ ├── weather-exception.xsd │ │ └── weather-general.xsd │ │ ├── Weather1.0.wsdl │ │ └── Weather1.0.xsd │ └── test │ └── java │ └── de │ └── jonashackt │ └── tutorial │ └── SimpleBootCxfApplicationTests.java ├── step3_jaxws-endpoint-cxf-spring-boot ├── pom.xml └── src │ ├── main │ ├── java │ │ └── de │ │ │ └── jonashackt │ │ │ └── tutorial │ │ │ ├── SimpleBootCxfApplication.java │ │ │ ├── configuration │ │ │ └── WebServiceConfiguration.java │ │ │ └── endpoint │ │ │ └── WeatherServiceEndpoint.java │ └── resources │ │ ├── application.properties │ │ └── service-api-definition │ │ ├── Weather-Schemes │ │ ├── w3c-xmlmime-definition.xsd │ │ ├── weather-datatypes.xsd │ │ ├── weather-exception.xsd │ │ └── weather-general.xsd │ │ ├── Weather1.0.wsdl │ │ └── Weather1.0.xsd │ └── test │ └── java │ └── de │ └── jonashackt │ └── tutorial │ └── SimpleBootCxfApplicationTests.java ├── step4_test ├── pom.xml └── src │ ├── main │ ├── java │ │ └── de │ │ │ └── jonashackt │ │ │ └── tutorial │ │ │ ├── SimpleBootCxfApplication.java │ │ │ ├── configuration │ │ │ ├── ApplicationConfiguration.java │ │ │ └── WebServiceConfiguration.java │ │ │ ├── controller │ │ │ └── WeatherServiceController.java │ │ │ ├── endpoint │ │ │ └── WeatherServiceEndpoint.java │ │ │ └── transformation │ │ │ └── GetCityForecastByZIPOutMapper.java │ └── resources │ │ ├── application.properties │ │ └── service-api-definition │ │ ├── Weather-Schemes │ │ ├── w3c-xmlmime-definition.xsd │ │ ├── weather-datatypes.xsd │ │ ├── weather-exception.xsd │ │ └── weather-general.xsd │ │ ├── Weather1.0.wsdl │ │ └── Weather1.0.xsd │ └── test │ ├── java │ └── de │ │ └── jonashackt │ │ └── tutorial │ │ ├── ApplicationTestConfiguration.java │ │ ├── SimpleBootCxfSystemTestApplication.java │ │ ├── WebServiceIntegrationTestConfiguration.java │ │ ├── WebServiceSystemTestConfiguration.java │ │ ├── endpoint │ │ ├── WeatherServiceIntegrationTest.java │ │ ├── WeatherServiceSystemTest.java │ │ ├── WeatherServiceTest.java │ │ └── WeatherServiceXmlFileSystemTest.java │ │ └── utils │ │ ├── TestHelper.java │ │ ├── XmlUtils.java │ │ └── XmlUtilsException.java │ └── resources │ └── requests │ └── GetCityForecastByZIPTest.xml ├── step5_custom-soap-fault ├── pom.xml └── src │ ├── main │ ├── java │ │ └── de │ │ │ └── jonashackt │ │ │ └── tutorial │ │ │ ├── SimpleBootCxfApplication.java │ │ │ ├── common │ │ │ ├── FaultConst.java │ │ │ ├── InternalBusinessException.java │ │ │ └── XmlUtils.java │ │ │ ├── configuration │ │ │ ├── ApplicationConfiguration.java │ │ │ ├── WebServiceConfiguration.java │ │ │ └── customsoapfaults │ │ │ │ ├── CustomSoapFaultInterceptor.java │ │ │ │ └── WeatherSoapFaultHelper.java │ │ │ ├── controller │ │ │ └── WeatherServiceController.java │ │ │ ├── endpoint │ │ │ └── WeatherServiceEndpoint.java │ │ │ ├── logging │ │ │ └── SoapFrameworkLogger.java │ │ │ └── transformation │ │ │ ├── GetCityForecastByZIPOutMapper.java │ │ │ └── WeatherOutError.java │ └── resources │ │ ├── application.properties │ │ └── service-api-definition │ │ ├── Weather-Schemes │ │ ├── w3c-xmlmime-definition.xsd │ │ ├── weather-datatypes.xsd │ │ ├── weather-exception.xsd │ │ └── weather-general.xsd │ │ ├── Weather1.0.wsdl │ │ └── Weather1.0.xsd │ └── test │ ├── java │ └── de │ │ └── jonashackt │ │ └── tutorial │ │ ├── ApplicationTestConfiguration.java │ │ ├── SimpleBootCxfSystemTestApplication.java │ │ ├── WebServiceIntegrationTestConfiguration.java │ │ ├── WebServiceSystemTestConfiguration.java │ │ ├── endpoint │ │ ├── WeatherServiceIntegrationTest.java │ │ ├── WeatherServiceSystemTest.java │ │ ├── WeatherServiceTest.java │ │ ├── WeatherServiceXmlErrorSystemTest.java │ │ └── WeatherServiceXmlFileSystemTest.java │ │ └── utils │ │ ├── SoapRawClient.java │ │ ├── SoapRawClientResponse.java │ │ └── TestHelper.java │ └── resources │ └── requests │ ├── GetCityForecastByZIPTest.xml │ └── xmlerrors │ ├── xmlErrorNotXmlSchemeCompliantRootElementTest.xml │ ├── xmlErrorNotXmlSchemeCompliantUnderRootElementTest.xml │ ├── xmlErrorSoapBodyTagMissingBracketTest.xml │ ├── xmlErrorSoapEnvelopeTagMissingBracketTest.xml │ ├── xmlErrorSoapHeaderMissingSlash.xml │ ├── xmlErrorSoapHeaderTagMissingBracketTest.xml │ ├── xmlErrorXMLHeaderDefinitionMissingBracket.xml │ └── xmlErrorXMLTagNotClosedInsideBodyTest.xml ├── step6_soap_message_logging ├── pom.xml └── src │ ├── main │ ├── java │ │ └── de │ │ │ └── jonashackt │ │ │ └── tutorial │ │ │ ├── SimpleBootCxfApplication.java │ │ │ ├── configuration │ │ │ ├── ApplicationConfiguration.java │ │ │ └── WebServiceConfiguration.java │ │ │ ├── controller │ │ │ └── WeatherServiceController.java │ │ │ ├── endpoint │ │ │ └── WeatherServiceEndpoint.java │ │ │ └── transformation │ │ │ └── GetCityForecastByZIPOutMapper.java │ └── resources │ │ ├── META-INF │ │ └── cxf │ │ │ └── org.apache.cxf.Logger │ │ ├── application.properties │ │ ├── logback-spring.xml │ │ └── service-api-definition │ │ ├── Weather-Schemes │ │ ├── w3c-xmlmime-definition.xsd │ │ ├── weather-datatypes.xsd │ │ ├── weather-exception.xsd │ │ └── weather-general.xsd │ │ ├── Weather1.0.wsdl │ │ └── Weather1.0.xsd │ └── test │ ├── java │ └── de │ │ └── jonashackt │ │ └── tutorial │ │ ├── ApplicationTestConfiguration.java │ │ ├── SimpleBootCxfSystemTestApplication.java │ │ ├── WebServiceIntegrationTestConfiguration.java │ │ ├── WebServiceSystemTestConfiguration.java │ │ ├── endpoint │ │ ├── WeatherServiceIntegrationTest.java │ │ ├── WeatherServiceSystemTest.java │ │ ├── WeatherServiceTest.java │ │ └── WeatherServiceXmlFileSystemTest.java │ │ └── utils │ │ ├── TestHelper.java │ │ ├── XmlUtils.java │ │ └── XmlUtilsException.java │ └── resources │ └── requests │ └── GetCityForecastByZIPTest.xml ├── step7_soap_message_logging_payload_only ├── pom.xml └── src │ ├── main │ ├── java │ │ └── de │ │ │ └── jonashackt │ │ │ └── tutorial │ │ │ ├── SimpleBootCxfApplication.java │ │ │ ├── configuration │ │ │ ├── ApplicationConfiguration.java │ │ │ └── WebServiceConfiguration.java │ │ │ ├── controller │ │ │ └── WeatherServiceController.java │ │ │ ├── endpoint │ │ │ └── WeatherServiceEndpoint.java │ │ │ ├── soapmsglogging │ │ │ ├── LoggingInInterceptorXmlOnly.java │ │ │ └── LoggingOutInterceptorXmlOnly.java │ │ │ └── transformation │ │ │ └── GetCityForecastByZIPOutMapper.java │ └── resources │ │ ├── META-INF │ │ └── cxf │ │ │ └── org.apache.cxf.Logger │ │ ├── application.properties │ │ ├── logback-spring.xml │ │ └── service-api-definition │ │ ├── Weather-Schemes │ │ ├── w3c-xmlmime-definition.xsd │ │ ├── weather-datatypes.xsd │ │ ├── weather-exception.xsd │ │ └── weather-general.xsd │ │ ├── Weather1.0.wsdl │ │ └── Weather1.0.xsd │ └── test │ ├── java │ └── de │ │ └── jonashackt │ │ └── tutorial │ │ ├── ApplicationTestConfiguration.java │ │ ├── SimpleBootCxfSystemTestApplication.java │ │ ├── WebServiceIntegrationTestConfiguration.java │ │ ├── WebServiceSystemTestConfiguration.java │ │ ├── endpoint │ │ ├── WeatherServiceIntegrationTest.java │ │ ├── WeatherServiceSystemTest.java │ │ ├── WeatherServiceTest.java │ │ └── WeatherServiceXmlFileSystemTest.java │ │ └── utils │ │ ├── TestHelper.java │ │ ├── XmlUtils.java │ │ └── XmlUtilsException.java │ └── resources │ └── requests │ └── GetCityForecastByZIPTest.xml ├── step8_logging_into_elasticstack ├── pom.xml └── src │ ├── main │ ├── java │ │ └── de │ │ │ └── jonashackt │ │ │ └── tutorial │ │ │ ├── SimpleBootCxfApplication.java │ │ │ ├── configuration │ │ │ ├── ApplicationConfiguration.java │ │ │ └── WebServiceConfiguration.java │ │ │ ├── controller │ │ │ └── WeatherServiceController.java │ │ │ ├── endpoint │ │ │ └── WeatherServiceEndpoint.java │ │ │ ├── soapmsglogging │ │ │ ├── LoggingInInterceptorXmlOnly.java │ │ │ └── LoggingOutInterceptorXmlOnly.java │ │ │ └── transformation │ │ │ └── GetCityForecastByZIPOutMapper.java │ └── resources │ │ ├── META-INF │ │ └── cxf │ │ │ └── org.apache.cxf.Logger │ │ ├── application.properties │ │ ├── logback-spring.xml │ │ └── service-api-definition │ │ ├── Weather-Schemes │ │ ├── w3c-xmlmime-definition.xsd │ │ ├── weather-datatypes.xsd │ │ ├── weather-exception.xsd │ │ └── weather-general.xsd │ │ ├── Weather1.0.wsdl │ │ └── Weather1.0.xsd │ └── test │ ├── java │ └── de │ │ └── jonashackt │ │ └── tutorial │ │ ├── ApplicationTestConfiguration.java │ │ ├── SimpleBootCxfSystemTestApplication.java │ │ ├── WebServiceIntegrationTestConfiguration.java │ │ ├── WebServiceSystemTestConfiguration.java │ │ ├── endpoint │ │ ├── WeatherServiceIntegrationTest.java │ │ ├── WeatherServiceSystemTest.java │ │ ├── WeatherServiceTest.java │ │ └── WeatherServiceXmlFileSystemTest.java │ │ └── utils │ │ ├── TestHelper.java │ │ ├── XmlUtils.java │ │ └── XmlUtilsException.java │ └── resources │ └── requests │ └── GetCityForecastByZIPTest.xml └── step9_soap_message_logging_into_custom_elasticsearch_field ├── pom.xml └── src ├── main ├── java │ └── de │ │ └── jonashackt │ │ └── tutorial │ │ ├── SimpleBootCxfApplication.java │ │ ├── configuration │ │ ├── ApplicationConfiguration.java │ │ └── WebServiceConfiguration.java │ │ ├── controller │ │ └── WeatherServiceController.java │ │ ├── endpoint │ │ └── WeatherServiceEndpoint.java │ │ ├── soapmsglogging │ │ ├── LogCorrelationFilter.java │ │ ├── SoapMsgToMdcExtractionLoggingInInterceptor.java │ │ └── SoapMsgToMdcExtractionLoggingOutInterceptor.java │ │ └── transformation │ │ └── GetCityForecastByZIPOutMapper.java └── resources │ ├── META-INF │ └── cxf │ │ └── org.apache.cxf.Logger │ ├── application.properties │ ├── logback-spring.xml │ └── service-api-definition │ ├── Weather-Schemes │ ├── w3c-xmlmime-definition.xsd │ ├── weather-datatypes.xsd │ ├── weather-exception.xsd │ └── weather-general.xsd │ ├── Weather1.0.wsdl │ └── Weather1.0.xsd └── test ├── java └── de │ └── jonashackt │ └── tutorial │ ├── ApplicationTestConfiguration.java │ ├── SimpleBootCxfSystemTestApplication.java │ ├── WebServiceIntegrationTestConfiguration.java │ ├── WebServiceSystemTestConfiguration.java │ ├── endpoint │ ├── WeatherServiceIntegrationTest.java │ ├── WeatherServiceSystemTest.java │ ├── WeatherServiceTest.java │ └── WeatherServiceXmlFileSystemTest.java │ └── utils │ ├── TestHelper.java │ ├── XmlUtils.java │ └── XmlUtilsException.java └── resources └── requests └── GetCityForecastByZIPTest.xml /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/tutorial-soap-spring-boot-cxf/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/tutorial-soap-spring-boot-cxf/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/tutorial-soap-spring-boot-cxf/HEAD/README.md -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/tutorial-soap-spring-boot-cxf/HEAD/pom.xml -------------------------------------------------------------------------------- /step10_simple_app_with_cxf-spring-boot-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/tutorial-soap-spring-boot-cxf/HEAD/step10_simple_app_with_cxf-spring-boot-starter/pom.xml -------------------------------------------------------------------------------- /step10_simple_app_with_cxf-spring-boot-starter/src/main/java/de/jonashackt/tutorial/SimpleBootCxfApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/tutorial-soap-spring-boot-cxf/HEAD/step10_simple_app_with_cxf-spring-boot-starter/src/main/java/de/jonashackt/tutorial/SimpleBootCxfApplication.java -------------------------------------------------------------------------------- /step10_simple_app_with_cxf-spring-boot-starter/src/main/java/de/jonashackt/tutorial/common/CustomIds.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/tutorial-soap-spring-boot-cxf/HEAD/step10_simple_app_with_cxf-spring-boot-starter/src/main/java/de/jonashackt/tutorial/common/CustomIds.java -------------------------------------------------------------------------------- /step10_simple_app_with_cxf-spring-boot-starter/src/main/java/de/jonashackt/tutorial/configuration/SimpleBootCxfConfiguration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/tutorial-soap-spring-boot-cxf/HEAD/step10_simple_app_with_cxf-spring-boot-starter/src/main/java/de/jonashackt/tutorial/configuration/SimpleBootCxfConfiguration.java -------------------------------------------------------------------------------- /step10_simple_app_with_cxf-spring-boot-starter/src/main/java/de/jonashackt/tutorial/controller/WeatherServiceController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/tutorial-soap-spring-boot-cxf/HEAD/step10_simple_app_with_cxf-spring-boot-starter/src/main/java/de/jonashackt/tutorial/controller/WeatherServiceController.java -------------------------------------------------------------------------------- /step10_simple_app_with_cxf-spring-boot-starter/src/main/java/de/jonashackt/tutorial/endpoint/WeatherServiceEndpoint.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/tutorial-soap-spring-boot-cxf/HEAD/step10_simple_app_with_cxf-spring-boot-starter/src/main/java/de/jonashackt/tutorial/endpoint/WeatherServiceEndpoint.java -------------------------------------------------------------------------------- /step10_simple_app_with_cxf-spring-boot-starter/src/main/java/de/jonashackt/tutorial/transformation/GetCityForecastByZIPOutMapper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/tutorial-soap-spring-boot-cxf/HEAD/step10_simple_app_with_cxf-spring-boot-starter/src/main/java/de/jonashackt/tutorial/transformation/GetCityForecastByZIPOutMapper.java -------------------------------------------------------------------------------- /step10_simple_app_with_cxf-spring-boot-starter/src/main/java/de/jonashackt/tutorial/xmlvalidation/WeatherFaultBuilder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/tutorial-soap-spring-boot-cxf/HEAD/step10_simple_app_with_cxf-spring-boot-starter/src/main/java/de/jonashackt/tutorial/xmlvalidation/WeatherFaultBuilder.java -------------------------------------------------------------------------------- /step10_simple_app_with_cxf-spring-boot-starter/src/main/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/tutorial-soap-spring-boot-cxf/HEAD/step10_simple_app_with_cxf-spring-boot-starter/src/main/resources/application.properties -------------------------------------------------------------------------------- /step10_simple_app_with_cxf-spring-boot-starter/src/main/resources/logback-spring.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/tutorial-soap-spring-boot-cxf/HEAD/step10_simple_app_with_cxf-spring-boot-starter/src/main/resources/logback-spring.xml -------------------------------------------------------------------------------- /step10_simple_app_with_cxf-spring-boot-starter/src/main/resources/service-api-definition/Weather-Schemes/w3c-xmlmime-definition.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/tutorial-soap-spring-boot-cxf/HEAD/step10_simple_app_with_cxf-spring-boot-starter/src/main/resources/service-api-definition/Weather-Schemes/w3c-xmlmime-definition.xsd -------------------------------------------------------------------------------- /step10_simple_app_with_cxf-spring-boot-starter/src/main/resources/service-api-definition/Weather-Schemes/weather-datatypes.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/tutorial-soap-spring-boot-cxf/HEAD/step10_simple_app_with_cxf-spring-boot-starter/src/main/resources/service-api-definition/Weather-Schemes/weather-datatypes.xsd -------------------------------------------------------------------------------- /step10_simple_app_with_cxf-spring-boot-starter/src/main/resources/service-api-definition/Weather-Schemes/weather-exception.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/tutorial-soap-spring-boot-cxf/HEAD/step10_simple_app_with_cxf-spring-boot-starter/src/main/resources/service-api-definition/Weather-Schemes/weather-exception.xsd -------------------------------------------------------------------------------- /step10_simple_app_with_cxf-spring-boot-starter/src/main/resources/service-api-definition/Weather-Schemes/weather-general.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/tutorial-soap-spring-boot-cxf/HEAD/step10_simple_app_with_cxf-spring-boot-starter/src/main/resources/service-api-definition/Weather-Schemes/weather-general.xsd -------------------------------------------------------------------------------- /step10_simple_app_with_cxf-spring-boot-starter/src/main/resources/service-api-definition/Weather1.0.wsdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/tutorial-soap-spring-boot-cxf/HEAD/step10_simple_app_with_cxf-spring-boot-starter/src/main/resources/service-api-definition/Weather1.0.wsdl -------------------------------------------------------------------------------- /step10_simple_app_with_cxf-spring-boot-starter/src/main/resources/service-api-definition/Weather1.0.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/tutorial-soap-spring-boot-cxf/HEAD/step10_simple_app_with_cxf-spring-boot-starter/src/main/resources/service-api-definition/Weather1.0.xsd -------------------------------------------------------------------------------- /step10_simple_app_with_cxf-spring-boot-starter/src/test/java/de/jonashackt/tutorial/SimpleBootCxfSystemTestApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/tutorial-soap-spring-boot-cxf/HEAD/step10_simple_app_with_cxf-spring-boot-starter/src/test/java/de/jonashackt/tutorial/SimpleBootCxfSystemTestApplication.java -------------------------------------------------------------------------------- /step10_simple_app_with_cxf-spring-boot-starter/src/test/java/de/jonashackt/tutorial/SimpleBootCxfSystemTestConfiguration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/tutorial-soap-spring-boot-cxf/HEAD/step10_simple_app_with_cxf-spring-boot-starter/src/test/java/de/jonashackt/tutorial/SimpleBootCxfSystemTestConfiguration.java -------------------------------------------------------------------------------- /step10_simple_app_with_cxf-spring-boot-starter/src/test/java/de/jonashackt/tutorial/endpoint/WeatherServiceXmlFileSystemTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/tutorial-soap-spring-boot-cxf/HEAD/step10_simple_app_with_cxf-spring-boot-starter/src/test/java/de/jonashackt/tutorial/endpoint/WeatherServiceXmlFileSystemTest.java -------------------------------------------------------------------------------- /step10_simple_app_with_cxf-spring-boot-starter/src/test/java/de/jonashackt/tutorial/xmlvalidation/WeatherServiceXmlErrorSystemTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/tutorial-soap-spring-boot-cxf/HEAD/step10_simple_app_with_cxf-spring-boot-starter/src/test/java/de/jonashackt/tutorial/xmlvalidation/WeatherServiceXmlErrorSystemTest.java -------------------------------------------------------------------------------- /step10_simple_app_with_cxf-spring-boot-starter/src/test/resources/requests/GetCityForecastByZIPTest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/tutorial-soap-spring-boot-cxf/HEAD/step10_simple_app_with_cxf-spring-boot-starter/src/test/resources/requests/GetCityForecastByZIPTest.xml -------------------------------------------------------------------------------- /step10_simple_app_with_cxf-spring-boot-starter/src/test/resources/requests/xmlerrors/xmlErrorNotXmlSchemeCompliantRootElementTest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/tutorial-soap-spring-boot-cxf/HEAD/step10_simple_app_with_cxf-spring-boot-starter/src/test/resources/requests/xmlerrors/xmlErrorNotXmlSchemeCompliantRootElementTest.xml -------------------------------------------------------------------------------- /step10_simple_app_with_cxf-spring-boot-starter/src/test/resources/requests/xmlerrors/xmlErrorNotXmlSchemeCompliantUnderRootElementTest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/tutorial-soap-spring-boot-cxf/HEAD/step10_simple_app_with_cxf-spring-boot-starter/src/test/resources/requests/xmlerrors/xmlErrorNotXmlSchemeCompliantUnderRootElementTest.xml -------------------------------------------------------------------------------- /step10_simple_app_with_cxf-spring-boot-starter/src/test/resources/requests/xmlerrors/xmlErrorSoapBodyTagMissingBracketTest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/tutorial-soap-spring-boot-cxf/HEAD/step10_simple_app_with_cxf-spring-boot-starter/src/test/resources/requests/xmlerrors/xmlErrorSoapBodyTagMissingBracketTest.xml -------------------------------------------------------------------------------- /step10_simple_app_with_cxf-spring-boot-starter/src/test/resources/requests/xmlerrors/xmlErrorSoapEnvelopeTagMissingBracketTest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/tutorial-soap-spring-boot-cxf/HEAD/step10_simple_app_with_cxf-spring-boot-starter/src/test/resources/requests/xmlerrors/xmlErrorSoapEnvelopeTagMissingBracketTest.xml -------------------------------------------------------------------------------- /step10_simple_app_with_cxf-spring-boot-starter/src/test/resources/requests/xmlerrors/xmlErrorSoapHeaderMissingSlash.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/tutorial-soap-spring-boot-cxf/HEAD/step10_simple_app_with_cxf-spring-boot-starter/src/test/resources/requests/xmlerrors/xmlErrorSoapHeaderMissingSlash.xml -------------------------------------------------------------------------------- /step10_simple_app_with_cxf-spring-boot-starter/src/test/resources/requests/xmlerrors/xmlErrorSoapHeaderTagMissingBracketTest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/tutorial-soap-spring-boot-cxf/HEAD/step10_simple_app_with_cxf-spring-boot-starter/src/test/resources/requests/xmlerrors/xmlErrorSoapHeaderTagMissingBracketTest.xml -------------------------------------------------------------------------------- /step10_simple_app_with_cxf-spring-boot-starter/src/test/resources/requests/xmlerrors/xmlErrorXMLHeaderDefinitionMissingBracket.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/tutorial-soap-spring-boot-cxf/HEAD/step10_simple_app_with_cxf-spring-boot-starter/src/test/resources/requests/xmlerrors/xmlErrorXMLHeaderDefinitionMissingBracket.xml -------------------------------------------------------------------------------- /step10_simple_app_with_cxf-spring-boot-starter/src/test/resources/requests/xmlerrors/xmlErrorXMLTagNotClosedInsideBodyTest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/tutorial-soap-spring-boot-cxf/HEAD/step10_simple_app_with_cxf-spring-boot-starter/src/test/resources/requests/xmlerrors/xmlErrorXMLTagNotClosedInsideBodyTest.xml -------------------------------------------------------------------------------- /step1_simple_springboot_app_with_cxf/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/tutorial-soap-spring-boot-cxf/HEAD/step1_simple_springboot_app_with_cxf/pom.xml -------------------------------------------------------------------------------- /step1_simple_springboot_app_with_cxf/src/main/java/de/jonashackt/tutorial/SimpleBootCxfApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/tutorial-soap-spring-boot-cxf/HEAD/step1_simple_springboot_app_with_cxf/src/main/java/de/jonashackt/tutorial/SimpleBootCxfApplication.java -------------------------------------------------------------------------------- /step1_simple_springboot_app_with_cxf/src/main/resources/application.properties: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /step1_simple_springboot_app_with_cxf/src/test/java/de/jonashackt/tutorial/SimpleBootCxfApplicationTests.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/tutorial-soap-spring-boot-cxf/HEAD/step1_simple_springboot_app_with_cxf/src/test/java/de/jonashackt/tutorial/SimpleBootCxfApplicationTests.java -------------------------------------------------------------------------------- /step2_wsdl_2_java_maven/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/tutorial-soap-spring-boot-cxf/HEAD/step2_wsdl_2_java_maven/pom.xml -------------------------------------------------------------------------------- /step2_wsdl_2_java_maven/src/main/java/de/jonashackt/tutorial/SimpleBootCxfApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/tutorial-soap-spring-boot-cxf/HEAD/step2_wsdl_2_java_maven/src/main/java/de/jonashackt/tutorial/SimpleBootCxfApplication.java -------------------------------------------------------------------------------- /step2_wsdl_2_java_maven/src/main/resources/application.properties: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /step2_wsdl_2_java_maven/src/main/resources/service-api-definition/Weather-Schemes/w3c-xmlmime-definition.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/tutorial-soap-spring-boot-cxf/HEAD/step2_wsdl_2_java_maven/src/main/resources/service-api-definition/Weather-Schemes/w3c-xmlmime-definition.xsd -------------------------------------------------------------------------------- /step2_wsdl_2_java_maven/src/main/resources/service-api-definition/Weather-Schemes/weather-datatypes.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/tutorial-soap-spring-boot-cxf/HEAD/step2_wsdl_2_java_maven/src/main/resources/service-api-definition/Weather-Schemes/weather-datatypes.xsd -------------------------------------------------------------------------------- /step2_wsdl_2_java_maven/src/main/resources/service-api-definition/Weather-Schemes/weather-exception.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/tutorial-soap-spring-boot-cxf/HEAD/step2_wsdl_2_java_maven/src/main/resources/service-api-definition/Weather-Schemes/weather-exception.xsd -------------------------------------------------------------------------------- /step2_wsdl_2_java_maven/src/main/resources/service-api-definition/Weather-Schemes/weather-general.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/tutorial-soap-spring-boot-cxf/HEAD/step2_wsdl_2_java_maven/src/main/resources/service-api-definition/Weather-Schemes/weather-general.xsd -------------------------------------------------------------------------------- /step2_wsdl_2_java_maven/src/main/resources/service-api-definition/Weather1.0.wsdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/tutorial-soap-spring-boot-cxf/HEAD/step2_wsdl_2_java_maven/src/main/resources/service-api-definition/Weather1.0.wsdl -------------------------------------------------------------------------------- /step2_wsdl_2_java_maven/src/main/resources/service-api-definition/Weather1.0.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/tutorial-soap-spring-boot-cxf/HEAD/step2_wsdl_2_java_maven/src/main/resources/service-api-definition/Weather1.0.xsd -------------------------------------------------------------------------------- /step2_wsdl_2_java_maven/src/test/java/de/jonashackt/tutorial/SimpleBootCxfApplicationTests.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/tutorial-soap-spring-boot-cxf/HEAD/step2_wsdl_2_java_maven/src/test/java/de/jonashackt/tutorial/SimpleBootCxfApplicationTests.java -------------------------------------------------------------------------------- /step3_jaxws-endpoint-cxf-spring-boot-orig-wsdl/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/tutorial-soap-spring-boot-cxf/HEAD/step3_jaxws-endpoint-cxf-spring-boot-orig-wsdl/pom.xml -------------------------------------------------------------------------------- /step3_jaxws-endpoint-cxf-spring-boot-orig-wsdl/src/main/java/de/jonashackt/tutorial/SimpleBootCxfApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/tutorial-soap-spring-boot-cxf/HEAD/step3_jaxws-endpoint-cxf-spring-boot-orig-wsdl/src/main/java/de/jonashackt/tutorial/SimpleBootCxfApplication.java -------------------------------------------------------------------------------- /step3_jaxws-endpoint-cxf-spring-boot-orig-wsdl/src/main/java/de/jonashackt/tutorial/configuration/WebServiceConfiguration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/tutorial-soap-spring-boot-cxf/HEAD/step3_jaxws-endpoint-cxf-spring-boot-orig-wsdl/src/main/java/de/jonashackt/tutorial/configuration/WebServiceConfiguration.java -------------------------------------------------------------------------------- /step3_jaxws-endpoint-cxf-spring-boot-orig-wsdl/src/main/java/de/jonashackt/tutorial/endpoint/WeatherServiceEndpoint.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/tutorial-soap-spring-boot-cxf/HEAD/step3_jaxws-endpoint-cxf-spring-boot-orig-wsdl/src/main/java/de/jonashackt/tutorial/endpoint/WeatherServiceEndpoint.java -------------------------------------------------------------------------------- /step3_jaxws-endpoint-cxf-spring-boot-orig-wsdl/src/main/resources/application.properties: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /step3_jaxws-endpoint-cxf-spring-boot-orig-wsdl/src/main/resources/service-api-definition/Weather-Schemes/w3c-xmlmime-definition.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/tutorial-soap-spring-boot-cxf/HEAD/step3_jaxws-endpoint-cxf-spring-boot-orig-wsdl/src/main/resources/service-api-definition/Weather-Schemes/w3c-xmlmime-definition.xsd -------------------------------------------------------------------------------- /step3_jaxws-endpoint-cxf-spring-boot-orig-wsdl/src/main/resources/service-api-definition/Weather-Schemes/weather-datatypes.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/tutorial-soap-spring-boot-cxf/HEAD/step3_jaxws-endpoint-cxf-spring-boot-orig-wsdl/src/main/resources/service-api-definition/Weather-Schemes/weather-datatypes.xsd -------------------------------------------------------------------------------- /step3_jaxws-endpoint-cxf-spring-boot-orig-wsdl/src/main/resources/service-api-definition/Weather-Schemes/weather-exception.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/tutorial-soap-spring-boot-cxf/HEAD/step3_jaxws-endpoint-cxf-spring-boot-orig-wsdl/src/main/resources/service-api-definition/Weather-Schemes/weather-exception.xsd -------------------------------------------------------------------------------- /step3_jaxws-endpoint-cxf-spring-boot-orig-wsdl/src/main/resources/service-api-definition/Weather-Schemes/weather-general.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/tutorial-soap-spring-boot-cxf/HEAD/step3_jaxws-endpoint-cxf-spring-boot-orig-wsdl/src/main/resources/service-api-definition/Weather-Schemes/weather-general.xsd -------------------------------------------------------------------------------- /step3_jaxws-endpoint-cxf-spring-boot-orig-wsdl/src/main/resources/service-api-definition/Weather1.0.wsdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/tutorial-soap-spring-boot-cxf/HEAD/step3_jaxws-endpoint-cxf-spring-boot-orig-wsdl/src/main/resources/service-api-definition/Weather1.0.wsdl -------------------------------------------------------------------------------- /step3_jaxws-endpoint-cxf-spring-boot-orig-wsdl/src/main/resources/service-api-definition/Weather1.0.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/tutorial-soap-spring-boot-cxf/HEAD/step3_jaxws-endpoint-cxf-spring-boot-orig-wsdl/src/main/resources/service-api-definition/Weather1.0.xsd -------------------------------------------------------------------------------- /step3_jaxws-endpoint-cxf-spring-boot-orig-wsdl/src/test/java/de/jonashackt/tutorial/SimpleBootCxfApplicationTests.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/tutorial-soap-spring-boot-cxf/HEAD/step3_jaxws-endpoint-cxf-spring-boot-orig-wsdl/src/test/java/de/jonashackt/tutorial/SimpleBootCxfApplicationTests.java -------------------------------------------------------------------------------- /step3_jaxws-endpoint-cxf-spring-boot/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/tutorial-soap-spring-boot-cxf/HEAD/step3_jaxws-endpoint-cxf-spring-boot/pom.xml -------------------------------------------------------------------------------- /step3_jaxws-endpoint-cxf-spring-boot/src/main/java/de/jonashackt/tutorial/SimpleBootCxfApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/tutorial-soap-spring-boot-cxf/HEAD/step3_jaxws-endpoint-cxf-spring-boot/src/main/java/de/jonashackt/tutorial/SimpleBootCxfApplication.java -------------------------------------------------------------------------------- /step3_jaxws-endpoint-cxf-spring-boot/src/main/java/de/jonashackt/tutorial/configuration/WebServiceConfiguration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/tutorial-soap-spring-boot-cxf/HEAD/step3_jaxws-endpoint-cxf-spring-boot/src/main/java/de/jonashackt/tutorial/configuration/WebServiceConfiguration.java -------------------------------------------------------------------------------- /step3_jaxws-endpoint-cxf-spring-boot/src/main/java/de/jonashackt/tutorial/endpoint/WeatherServiceEndpoint.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/tutorial-soap-spring-boot-cxf/HEAD/step3_jaxws-endpoint-cxf-spring-boot/src/main/java/de/jonashackt/tutorial/endpoint/WeatherServiceEndpoint.java -------------------------------------------------------------------------------- /step3_jaxws-endpoint-cxf-spring-boot/src/main/resources/application.properties: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /step3_jaxws-endpoint-cxf-spring-boot/src/main/resources/service-api-definition/Weather-Schemes/w3c-xmlmime-definition.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/tutorial-soap-spring-boot-cxf/HEAD/step3_jaxws-endpoint-cxf-spring-boot/src/main/resources/service-api-definition/Weather-Schemes/w3c-xmlmime-definition.xsd -------------------------------------------------------------------------------- /step3_jaxws-endpoint-cxf-spring-boot/src/main/resources/service-api-definition/Weather-Schemes/weather-datatypes.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/tutorial-soap-spring-boot-cxf/HEAD/step3_jaxws-endpoint-cxf-spring-boot/src/main/resources/service-api-definition/Weather-Schemes/weather-datatypes.xsd -------------------------------------------------------------------------------- /step3_jaxws-endpoint-cxf-spring-boot/src/main/resources/service-api-definition/Weather-Schemes/weather-exception.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/tutorial-soap-spring-boot-cxf/HEAD/step3_jaxws-endpoint-cxf-spring-boot/src/main/resources/service-api-definition/Weather-Schemes/weather-exception.xsd -------------------------------------------------------------------------------- /step3_jaxws-endpoint-cxf-spring-boot/src/main/resources/service-api-definition/Weather-Schemes/weather-general.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/tutorial-soap-spring-boot-cxf/HEAD/step3_jaxws-endpoint-cxf-spring-boot/src/main/resources/service-api-definition/Weather-Schemes/weather-general.xsd -------------------------------------------------------------------------------- /step3_jaxws-endpoint-cxf-spring-boot/src/main/resources/service-api-definition/Weather1.0.wsdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/tutorial-soap-spring-boot-cxf/HEAD/step3_jaxws-endpoint-cxf-spring-boot/src/main/resources/service-api-definition/Weather1.0.wsdl -------------------------------------------------------------------------------- /step3_jaxws-endpoint-cxf-spring-boot/src/main/resources/service-api-definition/Weather1.0.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/tutorial-soap-spring-boot-cxf/HEAD/step3_jaxws-endpoint-cxf-spring-boot/src/main/resources/service-api-definition/Weather1.0.xsd -------------------------------------------------------------------------------- /step3_jaxws-endpoint-cxf-spring-boot/src/test/java/de/jonashackt/tutorial/SimpleBootCxfApplicationTests.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/tutorial-soap-spring-boot-cxf/HEAD/step3_jaxws-endpoint-cxf-spring-boot/src/test/java/de/jonashackt/tutorial/SimpleBootCxfApplicationTests.java -------------------------------------------------------------------------------- /step4_test/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/tutorial-soap-spring-boot-cxf/HEAD/step4_test/pom.xml -------------------------------------------------------------------------------- /step4_test/src/main/java/de/jonashackt/tutorial/SimpleBootCxfApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/tutorial-soap-spring-boot-cxf/HEAD/step4_test/src/main/java/de/jonashackt/tutorial/SimpleBootCxfApplication.java -------------------------------------------------------------------------------- /step4_test/src/main/java/de/jonashackt/tutorial/configuration/ApplicationConfiguration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/tutorial-soap-spring-boot-cxf/HEAD/step4_test/src/main/java/de/jonashackt/tutorial/configuration/ApplicationConfiguration.java -------------------------------------------------------------------------------- /step4_test/src/main/java/de/jonashackt/tutorial/configuration/WebServiceConfiguration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/tutorial-soap-spring-boot-cxf/HEAD/step4_test/src/main/java/de/jonashackt/tutorial/configuration/WebServiceConfiguration.java -------------------------------------------------------------------------------- /step4_test/src/main/java/de/jonashackt/tutorial/controller/WeatherServiceController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/tutorial-soap-spring-boot-cxf/HEAD/step4_test/src/main/java/de/jonashackt/tutorial/controller/WeatherServiceController.java -------------------------------------------------------------------------------- /step4_test/src/main/java/de/jonashackt/tutorial/endpoint/WeatherServiceEndpoint.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/tutorial-soap-spring-boot-cxf/HEAD/step4_test/src/main/java/de/jonashackt/tutorial/endpoint/WeatherServiceEndpoint.java -------------------------------------------------------------------------------- /step4_test/src/main/java/de/jonashackt/tutorial/transformation/GetCityForecastByZIPOutMapper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/tutorial-soap-spring-boot-cxf/HEAD/step4_test/src/main/java/de/jonashackt/tutorial/transformation/GetCityForecastByZIPOutMapper.java -------------------------------------------------------------------------------- /step4_test/src/main/resources/application.properties: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /step4_test/src/main/resources/service-api-definition/Weather-Schemes/w3c-xmlmime-definition.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/tutorial-soap-spring-boot-cxf/HEAD/step4_test/src/main/resources/service-api-definition/Weather-Schemes/w3c-xmlmime-definition.xsd -------------------------------------------------------------------------------- /step4_test/src/main/resources/service-api-definition/Weather-Schemes/weather-datatypes.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/tutorial-soap-spring-boot-cxf/HEAD/step4_test/src/main/resources/service-api-definition/Weather-Schemes/weather-datatypes.xsd -------------------------------------------------------------------------------- /step4_test/src/main/resources/service-api-definition/Weather-Schemes/weather-exception.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/tutorial-soap-spring-boot-cxf/HEAD/step4_test/src/main/resources/service-api-definition/Weather-Schemes/weather-exception.xsd -------------------------------------------------------------------------------- /step4_test/src/main/resources/service-api-definition/Weather-Schemes/weather-general.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/tutorial-soap-spring-boot-cxf/HEAD/step4_test/src/main/resources/service-api-definition/Weather-Schemes/weather-general.xsd -------------------------------------------------------------------------------- /step4_test/src/main/resources/service-api-definition/Weather1.0.wsdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/tutorial-soap-spring-boot-cxf/HEAD/step4_test/src/main/resources/service-api-definition/Weather1.0.wsdl -------------------------------------------------------------------------------- /step4_test/src/main/resources/service-api-definition/Weather1.0.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/tutorial-soap-spring-boot-cxf/HEAD/step4_test/src/main/resources/service-api-definition/Weather1.0.xsd -------------------------------------------------------------------------------- /step4_test/src/test/java/de/jonashackt/tutorial/ApplicationTestConfiguration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/tutorial-soap-spring-boot-cxf/HEAD/step4_test/src/test/java/de/jonashackt/tutorial/ApplicationTestConfiguration.java -------------------------------------------------------------------------------- /step4_test/src/test/java/de/jonashackt/tutorial/SimpleBootCxfSystemTestApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/tutorial-soap-spring-boot-cxf/HEAD/step4_test/src/test/java/de/jonashackt/tutorial/SimpleBootCxfSystemTestApplication.java -------------------------------------------------------------------------------- /step4_test/src/test/java/de/jonashackt/tutorial/WebServiceIntegrationTestConfiguration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/tutorial-soap-spring-boot-cxf/HEAD/step4_test/src/test/java/de/jonashackt/tutorial/WebServiceIntegrationTestConfiguration.java -------------------------------------------------------------------------------- /step4_test/src/test/java/de/jonashackt/tutorial/WebServiceSystemTestConfiguration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/tutorial-soap-spring-boot-cxf/HEAD/step4_test/src/test/java/de/jonashackt/tutorial/WebServiceSystemTestConfiguration.java -------------------------------------------------------------------------------- /step4_test/src/test/java/de/jonashackt/tutorial/endpoint/WeatherServiceIntegrationTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/tutorial-soap-spring-boot-cxf/HEAD/step4_test/src/test/java/de/jonashackt/tutorial/endpoint/WeatherServiceIntegrationTest.java -------------------------------------------------------------------------------- /step4_test/src/test/java/de/jonashackt/tutorial/endpoint/WeatherServiceSystemTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/tutorial-soap-spring-boot-cxf/HEAD/step4_test/src/test/java/de/jonashackt/tutorial/endpoint/WeatherServiceSystemTest.java -------------------------------------------------------------------------------- /step4_test/src/test/java/de/jonashackt/tutorial/endpoint/WeatherServiceTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/tutorial-soap-spring-boot-cxf/HEAD/step4_test/src/test/java/de/jonashackt/tutorial/endpoint/WeatherServiceTest.java -------------------------------------------------------------------------------- /step4_test/src/test/java/de/jonashackt/tutorial/endpoint/WeatherServiceXmlFileSystemTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/tutorial-soap-spring-boot-cxf/HEAD/step4_test/src/test/java/de/jonashackt/tutorial/endpoint/WeatherServiceXmlFileSystemTest.java -------------------------------------------------------------------------------- /step4_test/src/test/java/de/jonashackt/tutorial/utils/TestHelper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/tutorial-soap-spring-boot-cxf/HEAD/step4_test/src/test/java/de/jonashackt/tutorial/utils/TestHelper.java -------------------------------------------------------------------------------- /step4_test/src/test/java/de/jonashackt/tutorial/utils/XmlUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/tutorial-soap-spring-boot-cxf/HEAD/step4_test/src/test/java/de/jonashackt/tutorial/utils/XmlUtils.java -------------------------------------------------------------------------------- /step4_test/src/test/java/de/jonashackt/tutorial/utils/XmlUtilsException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/tutorial-soap-spring-boot-cxf/HEAD/step4_test/src/test/java/de/jonashackt/tutorial/utils/XmlUtilsException.java -------------------------------------------------------------------------------- /step4_test/src/test/resources/requests/GetCityForecastByZIPTest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/tutorial-soap-spring-boot-cxf/HEAD/step4_test/src/test/resources/requests/GetCityForecastByZIPTest.xml -------------------------------------------------------------------------------- /step5_custom-soap-fault/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/tutorial-soap-spring-boot-cxf/HEAD/step5_custom-soap-fault/pom.xml -------------------------------------------------------------------------------- /step5_custom-soap-fault/src/main/java/de/jonashackt/tutorial/SimpleBootCxfApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/tutorial-soap-spring-boot-cxf/HEAD/step5_custom-soap-fault/src/main/java/de/jonashackt/tutorial/SimpleBootCxfApplication.java -------------------------------------------------------------------------------- /step5_custom-soap-fault/src/main/java/de/jonashackt/tutorial/common/FaultConst.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/tutorial-soap-spring-boot-cxf/HEAD/step5_custom-soap-fault/src/main/java/de/jonashackt/tutorial/common/FaultConst.java -------------------------------------------------------------------------------- /step5_custom-soap-fault/src/main/java/de/jonashackt/tutorial/common/InternalBusinessException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/tutorial-soap-spring-boot-cxf/HEAD/step5_custom-soap-fault/src/main/java/de/jonashackt/tutorial/common/InternalBusinessException.java -------------------------------------------------------------------------------- /step5_custom-soap-fault/src/main/java/de/jonashackt/tutorial/common/XmlUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/tutorial-soap-spring-boot-cxf/HEAD/step5_custom-soap-fault/src/main/java/de/jonashackt/tutorial/common/XmlUtils.java -------------------------------------------------------------------------------- /step5_custom-soap-fault/src/main/java/de/jonashackt/tutorial/configuration/ApplicationConfiguration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/tutorial-soap-spring-boot-cxf/HEAD/step5_custom-soap-fault/src/main/java/de/jonashackt/tutorial/configuration/ApplicationConfiguration.java -------------------------------------------------------------------------------- /step5_custom-soap-fault/src/main/java/de/jonashackt/tutorial/configuration/WebServiceConfiguration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/tutorial-soap-spring-boot-cxf/HEAD/step5_custom-soap-fault/src/main/java/de/jonashackt/tutorial/configuration/WebServiceConfiguration.java -------------------------------------------------------------------------------- /step5_custom-soap-fault/src/main/java/de/jonashackt/tutorial/configuration/customsoapfaults/CustomSoapFaultInterceptor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/tutorial-soap-spring-boot-cxf/HEAD/step5_custom-soap-fault/src/main/java/de/jonashackt/tutorial/configuration/customsoapfaults/CustomSoapFaultInterceptor.java -------------------------------------------------------------------------------- /step5_custom-soap-fault/src/main/java/de/jonashackt/tutorial/configuration/customsoapfaults/WeatherSoapFaultHelper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/tutorial-soap-spring-boot-cxf/HEAD/step5_custom-soap-fault/src/main/java/de/jonashackt/tutorial/configuration/customsoapfaults/WeatherSoapFaultHelper.java -------------------------------------------------------------------------------- /step5_custom-soap-fault/src/main/java/de/jonashackt/tutorial/controller/WeatherServiceController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/tutorial-soap-spring-boot-cxf/HEAD/step5_custom-soap-fault/src/main/java/de/jonashackt/tutorial/controller/WeatherServiceController.java -------------------------------------------------------------------------------- /step5_custom-soap-fault/src/main/java/de/jonashackt/tutorial/endpoint/WeatherServiceEndpoint.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/tutorial-soap-spring-boot-cxf/HEAD/step5_custom-soap-fault/src/main/java/de/jonashackt/tutorial/endpoint/WeatherServiceEndpoint.java -------------------------------------------------------------------------------- /step5_custom-soap-fault/src/main/java/de/jonashackt/tutorial/logging/SoapFrameworkLogger.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/tutorial-soap-spring-boot-cxf/HEAD/step5_custom-soap-fault/src/main/java/de/jonashackt/tutorial/logging/SoapFrameworkLogger.java -------------------------------------------------------------------------------- /step5_custom-soap-fault/src/main/java/de/jonashackt/tutorial/transformation/GetCityForecastByZIPOutMapper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/tutorial-soap-spring-boot-cxf/HEAD/step5_custom-soap-fault/src/main/java/de/jonashackt/tutorial/transformation/GetCityForecastByZIPOutMapper.java -------------------------------------------------------------------------------- /step5_custom-soap-fault/src/main/java/de/jonashackt/tutorial/transformation/WeatherOutError.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/tutorial-soap-spring-boot-cxf/HEAD/step5_custom-soap-fault/src/main/java/de/jonashackt/tutorial/transformation/WeatherOutError.java -------------------------------------------------------------------------------- /step5_custom-soap-fault/src/main/resources/application.properties: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /step5_custom-soap-fault/src/main/resources/service-api-definition/Weather-Schemes/w3c-xmlmime-definition.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/tutorial-soap-spring-boot-cxf/HEAD/step5_custom-soap-fault/src/main/resources/service-api-definition/Weather-Schemes/w3c-xmlmime-definition.xsd -------------------------------------------------------------------------------- /step5_custom-soap-fault/src/main/resources/service-api-definition/Weather-Schemes/weather-datatypes.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/tutorial-soap-spring-boot-cxf/HEAD/step5_custom-soap-fault/src/main/resources/service-api-definition/Weather-Schemes/weather-datatypes.xsd -------------------------------------------------------------------------------- /step5_custom-soap-fault/src/main/resources/service-api-definition/Weather-Schemes/weather-exception.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/tutorial-soap-spring-boot-cxf/HEAD/step5_custom-soap-fault/src/main/resources/service-api-definition/Weather-Schemes/weather-exception.xsd -------------------------------------------------------------------------------- /step5_custom-soap-fault/src/main/resources/service-api-definition/Weather-Schemes/weather-general.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/tutorial-soap-spring-boot-cxf/HEAD/step5_custom-soap-fault/src/main/resources/service-api-definition/Weather-Schemes/weather-general.xsd -------------------------------------------------------------------------------- /step5_custom-soap-fault/src/main/resources/service-api-definition/Weather1.0.wsdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/tutorial-soap-spring-boot-cxf/HEAD/step5_custom-soap-fault/src/main/resources/service-api-definition/Weather1.0.wsdl -------------------------------------------------------------------------------- /step5_custom-soap-fault/src/main/resources/service-api-definition/Weather1.0.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/tutorial-soap-spring-boot-cxf/HEAD/step5_custom-soap-fault/src/main/resources/service-api-definition/Weather1.0.xsd -------------------------------------------------------------------------------- /step5_custom-soap-fault/src/test/java/de/jonashackt/tutorial/ApplicationTestConfiguration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/tutorial-soap-spring-boot-cxf/HEAD/step5_custom-soap-fault/src/test/java/de/jonashackt/tutorial/ApplicationTestConfiguration.java -------------------------------------------------------------------------------- /step5_custom-soap-fault/src/test/java/de/jonashackt/tutorial/SimpleBootCxfSystemTestApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/tutorial-soap-spring-boot-cxf/HEAD/step5_custom-soap-fault/src/test/java/de/jonashackt/tutorial/SimpleBootCxfSystemTestApplication.java -------------------------------------------------------------------------------- /step5_custom-soap-fault/src/test/java/de/jonashackt/tutorial/WebServiceIntegrationTestConfiguration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/tutorial-soap-spring-boot-cxf/HEAD/step5_custom-soap-fault/src/test/java/de/jonashackt/tutorial/WebServiceIntegrationTestConfiguration.java -------------------------------------------------------------------------------- /step5_custom-soap-fault/src/test/java/de/jonashackt/tutorial/WebServiceSystemTestConfiguration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/tutorial-soap-spring-boot-cxf/HEAD/step5_custom-soap-fault/src/test/java/de/jonashackt/tutorial/WebServiceSystemTestConfiguration.java -------------------------------------------------------------------------------- /step5_custom-soap-fault/src/test/java/de/jonashackt/tutorial/endpoint/WeatherServiceIntegrationTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/tutorial-soap-spring-boot-cxf/HEAD/step5_custom-soap-fault/src/test/java/de/jonashackt/tutorial/endpoint/WeatherServiceIntegrationTest.java -------------------------------------------------------------------------------- /step5_custom-soap-fault/src/test/java/de/jonashackt/tutorial/endpoint/WeatherServiceSystemTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/tutorial-soap-spring-boot-cxf/HEAD/step5_custom-soap-fault/src/test/java/de/jonashackt/tutorial/endpoint/WeatherServiceSystemTest.java -------------------------------------------------------------------------------- /step5_custom-soap-fault/src/test/java/de/jonashackt/tutorial/endpoint/WeatherServiceTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/tutorial-soap-spring-boot-cxf/HEAD/step5_custom-soap-fault/src/test/java/de/jonashackt/tutorial/endpoint/WeatherServiceTest.java -------------------------------------------------------------------------------- /step5_custom-soap-fault/src/test/java/de/jonashackt/tutorial/endpoint/WeatherServiceXmlErrorSystemTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/tutorial-soap-spring-boot-cxf/HEAD/step5_custom-soap-fault/src/test/java/de/jonashackt/tutorial/endpoint/WeatherServiceXmlErrorSystemTest.java -------------------------------------------------------------------------------- /step5_custom-soap-fault/src/test/java/de/jonashackt/tutorial/endpoint/WeatherServiceXmlFileSystemTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/tutorial-soap-spring-boot-cxf/HEAD/step5_custom-soap-fault/src/test/java/de/jonashackt/tutorial/endpoint/WeatherServiceXmlFileSystemTest.java -------------------------------------------------------------------------------- /step5_custom-soap-fault/src/test/java/de/jonashackt/tutorial/utils/SoapRawClient.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/tutorial-soap-spring-boot-cxf/HEAD/step5_custom-soap-fault/src/test/java/de/jonashackt/tutorial/utils/SoapRawClient.java -------------------------------------------------------------------------------- /step5_custom-soap-fault/src/test/java/de/jonashackt/tutorial/utils/SoapRawClientResponse.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/tutorial-soap-spring-boot-cxf/HEAD/step5_custom-soap-fault/src/test/java/de/jonashackt/tutorial/utils/SoapRawClientResponse.java -------------------------------------------------------------------------------- /step5_custom-soap-fault/src/test/java/de/jonashackt/tutorial/utils/TestHelper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/tutorial-soap-spring-boot-cxf/HEAD/step5_custom-soap-fault/src/test/java/de/jonashackt/tutorial/utils/TestHelper.java -------------------------------------------------------------------------------- /step5_custom-soap-fault/src/test/resources/requests/GetCityForecastByZIPTest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/tutorial-soap-spring-boot-cxf/HEAD/step5_custom-soap-fault/src/test/resources/requests/GetCityForecastByZIPTest.xml -------------------------------------------------------------------------------- /step5_custom-soap-fault/src/test/resources/requests/xmlerrors/xmlErrorNotXmlSchemeCompliantRootElementTest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/tutorial-soap-spring-boot-cxf/HEAD/step5_custom-soap-fault/src/test/resources/requests/xmlerrors/xmlErrorNotXmlSchemeCompliantRootElementTest.xml -------------------------------------------------------------------------------- /step5_custom-soap-fault/src/test/resources/requests/xmlerrors/xmlErrorNotXmlSchemeCompliantUnderRootElementTest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/tutorial-soap-spring-boot-cxf/HEAD/step5_custom-soap-fault/src/test/resources/requests/xmlerrors/xmlErrorNotXmlSchemeCompliantUnderRootElementTest.xml -------------------------------------------------------------------------------- /step5_custom-soap-fault/src/test/resources/requests/xmlerrors/xmlErrorSoapBodyTagMissingBracketTest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/tutorial-soap-spring-boot-cxf/HEAD/step5_custom-soap-fault/src/test/resources/requests/xmlerrors/xmlErrorSoapBodyTagMissingBracketTest.xml -------------------------------------------------------------------------------- /step5_custom-soap-fault/src/test/resources/requests/xmlerrors/xmlErrorSoapEnvelopeTagMissingBracketTest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/tutorial-soap-spring-boot-cxf/HEAD/step5_custom-soap-fault/src/test/resources/requests/xmlerrors/xmlErrorSoapEnvelopeTagMissingBracketTest.xml -------------------------------------------------------------------------------- /step5_custom-soap-fault/src/test/resources/requests/xmlerrors/xmlErrorSoapHeaderMissingSlash.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/tutorial-soap-spring-boot-cxf/HEAD/step5_custom-soap-fault/src/test/resources/requests/xmlerrors/xmlErrorSoapHeaderMissingSlash.xml -------------------------------------------------------------------------------- /step5_custom-soap-fault/src/test/resources/requests/xmlerrors/xmlErrorSoapHeaderTagMissingBracketTest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/tutorial-soap-spring-boot-cxf/HEAD/step5_custom-soap-fault/src/test/resources/requests/xmlerrors/xmlErrorSoapHeaderTagMissingBracketTest.xml -------------------------------------------------------------------------------- /step5_custom-soap-fault/src/test/resources/requests/xmlerrors/xmlErrorXMLHeaderDefinitionMissingBracket.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/tutorial-soap-spring-boot-cxf/HEAD/step5_custom-soap-fault/src/test/resources/requests/xmlerrors/xmlErrorXMLHeaderDefinitionMissingBracket.xml -------------------------------------------------------------------------------- /step5_custom-soap-fault/src/test/resources/requests/xmlerrors/xmlErrorXMLTagNotClosedInsideBodyTest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/tutorial-soap-spring-boot-cxf/HEAD/step5_custom-soap-fault/src/test/resources/requests/xmlerrors/xmlErrorXMLTagNotClosedInsideBodyTest.xml -------------------------------------------------------------------------------- /step6_soap_message_logging/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/tutorial-soap-spring-boot-cxf/HEAD/step6_soap_message_logging/pom.xml -------------------------------------------------------------------------------- /step6_soap_message_logging/src/main/java/de/jonashackt/tutorial/SimpleBootCxfApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/tutorial-soap-spring-boot-cxf/HEAD/step6_soap_message_logging/src/main/java/de/jonashackt/tutorial/SimpleBootCxfApplication.java -------------------------------------------------------------------------------- /step6_soap_message_logging/src/main/java/de/jonashackt/tutorial/configuration/ApplicationConfiguration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/tutorial-soap-spring-boot-cxf/HEAD/step6_soap_message_logging/src/main/java/de/jonashackt/tutorial/configuration/ApplicationConfiguration.java -------------------------------------------------------------------------------- /step6_soap_message_logging/src/main/java/de/jonashackt/tutorial/configuration/WebServiceConfiguration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/tutorial-soap-spring-boot-cxf/HEAD/step6_soap_message_logging/src/main/java/de/jonashackt/tutorial/configuration/WebServiceConfiguration.java -------------------------------------------------------------------------------- /step6_soap_message_logging/src/main/java/de/jonashackt/tutorial/controller/WeatherServiceController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/tutorial-soap-spring-boot-cxf/HEAD/step6_soap_message_logging/src/main/java/de/jonashackt/tutorial/controller/WeatherServiceController.java -------------------------------------------------------------------------------- /step6_soap_message_logging/src/main/java/de/jonashackt/tutorial/endpoint/WeatherServiceEndpoint.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/tutorial-soap-spring-boot-cxf/HEAD/step6_soap_message_logging/src/main/java/de/jonashackt/tutorial/endpoint/WeatherServiceEndpoint.java -------------------------------------------------------------------------------- /step6_soap_message_logging/src/main/java/de/jonashackt/tutorial/transformation/GetCityForecastByZIPOutMapper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/tutorial-soap-spring-boot-cxf/HEAD/step6_soap_message_logging/src/main/java/de/jonashackt/tutorial/transformation/GetCityForecastByZIPOutMapper.java -------------------------------------------------------------------------------- /step6_soap_message_logging/src/main/resources/META-INF/cxf/org.apache.cxf.Logger: -------------------------------------------------------------------------------- 1 | org.apache.cxf.common.logging.Slf4jLogger -------------------------------------------------------------------------------- /step6_soap_message_logging/src/main/resources/application.properties: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /step6_soap_message_logging/src/main/resources/logback-spring.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/tutorial-soap-spring-boot-cxf/HEAD/step6_soap_message_logging/src/main/resources/logback-spring.xml -------------------------------------------------------------------------------- /step6_soap_message_logging/src/main/resources/service-api-definition/Weather-Schemes/w3c-xmlmime-definition.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/tutorial-soap-spring-boot-cxf/HEAD/step6_soap_message_logging/src/main/resources/service-api-definition/Weather-Schemes/w3c-xmlmime-definition.xsd -------------------------------------------------------------------------------- /step6_soap_message_logging/src/main/resources/service-api-definition/Weather-Schemes/weather-datatypes.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/tutorial-soap-spring-boot-cxf/HEAD/step6_soap_message_logging/src/main/resources/service-api-definition/Weather-Schemes/weather-datatypes.xsd -------------------------------------------------------------------------------- /step6_soap_message_logging/src/main/resources/service-api-definition/Weather-Schemes/weather-exception.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/tutorial-soap-spring-boot-cxf/HEAD/step6_soap_message_logging/src/main/resources/service-api-definition/Weather-Schemes/weather-exception.xsd -------------------------------------------------------------------------------- /step6_soap_message_logging/src/main/resources/service-api-definition/Weather-Schemes/weather-general.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/tutorial-soap-spring-boot-cxf/HEAD/step6_soap_message_logging/src/main/resources/service-api-definition/Weather-Schemes/weather-general.xsd -------------------------------------------------------------------------------- /step6_soap_message_logging/src/main/resources/service-api-definition/Weather1.0.wsdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/tutorial-soap-spring-boot-cxf/HEAD/step6_soap_message_logging/src/main/resources/service-api-definition/Weather1.0.wsdl -------------------------------------------------------------------------------- /step6_soap_message_logging/src/main/resources/service-api-definition/Weather1.0.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/tutorial-soap-spring-boot-cxf/HEAD/step6_soap_message_logging/src/main/resources/service-api-definition/Weather1.0.xsd -------------------------------------------------------------------------------- /step6_soap_message_logging/src/test/java/de/jonashackt/tutorial/ApplicationTestConfiguration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/tutorial-soap-spring-boot-cxf/HEAD/step6_soap_message_logging/src/test/java/de/jonashackt/tutorial/ApplicationTestConfiguration.java -------------------------------------------------------------------------------- /step6_soap_message_logging/src/test/java/de/jonashackt/tutorial/SimpleBootCxfSystemTestApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/tutorial-soap-spring-boot-cxf/HEAD/step6_soap_message_logging/src/test/java/de/jonashackt/tutorial/SimpleBootCxfSystemTestApplication.java -------------------------------------------------------------------------------- /step6_soap_message_logging/src/test/java/de/jonashackt/tutorial/WebServiceIntegrationTestConfiguration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/tutorial-soap-spring-boot-cxf/HEAD/step6_soap_message_logging/src/test/java/de/jonashackt/tutorial/WebServiceIntegrationTestConfiguration.java -------------------------------------------------------------------------------- /step6_soap_message_logging/src/test/java/de/jonashackt/tutorial/WebServiceSystemTestConfiguration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/tutorial-soap-spring-boot-cxf/HEAD/step6_soap_message_logging/src/test/java/de/jonashackt/tutorial/WebServiceSystemTestConfiguration.java -------------------------------------------------------------------------------- /step6_soap_message_logging/src/test/java/de/jonashackt/tutorial/endpoint/WeatherServiceIntegrationTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/tutorial-soap-spring-boot-cxf/HEAD/step6_soap_message_logging/src/test/java/de/jonashackt/tutorial/endpoint/WeatherServiceIntegrationTest.java -------------------------------------------------------------------------------- /step6_soap_message_logging/src/test/java/de/jonashackt/tutorial/endpoint/WeatherServiceSystemTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/tutorial-soap-spring-boot-cxf/HEAD/step6_soap_message_logging/src/test/java/de/jonashackt/tutorial/endpoint/WeatherServiceSystemTest.java -------------------------------------------------------------------------------- /step6_soap_message_logging/src/test/java/de/jonashackt/tutorial/endpoint/WeatherServiceTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/tutorial-soap-spring-boot-cxf/HEAD/step6_soap_message_logging/src/test/java/de/jonashackt/tutorial/endpoint/WeatherServiceTest.java -------------------------------------------------------------------------------- /step6_soap_message_logging/src/test/java/de/jonashackt/tutorial/endpoint/WeatherServiceXmlFileSystemTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/tutorial-soap-spring-boot-cxf/HEAD/step6_soap_message_logging/src/test/java/de/jonashackt/tutorial/endpoint/WeatherServiceXmlFileSystemTest.java -------------------------------------------------------------------------------- /step6_soap_message_logging/src/test/java/de/jonashackt/tutorial/utils/TestHelper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/tutorial-soap-spring-boot-cxf/HEAD/step6_soap_message_logging/src/test/java/de/jonashackt/tutorial/utils/TestHelper.java -------------------------------------------------------------------------------- /step6_soap_message_logging/src/test/java/de/jonashackt/tutorial/utils/XmlUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/tutorial-soap-spring-boot-cxf/HEAD/step6_soap_message_logging/src/test/java/de/jonashackt/tutorial/utils/XmlUtils.java -------------------------------------------------------------------------------- /step6_soap_message_logging/src/test/java/de/jonashackt/tutorial/utils/XmlUtilsException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/tutorial-soap-spring-boot-cxf/HEAD/step6_soap_message_logging/src/test/java/de/jonashackt/tutorial/utils/XmlUtilsException.java -------------------------------------------------------------------------------- /step6_soap_message_logging/src/test/resources/requests/GetCityForecastByZIPTest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/tutorial-soap-spring-boot-cxf/HEAD/step6_soap_message_logging/src/test/resources/requests/GetCityForecastByZIPTest.xml -------------------------------------------------------------------------------- /step7_soap_message_logging_payload_only/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/tutorial-soap-spring-boot-cxf/HEAD/step7_soap_message_logging_payload_only/pom.xml -------------------------------------------------------------------------------- /step7_soap_message_logging_payload_only/src/main/java/de/jonashackt/tutorial/SimpleBootCxfApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/tutorial-soap-spring-boot-cxf/HEAD/step7_soap_message_logging_payload_only/src/main/java/de/jonashackt/tutorial/SimpleBootCxfApplication.java -------------------------------------------------------------------------------- /step7_soap_message_logging_payload_only/src/main/java/de/jonashackt/tutorial/configuration/ApplicationConfiguration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/tutorial-soap-spring-boot-cxf/HEAD/step7_soap_message_logging_payload_only/src/main/java/de/jonashackt/tutorial/configuration/ApplicationConfiguration.java -------------------------------------------------------------------------------- /step7_soap_message_logging_payload_only/src/main/java/de/jonashackt/tutorial/configuration/WebServiceConfiguration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/tutorial-soap-spring-boot-cxf/HEAD/step7_soap_message_logging_payload_only/src/main/java/de/jonashackt/tutorial/configuration/WebServiceConfiguration.java -------------------------------------------------------------------------------- /step7_soap_message_logging_payload_only/src/main/java/de/jonashackt/tutorial/controller/WeatherServiceController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/tutorial-soap-spring-boot-cxf/HEAD/step7_soap_message_logging_payload_only/src/main/java/de/jonashackt/tutorial/controller/WeatherServiceController.java -------------------------------------------------------------------------------- /step7_soap_message_logging_payload_only/src/main/java/de/jonashackt/tutorial/endpoint/WeatherServiceEndpoint.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/tutorial-soap-spring-boot-cxf/HEAD/step7_soap_message_logging_payload_only/src/main/java/de/jonashackt/tutorial/endpoint/WeatherServiceEndpoint.java -------------------------------------------------------------------------------- /step7_soap_message_logging_payload_only/src/main/java/de/jonashackt/tutorial/soapmsglogging/LoggingInInterceptorXmlOnly.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/tutorial-soap-spring-boot-cxf/HEAD/step7_soap_message_logging_payload_only/src/main/java/de/jonashackt/tutorial/soapmsglogging/LoggingInInterceptorXmlOnly.java -------------------------------------------------------------------------------- /step7_soap_message_logging_payload_only/src/main/java/de/jonashackt/tutorial/soapmsglogging/LoggingOutInterceptorXmlOnly.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/tutorial-soap-spring-boot-cxf/HEAD/step7_soap_message_logging_payload_only/src/main/java/de/jonashackt/tutorial/soapmsglogging/LoggingOutInterceptorXmlOnly.java -------------------------------------------------------------------------------- /step7_soap_message_logging_payload_only/src/main/java/de/jonashackt/tutorial/transformation/GetCityForecastByZIPOutMapper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/tutorial-soap-spring-boot-cxf/HEAD/step7_soap_message_logging_payload_only/src/main/java/de/jonashackt/tutorial/transformation/GetCityForecastByZIPOutMapper.java -------------------------------------------------------------------------------- /step7_soap_message_logging_payload_only/src/main/resources/META-INF/cxf/org.apache.cxf.Logger: -------------------------------------------------------------------------------- 1 | org.apache.cxf.common.logging.Slf4jLogger -------------------------------------------------------------------------------- /step7_soap_message_logging_payload_only/src/main/resources/application.properties: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /step7_soap_message_logging_payload_only/src/main/resources/logback-spring.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/tutorial-soap-spring-boot-cxf/HEAD/step7_soap_message_logging_payload_only/src/main/resources/logback-spring.xml -------------------------------------------------------------------------------- /step7_soap_message_logging_payload_only/src/main/resources/service-api-definition/Weather-Schemes/w3c-xmlmime-definition.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/tutorial-soap-spring-boot-cxf/HEAD/step7_soap_message_logging_payload_only/src/main/resources/service-api-definition/Weather-Schemes/w3c-xmlmime-definition.xsd -------------------------------------------------------------------------------- /step7_soap_message_logging_payload_only/src/main/resources/service-api-definition/Weather-Schemes/weather-datatypes.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/tutorial-soap-spring-boot-cxf/HEAD/step7_soap_message_logging_payload_only/src/main/resources/service-api-definition/Weather-Schemes/weather-datatypes.xsd -------------------------------------------------------------------------------- /step7_soap_message_logging_payload_only/src/main/resources/service-api-definition/Weather-Schemes/weather-exception.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/tutorial-soap-spring-boot-cxf/HEAD/step7_soap_message_logging_payload_only/src/main/resources/service-api-definition/Weather-Schemes/weather-exception.xsd -------------------------------------------------------------------------------- /step7_soap_message_logging_payload_only/src/main/resources/service-api-definition/Weather-Schemes/weather-general.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/tutorial-soap-spring-boot-cxf/HEAD/step7_soap_message_logging_payload_only/src/main/resources/service-api-definition/Weather-Schemes/weather-general.xsd -------------------------------------------------------------------------------- /step7_soap_message_logging_payload_only/src/main/resources/service-api-definition/Weather1.0.wsdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/tutorial-soap-spring-boot-cxf/HEAD/step7_soap_message_logging_payload_only/src/main/resources/service-api-definition/Weather1.0.wsdl -------------------------------------------------------------------------------- /step7_soap_message_logging_payload_only/src/main/resources/service-api-definition/Weather1.0.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/tutorial-soap-spring-boot-cxf/HEAD/step7_soap_message_logging_payload_only/src/main/resources/service-api-definition/Weather1.0.xsd -------------------------------------------------------------------------------- /step7_soap_message_logging_payload_only/src/test/java/de/jonashackt/tutorial/ApplicationTestConfiguration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/tutorial-soap-spring-boot-cxf/HEAD/step7_soap_message_logging_payload_only/src/test/java/de/jonashackt/tutorial/ApplicationTestConfiguration.java -------------------------------------------------------------------------------- /step7_soap_message_logging_payload_only/src/test/java/de/jonashackt/tutorial/SimpleBootCxfSystemTestApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/tutorial-soap-spring-boot-cxf/HEAD/step7_soap_message_logging_payload_only/src/test/java/de/jonashackt/tutorial/SimpleBootCxfSystemTestApplication.java -------------------------------------------------------------------------------- /step7_soap_message_logging_payload_only/src/test/java/de/jonashackt/tutorial/WebServiceIntegrationTestConfiguration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/tutorial-soap-spring-boot-cxf/HEAD/step7_soap_message_logging_payload_only/src/test/java/de/jonashackt/tutorial/WebServiceIntegrationTestConfiguration.java -------------------------------------------------------------------------------- /step7_soap_message_logging_payload_only/src/test/java/de/jonashackt/tutorial/WebServiceSystemTestConfiguration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/tutorial-soap-spring-boot-cxf/HEAD/step7_soap_message_logging_payload_only/src/test/java/de/jonashackt/tutorial/WebServiceSystemTestConfiguration.java -------------------------------------------------------------------------------- /step7_soap_message_logging_payload_only/src/test/java/de/jonashackt/tutorial/endpoint/WeatherServiceIntegrationTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/tutorial-soap-spring-boot-cxf/HEAD/step7_soap_message_logging_payload_only/src/test/java/de/jonashackt/tutorial/endpoint/WeatherServiceIntegrationTest.java -------------------------------------------------------------------------------- /step7_soap_message_logging_payload_only/src/test/java/de/jonashackt/tutorial/endpoint/WeatherServiceSystemTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/tutorial-soap-spring-boot-cxf/HEAD/step7_soap_message_logging_payload_only/src/test/java/de/jonashackt/tutorial/endpoint/WeatherServiceSystemTest.java -------------------------------------------------------------------------------- /step7_soap_message_logging_payload_only/src/test/java/de/jonashackt/tutorial/endpoint/WeatherServiceTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/tutorial-soap-spring-boot-cxf/HEAD/step7_soap_message_logging_payload_only/src/test/java/de/jonashackt/tutorial/endpoint/WeatherServiceTest.java -------------------------------------------------------------------------------- /step7_soap_message_logging_payload_only/src/test/java/de/jonashackt/tutorial/endpoint/WeatherServiceXmlFileSystemTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/tutorial-soap-spring-boot-cxf/HEAD/step7_soap_message_logging_payload_only/src/test/java/de/jonashackt/tutorial/endpoint/WeatherServiceXmlFileSystemTest.java -------------------------------------------------------------------------------- /step7_soap_message_logging_payload_only/src/test/java/de/jonashackt/tutorial/utils/TestHelper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/tutorial-soap-spring-boot-cxf/HEAD/step7_soap_message_logging_payload_only/src/test/java/de/jonashackt/tutorial/utils/TestHelper.java -------------------------------------------------------------------------------- /step7_soap_message_logging_payload_only/src/test/java/de/jonashackt/tutorial/utils/XmlUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/tutorial-soap-spring-boot-cxf/HEAD/step7_soap_message_logging_payload_only/src/test/java/de/jonashackt/tutorial/utils/XmlUtils.java -------------------------------------------------------------------------------- /step7_soap_message_logging_payload_only/src/test/java/de/jonashackt/tutorial/utils/XmlUtilsException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/tutorial-soap-spring-boot-cxf/HEAD/step7_soap_message_logging_payload_only/src/test/java/de/jonashackt/tutorial/utils/XmlUtilsException.java -------------------------------------------------------------------------------- /step7_soap_message_logging_payload_only/src/test/resources/requests/GetCityForecastByZIPTest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/tutorial-soap-spring-boot-cxf/HEAD/step7_soap_message_logging_payload_only/src/test/resources/requests/GetCityForecastByZIPTest.xml -------------------------------------------------------------------------------- /step8_logging_into_elasticstack/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/tutorial-soap-spring-boot-cxf/HEAD/step8_logging_into_elasticstack/pom.xml -------------------------------------------------------------------------------- /step8_logging_into_elasticstack/src/main/java/de/jonashackt/tutorial/SimpleBootCxfApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/tutorial-soap-spring-boot-cxf/HEAD/step8_logging_into_elasticstack/src/main/java/de/jonashackt/tutorial/SimpleBootCxfApplication.java -------------------------------------------------------------------------------- /step8_logging_into_elasticstack/src/main/java/de/jonashackt/tutorial/configuration/ApplicationConfiguration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/tutorial-soap-spring-boot-cxf/HEAD/step8_logging_into_elasticstack/src/main/java/de/jonashackt/tutorial/configuration/ApplicationConfiguration.java -------------------------------------------------------------------------------- /step8_logging_into_elasticstack/src/main/java/de/jonashackt/tutorial/configuration/WebServiceConfiguration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/tutorial-soap-spring-boot-cxf/HEAD/step8_logging_into_elasticstack/src/main/java/de/jonashackt/tutorial/configuration/WebServiceConfiguration.java -------------------------------------------------------------------------------- /step8_logging_into_elasticstack/src/main/java/de/jonashackt/tutorial/controller/WeatherServiceController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/tutorial-soap-spring-boot-cxf/HEAD/step8_logging_into_elasticstack/src/main/java/de/jonashackt/tutorial/controller/WeatherServiceController.java -------------------------------------------------------------------------------- /step8_logging_into_elasticstack/src/main/java/de/jonashackt/tutorial/endpoint/WeatherServiceEndpoint.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/tutorial-soap-spring-boot-cxf/HEAD/step8_logging_into_elasticstack/src/main/java/de/jonashackt/tutorial/endpoint/WeatherServiceEndpoint.java -------------------------------------------------------------------------------- /step8_logging_into_elasticstack/src/main/java/de/jonashackt/tutorial/soapmsglogging/LoggingInInterceptorXmlOnly.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/tutorial-soap-spring-boot-cxf/HEAD/step8_logging_into_elasticstack/src/main/java/de/jonashackt/tutorial/soapmsglogging/LoggingInInterceptorXmlOnly.java -------------------------------------------------------------------------------- /step8_logging_into_elasticstack/src/main/java/de/jonashackt/tutorial/soapmsglogging/LoggingOutInterceptorXmlOnly.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/tutorial-soap-spring-boot-cxf/HEAD/step8_logging_into_elasticstack/src/main/java/de/jonashackt/tutorial/soapmsglogging/LoggingOutInterceptorXmlOnly.java -------------------------------------------------------------------------------- /step8_logging_into_elasticstack/src/main/java/de/jonashackt/tutorial/transformation/GetCityForecastByZIPOutMapper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/tutorial-soap-spring-boot-cxf/HEAD/step8_logging_into_elasticstack/src/main/java/de/jonashackt/tutorial/transformation/GetCityForecastByZIPOutMapper.java -------------------------------------------------------------------------------- /step8_logging_into_elasticstack/src/main/resources/META-INF/cxf/org.apache.cxf.Logger: -------------------------------------------------------------------------------- 1 | org.apache.cxf.common.logging.Slf4jLogger -------------------------------------------------------------------------------- /step8_logging_into_elasticstack/src/main/resources/application.properties: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /step8_logging_into_elasticstack/src/main/resources/logback-spring.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/tutorial-soap-spring-boot-cxf/HEAD/step8_logging_into_elasticstack/src/main/resources/logback-spring.xml -------------------------------------------------------------------------------- /step8_logging_into_elasticstack/src/main/resources/service-api-definition/Weather-Schemes/w3c-xmlmime-definition.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/tutorial-soap-spring-boot-cxf/HEAD/step8_logging_into_elasticstack/src/main/resources/service-api-definition/Weather-Schemes/w3c-xmlmime-definition.xsd -------------------------------------------------------------------------------- /step8_logging_into_elasticstack/src/main/resources/service-api-definition/Weather-Schemes/weather-datatypes.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/tutorial-soap-spring-boot-cxf/HEAD/step8_logging_into_elasticstack/src/main/resources/service-api-definition/Weather-Schemes/weather-datatypes.xsd -------------------------------------------------------------------------------- /step8_logging_into_elasticstack/src/main/resources/service-api-definition/Weather-Schemes/weather-exception.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/tutorial-soap-spring-boot-cxf/HEAD/step8_logging_into_elasticstack/src/main/resources/service-api-definition/Weather-Schemes/weather-exception.xsd -------------------------------------------------------------------------------- /step8_logging_into_elasticstack/src/main/resources/service-api-definition/Weather-Schemes/weather-general.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/tutorial-soap-spring-boot-cxf/HEAD/step8_logging_into_elasticstack/src/main/resources/service-api-definition/Weather-Schemes/weather-general.xsd -------------------------------------------------------------------------------- /step8_logging_into_elasticstack/src/main/resources/service-api-definition/Weather1.0.wsdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/tutorial-soap-spring-boot-cxf/HEAD/step8_logging_into_elasticstack/src/main/resources/service-api-definition/Weather1.0.wsdl -------------------------------------------------------------------------------- /step8_logging_into_elasticstack/src/main/resources/service-api-definition/Weather1.0.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/tutorial-soap-spring-boot-cxf/HEAD/step8_logging_into_elasticstack/src/main/resources/service-api-definition/Weather1.0.xsd -------------------------------------------------------------------------------- /step8_logging_into_elasticstack/src/test/java/de/jonashackt/tutorial/ApplicationTestConfiguration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/tutorial-soap-spring-boot-cxf/HEAD/step8_logging_into_elasticstack/src/test/java/de/jonashackt/tutorial/ApplicationTestConfiguration.java -------------------------------------------------------------------------------- /step8_logging_into_elasticstack/src/test/java/de/jonashackt/tutorial/SimpleBootCxfSystemTestApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/tutorial-soap-spring-boot-cxf/HEAD/step8_logging_into_elasticstack/src/test/java/de/jonashackt/tutorial/SimpleBootCxfSystemTestApplication.java -------------------------------------------------------------------------------- /step8_logging_into_elasticstack/src/test/java/de/jonashackt/tutorial/WebServiceIntegrationTestConfiguration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/tutorial-soap-spring-boot-cxf/HEAD/step8_logging_into_elasticstack/src/test/java/de/jonashackt/tutorial/WebServiceIntegrationTestConfiguration.java -------------------------------------------------------------------------------- /step8_logging_into_elasticstack/src/test/java/de/jonashackt/tutorial/WebServiceSystemTestConfiguration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/tutorial-soap-spring-boot-cxf/HEAD/step8_logging_into_elasticstack/src/test/java/de/jonashackt/tutorial/WebServiceSystemTestConfiguration.java -------------------------------------------------------------------------------- /step8_logging_into_elasticstack/src/test/java/de/jonashackt/tutorial/endpoint/WeatherServiceIntegrationTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/tutorial-soap-spring-boot-cxf/HEAD/step8_logging_into_elasticstack/src/test/java/de/jonashackt/tutorial/endpoint/WeatherServiceIntegrationTest.java -------------------------------------------------------------------------------- /step8_logging_into_elasticstack/src/test/java/de/jonashackt/tutorial/endpoint/WeatherServiceSystemTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/tutorial-soap-spring-boot-cxf/HEAD/step8_logging_into_elasticstack/src/test/java/de/jonashackt/tutorial/endpoint/WeatherServiceSystemTest.java -------------------------------------------------------------------------------- /step8_logging_into_elasticstack/src/test/java/de/jonashackt/tutorial/endpoint/WeatherServiceTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/tutorial-soap-spring-boot-cxf/HEAD/step8_logging_into_elasticstack/src/test/java/de/jonashackt/tutorial/endpoint/WeatherServiceTest.java -------------------------------------------------------------------------------- /step8_logging_into_elasticstack/src/test/java/de/jonashackt/tutorial/endpoint/WeatherServiceXmlFileSystemTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/tutorial-soap-spring-boot-cxf/HEAD/step8_logging_into_elasticstack/src/test/java/de/jonashackt/tutorial/endpoint/WeatherServiceXmlFileSystemTest.java -------------------------------------------------------------------------------- /step8_logging_into_elasticstack/src/test/java/de/jonashackt/tutorial/utils/TestHelper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/tutorial-soap-spring-boot-cxf/HEAD/step8_logging_into_elasticstack/src/test/java/de/jonashackt/tutorial/utils/TestHelper.java -------------------------------------------------------------------------------- /step8_logging_into_elasticstack/src/test/java/de/jonashackt/tutorial/utils/XmlUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/tutorial-soap-spring-boot-cxf/HEAD/step8_logging_into_elasticstack/src/test/java/de/jonashackt/tutorial/utils/XmlUtils.java -------------------------------------------------------------------------------- /step8_logging_into_elasticstack/src/test/java/de/jonashackt/tutorial/utils/XmlUtilsException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/tutorial-soap-spring-boot-cxf/HEAD/step8_logging_into_elasticstack/src/test/java/de/jonashackt/tutorial/utils/XmlUtilsException.java -------------------------------------------------------------------------------- /step8_logging_into_elasticstack/src/test/resources/requests/GetCityForecastByZIPTest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/tutorial-soap-spring-boot-cxf/HEAD/step8_logging_into_elasticstack/src/test/resources/requests/GetCityForecastByZIPTest.xml -------------------------------------------------------------------------------- /step9_soap_message_logging_into_custom_elasticsearch_field/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/tutorial-soap-spring-boot-cxf/HEAD/step9_soap_message_logging_into_custom_elasticsearch_field/pom.xml -------------------------------------------------------------------------------- /step9_soap_message_logging_into_custom_elasticsearch_field/src/main/java/de/jonashackt/tutorial/SimpleBootCxfApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/tutorial-soap-spring-boot-cxf/HEAD/step9_soap_message_logging_into_custom_elasticsearch_field/src/main/java/de/jonashackt/tutorial/SimpleBootCxfApplication.java -------------------------------------------------------------------------------- /step9_soap_message_logging_into_custom_elasticsearch_field/src/main/java/de/jonashackt/tutorial/configuration/ApplicationConfiguration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/tutorial-soap-spring-boot-cxf/HEAD/step9_soap_message_logging_into_custom_elasticsearch_field/src/main/java/de/jonashackt/tutorial/configuration/ApplicationConfiguration.java -------------------------------------------------------------------------------- /step9_soap_message_logging_into_custom_elasticsearch_field/src/main/java/de/jonashackt/tutorial/configuration/WebServiceConfiguration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/tutorial-soap-spring-boot-cxf/HEAD/step9_soap_message_logging_into_custom_elasticsearch_field/src/main/java/de/jonashackt/tutorial/configuration/WebServiceConfiguration.java -------------------------------------------------------------------------------- /step9_soap_message_logging_into_custom_elasticsearch_field/src/main/java/de/jonashackt/tutorial/controller/WeatherServiceController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/tutorial-soap-spring-boot-cxf/HEAD/step9_soap_message_logging_into_custom_elasticsearch_field/src/main/java/de/jonashackt/tutorial/controller/WeatherServiceController.java -------------------------------------------------------------------------------- /step9_soap_message_logging_into_custom_elasticsearch_field/src/main/java/de/jonashackt/tutorial/endpoint/WeatherServiceEndpoint.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/tutorial-soap-spring-boot-cxf/HEAD/step9_soap_message_logging_into_custom_elasticsearch_field/src/main/java/de/jonashackt/tutorial/endpoint/WeatherServiceEndpoint.java -------------------------------------------------------------------------------- /step9_soap_message_logging_into_custom_elasticsearch_field/src/main/java/de/jonashackt/tutorial/soapmsglogging/LogCorrelationFilter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/tutorial-soap-spring-boot-cxf/HEAD/step9_soap_message_logging_into_custom_elasticsearch_field/src/main/java/de/jonashackt/tutorial/soapmsglogging/LogCorrelationFilter.java -------------------------------------------------------------------------------- /step9_soap_message_logging_into_custom_elasticsearch_field/src/main/java/de/jonashackt/tutorial/soapmsglogging/SoapMsgToMdcExtractionLoggingInInterceptor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/tutorial-soap-spring-boot-cxf/HEAD/step9_soap_message_logging_into_custom_elasticsearch_field/src/main/java/de/jonashackt/tutorial/soapmsglogging/SoapMsgToMdcExtractionLoggingInInterceptor.java -------------------------------------------------------------------------------- /step9_soap_message_logging_into_custom_elasticsearch_field/src/main/java/de/jonashackt/tutorial/soapmsglogging/SoapMsgToMdcExtractionLoggingOutInterceptor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/tutorial-soap-spring-boot-cxf/HEAD/step9_soap_message_logging_into_custom_elasticsearch_field/src/main/java/de/jonashackt/tutorial/soapmsglogging/SoapMsgToMdcExtractionLoggingOutInterceptor.java -------------------------------------------------------------------------------- /step9_soap_message_logging_into_custom_elasticsearch_field/src/main/java/de/jonashackt/tutorial/transformation/GetCityForecastByZIPOutMapper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/tutorial-soap-spring-boot-cxf/HEAD/step9_soap_message_logging_into_custom_elasticsearch_field/src/main/java/de/jonashackt/tutorial/transformation/GetCityForecastByZIPOutMapper.java -------------------------------------------------------------------------------- /step9_soap_message_logging_into_custom_elasticsearch_field/src/main/resources/META-INF/cxf/org.apache.cxf.Logger: -------------------------------------------------------------------------------- 1 | org.apache.cxf.common.logging.Slf4jLogger -------------------------------------------------------------------------------- /step9_soap_message_logging_into_custom_elasticsearch_field/src/main/resources/application.properties: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /step9_soap_message_logging_into_custom_elasticsearch_field/src/main/resources/logback-spring.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/tutorial-soap-spring-boot-cxf/HEAD/step9_soap_message_logging_into_custom_elasticsearch_field/src/main/resources/logback-spring.xml -------------------------------------------------------------------------------- /step9_soap_message_logging_into_custom_elasticsearch_field/src/main/resources/service-api-definition/Weather-Schemes/w3c-xmlmime-definition.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/tutorial-soap-spring-boot-cxf/HEAD/step9_soap_message_logging_into_custom_elasticsearch_field/src/main/resources/service-api-definition/Weather-Schemes/w3c-xmlmime-definition.xsd -------------------------------------------------------------------------------- /step9_soap_message_logging_into_custom_elasticsearch_field/src/main/resources/service-api-definition/Weather-Schemes/weather-datatypes.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/tutorial-soap-spring-boot-cxf/HEAD/step9_soap_message_logging_into_custom_elasticsearch_field/src/main/resources/service-api-definition/Weather-Schemes/weather-datatypes.xsd -------------------------------------------------------------------------------- /step9_soap_message_logging_into_custom_elasticsearch_field/src/main/resources/service-api-definition/Weather-Schemes/weather-exception.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/tutorial-soap-spring-boot-cxf/HEAD/step9_soap_message_logging_into_custom_elasticsearch_field/src/main/resources/service-api-definition/Weather-Schemes/weather-exception.xsd -------------------------------------------------------------------------------- /step9_soap_message_logging_into_custom_elasticsearch_field/src/main/resources/service-api-definition/Weather-Schemes/weather-general.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/tutorial-soap-spring-boot-cxf/HEAD/step9_soap_message_logging_into_custom_elasticsearch_field/src/main/resources/service-api-definition/Weather-Schemes/weather-general.xsd -------------------------------------------------------------------------------- /step9_soap_message_logging_into_custom_elasticsearch_field/src/main/resources/service-api-definition/Weather1.0.wsdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/tutorial-soap-spring-boot-cxf/HEAD/step9_soap_message_logging_into_custom_elasticsearch_field/src/main/resources/service-api-definition/Weather1.0.wsdl -------------------------------------------------------------------------------- /step9_soap_message_logging_into_custom_elasticsearch_field/src/main/resources/service-api-definition/Weather1.0.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/tutorial-soap-spring-boot-cxf/HEAD/step9_soap_message_logging_into_custom_elasticsearch_field/src/main/resources/service-api-definition/Weather1.0.xsd -------------------------------------------------------------------------------- /step9_soap_message_logging_into_custom_elasticsearch_field/src/test/java/de/jonashackt/tutorial/ApplicationTestConfiguration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/tutorial-soap-spring-boot-cxf/HEAD/step9_soap_message_logging_into_custom_elasticsearch_field/src/test/java/de/jonashackt/tutorial/ApplicationTestConfiguration.java -------------------------------------------------------------------------------- /step9_soap_message_logging_into_custom_elasticsearch_field/src/test/java/de/jonashackt/tutorial/SimpleBootCxfSystemTestApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/tutorial-soap-spring-boot-cxf/HEAD/step9_soap_message_logging_into_custom_elasticsearch_field/src/test/java/de/jonashackt/tutorial/SimpleBootCxfSystemTestApplication.java -------------------------------------------------------------------------------- /step9_soap_message_logging_into_custom_elasticsearch_field/src/test/java/de/jonashackt/tutorial/WebServiceIntegrationTestConfiguration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/tutorial-soap-spring-boot-cxf/HEAD/step9_soap_message_logging_into_custom_elasticsearch_field/src/test/java/de/jonashackt/tutorial/WebServiceIntegrationTestConfiguration.java -------------------------------------------------------------------------------- /step9_soap_message_logging_into_custom_elasticsearch_field/src/test/java/de/jonashackt/tutorial/WebServiceSystemTestConfiguration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/tutorial-soap-spring-boot-cxf/HEAD/step9_soap_message_logging_into_custom_elasticsearch_field/src/test/java/de/jonashackt/tutorial/WebServiceSystemTestConfiguration.java -------------------------------------------------------------------------------- /step9_soap_message_logging_into_custom_elasticsearch_field/src/test/java/de/jonashackt/tutorial/endpoint/WeatherServiceIntegrationTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/tutorial-soap-spring-boot-cxf/HEAD/step9_soap_message_logging_into_custom_elasticsearch_field/src/test/java/de/jonashackt/tutorial/endpoint/WeatherServiceIntegrationTest.java -------------------------------------------------------------------------------- /step9_soap_message_logging_into_custom_elasticsearch_field/src/test/java/de/jonashackt/tutorial/endpoint/WeatherServiceSystemTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/tutorial-soap-spring-boot-cxf/HEAD/step9_soap_message_logging_into_custom_elasticsearch_field/src/test/java/de/jonashackt/tutorial/endpoint/WeatherServiceSystemTest.java -------------------------------------------------------------------------------- /step9_soap_message_logging_into_custom_elasticsearch_field/src/test/java/de/jonashackt/tutorial/endpoint/WeatherServiceTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/tutorial-soap-spring-boot-cxf/HEAD/step9_soap_message_logging_into_custom_elasticsearch_field/src/test/java/de/jonashackt/tutorial/endpoint/WeatherServiceTest.java -------------------------------------------------------------------------------- /step9_soap_message_logging_into_custom_elasticsearch_field/src/test/java/de/jonashackt/tutorial/endpoint/WeatherServiceXmlFileSystemTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/tutorial-soap-spring-boot-cxf/HEAD/step9_soap_message_logging_into_custom_elasticsearch_field/src/test/java/de/jonashackt/tutorial/endpoint/WeatherServiceXmlFileSystemTest.java -------------------------------------------------------------------------------- /step9_soap_message_logging_into_custom_elasticsearch_field/src/test/java/de/jonashackt/tutorial/utils/TestHelper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/tutorial-soap-spring-boot-cxf/HEAD/step9_soap_message_logging_into_custom_elasticsearch_field/src/test/java/de/jonashackt/tutorial/utils/TestHelper.java -------------------------------------------------------------------------------- /step9_soap_message_logging_into_custom_elasticsearch_field/src/test/java/de/jonashackt/tutorial/utils/XmlUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/tutorial-soap-spring-boot-cxf/HEAD/step9_soap_message_logging_into_custom_elasticsearch_field/src/test/java/de/jonashackt/tutorial/utils/XmlUtils.java -------------------------------------------------------------------------------- /step9_soap_message_logging_into_custom_elasticsearch_field/src/test/java/de/jonashackt/tutorial/utils/XmlUtilsException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/tutorial-soap-spring-boot-cxf/HEAD/step9_soap_message_logging_into_custom_elasticsearch_field/src/test/java/de/jonashackt/tutorial/utils/XmlUtilsException.java -------------------------------------------------------------------------------- /step9_soap_message_logging_into_custom_elasticsearch_field/src/test/resources/requests/GetCityForecastByZIPTest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/tutorial-soap-spring-boot-cxf/HEAD/step9_soap_message_logging_into_custom_elasticsearch_field/src/test/resources/requests/GetCityForecastByZIPTest.xml --------------------------------------------------------------------------------