├── .gitignore ├── LICENSE ├── README.md ├── RestWithCXF ├── .classpath ├── .project ├── .settings │ ├── .jsdtscope │ ├── org.eclipse.jdt.core.prefs │ ├── org.eclipse.wst.common.component │ ├── org.eclipse.wst.common.project.facet.core.xml │ ├── org.eclipse.wst.jsdt.ui.superType.container │ └── org.eclipse.wst.jsdt.ui.superType.name ├── README ├── WebContent │ ├── META-INF │ │ └── MANIFEST.MF │ └── WEB-INF │ │ └── web.xml ├── build │ └── classes │ │ └── com │ │ └── example │ │ └── rest │ │ └── cxf.xml └── src │ └── com │ └── example │ └── rest │ ├── Order.java │ ├── OrderInfo.java │ ├── OrderInfoImpl.java │ ├── OrderList.java │ └── cxf.xml ├── SO-handshake-exception-in-java-webservice-client ├── .gitignore ├── README.txt ├── pom.xml └── src │ └── main │ ├── config │ ├── KeyREADME.txt │ ├── clientKeystore.jks │ ├── hello_world.wsdl │ └── serviceKeystore.jks │ ├── java │ └── demo │ │ └── hw_https │ │ ├── client │ │ ├── Client.java │ │ └── ClientNonSpring.java │ │ └── server │ │ ├── GreeterImpl.java │ │ └── Server.java │ └── resources │ ├── InsecureClient.xml │ ├── SecureClient.xml │ └── ServerConfig.xml ├── SO-how-get-xml-responce-using-jax-ws-soap-handler ├── .gitignore ├── pom.xml └── src │ └── main │ ├── java │ ├── com │ │ └── db │ │ │ └── crds │ │ │ └── ws │ │ │ └── service │ │ │ └── LoggingHandler.java │ └── org │ │ └── dpytel │ │ └── jaxws │ │ └── jaxws_java_first_jboss │ │ ├── Hello.java │ │ ├── HelloResponse.java │ │ ├── MyWebService.java │ │ ├── MyWebServiceImplService.java │ │ ├── ObjectFactory.java │ │ ├── client │ │ └── Main.java │ │ └── package-info.java │ └── resources │ └── handlers.xml ├── SO-how-to-add-soap-security-header-usernametoken-information-to-code-first-webser ├── .gitignore ├── README.txt ├── pom.xml └── src │ └── main │ ├── java │ ├── demo │ │ └── wssec │ │ │ ├── client │ │ │ ├── Client.java │ │ │ └── UTPasswordCallback.java │ │ │ ├── common │ │ │ └── ConciseFormatter.java │ │ │ └── server │ │ │ ├── GreeterImpl.java │ │ │ ├── Server.java │ │ │ └── UTPasswordCallback.java │ └── org │ │ └── apache │ │ └── cxf │ │ └── hello_world_soap_http │ │ ├── Greeter.java │ │ ├── GreeterService.java │ │ └── types │ │ ├── GreetMe.java │ │ ├── GreetMeOneWay.java │ │ ├── GreetMeResponse.java │ │ ├── ObjectFactory.java │ │ ├── SayHi.java │ │ ├── SayHiResponse.java │ │ └── package-info.java │ └── resources │ ├── hello_world_wssec.wsdl │ ├── server-applicationContext.xml │ ├── ut.policy.xml │ └── wssec.xml ├── SO-jaxb-marshalling-with-custom-annotations ├── .gitignore ├── pom.xml └── src │ ├── main │ └── java │ │ └── org │ │ └── dpytel │ │ └── jaxb │ │ └── versioning │ │ ├── Configuration.java │ │ ├── CustomVersion.java │ │ ├── RootElement.java │ │ ├── SomeBean.java │ │ └── VersioningAdapter.java │ └── test │ └── java │ └── org │ └── dpytel │ └── jaxb │ └── versioning │ └── CustomVersionTest.java ├── camel-cxf-contract-first ├── .gitignore ├── pom.xml └── src │ └── main │ ├── java │ └── org │ │ └── dpytel │ │ └── servicemix │ │ └── camel │ │ └── MyCustomHandler.java │ └── resources │ ├── META-INF │ └── spring │ │ ├── camel-cxf.xml │ │ └── camel-route.xml │ ├── log4j.properties │ └── wsdl │ └── person.wsdl └── xjc-nullablenillable ├── .gitignore ├── LICENSE ├── README.md ├── pom.xml └── src ├── main ├── java │ ├── com │ │ └── sun │ │ │ └── tools │ │ │ └── xjc │ │ │ └── addon │ │ │ └── dpytel │ │ │ └── nullablenillable │ │ │ └── NullableNillablePlugin.java │ └── org │ │ └── dpytel │ │ └── jaxb │ │ └── xjc │ │ └── nullablenillable │ │ └── NullableNillablePlugin.java └── resources │ └── META-INF │ └── services │ └── com.sun.tools.xjc.Plugin └── test ├── java └── org │ └── dpytel │ └── jaxb │ └── xjc │ └── nullablenillable │ └── NullableNillableTest.java └── resources └── nullablenillable.xsd /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abbasikov/SO-answers/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abbasikov/SO-answers/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abbasikov/SO-answers/HEAD/README.md -------------------------------------------------------------------------------- /RestWithCXF/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abbasikov/SO-answers/HEAD/RestWithCXF/.classpath -------------------------------------------------------------------------------- /RestWithCXF/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abbasikov/SO-answers/HEAD/RestWithCXF/.project -------------------------------------------------------------------------------- /RestWithCXF/.settings/.jsdtscope: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abbasikov/SO-answers/HEAD/RestWithCXF/.settings/.jsdtscope -------------------------------------------------------------------------------- /RestWithCXF/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abbasikov/SO-answers/HEAD/RestWithCXF/.settings/org.eclipse.jdt.core.prefs -------------------------------------------------------------------------------- /RestWithCXF/.settings/org.eclipse.wst.common.component: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abbasikov/SO-answers/HEAD/RestWithCXF/.settings/org.eclipse.wst.common.component -------------------------------------------------------------------------------- /RestWithCXF/.settings/org.eclipse.wst.common.project.facet.core.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abbasikov/SO-answers/HEAD/RestWithCXF/.settings/org.eclipse.wst.common.project.facet.core.xml -------------------------------------------------------------------------------- /RestWithCXF/.settings/org.eclipse.wst.jsdt.ui.superType.container: -------------------------------------------------------------------------------- 1 | org.eclipse.wst.jsdt.launching.baseBrowserLibrary -------------------------------------------------------------------------------- /RestWithCXF/.settings/org.eclipse.wst.jsdt.ui.superType.name: -------------------------------------------------------------------------------- 1 | Window -------------------------------------------------------------------------------- /RestWithCXF/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abbasikov/SO-answers/HEAD/RestWithCXF/README -------------------------------------------------------------------------------- /RestWithCXF/WebContent/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Class-Path: 3 | 4 | -------------------------------------------------------------------------------- /RestWithCXF/WebContent/WEB-INF/web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abbasikov/SO-answers/HEAD/RestWithCXF/WebContent/WEB-INF/web.xml -------------------------------------------------------------------------------- /RestWithCXF/build/classes/com/example/rest/cxf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abbasikov/SO-answers/HEAD/RestWithCXF/build/classes/com/example/rest/cxf.xml -------------------------------------------------------------------------------- /RestWithCXF/src/com/example/rest/Order.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abbasikov/SO-answers/HEAD/RestWithCXF/src/com/example/rest/Order.java -------------------------------------------------------------------------------- /RestWithCXF/src/com/example/rest/OrderInfo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abbasikov/SO-answers/HEAD/RestWithCXF/src/com/example/rest/OrderInfo.java -------------------------------------------------------------------------------- /RestWithCXF/src/com/example/rest/OrderInfoImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abbasikov/SO-answers/HEAD/RestWithCXF/src/com/example/rest/OrderInfoImpl.java -------------------------------------------------------------------------------- /RestWithCXF/src/com/example/rest/OrderList.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abbasikov/SO-answers/HEAD/RestWithCXF/src/com/example/rest/OrderList.java -------------------------------------------------------------------------------- /RestWithCXF/src/com/example/rest/cxf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abbasikov/SO-answers/HEAD/RestWithCXF/src/com/example/rest/cxf.xml -------------------------------------------------------------------------------- /SO-handshake-exception-in-java-webservice-client/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abbasikov/SO-answers/HEAD/SO-handshake-exception-in-java-webservice-client/.gitignore -------------------------------------------------------------------------------- /SO-handshake-exception-in-java-webservice-client/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abbasikov/SO-answers/HEAD/SO-handshake-exception-in-java-webservice-client/README.txt -------------------------------------------------------------------------------- /SO-handshake-exception-in-java-webservice-client/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abbasikov/SO-answers/HEAD/SO-handshake-exception-in-java-webservice-client/pom.xml -------------------------------------------------------------------------------- /SO-handshake-exception-in-java-webservice-client/src/main/config/KeyREADME.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abbasikov/SO-answers/HEAD/SO-handshake-exception-in-java-webservice-client/src/main/config/KeyREADME.txt -------------------------------------------------------------------------------- /SO-handshake-exception-in-java-webservice-client/src/main/config/clientKeystore.jks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abbasikov/SO-answers/HEAD/SO-handshake-exception-in-java-webservice-client/src/main/config/clientKeystore.jks -------------------------------------------------------------------------------- /SO-handshake-exception-in-java-webservice-client/src/main/config/hello_world.wsdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abbasikov/SO-answers/HEAD/SO-handshake-exception-in-java-webservice-client/src/main/config/hello_world.wsdl -------------------------------------------------------------------------------- /SO-handshake-exception-in-java-webservice-client/src/main/config/serviceKeystore.jks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abbasikov/SO-answers/HEAD/SO-handshake-exception-in-java-webservice-client/src/main/config/serviceKeystore.jks -------------------------------------------------------------------------------- /SO-handshake-exception-in-java-webservice-client/src/main/java/demo/hw_https/client/Client.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abbasikov/SO-answers/HEAD/SO-handshake-exception-in-java-webservice-client/src/main/java/demo/hw_https/client/Client.java -------------------------------------------------------------------------------- /SO-handshake-exception-in-java-webservice-client/src/main/java/demo/hw_https/client/ClientNonSpring.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abbasikov/SO-answers/HEAD/SO-handshake-exception-in-java-webservice-client/src/main/java/demo/hw_https/client/ClientNonSpring.java -------------------------------------------------------------------------------- /SO-handshake-exception-in-java-webservice-client/src/main/java/demo/hw_https/server/GreeterImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abbasikov/SO-answers/HEAD/SO-handshake-exception-in-java-webservice-client/src/main/java/demo/hw_https/server/GreeterImpl.java -------------------------------------------------------------------------------- /SO-handshake-exception-in-java-webservice-client/src/main/java/demo/hw_https/server/Server.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abbasikov/SO-answers/HEAD/SO-handshake-exception-in-java-webservice-client/src/main/java/demo/hw_https/server/Server.java -------------------------------------------------------------------------------- /SO-handshake-exception-in-java-webservice-client/src/main/resources/InsecureClient.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abbasikov/SO-answers/HEAD/SO-handshake-exception-in-java-webservice-client/src/main/resources/InsecureClient.xml -------------------------------------------------------------------------------- /SO-handshake-exception-in-java-webservice-client/src/main/resources/SecureClient.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abbasikov/SO-answers/HEAD/SO-handshake-exception-in-java-webservice-client/src/main/resources/SecureClient.xml -------------------------------------------------------------------------------- /SO-handshake-exception-in-java-webservice-client/src/main/resources/ServerConfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abbasikov/SO-answers/HEAD/SO-handshake-exception-in-java-webservice-client/src/main/resources/ServerConfig.xml -------------------------------------------------------------------------------- /SO-how-get-xml-responce-using-jax-ws-soap-handler/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abbasikov/SO-answers/HEAD/SO-how-get-xml-responce-using-jax-ws-soap-handler/.gitignore -------------------------------------------------------------------------------- /SO-how-get-xml-responce-using-jax-ws-soap-handler/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abbasikov/SO-answers/HEAD/SO-how-get-xml-responce-using-jax-ws-soap-handler/pom.xml -------------------------------------------------------------------------------- /SO-how-get-xml-responce-using-jax-ws-soap-handler/src/main/java/com/db/crds/ws/service/LoggingHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abbasikov/SO-answers/HEAD/SO-how-get-xml-responce-using-jax-ws-soap-handler/src/main/java/com/db/crds/ws/service/LoggingHandler.java -------------------------------------------------------------------------------- /SO-how-get-xml-responce-using-jax-ws-soap-handler/src/main/java/org/dpytel/jaxws/jaxws_java_first_jboss/Hello.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abbasikov/SO-answers/HEAD/SO-how-get-xml-responce-using-jax-ws-soap-handler/src/main/java/org/dpytel/jaxws/jaxws_java_first_jboss/Hello.java -------------------------------------------------------------------------------- /SO-how-get-xml-responce-using-jax-ws-soap-handler/src/main/java/org/dpytel/jaxws/jaxws_java_first_jboss/HelloResponse.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abbasikov/SO-answers/HEAD/SO-how-get-xml-responce-using-jax-ws-soap-handler/src/main/java/org/dpytel/jaxws/jaxws_java_first_jboss/HelloResponse.java -------------------------------------------------------------------------------- /SO-how-get-xml-responce-using-jax-ws-soap-handler/src/main/java/org/dpytel/jaxws/jaxws_java_first_jboss/MyWebService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abbasikov/SO-answers/HEAD/SO-how-get-xml-responce-using-jax-ws-soap-handler/src/main/java/org/dpytel/jaxws/jaxws_java_first_jboss/MyWebService.java -------------------------------------------------------------------------------- /SO-how-get-xml-responce-using-jax-ws-soap-handler/src/main/java/org/dpytel/jaxws/jaxws_java_first_jboss/MyWebServiceImplService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abbasikov/SO-answers/HEAD/SO-how-get-xml-responce-using-jax-ws-soap-handler/src/main/java/org/dpytel/jaxws/jaxws_java_first_jboss/MyWebServiceImplService.java -------------------------------------------------------------------------------- /SO-how-get-xml-responce-using-jax-ws-soap-handler/src/main/java/org/dpytel/jaxws/jaxws_java_first_jboss/ObjectFactory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abbasikov/SO-answers/HEAD/SO-how-get-xml-responce-using-jax-ws-soap-handler/src/main/java/org/dpytel/jaxws/jaxws_java_first_jboss/ObjectFactory.java -------------------------------------------------------------------------------- /SO-how-get-xml-responce-using-jax-ws-soap-handler/src/main/java/org/dpytel/jaxws/jaxws_java_first_jboss/client/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abbasikov/SO-answers/HEAD/SO-how-get-xml-responce-using-jax-ws-soap-handler/src/main/java/org/dpytel/jaxws/jaxws_java_first_jboss/client/Main.java -------------------------------------------------------------------------------- /SO-how-get-xml-responce-using-jax-ws-soap-handler/src/main/java/org/dpytel/jaxws/jaxws_java_first_jboss/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abbasikov/SO-answers/HEAD/SO-how-get-xml-responce-using-jax-ws-soap-handler/src/main/java/org/dpytel/jaxws/jaxws_java_first_jboss/package-info.java -------------------------------------------------------------------------------- /SO-how-get-xml-responce-using-jax-ws-soap-handler/src/main/resources/handlers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abbasikov/SO-answers/HEAD/SO-how-get-xml-responce-using-jax-ws-soap-handler/src/main/resources/handlers.xml -------------------------------------------------------------------------------- /SO-how-to-add-soap-security-header-usernametoken-information-to-code-first-webser/.gitignore: -------------------------------------------------------------------------------- 1 | /.settings 2 | /target 3 | /.classpath 4 | /.project 5 | -------------------------------------------------------------------------------- /SO-how-to-add-soap-security-header-usernametoken-information-to-code-first-webser/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abbasikov/SO-answers/HEAD/SO-how-to-add-soap-security-header-usernametoken-information-to-code-first-webser/README.txt -------------------------------------------------------------------------------- /SO-how-to-add-soap-security-header-usernametoken-information-to-code-first-webser/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abbasikov/SO-answers/HEAD/SO-how-to-add-soap-security-header-usernametoken-information-to-code-first-webser/pom.xml -------------------------------------------------------------------------------- /SO-how-to-add-soap-security-header-usernametoken-information-to-code-first-webser/src/main/java/demo/wssec/client/Client.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abbasikov/SO-answers/HEAD/SO-how-to-add-soap-security-header-usernametoken-information-to-code-first-webser/src/main/java/demo/wssec/client/Client.java -------------------------------------------------------------------------------- /SO-how-to-add-soap-security-header-usernametoken-information-to-code-first-webser/src/main/java/demo/wssec/client/UTPasswordCallback.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abbasikov/SO-answers/HEAD/SO-how-to-add-soap-security-header-usernametoken-information-to-code-first-webser/src/main/java/demo/wssec/client/UTPasswordCallback.java -------------------------------------------------------------------------------- /SO-how-to-add-soap-security-header-usernametoken-information-to-code-first-webser/src/main/java/demo/wssec/common/ConciseFormatter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abbasikov/SO-answers/HEAD/SO-how-to-add-soap-security-header-usernametoken-information-to-code-first-webser/src/main/java/demo/wssec/common/ConciseFormatter.java -------------------------------------------------------------------------------- /SO-how-to-add-soap-security-header-usernametoken-information-to-code-first-webser/src/main/java/demo/wssec/server/GreeterImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abbasikov/SO-answers/HEAD/SO-how-to-add-soap-security-header-usernametoken-information-to-code-first-webser/src/main/java/demo/wssec/server/GreeterImpl.java -------------------------------------------------------------------------------- /SO-how-to-add-soap-security-header-usernametoken-information-to-code-first-webser/src/main/java/demo/wssec/server/Server.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abbasikov/SO-answers/HEAD/SO-how-to-add-soap-security-header-usernametoken-information-to-code-first-webser/src/main/java/demo/wssec/server/Server.java -------------------------------------------------------------------------------- /SO-how-to-add-soap-security-header-usernametoken-information-to-code-first-webser/src/main/java/demo/wssec/server/UTPasswordCallback.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abbasikov/SO-answers/HEAD/SO-how-to-add-soap-security-header-usernametoken-information-to-code-first-webser/src/main/java/demo/wssec/server/UTPasswordCallback.java -------------------------------------------------------------------------------- /SO-how-to-add-soap-security-header-usernametoken-information-to-code-first-webser/src/main/java/org/apache/cxf/hello_world_soap_http/Greeter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abbasikov/SO-answers/HEAD/SO-how-to-add-soap-security-header-usernametoken-information-to-code-first-webser/src/main/java/org/apache/cxf/hello_world_soap_http/Greeter.java -------------------------------------------------------------------------------- /SO-how-to-add-soap-security-header-usernametoken-information-to-code-first-webser/src/main/java/org/apache/cxf/hello_world_soap_http/GreeterService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abbasikov/SO-answers/HEAD/SO-how-to-add-soap-security-header-usernametoken-information-to-code-first-webser/src/main/java/org/apache/cxf/hello_world_soap_http/GreeterService.java -------------------------------------------------------------------------------- /SO-how-to-add-soap-security-header-usernametoken-information-to-code-first-webser/src/main/java/org/apache/cxf/hello_world_soap_http/types/GreetMe.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abbasikov/SO-answers/HEAD/SO-how-to-add-soap-security-header-usernametoken-information-to-code-first-webser/src/main/java/org/apache/cxf/hello_world_soap_http/types/GreetMe.java -------------------------------------------------------------------------------- /SO-how-to-add-soap-security-header-usernametoken-information-to-code-first-webser/src/main/java/org/apache/cxf/hello_world_soap_http/types/GreetMeOneWay.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abbasikov/SO-answers/HEAD/SO-how-to-add-soap-security-header-usernametoken-information-to-code-first-webser/src/main/java/org/apache/cxf/hello_world_soap_http/types/GreetMeOneWay.java -------------------------------------------------------------------------------- /SO-how-to-add-soap-security-header-usernametoken-information-to-code-first-webser/src/main/java/org/apache/cxf/hello_world_soap_http/types/GreetMeResponse.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abbasikov/SO-answers/HEAD/SO-how-to-add-soap-security-header-usernametoken-information-to-code-first-webser/src/main/java/org/apache/cxf/hello_world_soap_http/types/GreetMeResponse.java -------------------------------------------------------------------------------- /SO-how-to-add-soap-security-header-usernametoken-information-to-code-first-webser/src/main/java/org/apache/cxf/hello_world_soap_http/types/ObjectFactory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abbasikov/SO-answers/HEAD/SO-how-to-add-soap-security-header-usernametoken-information-to-code-first-webser/src/main/java/org/apache/cxf/hello_world_soap_http/types/ObjectFactory.java -------------------------------------------------------------------------------- /SO-how-to-add-soap-security-header-usernametoken-information-to-code-first-webser/src/main/java/org/apache/cxf/hello_world_soap_http/types/SayHi.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abbasikov/SO-answers/HEAD/SO-how-to-add-soap-security-header-usernametoken-information-to-code-first-webser/src/main/java/org/apache/cxf/hello_world_soap_http/types/SayHi.java -------------------------------------------------------------------------------- /SO-how-to-add-soap-security-header-usernametoken-information-to-code-first-webser/src/main/java/org/apache/cxf/hello_world_soap_http/types/SayHiResponse.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abbasikov/SO-answers/HEAD/SO-how-to-add-soap-security-header-usernametoken-information-to-code-first-webser/src/main/java/org/apache/cxf/hello_world_soap_http/types/SayHiResponse.java -------------------------------------------------------------------------------- /SO-how-to-add-soap-security-header-usernametoken-information-to-code-first-webser/src/main/java/org/apache/cxf/hello_world_soap_http/types/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abbasikov/SO-answers/HEAD/SO-how-to-add-soap-security-header-usernametoken-information-to-code-first-webser/src/main/java/org/apache/cxf/hello_world_soap_http/types/package-info.java -------------------------------------------------------------------------------- /SO-how-to-add-soap-security-header-usernametoken-information-to-code-first-webser/src/main/resources/hello_world_wssec.wsdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abbasikov/SO-answers/HEAD/SO-how-to-add-soap-security-header-usernametoken-information-to-code-first-webser/src/main/resources/hello_world_wssec.wsdl -------------------------------------------------------------------------------- /SO-how-to-add-soap-security-header-usernametoken-information-to-code-first-webser/src/main/resources/server-applicationContext.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abbasikov/SO-answers/HEAD/SO-how-to-add-soap-security-header-usernametoken-information-to-code-first-webser/src/main/resources/server-applicationContext.xml -------------------------------------------------------------------------------- /SO-how-to-add-soap-security-header-usernametoken-information-to-code-first-webser/src/main/resources/ut.policy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abbasikov/SO-answers/HEAD/SO-how-to-add-soap-security-header-usernametoken-information-to-code-first-webser/src/main/resources/ut.policy.xml -------------------------------------------------------------------------------- /SO-how-to-add-soap-security-header-usernametoken-information-to-code-first-webser/src/main/resources/wssec.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abbasikov/SO-answers/HEAD/SO-how-to-add-soap-security-header-usernametoken-information-to-code-first-webser/src/main/resources/wssec.xml -------------------------------------------------------------------------------- /SO-jaxb-marshalling-with-custom-annotations/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abbasikov/SO-answers/HEAD/SO-jaxb-marshalling-with-custom-annotations/.gitignore -------------------------------------------------------------------------------- /SO-jaxb-marshalling-with-custom-annotations/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abbasikov/SO-answers/HEAD/SO-jaxb-marshalling-with-custom-annotations/pom.xml -------------------------------------------------------------------------------- /SO-jaxb-marshalling-with-custom-annotations/src/main/java/org/dpytel/jaxb/versioning/Configuration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abbasikov/SO-answers/HEAD/SO-jaxb-marshalling-with-custom-annotations/src/main/java/org/dpytel/jaxb/versioning/Configuration.java -------------------------------------------------------------------------------- /SO-jaxb-marshalling-with-custom-annotations/src/main/java/org/dpytel/jaxb/versioning/CustomVersion.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abbasikov/SO-answers/HEAD/SO-jaxb-marshalling-with-custom-annotations/src/main/java/org/dpytel/jaxb/versioning/CustomVersion.java -------------------------------------------------------------------------------- /SO-jaxb-marshalling-with-custom-annotations/src/main/java/org/dpytel/jaxb/versioning/RootElement.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abbasikov/SO-answers/HEAD/SO-jaxb-marshalling-with-custom-annotations/src/main/java/org/dpytel/jaxb/versioning/RootElement.java -------------------------------------------------------------------------------- /SO-jaxb-marshalling-with-custom-annotations/src/main/java/org/dpytel/jaxb/versioning/SomeBean.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abbasikov/SO-answers/HEAD/SO-jaxb-marshalling-with-custom-annotations/src/main/java/org/dpytel/jaxb/versioning/SomeBean.java -------------------------------------------------------------------------------- /SO-jaxb-marshalling-with-custom-annotations/src/main/java/org/dpytel/jaxb/versioning/VersioningAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abbasikov/SO-answers/HEAD/SO-jaxb-marshalling-with-custom-annotations/src/main/java/org/dpytel/jaxb/versioning/VersioningAdapter.java -------------------------------------------------------------------------------- /SO-jaxb-marshalling-with-custom-annotations/src/test/java/org/dpytel/jaxb/versioning/CustomVersionTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abbasikov/SO-answers/HEAD/SO-jaxb-marshalling-with-custom-annotations/src/test/java/org/dpytel/jaxb/versioning/CustomVersionTest.java -------------------------------------------------------------------------------- /camel-cxf-contract-first/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abbasikov/SO-answers/HEAD/camel-cxf-contract-first/.gitignore -------------------------------------------------------------------------------- /camel-cxf-contract-first/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abbasikov/SO-answers/HEAD/camel-cxf-contract-first/pom.xml -------------------------------------------------------------------------------- /camel-cxf-contract-first/src/main/java/org/dpytel/servicemix/camel/MyCustomHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abbasikov/SO-answers/HEAD/camel-cxf-contract-first/src/main/java/org/dpytel/servicemix/camel/MyCustomHandler.java -------------------------------------------------------------------------------- /camel-cxf-contract-first/src/main/resources/META-INF/spring/camel-cxf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abbasikov/SO-answers/HEAD/camel-cxf-contract-first/src/main/resources/META-INF/spring/camel-cxf.xml -------------------------------------------------------------------------------- /camel-cxf-contract-first/src/main/resources/META-INF/spring/camel-route.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abbasikov/SO-answers/HEAD/camel-cxf-contract-first/src/main/resources/META-INF/spring/camel-route.xml -------------------------------------------------------------------------------- /camel-cxf-contract-first/src/main/resources/log4j.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abbasikov/SO-answers/HEAD/camel-cxf-contract-first/src/main/resources/log4j.properties -------------------------------------------------------------------------------- /camel-cxf-contract-first/src/main/resources/wsdl/person.wsdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abbasikov/SO-answers/HEAD/camel-cxf-contract-first/src/main/resources/wsdl/person.wsdl -------------------------------------------------------------------------------- /xjc-nullablenillable/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abbasikov/SO-answers/HEAD/xjc-nullablenillable/.gitignore -------------------------------------------------------------------------------- /xjc-nullablenillable/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abbasikov/SO-answers/HEAD/xjc-nullablenillable/LICENSE -------------------------------------------------------------------------------- /xjc-nullablenillable/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abbasikov/SO-answers/HEAD/xjc-nullablenillable/README.md -------------------------------------------------------------------------------- /xjc-nullablenillable/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abbasikov/SO-answers/HEAD/xjc-nullablenillable/pom.xml -------------------------------------------------------------------------------- /xjc-nullablenillable/src/main/java/com/sun/tools/xjc/addon/dpytel/nullablenillable/NullableNillablePlugin.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abbasikov/SO-answers/HEAD/xjc-nullablenillable/src/main/java/com/sun/tools/xjc/addon/dpytel/nullablenillable/NullableNillablePlugin.java -------------------------------------------------------------------------------- /xjc-nullablenillable/src/main/java/org/dpytel/jaxb/xjc/nullablenillable/NullableNillablePlugin.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abbasikov/SO-answers/HEAD/xjc-nullablenillable/src/main/java/org/dpytel/jaxb/xjc/nullablenillable/NullableNillablePlugin.java -------------------------------------------------------------------------------- /xjc-nullablenillable/src/main/resources/META-INF/services/com.sun.tools.xjc.Plugin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abbasikov/SO-answers/HEAD/xjc-nullablenillable/src/main/resources/META-INF/services/com.sun.tools.xjc.Plugin -------------------------------------------------------------------------------- /xjc-nullablenillable/src/test/java/org/dpytel/jaxb/xjc/nullablenillable/NullableNillableTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abbasikov/SO-answers/HEAD/xjc-nullablenillable/src/test/java/org/dpytel/jaxb/xjc/nullablenillable/NullableNillableTest.java -------------------------------------------------------------------------------- /xjc-nullablenillable/src/test/resources/nullablenillable.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abbasikov/SO-answers/HEAD/xjc-nullablenillable/src/test/resources/nullablenillable.xsd --------------------------------------------------------------------------------