gitextract_cqglr56k/ ├── .gitignore ├── .travis.yml ├── README.md ├── pom.xml ├── soap-builder/ │ ├── pom.xml │ └── src/ │ ├── main/ │ │ ├── java/ │ │ │ └── org/ │ │ │ └── reficio/ │ │ │ └── ws/ │ │ │ └── builder/ │ │ │ ├── SoapBuilder.java │ │ │ ├── SoapBuilderFinder.java │ │ │ ├── SoapOperation.java │ │ │ ├── SoapOperationBuilder.java │ │ │ ├── SoapOperationFinder.java │ │ │ └── core/ │ │ │ ├── SoapBuilderImpl.java │ │ │ ├── SoapOperationFinderImpl.java │ │ │ ├── SoapOperationImpl.java │ │ │ ├── SoapUtils.java │ │ │ └── Wsdl.java │ │ └── resources/ │ │ └── xsds/ │ │ ├── XMLSchema.xsd │ │ ├── soapEncoding.xsd │ │ ├── soapEncoding12.xsd │ │ ├── soapEnvelope.xsd │ │ ├── soapEnvelope12.xsd │ │ ├── swaref.xsd │ │ ├── xmime200411.xsd │ │ ├── xmime200505.xsd │ │ ├── xml.xsd │ │ └── xop.xsd │ └── test/ │ ├── java/ │ │ └── org/ │ │ └── reficio/ │ │ └── ws/ │ │ └── builder/ │ │ ├── DefinitionSaveTest.java │ │ ├── MessageComplianceTest.java │ │ ├── ServiceComplianceTest.java │ │ ├── SoapBuilderImplTest.java │ │ ├── SoapOperationFinderImplTest.java │ │ └── WsdlTest.java │ └── resources/ │ ├── builder/ │ │ └── snowboard.wsdl │ ├── log4j.xml │ ├── messages/ │ │ ├── EmptyFault11.xml │ │ ├── EmptyFault12.xml │ │ ├── EmptyMessage11.xml │ │ ├── EmptyMessage12.xml │ │ ├── FaultVersionMismatch11.xml │ │ └── FaultVersionMismatch12.xml │ ├── services/ │ │ ├── test01/ │ │ │ ├── TestService.wsdl │ │ │ ├── operations/ │ │ │ │ ├── TestServiceSoap/ │ │ │ │ │ ├── Copy.request.xml │ │ │ │ │ ├── Copy.response.xml │ │ │ │ │ ├── Delete.request.xml │ │ │ │ │ ├── Delete.response.xml │ │ │ │ │ ├── DeleteChildren.request.xml │ │ │ │ │ ├── DeleteChildren.response.xml │ │ │ │ │ ├── DeleteVersion.request.xml │ │ │ │ │ ├── DeleteVersion.response.xml │ │ │ │ │ ├── FindPagesWithCriteria.request.xml │ │ │ │ │ ├── FindPagesWithCriteria.response.xml │ │ │ │ │ ├── GetChildren.request.xml │ │ │ │ │ ├── GetChildren.response.xml │ │ │ │ │ ├── GetDefaultPageData.request.xml │ │ │ │ │ ├── GetDefaultPageData.response.xml │ │ │ │ │ ├── GetPage.request.xml │ │ │ │ │ ├── GetPage.response.xml │ │ │ │ │ ├── Move.request.xml │ │ │ │ │ ├── Move.response.xml │ │ │ │ │ ├── Ping.request.xml │ │ │ │ │ ├── Ping.response.xml │ │ │ │ │ ├── Save.request.xml │ │ │ │ │ └── Save.response.xml │ │ │ │ └── soap-version.txt │ │ │ ├── readme.txt │ │ │ ├── testservice1.xsd │ │ │ └── testservice2.xsd │ │ ├── test02/ │ │ │ ├── TestService.wsdl │ │ │ ├── operations/ │ │ │ │ ├── TestServiceSoap/ │ │ │ │ │ ├── Copy.request.xml │ │ │ │ │ ├── Copy.response.xml │ │ │ │ │ ├── Delete.request.xml │ │ │ │ │ ├── Delete.response.xml │ │ │ │ │ ├── DeleteChildren.request.xml │ │ │ │ │ ├── DeleteChildren.response.xml │ │ │ │ │ ├── DeleteVersion.request.xml │ │ │ │ │ ├── DeleteVersion.response.xml │ │ │ │ │ ├── FindPagesWithCriteria.request.xml │ │ │ │ │ ├── FindPagesWithCriteria.response.xml │ │ │ │ │ ├── GetChildren.request.xml │ │ │ │ │ ├── GetChildren.response.xml │ │ │ │ │ ├── GetDefaultPageData.request.xml │ │ │ │ │ ├── GetDefaultPageData.response.xml │ │ │ │ │ ├── GetPage.request.xml │ │ │ │ │ ├── GetPage.response.xml │ │ │ │ │ ├── Move.request.xml │ │ │ │ │ ├── Move.response.xml │ │ │ │ │ ├── Ping.request.xml │ │ │ │ │ ├── Ping.response.xml │ │ │ │ │ ├── Save.request.xml │ │ │ │ │ └── Save.response.xml │ │ │ │ └── soap-version.txt │ │ │ ├── readme.txt │ │ │ ├── testservice1.xsd │ │ │ └── testservice2.xsd │ │ ├── test03/ │ │ │ ├── TestService.wsdl │ │ │ ├── operations/ │ │ │ │ ├── TestServiceSoap/ │ │ │ │ │ ├── Copy.request.xml │ │ │ │ │ ├── Copy.response.xml │ │ │ │ │ ├── Delete.request.xml │ │ │ │ │ ├── Delete.response.xml │ │ │ │ │ ├── DeleteChildren.request.xml │ │ │ │ │ ├── DeleteChildren.response.xml │ │ │ │ │ ├── DeleteVersion.request.xml │ │ │ │ │ ├── DeleteVersion.response.xml │ │ │ │ │ ├── FindPagesWithCriteria.request.xml │ │ │ │ │ ├── FindPagesWithCriteria.response.xml │ │ │ │ │ ├── GetChildren.request.xml │ │ │ │ │ ├── GetChildren.response.xml │ │ │ │ │ ├── GetDefaultPageData.request.xml │ │ │ │ │ ├── GetDefaultPageData.response.xml │ │ │ │ │ ├── GetPage.request.xml │ │ │ │ │ ├── GetPage.response.xml │ │ │ │ │ ├── Move.request.xml │ │ │ │ │ ├── Move.response.xml │ │ │ │ │ ├── Ping.request.xml │ │ │ │ │ ├── Ping.response.xml │ │ │ │ │ ├── Save.request.xml │ │ │ │ │ └── Save.response.xml │ │ │ │ └── soap-version.txt │ │ │ ├── readme.txt │ │ │ ├── testservice1.xsd │ │ │ └── testservice2.xsd │ │ ├── test04/ │ │ │ ├── TestService.wsdl │ │ │ ├── operations/ │ │ │ │ ├── TestServiceSoap/ │ │ │ │ │ ├── Copy.request.xml │ │ │ │ │ ├── Copy.response.xml │ │ │ │ │ ├── Delete.request.xml │ │ │ │ │ ├── Delete.response.xml │ │ │ │ │ ├── DeleteChildren.request.xml │ │ │ │ │ ├── DeleteChildren.response.xml │ │ │ │ │ ├── DeleteVersion.request.xml │ │ │ │ │ ├── DeleteVersion.response.xml │ │ │ │ │ ├── FindPagesWithCriteria.request.xml │ │ │ │ │ ├── FindPagesWithCriteria.response.xml │ │ │ │ │ ├── GetChildren.request.xml │ │ │ │ │ ├── GetChildren.response.xml │ │ │ │ │ ├── GetDefaultPageData.request.xml │ │ │ │ │ ├── GetDefaultPageData.response.xml │ │ │ │ │ ├── GetPage.request.xml │ │ │ │ │ ├── GetPage.response.xml │ │ │ │ │ ├── Move.request.xml │ │ │ │ │ ├── Move.response.xml │ │ │ │ │ ├── Ping.request.xml │ │ │ │ │ ├── Ping.response.xml │ │ │ │ │ ├── Save.request.xml │ │ │ │ │ └── Save.response.xml │ │ │ │ └── soap-version.txt │ │ │ ├── readme.txt │ │ │ ├── testservice1.xsd │ │ │ └── testservice2.xsd │ │ ├── test05/ │ │ │ ├── TestBinding.wsdl │ │ │ ├── TestService.wsdl │ │ │ ├── operations/ │ │ │ │ ├── TestServiceSoap/ │ │ │ │ │ ├── Copy.request.xml │ │ │ │ │ ├── Copy.response.xml │ │ │ │ │ ├── Delete.request.xml │ │ │ │ │ ├── Delete.response.xml │ │ │ │ │ ├── DeleteChildren.request.xml │ │ │ │ │ ├── DeleteChildren.response.xml │ │ │ │ │ ├── DeleteVersion.request.xml │ │ │ │ │ ├── DeleteVersion.response.xml │ │ │ │ │ ├── FindPagesWithCriteria.request.xml │ │ │ │ │ ├── FindPagesWithCriteria.response.xml │ │ │ │ │ ├── GetChildren.request.xml │ │ │ │ │ ├── GetChildren.response.xml │ │ │ │ │ ├── GetDefaultPageData.request.xml │ │ │ │ │ ├── GetDefaultPageData.response.xml │ │ │ │ │ ├── GetPage.request.xml │ │ │ │ │ ├── GetPage.response.xml │ │ │ │ │ ├── Move.request.xml │ │ │ │ │ ├── Move.response.xml │ │ │ │ │ ├── Ping.request.xml │ │ │ │ │ ├── Ping.response.xml │ │ │ │ │ ├── Save.request.xml │ │ │ │ │ └── Save.response.xml │ │ │ │ └── soap-version.txt │ │ │ ├── readme.txt │ │ │ ├── testservice1.xsd │ │ │ └── testservice2.xsd │ │ ├── test06/ │ │ │ ├── TestService.wsdl │ │ │ ├── operations/ │ │ │ │ ├── TestServiceSoap/ │ │ │ │ │ ├── Copy.request.xml │ │ │ │ │ ├── Copy.response.xml │ │ │ │ │ ├── Delete.request.xml │ │ │ │ │ ├── Delete.response.xml │ │ │ │ │ ├── DeleteChildren.request.xml │ │ │ │ │ ├── DeleteChildren.response.xml │ │ │ │ │ ├── DeleteVersion.request.xml │ │ │ │ │ ├── DeleteVersion.response.xml │ │ │ │ │ ├── FindPagesWithCriteria.request.xml │ │ │ │ │ ├── FindPagesWithCriteria.response.xml │ │ │ │ │ ├── GetChildren.request.xml │ │ │ │ │ ├── GetChildren.response.xml │ │ │ │ │ ├── GetDefaultPageData.request.xml │ │ │ │ │ ├── GetDefaultPageData.response.xml │ │ │ │ │ ├── GetPage.request.xml │ │ │ │ │ ├── GetPage.response.xml │ │ │ │ │ ├── Move.request.xml │ │ │ │ │ ├── Move.response.xml │ │ │ │ │ ├── Ping.request.xml │ │ │ │ │ ├── Ping.response.xml │ │ │ │ │ ├── Save.request.xml │ │ │ │ │ └── Save.response.xml │ │ │ │ └── soap-version.txt │ │ │ ├── readme.txt │ │ │ └── wsdls/ │ │ │ ├── TestBinding.wsdl │ │ │ └── xsds/ │ │ │ ├── sub/ │ │ │ │ └── testservice2.xsd │ │ │ └── testservice1.xsd │ │ ├── test07/ │ │ │ ├── TestService.wsdl │ │ │ ├── operations/ │ │ │ │ ├── TestServiceSoap/ │ │ │ │ │ ├── Copy.request.xml │ │ │ │ │ ├── Copy.response.xml │ │ │ │ │ ├── Delete.request.xml │ │ │ │ │ ├── Delete.response.xml │ │ │ │ │ ├── DeleteChildren.request.xml │ │ │ │ │ ├── DeleteChildren.response.xml │ │ │ │ │ ├── DeleteVersion.request.xml │ │ │ │ │ ├── DeleteVersion.response.xml │ │ │ │ │ ├── FindPagesWithCriteria.request.xml │ │ │ │ │ ├── FindPagesWithCriteria.response.xml │ │ │ │ │ ├── GetChildren.request.xml │ │ │ │ │ ├── GetChildren.response.xml │ │ │ │ │ ├── GetDefaultPageData.request.xml │ │ │ │ │ ├── GetDefaultPageData.response.xml │ │ │ │ │ ├── GetPage.request.xml │ │ │ │ │ ├── GetPage.response.xml │ │ │ │ │ ├── Move.request.xml │ │ │ │ │ ├── Move.response.xml │ │ │ │ │ ├── Ping.request.xml │ │ │ │ │ ├── Ping.response.xml │ │ │ │ │ ├── Save.request.xml │ │ │ │ │ └── Save.response.xml │ │ │ │ └── soap-version.txt │ │ │ ├── readme.txt │ │ │ └── wsdls/ │ │ │ ├── TestBinding.wsdl │ │ │ └── xsds/ │ │ │ ├── sub/ │ │ │ │ └── testservice2.xsd │ │ │ └── testservice1.xsd │ │ ├── test08/ │ │ │ ├── TestService.wsdl │ │ │ ├── operations/ │ │ │ │ ├── TestServiceSoap/ │ │ │ │ │ ├── Copy.request.xml │ │ │ │ │ ├── Copy.response.xml │ │ │ │ │ ├── Delete.request.xml │ │ │ │ │ ├── Delete.response.xml │ │ │ │ │ ├── DeleteChildren.request.xml │ │ │ │ │ ├── DeleteChildren.response.xml │ │ │ │ │ ├── DeleteVersion.request.xml │ │ │ │ │ ├── DeleteVersion.response.xml │ │ │ │ │ ├── FindPagesWithCriteria.request.xml │ │ │ │ │ ├── FindPagesWithCriteria.response.xml │ │ │ │ │ ├── GetChildren.request.xml │ │ │ │ │ ├── GetChildren.response.xml │ │ │ │ │ ├── GetDefaultPageData.request.xml │ │ │ │ │ ├── GetDefaultPageData.response.xml │ │ │ │ │ ├── GetPage.request.xml │ │ │ │ │ ├── GetPage.response.xml │ │ │ │ │ ├── Move.request.xml │ │ │ │ │ ├── Move.response.xml │ │ │ │ │ ├── Ping.request.xml │ │ │ │ │ ├── Ping.response.xml │ │ │ │ │ ├── Save.request.xml │ │ │ │ │ └── Save.response.xml │ │ │ │ └── soap-version.txt │ │ │ ├── readme.txt │ │ │ └── wsdls/ │ │ │ ├── TestBinding.wsdl │ │ │ ├── testservice2.xsd │ │ │ └── xsds/ │ │ │ └── testservice1.xsd │ │ ├── test09/ │ │ │ ├── TestService.wsdl │ │ │ ├── common.xsd │ │ │ ├── one.xsd │ │ │ ├── operations/ │ │ │ │ ├── Binding/ │ │ │ │ │ ├── Operation.request.xml │ │ │ │ │ └── Operation.response.xml │ │ │ │ └── soap-version.txt │ │ │ └── two.xsd │ │ ├── test10/ │ │ │ ├── TestService.wsdl │ │ │ ├── operations/ │ │ │ │ ├── TestServiceSoap/ │ │ │ │ │ ├── GetDefaultPageData.request.xml │ │ │ │ │ ├── GetDefaultPageData.response.xml │ │ │ │ │ ├── GetPage.request.xml │ │ │ │ │ └── GetPage.response.xml │ │ │ │ └── soap-version.txt │ │ │ ├── readme.txt │ │ │ ├── testservice1.xsd │ │ │ └── testservice2.xsd │ │ ├── test11/ │ │ │ ├── TestService.wsdl │ │ │ ├── operations/ │ │ │ │ ├── ADEC_MAST_Binding/ │ │ │ │ │ ├── doGetSummary.request.xml │ │ │ │ │ └── doGetSummary.response.xml │ │ │ │ └── soap-version.txt │ │ │ └── readme.txt │ │ ├── test12/ │ │ │ ├── TestService.wsdl │ │ │ ├── operations/ │ │ │ │ ├── IncrementServicePTSOAPBinding/ │ │ │ │ │ ├── process.request.xml │ │ │ │ │ └── process.response.xml │ │ │ │ └── soap-version.txt │ │ │ └── readme.txt │ │ ├── test13/ │ │ │ ├── TestService.wsdl │ │ │ ├── chameleon.xsd │ │ │ ├── operations/ │ │ │ │ ├── LinkageServiceSOAPBinding/ │ │ │ │ │ ├── addToSocialGroup.request.xml │ │ │ │ │ ├── addToSocialGroup.response.xml │ │ │ │ │ ├── createLink.request.xml │ │ │ │ │ ├── createLink.response.xml │ │ │ │ │ ├── createSocialGroup.request.xml │ │ │ │ │ ├── createSocialGroup.response.xml │ │ │ │ │ ├── readGroups.request.xml │ │ │ │ │ └── readGroups.response.xml │ │ │ │ ├── PersonaServiceSOAPBinding/ │ │ │ │ │ ├── deletePersona.request.xml │ │ │ │ │ ├── deletePersona.response.xml │ │ │ │ │ ├── readPersona.request.xml │ │ │ │ │ ├── readPersona.response.xml │ │ │ │ │ ├── readPersonas.request.xml │ │ │ │ │ ├── readPersonas.response.xml │ │ │ │ │ ├── storePersona.request.xml │ │ │ │ │ └── storePersona.response.xml │ │ │ │ └── soap-version.txt │ │ │ └── readme.txt │ │ ├── test14/ │ │ │ ├── TestService.wsdl │ │ │ └── operations/ │ │ │ ├── MakeFriendsSoapBinding/ │ │ │ │ ├── makeFriend.request.xml │ │ │ │ └── makeFriend.response.xml │ │ │ └── soap-version.txt │ │ ├── test15/ │ │ │ ├── TestService.wsdl │ │ │ ├── operations/ │ │ │ │ ├── StockQuoteSoapBinding/ │ │ │ │ │ ├── GetLastTradePrice.request.xml │ │ │ │ │ ├── GetLastTradePrice.response.xml │ │ │ │ │ ├── GetLastTradePrice2.request.xml │ │ │ │ │ └── GetLastTradePrice2.response.xml │ │ │ │ └── soap-version.txt │ │ │ └── stockquote-schema.xsd │ │ ├── test16/ │ │ │ ├── TestService.wsdl │ │ │ ├── operations/ │ │ │ │ ├── StockQuoteSoapBinding/ │ │ │ │ │ ├── GetLastTradePrice.request.xml │ │ │ │ │ └── GetLastTradePrice.response.xml │ │ │ │ └── soap-version.txt │ │ │ └── stockquote-schema.xsd │ │ ├── test17/ │ │ │ ├── TestService.wsdl │ │ │ ├── operations/ │ │ │ │ ├── StockQuoteSoapBinding/ │ │ │ │ │ ├── GetLastTradePrice.request.xml │ │ │ │ │ ├── GetLastTradePrice.response.xml │ │ │ │ │ ├── GetLastTradePrice2.request.xml │ │ │ │ │ └── GetLastTradePrice2.response.xml │ │ │ │ └── soap-version.txt │ │ │ └── stockquote-schema.xsd │ │ └── test18/ │ │ ├── TestService.wsdl │ │ └── operations/ │ │ ├── HelloWorldSoap/ │ │ │ ├── SayHelloWorld.request.xml │ │ │ └── SayHelloWorld.response.xml │ │ ├── HelloWorldSoap12/ │ │ │ ├── SayHelloWorld.request.xml │ │ │ └── SayHelloWorld.response.xml │ │ └── soap-version.txt │ └── wsdl/ │ ├── TestService.wsdl │ ├── testservice1.xsd │ └── testservice2.xsd ├── soap-client/ │ ├── pom.xml │ └── src/ │ ├── main/ │ │ └── java/ │ │ └── org/ │ │ └── reficio/ │ │ └── ws/ │ │ └── client/ │ │ ├── SoapClientException.java │ │ ├── TransmissionException.java │ │ ├── core/ │ │ │ ├── Security.java │ │ │ ├── SecurityFactory.java │ │ │ ├── SoapClient.java │ │ │ ├── SoapClientFactory.java │ │ │ └── SoapConstants.java │ │ └── ssl/ │ │ ├── MultiX509TrustManager.java │ │ └── SSLUtils.java │ └── test/ │ ├── java/ │ │ └── org/ │ │ └── reficio/ │ │ └── ws/ │ │ └── client/ │ │ └── SimpleClientTest.java │ └── resources/ │ └── log4j.xml ├── soap-common/ │ ├── pom.xml │ └── src/ │ ├── main/ │ │ └── java/ │ │ └── org/ │ │ └── reficio/ │ │ └── ws/ │ │ ├── SoapBuilderException.java │ │ ├── SoapContext.java │ │ ├── SoapException.java │ │ ├── SoapMultiValuesProvider.java │ │ ├── SoapValidationException.java │ │ ├── annotation/ │ │ │ └── ThreadSafe.java │ │ └── common/ │ │ ├── FileWriter.java │ │ ├── ResourceUtils.java │ │ ├── SimpleValuesProvider.java │ │ ├── Wsdl11Writer.java │ │ └── XmlUtils.java │ └── test/ │ ├── java/ │ │ └── org/ │ │ └── reficio/ │ │ └── ws/ │ │ └── common/ │ │ ├── ResourceLoaderTest.java │ │ ├── ResourceUtilsTest.java │ │ └── XmlComparator.java │ └── resources/ │ ├── my folder/ │ │ └── resource.txt │ └── org/ │ └── reficio/ │ └── ws/ │ └── common/ │ └── test/ │ └── soapEncoding.xsd ├── soap-examples/ │ ├── arquillian/ │ │ ├── pom.xml │ │ └── src/ │ │ └── test/ │ │ ├── java/ │ │ │ └── org/ │ │ │ └── reficio/ │ │ │ └── ws/ │ │ │ └── arquillian/ │ │ │ ├── Greeter.java │ │ │ ├── GreeterTest.java │ │ │ └── README.txt │ │ └── resources/ │ │ ├── log4j.xml │ │ └── wsdl/ │ │ └── currency-convertor.wsdl │ ├── pom.xml │ ├── quickstart/ │ │ ├── pom.xml │ │ └── src/ │ │ └── test/ │ │ ├── groovy/ │ │ │ └── org/ │ │ │ └── reficio/ │ │ │ └── ws/ │ │ │ └── quickstart/ │ │ │ └── QuickStart.groovy │ │ ├── java/ │ │ │ └── org/ │ │ │ └── reficio/ │ │ │ └── ws/ │ │ │ └── quickstart/ │ │ │ ├── SoapClientExamplesTest.java │ │ │ ├── SoapServerExamplesTest.java │ │ │ └── SpringExampleTest.java │ │ └── resources/ │ │ ├── applicationContext.xml │ │ ├── log4j.xml │ │ └── wsdl/ │ │ ├── currency-convertor.wsdl │ │ ├── stockquote-schema.xsd │ │ └── stockquote-service.wsdl │ └── testing/ │ ├── pom.xml │ └── src/ │ └── test/ │ ├── groovy/ │ │ └── org/ │ │ └── reficio/ │ │ └── sample/ │ │ ├── BankService.groovy │ │ ├── BankServiceImpl.groovy │ │ ├── testing/ │ │ │ ├── BalanceClientPlainTest.groovy │ │ │ ├── BalanceClientSpringTest.groovy │ │ │ └── ConverterServerTest.groovy │ │ └── util/ │ │ └── ExampleUtils.groovy │ └── resources/ │ ├── applicationContext.xml │ ├── log4j.xml │ └── wsdl/ │ └── currency-convertor.wsdl ├── soap-it/ │ ├── pom.xml │ └── src/ │ └── test/ │ ├── java/ │ │ └── org/ │ │ └── reficio/ │ │ └── ws/ │ │ └── it/ │ │ ├── AbstractCooperationTest.java │ │ ├── HttpCooperationTest.java │ │ ├── HttpProxyHttpCooperationTest.java │ │ ├── HttpProxyHttpsCooperationTest.java │ │ ├── HttpsCooperationTest.java │ │ ├── HttpsProxyHttpCooperationTest.java │ │ ├── HttpsProxyHttpsCooperationTest.java │ │ └── util/ │ │ ├── ClientBuilder.java │ │ ├── SslTunnel.java │ │ └── TestUtils.java │ └── resources/ │ ├── keystores/ │ │ ├── multi-cert-keystore/ │ │ │ ├── .keystore │ │ │ └── gen.sh │ │ └── single-cert-keystore/ │ │ ├── .keystore_1 │ │ ├── .keystore_2 │ │ └── gen.sh │ ├── log4j.xml │ ├── services/ │ │ ├── test01/ │ │ │ ├── TestService.wsdl │ │ │ ├── testservice1.xsd │ │ │ └── testservice2.xsd │ │ ├── test02/ │ │ │ ├── TestService.wsdl │ │ │ ├── testservice1.xsd │ │ │ └── testservice2.xsd │ │ ├── test03/ │ │ │ ├── TestService.wsdl │ │ │ ├── testservice1.xsd │ │ │ └── testservice2.xsd │ │ ├── test04/ │ │ │ ├── TestService.wsdl │ │ │ ├── testservice1.xsd │ │ │ └── testservice2.xsd │ │ ├── test05/ │ │ │ ├── TestBinding.wsdl │ │ │ ├── TestService.wsdl │ │ │ ├── testservice1.xsd │ │ │ └── testservice2.xsd │ │ ├── test06/ │ │ │ ├── TestService.wsdl │ │ │ └── wsdls/ │ │ │ ├── TestBinding.wsdl │ │ │ └── xsds/ │ │ │ ├── sub/ │ │ │ │ └── testservice2.xsd │ │ │ └── testservice1.xsd │ │ ├── test07/ │ │ │ ├── TestService.wsdl │ │ │ └── wsdls/ │ │ │ ├── TestBinding.wsdl │ │ │ └── xsds/ │ │ │ ├── sub/ │ │ │ │ └── testservice2.xsd │ │ │ └── testservice1.xsd │ │ ├── test08/ │ │ │ ├── TestService.wsdl │ │ │ └── wsdls/ │ │ │ ├── TestBinding.wsdl │ │ │ ├── testservice2.xsd │ │ │ └── xsds/ │ │ │ └── testservice1.xsd │ │ ├── test09/ │ │ │ ├── TestService.wsdl │ │ │ ├── common.xsd │ │ │ ├── one.xsd │ │ │ └── two.xsd │ │ ├── test10/ │ │ │ ├── TestService.wsdl │ │ │ ├── testservice1.xsd │ │ │ └── testservice2.xsd │ │ ├── test11/ │ │ │ └── TestService.wsdl │ │ ├── test12/ │ │ │ └── TestService.wsdl │ │ ├── test13/ │ │ │ ├── TestService.wsdl │ │ │ └── chameleon.xsd │ │ ├── test14/ │ │ │ └── TestService.wsdl │ │ ├── test15/ │ │ │ ├── TestService.wsdl │ │ │ └── stockquote-schema.xsd │ │ ├── test16/ │ │ │ ├── TestService.wsdl │ │ │ └── stockquote-schema.xsd │ │ ├── test17/ │ │ │ ├── TestService.wsdl │ │ │ └── stockquote-schema.xsd │ │ ├── test18/ │ │ │ └── TestService.wsdl │ │ ├── test19/ │ │ │ └── TestService.wsdl │ │ ├── test20/ │ │ │ └── TestService.wsdl │ │ ├── test22/ │ │ │ └── TestService.wsdl │ │ ├── test23/ │ │ │ └── TestService.wsdl │ │ ├── test25/ │ │ │ ├── TestService.wsdl │ │ │ └── info.txt │ │ ├── test26/ │ │ │ └── TestService.wsdl │ │ └── test27/ │ │ ├── TestService.wsdl │ │ └── info.txt │ └── wsdl/ │ ├── doc.literal/ │ │ ├── stockquote-schema.xsd │ │ └── stockquote-ws.wsdl │ ├── rpc.encoded/ │ │ ├── friend-ws.wsdl │ │ ├── stockquote-schema.xsd │ │ └── stockquote-ws.wsdl │ └── rpc.literal/ │ ├── stockquote-schema.xsd │ └── stockquote-ws.wsdl ├── soap-legacy/ │ ├── pom.xml │ └── src/ │ └── main/ │ ├── java/ │ │ └── org/ │ │ └── reficio/ │ │ └── ws/ │ │ └── legacy/ │ │ ├── AbstractSoapVersion.java │ │ ├── Constants.java │ │ ├── DefinitionLoader.java │ │ ├── SampleXmlUtil.java │ │ ├── SchemaDefinitionWrapper.java │ │ ├── SchemaLoader.java │ │ ├── SchemaUtils.java │ │ ├── SoapLegacyFacade.java │ │ ├── SoapMessageBuilder.java │ │ ├── SoapVersion.java │ │ ├── SoapVersion11.java │ │ ├── SoapVersion12.java │ │ ├── UrlSchemaLoader.java │ │ ├── WsdlContext.java │ │ ├── WsdlSettings.java │ │ ├── WsdlUtils.java │ │ ├── WsdlValidator.java │ │ └── XmlUtils.java │ └── resources/ │ ├── license.txt │ └── xsds/ │ ├── XMLSchema.xsd │ ├── soapEncoding.xsd │ ├── soapEncoding12.xsd │ ├── soapEnvelope.xsd │ ├── soapEnvelope12.xsd │ ├── swaref.xsd │ ├── xmime200411.xsd │ ├── xmime200505.xsd │ ├── xml.xsd │ └── xop.xsd ├── soap-server/ │ ├── pom.xml │ └── src/ │ ├── main/ │ │ ├── java/ │ │ │ └── org/ │ │ │ └── reficio/ │ │ │ └── ws/ │ │ │ └── server/ │ │ │ ├── OperationNotFoundException.java │ │ │ ├── ServiceRegistrationException.java │ │ │ ├── SoapServerException.java │ │ │ ├── core/ │ │ │ │ ├── SoapServer.java │ │ │ │ ├── SoapServerConstants.java │ │ │ │ └── SoapServerFactory.java │ │ │ ├── endpoint/ │ │ │ │ ├── ContextEndpointAdapter.java │ │ │ │ ├── ContextPayloadEndpoint.java │ │ │ │ ├── GenericContextDomEndpoint.java │ │ │ │ ├── GenericEndpointMapping.java │ │ │ │ └── GenericSoapMessage.java │ │ │ ├── matcher/ │ │ │ │ ├── AggregatingVisitor.java │ │ │ │ ├── BindingOperationVisitor.java │ │ │ │ └── SoapOperationMatcher.java │ │ │ ├── protocol/ │ │ │ │ ├── GenericSoapMessageFactory.java │ │ │ │ ├── SimpleSoapProtocolChooser.java │ │ │ │ └── SoapProtocolChooser.java │ │ │ └── responder/ │ │ │ ├── AbstractResponder.java │ │ │ ├── AutoResponder.java │ │ │ └── RequestResponder.java │ │ └── resources/ │ │ ├── soap-server.xml │ │ └── soap-servlet.xml │ └── test/ │ ├── java/ │ │ └── org/ │ │ └── reficio/ │ │ └── ws/ │ │ └── server/ │ │ ├── PasswordLessKeystoreTest.java │ │ └── SimpleServerTest.java │ └── resources/ │ ├── keystores/ │ │ ├── .keystore │ │ ├── gen.sh │ │ └── keyless.keystore │ └── log4j.xml ├── soap-test/ │ ├── pom.xml │ └── src/ │ ├── main/ │ │ ├── groovy/ │ │ │ └── org/ │ │ │ └── reficio/ │ │ │ └── ws/ │ │ │ └── test/ │ │ │ └── spock/ │ │ │ ├── Server.groovy │ │ │ └── ServerExtension.groovy │ │ └── java/ │ │ └── org/ │ │ └── reficio/ │ │ └── ws/ │ │ └── test/ │ │ ├── ServerProcessor.java │ │ └── junit/ │ │ ├── Server.java │ │ └── SoapRule.java │ └── test/ │ ├── groovy/ │ │ └── org/ │ │ └── reficio/ │ │ └── ws/ │ │ └── test/ │ │ └── spock/ │ │ └── SpockExtensionTest.groovy │ ├── java/ │ │ └── org/ │ │ └── reficio/ │ │ └── ws/ │ │ └── test/ │ │ └── junit/ │ │ └── SoapRuleTest.java │ └── resources/ │ ├── log4j.xml │ └── wsdl/ │ ├── TestService.wsdl │ ├── currency-convertor.wsdl │ ├── testservice1.xsd │ └── testservice2.xsd └── src/ ├── main/ │ └── resources/ │ ├── findbugs-exclude.xml │ └── license.txt └── site/ ├── fml/ │ └── faq.fml └── site.xml