├── .gitattributes ├── .gitignore ├── .travis.yml ├── LICENSE ├── pom.xml ├── readme.md └── src ├── changes └── changes.xml ├── config ├── checkstyle │ └── checkstyle-rules.xml ├── findbugs │ └── findbugs-exclude.xml └── pmd │ └── pmd-rules.xml ├── docs └── diagrams │ └── web_service_structure.uxf ├── main ├── java │ └── com │ │ └── bernardomg │ │ └── example │ │ └── swss │ │ ├── auth │ │ ├── model │ │ │ ├── PersistentGrantedAuthority.java │ │ │ ├── PersistentUserDetails.java │ │ │ └── package-info.java │ │ ├── repository │ │ │ ├── PersistentUserDetailsRepository.java │ │ │ └── package-info.java │ │ └── service │ │ │ ├── PersistentUserDetailsService.java │ │ │ └── package-info.java │ │ ├── client │ │ ├── DefaultEntityClient.java │ │ ├── EntityClient.java │ │ ├── console │ │ │ ├── ConsoleClient.java │ │ │ └── package-info.java │ │ └── package-info.java │ │ ├── endpoint │ │ ├── ExampleEntityEndpoint.java │ │ ├── ExampleEntityEndpointConstants.java │ │ └── package-info.java │ │ ├── model │ │ ├── DefaultExampleEntity.java │ │ ├── ExampleEntity.java │ │ └── package-info.java │ │ ├── repository │ │ ├── ExampleEntityRepository.java │ │ └── package-info.java │ │ └── service │ │ └── domain │ │ ├── ExampleEntityService.java │ │ ├── RepositoryExampleEntityService.java │ │ └── package-info.java ├── resources │ ├── config │ │ ├── client │ │ │ ├── client.properties │ │ │ ├── encryption │ │ │ │ └── xwss │ │ │ │ │ └── client-encryption-xwss.properties │ │ │ ├── password │ │ │ │ ├── digest │ │ │ │ │ └── xwss │ │ │ │ │ │ └── client-password-digest-xwss.properties │ │ │ │ └── plain │ │ │ │ │ └── xwss │ │ │ │ │ └── client-password-plain-xwss.properties │ │ │ └── signature │ │ │ │ └── xwss │ │ │ │ └── client-signature-xwss.properties │ │ ├── endpoint │ │ │ ├── encryption │ │ │ │ ├── wss4j │ │ │ │ │ └── endpoint-encryption-wss4j.properties │ │ │ │ └── xwss │ │ │ │ │ └── endpoint-encryption-xwss.properties │ │ │ ├── endpoint-unsecure.properties │ │ │ ├── endpoint.properties │ │ │ ├── password │ │ │ │ ├── digest │ │ │ │ │ ├── wss4j │ │ │ │ │ │ └── endpoint-password-digest-wss4j.properties │ │ │ │ │ └── xwss │ │ │ │ │ │ └── endpoint-password-digest-xwss.properties │ │ │ │ └── plain │ │ │ │ │ ├── wss4j │ │ │ │ │ └── endpoint-password-plain-wss4j.properties │ │ │ │ │ └── xwss │ │ │ │ │ └── endpoint-password-plain-xwss.properties │ │ │ └── signature │ │ │ │ ├── wss4j │ │ │ │ └── endpoint-signature-wss4j.properties │ │ │ │ └── xwss │ │ │ │ └── endpoint-signature-xwss.properties │ │ ├── interceptor │ │ │ ├── encryption │ │ │ │ ├── wss4j │ │ │ │ │ └── interceptor-encryption-wss4j.properties │ │ │ │ └── xwss │ │ │ │ │ └── interceptor-encryption-xwss.properties │ │ │ ├── password │ │ │ │ ├── digest │ │ │ │ │ ├── wss4j │ │ │ │ │ │ └── interceptor-password-digest-wss4j.properties │ │ │ │ │ └── xwss │ │ │ │ │ │ └── interceptor-password-digest-xwss.properties │ │ │ │ └── plain │ │ │ │ │ ├── wss4j │ │ │ │ │ └── interceptor-password-plain-wss4j.properties │ │ │ │ │ └── xwss │ │ │ │ │ └── interceptor-password-plain-xwss.properties │ │ │ └── signature │ │ │ │ ├── wss4j │ │ │ │ └── interceptor-signature-wss4j.properties │ │ │ │ └── xwss │ │ │ │ └── interceptor-signature-xwss.properties │ │ ├── keystore │ │ │ ├── keystore-wss4j.properties │ │ │ ├── keystore.properties │ │ │ └── keystore2.properties │ │ └── persistence.properties │ ├── context │ │ ├── client │ │ │ ├── client-unsecure.xml │ │ │ ├── client.xml │ │ │ ├── encryption │ │ │ │ ├── wss4j │ │ │ │ │ └── client-encryption-wss4j.xml │ │ │ │ └── xwss │ │ │ │ │ └── client-encryption-xwss.xml │ │ │ ├── password │ │ │ │ ├── digest │ │ │ │ │ ├── wss4j │ │ │ │ │ │ └── client-password-digest-wss4j.xml │ │ │ │ │ └── xwss │ │ │ │ │ │ └── client-password-digest-xwss.xml │ │ │ │ └── plain │ │ │ │ │ ├── wss4j │ │ │ │ │ └── client-password-plain-wss4j.xml │ │ │ │ │ └── xwss │ │ │ │ │ └── client-password-plain-xwss.xml │ │ │ └── signature │ │ │ │ ├── wss4j │ │ │ │ └── client-signature-wss4j.xml │ │ │ │ └── xwss │ │ │ │ └── client-signature-xwss.xml │ │ ├── endpoint │ │ │ ├── encryption │ │ │ │ ├── wss4j │ │ │ │ │ └── endpoint-encryption-wss4j.xml │ │ │ │ └── xwss │ │ │ │ │ └── endpoint-encryption-xwss.xml │ │ │ ├── endpoint-unsecure.xml │ │ │ ├── endpoint.xml │ │ │ ├── password │ │ │ │ ├── digest │ │ │ │ │ ├── wss4j │ │ │ │ │ │ └── endpoint-password-digest-wss4j.xml │ │ │ │ │ └── xwss │ │ │ │ │ │ └── endpoint-password-digest-xwss.xml │ │ │ │ └── plain │ │ │ │ │ ├── wss4j │ │ │ │ │ └── endpoint-password-plain-wss4j.xml │ │ │ │ │ └── xwss │ │ │ │ │ └── endpoint-password-plain-xwss.xml │ │ │ ├── signature │ │ │ │ ├── wss4j │ │ │ │ │ └── endpoint-signature-wss4j.xml │ │ │ │ └── xwss │ │ │ │ │ └── endpoint-signature-xwss.xml │ │ │ └── wsdl.xml │ │ ├── interceptor │ │ │ ├── encryption │ │ │ │ ├── wss4j │ │ │ │ │ └── interceptor-encryption-wss4j.xml │ │ │ │ └── xwss │ │ │ │ │ └── interceptor-encryption-xwss.xml │ │ │ ├── password │ │ │ │ ├── digest │ │ │ │ │ ├── wss4j │ │ │ │ │ │ └── interceptor-password-digest-wss4j.xml │ │ │ │ │ └── xwss │ │ │ │ │ │ └── interceptor-password-digest-xwss.xml │ │ │ │ └── plain │ │ │ │ │ ├── wss4j │ │ │ │ │ └── interceptor-password-plain-wss4j.xml │ │ │ │ │ └── xwss │ │ │ │ │ └── interceptor-password-plain-xwss.xml │ │ │ └── signature │ │ │ │ ├── wss4j │ │ │ │ └── interceptor-signature-wss4j.xml │ │ │ │ └── xwss │ │ │ │ └── interceptor-signature-xwss.xml │ │ ├── keystore │ │ │ ├── keystore-wss4j.xml │ │ │ └── keystore.xml │ │ ├── persistence.xml │ │ ├── service.xml │ │ ├── servlet │ │ │ ├── encryption │ │ │ │ ├── wss4j │ │ │ │ │ └── servlet-encryption-wss4j.xml │ │ │ │ └── xwss │ │ │ │ │ └── servlet-encryption-xwss.xml │ │ │ ├── password │ │ │ │ ├── digest │ │ │ │ │ ├── wss4j │ │ │ │ │ │ └── servlet-password-digest-wss4j.xml │ │ │ │ │ └── xwss │ │ │ │ │ │ └── servlet-password-digest-xwss.xml │ │ │ │ └── plain │ │ │ │ │ ├── wss4j │ │ │ │ │ └── servlet-password-plain-wss4j.xml │ │ │ │ │ └── xwss │ │ │ │ │ └── servlet-password-plain-xwss.xml │ │ │ ├── servlet-unsecure.xml │ │ │ └── signature │ │ │ │ ├── wss4j │ │ │ │ └── servlet-signature-wss4j.xml │ │ │ │ └── xwss │ │ │ │ └── servlet-signature-xwss.xml │ │ └── web-service.xml │ ├── jetty │ │ └── jetty.xml │ ├── keystore │ │ ├── keystore.jks │ │ ├── keystore2.jks │ │ └── symmetric.jceks │ ├── liquibase │ │ └── changelog.xml │ ├── log4j2.xml │ ├── security │ │ ├── client │ │ │ ├── security-encryption-client.xml │ │ │ ├── security-password-digest-client-invalid.xml │ │ │ ├── security-password-digest-client.xml │ │ │ ├── security-password-plain-client-invalid.xml │ │ │ ├── security-password-plain-client.xml │ │ │ └── security-signature-client.xml │ │ └── endpoint │ │ │ ├── security-encryption-endpoint.xml │ │ │ ├── security-password-digest-endpoint.xml │ │ │ ├── security-password-plain-endpoint.xml │ │ │ └── security-signature-endpoint.xml │ ├── xjb │ │ └── entity.xjb │ └── xsd │ │ └── entity.xsd └── webapp │ └── WEB-INF │ └── web.xml ├── site ├── markdown │ ├── architecture.md │ ├── client.md │ ├── generated.md │ ├── index.md │ ├── info.md │ ├── keystore.md │ ├── log.md │ ├── reports.md │ ├── urls.md │ └── usage.md ├── resources │ └── images │ │ └── web_service_structure.png └── site.xml └── test ├── java └── com │ └── bernardomg │ └── example │ └── swss │ └── test │ ├── integration │ ├── client │ │ ├── ITEntityClientUnsecure.java │ │ ├── encryption │ │ │ ├── wss4j │ │ │ │ ├── ITEntityClientEncryptionWss4jToWss4j.java │ │ │ │ ├── ITEntityClientEncryptionWss4jToWss4jInvalid.java │ │ │ │ ├── ITEntityClientEncryptionWss4jToXwss.java │ │ │ │ └── ITEntityClientEncryptionWss4jToXwssInvalid.java │ │ │ └── xwss │ │ │ │ ├── ITEntityClientEncryptionXwssToWss4j.java │ │ │ │ ├── ITEntityClientEncryptionXwssToWss4jInvalid.java │ │ │ │ ├── ITEntityClientEncryptionXwssToXwss.java │ │ │ │ └── ITEntityClientEncryptionXwssToXwssInvalid.java │ │ ├── password │ │ │ ├── digest │ │ │ │ ├── wss4j │ │ │ │ │ ├── ITEntityClientPasswordDigestWss4jToWss4j.java │ │ │ │ │ ├── ITEntityClientPasswordDigestWss4jToWss4jInvalid.java │ │ │ │ │ ├── ITEntityClientPasswordDigestWss4jToXwss.java │ │ │ │ │ └── ITEntityClientPasswordDigestWss4jToXwssInvalid.java │ │ │ │ └── xwss │ │ │ │ │ ├── ITEntityClientPasswordDigestXwssToUnsecured.java │ │ │ │ │ ├── ITEntityClientPasswordDigestXwssToWss4j.java │ │ │ │ │ ├── ITEntityClientPasswordDigestXwssToWss4jInvalid.java │ │ │ │ │ ├── ITEntityClientPasswordDigestXwssToXwss.java │ │ │ │ │ └── ITEntityClientPasswordDigestXwssToXwssInvalid.java │ │ │ └── plain │ │ │ │ ├── wss4j │ │ │ │ ├── ITEntityClientPasswordPlainWss4jToUnsecured.java │ │ │ │ ├── ITEntityClientPasswordPlainWss4jToWss4j.java │ │ │ │ ├── ITEntityClientPasswordPlainWss4jToWss4jInvalid.java │ │ │ │ ├── ITEntityClientPasswordPlainWss4jToXwss.java │ │ │ │ └── ITEntityClientPasswordPlainWss4jToXwssInvalid.java │ │ │ │ └── xwss │ │ │ │ ├── ITEntityClientPasswordPlainXwssToUnsecured.java │ │ │ │ ├── ITEntityClientPasswordPlainXwssToWss4j.java │ │ │ │ ├── ITEntityClientPasswordPlainXwssToWss4jInvalid.java │ │ │ │ ├── ITEntityClientPasswordPlainXwssToXwss.java │ │ │ │ └── ITEntityClientPasswordPlainXwssToXwssInvalid.java │ │ └── signature │ │ │ ├── wss4j │ │ │ ├── ITEntityClientSignatureWss4jToWss4j.java │ │ │ ├── ITEntityClientSignatureWss4jToWss4jInvalid.java │ │ │ ├── ITEntityClientSignatureWss4jToXwss.java │ │ │ └── ITEntityClientSignatureWss4jToXwssInvalid.java │ │ │ └── xwss │ │ │ ├── ITEntityClientSignatureXwssToWss4j.java │ │ │ ├── ITEntityClientSignatureXwssToWss4jInvalid.java │ │ │ ├── ITEntityClientSignatureXwssToXwss.java │ │ │ └── ITEntityClientSignatureXwssToXwssInvalid.java │ └── endpoint │ │ ├── ITEntityEndpointUnsecure.java │ │ ├── encryption │ │ ├── wss4j │ │ │ └── ITEntityEndpointEncryptionWss4j.java │ │ └── xwss │ │ │ └── ITEntityEndpointEncryptionXwss.java │ │ ├── password │ │ ├── digest │ │ │ ├── wss4j │ │ │ │ └── ITEntityEndpointPasswordDigestWss4j.java │ │ │ └── xwss │ │ │ │ └── ITEntityEndpointPasswordDigestXwss.java │ │ └── plain │ │ │ ├── wss4j │ │ │ └── ITEntityEndpointPasswordPlainWss4j.java │ │ │ └── xwss │ │ │ └── ITEntityEndpointPasswordPlainXwss.java │ │ └── signature │ │ ├── wss4j │ │ └── ITEntityEndpointSignatureWss4j.java │ │ └── xwss │ │ └── ITEntityEndpointSignatureXwss.java │ ├── unit │ ├── client │ │ ├── TestDefaultEntityClientExceptionErrors.java │ │ ├── TestDefaultEntityClientExceptionSoap.java │ │ ├── TestDefaultEntityClientUnsecure.java │ │ ├── encryption │ │ │ ├── wss4j │ │ │ │ └── TestEntityClientEncryptionWss4j.java │ │ │ └── xwss │ │ │ │ └── TestEntityClientEncryptionXwss.java │ │ ├── password │ │ │ ├── digest │ │ │ │ ├── wss4j │ │ │ │ │ └── TestEntityClientPasswordDigestWss4j.java │ │ │ │ └── xwss │ │ │ │ │ └── TestEntityClientPasswordDigestXwss.java │ │ │ └── plain │ │ │ │ ├── wss4j │ │ │ │ └── TestEntityClientPasswordPlainWss4j.java │ │ │ │ └── xwss │ │ │ │ └── TestEntityClientPasswordPlainXwss.java │ │ └── signature │ │ │ ├── wss4j │ │ │ └── TestEntityClientSignatureWss4j.java │ │ │ └── xwss │ │ │ └── TestEntityClientSignatureXwss.java │ └── endpoint │ │ ├── TestEntityEndpointUnsecure.java │ │ ├── encryption │ │ ├── wss4j │ │ │ └── TestEntityEndpointRequestEncryptionWss4j.java │ │ └── xwss │ │ │ └── TestEntityEndpointRequestEncryptionXwss.java │ │ └── password │ │ ├── digest │ │ ├── wss4j │ │ │ └── TestEntityEndpointRequestPasswordDigestWss4j.java │ │ └── xwss │ │ │ └── TestEntityEndpointRequestPasswordDigestXwss.java │ │ └── plain │ │ ├── wss4j │ │ └── TestEntityEndpointRequestPasswordPlainWss4j.java │ │ └── xwss │ │ └── TestEntityEndpointRequestPasswordPlainXwss.java │ └── util │ ├── SoapMessageUtils.java │ ├── config │ ├── context │ │ ├── ClientWss4jContextPaths.java │ │ ├── ClientXwssContextPaths.java │ │ ├── ServletContextPaths.java │ │ ├── ServletWss4jContextPaths.java │ │ ├── ServletXwssContextPaths.java │ │ └── TestContextPaths.java │ └── properties │ │ ├── EndpointPropertiesPaths.java │ │ ├── EndpointWss4jPropertiesPaths.java │ │ ├── EndpointXwssPropertiesPaths.java │ │ ├── InterceptorWss4jPropertiesPaths.java │ │ ├── InterceptorXwssPropertiesPaths.java │ │ ├── SoapPropertiesPaths.java │ │ ├── TestEndpointWss4jPropertiesPaths.java │ │ ├── TestEndpointXwssPropertiesPaths.java │ │ └── TestPropertiesPaths.java │ ├── factory │ ├── SecureSoapMessages.java │ ├── SoapActionRequestCreators.java │ └── WebServiceMockFactory.java │ └── test │ ├── integration │ ├── client │ │ ├── AbstractITEntityClient.java │ │ └── AbstractITEntityClientInvalid.java │ └── endpoint │ │ └── AbstractITEndpoint.java │ └── unit │ ├── client │ ├── AbstractTestEntityClient.java │ ├── AbstractTestEntityClientEnvelope.java │ └── AbstractTestEntityClientHeader.java │ └── endpoint │ ├── AbstractTestEndpoint.java │ └── AbstractTestEntityEndpointRequest.java └── resources ├── config ├── endpoint │ ├── test-endpoint-encryption-wss4j.properties │ ├── test-endpoint-encryption-xwss.properties │ ├── test-endpoint-password-digest-wss4j.properties │ ├── test-endpoint-password-digest-xwss.properties │ ├── test-endpoint-password-plain-wss4j.properties │ ├── test-endpoint-password-plain-xwss.properties │ ├── test-endpoint-signature-wss4j.properties │ ├── test-endpoint-signature-xwss.properties │ ├── test-endpoint-unsecure.properties │ └── test-wsdl.properties ├── security │ ├── test-security-password-digest-invalid.properties │ └── test-security-password-plain-invalid.properties ├── soap │ ├── test-soap-encryption-wss4j.properties │ ├── test-soap-encryption-xwss.properties │ ├── test-soap-password-digest.properties │ ├── test-soap-password-plain.properties │ ├── test-soap-signature.properties │ └── test-soap-unsecure.properties ├── test-entity.properties ├── test-web-service.properties └── user │ ├── test-user-invalid.properties │ └── test-user.properties ├── context ├── endpoint │ └── password │ │ ├── digest │ │ ├── wss4j │ │ │ └── test-endpoint-password-digest-wss4j.xml │ │ └── xwss │ │ │ └── test-endpoint-password-digest-xwss.xml │ │ └── plain │ │ ├── wss4j │ │ └── test-endpoint-password-plain-wss4j.xml │ │ └── xwss │ │ └── test-endpoint-password-plain-xwss.xml ├── interceptor │ └── password │ │ ├── digest │ │ ├── wss4j │ │ │ └── test-interceptor-password-digest-wss4j.xml │ │ └── xwss │ │ │ └── test-interceptor-password-digest-xwss.xml │ │ └── plain │ │ ├── wss4j │ │ └── test-interceptor-password-plain-wss4j.xml │ │ └── xwss │ │ └── test-interceptor-password-plain-xwss.xml ├── servlet │ └── password │ │ ├── digest │ │ ├── wss4j │ │ │ └── test-servlet-password-digest-wss4j.xml │ │ └── xwss │ │ │ └── test-servlet-password-digest-xwss.xml │ │ └── plain │ │ ├── wss4j │ │ └── test-servlet-password-plain-wss4j.xml │ │ └── xwss │ │ └── test-servlet-password-plain-xwss.xml ├── test-default.xml └── test-web-service.xml ├── log4j2-test.xml └── soap ├── payload ├── request │ ├── payload-request-invalid.xml │ └── payload-request.xml └── response │ ├── payload-response-invalid.xml │ └── payload-response.xml └── request ├── request-encryption-wss4j.xml ├── request-encryption-xwss.xml ├── request-not-secured-invalid.xml ├── request-not-secured.xml ├── request-password-digest.xml ├── request-password-plain.xml ├── request-signature.xml └── template ├── request-encryption.ftl ├── request-password-digest.ftl ├── request-password-plain.ftl └── request-signature.ftl /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bernardo-MG/spring-ws-security-soap-example/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bernardo-MG/spring-ws-security-soap-example/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bernardo-MG/spring-ws-security-soap-example/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bernardo-MG/spring-ws-security-soap-example/HEAD/LICENSE -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bernardo-MG/spring-ws-security-soap-example/HEAD/pom.xml -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bernardo-MG/spring-ws-security-soap-example/HEAD/readme.md -------------------------------------------------------------------------------- /src/changes/changes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bernardo-MG/spring-ws-security-soap-example/HEAD/src/changes/changes.xml -------------------------------------------------------------------------------- /src/config/checkstyle/checkstyle-rules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bernardo-MG/spring-ws-security-soap-example/HEAD/src/config/checkstyle/checkstyle-rules.xml -------------------------------------------------------------------------------- /src/config/findbugs/findbugs-exclude.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bernardo-MG/spring-ws-security-soap-example/HEAD/src/config/findbugs/findbugs-exclude.xml -------------------------------------------------------------------------------- /src/config/pmd/pmd-rules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bernardo-MG/spring-ws-security-soap-example/HEAD/src/config/pmd/pmd-rules.xml -------------------------------------------------------------------------------- /src/docs/diagrams/web_service_structure.uxf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bernardo-MG/spring-ws-security-soap-example/HEAD/src/docs/diagrams/web_service_structure.uxf -------------------------------------------------------------------------------- /src/main/java/com/bernardomg/example/swss/auth/model/PersistentGrantedAuthority.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bernardo-MG/spring-ws-security-soap-example/HEAD/src/main/java/com/bernardomg/example/swss/auth/model/PersistentGrantedAuthority.java -------------------------------------------------------------------------------- /src/main/java/com/bernardomg/example/swss/auth/model/PersistentUserDetails.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bernardo-MG/spring-ws-security-soap-example/HEAD/src/main/java/com/bernardomg/example/swss/auth/model/PersistentUserDetails.java -------------------------------------------------------------------------------- /src/main/java/com/bernardomg/example/swss/auth/model/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bernardo-MG/spring-ws-security-soap-example/HEAD/src/main/java/com/bernardomg/example/swss/auth/model/package-info.java -------------------------------------------------------------------------------- /src/main/java/com/bernardomg/example/swss/auth/repository/PersistentUserDetailsRepository.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bernardo-MG/spring-ws-security-soap-example/HEAD/src/main/java/com/bernardomg/example/swss/auth/repository/PersistentUserDetailsRepository.java -------------------------------------------------------------------------------- /src/main/java/com/bernardomg/example/swss/auth/repository/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bernardo-MG/spring-ws-security-soap-example/HEAD/src/main/java/com/bernardomg/example/swss/auth/repository/package-info.java -------------------------------------------------------------------------------- /src/main/java/com/bernardomg/example/swss/auth/service/PersistentUserDetailsService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bernardo-MG/spring-ws-security-soap-example/HEAD/src/main/java/com/bernardomg/example/swss/auth/service/PersistentUserDetailsService.java -------------------------------------------------------------------------------- /src/main/java/com/bernardomg/example/swss/auth/service/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bernardo-MG/spring-ws-security-soap-example/HEAD/src/main/java/com/bernardomg/example/swss/auth/service/package-info.java -------------------------------------------------------------------------------- /src/main/java/com/bernardomg/example/swss/client/DefaultEntityClient.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bernardo-MG/spring-ws-security-soap-example/HEAD/src/main/java/com/bernardomg/example/swss/client/DefaultEntityClient.java -------------------------------------------------------------------------------- /src/main/java/com/bernardomg/example/swss/client/EntityClient.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bernardo-MG/spring-ws-security-soap-example/HEAD/src/main/java/com/bernardomg/example/swss/client/EntityClient.java -------------------------------------------------------------------------------- /src/main/java/com/bernardomg/example/swss/client/console/ConsoleClient.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bernardo-MG/spring-ws-security-soap-example/HEAD/src/main/java/com/bernardomg/example/swss/client/console/ConsoleClient.java -------------------------------------------------------------------------------- /src/main/java/com/bernardomg/example/swss/client/console/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bernardo-MG/spring-ws-security-soap-example/HEAD/src/main/java/com/bernardomg/example/swss/client/console/package-info.java -------------------------------------------------------------------------------- /src/main/java/com/bernardomg/example/swss/client/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bernardo-MG/spring-ws-security-soap-example/HEAD/src/main/java/com/bernardomg/example/swss/client/package-info.java -------------------------------------------------------------------------------- /src/main/java/com/bernardomg/example/swss/endpoint/ExampleEntityEndpoint.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bernardo-MG/spring-ws-security-soap-example/HEAD/src/main/java/com/bernardomg/example/swss/endpoint/ExampleEntityEndpoint.java -------------------------------------------------------------------------------- /src/main/java/com/bernardomg/example/swss/endpoint/ExampleEntityEndpointConstants.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bernardo-MG/spring-ws-security-soap-example/HEAD/src/main/java/com/bernardomg/example/swss/endpoint/ExampleEntityEndpointConstants.java -------------------------------------------------------------------------------- /src/main/java/com/bernardomg/example/swss/endpoint/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bernardo-MG/spring-ws-security-soap-example/HEAD/src/main/java/com/bernardomg/example/swss/endpoint/package-info.java -------------------------------------------------------------------------------- /src/main/java/com/bernardomg/example/swss/model/DefaultExampleEntity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bernardo-MG/spring-ws-security-soap-example/HEAD/src/main/java/com/bernardomg/example/swss/model/DefaultExampleEntity.java -------------------------------------------------------------------------------- /src/main/java/com/bernardomg/example/swss/model/ExampleEntity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bernardo-MG/spring-ws-security-soap-example/HEAD/src/main/java/com/bernardomg/example/swss/model/ExampleEntity.java -------------------------------------------------------------------------------- /src/main/java/com/bernardomg/example/swss/model/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bernardo-MG/spring-ws-security-soap-example/HEAD/src/main/java/com/bernardomg/example/swss/model/package-info.java -------------------------------------------------------------------------------- /src/main/java/com/bernardomg/example/swss/repository/ExampleEntityRepository.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bernardo-MG/spring-ws-security-soap-example/HEAD/src/main/java/com/bernardomg/example/swss/repository/ExampleEntityRepository.java -------------------------------------------------------------------------------- /src/main/java/com/bernardomg/example/swss/repository/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bernardo-MG/spring-ws-security-soap-example/HEAD/src/main/java/com/bernardomg/example/swss/repository/package-info.java -------------------------------------------------------------------------------- /src/main/java/com/bernardomg/example/swss/service/domain/ExampleEntityService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bernardo-MG/spring-ws-security-soap-example/HEAD/src/main/java/com/bernardomg/example/swss/service/domain/ExampleEntityService.java -------------------------------------------------------------------------------- /src/main/java/com/bernardomg/example/swss/service/domain/RepositoryExampleEntityService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bernardo-MG/spring-ws-security-soap-example/HEAD/src/main/java/com/bernardomg/example/swss/service/domain/RepositoryExampleEntityService.java -------------------------------------------------------------------------------- /src/main/java/com/bernardomg/example/swss/service/domain/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bernardo-MG/spring-ws-security-soap-example/HEAD/src/main/java/com/bernardomg/example/swss/service/domain/package-info.java -------------------------------------------------------------------------------- /src/main/resources/config/client/client.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bernardo-MG/spring-ws-security-soap-example/HEAD/src/main/resources/config/client/client.properties -------------------------------------------------------------------------------- /src/main/resources/config/client/encryption/xwss/client-encryption-xwss.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bernardo-MG/spring-ws-security-soap-example/HEAD/src/main/resources/config/client/encryption/xwss/client-encryption-xwss.properties -------------------------------------------------------------------------------- /src/main/resources/config/client/password/digest/xwss/client-password-digest-xwss.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bernardo-MG/spring-ws-security-soap-example/HEAD/src/main/resources/config/client/password/digest/xwss/client-password-digest-xwss.properties -------------------------------------------------------------------------------- /src/main/resources/config/client/password/plain/xwss/client-password-plain-xwss.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bernardo-MG/spring-ws-security-soap-example/HEAD/src/main/resources/config/client/password/plain/xwss/client-password-plain-xwss.properties -------------------------------------------------------------------------------- /src/main/resources/config/client/signature/xwss/client-signature-xwss.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bernardo-MG/spring-ws-security-soap-example/HEAD/src/main/resources/config/client/signature/xwss/client-signature-xwss.properties -------------------------------------------------------------------------------- /src/main/resources/config/endpoint/encryption/wss4j/endpoint-encryption-wss4j.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bernardo-MG/spring-ws-security-soap-example/HEAD/src/main/resources/config/endpoint/encryption/wss4j/endpoint-encryption-wss4j.properties -------------------------------------------------------------------------------- /src/main/resources/config/endpoint/encryption/xwss/endpoint-encryption-xwss.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bernardo-MG/spring-ws-security-soap-example/HEAD/src/main/resources/config/endpoint/encryption/xwss/endpoint-encryption-xwss.properties -------------------------------------------------------------------------------- /src/main/resources/config/endpoint/endpoint-unsecure.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bernardo-MG/spring-ws-security-soap-example/HEAD/src/main/resources/config/endpoint/endpoint-unsecure.properties -------------------------------------------------------------------------------- /src/main/resources/config/endpoint/endpoint.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bernardo-MG/spring-ws-security-soap-example/HEAD/src/main/resources/config/endpoint/endpoint.properties -------------------------------------------------------------------------------- /src/main/resources/config/endpoint/password/digest/wss4j/endpoint-password-digest-wss4j.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bernardo-MG/spring-ws-security-soap-example/HEAD/src/main/resources/config/endpoint/password/digest/wss4j/endpoint-password-digest-wss4j.properties -------------------------------------------------------------------------------- /src/main/resources/config/endpoint/password/digest/xwss/endpoint-password-digest-xwss.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bernardo-MG/spring-ws-security-soap-example/HEAD/src/main/resources/config/endpoint/password/digest/xwss/endpoint-password-digest-xwss.properties -------------------------------------------------------------------------------- /src/main/resources/config/endpoint/password/plain/wss4j/endpoint-password-plain-wss4j.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bernardo-MG/spring-ws-security-soap-example/HEAD/src/main/resources/config/endpoint/password/plain/wss4j/endpoint-password-plain-wss4j.properties -------------------------------------------------------------------------------- /src/main/resources/config/endpoint/password/plain/xwss/endpoint-password-plain-xwss.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bernardo-MG/spring-ws-security-soap-example/HEAD/src/main/resources/config/endpoint/password/plain/xwss/endpoint-password-plain-xwss.properties -------------------------------------------------------------------------------- /src/main/resources/config/endpoint/signature/wss4j/endpoint-signature-wss4j.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bernardo-MG/spring-ws-security-soap-example/HEAD/src/main/resources/config/endpoint/signature/wss4j/endpoint-signature-wss4j.properties -------------------------------------------------------------------------------- /src/main/resources/config/endpoint/signature/xwss/endpoint-signature-xwss.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bernardo-MG/spring-ws-security-soap-example/HEAD/src/main/resources/config/endpoint/signature/xwss/endpoint-signature-xwss.properties -------------------------------------------------------------------------------- /src/main/resources/config/interceptor/encryption/wss4j/interceptor-encryption-wss4j.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bernardo-MG/spring-ws-security-soap-example/HEAD/src/main/resources/config/interceptor/encryption/wss4j/interceptor-encryption-wss4j.properties -------------------------------------------------------------------------------- /src/main/resources/config/interceptor/encryption/xwss/interceptor-encryption-xwss.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bernardo-MG/spring-ws-security-soap-example/HEAD/src/main/resources/config/interceptor/encryption/xwss/interceptor-encryption-xwss.properties -------------------------------------------------------------------------------- /src/main/resources/config/interceptor/password/digest/wss4j/interceptor-password-digest-wss4j.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bernardo-MG/spring-ws-security-soap-example/HEAD/src/main/resources/config/interceptor/password/digest/wss4j/interceptor-password-digest-wss4j.properties -------------------------------------------------------------------------------- /src/main/resources/config/interceptor/password/digest/xwss/interceptor-password-digest-xwss.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bernardo-MG/spring-ws-security-soap-example/HEAD/src/main/resources/config/interceptor/password/digest/xwss/interceptor-password-digest-xwss.properties -------------------------------------------------------------------------------- /src/main/resources/config/interceptor/password/plain/wss4j/interceptor-password-plain-wss4j.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bernardo-MG/spring-ws-security-soap-example/HEAD/src/main/resources/config/interceptor/password/plain/wss4j/interceptor-password-plain-wss4j.properties -------------------------------------------------------------------------------- /src/main/resources/config/interceptor/password/plain/xwss/interceptor-password-plain-xwss.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bernardo-MG/spring-ws-security-soap-example/HEAD/src/main/resources/config/interceptor/password/plain/xwss/interceptor-password-plain-xwss.properties -------------------------------------------------------------------------------- /src/main/resources/config/interceptor/signature/wss4j/interceptor-signature-wss4j.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bernardo-MG/spring-ws-security-soap-example/HEAD/src/main/resources/config/interceptor/signature/wss4j/interceptor-signature-wss4j.properties -------------------------------------------------------------------------------- /src/main/resources/config/interceptor/signature/xwss/interceptor-signature-xwss.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bernardo-MG/spring-ws-security-soap-example/HEAD/src/main/resources/config/interceptor/signature/xwss/interceptor-signature-xwss.properties -------------------------------------------------------------------------------- /src/main/resources/config/keystore/keystore-wss4j.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bernardo-MG/spring-ws-security-soap-example/HEAD/src/main/resources/config/keystore/keystore-wss4j.properties -------------------------------------------------------------------------------- /src/main/resources/config/keystore/keystore.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bernardo-MG/spring-ws-security-soap-example/HEAD/src/main/resources/config/keystore/keystore.properties -------------------------------------------------------------------------------- /src/main/resources/config/keystore/keystore2.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bernardo-MG/spring-ws-security-soap-example/HEAD/src/main/resources/config/keystore/keystore2.properties -------------------------------------------------------------------------------- /src/main/resources/config/persistence.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bernardo-MG/spring-ws-security-soap-example/HEAD/src/main/resources/config/persistence.properties -------------------------------------------------------------------------------- /src/main/resources/context/client/client-unsecure.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bernardo-MG/spring-ws-security-soap-example/HEAD/src/main/resources/context/client/client-unsecure.xml -------------------------------------------------------------------------------- /src/main/resources/context/client/client.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bernardo-MG/spring-ws-security-soap-example/HEAD/src/main/resources/context/client/client.xml -------------------------------------------------------------------------------- /src/main/resources/context/client/encryption/wss4j/client-encryption-wss4j.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bernardo-MG/spring-ws-security-soap-example/HEAD/src/main/resources/context/client/encryption/wss4j/client-encryption-wss4j.xml -------------------------------------------------------------------------------- /src/main/resources/context/client/encryption/xwss/client-encryption-xwss.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bernardo-MG/spring-ws-security-soap-example/HEAD/src/main/resources/context/client/encryption/xwss/client-encryption-xwss.xml -------------------------------------------------------------------------------- /src/main/resources/context/client/password/digest/wss4j/client-password-digest-wss4j.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bernardo-MG/spring-ws-security-soap-example/HEAD/src/main/resources/context/client/password/digest/wss4j/client-password-digest-wss4j.xml -------------------------------------------------------------------------------- /src/main/resources/context/client/password/digest/xwss/client-password-digest-xwss.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bernardo-MG/spring-ws-security-soap-example/HEAD/src/main/resources/context/client/password/digest/xwss/client-password-digest-xwss.xml -------------------------------------------------------------------------------- /src/main/resources/context/client/password/plain/wss4j/client-password-plain-wss4j.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bernardo-MG/spring-ws-security-soap-example/HEAD/src/main/resources/context/client/password/plain/wss4j/client-password-plain-wss4j.xml -------------------------------------------------------------------------------- /src/main/resources/context/client/password/plain/xwss/client-password-plain-xwss.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bernardo-MG/spring-ws-security-soap-example/HEAD/src/main/resources/context/client/password/plain/xwss/client-password-plain-xwss.xml -------------------------------------------------------------------------------- /src/main/resources/context/client/signature/wss4j/client-signature-wss4j.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bernardo-MG/spring-ws-security-soap-example/HEAD/src/main/resources/context/client/signature/wss4j/client-signature-wss4j.xml -------------------------------------------------------------------------------- /src/main/resources/context/client/signature/xwss/client-signature-xwss.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bernardo-MG/spring-ws-security-soap-example/HEAD/src/main/resources/context/client/signature/xwss/client-signature-xwss.xml -------------------------------------------------------------------------------- /src/main/resources/context/endpoint/encryption/wss4j/endpoint-encryption-wss4j.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bernardo-MG/spring-ws-security-soap-example/HEAD/src/main/resources/context/endpoint/encryption/wss4j/endpoint-encryption-wss4j.xml -------------------------------------------------------------------------------- /src/main/resources/context/endpoint/encryption/xwss/endpoint-encryption-xwss.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bernardo-MG/spring-ws-security-soap-example/HEAD/src/main/resources/context/endpoint/encryption/xwss/endpoint-encryption-xwss.xml -------------------------------------------------------------------------------- /src/main/resources/context/endpoint/endpoint-unsecure.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bernardo-MG/spring-ws-security-soap-example/HEAD/src/main/resources/context/endpoint/endpoint-unsecure.xml -------------------------------------------------------------------------------- /src/main/resources/context/endpoint/endpoint.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bernardo-MG/spring-ws-security-soap-example/HEAD/src/main/resources/context/endpoint/endpoint.xml -------------------------------------------------------------------------------- /src/main/resources/context/endpoint/password/digest/wss4j/endpoint-password-digest-wss4j.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bernardo-MG/spring-ws-security-soap-example/HEAD/src/main/resources/context/endpoint/password/digest/wss4j/endpoint-password-digest-wss4j.xml -------------------------------------------------------------------------------- /src/main/resources/context/endpoint/password/digest/xwss/endpoint-password-digest-xwss.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bernardo-MG/spring-ws-security-soap-example/HEAD/src/main/resources/context/endpoint/password/digest/xwss/endpoint-password-digest-xwss.xml -------------------------------------------------------------------------------- /src/main/resources/context/endpoint/password/plain/wss4j/endpoint-password-plain-wss4j.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bernardo-MG/spring-ws-security-soap-example/HEAD/src/main/resources/context/endpoint/password/plain/wss4j/endpoint-password-plain-wss4j.xml -------------------------------------------------------------------------------- /src/main/resources/context/endpoint/password/plain/xwss/endpoint-password-plain-xwss.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bernardo-MG/spring-ws-security-soap-example/HEAD/src/main/resources/context/endpoint/password/plain/xwss/endpoint-password-plain-xwss.xml -------------------------------------------------------------------------------- /src/main/resources/context/endpoint/signature/wss4j/endpoint-signature-wss4j.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bernardo-MG/spring-ws-security-soap-example/HEAD/src/main/resources/context/endpoint/signature/wss4j/endpoint-signature-wss4j.xml -------------------------------------------------------------------------------- /src/main/resources/context/endpoint/signature/xwss/endpoint-signature-xwss.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bernardo-MG/spring-ws-security-soap-example/HEAD/src/main/resources/context/endpoint/signature/xwss/endpoint-signature-xwss.xml -------------------------------------------------------------------------------- /src/main/resources/context/endpoint/wsdl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bernardo-MG/spring-ws-security-soap-example/HEAD/src/main/resources/context/endpoint/wsdl.xml -------------------------------------------------------------------------------- /src/main/resources/context/interceptor/encryption/wss4j/interceptor-encryption-wss4j.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bernardo-MG/spring-ws-security-soap-example/HEAD/src/main/resources/context/interceptor/encryption/wss4j/interceptor-encryption-wss4j.xml -------------------------------------------------------------------------------- /src/main/resources/context/interceptor/encryption/xwss/interceptor-encryption-xwss.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bernardo-MG/spring-ws-security-soap-example/HEAD/src/main/resources/context/interceptor/encryption/xwss/interceptor-encryption-xwss.xml -------------------------------------------------------------------------------- /src/main/resources/context/interceptor/password/digest/wss4j/interceptor-password-digest-wss4j.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bernardo-MG/spring-ws-security-soap-example/HEAD/src/main/resources/context/interceptor/password/digest/wss4j/interceptor-password-digest-wss4j.xml -------------------------------------------------------------------------------- /src/main/resources/context/interceptor/password/digest/xwss/interceptor-password-digest-xwss.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bernardo-MG/spring-ws-security-soap-example/HEAD/src/main/resources/context/interceptor/password/digest/xwss/interceptor-password-digest-xwss.xml -------------------------------------------------------------------------------- /src/main/resources/context/interceptor/password/plain/wss4j/interceptor-password-plain-wss4j.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bernardo-MG/spring-ws-security-soap-example/HEAD/src/main/resources/context/interceptor/password/plain/wss4j/interceptor-password-plain-wss4j.xml -------------------------------------------------------------------------------- /src/main/resources/context/interceptor/password/plain/xwss/interceptor-password-plain-xwss.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bernardo-MG/spring-ws-security-soap-example/HEAD/src/main/resources/context/interceptor/password/plain/xwss/interceptor-password-plain-xwss.xml -------------------------------------------------------------------------------- /src/main/resources/context/interceptor/signature/wss4j/interceptor-signature-wss4j.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bernardo-MG/spring-ws-security-soap-example/HEAD/src/main/resources/context/interceptor/signature/wss4j/interceptor-signature-wss4j.xml -------------------------------------------------------------------------------- /src/main/resources/context/interceptor/signature/xwss/interceptor-signature-xwss.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bernardo-MG/spring-ws-security-soap-example/HEAD/src/main/resources/context/interceptor/signature/xwss/interceptor-signature-xwss.xml -------------------------------------------------------------------------------- /src/main/resources/context/keystore/keystore-wss4j.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bernardo-MG/spring-ws-security-soap-example/HEAD/src/main/resources/context/keystore/keystore-wss4j.xml -------------------------------------------------------------------------------- /src/main/resources/context/keystore/keystore.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bernardo-MG/spring-ws-security-soap-example/HEAD/src/main/resources/context/keystore/keystore.xml -------------------------------------------------------------------------------- /src/main/resources/context/persistence.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bernardo-MG/spring-ws-security-soap-example/HEAD/src/main/resources/context/persistence.xml -------------------------------------------------------------------------------- /src/main/resources/context/service.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bernardo-MG/spring-ws-security-soap-example/HEAD/src/main/resources/context/service.xml -------------------------------------------------------------------------------- /src/main/resources/context/servlet/encryption/wss4j/servlet-encryption-wss4j.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bernardo-MG/spring-ws-security-soap-example/HEAD/src/main/resources/context/servlet/encryption/wss4j/servlet-encryption-wss4j.xml -------------------------------------------------------------------------------- /src/main/resources/context/servlet/encryption/xwss/servlet-encryption-xwss.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bernardo-MG/spring-ws-security-soap-example/HEAD/src/main/resources/context/servlet/encryption/xwss/servlet-encryption-xwss.xml -------------------------------------------------------------------------------- /src/main/resources/context/servlet/password/digest/wss4j/servlet-password-digest-wss4j.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bernardo-MG/spring-ws-security-soap-example/HEAD/src/main/resources/context/servlet/password/digest/wss4j/servlet-password-digest-wss4j.xml -------------------------------------------------------------------------------- /src/main/resources/context/servlet/password/digest/xwss/servlet-password-digest-xwss.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bernardo-MG/spring-ws-security-soap-example/HEAD/src/main/resources/context/servlet/password/digest/xwss/servlet-password-digest-xwss.xml -------------------------------------------------------------------------------- /src/main/resources/context/servlet/password/plain/wss4j/servlet-password-plain-wss4j.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bernardo-MG/spring-ws-security-soap-example/HEAD/src/main/resources/context/servlet/password/plain/wss4j/servlet-password-plain-wss4j.xml -------------------------------------------------------------------------------- /src/main/resources/context/servlet/password/plain/xwss/servlet-password-plain-xwss.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bernardo-MG/spring-ws-security-soap-example/HEAD/src/main/resources/context/servlet/password/plain/xwss/servlet-password-plain-xwss.xml -------------------------------------------------------------------------------- /src/main/resources/context/servlet/servlet-unsecure.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bernardo-MG/spring-ws-security-soap-example/HEAD/src/main/resources/context/servlet/servlet-unsecure.xml -------------------------------------------------------------------------------- /src/main/resources/context/servlet/signature/wss4j/servlet-signature-wss4j.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bernardo-MG/spring-ws-security-soap-example/HEAD/src/main/resources/context/servlet/signature/wss4j/servlet-signature-wss4j.xml -------------------------------------------------------------------------------- /src/main/resources/context/servlet/signature/xwss/servlet-signature-xwss.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bernardo-MG/spring-ws-security-soap-example/HEAD/src/main/resources/context/servlet/signature/xwss/servlet-signature-xwss.xml -------------------------------------------------------------------------------- /src/main/resources/context/web-service.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bernardo-MG/spring-ws-security-soap-example/HEAD/src/main/resources/context/web-service.xml -------------------------------------------------------------------------------- /src/main/resources/jetty/jetty.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bernardo-MG/spring-ws-security-soap-example/HEAD/src/main/resources/jetty/jetty.xml -------------------------------------------------------------------------------- /src/main/resources/keystore/keystore.jks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bernardo-MG/spring-ws-security-soap-example/HEAD/src/main/resources/keystore/keystore.jks -------------------------------------------------------------------------------- /src/main/resources/keystore/keystore2.jks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bernardo-MG/spring-ws-security-soap-example/HEAD/src/main/resources/keystore/keystore2.jks -------------------------------------------------------------------------------- /src/main/resources/keystore/symmetric.jceks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bernardo-MG/spring-ws-security-soap-example/HEAD/src/main/resources/keystore/symmetric.jceks -------------------------------------------------------------------------------- /src/main/resources/liquibase/changelog.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bernardo-MG/spring-ws-security-soap-example/HEAD/src/main/resources/liquibase/changelog.xml -------------------------------------------------------------------------------- /src/main/resources/log4j2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bernardo-MG/spring-ws-security-soap-example/HEAD/src/main/resources/log4j2.xml -------------------------------------------------------------------------------- /src/main/resources/security/client/security-encryption-client.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bernardo-MG/spring-ws-security-soap-example/HEAD/src/main/resources/security/client/security-encryption-client.xml -------------------------------------------------------------------------------- /src/main/resources/security/client/security-password-digest-client-invalid.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bernardo-MG/spring-ws-security-soap-example/HEAD/src/main/resources/security/client/security-password-digest-client-invalid.xml -------------------------------------------------------------------------------- /src/main/resources/security/client/security-password-digest-client.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bernardo-MG/spring-ws-security-soap-example/HEAD/src/main/resources/security/client/security-password-digest-client.xml -------------------------------------------------------------------------------- /src/main/resources/security/client/security-password-plain-client-invalid.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bernardo-MG/spring-ws-security-soap-example/HEAD/src/main/resources/security/client/security-password-plain-client-invalid.xml -------------------------------------------------------------------------------- /src/main/resources/security/client/security-password-plain-client.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bernardo-MG/spring-ws-security-soap-example/HEAD/src/main/resources/security/client/security-password-plain-client.xml -------------------------------------------------------------------------------- /src/main/resources/security/client/security-signature-client.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bernardo-MG/spring-ws-security-soap-example/HEAD/src/main/resources/security/client/security-signature-client.xml -------------------------------------------------------------------------------- /src/main/resources/security/endpoint/security-encryption-endpoint.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bernardo-MG/spring-ws-security-soap-example/HEAD/src/main/resources/security/endpoint/security-encryption-endpoint.xml -------------------------------------------------------------------------------- /src/main/resources/security/endpoint/security-password-digest-endpoint.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bernardo-MG/spring-ws-security-soap-example/HEAD/src/main/resources/security/endpoint/security-password-digest-endpoint.xml -------------------------------------------------------------------------------- /src/main/resources/security/endpoint/security-password-plain-endpoint.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bernardo-MG/spring-ws-security-soap-example/HEAD/src/main/resources/security/endpoint/security-password-plain-endpoint.xml -------------------------------------------------------------------------------- /src/main/resources/security/endpoint/security-signature-endpoint.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bernardo-MG/spring-ws-security-soap-example/HEAD/src/main/resources/security/endpoint/security-signature-endpoint.xml -------------------------------------------------------------------------------- /src/main/resources/xjb/entity.xjb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bernardo-MG/spring-ws-security-soap-example/HEAD/src/main/resources/xjb/entity.xjb -------------------------------------------------------------------------------- /src/main/resources/xsd/entity.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bernardo-MG/spring-ws-security-soap-example/HEAD/src/main/resources/xsd/entity.xsd -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bernardo-MG/spring-ws-security-soap-example/HEAD/src/main/webapp/WEB-INF/web.xml -------------------------------------------------------------------------------- /src/site/markdown/architecture.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bernardo-MG/spring-ws-security-soap-example/HEAD/src/site/markdown/architecture.md -------------------------------------------------------------------------------- /src/site/markdown/client.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bernardo-MG/spring-ws-security-soap-example/HEAD/src/site/markdown/client.md -------------------------------------------------------------------------------- /src/site/markdown/generated.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bernardo-MG/spring-ws-security-soap-example/HEAD/src/site/markdown/generated.md -------------------------------------------------------------------------------- /src/site/markdown/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bernardo-MG/spring-ws-security-soap-example/HEAD/src/site/markdown/index.md -------------------------------------------------------------------------------- /src/site/markdown/info.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bernardo-MG/spring-ws-security-soap-example/HEAD/src/site/markdown/info.md -------------------------------------------------------------------------------- /src/site/markdown/keystore.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bernardo-MG/spring-ws-security-soap-example/HEAD/src/site/markdown/keystore.md -------------------------------------------------------------------------------- /src/site/markdown/log.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bernardo-MG/spring-ws-security-soap-example/HEAD/src/site/markdown/log.md -------------------------------------------------------------------------------- /src/site/markdown/reports.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bernardo-MG/spring-ws-security-soap-example/HEAD/src/site/markdown/reports.md -------------------------------------------------------------------------------- /src/site/markdown/urls.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bernardo-MG/spring-ws-security-soap-example/HEAD/src/site/markdown/urls.md -------------------------------------------------------------------------------- /src/site/markdown/usage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bernardo-MG/spring-ws-security-soap-example/HEAD/src/site/markdown/usage.md -------------------------------------------------------------------------------- /src/site/resources/images/web_service_structure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bernardo-MG/spring-ws-security-soap-example/HEAD/src/site/resources/images/web_service_structure.png -------------------------------------------------------------------------------- /src/site/site.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bernardo-MG/spring-ws-security-soap-example/HEAD/src/site/site.xml -------------------------------------------------------------------------------- /src/test/java/com/bernardomg/example/swss/test/integration/client/ITEntityClientUnsecure.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bernardo-MG/spring-ws-security-soap-example/HEAD/src/test/java/com/bernardomg/example/swss/test/integration/client/ITEntityClientUnsecure.java -------------------------------------------------------------------------------- /src/test/java/com/bernardomg/example/swss/test/integration/client/encryption/wss4j/ITEntityClientEncryptionWss4jToWss4j.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bernardo-MG/spring-ws-security-soap-example/HEAD/src/test/java/com/bernardomg/example/swss/test/integration/client/encryption/wss4j/ITEntityClientEncryptionWss4jToWss4j.java -------------------------------------------------------------------------------- /src/test/java/com/bernardomg/example/swss/test/integration/client/encryption/wss4j/ITEntityClientEncryptionWss4jToWss4jInvalid.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bernardo-MG/spring-ws-security-soap-example/HEAD/src/test/java/com/bernardomg/example/swss/test/integration/client/encryption/wss4j/ITEntityClientEncryptionWss4jToWss4jInvalid.java -------------------------------------------------------------------------------- /src/test/java/com/bernardomg/example/swss/test/integration/client/encryption/wss4j/ITEntityClientEncryptionWss4jToXwss.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bernardo-MG/spring-ws-security-soap-example/HEAD/src/test/java/com/bernardomg/example/swss/test/integration/client/encryption/wss4j/ITEntityClientEncryptionWss4jToXwss.java -------------------------------------------------------------------------------- /src/test/java/com/bernardomg/example/swss/test/integration/client/encryption/wss4j/ITEntityClientEncryptionWss4jToXwssInvalid.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bernardo-MG/spring-ws-security-soap-example/HEAD/src/test/java/com/bernardomg/example/swss/test/integration/client/encryption/wss4j/ITEntityClientEncryptionWss4jToXwssInvalid.java -------------------------------------------------------------------------------- /src/test/java/com/bernardomg/example/swss/test/integration/client/encryption/xwss/ITEntityClientEncryptionXwssToWss4j.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bernardo-MG/spring-ws-security-soap-example/HEAD/src/test/java/com/bernardomg/example/swss/test/integration/client/encryption/xwss/ITEntityClientEncryptionXwssToWss4j.java -------------------------------------------------------------------------------- /src/test/java/com/bernardomg/example/swss/test/integration/client/encryption/xwss/ITEntityClientEncryptionXwssToWss4jInvalid.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bernardo-MG/spring-ws-security-soap-example/HEAD/src/test/java/com/bernardomg/example/swss/test/integration/client/encryption/xwss/ITEntityClientEncryptionXwssToWss4jInvalid.java -------------------------------------------------------------------------------- /src/test/java/com/bernardomg/example/swss/test/integration/client/encryption/xwss/ITEntityClientEncryptionXwssToXwss.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bernardo-MG/spring-ws-security-soap-example/HEAD/src/test/java/com/bernardomg/example/swss/test/integration/client/encryption/xwss/ITEntityClientEncryptionXwssToXwss.java -------------------------------------------------------------------------------- /src/test/java/com/bernardomg/example/swss/test/integration/client/encryption/xwss/ITEntityClientEncryptionXwssToXwssInvalid.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bernardo-MG/spring-ws-security-soap-example/HEAD/src/test/java/com/bernardomg/example/swss/test/integration/client/encryption/xwss/ITEntityClientEncryptionXwssToXwssInvalid.java -------------------------------------------------------------------------------- /src/test/java/com/bernardomg/example/swss/test/integration/client/password/digest/wss4j/ITEntityClientPasswordDigestWss4jToWss4j.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bernardo-MG/spring-ws-security-soap-example/HEAD/src/test/java/com/bernardomg/example/swss/test/integration/client/password/digest/wss4j/ITEntityClientPasswordDigestWss4jToWss4j.java -------------------------------------------------------------------------------- /src/test/java/com/bernardomg/example/swss/test/integration/client/password/digest/wss4j/ITEntityClientPasswordDigestWss4jToWss4jInvalid.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bernardo-MG/spring-ws-security-soap-example/HEAD/src/test/java/com/bernardomg/example/swss/test/integration/client/password/digest/wss4j/ITEntityClientPasswordDigestWss4jToWss4jInvalid.java -------------------------------------------------------------------------------- /src/test/java/com/bernardomg/example/swss/test/integration/client/password/digest/wss4j/ITEntityClientPasswordDigestWss4jToXwss.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bernardo-MG/spring-ws-security-soap-example/HEAD/src/test/java/com/bernardomg/example/swss/test/integration/client/password/digest/wss4j/ITEntityClientPasswordDigestWss4jToXwss.java -------------------------------------------------------------------------------- /src/test/java/com/bernardomg/example/swss/test/integration/client/password/digest/wss4j/ITEntityClientPasswordDigestWss4jToXwssInvalid.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bernardo-MG/spring-ws-security-soap-example/HEAD/src/test/java/com/bernardomg/example/swss/test/integration/client/password/digest/wss4j/ITEntityClientPasswordDigestWss4jToXwssInvalid.java -------------------------------------------------------------------------------- /src/test/java/com/bernardomg/example/swss/test/integration/client/password/digest/xwss/ITEntityClientPasswordDigestXwssToUnsecured.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bernardo-MG/spring-ws-security-soap-example/HEAD/src/test/java/com/bernardomg/example/swss/test/integration/client/password/digest/xwss/ITEntityClientPasswordDigestXwssToUnsecured.java -------------------------------------------------------------------------------- /src/test/java/com/bernardomg/example/swss/test/integration/client/password/digest/xwss/ITEntityClientPasswordDigestXwssToWss4j.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bernardo-MG/spring-ws-security-soap-example/HEAD/src/test/java/com/bernardomg/example/swss/test/integration/client/password/digest/xwss/ITEntityClientPasswordDigestXwssToWss4j.java -------------------------------------------------------------------------------- /src/test/java/com/bernardomg/example/swss/test/integration/client/password/digest/xwss/ITEntityClientPasswordDigestXwssToWss4jInvalid.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bernardo-MG/spring-ws-security-soap-example/HEAD/src/test/java/com/bernardomg/example/swss/test/integration/client/password/digest/xwss/ITEntityClientPasswordDigestXwssToWss4jInvalid.java -------------------------------------------------------------------------------- /src/test/java/com/bernardomg/example/swss/test/integration/client/password/digest/xwss/ITEntityClientPasswordDigestXwssToXwss.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bernardo-MG/spring-ws-security-soap-example/HEAD/src/test/java/com/bernardomg/example/swss/test/integration/client/password/digest/xwss/ITEntityClientPasswordDigestXwssToXwss.java -------------------------------------------------------------------------------- /src/test/java/com/bernardomg/example/swss/test/integration/client/password/digest/xwss/ITEntityClientPasswordDigestXwssToXwssInvalid.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bernardo-MG/spring-ws-security-soap-example/HEAD/src/test/java/com/bernardomg/example/swss/test/integration/client/password/digest/xwss/ITEntityClientPasswordDigestXwssToXwssInvalid.java -------------------------------------------------------------------------------- /src/test/java/com/bernardomg/example/swss/test/integration/client/password/plain/wss4j/ITEntityClientPasswordPlainWss4jToUnsecured.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bernardo-MG/spring-ws-security-soap-example/HEAD/src/test/java/com/bernardomg/example/swss/test/integration/client/password/plain/wss4j/ITEntityClientPasswordPlainWss4jToUnsecured.java -------------------------------------------------------------------------------- /src/test/java/com/bernardomg/example/swss/test/integration/client/password/plain/wss4j/ITEntityClientPasswordPlainWss4jToWss4j.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bernardo-MG/spring-ws-security-soap-example/HEAD/src/test/java/com/bernardomg/example/swss/test/integration/client/password/plain/wss4j/ITEntityClientPasswordPlainWss4jToWss4j.java -------------------------------------------------------------------------------- /src/test/java/com/bernardomg/example/swss/test/integration/client/password/plain/wss4j/ITEntityClientPasswordPlainWss4jToWss4jInvalid.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bernardo-MG/spring-ws-security-soap-example/HEAD/src/test/java/com/bernardomg/example/swss/test/integration/client/password/plain/wss4j/ITEntityClientPasswordPlainWss4jToWss4jInvalid.java -------------------------------------------------------------------------------- /src/test/java/com/bernardomg/example/swss/test/integration/client/password/plain/wss4j/ITEntityClientPasswordPlainWss4jToXwss.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bernardo-MG/spring-ws-security-soap-example/HEAD/src/test/java/com/bernardomg/example/swss/test/integration/client/password/plain/wss4j/ITEntityClientPasswordPlainWss4jToXwss.java -------------------------------------------------------------------------------- /src/test/java/com/bernardomg/example/swss/test/integration/client/password/plain/wss4j/ITEntityClientPasswordPlainWss4jToXwssInvalid.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bernardo-MG/spring-ws-security-soap-example/HEAD/src/test/java/com/bernardomg/example/swss/test/integration/client/password/plain/wss4j/ITEntityClientPasswordPlainWss4jToXwssInvalid.java -------------------------------------------------------------------------------- /src/test/java/com/bernardomg/example/swss/test/integration/client/password/plain/xwss/ITEntityClientPasswordPlainXwssToUnsecured.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bernardo-MG/spring-ws-security-soap-example/HEAD/src/test/java/com/bernardomg/example/swss/test/integration/client/password/plain/xwss/ITEntityClientPasswordPlainXwssToUnsecured.java -------------------------------------------------------------------------------- /src/test/java/com/bernardomg/example/swss/test/integration/client/password/plain/xwss/ITEntityClientPasswordPlainXwssToWss4j.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bernardo-MG/spring-ws-security-soap-example/HEAD/src/test/java/com/bernardomg/example/swss/test/integration/client/password/plain/xwss/ITEntityClientPasswordPlainXwssToWss4j.java -------------------------------------------------------------------------------- /src/test/java/com/bernardomg/example/swss/test/integration/client/password/plain/xwss/ITEntityClientPasswordPlainXwssToWss4jInvalid.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bernardo-MG/spring-ws-security-soap-example/HEAD/src/test/java/com/bernardomg/example/swss/test/integration/client/password/plain/xwss/ITEntityClientPasswordPlainXwssToWss4jInvalid.java -------------------------------------------------------------------------------- /src/test/java/com/bernardomg/example/swss/test/integration/client/password/plain/xwss/ITEntityClientPasswordPlainXwssToXwss.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bernardo-MG/spring-ws-security-soap-example/HEAD/src/test/java/com/bernardomg/example/swss/test/integration/client/password/plain/xwss/ITEntityClientPasswordPlainXwssToXwss.java -------------------------------------------------------------------------------- /src/test/java/com/bernardomg/example/swss/test/integration/client/password/plain/xwss/ITEntityClientPasswordPlainXwssToXwssInvalid.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bernardo-MG/spring-ws-security-soap-example/HEAD/src/test/java/com/bernardomg/example/swss/test/integration/client/password/plain/xwss/ITEntityClientPasswordPlainXwssToXwssInvalid.java -------------------------------------------------------------------------------- /src/test/java/com/bernardomg/example/swss/test/integration/client/signature/wss4j/ITEntityClientSignatureWss4jToWss4j.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bernardo-MG/spring-ws-security-soap-example/HEAD/src/test/java/com/bernardomg/example/swss/test/integration/client/signature/wss4j/ITEntityClientSignatureWss4jToWss4j.java -------------------------------------------------------------------------------- /src/test/java/com/bernardomg/example/swss/test/integration/client/signature/wss4j/ITEntityClientSignatureWss4jToWss4jInvalid.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bernardo-MG/spring-ws-security-soap-example/HEAD/src/test/java/com/bernardomg/example/swss/test/integration/client/signature/wss4j/ITEntityClientSignatureWss4jToWss4jInvalid.java -------------------------------------------------------------------------------- /src/test/java/com/bernardomg/example/swss/test/integration/client/signature/wss4j/ITEntityClientSignatureWss4jToXwss.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bernardo-MG/spring-ws-security-soap-example/HEAD/src/test/java/com/bernardomg/example/swss/test/integration/client/signature/wss4j/ITEntityClientSignatureWss4jToXwss.java -------------------------------------------------------------------------------- /src/test/java/com/bernardomg/example/swss/test/integration/client/signature/wss4j/ITEntityClientSignatureWss4jToXwssInvalid.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bernardo-MG/spring-ws-security-soap-example/HEAD/src/test/java/com/bernardomg/example/swss/test/integration/client/signature/wss4j/ITEntityClientSignatureWss4jToXwssInvalid.java -------------------------------------------------------------------------------- /src/test/java/com/bernardomg/example/swss/test/integration/client/signature/xwss/ITEntityClientSignatureXwssToWss4j.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bernardo-MG/spring-ws-security-soap-example/HEAD/src/test/java/com/bernardomg/example/swss/test/integration/client/signature/xwss/ITEntityClientSignatureXwssToWss4j.java -------------------------------------------------------------------------------- /src/test/java/com/bernardomg/example/swss/test/integration/client/signature/xwss/ITEntityClientSignatureXwssToWss4jInvalid.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bernardo-MG/spring-ws-security-soap-example/HEAD/src/test/java/com/bernardomg/example/swss/test/integration/client/signature/xwss/ITEntityClientSignatureXwssToWss4jInvalid.java -------------------------------------------------------------------------------- /src/test/java/com/bernardomg/example/swss/test/integration/client/signature/xwss/ITEntityClientSignatureXwssToXwss.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bernardo-MG/spring-ws-security-soap-example/HEAD/src/test/java/com/bernardomg/example/swss/test/integration/client/signature/xwss/ITEntityClientSignatureXwssToXwss.java -------------------------------------------------------------------------------- /src/test/java/com/bernardomg/example/swss/test/integration/client/signature/xwss/ITEntityClientSignatureXwssToXwssInvalid.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bernardo-MG/spring-ws-security-soap-example/HEAD/src/test/java/com/bernardomg/example/swss/test/integration/client/signature/xwss/ITEntityClientSignatureXwssToXwssInvalid.java -------------------------------------------------------------------------------- /src/test/java/com/bernardomg/example/swss/test/integration/endpoint/ITEntityEndpointUnsecure.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bernardo-MG/spring-ws-security-soap-example/HEAD/src/test/java/com/bernardomg/example/swss/test/integration/endpoint/ITEntityEndpointUnsecure.java -------------------------------------------------------------------------------- /src/test/java/com/bernardomg/example/swss/test/integration/endpoint/encryption/wss4j/ITEntityEndpointEncryptionWss4j.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bernardo-MG/spring-ws-security-soap-example/HEAD/src/test/java/com/bernardomg/example/swss/test/integration/endpoint/encryption/wss4j/ITEntityEndpointEncryptionWss4j.java -------------------------------------------------------------------------------- /src/test/java/com/bernardomg/example/swss/test/integration/endpoint/encryption/xwss/ITEntityEndpointEncryptionXwss.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bernardo-MG/spring-ws-security-soap-example/HEAD/src/test/java/com/bernardomg/example/swss/test/integration/endpoint/encryption/xwss/ITEntityEndpointEncryptionXwss.java -------------------------------------------------------------------------------- /src/test/java/com/bernardomg/example/swss/test/integration/endpoint/password/digest/wss4j/ITEntityEndpointPasswordDigestWss4j.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bernardo-MG/spring-ws-security-soap-example/HEAD/src/test/java/com/bernardomg/example/swss/test/integration/endpoint/password/digest/wss4j/ITEntityEndpointPasswordDigestWss4j.java -------------------------------------------------------------------------------- /src/test/java/com/bernardomg/example/swss/test/integration/endpoint/password/digest/xwss/ITEntityEndpointPasswordDigestXwss.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bernardo-MG/spring-ws-security-soap-example/HEAD/src/test/java/com/bernardomg/example/swss/test/integration/endpoint/password/digest/xwss/ITEntityEndpointPasswordDigestXwss.java -------------------------------------------------------------------------------- /src/test/java/com/bernardomg/example/swss/test/integration/endpoint/password/plain/wss4j/ITEntityEndpointPasswordPlainWss4j.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bernardo-MG/spring-ws-security-soap-example/HEAD/src/test/java/com/bernardomg/example/swss/test/integration/endpoint/password/plain/wss4j/ITEntityEndpointPasswordPlainWss4j.java -------------------------------------------------------------------------------- /src/test/java/com/bernardomg/example/swss/test/integration/endpoint/password/plain/xwss/ITEntityEndpointPasswordPlainXwss.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bernardo-MG/spring-ws-security-soap-example/HEAD/src/test/java/com/bernardomg/example/swss/test/integration/endpoint/password/plain/xwss/ITEntityEndpointPasswordPlainXwss.java -------------------------------------------------------------------------------- /src/test/java/com/bernardomg/example/swss/test/integration/endpoint/signature/wss4j/ITEntityEndpointSignatureWss4j.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bernardo-MG/spring-ws-security-soap-example/HEAD/src/test/java/com/bernardomg/example/swss/test/integration/endpoint/signature/wss4j/ITEntityEndpointSignatureWss4j.java -------------------------------------------------------------------------------- /src/test/java/com/bernardomg/example/swss/test/integration/endpoint/signature/xwss/ITEntityEndpointSignatureXwss.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bernardo-MG/spring-ws-security-soap-example/HEAD/src/test/java/com/bernardomg/example/swss/test/integration/endpoint/signature/xwss/ITEntityEndpointSignatureXwss.java -------------------------------------------------------------------------------- /src/test/java/com/bernardomg/example/swss/test/unit/client/TestDefaultEntityClientExceptionErrors.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bernardo-MG/spring-ws-security-soap-example/HEAD/src/test/java/com/bernardomg/example/swss/test/unit/client/TestDefaultEntityClientExceptionErrors.java -------------------------------------------------------------------------------- /src/test/java/com/bernardomg/example/swss/test/unit/client/TestDefaultEntityClientExceptionSoap.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bernardo-MG/spring-ws-security-soap-example/HEAD/src/test/java/com/bernardomg/example/swss/test/unit/client/TestDefaultEntityClientExceptionSoap.java -------------------------------------------------------------------------------- /src/test/java/com/bernardomg/example/swss/test/unit/client/TestDefaultEntityClientUnsecure.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bernardo-MG/spring-ws-security-soap-example/HEAD/src/test/java/com/bernardomg/example/swss/test/unit/client/TestDefaultEntityClientUnsecure.java -------------------------------------------------------------------------------- /src/test/java/com/bernardomg/example/swss/test/unit/client/encryption/wss4j/TestEntityClientEncryptionWss4j.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bernardo-MG/spring-ws-security-soap-example/HEAD/src/test/java/com/bernardomg/example/swss/test/unit/client/encryption/wss4j/TestEntityClientEncryptionWss4j.java -------------------------------------------------------------------------------- /src/test/java/com/bernardomg/example/swss/test/unit/client/encryption/xwss/TestEntityClientEncryptionXwss.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bernardo-MG/spring-ws-security-soap-example/HEAD/src/test/java/com/bernardomg/example/swss/test/unit/client/encryption/xwss/TestEntityClientEncryptionXwss.java -------------------------------------------------------------------------------- /src/test/java/com/bernardomg/example/swss/test/unit/client/password/digest/wss4j/TestEntityClientPasswordDigestWss4j.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bernardo-MG/spring-ws-security-soap-example/HEAD/src/test/java/com/bernardomg/example/swss/test/unit/client/password/digest/wss4j/TestEntityClientPasswordDigestWss4j.java -------------------------------------------------------------------------------- /src/test/java/com/bernardomg/example/swss/test/unit/client/password/digest/xwss/TestEntityClientPasswordDigestXwss.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bernardo-MG/spring-ws-security-soap-example/HEAD/src/test/java/com/bernardomg/example/swss/test/unit/client/password/digest/xwss/TestEntityClientPasswordDigestXwss.java -------------------------------------------------------------------------------- /src/test/java/com/bernardomg/example/swss/test/unit/client/password/plain/wss4j/TestEntityClientPasswordPlainWss4j.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bernardo-MG/spring-ws-security-soap-example/HEAD/src/test/java/com/bernardomg/example/swss/test/unit/client/password/plain/wss4j/TestEntityClientPasswordPlainWss4j.java -------------------------------------------------------------------------------- /src/test/java/com/bernardomg/example/swss/test/unit/client/password/plain/xwss/TestEntityClientPasswordPlainXwss.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bernardo-MG/spring-ws-security-soap-example/HEAD/src/test/java/com/bernardomg/example/swss/test/unit/client/password/plain/xwss/TestEntityClientPasswordPlainXwss.java -------------------------------------------------------------------------------- /src/test/java/com/bernardomg/example/swss/test/unit/client/signature/wss4j/TestEntityClientSignatureWss4j.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bernardo-MG/spring-ws-security-soap-example/HEAD/src/test/java/com/bernardomg/example/swss/test/unit/client/signature/wss4j/TestEntityClientSignatureWss4j.java -------------------------------------------------------------------------------- /src/test/java/com/bernardomg/example/swss/test/unit/client/signature/xwss/TestEntityClientSignatureXwss.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bernardo-MG/spring-ws-security-soap-example/HEAD/src/test/java/com/bernardomg/example/swss/test/unit/client/signature/xwss/TestEntityClientSignatureXwss.java -------------------------------------------------------------------------------- /src/test/java/com/bernardomg/example/swss/test/unit/endpoint/TestEntityEndpointUnsecure.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bernardo-MG/spring-ws-security-soap-example/HEAD/src/test/java/com/bernardomg/example/swss/test/unit/endpoint/TestEntityEndpointUnsecure.java -------------------------------------------------------------------------------- /src/test/java/com/bernardomg/example/swss/test/unit/endpoint/encryption/wss4j/TestEntityEndpointRequestEncryptionWss4j.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bernardo-MG/spring-ws-security-soap-example/HEAD/src/test/java/com/bernardomg/example/swss/test/unit/endpoint/encryption/wss4j/TestEntityEndpointRequestEncryptionWss4j.java -------------------------------------------------------------------------------- /src/test/java/com/bernardomg/example/swss/test/unit/endpoint/encryption/xwss/TestEntityEndpointRequestEncryptionXwss.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bernardo-MG/spring-ws-security-soap-example/HEAD/src/test/java/com/bernardomg/example/swss/test/unit/endpoint/encryption/xwss/TestEntityEndpointRequestEncryptionXwss.java -------------------------------------------------------------------------------- /src/test/java/com/bernardomg/example/swss/test/unit/endpoint/password/digest/wss4j/TestEntityEndpointRequestPasswordDigestWss4j.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bernardo-MG/spring-ws-security-soap-example/HEAD/src/test/java/com/bernardomg/example/swss/test/unit/endpoint/password/digest/wss4j/TestEntityEndpointRequestPasswordDigestWss4j.java -------------------------------------------------------------------------------- /src/test/java/com/bernardomg/example/swss/test/unit/endpoint/password/digest/xwss/TestEntityEndpointRequestPasswordDigestXwss.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bernardo-MG/spring-ws-security-soap-example/HEAD/src/test/java/com/bernardomg/example/swss/test/unit/endpoint/password/digest/xwss/TestEntityEndpointRequestPasswordDigestXwss.java -------------------------------------------------------------------------------- /src/test/java/com/bernardomg/example/swss/test/unit/endpoint/password/plain/wss4j/TestEntityEndpointRequestPasswordPlainWss4j.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bernardo-MG/spring-ws-security-soap-example/HEAD/src/test/java/com/bernardomg/example/swss/test/unit/endpoint/password/plain/wss4j/TestEntityEndpointRequestPasswordPlainWss4j.java -------------------------------------------------------------------------------- /src/test/java/com/bernardomg/example/swss/test/unit/endpoint/password/plain/xwss/TestEntityEndpointRequestPasswordPlainXwss.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bernardo-MG/spring-ws-security-soap-example/HEAD/src/test/java/com/bernardomg/example/swss/test/unit/endpoint/password/plain/xwss/TestEntityEndpointRequestPasswordPlainXwss.java -------------------------------------------------------------------------------- /src/test/java/com/bernardomg/example/swss/test/util/SoapMessageUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bernardo-MG/spring-ws-security-soap-example/HEAD/src/test/java/com/bernardomg/example/swss/test/util/SoapMessageUtils.java -------------------------------------------------------------------------------- /src/test/java/com/bernardomg/example/swss/test/util/config/context/ClientWss4jContextPaths.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bernardo-MG/spring-ws-security-soap-example/HEAD/src/test/java/com/bernardomg/example/swss/test/util/config/context/ClientWss4jContextPaths.java -------------------------------------------------------------------------------- /src/test/java/com/bernardomg/example/swss/test/util/config/context/ClientXwssContextPaths.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bernardo-MG/spring-ws-security-soap-example/HEAD/src/test/java/com/bernardomg/example/swss/test/util/config/context/ClientXwssContextPaths.java -------------------------------------------------------------------------------- /src/test/java/com/bernardomg/example/swss/test/util/config/context/ServletContextPaths.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bernardo-MG/spring-ws-security-soap-example/HEAD/src/test/java/com/bernardomg/example/swss/test/util/config/context/ServletContextPaths.java -------------------------------------------------------------------------------- /src/test/java/com/bernardomg/example/swss/test/util/config/context/ServletWss4jContextPaths.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bernardo-MG/spring-ws-security-soap-example/HEAD/src/test/java/com/bernardomg/example/swss/test/util/config/context/ServletWss4jContextPaths.java -------------------------------------------------------------------------------- /src/test/java/com/bernardomg/example/swss/test/util/config/context/ServletXwssContextPaths.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bernardo-MG/spring-ws-security-soap-example/HEAD/src/test/java/com/bernardomg/example/swss/test/util/config/context/ServletXwssContextPaths.java -------------------------------------------------------------------------------- /src/test/java/com/bernardomg/example/swss/test/util/config/context/TestContextPaths.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bernardo-MG/spring-ws-security-soap-example/HEAD/src/test/java/com/bernardomg/example/swss/test/util/config/context/TestContextPaths.java -------------------------------------------------------------------------------- /src/test/java/com/bernardomg/example/swss/test/util/config/properties/EndpointPropertiesPaths.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bernardo-MG/spring-ws-security-soap-example/HEAD/src/test/java/com/bernardomg/example/swss/test/util/config/properties/EndpointPropertiesPaths.java -------------------------------------------------------------------------------- /src/test/java/com/bernardomg/example/swss/test/util/config/properties/EndpointWss4jPropertiesPaths.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bernardo-MG/spring-ws-security-soap-example/HEAD/src/test/java/com/bernardomg/example/swss/test/util/config/properties/EndpointWss4jPropertiesPaths.java -------------------------------------------------------------------------------- /src/test/java/com/bernardomg/example/swss/test/util/config/properties/EndpointXwssPropertiesPaths.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bernardo-MG/spring-ws-security-soap-example/HEAD/src/test/java/com/bernardomg/example/swss/test/util/config/properties/EndpointXwssPropertiesPaths.java -------------------------------------------------------------------------------- /src/test/java/com/bernardomg/example/swss/test/util/config/properties/InterceptorWss4jPropertiesPaths.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bernardo-MG/spring-ws-security-soap-example/HEAD/src/test/java/com/bernardomg/example/swss/test/util/config/properties/InterceptorWss4jPropertiesPaths.java -------------------------------------------------------------------------------- /src/test/java/com/bernardomg/example/swss/test/util/config/properties/InterceptorXwssPropertiesPaths.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bernardo-MG/spring-ws-security-soap-example/HEAD/src/test/java/com/bernardomg/example/swss/test/util/config/properties/InterceptorXwssPropertiesPaths.java -------------------------------------------------------------------------------- /src/test/java/com/bernardomg/example/swss/test/util/config/properties/SoapPropertiesPaths.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bernardo-MG/spring-ws-security-soap-example/HEAD/src/test/java/com/bernardomg/example/swss/test/util/config/properties/SoapPropertiesPaths.java -------------------------------------------------------------------------------- /src/test/java/com/bernardomg/example/swss/test/util/config/properties/TestEndpointWss4jPropertiesPaths.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bernardo-MG/spring-ws-security-soap-example/HEAD/src/test/java/com/bernardomg/example/swss/test/util/config/properties/TestEndpointWss4jPropertiesPaths.java -------------------------------------------------------------------------------- /src/test/java/com/bernardomg/example/swss/test/util/config/properties/TestEndpointXwssPropertiesPaths.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bernardo-MG/spring-ws-security-soap-example/HEAD/src/test/java/com/bernardomg/example/swss/test/util/config/properties/TestEndpointXwssPropertiesPaths.java -------------------------------------------------------------------------------- /src/test/java/com/bernardomg/example/swss/test/util/config/properties/TestPropertiesPaths.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bernardo-MG/spring-ws-security-soap-example/HEAD/src/test/java/com/bernardomg/example/swss/test/util/config/properties/TestPropertiesPaths.java -------------------------------------------------------------------------------- /src/test/java/com/bernardomg/example/swss/test/util/factory/SecureSoapMessages.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bernardo-MG/spring-ws-security-soap-example/HEAD/src/test/java/com/bernardomg/example/swss/test/util/factory/SecureSoapMessages.java -------------------------------------------------------------------------------- /src/test/java/com/bernardomg/example/swss/test/util/factory/SoapActionRequestCreators.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bernardo-MG/spring-ws-security-soap-example/HEAD/src/test/java/com/bernardomg/example/swss/test/util/factory/SoapActionRequestCreators.java -------------------------------------------------------------------------------- /src/test/java/com/bernardomg/example/swss/test/util/factory/WebServiceMockFactory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bernardo-MG/spring-ws-security-soap-example/HEAD/src/test/java/com/bernardomg/example/swss/test/util/factory/WebServiceMockFactory.java -------------------------------------------------------------------------------- /src/test/java/com/bernardomg/example/swss/test/util/test/integration/client/AbstractITEntityClient.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bernardo-MG/spring-ws-security-soap-example/HEAD/src/test/java/com/bernardomg/example/swss/test/util/test/integration/client/AbstractITEntityClient.java -------------------------------------------------------------------------------- /src/test/java/com/bernardomg/example/swss/test/util/test/integration/client/AbstractITEntityClientInvalid.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bernardo-MG/spring-ws-security-soap-example/HEAD/src/test/java/com/bernardomg/example/swss/test/util/test/integration/client/AbstractITEntityClientInvalid.java -------------------------------------------------------------------------------- /src/test/java/com/bernardomg/example/swss/test/util/test/integration/endpoint/AbstractITEndpoint.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bernardo-MG/spring-ws-security-soap-example/HEAD/src/test/java/com/bernardomg/example/swss/test/util/test/integration/endpoint/AbstractITEndpoint.java -------------------------------------------------------------------------------- /src/test/java/com/bernardomg/example/swss/test/util/test/unit/client/AbstractTestEntityClient.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bernardo-MG/spring-ws-security-soap-example/HEAD/src/test/java/com/bernardomg/example/swss/test/util/test/unit/client/AbstractTestEntityClient.java -------------------------------------------------------------------------------- /src/test/java/com/bernardomg/example/swss/test/util/test/unit/client/AbstractTestEntityClientEnvelope.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bernardo-MG/spring-ws-security-soap-example/HEAD/src/test/java/com/bernardomg/example/swss/test/util/test/unit/client/AbstractTestEntityClientEnvelope.java -------------------------------------------------------------------------------- /src/test/java/com/bernardomg/example/swss/test/util/test/unit/client/AbstractTestEntityClientHeader.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bernardo-MG/spring-ws-security-soap-example/HEAD/src/test/java/com/bernardomg/example/swss/test/util/test/unit/client/AbstractTestEntityClientHeader.java -------------------------------------------------------------------------------- /src/test/java/com/bernardomg/example/swss/test/util/test/unit/endpoint/AbstractTestEndpoint.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bernardo-MG/spring-ws-security-soap-example/HEAD/src/test/java/com/bernardomg/example/swss/test/util/test/unit/endpoint/AbstractTestEndpoint.java -------------------------------------------------------------------------------- /src/test/java/com/bernardomg/example/swss/test/util/test/unit/endpoint/AbstractTestEntityEndpointRequest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bernardo-MG/spring-ws-security-soap-example/HEAD/src/test/java/com/bernardomg/example/swss/test/util/test/unit/endpoint/AbstractTestEntityEndpointRequest.java -------------------------------------------------------------------------------- /src/test/resources/config/endpoint/test-endpoint-encryption-wss4j.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bernardo-MG/spring-ws-security-soap-example/HEAD/src/test/resources/config/endpoint/test-endpoint-encryption-wss4j.properties -------------------------------------------------------------------------------- /src/test/resources/config/endpoint/test-endpoint-encryption-xwss.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bernardo-MG/spring-ws-security-soap-example/HEAD/src/test/resources/config/endpoint/test-endpoint-encryption-xwss.properties -------------------------------------------------------------------------------- /src/test/resources/config/endpoint/test-endpoint-password-digest-wss4j.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bernardo-MG/spring-ws-security-soap-example/HEAD/src/test/resources/config/endpoint/test-endpoint-password-digest-wss4j.properties -------------------------------------------------------------------------------- /src/test/resources/config/endpoint/test-endpoint-password-digest-xwss.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bernardo-MG/spring-ws-security-soap-example/HEAD/src/test/resources/config/endpoint/test-endpoint-password-digest-xwss.properties -------------------------------------------------------------------------------- /src/test/resources/config/endpoint/test-endpoint-password-plain-wss4j.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bernardo-MG/spring-ws-security-soap-example/HEAD/src/test/resources/config/endpoint/test-endpoint-password-plain-wss4j.properties -------------------------------------------------------------------------------- /src/test/resources/config/endpoint/test-endpoint-password-plain-xwss.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bernardo-MG/spring-ws-security-soap-example/HEAD/src/test/resources/config/endpoint/test-endpoint-password-plain-xwss.properties -------------------------------------------------------------------------------- /src/test/resources/config/endpoint/test-endpoint-signature-wss4j.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bernardo-MG/spring-ws-security-soap-example/HEAD/src/test/resources/config/endpoint/test-endpoint-signature-wss4j.properties -------------------------------------------------------------------------------- /src/test/resources/config/endpoint/test-endpoint-signature-xwss.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bernardo-MG/spring-ws-security-soap-example/HEAD/src/test/resources/config/endpoint/test-endpoint-signature-xwss.properties -------------------------------------------------------------------------------- /src/test/resources/config/endpoint/test-endpoint-unsecure.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bernardo-MG/spring-ws-security-soap-example/HEAD/src/test/resources/config/endpoint/test-endpoint-unsecure.properties -------------------------------------------------------------------------------- /src/test/resources/config/endpoint/test-wsdl.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bernardo-MG/spring-ws-security-soap-example/HEAD/src/test/resources/config/endpoint/test-wsdl.properties -------------------------------------------------------------------------------- /src/test/resources/config/security/test-security-password-digest-invalid.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bernardo-MG/spring-ws-security-soap-example/HEAD/src/test/resources/config/security/test-security-password-digest-invalid.properties -------------------------------------------------------------------------------- /src/test/resources/config/security/test-security-password-plain-invalid.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bernardo-MG/spring-ws-security-soap-example/HEAD/src/test/resources/config/security/test-security-password-plain-invalid.properties -------------------------------------------------------------------------------- /src/test/resources/config/soap/test-soap-encryption-wss4j.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bernardo-MG/spring-ws-security-soap-example/HEAD/src/test/resources/config/soap/test-soap-encryption-wss4j.properties -------------------------------------------------------------------------------- /src/test/resources/config/soap/test-soap-encryption-xwss.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bernardo-MG/spring-ws-security-soap-example/HEAD/src/test/resources/config/soap/test-soap-encryption-xwss.properties -------------------------------------------------------------------------------- /src/test/resources/config/soap/test-soap-password-digest.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bernardo-MG/spring-ws-security-soap-example/HEAD/src/test/resources/config/soap/test-soap-password-digest.properties -------------------------------------------------------------------------------- /src/test/resources/config/soap/test-soap-password-plain.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bernardo-MG/spring-ws-security-soap-example/HEAD/src/test/resources/config/soap/test-soap-password-plain.properties -------------------------------------------------------------------------------- /src/test/resources/config/soap/test-soap-signature.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bernardo-MG/spring-ws-security-soap-example/HEAD/src/test/resources/config/soap/test-soap-signature.properties -------------------------------------------------------------------------------- /src/test/resources/config/soap/test-soap-unsecure.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bernardo-MG/spring-ws-security-soap-example/HEAD/src/test/resources/config/soap/test-soap-unsecure.properties -------------------------------------------------------------------------------- /src/test/resources/config/test-entity.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bernardo-MG/spring-ws-security-soap-example/HEAD/src/test/resources/config/test-entity.properties -------------------------------------------------------------------------------- /src/test/resources/config/test-web-service.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bernardo-MG/spring-ws-security-soap-example/HEAD/src/test/resources/config/test-web-service.properties -------------------------------------------------------------------------------- /src/test/resources/config/user/test-user-invalid.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bernardo-MG/spring-ws-security-soap-example/HEAD/src/test/resources/config/user/test-user-invalid.properties -------------------------------------------------------------------------------- /src/test/resources/config/user/test-user.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bernardo-MG/spring-ws-security-soap-example/HEAD/src/test/resources/config/user/test-user.properties -------------------------------------------------------------------------------- /src/test/resources/context/endpoint/password/digest/wss4j/test-endpoint-password-digest-wss4j.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bernardo-MG/spring-ws-security-soap-example/HEAD/src/test/resources/context/endpoint/password/digest/wss4j/test-endpoint-password-digest-wss4j.xml -------------------------------------------------------------------------------- /src/test/resources/context/endpoint/password/digest/xwss/test-endpoint-password-digest-xwss.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bernardo-MG/spring-ws-security-soap-example/HEAD/src/test/resources/context/endpoint/password/digest/xwss/test-endpoint-password-digest-xwss.xml -------------------------------------------------------------------------------- /src/test/resources/context/endpoint/password/plain/wss4j/test-endpoint-password-plain-wss4j.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bernardo-MG/spring-ws-security-soap-example/HEAD/src/test/resources/context/endpoint/password/plain/wss4j/test-endpoint-password-plain-wss4j.xml -------------------------------------------------------------------------------- /src/test/resources/context/endpoint/password/plain/xwss/test-endpoint-password-plain-xwss.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bernardo-MG/spring-ws-security-soap-example/HEAD/src/test/resources/context/endpoint/password/plain/xwss/test-endpoint-password-plain-xwss.xml -------------------------------------------------------------------------------- /src/test/resources/context/interceptor/password/digest/wss4j/test-interceptor-password-digest-wss4j.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bernardo-MG/spring-ws-security-soap-example/HEAD/src/test/resources/context/interceptor/password/digest/wss4j/test-interceptor-password-digest-wss4j.xml -------------------------------------------------------------------------------- /src/test/resources/context/interceptor/password/digest/xwss/test-interceptor-password-digest-xwss.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bernardo-MG/spring-ws-security-soap-example/HEAD/src/test/resources/context/interceptor/password/digest/xwss/test-interceptor-password-digest-xwss.xml -------------------------------------------------------------------------------- /src/test/resources/context/interceptor/password/plain/wss4j/test-interceptor-password-plain-wss4j.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bernardo-MG/spring-ws-security-soap-example/HEAD/src/test/resources/context/interceptor/password/plain/wss4j/test-interceptor-password-plain-wss4j.xml -------------------------------------------------------------------------------- /src/test/resources/context/interceptor/password/plain/xwss/test-interceptor-password-plain-xwss.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bernardo-MG/spring-ws-security-soap-example/HEAD/src/test/resources/context/interceptor/password/plain/xwss/test-interceptor-password-plain-xwss.xml -------------------------------------------------------------------------------- /src/test/resources/context/servlet/password/digest/wss4j/test-servlet-password-digest-wss4j.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bernardo-MG/spring-ws-security-soap-example/HEAD/src/test/resources/context/servlet/password/digest/wss4j/test-servlet-password-digest-wss4j.xml -------------------------------------------------------------------------------- /src/test/resources/context/servlet/password/digest/xwss/test-servlet-password-digest-xwss.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bernardo-MG/spring-ws-security-soap-example/HEAD/src/test/resources/context/servlet/password/digest/xwss/test-servlet-password-digest-xwss.xml -------------------------------------------------------------------------------- /src/test/resources/context/servlet/password/plain/wss4j/test-servlet-password-plain-wss4j.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bernardo-MG/spring-ws-security-soap-example/HEAD/src/test/resources/context/servlet/password/plain/wss4j/test-servlet-password-plain-wss4j.xml -------------------------------------------------------------------------------- /src/test/resources/context/servlet/password/plain/xwss/test-servlet-password-plain-xwss.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bernardo-MG/spring-ws-security-soap-example/HEAD/src/test/resources/context/servlet/password/plain/xwss/test-servlet-password-plain-xwss.xml -------------------------------------------------------------------------------- /src/test/resources/context/test-default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bernardo-MG/spring-ws-security-soap-example/HEAD/src/test/resources/context/test-default.xml -------------------------------------------------------------------------------- /src/test/resources/context/test-web-service.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bernardo-MG/spring-ws-security-soap-example/HEAD/src/test/resources/context/test-web-service.xml -------------------------------------------------------------------------------- /src/test/resources/log4j2-test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bernardo-MG/spring-ws-security-soap-example/HEAD/src/test/resources/log4j2-test.xml -------------------------------------------------------------------------------- /src/test/resources/soap/payload/request/payload-request-invalid.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bernardo-MG/spring-ws-security-soap-example/HEAD/src/test/resources/soap/payload/request/payload-request-invalid.xml -------------------------------------------------------------------------------- /src/test/resources/soap/payload/request/payload-request.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bernardo-MG/spring-ws-security-soap-example/HEAD/src/test/resources/soap/payload/request/payload-request.xml -------------------------------------------------------------------------------- /src/test/resources/soap/payload/response/payload-response-invalid.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bernardo-MG/spring-ws-security-soap-example/HEAD/src/test/resources/soap/payload/response/payload-response-invalid.xml -------------------------------------------------------------------------------- /src/test/resources/soap/payload/response/payload-response.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bernardo-MG/spring-ws-security-soap-example/HEAD/src/test/resources/soap/payload/response/payload-response.xml -------------------------------------------------------------------------------- /src/test/resources/soap/request/request-encryption-wss4j.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bernardo-MG/spring-ws-security-soap-example/HEAD/src/test/resources/soap/request/request-encryption-wss4j.xml -------------------------------------------------------------------------------- /src/test/resources/soap/request/request-encryption-xwss.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bernardo-MG/spring-ws-security-soap-example/HEAD/src/test/resources/soap/request/request-encryption-xwss.xml -------------------------------------------------------------------------------- /src/test/resources/soap/request/request-not-secured-invalid.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bernardo-MG/spring-ws-security-soap-example/HEAD/src/test/resources/soap/request/request-not-secured-invalid.xml -------------------------------------------------------------------------------- /src/test/resources/soap/request/request-not-secured.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bernardo-MG/spring-ws-security-soap-example/HEAD/src/test/resources/soap/request/request-not-secured.xml -------------------------------------------------------------------------------- /src/test/resources/soap/request/request-password-digest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bernardo-MG/spring-ws-security-soap-example/HEAD/src/test/resources/soap/request/request-password-digest.xml -------------------------------------------------------------------------------- /src/test/resources/soap/request/request-password-plain.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bernardo-MG/spring-ws-security-soap-example/HEAD/src/test/resources/soap/request/request-password-plain.xml -------------------------------------------------------------------------------- /src/test/resources/soap/request/request-signature.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bernardo-MG/spring-ws-security-soap-example/HEAD/src/test/resources/soap/request/request-signature.xml -------------------------------------------------------------------------------- /src/test/resources/soap/request/template/request-encryption.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bernardo-MG/spring-ws-security-soap-example/HEAD/src/test/resources/soap/request/template/request-encryption.ftl -------------------------------------------------------------------------------- /src/test/resources/soap/request/template/request-password-digest.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bernardo-MG/spring-ws-security-soap-example/HEAD/src/test/resources/soap/request/template/request-password-digest.ftl -------------------------------------------------------------------------------- /src/test/resources/soap/request/template/request-password-plain.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bernardo-MG/spring-ws-security-soap-example/HEAD/src/test/resources/soap/request/template/request-password-plain.ftl -------------------------------------------------------------------------------- /src/test/resources/soap/request/template/request-signature.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bernardo-MG/spring-ws-security-soap-example/HEAD/src/test/resources/soap/request/template/request-signature.ftl --------------------------------------------------------------------------------