soap4r-ruby1.9 1.0.0
Sign up to get free protection for your applications and to get access to all the features.
- data/COPYING +7 -0
- data/GPL +340 -0
- data/Gemfile +13 -0
- data/Gemfile.lock +20 -0
- data/README.rdoc +35 -0
- data/RELEASE_en.html +1900 -0
- data/RUBYS +56 -0
- data/Rakefile +53 -0
- data/VERSION +1 -0
- data/bin/wsdl2ruby.rb +137 -0
- data/bin/xsd2ruby.rb +90 -0
- data/lib/soap/attachment.rb +108 -0
- data/lib/soap/attrproxy.rb +34 -0
- data/lib/soap/baseData.rb +1094 -0
- data/lib/soap/element.rb +277 -0
- data/lib/soap/encodingstyle/aspDotNetHandler.rb +207 -0
- data/lib/soap/encodingstyle/handler.rb +120 -0
- data/lib/soap/encodingstyle/literalHandler.rb +195 -0
- data/lib/soap/encodingstyle/soapHandler.rb +559 -0
- data/lib/soap/filter.rb +13 -0
- data/lib/soap/filter/filterchain.rb +51 -0
- data/lib/soap/filter/handler.rb +31 -0
- data/lib/soap/filter/streamhandler.rb +29 -0
- data/lib/soap/generator.rb +299 -0
- data/lib/soap/header/handler.rb +61 -0
- data/lib/soap/header/handlerset.rb +70 -0
- data/lib/soap/header/mappinghandler.rb +47 -0
- data/lib/soap/header/simplehandler.rb +44 -0
- data/lib/soap/httpconfigloader.rb +139 -0
- data/lib/soap/mapping.rb +12 -0
- data/lib/soap/mapping/encodedregistry.rb +537 -0
- data/lib/soap/mapping/factory.rb +388 -0
- data/lib/soap/mapping/literalregistry.rb +391 -0
- data/lib/soap/mapping/mapping.rb +577 -0
- data/lib/soap/mapping/registry.rb +295 -0
- data/lib/soap/mapping/rubytypeFactory.rb +446 -0
- data/lib/soap/mapping/schemadefinition.rb +170 -0
- data/lib/soap/mapping/typeMap.rb +105 -0
- data/lib/soap/mapping/wsdlencodedregistry.rb +211 -0
- data/lib/soap/mapping/wsdlliteralregistry.rb +248 -0
- data/lib/soap/marshal.rb +59 -0
- data/lib/soap/mimemessage.rb +241 -0
- data/lib/soap/nestedexception.rb +42 -0
- data/lib/soap/netHttpClient.rb +241 -0
- data/lib/soap/ns.rb +34 -0
- data/lib/soap/parser.rb +252 -0
- data/lib/soap/processor.rb +66 -0
- data/lib/soap/property.rb +333 -0
- data/lib/soap/proxy.rb +14 -0
- data/lib/soap/rpc/cgistub.rb +247 -0
- data/lib/soap/rpc/driver.rb +221 -0
- data/lib/soap/rpc/element.rb +374 -0
- data/lib/soap/rpc/element.rb.orig +374 -0
- data/lib/soap/rpc/httpserver.rb +142 -0
- data/lib/soap/rpc/methodDef.rb +68 -0
- data/lib/soap/rpc/proxy.rb +572 -0
- data/lib/soap/rpc/router.rb +662 -0
- data/lib/soap/rpc/rpc.rb +25 -0
- data/lib/soap/rpc/soaplet.rb +200 -0
- data/lib/soap/rpc/standaloneServer.rb +43 -0
- data/lib/soap/ruby18ext.rb +13 -0
- data/lib/soap/soap.rb +151 -0
- data/lib/soap/streamHandler.rb +301 -0
- data/lib/soap/wsdlDriver.rb +164 -0
- data/lib/wsdl/binding.rb +65 -0
- data/lib/wsdl/data.rb +64 -0
- data/lib/wsdl/definitions.rb +236 -0
- data/lib/wsdl/documentation.rb +32 -0
- data/lib/wsdl/import.rb +80 -0
- data/lib/wsdl/importer.rb +38 -0
- data/lib/wsdl/info.rb +50 -0
- data/lib/wsdl/message.rb +54 -0
- data/lib/wsdl/operation.rb +151 -0
- data/lib/wsdl/operationBinding.rb +240 -0
- data/lib/wsdl/param.rb +93 -0
- data/lib/wsdl/parser.rb +164 -0
- data/lib/wsdl/part.rb +52 -0
- data/lib/wsdl/port.rb +66 -0
- data/lib/wsdl/portType.rb +75 -0
- data/lib/wsdl/service.rb +61 -0
- data/lib/wsdl/soap/address.rb +40 -0
- data/lib/wsdl/soap/binding.rb +49 -0
- data/lib/wsdl/soap/body.rb +58 -0
- data/lib/wsdl/soap/cgiStubCreator.rb +92 -0
- data/lib/wsdl/soap/classDefCreator.rb +433 -0
- data/lib/wsdl/soap/classDefCreatorSupport.rb +240 -0
- data/lib/wsdl/soap/classNameCreator.rb +54 -0
- data/lib/wsdl/soap/clientSkeltonCreator.rb +104 -0
- data/lib/wsdl/soap/complexType.rb +173 -0
- data/lib/wsdl/soap/data.rb +42 -0
- data/lib/wsdl/soap/definitions.rb +200 -0
- data/lib/wsdl/soap/driverCreator.rb +118 -0
- data/lib/wsdl/soap/element.rb +33 -0
- data/lib/wsdl/soap/encodedMappingRegistryCreator.rb +73 -0
- data/lib/wsdl/soap/fault.rb +56 -0
- data/lib/wsdl/soap/header.rb +86 -0
- data/lib/wsdl/soap/headerfault.rb +56 -0
- data/lib/wsdl/soap/literalMappingRegistryCreator.rb +115 -0
- data/lib/wsdl/soap/mappingRegistryCreator.rb +58 -0
- data/lib/wsdl/soap/mappingRegistryCreatorSupport.rb +376 -0
- data/lib/wsdl/soap/methodDefCreator.rb +199 -0
- data/lib/wsdl/soap/operation.rb +112 -0
- data/lib/wsdl/soap/servantSkeltonCreator.rb +89 -0
- data/lib/wsdl/soap/servletStubCreator.rb +104 -0
- data/lib/wsdl/soap/standaloneServerStubCreator.rb +100 -0
- data/lib/wsdl/soap/wsdl2ruby.rb +217 -0
- data/lib/wsdl/types.rb +44 -0
- data/lib/wsdl/wsdl.rb +24 -0
- data/lib/wsdl/xmlSchema/all.rb +24 -0
- data/lib/wsdl/xmlSchema/annotation.rb +34 -0
- data/lib/wsdl/xmlSchema/any.rb +61 -0
- data/lib/wsdl/xmlSchema/anyAttribute.rb +48 -0
- data/lib/wsdl/xmlSchema/attribute.rb +104 -0
- data/lib/wsdl/xmlSchema/attributeGroup.rb +68 -0
- data/lib/wsdl/xmlSchema/choice.rb +58 -0
- data/lib/wsdl/xmlSchema/complexContent.rb +97 -0
- data/lib/wsdl/xmlSchema/complexExtension.rb +119 -0
- data/lib/wsdl/xmlSchema/complexRestriction.rb +104 -0
- data/lib/wsdl/xmlSchema/complexType.rb +193 -0
- data/lib/wsdl/xmlSchema/content.rb +95 -0
- data/lib/wsdl/xmlSchema/data.rb +116 -0
- data/lib/wsdl/xmlSchema/element.rb +153 -0
- data/lib/wsdl/xmlSchema/enumeration.rb +36 -0
- data/lib/wsdl/xmlSchema/fractiondigits.rb +37 -0
- data/lib/wsdl/xmlSchema/group.rb +100 -0
- data/lib/wsdl/xmlSchema/import.rb +53 -0
- data/lib/wsdl/xmlSchema/importHandler.rb +45 -0
- data/lib/wsdl/xmlSchema/importer.rb +102 -0
- data/lib/wsdl/xmlSchema/include.rb +48 -0
- data/lib/wsdl/xmlSchema/length.rb +37 -0
- data/lib/wsdl/xmlSchema/list.rb +48 -0
- data/lib/wsdl/xmlSchema/maxexclusive.rb +37 -0
- data/lib/wsdl/xmlSchema/maxinclusive.rb +37 -0
- data/lib/wsdl/xmlSchema/maxlength.rb +37 -0
- data/lib/wsdl/xmlSchema/minexclusive.rb +37 -0
- data/lib/wsdl/xmlSchema/mininclusive.rb +37 -0
- data/lib/wsdl/xmlSchema/minlength.rb +37 -0
- data/lib/wsdl/xmlSchema/parser.rb +167 -0
- data/lib/wsdl/xmlSchema/pattern.rb +36 -0
- data/lib/wsdl/xmlSchema/ref.rb +33 -0
- data/lib/wsdl/xmlSchema/schema.rb +178 -0
- data/lib/wsdl/xmlSchema/sequence.rb +54 -0
- data/lib/wsdl/xmlSchema/simpleContent.rb +69 -0
- data/lib/wsdl/xmlSchema/simpleExtension.rb +62 -0
- data/lib/wsdl/xmlSchema/simpleRestriction.rb +132 -0
- data/lib/wsdl/xmlSchema/simpleType.rb +87 -0
- data/lib/wsdl/xmlSchema/totaldigits.rb +37 -0
- data/lib/wsdl/xmlSchema/union.rb +35 -0
- data/lib/wsdl/xmlSchema/unique.rb +34 -0
- data/lib/wsdl/xmlSchema/whitespace.rb +37 -0
- data/lib/wsdl/xmlSchema/xsd2ruby.rb +174 -0
- data/lib/xsd/charset.rb +188 -0
- data/lib/xsd/codegen.rb +12 -0
- data/lib/xsd/codegen/classdef.rb +208 -0
- data/lib/xsd/codegen/commentdef.rb +34 -0
- data/lib/xsd/codegen/gensupport.rb +273 -0
- data/lib/xsd/codegen/methoddef.rb +70 -0
- data/lib/xsd/codegen/moduledef.rb +208 -0
- data/lib/xsd/datatypes.rb +1466 -0
- data/lib/xsd/datatypes1999.rb +20 -0
- data/lib/xsd/iconvcharset.rb +33 -0
- data/lib/xsd/mapping.rb +68 -0
- data/lib/xsd/namedelements.rb +132 -0
- data/lib/xsd/ns.rb +182 -0
- data/lib/xsd/qname.rb +79 -0
- data/lib/xsd/xmlparser.rb +82 -0
- data/lib/xsd/xmlparser.rb.orig +76 -0
- data/lib/xsd/xmlparser/libxmlparser.rb +119 -0
- data/lib/xsd/xmlparser/parser.rb +100 -0
- data/lib/xsd/xmlparser/rexmlparser.rb +58 -0
- data/lib/xsd/xmlparser/xmlparser.rb +50 -0
- data/lib/xsd/xmlparser/xmlscanner.rb +149 -0
- data/rubyStyle.css +104 -0
- data/sample/attachment/complexmime/EdmService.rb +124 -0
- data/sample/attachment/complexmime/README.txt +3 -0
- data/sample/attachment/complexmime/client.rb +57 -0
- data/sample/attachment/complexmime/drift.cdf +1 -0
- data/sample/attachment/complexmime/plaatje.png +1 -0
- data/sample/attachment/complexmime/server.rb +68 -0
- data/sample/attachment/swa/client.rb +13 -0
- data/sample/attachment/swa/server.rb +23 -0
- data/sample/basic/apacheClient.rb +92 -0
- data/sample/basic/babelfish.rb +16 -0
- data/sample/basic/calc/calc.rb +17 -0
- data/sample/basic/calc/calc2.rb +29 -0
- data/sample/basic/calc/client.rb +26 -0
- data/sample/basic/calc/client2.rb +29 -0
- data/sample/basic/calc/httpd.rb +20 -0
- data/sample/basic/calc/samplehttpd.conf +2 -0
- data/sample/basic/calc/server.cgi +15 -0
- data/sample/basic/calc/server.fcgi +22 -0
- data/sample/basic/calc/server.rb +21 -0
- data/sample/basic/calc/server2.rb +24 -0
- data/sample/basic/exchange/client.rb +19 -0
- data/sample/basic/exchange/exchange.rb +17 -0
- data/sample/basic/exchange/httpd.rb +20 -0
- data/sample/basic/exchange/samplehttpd.conf +2 -0
- data/sample/basic/exchange/server.cgi +14 -0
- data/sample/basic/exchange/server.rb +20 -0
- data/sample/basic/flickr.rb +26 -0
- data/sample/basic/helloworld/client.rb +6 -0
- data/sample/basic/helloworld/server.rb +20 -0
- data/sample/basic/sampleStruct/client.rb +16 -0
- data/sample/basic/sampleStruct/httpd.rb +20 -0
- data/sample/basic/sampleStruct/iSampleStruct.rb +22 -0
- data/sample/basic/sampleStruct/sampleStruct.rb +13 -0
- data/sample/basic/sampleStruct/samplehttpd.conf +2 -0
- data/sample/basic/sampleStruct/server.cgi +14 -0
- data/sample/basic/sampleStruct/server.rb +20 -0
- data/sample/basic/whois.rb +14 -0
- data/sample/basic/wsdl_helloworld/README +15 -0
- data/sample/basic/wsdl_helloworld/client/default.rb +1 -0
- data/sample/basic/wsdl_helloworld/client/defaultDriver.rb +47 -0
- data/sample/basic/wsdl_helloworld/client/hws.wsdl +46 -0
- data/sample/basic/wsdl_helloworld/client/hwsClient.rb +22 -0
- data/sample/basic/wsdl_helloworld/server/hw_s.rb +25 -0
- data/sample/basic/wsdl_helloworld/server/hws.wsdl +46 -0
- data/sample/basic/yahooNewsSearch.rb +36 -0
- data/sample/howto/as_xml/client.rb +22 -0
- data/sample/howto/as_xml/server.rb +22 -0
- data/sample/howto/base64/client.rb +17 -0
- data/sample/howto/base64/server.rb +30 -0
- data/sample/howto/custom_ns/client.rb +37 -0
- data/sample/howto/custom_ns/server.rb +42 -0
- data/sample/howto/documentliteral/README.txt +19 -0
- data/sample/howto/documentliteral/client.rb +11 -0
- data/sample/howto/documentliteral/echo.wsdl +66 -0
- data/sample/howto/documentliteral/servant.rb +11 -0
- data/sample/howto/filter/client.rb +42 -0
- data/sample/howto/filter/server.rb +67 -0
- data/sample/howto/scopesample/client.rb +34 -0
- data/sample/howto/scopesample/httpd.rb +22 -0
- data/sample/howto/scopesample/samplehttpd.conf +2 -0
- data/sample/howto/scopesample/servant.rb +18 -0
- data/sample/howto/scopesample/server.cgi +29 -0
- data/sample/howto/scopesample/server.rb +20 -0
- data/sample/howto/styleuse/client.rb +21 -0
- data/sample/howto/styleuse/server.rb +86 -0
- data/sample/howto/wsdl_fault/README.txt +11 -0
- data/sample/howto/wsdl_fault/fault/AddClient.rb +24 -0
- data/sample/howto/wsdl_fault/fault/AddServer.rb +15 -0
- data/sample/howto/wsdl_fault/fault/AddServiceImpl.rb +18 -0
- data/sample/howto/wsdl_fault/fault/fault.wsdl +79 -0
- data/sample/howto/wsdl_fault/multifault/AddClient.rb +28 -0
- data/sample/howto/wsdl_fault/multifault/AddServer.rb +15 -0
- data/sample/howto/wsdl_fault/multifault/AddServiceImpl.rb +24 -0
- data/sample/howto/wsdl_fault/multifault/fault.wsdl +96 -0
- data/sample/howto/wsdl_hash/client.rb +11 -0
- data/sample/howto/wsdl_hash/hash.wsdl +69 -0
- data/sample/howto/wsdl_hash/server.rb +17 -0
- data/sample/marshal/customfactory.rb +97 -0
- data/sample/marshal/customregistry.rb +17 -0
- data/sample/marshal/digraph.rb +43 -0
- data/sample/marshal/enum/README.txt +6 -0
- data/sample/marshal/enum/enum.xsd +23 -0
- data/sample/marshal/enum/enumsample.rb +20 -0
- data/sample/marshal/enum/enumsample_mapper.rb +7 -0
- data/sample/marshal/enum/enumsample_mapping_registry.rb +23 -0
- data/sample/marshal/enum/marshal.rb +9 -0
- data/sample/payload/basicauth/client.rb +10 -0
- data/sample/payload/basicauth/htpasswd +2 -0
- data/sample/payload/basicauth/server.rb +43 -0
- data/sample/payload/cookies/calc.rb +52 -0
- data/sample/payload/cookies/client.rb +30 -0
- data/sample/payload/cookies/filterclient.rb +52 -0
- data/sample/payload/cookies/server.rb +24 -0
- data/sample/payload/gzipped/client.rb +8 -0
- data/sample/payload/gzipped/server.rb +21 -0
- data/sample/payload/ssl/files/README +1 -0
- data/sample/payload/ssl/files/ca.cert +23 -0
- data/sample/payload/ssl/files/client.cert +19 -0
- data/sample/payload/ssl/files/client.key +15 -0
- data/sample/payload/ssl/files/server.cert +19 -0
- data/sample/payload/ssl/files/server.key +15 -0
- data/sample/payload/ssl/files/sslclient.properties +5 -0
- data/sample/payload/ssl/files/sslclient_require_noserverauth.properties +2 -0
- data/sample/payload/ssl/files/sslclient_with_clientauth.properties +9 -0
- data/sample/payload/ssl/files/subca.cert +21 -0
- data/sample/payload/ssl/sslclient.rb +12 -0
- data/sample/payload/ssl/sslclient_require_noserverauth.rb +12 -0
- data/sample/payload/ssl/sslclient_with_clientauth.rb +12 -0
- data/sample/payload/ssl/sslserver.rb +49 -0
- data/sample/payload/ssl/sslserver_noauth.rb +45 -0
- data/sample/payload/ssl/sslserver_require_clientauth.rb +50 -0
- data/sample/showcase/soap/hippo5tq/hippo5tq.rb +41 -0
- data/sample/showcase/soap/hippo5tq/hippo5tq2.rb +99 -0
- data/sample/showcase/soap/hippo5tq/hippoClient.rb +106 -0
- data/sample/showcase/soap/icd/IICD.rb +17 -0
- data/sample/showcase/soap/icd/icd.rb +46 -0
- data/sample/showcase/soap/mssoap/README.txt +62 -0
- data/sample/showcase/soap/mssoap/client.vba +19 -0
- data/sample/showcase/soap/mssoap/stockQuoteService.cgi +44 -0
- data/sample/showcase/soap/mssoap/stockQuoteService.rb +9 -0
- data/sample/showcase/soap/mssoap/stockQuoteService.wsdl +47 -0
- data/sample/showcase/soap/mssoap/stockQuoteServiceClient.rb +26 -0
- data/sample/showcase/soap/mssoap/stockQuoteServiceClient.xls +0 -0
- data/sample/showcase/soap/mssoap/stockQuoteServicePortTypeDriver.rb +46 -0
- data/sample/showcase/soap/netDicV06/INetDicV06.rb +36 -0
- data/sample/showcase/soap/netDicV06/netDicV06.rb +16 -0
- data/sample/showcase/soap/raa/SOAP__Lite.pl +15 -0
- data/sample/showcase/soap/raa/pocketSOAP.js +33 -0
- data/sample/showcase/soap/raa2.4/raa.rb +332 -0
- data/sample/showcase/soap/raa2.4/raa.wsdl +644 -0
- data/sample/showcase/soap/raa2.4/raaDriver.rb +255 -0
- data/sample/showcase/soap/raa2.4/raaServiceClient.rb +354 -0
- data/sample/showcase/soap/raa2.4/sample.rb +115 -0
- data/sample/showcase/soap/rwiki/rwikiClient.rb +29 -0
- data/sample/showcase/soap/rwiki/rwikiServer.cgi +44 -0
- data/sample/showcase/soap/soapbox/ContactsDataSet.xml +37 -0
- data/sample/showcase/soap/soapbox/ExceptionDataSet.xml +23 -0
- data/sample/showcase/soap/soapbox/MessageDataSet.xml +8 -0
- data/sample/showcase/soap/soapbox/SoapBoxWebService.wsdl +1233 -0
- data/sample/showcase/soap/soapbox/SoapBoxWebServiceWithRawXML.wsdl +1226 -0
- data/sample/showcase/soap/soapbox/wsdlDriver.rb +23 -0
- data/sample/showcase/wsdl/PayPalSvc/client.rb +36 -0
- data/sample/showcase/wsdl/amazon/AmazonSearch.rb +3160 -0
- data/sample/showcase/wsdl/amazon/AmazonSearchDriver.rb +546 -0
- data/sample/showcase/wsdl/amazon/sampleClient.rb +37 -0
- data/sample/showcase/wsdl/amazon/wsdlDriver.rb +52 -0
- data/sample/showcase/wsdl/amazonEC/client.rb +13 -0
- data/sample/showcase/wsdl/eBaySvc/sampleclient.rb +60 -0
- data/sample/showcase/wsdl/googleAdwords/CampaignService.wsdl +785 -0
- data/sample/showcase/wsdl/googleAdwords/ca.pem +19 -0
- data/sample/showcase/wsdl/googleAdwords/client.rb +40 -0
- data/sample/showcase/wsdl/googleAdwords/soap/property +1 -0
- data/sample/showcase/wsdl/googleSearch/GoogleSearch.rb +97 -0
- data/sample/showcase/wsdl/googleSearch/GoogleSearchDriver.rb +102 -0
- data/sample/showcase/wsdl/googleSearch/README +6 -0
- data/sample/showcase/wsdl/googleSearch/httpd.rb +20 -0
- data/sample/showcase/wsdl/googleSearch/sampleClient.rb +56 -0
- data/sample/showcase/wsdl/googleSearch/samplehttpd.conf +2 -0
- data/sample/showcase/wsdl/googleSearch/sjissearch.sh +3 -0
- data/sample/showcase/wsdl/googleSearch/wsdlDriver.rb +29 -0
- data/sample/showcase/wsdl/noaa/README.txt +5 -0
- data/sample/showcase/wsdl/noaa/client.rb +44 -0
- data/sample/showcase/wsdl/noaa/default.rb +46 -0
- data/sample/showcase/wsdl/noaa/defaultDriver.rb +66 -0
- data/sample/showcase/wsdl/noaa/defaultMappingRegistry.rb +74 -0
- data/sample/showcase/wsdl/noaa/ndfdXMLClient.rb +43 -0
- data/sample/showcase/wsdl/raa2.4/raa.rb +134 -0
- data/sample/showcase/wsdl/raa2.4/raa.wsdl +644 -0
- data/sample/showcase/wsdl/raa2.4/wsdlDriver.rb +117 -0
- data/sample/showcase/wsdl/rnn/client.rb +59 -0
- data/sample/showcase/wsdl/rnn/post.rb +27 -0
- data/sample/showcase/wsdl/rnn/rnn-hash.wsdl +282 -0
- data/sample/showcase/wsdl/rnn/rnn.wsdl +310 -0
- data/sample/showcase/wsdl/rnn/submit.rb +63 -0
- data/sample/showcase/wsdl/salesforce/SforceServiceClient.rb +280 -0
- data/sample/showcase/wsdl/salesforce/ca.pem +35 -0
- data/sample/showcase/wsdl/salesforce/client.rb +156 -0
- data/sample/showcase/wsdl/salesforce/default.rb +1740 -0
- data/sample/showcase/wsdl/salesforce/defaultDriver.rb +165 -0
- data/sample/showcase/wsdl/salesforce/soap/property +1 -0
- data/sample/soapheader/authheader/authmgr.rb +41 -0
- data/sample/soapheader/authheader/client.rb +40 -0
- data/sample/soapheader/authheader/client2.rb +42 -0
- data/sample/soapheader/authheader/server.rb +73 -0
- data/sample/soapheader/authheader/server2.rb +83 -0
- data/sample/soapheader/soapext_basicauth/client.rb +25 -0
- data/sample/soapheader/soapext_basicauth/mms_MizGIS.rb +701 -0
- data/sample/soapheader/soapext_basicauth/mms_MizGIS.wsdl +1007 -0
- data/sample/soapheader/soapext_basicauth/mms_MizGISClient.rb +231 -0
- data/sample/soapheader/soapext_basicauth/mms_MizGISDriver.rb +210 -0
- data/sample/soapheader/soapext_basicauth/mms_MizGISMappingRegistry.rb +1232 -0
- data/setup.rb +1585 -0
- data/soap4r-ruby1.9.gemspec +907 -0
- data/test/16runner.rb +68 -0
- data/test/interopR2/README.txt +2 -0
- data/test/interopR2/SOAPBuildersInterop_R2.wsdl +461 -0
- data/test/interopR2/SOAPBuildersInterop_R2GrB.wsdl +19 -0
- data/test/interopR2/base.rb +288 -0
- data/test/interopR2/client.NetRemoting.rb +17 -0
- data/test/interopR2/client.rb +1234 -0
- data/test/interopR2/client4S4C.rb +15 -0
- data/test/interopR2/client4S4C2.rb +14 -0
- data/test/interopR2/clientASP.NET.rb +17 -0
- data/test/interopR2/clientApacheAxis.rb +16 -0
- data/test/interopR2/clientApacheSOAP.rb +17 -0
- data/test/interopR2/clientBEAWebLogic.rb +17 -0
- data/test/interopR2/clientBase.rb +1967 -0
- data/test/interopR2/clientCapeConnect.rb +18 -0
- data/test/interopR2/clientDelphi.rb +19 -0
- data/test/interopR2/clientEasySoap.rb +14 -0
- data/test/interopR2/clientFrontier.rb +25 -0
- data/test/interopR2/clientGLUE.rb +32 -0
- data/test/interopR2/clientHP.rb +13 -0
- data/test/interopR2/clientJAX-RPC.rb +19 -0
- data/test/interopR2/clientJSOAP.rb +14 -0
- data/test/interopR2/clientKafkaXSLT.rb +15 -0
- data/test/interopR2/clientMSSOAPToolkit2.0.rb +17 -0
- data/test/interopR2/clientMSSOAPToolkit3.0.rb +17 -0
- data/test/interopR2/clientNuSOAP.rb +19 -0
- data/test/interopR2/clientNuWave.rb +15 -0
- data/test/interopR2/clientOpenLink.rb +15 -0
- data/test/interopR2/clientOracle.rb +15 -0
- data/test/interopR2/clientPEAR.rb +18 -0
- data/test/interopR2/clientPhalanx.rb +18 -0
- data/test/interopR2/clientSIMACE.rb +18 -0
- data/test/interopR2/clientSOAP4R.rb +18 -0
- data/test/interopR2/clientSOAP__Lite.rb +14 -0
- data/test/interopR2/clientSQLData.rb +18 -0
- data/test/interopR2/clientSilverStream.rb +17 -0
- data/test/interopR2/clientSpray2001.rb +17 -0
- data/test/interopR2/clientSun.rb +19 -0
- data/test/interopR2/clientVWOpentalkSoap.rb +19 -0
- data/test/interopR2/clientWASP.rb +19 -0
- data/test/interopR2/clientWASPC.rb +18 -0
- data/test/interopR2/clientWebMethods.rb +15 -0
- data/test/interopR2/clientWhiteMesa.rb +28 -0
- data/test/interopR2/clientWingfoot.rb +15 -0
- data/test/interopR2/clientXMLBus.rb +19 -0
- data/test/interopR2/clientXMLRPC-EPI.rb +17 -0
- data/test/interopR2/clientXSOAP.rb +14 -0
- data/test/interopR2/clientZSI.rb +19 -0
- data/test/interopR2/clienteSOAP.rb +18 -0
- data/test/interopR2/clientgSOAP.rb +18 -0
- data/test/interopR2/clientkSOAP.rb +17 -0
- data/test/interopR2/iSimonReg.rb +112 -0
- data/test/interopR2/interopResultBase.rb +114 -0
- data/test/interopR2/interopService.rb +247 -0
- data/test/interopR2/rwikiInteropService.rb +105 -0
- data/test/interopR2/server.cgi +270 -0
- data/test/interopR2/server.rb +275 -0
- data/test/interopR2/simonReg.rb +123 -0
- data/test/interopR2/test.sh +49 -0
- data/test/interopR4/client.rb +112 -0
- data/test/results +4810 -0
- data/test/runner.rb +7 -0
- data/test/sm11/classDef.rb +156 -0
- data/test/sm11/client.rb +542 -0
- data/test/sm11/driver.rb +183 -0
- data/test/sm11/servant.rb +1067 -0
- data/test/sm11/server.rb +25 -0
- data/test/soap/asp.net/hello.wsdl +96 -0
- data/test/soap/asp.net/test_aspdotnet.rb +123 -0
- data/test/soap/auth/htdigest +2 -0
- data/test/soap/auth/htpasswd +2 -0
- data/test/soap/auth/test_basic.rb +117 -0
- data/test/soap/auth/test_digest.rb +118 -0
- data/test/soap/calc/calc.rb +17 -0
- data/test/soap/calc/calc2.rb +29 -0
- data/test/soap/calc/server.cgi +13 -0
- data/test/soap/calc/server.rb +17 -0
- data/test/soap/calc/server2.rb +20 -0
- data/test/soap/calc/test_calc.rb +51 -0
- data/test/soap/calc/test_calc2.rb +55 -0
- data/test/soap/calc/test_calc_cgi.rb +71 -0
- data/test/soap/case/test_mapping.rb +57 -0
- data/test/soap/fault/test_customfault.rb +60 -0
- data/test/soap/fault/test_fault.rb +46 -0
- data/test/soap/fault/test_soaparray.rb +35 -0
- data/test/soap/filter/test_filter.rb +146 -0
- data/test/soap/header/server.cgi +119 -0
- data/test/soap/header/session.pstoredb +0 -0
- data/test/soap/header/test_authheader.rb +240 -0
- data/test/soap/header/test_authheader_cgi.rb +121 -0
- data/test/soap/header/test_simplehandler.rb +116 -0
- data/test/soap/helloworld/hw_s.rb +16 -0
- data/test/soap/helloworld/test_helloworld.rb +43 -0
- data/test/soap/htpasswd +2 -0
- data/test/soap/literalArrayMapping/amazonEc.rb +4778 -0
- data/test/soap/literalArrayMapping/amazonEcDriver.rb +172 -0
- data/test/soap/literalArrayMapping/amazonresponse.xml +100 -0
- data/test/soap/literalArrayMapping/test_definedarray.rb +34 -0
- data/test/soap/marshal/marshaltestlib.rb +494 -0
- data/test/soap/marshal/test_digraph.rb +56 -0
- data/test/soap/marshal/test_marshal.rb +26 -0
- data/test/soap/marshal/test_struct.rb +47 -0
- data/test/soap/ssl/README +1 -0
- data/test/soap/ssl/ca.cert +23 -0
- data/test/soap/ssl/client.cert +19 -0
- data/test/soap/ssl/client.key +15 -0
- data/test/soap/ssl/server.cert +19 -0
- data/test/soap/ssl/server.key +15 -0
- data/test/soap/ssl/sslsvr.rb +57 -0
- data/test/soap/ssl/subca.cert +21 -0
- data/test/soap/ssl/test_ssl.rb +235 -0
- data/test/soap/struct/test_struct.rb +70 -0
- data/test/soap/styleuse/client.rb +20 -0
- data/test/soap/styleuse/server.rb +86 -0
- data/test/soap/swa/test_file.rb +75 -0
- data/test/soap/test_basetype.rb +1090 -0
- data/test/soap/test_cookie.rb +112 -0
- data/test/soap/test_custom_ns.rb +105 -0
- data/test/soap/test_custommap.rb +110 -0
- data/test/soap/test_empty.rb +105 -0
- data/test/soap/test_envelopenamespace.rb +85 -0
- data/test/soap/test_extraattr.rb +54 -0
- data/test/soap/test_generator.rb +27 -0
- data/test/soap/test_httpconfigloader.rb +71 -0
- data/test/soap/test_mapping.rb +131 -0
- data/test/soap/test_nestedexception.rb +56 -0
- data/test/soap/test_nil.rb +57 -0
- data/test/soap/test_no_indent.rb +88 -0
- data/test/soap/test_property.rb +428 -0
- data/test/soap/test_response_as_xml.rb +117 -0
- data/test/soap/test_soapelement.rb +138 -0
- data/test/soap/test_streamhandler.rb +270 -0
- data/test/soap/test_styleuse.rb +326 -0
- data/test/soap/wsdlDriver/README.txt +2 -0
- data/test/soap/wsdlDriver/calc.wsdl +126 -0
- data/test/soap/wsdlDriver/document.wsdl +54 -0
- data/test/soap/wsdlDriver/echo_version.rb +29 -0
- data/test/soap/wsdlDriver/simpletype.wsdl +63 -0
- data/test/soap/wsdlDriver/test_calc.rb +71 -0
- data/test/soap/wsdlDriver/test_document.rb +71 -0
- data/test/soap/wsdlDriver/test_simpletype.rb +80 -0
- data/test/testutil.rb +54 -0
- data/test/wsdl/abstract/abstract.wsdl +176 -0
- data/test/wsdl/abstract/test_abstract.rb +159 -0
- data/test/wsdl/anonymous/expectedClassDef.rb +128 -0
- data/test/wsdl/anonymous/expectedDriver.rb +59 -0
- data/test/wsdl/anonymous/expectedMappingRegistry.rb +176 -0
- data/test/wsdl/anonymous/lp.wsdl +147 -0
- data/test/wsdl/anonymous/test_anonymous.rb +130 -0
- data/test/wsdl/any/any.wsdl +114 -0
- data/test/wsdl/any/expectedDriver.rb +68 -0
- data/test/wsdl/any/expectedEcho.rb +57 -0
- data/test/wsdl/any/expectedMappingRegistry.rb +63 -0
- data/test/wsdl/any/expectedService.rb +69 -0
- data/test/wsdl/any/test_any.rb +193 -0
- data/test/wsdl/axisArray/axisArray.wsdl +87 -0
- data/test/wsdl/axisArray/test_axisarray.rb +124 -0
- data/test/wsdl/choice/choice.wsdl +167 -0
- data/test/wsdl/choice/test_choice.rb +310 -0
- data/test/wsdl/complexcontent/complexContent.wsdl +83 -0
- data/test/wsdl/complexcontent/test_echo.rb +90 -0
- data/test/wsdl/datetime/DatetimeService.rb +44 -0
- data/test/wsdl/datetime/datetime.rb +0 -0
- data/test/wsdl/datetime/datetime.wsdl +45 -0
- data/test/wsdl/datetime/datetimeServant.rb +22 -0
- data/test/wsdl/datetime/test_datetime.rb +86 -0
- data/test/wsdl/document/array/double.wsdl +161 -0
- data/test/wsdl/document/array/test_array.rb +201 -0
- data/test/wsdl/document/document.wsdl +76 -0
- data/test/wsdl/document/number.wsdl +54 -0
- data/test/wsdl/document/ping_nosoapaction.wsdl +66 -0
- data/test/wsdl/document/test_nosoapaction.rb +102 -0
- data/test/wsdl/document/test_number.rb +92 -0
- data/test/wsdl/document/test_rpc.rb +355 -0
- data/test/wsdl/emptycomplextype.wsdl +31 -0
- data/test/wsdl/fault/fault.wsdl +79 -0
- data/test/wsdl/fault/multifault.wsdl +96 -0
- data/test/wsdl/fault/test_fault.rb +119 -0
- data/test/wsdl/fault/test_multifault.rb +134 -0
- data/test/wsdl/group/expectedClassdef.rb +58 -0
- data/test/wsdl/group/expectedDriver.rb +51 -0
- data/test/wsdl/group/expectedMappingRegistry.rb +67 -0
- data/test/wsdl/group/group.wsdl +88 -0
- data/test/wsdl/group/test_rpc.rb +145 -0
- data/test/wsdl/list/list.wsdl +93 -0
- data/test/wsdl/list/test_list.rb +124 -0
- data/test/wsdl/map/map.wsdl +92 -0
- data/test/wsdl/map/map.xml +43 -0
- data/test/wsdl/map/test_map.rb +99 -0
- data/test/wsdl/marshal/Person.rb +1 -0
- data/test/wsdl/marshal/person.wsdl +21 -0
- data/test/wsdl/marshal/person_org.rb +23 -0
- data/test/wsdl/marshal/test_wsdlmarshal.rb +76 -0
- data/test/wsdl/multiplefault.wsdl +75 -0
- data/test/wsdl/oneway/oneway.wsdl +36 -0
- data/test/wsdl/oneway/test_oneway.rb +108 -0
- data/test/wsdl/overload/expectedClient.rb +37 -0
- data/test/wsdl/overload/expectedDriver.rb +61 -0
- data/test/wsdl/overload/expectedServant.rb +35 -0
- data/test/wsdl/overload/overload.wsdl +70 -0
- data/test/wsdl/overload/test_overload.rb +131 -0
- data/test/wsdl/qualified/lp.wsdl +47 -0
- data/test/wsdl/qualified/lp.xsd +26 -0
- data/test/wsdl/qualified/np.wsdl +51 -0
- data/test/wsdl/qualified/test_qualified.rb +137 -0
- data/test/wsdl/qualified/test_unqualified.rb +138 -0
- data/test/wsdl/raa/RAAService.rb +125 -0
- data/test/wsdl/raa/README.txt +8 -0
- data/test/wsdl/raa/expectedClassDef.rb +100 -0
- data/test/wsdl/raa/expectedDriver.rb +96 -0
- data/test/wsdl/raa/expectedMappingRegistry.rb +121 -0
- data/test/wsdl/raa/raa.wsdl +264 -0
- data/test/wsdl/raa/test_raa.rb +126 -0
- data/test/wsdl/ref/expectedDriver.rb +51 -0
- data/test/wsdl/ref/expectedProduct.rb +243 -0
- data/test/wsdl/ref/product.wsdl +147 -0
- data/test/wsdl/ref/test_ref.rb +268 -0
- data/test/wsdl/rpc/rpc.wsdl +109 -0
- data/test/wsdl/rpc/test-rpc-lit.wsdl +371 -0
- data/test/wsdl/rpc/test_rpc.rb +176 -0
- data/test/wsdl/rpc/test_rpc_lit.rb +470 -0
- data/test/wsdl/simplecontent/simplecontent.wsdl +84 -0
- data/test/wsdl/simplecontent/test_simplecontent.rb +102 -0
- data/test/wsdl/simpletype/rpc/echo_version.rb +1 -0
- data/test/wsdl/simpletype/rpc/echo_versionDriver.rb +10 -0
- data/test/wsdl/simpletype/rpc/echo_versionMappingRegistry.rb +4 -0
- data/test/wsdl/simpletype/rpc/echo_versionServant.rb +3 -0
- data/test/wsdl/simpletype/rpc/echo_version_service.rb +3 -0
- data/test/wsdl/simpletype/rpc/echo_version_serviceClient.rb +34 -0
- data/test/wsdl/simpletype/rpc/expectedClient.rb +34 -0
- data/test/wsdl/simpletype/rpc/expectedDriver.rb +58 -0
- data/test/wsdl/simpletype/rpc/expectedEchoVersion.rb +36 -0
- data/test/wsdl/simpletype/rpc/expectedMappingRegistry.rb +57 -0
- data/test/wsdl/simpletype/rpc/expectedServant.rb +32 -0
- data/test/wsdl/simpletype/rpc/expectedService.rb +55 -0
- data/test/wsdl/simpletype/rpc/rpc.wsdl +98 -0
- data/test/wsdl/simpletype/rpc/test_rpc.rb +52 -0
- data/test/wsdl/simpletype/simpletype.wsdl +114 -0
- data/test/wsdl/simpletype/test_simpletype.rb +92 -0
- data/test/wsdl/soap/soapbodyparts.wsdl +103 -0
- data/test/wsdl/soap/test_soapbodyparts.rb +79 -0
- data/test/wsdl/soap/wsdl2ruby/echo_version.rb +1 -0
- data/test/wsdl/soap/wsdl2ruby/echo_versionDriver.rb +10 -0
- data/test/wsdl/soap/wsdl2ruby/echo_versionMappingRegistry.rb +4 -0
- data/test/wsdl/soap/wsdl2ruby/echo_versionServant.rb +3 -0
- data/test/wsdl/soap/wsdl2ruby/echo_version_service.cgi +3 -0
- data/test/wsdl/soap/wsdl2ruby/echo_version_service.rb +7 -0
- data/test/wsdl/soap/wsdl2ruby/echo_version_serviceClient.rb +34 -0
- data/test/wsdl/soap/wsdl2ruby/expectedClassdef.rb +21 -0
- data/test/wsdl/soap/wsdl2ruby/expectedClient.rb +34 -0
- data/test/wsdl/soap/wsdl2ruby/expectedDriver.rb +58 -0
- data/test/wsdl/soap/wsdl2ruby/expectedMappingRegistry.rb +36 -0
- data/test/wsdl/soap/wsdl2ruby/expectedServant.rb +32 -0
- data/test/wsdl/soap/wsdl2ruby/expectedService.cgi +48 -0
- data/test/wsdl/soap/wsdl2ruby/expectedService.rb +55 -0
- data/test/wsdl/soap/wsdl2ruby/rpc.wsdl +80 -0
- data/test/wsdl/soap/wsdl2ruby/section/expectedClassdef.rb +37 -0
- data/test/wsdl/soap/wsdl2ruby/section/section.xsd +31 -0
- data/test/wsdl/soap/wsdl2ruby/section/test_section.rb +53 -0
- data/test/wsdl/soap/wsdl2ruby/soapenc/soapenc.wsdl +64 -0
- data/test/wsdl/soap/wsdl2ruby/soapenc/test_soapenc.rb +83 -0
- data/test/wsdl/soap/wsdl2ruby/test_wsdl2ruby.rb +102 -0
- data/test/wsdl/soaptype/soaptype.wsdl +61 -0
- data/test/wsdl/soaptype/test_soaptype.rb +178 -0
- data/test/wsdl/test_emptycomplextype.rb +21 -0
- data/test/wsdl/test_fault.rb +50 -0
- data/test/wsdl/test_multiplefault.rb +41 -0
- data/test/xsd/codegen/test_classdef.rb +244 -0
- data/test/xsd/noencoding.xml +4 -0
- data/test/xsd/test_noencoding.rb +32 -0
- data/test/xsd/test_ns.rb +41 -0
- data/test/xsd/test_xmlschemaparser.rb +22 -0
- data/test/xsd/test_xsd.rb +1638 -0
- data/test/xsd/xmllang.xml +43 -0
- data/test/xsd/xmlschema.xml +12 -0
- data/test/xsd/xsd2ruby/expected_mysample.rb +65 -0
- data/test/xsd/xsd2ruby/expected_mysample_mapper.rb +11 -0
- data/test/xsd/xsd2ruby/expected_mysample_mapping_registry.rb +51 -0
- data/test/xsd/xsd2ruby/section.xsd +49 -0
- data/test/xsd/xsd2ruby/test_xsd2ruby.rb +90 -0
- metadata +958 -0
@@ -0,0 +1,43 @@
|
|
1
|
+
<?xml version="1.0" encoding="utf-8"?>
|
2
|
+
<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"
|
3
|
+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
4
|
+
xmlns:xsd="http://www.w3.org/2001/XMLSchema">
|
5
|
+
<soap:Header>
|
6
|
+
<gepirResponseHeader xmlns="http://www.example.com/xmllang">
|
7
|
+
<responderGln>12345</responderGln>
|
8
|
+
<numberOfHits>1</numberOfHits>
|
9
|
+
<returnCode>0</returnCode>
|
10
|
+
</gepirResponseHeader>
|
11
|
+
</soap:Header>
|
12
|
+
<soap:Body>
|
13
|
+
<gepirParty xmlns="http://www.example.com/xmllang">
|
14
|
+
<partyDataLine xml:lang="EN">
|
15
|
+
<gln>12345</gln>
|
16
|
+
<additionalPartyId>234</additionalPartyId>
|
17
|
+
<partyName>foobar LLC</partyName>
|
18
|
+
<streetAddress>baz</streetAddress>
|
19
|
+
<pOBoxNumber>9876</pOBoxNumber>
|
20
|
+
<city>Moscow</city>
|
21
|
+
<countryISOCode>RU</countryISOCode>
|
22
|
+
<contact>
|
23
|
+
<contactName> </contactName>
|
24
|
+
<communicationChannel communicationChannelCode="TELEFAX">12; 34 56 78</communicationChannel>
|
25
|
+
<communicationChannel communicationChannelCode="EMAIL">foo@example.com</communicationChannel>
|
26
|
+
<communicationChannel communicationChannelCode="TELEPHONE">123 456</communicationChannel>
|
27
|
+
</contact>
|
28
|
+
<contact>
|
29
|
+
<communicationChannel communicationChannelCode="EMAIL">bar@example.com</communicationChannel>
|
30
|
+
</contact>
|
31
|
+
<contact>
|
32
|
+
<communicationChannel communicationChannelCode="WEBSITE">www.example.com</communicationChannel>
|
33
|
+
</contact>
|
34
|
+
<contact>
|
35
|
+
<communicationChannel communicationChannelCode="TELEFAX">12 34; 56 78</communicationChannel>
|
36
|
+
</contact>
|
37
|
+
<contact>
|
38
|
+
<communicationChannel communicationChannelCode="TELEPHONE">789 012</communicationChannel>
|
39
|
+
</contact>
|
40
|
+
</partyDataLine>
|
41
|
+
</gepirParty>
|
42
|
+
</soap:Body>
|
43
|
+
</soap:Envelope>
|
@@ -0,0 +1,12 @@
|
|
1
|
+
<?xml version="1.0" encoding="utf-8"?>
|
2
|
+
<xs:schema
|
3
|
+
attributeFormDefault="qualified"
|
4
|
+
elementFormDefault="qualified"
|
5
|
+
targetNamespace="urn:jp.gr.jin.rrr.example.fakeschema"
|
6
|
+
xmlns:xs="http://www.w3.org/2001/XMLSchema">
|
7
|
+
<xs:element name="MessageDataSet">
|
8
|
+
<xs:complexType>
|
9
|
+
<xs:choice maxOccurs="unbounded" />
|
10
|
+
</xs:complexType>
|
11
|
+
</xs:element>
|
12
|
+
</xs:schema>
|
@@ -0,0 +1,65 @@
|
|
1
|
+
require 'xsd/qname'
|
2
|
+
|
3
|
+
module XSD; module XSD2Ruby
|
4
|
+
|
5
|
+
|
6
|
+
# {urn:mysample}question
|
7
|
+
# something - SOAP::SOAPString
|
8
|
+
class Question
|
9
|
+
attr_accessor :something
|
10
|
+
|
11
|
+
def initialize(something = nil)
|
12
|
+
@something = something
|
13
|
+
end
|
14
|
+
end
|
15
|
+
|
16
|
+
# {urn:mysample}section
|
17
|
+
# sectionID - SOAP::SOAPInt
|
18
|
+
# name - SOAP::SOAPString
|
19
|
+
# description - SOAP::SOAPString
|
20
|
+
# index - SOAP::SOAPInt
|
21
|
+
# firstQuestion - XSD::XSD2Ruby::Question
|
22
|
+
class Section
|
23
|
+
attr_accessor :sectionID
|
24
|
+
attr_accessor :name
|
25
|
+
attr_accessor :description
|
26
|
+
attr_accessor :index
|
27
|
+
attr_accessor :firstQuestion
|
28
|
+
|
29
|
+
def initialize(sectionID = nil, name = nil, description = nil, index = nil, firstQuestion = nil)
|
30
|
+
@sectionID = sectionID
|
31
|
+
@name = name
|
32
|
+
@description = description
|
33
|
+
@index = index
|
34
|
+
@firstQuestion = firstQuestion
|
35
|
+
end
|
36
|
+
end
|
37
|
+
|
38
|
+
# {urn:mysample}sectionArray
|
39
|
+
class SectionArray < ::Array
|
40
|
+
end
|
41
|
+
|
42
|
+
# {urn:mysample}sectionElement
|
43
|
+
# sectionID - SOAP::SOAPInt
|
44
|
+
# name - SOAP::SOAPString
|
45
|
+
# description - SOAP::SOAPString
|
46
|
+
# index - SOAP::SOAPInt
|
47
|
+
# firstQuestion - XSD::XSD2Ruby::Question
|
48
|
+
class SectionElement
|
49
|
+
attr_accessor :sectionID
|
50
|
+
attr_accessor :name
|
51
|
+
attr_accessor :description
|
52
|
+
attr_accessor :index
|
53
|
+
attr_accessor :firstQuestion
|
54
|
+
|
55
|
+
def initialize(sectionID = nil, name = nil, description = nil, index = nil, firstQuestion = nil)
|
56
|
+
@sectionID = sectionID
|
57
|
+
@name = name
|
58
|
+
@description = description
|
59
|
+
@index = index
|
60
|
+
@firstQuestion = firstQuestion
|
61
|
+
end
|
62
|
+
end
|
63
|
+
|
64
|
+
|
65
|
+
end; end
|
@@ -0,0 +1,51 @@
|
|
1
|
+
require 'xsd/mapping'
|
2
|
+
require 'mysample.rb'
|
3
|
+
|
4
|
+
module XSD; module XSD2Ruby
|
5
|
+
|
6
|
+
module MysampleMappingRegistry
|
7
|
+
NsMysample = "urn:mysample"
|
8
|
+
Registry = ::SOAP::Mapping::LiteralRegistry.new
|
9
|
+
|
10
|
+
Registry.register(
|
11
|
+
:class => XSD::XSD2Ruby::Question,
|
12
|
+
:schema_type => XSD::QName.new(NsMysample, "question"),
|
13
|
+
:schema_element => [
|
14
|
+
["something", ["SOAP::SOAPString", XSD::QName.new(nil, "something")]]
|
15
|
+
]
|
16
|
+
)
|
17
|
+
|
18
|
+
Registry.register(
|
19
|
+
:class => XSD::XSD2Ruby::Section,
|
20
|
+
:schema_type => XSD::QName.new(NsMysample, "section"),
|
21
|
+
:schema_element => [
|
22
|
+
["sectionID", ["SOAP::SOAPInt", XSD::QName.new(nil, "sectionID")]],
|
23
|
+
["name", ["SOAP::SOAPString", XSD::QName.new(nil, "name")]],
|
24
|
+
["description", ["SOAP::SOAPString", XSD::QName.new(nil, "description")]],
|
25
|
+
["index", ["SOAP::SOAPInt", XSD::QName.new(nil, "index")]],
|
26
|
+
["firstQuestion", ["XSD::XSD2Ruby::Question", XSD::QName.new(nil, "firstQuestion")]]
|
27
|
+
]
|
28
|
+
)
|
29
|
+
|
30
|
+
Registry.register(
|
31
|
+
:class => XSD::XSD2Ruby::SectionArray,
|
32
|
+
:schema_type => XSD::QName.new(NsMysample, "sectionArray"),
|
33
|
+
:schema_element => [
|
34
|
+
["element", ["XSD::XSD2Ruby::Section[]", XSD::QName.new(nil, "element")], [1, nil]]
|
35
|
+
]
|
36
|
+
)
|
37
|
+
|
38
|
+
Registry.register(
|
39
|
+
:class => XSD::XSD2Ruby::SectionElement,
|
40
|
+
:schema_name => XSD::QName.new(NsMysample, "sectionElement"),
|
41
|
+
:schema_element => [
|
42
|
+
["sectionID", ["SOAP::SOAPInt", XSD::QName.new(nil, "sectionID")]],
|
43
|
+
["name", ["SOAP::SOAPString", XSD::QName.new(nil, "name")]],
|
44
|
+
["description", ["SOAP::SOAPString", XSD::QName.new(nil, "description")]],
|
45
|
+
["index", ["SOAP::SOAPInt", XSD::QName.new(nil, "index")]],
|
46
|
+
["firstQuestion", ["XSD::XSD2Ruby::Question", XSD::QName.new(nil, "firstQuestion")]]
|
47
|
+
]
|
48
|
+
)
|
49
|
+
end
|
50
|
+
|
51
|
+
end; end
|
@@ -0,0 +1,49 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<xsd:schema targetNamespace="urn:mysample"
|
3
|
+
xmlns:tns="urn:mysample"
|
4
|
+
xmlns:xsd="http://www.w3.org/2001/XMLSchema"
|
5
|
+
xmlns:enc="http://schemas.xmlsoap.org/soap/encoding/"
|
6
|
+
xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">
|
7
|
+
|
8
|
+
<xsd:complexType name="question">
|
9
|
+
<xsd:sequence>
|
10
|
+
<xsd:element name="something" type="xsd:string" />
|
11
|
+
</xsd:sequence>
|
12
|
+
</xsd:complexType>
|
13
|
+
|
14
|
+
<xsd:element name="section">
|
15
|
+
<xsd:complexType>
|
16
|
+
<xsd:sequence>
|
17
|
+
<xsd:element name="different" type="xsd:int" />
|
18
|
+
</xsd:sequence>
|
19
|
+
</xsd:complexType>
|
20
|
+
</xsd:element>
|
21
|
+
|
22
|
+
<xsd:complexType name="section">
|
23
|
+
<xsd:sequence>
|
24
|
+
<xsd:element name="sectionID" type="xsd:int" />
|
25
|
+
<xsd:element name="name" type="xsd:string" />
|
26
|
+
<xsd:element name="description" type="xsd:string" />
|
27
|
+
<xsd:element name="index" type="xsd:int" />
|
28
|
+
<xsd:element name="firstQuestion" type="tns:question" />
|
29
|
+
</xsd:sequence>
|
30
|
+
</xsd:complexType>
|
31
|
+
|
32
|
+
<xsd:complexType name="sectionArray">
|
33
|
+
<xsd:sequence>
|
34
|
+
<xsd:element name="element" type="tns:section" maxOccurs="unbounded"/>
|
35
|
+
</xsd:sequence>
|
36
|
+
</xsd:complexType>
|
37
|
+
|
38
|
+
<xsd:element name="sectionElement">
|
39
|
+
<xsd:complexType>
|
40
|
+
<xsd:sequence>
|
41
|
+
<xsd:element name="sectionID" type="xsd:int" />
|
42
|
+
<xsd:element name="name" type="xsd:string" />
|
43
|
+
<xsd:element name="description" type="xsd:string" />
|
44
|
+
<xsd:element name="index" type="xsd:int" />
|
45
|
+
<xsd:element name="firstQuestion" type="tns:question" />
|
46
|
+
</xsd:sequence>
|
47
|
+
</xsd:complexType>
|
48
|
+
</xsd:element>
|
49
|
+
</xsd:schema>
|
@@ -0,0 +1,90 @@
|
|
1
|
+
require 'test/unit'
|
2
|
+
require 'wsdl/xmlSchema/xsd2ruby'
|
3
|
+
require File.join(File.dirname(File.expand_path(__FILE__)), '..', '..', 'testutil.rb')
|
4
|
+
|
5
|
+
|
6
|
+
module XSD; module XSD2Ruby
|
7
|
+
|
8
|
+
|
9
|
+
class TestXSD2Ruby < Test::Unit::TestCase
|
10
|
+
DIR = File.dirname(File.expand_path(__FILE__))
|
11
|
+
|
12
|
+
def setup
|
13
|
+
Dir.chdir(DIR) do
|
14
|
+
gen = WSDL::XMLSchema::XSD2Ruby.new
|
15
|
+
gen.location = pathname("section.xsd")
|
16
|
+
gen.basedir = DIR
|
17
|
+
gen.logger.level = Logger::FATAL
|
18
|
+
gen.opt['module_path'] = "XSD::XSD2Ruby"
|
19
|
+
gen.opt['classdef'] = nil
|
20
|
+
gen.opt['mapping_registry'] = nil
|
21
|
+
gen.opt['mapper'] = nil
|
22
|
+
gen.opt['force'] = true
|
23
|
+
gen.run
|
24
|
+
TestUtil.require(DIR, 'mysample.rb', 'mysample_mapping_registry.rb', 'mysample_mapper.rb')
|
25
|
+
end
|
26
|
+
end
|
27
|
+
|
28
|
+
def teardown
|
29
|
+
unless $DEBUG
|
30
|
+
File.unlink(pathname("mysample.rb"))
|
31
|
+
File.unlink(pathname("mysample_mapping_registry.rb"))
|
32
|
+
File.unlink(pathname("mysample_mapper.rb"))
|
33
|
+
end
|
34
|
+
# leave generated file for debug.
|
35
|
+
end
|
36
|
+
|
37
|
+
def test_generate
|
38
|
+
compare("expected_mysample.rb", "mysample.rb")
|
39
|
+
compare("expected_mysample_mapping_registry.rb", "mysample_mapping_registry.rb")
|
40
|
+
compare("expected_mysample_mapper.rb", "mysample_mapper.rb")
|
41
|
+
end
|
42
|
+
|
43
|
+
def test_mapper
|
44
|
+
mapper = XSD::XSD2Ruby::MysampleMapper.new
|
45
|
+
# complexType
|
46
|
+
arg = XSD::XSD2Ruby::Section.new(10001, 'name', 'description', 1, Question.new("hello world"))
|
47
|
+
obj = mapper.xml2obj(mapper.obj2xml(arg))
|
48
|
+
assert_section_equal(arg, obj)
|
49
|
+
# element
|
50
|
+
arg = XSD::XSD2Ruby::SectionElement.new(10001, 'name', 'description', 1, Question.new("hello world"))
|
51
|
+
obj = mapper.xml2obj(mapper.obj2xml(arg))
|
52
|
+
assert_section_equal(arg, obj)
|
53
|
+
# array
|
54
|
+
ele = XSD::XSD2Ruby::Section.new(10001, 'name', 'description', 1, Question.new("hello world"))
|
55
|
+
arg = XSD::XSD2Ruby::SectionArray[ele, ele, ele]
|
56
|
+
obj = mapper.xml2obj(mapper.obj2xml(arg))
|
57
|
+
assert_equal(arg.class, obj.class)
|
58
|
+
assert_equal(arg.size, obj.size)
|
59
|
+
0.upto(arg.size - 1) do |idx|
|
60
|
+
assert_section_equal(arg[idx], obj[idx])
|
61
|
+
end
|
62
|
+
end
|
63
|
+
|
64
|
+
private
|
65
|
+
|
66
|
+
def assert_section_equal(arg, obj)
|
67
|
+
assert_equal(arg.class, obj.class)
|
68
|
+
assert_equal(arg.sectionID, obj.sectionID)
|
69
|
+
assert_equal(arg.name, obj.name)
|
70
|
+
assert_equal(arg.description, obj.description)
|
71
|
+
assert_equal(arg.index, obj.index)
|
72
|
+
assert_equal(arg.firstQuestion.class, obj.firstQuestion.class)
|
73
|
+
assert_equal(arg.firstQuestion.something, obj.firstQuestion.something)
|
74
|
+
end
|
75
|
+
|
76
|
+
def pathname(filename)
|
77
|
+
File.join(DIR, filename)
|
78
|
+
end
|
79
|
+
|
80
|
+
def compare(expected, actual)
|
81
|
+
TestUtil.filecompare(pathname(expected), pathname(actual))
|
82
|
+
end
|
83
|
+
|
84
|
+
def loadfile(file)
|
85
|
+
File.open(pathname(file)) { |f| f.read }
|
86
|
+
end
|
87
|
+
end
|
88
|
+
|
89
|
+
|
90
|
+
end; end
|
metadata
ADDED
@@ -0,0 +1,958 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: soap4r-ruby1.9
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
prerelease:
|
5
|
+
version: 1.0.0
|
6
|
+
platform: ruby
|
7
|
+
authors:
|
8
|
+
- kpoorman
|
9
|
+
autorequire:
|
10
|
+
bindir: bin
|
11
|
+
cert_chain: []
|
12
|
+
|
13
|
+
date: 2011-03-31 00:00:00 -04:00
|
14
|
+
default_executable:
|
15
|
+
dependencies:
|
16
|
+
- !ruby/object:Gem::Dependency
|
17
|
+
name: shoulda
|
18
|
+
requirement: &id001 !ruby/object:Gem::Requirement
|
19
|
+
none: false
|
20
|
+
requirements:
|
21
|
+
- - ">="
|
22
|
+
- !ruby/object:Gem::Version
|
23
|
+
version: "0"
|
24
|
+
type: :development
|
25
|
+
prerelease: false
|
26
|
+
version_requirements: *id001
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: bundler
|
29
|
+
requirement: &id002 !ruby/object:Gem::Requirement
|
30
|
+
none: false
|
31
|
+
requirements:
|
32
|
+
- - ~>
|
33
|
+
- !ruby/object:Gem::Version
|
34
|
+
version: 1.0.0
|
35
|
+
type: :development
|
36
|
+
prerelease: false
|
37
|
+
version_requirements: *id002
|
38
|
+
- !ruby/object:Gem::Dependency
|
39
|
+
name: jeweler
|
40
|
+
requirement: &id003 !ruby/object:Gem::Requirement
|
41
|
+
none: false
|
42
|
+
requirements:
|
43
|
+
- - ~>
|
44
|
+
- !ruby/object:Gem::Version
|
45
|
+
version: 1.5.2
|
46
|
+
type: :development
|
47
|
+
prerelease: false
|
48
|
+
version_requirements: *id003
|
49
|
+
- !ruby/object:Gem::Dependency
|
50
|
+
name: rcov
|
51
|
+
requirement: &id004 !ruby/object:Gem::Requirement
|
52
|
+
none: false
|
53
|
+
requirements:
|
54
|
+
- - ">="
|
55
|
+
- !ruby/object:Gem::Version
|
56
|
+
version: "0"
|
57
|
+
type: :development
|
58
|
+
prerelease: false
|
59
|
+
version_requirements: *id004
|
60
|
+
description: Ruby 1.9.2 compatible soap4r library
|
61
|
+
email: kjp@brightleafsoftware.com
|
62
|
+
executables:
|
63
|
+
- wsdl2ruby.rb
|
64
|
+
- xsd2ruby.rb
|
65
|
+
extensions: []
|
66
|
+
|
67
|
+
extra_rdoc_files:
|
68
|
+
- README.rdoc
|
69
|
+
files:
|
70
|
+
- COPYING
|
71
|
+
- GPL
|
72
|
+
- Gemfile
|
73
|
+
- Gemfile.lock
|
74
|
+
- README.rdoc
|
75
|
+
- RELEASE_en.html
|
76
|
+
- RUBYS
|
77
|
+
- Rakefile
|
78
|
+
- VERSION
|
79
|
+
- bin/wsdl2ruby.rb
|
80
|
+
- bin/xsd2ruby.rb
|
81
|
+
- lib/soap/attachment.rb
|
82
|
+
- lib/soap/attrproxy.rb
|
83
|
+
- lib/soap/baseData.rb
|
84
|
+
- lib/soap/element.rb
|
85
|
+
- lib/soap/encodingstyle/aspDotNetHandler.rb
|
86
|
+
- lib/soap/encodingstyle/handler.rb
|
87
|
+
- lib/soap/encodingstyle/literalHandler.rb
|
88
|
+
- lib/soap/encodingstyle/soapHandler.rb
|
89
|
+
- lib/soap/filter.rb
|
90
|
+
- lib/soap/filter/filterchain.rb
|
91
|
+
- lib/soap/filter/handler.rb
|
92
|
+
- lib/soap/filter/streamhandler.rb
|
93
|
+
- lib/soap/generator.rb
|
94
|
+
- lib/soap/header/handler.rb
|
95
|
+
- lib/soap/header/handlerset.rb
|
96
|
+
- lib/soap/header/mappinghandler.rb
|
97
|
+
- lib/soap/header/simplehandler.rb
|
98
|
+
- lib/soap/httpconfigloader.rb
|
99
|
+
- lib/soap/mapping.rb
|
100
|
+
- lib/soap/mapping/encodedregistry.rb
|
101
|
+
- lib/soap/mapping/factory.rb
|
102
|
+
- lib/soap/mapping/literalregistry.rb
|
103
|
+
- lib/soap/mapping/mapping.rb
|
104
|
+
- lib/soap/mapping/registry.rb
|
105
|
+
- lib/soap/mapping/rubytypeFactory.rb
|
106
|
+
- lib/soap/mapping/schemadefinition.rb
|
107
|
+
- lib/soap/mapping/typeMap.rb
|
108
|
+
- lib/soap/mapping/wsdlencodedregistry.rb
|
109
|
+
- lib/soap/mapping/wsdlliteralregistry.rb
|
110
|
+
- lib/soap/marshal.rb
|
111
|
+
- lib/soap/mimemessage.rb
|
112
|
+
- lib/soap/nestedexception.rb
|
113
|
+
- lib/soap/netHttpClient.rb
|
114
|
+
- lib/soap/ns.rb
|
115
|
+
- lib/soap/parser.rb
|
116
|
+
- lib/soap/processor.rb
|
117
|
+
- lib/soap/property.rb
|
118
|
+
- lib/soap/proxy.rb
|
119
|
+
- lib/soap/rpc/cgistub.rb
|
120
|
+
- lib/soap/rpc/driver.rb
|
121
|
+
- lib/soap/rpc/element.rb
|
122
|
+
- lib/soap/rpc/element.rb.orig
|
123
|
+
- lib/soap/rpc/httpserver.rb
|
124
|
+
- lib/soap/rpc/methodDef.rb
|
125
|
+
- lib/soap/rpc/proxy.rb
|
126
|
+
- lib/soap/rpc/router.rb
|
127
|
+
- lib/soap/rpc/rpc.rb
|
128
|
+
- lib/soap/rpc/soaplet.rb
|
129
|
+
- lib/soap/rpc/standaloneServer.rb
|
130
|
+
- lib/soap/ruby18ext.rb
|
131
|
+
- lib/soap/soap.rb
|
132
|
+
- lib/soap/streamHandler.rb
|
133
|
+
- lib/soap/wsdlDriver.rb
|
134
|
+
- lib/wsdl/binding.rb
|
135
|
+
- lib/wsdl/data.rb
|
136
|
+
- lib/wsdl/definitions.rb
|
137
|
+
- lib/wsdl/documentation.rb
|
138
|
+
- lib/wsdl/import.rb
|
139
|
+
- lib/wsdl/importer.rb
|
140
|
+
- lib/wsdl/info.rb
|
141
|
+
- lib/wsdl/message.rb
|
142
|
+
- lib/wsdl/operation.rb
|
143
|
+
- lib/wsdl/operationBinding.rb
|
144
|
+
- lib/wsdl/param.rb
|
145
|
+
- lib/wsdl/parser.rb
|
146
|
+
- lib/wsdl/part.rb
|
147
|
+
- lib/wsdl/port.rb
|
148
|
+
- lib/wsdl/portType.rb
|
149
|
+
- lib/wsdl/service.rb
|
150
|
+
- lib/wsdl/soap/address.rb
|
151
|
+
- lib/wsdl/soap/binding.rb
|
152
|
+
- lib/wsdl/soap/body.rb
|
153
|
+
- lib/wsdl/soap/cgiStubCreator.rb
|
154
|
+
- lib/wsdl/soap/classDefCreator.rb
|
155
|
+
- lib/wsdl/soap/classDefCreatorSupport.rb
|
156
|
+
- lib/wsdl/soap/classNameCreator.rb
|
157
|
+
- lib/wsdl/soap/clientSkeltonCreator.rb
|
158
|
+
- lib/wsdl/soap/complexType.rb
|
159
|
+
- lib/wsdl/soap/data.rb
|
160
|
+
- lib/wsdl/soap/definitions.rb
|
161
|
+
- lib/wsdl/soap/driverCreator.rb
|
162
|
+
- lib/wsdl/soap/element.rb
|
163
|
+
- lib/wsdl/soap/encodedMappingRegistryCreator.rb
|
164
|
+
- lib/wsdl/soap/fault.rb
|
165
|
+
- lib/wsdl/soap/header.rb
|
166
|
+
- lib/wsdl/soap/headerfault.rb
|
167
|
+
- lib/wsdl/soap/literalMappingRegistryCreator.rb
|
168
|
+
- lib/wsdl/soap/mappingRegistryCreator.rb
|
169
|
+
- lib/wsdl/soap/mappingRegistryCreatorSupport.rb
|
170
|
+
- lib/wsdl/soap/methodDefCreator.rb
|
171
|
+
- lib/wsdl/soap/operation.rb
|
172
|
+
- lib/wsdl/soap/servantSkeltonCreator.rb
|
173
|
+
- lib/wsdl/soap/servletStubCreator.rb
|
174
|
+
- lib/wsdl/soap/standaloneServerStubCreator.rb
|
175
|
+
- lib/wsdl/soap/wsdl2ruby.rb
|
176
|
+
- lib/wsdl/types.rb
|
177
|
+
- lib/wsdl/wsdl.rb
|
178
|
+
- lib/wsdl/xmlSchema/all.rb
|
179
|
+
- lib/wsdl/xmlSchema/annotation.rb
|
180
|
+
- lib/wsdl/xmlSchema/any.rb
|
181
|
+
- lib/wsdl/xmlSchema/anyAttribute.rb
|
182
|
+
- lib/wsdl/xmlSchema/attribute.rb
|
183
|
+
- lib/wsdl/xmlSchema/attributeGroup.rb
|
184
|
+
- lib/wsdl/xmlSchema/choice.rb
|
185
|
+
- lib/wsdl/xmlSchema/complexContent.rb
|
186
|
+
- lib/wsdl/xmlSchema/complexExtension.rb
|
187
|
+
- lib/wsdl/xmlSchema/complexRestriction.rb
|
188
|
+
- lib/wsdl/xmlSchema/complexType.rb
|
189
|
+
- lib/wsdl/xmlSchema/content.rb
|
190
|
+
- lib/wsdl/xmlSchema/data.rb
|
191
|
+
- lib/wsdl/xmlSchema/element.rb
|
192
|
+
- lib/wsdl/xmlSchema/enumeration.rb
|
193
|
+
- lib/wsdl/xmlSchema/fractiondigits.rb
|
194
|
+
- lib/wsdl/xmlSchema/group.rb
|
195
|
+
- lib/wsdl/xmlSchema/import.rb
|
196
|
+
- lib/wsdl/xmlSchema/importHandler.rb
|
197
|
+
- lib/wsdl/xmlSchema/importer.rb
|
198
|
+
- lib/wsdl/xmlSchema/include.rb
|
199
|
+
- lib/wsdl/xmlSchema/length.rb
|
200
|
+
- lib/wsdl/xmlSchema/list.rb
|
201
|
+
- lib/wsdl/xmlSchema/maxexclusive.rb
|
202
|
+
- lib/wsdl/xmlSchema/maxinclusive.rb
|
203
|
+
- lib/wsdl/xmlSchema/maxlength.rb
|
204
|
+
- lib/wsdl/xmlSchema/minexclusive.rb
|
205
|
+
- lib/wsdl/xmlSchema/mininclusive.rb
|
206
|
+
- lib/wsdl/xmlSchema/minlength.rb
|
207
|
+
- lib/wsdl/xmlSchema/parser.rb
|
208
|
+
- lib/wsdl/xmlSchema/pattern.rb
|
209
|
+
- lib/wsdl/xmlSchema/ref.rb
|
210
|
+
- lib/wsdl/xmlSchema/schema.rb
|
211
|
+
- lib/wsdl/xmlSchema/sequence.rb
|
212
|
+
- lib/wsdl/xmlSchema/simpleContent.rb
|
213
|
+
- lib/wsdl/xmlSchema/simpleExtension.rb
|
214
|
+
- lib/wsdl/xmlSchema/simpleRestriction.rb
|
215
|
+
- lib/wsdl/xmlSchema/simpleType.rb
|
216
|
+
- lib/wsdl/xmlSchema/totaldigits.rb
|
217
|
+
- lib/wsdl/xmlSchema/union.rb
|
218
|
+
- lib/wsdl/xmlSchema/unique.rb
|
219
|
+
- lib/wsdl/xmlSchema/whitespace.rb
|
220
|
+
- lib/wsdl/xmlSchema/xsd2ruby.rb
|
221
|
+
- lib/xsd/charset.rb
|
222
|
+
- lib/xsd/codegen.rb
|
223
|
+
- lib/xsd/codegen/classdef.rb
|
224
|
+
- lib/xsd/codegen/commentdef.rb
|
225
|
+
- lib/xsd/codegen/gensupport.rb
|
226
|
+
- lib/xsd/codegen/methoddef.rb
|
227
|
+
- lib/xsd/codegen/moduledef.rb
|
228
|
+
- lib/xsd/datatypes.rb
|
229
|
+
- lib/xsd/datatypes1999.rb
|
230
|
+
- lib/xsd/iconvcharset.rb
|
231
|
+
- lib/xsd/mapping.rb
|
232
|
+
- lib/xsd/namedelements.rb
|
233
|
+
- lib/xsd/ns.rb
|
234
|
+
- lib/xsd/qname.rb
|
235
|
+
- lib/xsd/xmlparser.rb
|
236
|
+
- lib/xsd/xmlparser.rb.orig
|
237
|
+
- lib/xsd/xmlparser/libxmlparser.rb
|
238
|
+
- lib/xsd/xmlparser/parser.rb
|
239
|
+
- lib/xsd/xmlparser/rexmlparser.rb
|
240
|
+
- lib/xsd/xmlparser/xmlparser.rb
|
241
|
+
- lib/xsd/xmlparser/xmlscanner.rb
|
242
|
+
- rubyStyle.css
|
243
|
+
- sample/attachment/complexmime/EdmService.rb
|
244
|
+
- sample/attachment/complexmime/README.txt
|
245
|
+
- sample/attachment/complexmime/client.rb
|
246
|
+
- sample/attachment/complexmime/drift.cdf
|
247
|
+
- sample/attachment/complexmime/plaatje.png
|
248
|
+
- sample/attachment/complexmime/server.rb
|
249
|
+
- sample/attachment/swa/client.rb
|
250
|
+
- sample/attachment/swa/server.rb
|
251
|
+
- sample/basic/apacheClient.rb
|
252
|
+
- sample/basic/babelfish.rb
|
253
|
+
- sample/basic/calc/calc.rb
|
254
|
+
- sample/basic/calc/calc2.rb
|
255
|
+
- sample/basic/calc/client.rb
|
256
|
+
- sample/basic/calc/client2.rb
|
257
|
+
- sample/basic/calc/httpd.rb
|
258
|
+
- sample/basic/calc/samplehttpd.conf
|
259
|
+
- sample/basic/calc/server.cgi
|
260
|
+
- sample/basic/calc/server.fcgi
|
261
|
+
- sample/basic/calc/server.rb
|
262
|
+
- sample/basic/calc/server2.rb
|
263
|
+
- sample/basic/exchange/client.rb
|
264
|
+
- sample/basic/exchange/exchange.rb
|
265
|
+
- sample/basic/exchange/httpd.rb
|
266
|
+
- sample/basic/exchange/samplehttpd.conf
|
267
|
+
- sample/basic/exchange/server.cgi
|
268
|
+
- sample/basic/exchange/server.rb
|
269
|
+
- sample/basic/flickr.rb
|
270
|
+
- sample/basic/helloworld/client.rb
|
271
|
+
- sample/basic/helloworld/server.rb
|
272
|
+
- sample/basic/sampleStruct/client.rb
|
273
|
+
- sample/basic/sampleStruct/httpd.rb
|
274
|
+
- sample/basic/sampleStruct/iSampleStruct.rb
|
275
|
+
- sample/basic/sampleStruct/sampleStruct.rb
|
276
|
+
- sample/basic/sampleStruct/samplehttpd.conf
|
277
|
+
- sample/basic/sampleStruct/server.cgi
|
278
|
+
- sample/basic/sampleStruct/server.rb
|
279
|
+
- sample/basic/whois.rb
|
280
|
+
- sample/basic/wsdl_helloworld/README
|
281
|
+
- sample/basic/wsdl_helloworld/client/default.rb
|
282
|
+
- sample/basic/wsdl_helloworld/client/defaultDriver.rb
|
283
|
+
- sample/basic/wsdl_helloworld/client/hws.wsdl
|
284
|
+
- sample/basic/wsdl_helloworld/client/hwsClient.rb
|
285
|
+
- sample/basic/wsdl_helloworld/server/hw_s.rb
|
286
|
+
- sample/basic/wsdl_helloworld/server/hws.wsdl
|
287
|
+
- sample/basic/yahooNewsSearch.rb
|
288
|
+
- sample/howto/as_xml/client.rb
|
289
|
+
- sample/howto/as_xml/server.rb
|
290
|
+
- sample/howto/base64/client.rb
|
291
|
+
- sample/howto/base64/server.rb
|
292
|
+
- sample/howto/custom_ns/client.rb
|
293
|
+
- sample/howto/custom_ns/server.rb
|
294
|
+
- sample/howto/documentliteral/README.txt
|
295
|
+
- sample/howto/documentliteral/client.rb
|
296
|
+
- sample/howto/documentliteral/echo.wsdl
|
297
|
+
- sample/howto/documentliteral/servant.rb
|
298
|
+
- sample/howto/filter/client.rb
|
299
|
+
- sample/howto/filter/server.rb
|
300
|
+
- sample/howto/scopesample/client.rb
|
301
|
+
- sample/howto/scopesample/httpd.rb
|
302
|
+
- sample/howto/scopesample/samplehttpd.conf
|
303
|
+
- sample/howto/scopesample/servant.rb
|
304
|
+
- sample/howto/scopesample/server.cgi
|
305
|
+
- sample/howto/scopesample/server.rb
|
306
|
+
- sample/howto/styleuse/client.rb
|
307
|
+
- sample/howto/styleuse/server.rb
|
308
|
+
- sample/howto/wsdl_fault/README.txt
|
309
|
+
- sample/howto/wsdl_fault/fault/AddClient.rb
|
310
|
+
- sample/howto/wsdl_fault/fault/AddServer.rb
|
311
|
+
- sample/howto/wsdl_fault/fault/AddServiceImpl.rb
|
312
|
+
- sample/howto/wsdl_fault/fault/fault.wsdl
|
313
|
+
- sample/howto/wsdl_fault/multifault/AddClient.rb
|
314
|
+
- sample/howto/wsdl_fault/multifault/AddServer.rb
|
315
|
+
- sample/howto/wsdl_fault/multifault/AddServiceImpl.rb
|
316
|
+
- sample/howto/wsdl_fault/multifault/fault.wsdl
|
317
|
+
- sample/howto/wsdl_hash/client.rb
|
318
|
+
- sample/howto/wsdl_hash/hash.wsdl
|
319
|
+
- sample/howto/wsdl_hash/server.rb
|
320
|
+
- sample/marshal/customfactory.rb
|
321
|
+
- sample/marshal/customregistry.rb
|
322
|
+
- sample/marshal/digraph.rb
|
323
|
+
- sample/marshal/enum/README.txt
|
324
|
+
- sample/marshal/enum/enum.xsd
|
325
|
+
- sample/marshal/enum/enumsample.rb
|
326
|
+
- sample/marshal/enum/enumsample_mapper.rb
|
327
|
+
- sample/marshal/enum/enumsample_mapping_registry.rb
|
328
|
+
- sample/marshal/enum/marshal.rb
|
329
|
+
- sample/payload/basicauth/client.rb
|
330
|
+
- sample/payload/basicauth/htpasswd
|
331
|
+
- sample/payload/basicauth/server.rb
|
332
|
+
- sample/payload/cookies/calc.rb
|
333
|
+
- sample/payload/cookies/client.rb
|
334
|
+
- sample/payload/cookies/filterclient.rb
|
335
|
+
- sample/payload/cookies/server.rb
|
336
|
+
- sample/payload/gzipped/client.rb
|
337
|
+
- sample/payload/gzipped/server.rb
|
338
|
+
- sample/payload/ssl/files/README
|
339
|
+
- sample/payload/ssl/files/ca.cert
|
340
|
+
- sample/payload/ssl/files/client.cert
|
341
|
+
- sample/payload/ssl/files/client.key
|
342
|
+
- sample/payload/ssl/files/server.cert
|
343
|
+
- sample/payload/ssl/files/server.key
|
344
|
+
- sample/payload/ssl/files/sslclient.properties
|
345
|
+
- sample/payload/ssl/files/sslclient_require_noserverauth.properties
|
346
|
+
- sample/payload/ssl/files/sslclient_with_clientauth.properties
|
347
|
+
- sample/payload/ssl/files/subca.cert
|
348
|
+
- sample/payload/ssl/sslclient.rb
|
349
|
+
- sample/payload/ssl/sslclient_require_noserverauth.rb
|
350
|
+
- sample/payload/ssl/sslclient_with_clientauth.rb
|
351
|
+
- sample/payload/ssl/sslserver.rb
|
352
|
+
- sample/payload/ssl/sslserver_noauth.rb
|
353
|
+
- sample/payload/ssl/sslserver_require_clientauth.rb
|
354
|
+
- sample/showcase/soap/hippo5tq/hippo5tq.rb
|
355
|
+
- sample/showcase/soap/hippo5tq/hippo5tq2.rb
|
356
|
+
- sample/showcase/soap/hippo5tq/hippoClient.rb
|
357
|
+
- sample/showcase/soap/icd/IICD.rb
|
358
|
+
- sample/showcase/soap/icd/icd.rb
|
359
|
+
- sample/showcase/soap/mssoap/README.txt
|
360
|
+
- sample/showcase/soap/mssoap/client.vba
|
361
|
+
- sample/showcase/soap/mssoap/stockQuoteService.cgi
|
362
|
+
- sample/showcase/soap/mssoap/stockQuoteService.rb
|
363
|
+
- sample/showcase/soap/mssoap/stockQuoteService.wsdl
|
364
|
+
- sample/showcase/soap/mssoap/stockQuoteServiceClient.rb
|
365
|
+
- sample/showcase/soap/mssoap/stockQuoteServiceClient.xls
|
366
|
+
- sample/showcase/soap/mssoap/stockQuoteServicePortTypeDriver.rb
|
367
|
+
- sample/showcase/soap/netDicV06/INetDicV06.rb
|
368
|
+
- sample/showcase/soap/netDicV06/netDicV06.rb
|
369
|
+
- sample/showcase/soap/raa/SOAP__Lite.pl
|
370
|
+
- sample/showcase/soap/raa/pocketSOAP.js
|
371
|
+
- sample/showcase/soap/raa2.4/raa.rb
|
372
|
+
- sample/showcase/soap/raa2.4/raa.wsdl
|
373
|
+
- sample/showcase/soap/raa2.4/raaDriver.rb
|
374
|
+
- sample/showcase/soap/raa2.4/raaServiceClient.rb
|
375
|
+
- sample/showcase/soap/raa2.4/sample.rb
|
376
|
+
- sample/showcase/soap/rwiki/rwikiClient.rb
|
377
|
+
- sample/showcase/soap/rwiki/rwikiServer.cgi
|
378
|
+
- sample/showcase/soap/soapbox/ContactsDataSet.xml
|
379
|
+
- sample/showcase/soap/soapbox/ExceptionDataSet.xml
|
380
|
+
- sample/showcase/soap/soapbox/MessageDataSet.xml
|
381
|
+
- sample/showcase/soap/soapbox/SoapBoxWebService.wsdl
|
382
|
+
- sample/showcase/soap/soapbox/SoapBoxWebServiceWithRawXML.wsdl
|
383
|
+
- sample/showcase/soap/soapbox/wsdlDriver.rb
|
384
|
+
- sample/showcase/wsdl/PayPalSvc/client.rb
|
385
|
+
- sample/showcase/wsdl/amazon/AmazonSearch.rb
|
386
|
+
- sample/showcase/wsdl/amazon/AmazonSearchDriver.rb
|
387
|
+
- sample/showcase/wsdl/amazon/sampleClient.rb
|
388
|
+
- sample/showcase/wsdl/amazon/wsdlDriver.rb
|
389
|
+
- sample/showcase/wsdl/amazonEC/client.rb
|
390
|
+
- sample/showcase/wsdl/eBaySvc/sampleclient.rb
|
391
|
+
- sample/showcase/wsdl/googleAdwords/CampaignService.wsdl
|
392
|
+
- sample/showcase/wsdl/googleAdwords/ca.pem
|
393
|
+
- sample/showcase/wsdl/googleAdwords/client.rb
|
394
|
+
- sample/showcase/wsdl/googleAdwords/soap/property
|
395
|
+
- sample/showcase/wsdl/googleSearch/GoogleSearch.rb
|
396
|
+
- sample/showcase/wsdl/googleSearch/GoogleSearchDriver.rb
|
397
|
+
- sample/showcase/wsdl/googleSearch/README
|
398
|
+
- sample/showcase/wsdl/googleSearch/httpd.rb
|
399
|
+
- sample/showcase/wsdl/googleSearch/sampleClient.rb
|
400
|
+
- sample/showcase/wsdl/googleSearch/samplehttpd.conf
|
401
|
+
- sample/showcase/wsdl/googleSearch/sjissearch.sh
|
402
|
+
- sample/showcase/wsdl/googleSearch/wsdlDriver.rb
|
403
|
+
- sample/showcase/wsdl/noaa/README.txt
|
404
|
+
- sample/showcase/wsdl/noaa/client.rb
|
405
|
+
- sample/showcase/wsdl/noaa/default.rb
|
406
|
+
- sample/showcase/wsdl/noaa/defaultDriver.rb
|
407
|
+
- sample/showcase/wsdl/noaa/defaultMappingRegistry.rb
|
408
|
+
- sample/showcase/wsdl/noaa/ndfdXMLClient.rb
|
409
|
+
- sample/showcase/wsdl/raa2.4/raa.rb
|
410
|
+
- sample/showcase/wsdl/raa2.4/raa.wsdl
|
411
|
+
- sample/showcase/wsdl/raa2.4/wsdlDriver.rb
|
412
|
+
- sample/showcase/wsdl/rnn/client.rb
|
413
|
+
- sample/showcase/wsdl/rnn/post.rb
|
414
|
+
- sample/showcase/wsdl/rnn/rnn-hash.wsdl
|
415
|
+
- sample/showcase/wsdl/rnn/rnn.wsdl
|
416
|
+
- sample/showcase/wsdl/rnn/submit.rb
|
417
|
+
- sample/showcase/wsdl/salesforce/SforceServiceClient.rb
|
418
|
+
- sample/showcase/wsdl/salesforce/ca.pem
|
419
|
+
- sample/showcase/wsdl/salesforce/client.rb
|
420
|
+
- sample/showcase/wsdl/salesforce/default.rb
|
421
|
+
- sample/showcase/wsdl/salesforce/defaultDriver.rb
|
422
|
+
- sample/showcase/wsdl/salesforce/soap/property
|
423
|
+
- sample/soapheader/authheader/authmgr.rb
|
424
|
+
- sample/soapheader/authheader/client.rb
|
425
|
+
- sample/soapheader/authheader/client2.rb
|
426
|
+
- sample/soapheader/authheader/server.rb
|
427
|
+
- sample/soapheader/authheader/server2.rb
|
428
|
+
- sample/soapheader/soapext_basicauth/client.rb
|
429
|
+
- sample/soapheader/soapext_basicauth/mms_MizGIS.rb
|
430
|
+
- sample/soapheader/soapext_basicauth/mms_MizGIS.wsdl
|
431
|
+
- sample/soapheader/soapext_basicauth/mms_MizGISClient.rb
|
432
|
+
- sample/soapheader/soapext_basicauth/mms_MizGISDriver.rb
|
433
|
+
- sample/soapheader/soapext_basicauth/mms_MizGISMappingRegistry.rb
|
434
|
+
- setup.rb
|
435
|
+
- soap4r-ruby1.9.gemspec
|
436
|
+
- test/16runner.rb
|
437
|
+
- test/interopR2/README.txt
|
438
|
+
- test/interopR2/SOAPBuildersInterop_R2.wsdl
|
439
|
+
- test/interopR2/SOAPBuildersInterop_R2GrB.wsdl
|
440
|
+
- test/interopR2/base.rb
|
441
|
+
- test/interopR2/client.NetRemoting.rb
|
442
|
+
- test/interopR2/client.rb
|
443
|
+
- test/interopR2/client4S4C.rb
|
444
|
+
- test/interopR2/client4S4C2.rb
|
445
|
+
- test/interopR2/clientASP.NET.rb
|
446
|
+
- test/interopR2/clientApacheAxis.rb
|
447
|
+
- test/interopR2/clientApacheSOAP.rb
|
448
|
+
- test/interopR2/clientBEAWebLogic.rb
|
449
|
+
- test/interopR2/clientBase.rb
|
450
|
+
- test/interopR2/clientCapeConnect.rb
|
451
|
+
- test/interopR2/clientDelphi.rb
|
452
|
+
- test/interopR2/clientEasySoap.rb
|
453
|
+
- test/interopR2/clientFrontier.rb
|
454
|
+
- test/interopR2/clientGLUE.rb
|
455
|
+
- test/interopR2/clientHP.rb
|
456
|
+
- test/interopR2/clientJAX-RPC.rb
|
457
|
+
- test/interopR2/clientJSOAP.rb
|
458
|
+
- test/interopR2/clientKafkaXSLT.rb
|
459
|
+
- test/interopR2/clientMSSOAPToolkit2.0.rb
|
460
|
+
- test/interopR2/clientMSSOAPToolkit3.0.rb
|
461
|
+
- test/interopR2/clientNuSOAP.rb
|
462
|
+
- test/interopR2/clientNuWave.rb
|
463
|
+
- test/interopR2/clientOpenLink.rb
|
464
|
+
- test/interopR2/clientOracle.rb
|
465
|
+
- test/interopR2/clientPEAR.rb
|
466
|
+
- test/interopR2/clientPhalanx.rb
|
467
|
+
- test/interopR2/clientSIMACE.rb
|
468
|
+
- test/interopR2/clientSOAP4R.rb
|
469
|
+
- test/interopR2/clientSOAP__Lite.rb
|
470
|
+
- test/interopR2/clientSQLData.rb
|
471
|
+
- test/interopR2/clientSilverStream.rb
|
472
|
+
- test/interopR2/clientSpray2001.rb
|
473
|
+
- test/interopR2/clientSun.rb
|
474
|
+
- test/interopR2/clientVWOpentalkSoap.rb
|
475
|
+
- test/interopR2/clientWASP.rb
|
476
|
+
- test/interopR2/clientWASPC.rb
|
477
|
+
- test/interopR2/clientWebMethods.rb
|
478
|
+
- test/interopR2/clientWhiteMesa.rb
|
479
|
+
- test/interopR2/clientWingfoot.rb
|
480
|
+
- test/interopR2/clientXMLBus.rb
|
481
|
+
- test/interopR2/clientXMLRPC-EPI.rb
|
482
|
+
- test/interopR2/clientXSOAP.rb
|
483
|
+
- test/interopR2/clientZSI.rb
|
484
|
+
- test/interopR2/clienteSOAP.rb
|
485
|
+
- test/interopR2/clientgSOAP.rb
|
486
|
+
- test/interopR2/clientkSOAP.rb
|
487
|
+
- test/interopR2/iSimonReg.rb
|
488
|
+
- test/interopR2/interopResultBase.rb
|
489
|
+
- test/interopR2/interopService.rb
|
490
|
+
- test/interopR2/rwikiInteropService.rb
|
491
|
+
- test/interopR2/server.cgi
|
492
|
+
- test/interopR2/server.rb
|
493
|
+
- test/interopR2/simonReg.rb
|
494
|
+
- test/interopR2/test.sh
|
495
|
+
- test/interopR4/client.rb
|
496
|
+
- test/results
|
497
|
+
- test/runner.rb
|
498
|
+
- test/sm11/classDef.rb
|
499
|
+
- test/sm11/client.rb
|
500
|
+
- test/sm11/driver.rb
|
501
|
+
- test/sm11/servant.rb
|
502
|
+
- test/sm11/server.rb
|
503
|
+
- test/soap/asp.net/hello.wsdl
|
504
|
+
- test/soap/asp.net/test_aspdotnet.rb
|
505
|
+
- test/soap/auth/htdigest
|
506
|
+
- test/soap/auth/htpasswd
|
507
|
+
- test/soap/auth/test_basic.rb
|
508
|
+
- test/soap/auth/test_digest.rb
|
509
|
+
- test/soap/calc/calc.rb
|
510
|
+
- test/soap/calc/calc2.rb
|
511
|
+
- test/soap/calc/server.cgi
|
512
|
+
- test/soap/calc/server.rb
|
513
|
+
- test/soap/calc/server2.rb
|
514
|
+
- test/soap/calc/test_calc.rb
|
515
|
+
- test/soap/calc/test_calc2.rb
|
516
|
+
- test/soap/calc/test_calc_cgi.rb
|
517
|
+
- test/soap/case/test_mapping.rb
|
518
|
+
- test/soap/fault/test_customfault.rb
|
519
|
+
- test/soap/fault/test_fault.rb
|
520
|
+
- test/soap/fault/test_soaparray.rb
|
521
|
+
- test/soap/filter/test_filter.rb
|
522
|
+
- test/soap/header/server.cgi
|
523
|
+
- test/soap/header/session.pstoredb
|
524
|
+
- test/soap/header/test_authheader.rb
|
525
|
+
- test/soap/header/test_authheader_cgi.rb
|
526
|
+
- test/soap/header/test_simplehandler.rb
|
527
|
+
- test/soap/helloworld/hw_s.rb
|
528
|
+
- test/soap/helloworld/test_helloworld.rb
|
529
|
+
- test/soap/htpasswd
|
530
|
+
- test/soap/literalArrayMapping/amazonEc.rb
|
531
|
+
- test/soap/literalArrayMapping/amazonEcDriver.rb
|
532
|
+
- test/soap/literalArrayMapping/amazonresponse.xml
|
533
|
+
- test/soap/literalArrayMapping/test_definedarray.rb
|
534
|
+
- test/soap/marshal/marshaltestlib.rb
|
535
|
+
- test/soap/marshal/test_digraph.rb
|
536
|
+
- test/soap/marshal/test_marshal.rb
|
537
|
+
- test/soap/marshal/test_struct.rb
|
538
|
+
- test/soap/ssl/README
|
539
|
+
- test/soap/ssl/ca.cert
|
540
|
+
- test/soap/ssl/client.cert
|
541
|
+
- test/soap/ssl/client.key
|
542
|
+
- test/soap/ssl/server.cert
|
543
|
+
- test/soap/ssl/server.key
|
544
|
+
- test/soap/ssl/sslsvr.rb
|
545
|
+
- test/soap/ssl/subca.cert
|
546
|
+
- test/soap/ssl/test_ssl.rb
|
547
|
+
- test/soap/struct/test_struct.rb
|
548
|
+
- test/soap/styleuse/client.rb
|
549
|
+
- test/soap/styleuse/server.rb
|
550
|
+
- test/soap/swa/test_file.rb
|
551
|
+
- test/soap/test_basetype.rb
|
552
|
+
- test/soap/test_cookie.rb
|
553
|
+
- test/soap/test_custom_ns.rb
|
554
|
+
- test/soap/test_custommap.rb
|
555
|
+
- test/soap/test_empty.rb
|
556
|
+
- test/soap/test_envelopenamespace.rb
|
557
|
+
- test/soap/test_extraattr.rb
|
558
|
+
- test/soap/test_generator.rb
|
559
|
+
- test/soap/test_httpconfigloader.rb
|
560
|
+
- test/soap/test_mapping.rb
|
561
|
+
- test/soap/test_nestedexception.rb
|
562
|
+
- test/soap/test_nil.rb
|
563
|
+
- test/soap/test_no_indent.rb
|
564
|
+
- test/soap/test_property.rb
|
565
|
+
- test/soap/test_response_as_xml.rb
|
566
|
+
- test/soap/test_soapelement.rb
|
567
|
+
- test/soap/test_streamhandler.rb
|
568
|
+
- test/soap/test_styleuse.rb
|
569
|
+
- test/soap/wsdlDriver/README.txt
|
570
|
+
- test/soap/wsdlDriver/calc.wsdl
|
571
|
+
- test/soap/wsdlDriver/document.wsdl
|
572
|
+
- test/soap/wsdlDriver/echo_version.rb
|
573
|
+
- test/soap/wsdlDriver/simpletype.wsdl
|
574
|
+
- test/soap/wsdlDriver/test_calc.rb
|
575
|
+
- test/soap/wsdlDriver/test_document.rb
|
576
|
+
- test/soap/wsdlDriver/test_simpletype.rb
|
577
|
+
- test/testutil.rb
|
578
|
+
- test/wsdl/abstract/abstract.wsdl
|
579
|
+
- test/wsdl/abstract/test_abstract.rb
|
580
|
+
- test/wsdl/anonymous/expectedClassDef.rb
|
581
|
+
- test/wsdl/anonymous/expectedDriver.rb
|
582
|
+
- test/wsdl/anonymous/expectedMappingRegistry.rb
|
583
|
+
- test/wsdl/anonymous/lp.wsdl
|
584
|
+
- test/wsdl/anonymous/test_anonymous.rb
|
585
|
+
- test/wsdl/any/any.wsdl
|
586
|
+
- test/wsdl/any/expectedDriver.rb
|
587
|
+
- test/wsdl/any/expectedEcho.rb
|
588
|
+
- test/wsdl/any/expectedMappingRegistry.rb
|
589
|
+
- test/wsdl/any/expectedService.rb
|
590
|
+
- test/wsdl/any/test_any.rb
|
591
|
+
- test/wsdl/axisArray/axisArray.wsdl
|
592
|
+
- test/wsdl/axisArray/test_axisarray.rb
|
593
|
+
- test/wsdl/choice/choice.wsdl
|
594
|
+
- test/wsdl/choice/test_choice.rb
|
595
|
+
- test/wsdl/complexcontent/complexContent.wsdl
|
596
|
+
- test/wsdl/complexcontent/test_echo.rb
|
597
|
+
- test/wsdl/datetime/DatetimeService.rb
|
598
|
+
- test/wsdl/datetime/datetime.rb
|
599
|
+
- test/wsdl/datetime/datetime.wsdl
|
600
|
+
- test/wsdl/datetime/datetimeServant.rb
|
601
|
+
- test/wsdl/datetime/test_datetime.rb
|
602
|
+
- test/wsdl/document/array/double.wsdl
|
603
|
+
- test/wsdl/document/array/test_array.rb
|
604
|
+
- test/wsdl/document/document.wsdl
|
605
|
+
- test/wsdl/document/number.wsdl
|
606
|
+
- test/wsdl/document/ping_nosoapaction.wsdl
|
607
|
+
- test/wsdl/document/test_nosoapaction.rb
|
608
|
+
- test/wsdl/document/test_number.rb
|
609
|
+
- test/wsdl/document/test_rpc.rb
|
610
|
+
- test/wsdl/emptycomplextype.wsdl
|
611
|
+
- test/wsdl/fault/fault.wsdl
|
612
|
+
- test/wsdl/fault/multifault.wsdl
|
613
|
+
- test/wsdl/fault/test_fault.rb
|
614
|
+
- test/wsdl/fault/test_multifault.rb
|
615
|
+
- test/wsdl/group/expectedClassdef.rb
|
616
|
+
- test/wsdl/group/expectedDriver.rb
|
617
|
+
- test/wsdl/group/expectedMappingRegistry.rb
|
618
|
+
- test/wsdl/group/group.wsdl
|
619
|
+
- test/wsdl/group/test_rpc.rb
|
620
|
+
- test/wsdl/list/list.wsdl
|
621
|
+
- test/wsdl/list/test_list.rb
|
622
|
+
- test/wsdl/map/map.wsdl
|
623
|
+
- test/wsdl/map/map.xml
|
624
|
+
- test/wsdl/map/test_map.rb
|
625
|
+
- test/wsdl/marshal/Person.rb
|
626
|
+
- test/wsdl/marshal/person.wsdl
|
627
|
+
- test/wsdl/marshal/person_org.rb
|
628
|
+
- test/wsdl/marshal/test_wsdlmarshal.rb
|
629
|
+
- test/wsdl/multiplefault.wsdl
|
630
|
+
- test/wsdl/oneway/oneway.wsdl
|
631
|
+
- test/wsdl/oneway/test_oneway.rb
|
632
|
+
- test/wsdl/overload/expectedClient.rb
|
633
|
+
- test/wsdl/overload/expectedDriver.rb
|
634
|
+
- test/wsdl/overload/expectedServant.rb
|
635
|
+
- test/wsdl/overload/overload.wsdl
|
636
|
+
- test/wsdl/overload/test_overload.rb
|
637
|
+
- test/wsdl/qualified/lp.wsdl
|
638
|
+
- test/wsdl/qualified/lp.xsd
|
639
|
+
- test/wsdl/qualified/np.wsdl
|
640
|
+
- test/wsdl/qualified/test_qualified.rb
|
641
|
+
- test/wsdl/qualified/test_unqualified.rb
|
642
|
+
- test/wsdl/raa/RAAService.rb
|
643
|
+
- test/wsdl/raa/README.txt
|
644
|
+
- test/wsdl/raa/expectedClassDef.rb
|
645
|
+
- test/wsdl/raa/expectedDriver.rb
|
646
|
+
- test/wsdl/raa/expectedMappingRegistry.rb
|
647
|
+
- test/wsdl/raa/raa.wsdl
|
648
|
+
- test/wsdl/raa/test_raa.rb
|
649
|
+
- test/wsdl/ref/expectedDriver.rb
|
650
|
+
- test/wsdl/ref/expectedProduct.rb
|
651
|
+
- test/wsdl/ref/product.wsdl
|
652
|
+
- test/wsdl/ref/test_ref.rb
|
653
|
+
- test/wsdl/rpc/rpc.wsdl
|
654
|
+
- test/wsdl/rpc/test-rpc-lit.wsdl
|
655
|
+
- test/wsdl/rpc/test_rpc.rb
|
656
|
+
- test/wsdl/rpc/test_rpc_lit.rb
|
657
|
+
- test/wsdl/simplecontent/simplecontent.wsdl
|
658
|
+
- test/wsdl/simplecontent/test_simplecontent.rb
|
659
|
+
- test/wsdl/simpletype/rpc/echo_version.rb
|
660
|
+
- test/wsdl/simpletype/rpc/echo_versionDriver.rb
|
661
|
+
- test/wsdl/simpletype/rpc/echo_versionMappingRegistry.rb
|
662
|
+
- test/wsdl/simpletype/rpc/echo_versionServant.rb
|
663
|
+
- test/wsdl/simpletype/rpc/echo_version_service.rb
|
664
|
+
- test/wsdl/simpletype/rpc/echo_version_serviceClient.rb
|
665
|
+
- test/wsdl/simpletype/rpc/expectedClient.rb
|
666
|
+
- test/wsdl/simpletype/rpc/expectedDriver.rb
|
667
|
+
- test/wsdl/simpletype/rpc/expectedEchoVersion.rb
|
668
|
+
- test/wsdl/simpletype/rpc/expectedMappingRegistry.rb
|
669
|
+
- test/wsdl/simpletype/rpc/expectedServant.rb
|
670
|
+
- test/wsdl/simpletype/rpc/expectedService.rb
|
671
|
+
- test/wsdl/simpletype/rpc/rpc.wsdl
|
672
|
+
- test/wsdl/simpletype/rpc/test_rpc.rb
|
673
|
+
- test/wsdl/simpletype/simpletype.wsdl
|
674
|
+
- test/wsdl/simpletype/test_simpletype.rb
|
675
|
+
- test/wsdl/soap/soapbodyparts.wsdl
|
676
|
+
- test/wsdl/soap/test_soapbodyparts.rb
|
677
|
+
- test/wsdl/soap/wsdl2ruby/echo_version.rb
|
678
|
+
- test/wsdl/soap/wsdl2ruby/echo_versionDriver.rb
|
679
|
+
- test/wsdl/soap/wsdl2ruby/echo_versionMappingRegistry.rb
|
680
|
+
- test/wsdl/soap/wsdl2ruby/echo_versionServant.rb
|
681
|
+
- test/wsdl/soap/wsdl2ruby/echo_version_service.cgi
|
682
|
+
- test/wsdl/soap/wsdl2ruby/echo_version_service.rb
|
683
|
+
- test/wsdl/soap/wsdl2ruby/echo_version_serviceClient.rb
|
684
|
+
- test/wsdl/soap/wsdl2ruby/expectedClassdef.rb
|
685
|
+
- test/wsdl/soap/wsdl2ruby/expectedClient.rb
|
686
|
+
- test/wsdl/soap/wsdl2ruby/expectedDriver.rb
|
687
|
+
- test/wsdl/soap/wsdl2ruby/expectedMappingRegistry.rb
|
688
|
+
- test/wsdl/soap/wsdl2ruby/expectedServant.rb
|
689
|
+
- test/wsdl/soap/wsdl2ruby/expectedService.cgi
|
690
|
+
- test/wsdl/soap/wsdl2ruby/expectedService.rb
|
691
|
+
- test/wsdl/soap/wsdl2ruby/rpc.wsdl
|
692
|
+
- test/wsdl/soap/wsdl2ruby/section/expectedClassdef.rb
|
693
|
+
- test/wsdl/soap/wsdl2ruby/section/section.xsd
|
694
|
+
- test/wsdl/soap/wsdl2ruby/section/test_section.rb
|
695
|
+
- test/wsdl/soap/wsdl2ruby/soapenc/soapenc.wsdl
|
696
|
+
- test/wsdl/soap/wsdl2ruby/soapenc/test_soapenc.rb
|
697
|
+
- test/wsdl/soap/wsdl2ruby/test_wsdl2ruby.rb
|
698
|
+
- test/wsdl/soaptype/soaptype.wsdl
|
699
|
+
- test/wsdl/soaptype/test_soaptype.rb
|
700
|
+
- test/wsdl/test_emptycomplextype.rb
|
701
|
+
- test/wsdl/test_fault.rb
|
702
|
+
- test/wsdl/test_multiplefault.rb
|
703
|
+
- test/xsd/codegen/test_classdef.rb
|
704
|
+
- test/xsd/noencoding.xml
|
705
|
+
- test/xsd/test_noencoding.rb
|
706
|
+
- test/xsd/test_ns.rb
|
707
|
+
- test/xsd/test_xmlschemaparser.rb
|
708
|
+
- test/xsd/test_xsd.rb
|
709
|
+
- test/xsd/xmllang.xml
|
710
|
+
- test/xsd/xmlschema.xml
|
711
|
+
- test/xsd/xsd2ruby/expected_mysample.rb
|
712
|
+
- test/xsd/xsd2ruby/expected_mysample_mapper.rb
|
713
|
+
- test/xsd/xsd2ruby/expected_mysample_mapping_registry.rb
|
714
|
+
- test/xsd/xsd2ruby/section.xsd
|
715
|
+
- test/xsd/xsd2ruby/test_xsd2ruby.rb
|
716
|
+
has_rdoc: true
|
717
|
+
homepage: https://github.com/noeticpenguin/soap4r-noeticpenguin
|
718
|
+
licenses:
|
719
|
+
- MIT
|
720
|
+
post_install_message:
|
721
|
+
rdoc_options: []
|
722
|
+
|
723
|
+
require_paths:
|
724
|
+
- lib
|
725
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
726
|
+
none: false
|
727
|
+
requirements:
|
728
|
+
- - ">="
|
729
|
+
- !ruby/object:Gem::Version
|
730
|
+
hash: -513904689055915895
|
731
|
+
segments:
|
732
|
+
- 0
|
733
|
+
version: "0"
|
734
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
735
|
+
none: false
|
736
|
+
requirements:
|
737
|
+
- - ">="
|
738
|
+
- !ruby/object:Gem::Version
|
739
|
+
version: "0"
|
740
|
+
requirements: []
|
741
|
+
|
742
|
+
rubyforge_project:
|
743
|
+
rubygems_version: 1.6.2
|
744
|
+
signing_key:
|
745
|
+
specification_version: 3
|
746
|
+
summary: Ruby 1.9.2 compatible soap4r library
|
747
|
+
test_files:
|
748
|
+
- test/16runner.rb
|
749
|
+
- test/interopR2/base.rb
|
750
|
+
- test/interopR2/client.NetRemoting.rb
|
751
|
+
- test/interopR2/client.rb
|
752
|
+
- test/interopR2/client4S4C.rb
|
753
|
+
- test/interopR2/client4S4C2.rb
|
754
|
+
- test/interopR2/clientASP.NET.rb
|
755
|
+
- test/interopR2/clientApacheAxis.rb
|
756
|
+
- test/interopR2/clientApacheSOAP.rb
|
757
|
+
- test/interopR2/clientBEAWebLogic.rb
|
758
|
+
- test/interopR2/clientBase.rb
|
759
|
+
- test/interopR2/clientCapeConnect.rb
|
760
|
+
- test/interopR2/clientDelphi.rb
|
761
|
+
- test/interopR2/clientEasySoap.rb
|
762
|
+
- test/interopR2/clientFrontier.rb
|
763
|
+
- test/interopR2/clientGLUE.rb
|
764
|
+
- test/interopR2/clientHP.rb
|
765
|
+
- test/interopR2/clientJAX-RPC.rb
|
766
|
+
- test/interopR2/clientJSOAP.rb
|
767
|
+
- test/interopR2/clientKafkaXSLT.rb
|
768
|
+
- test/interopR2/clientMSSOAPToolkit2.0.rb
|
769
|
+
- test/interopR2/clientMSSOAPToolkit3.0.rb
|
770
|
+
- test/interopR2/clientNuSOAP.rb
|
771
|
+
- test/interopR2/clientNuWave.rb
|
772
|
+
- test/interopR2/clientOpenLink.rb
|
773
|
+
- test/interopR2/clientOracle.rb
|
774
|
+
- test/interopR2/clientPEAR.rb
|
775
|
+
- test/interopR2/clientPhalanx.rb
|
776
|
+
- test/interopR2/clientSIMACE.rb
|
777
|
+
- test/interopR2/clientSOAP4R.rb
|
778
|
+
- test/interopR2/clientSOAP__Lite.rb
|
779
|
+
- test/interopR2/clientSQLData.rb
|
780
|
+
- test/interopR2/clientSilverStream.rb
|
781
|
+
- test/interopR2/clientSpray2001.rb
|
782
|
+
- test/interopR2/clientSun.rb
|
783
|
+
- test/interopR2/clientVWOpentalkSoap.rb
|
784
|
+
- test/interopR2/clientWASP.rb
|
785
|
+
- test/interopR2/clientWASPC.rb
|
786
|
+
- test/interopR2/clientWebMethods.rb
|
787
|
+
- test/interopR2/clientWhiteMesa.rb
|
788
|
+
- test/interopR2/clientWingfoot.rb
|
789
|
+
- test/interopR2/clientXMLBus.rb
|
790
|
+
- test/interopR2/clientXMLRPC-EPI.rb
|
791
|
+
- test/interopR2/clientXSOAP.rb
|
792
|
+
- test/interopR2/clientZSI.rb
|
793
|
+
- test/interopR2/clienteSOAP.rb
|
794
|
+
- test/interopR2/clientgSOAP.rb
|
795
|
+
- test/interopR2/clientkSOAP.rb
|
796
|
+
- test/interopR2/iSimonReg.rb
|
797
|
+
- test/interopR2/interopResultBase.rb
|
798
|
+
- test/interopR2/interopService.rb
|
799
|
+
- test/interopR2/rwikiInteropService.rb
|
800
|
+
- test/interopR2/server.rb
|
801
|
+
- test/interopR2/simonReg.rb
|
802
|
+
- test/interopR4/client.rb
|
803
|
+
- test/runner.rb
|
804
|
+
- test/sm11/classDef.rb
|
805
|
+
- test/sm11/client.rb
|
806
|
+
- test/sm11/driver.rb
|
807
|
+
- test/sm11/servant.rb
|
808
|
+
- test/sm11/server.rb
|
809
|
+
- test/soap/asp.net/test_aspdotnet.rb
|
810
|
+
- test/soap/auth/test_basic.rb
|
811
|
+
- test/soap/auth/test_digest.rb
|
812
|
+
- test/soap/calc/calc.rb
|
813
|
+
- test/soap/calc/calc2.rb
|
814
|
+
- test/soap/calc/server.rb
|
815
|
+
- test/soap/calc/server2.rb
|
816
|
+
- test/soap/calc/test_calc.rb
|
817
|
+
- test/soap/calc/test_calc2.rb
|
818
|
+
- test/soap/calc/test_calc_cgi.rb
|
819
|
+
- test/soap/case/test_mapping.rb
|
820
|
+
- test/soap/fault/test_customfault.rb
|
821
|
+
- test/soap/fault/test_fault.rb
|
822
|
+
- test/soap/fault/test_soaparray.rb
|
823
|
+
- test/soap/filter/test_filter.rb
|
824
|
+
- test/soap/header/test_authheader.rb
|
825
|
+
- test/soap/header/test_authheader_cgi.rb
|
826
|
+
- test/soap/header/test_simplehandler.rb
|
827
|
+
- test/soap/helloworld/hw_s.rb
|
828
|
+
- test/soap/helloworld/test_helloworld.rb
|
829
|
+
- test/soap/literalArrayMapping/amazonEc.rb
|
830
|
+
- test/soap/literalArrayMapping/amazonEcDriver.rb
|
831
|
+
- test/soap/literalArrayMapping/test_definedarray.rb
|
832
|
+
- test/soap/marshal/marshaltestlib.rb
|
833
|
+
- test/soap/marshal/test_digraph.rb
|
834
|
+
- test/soap/marshal/test_marshal.rb
|
835
|
+
- test/soap/marshal/test_struct.rb
|
836
|
+
- test/soap/ssl/sslsvr.rb
|
837
|
+
- test/soap/ssl/test_ssl.rb
|
838
|
+
- test/soap/struct/test_struct.rb
|
839
|
+
- test/soap/styleuse/client.rb
|
840
|
+
- test/soap/styleuse/server.rb
|
841
|
+
- test/soap/swa/test_file.rb
|
842
|
+
- test/soap/test_basetype.rb
|
843
|
+
- test/soap/test_cookie.rb
|
844
|
+
- test/soap/test_custom_ns.rb
|
845
|
+
- test/soap/test_custommap.rb
|
846
|
+
- test/soap/test_empty.rb
|
847
|
+
- test/soap/test_envelopenamespace.rb
|
848
|
+
- test/soap/test_extraattr.rb
|
849
|
+
- test/soap/test_generator.rb
|
850
|
+
- test/soap/test_httpconfigloader.rb
|
851
|
+
- test/soap/test_mapping.rb
|
852
|
+
- test/soap/test_nestedexception.rb
|
853
|
+
- test/soap/test_nil.rb
|
854
|
+
- test/soap/test_no_indent.rb
|
855
|
+
- test/soap/test_property.rb
|
856
|
+
- test/soap/test_response_as_xml.rb
|
857
|
+
- test/soap/test_soapelement.rb
|
858
|
+
- test/soap/test_streamhandler.rb
|
859
|
+
- test/soap/test_styleuse.rb
|
860
|
+
- test/soap/wsdlDriver/echo_version.rb
|
861
|
+
- test/soap/wsdlDriver/test_calc.rb
|
862
|
+
- test/soap/wsdlDriver/test_document.rb
|
863
|
+
- test/soap/wsdlDriver/test_simpletype.rb
|
864
|
+
- test/testutil.rb
|
865
|
+
- test/wsdl/abstract/test_abstract.rb
|
866
|
+
- test/wsdl/anonymous/expectedClassDef.rb
|
867
|
+
- test/wsdl/anonymous/expectedDriver.rb
|
868
|
+
- test/wsdl/anonymous/expectedMappingRegistry.rb
|
869
|
+
- test/wsdl/anonymous/test_anonymous.rb
|
870
|
+
- test/wsdl/any/expectedDriver.rb
|
871
|
+
- test/wsdl/any/expectedEcho.rb
|
872
|
+
- test/wsdl/any/expectedMappingRegistry.rb
|
873
|
+
- test/wsdl/any/expectedService.rb
|
874
|
+
- test/wsdl/any/test_any.rb
|
875
|
+
- test/wsdl/axisArray/test_axisarray.rb
|
876
|
+
- test/wsdl/choice/test_choice.rb
|
877
|
+
- test/wsdl/complexcontent/test_echo.rb
|
878
|
+
- test/wsdl/datetime/DatetimeService.rb
|
879
|
+
- test/wsdl/datetime/datetime.rb
|
880
|
+
- test/wsdl/datetime/datetimeServant.rb
|
881
|
+
- test/wsdl/datetime/test_datetime.rb
|
882
|
+
- test/wsdl/document/array/test_array.rb
|
883
|
+
- test/wsdl/document/test_nosoapaction.rb
|
884
|
+
- test/wsdl/document/test_number.rb
|
885
|
+
- test/wsdl/document/test_rpc.rb
|
886
|
+
- test/wsdl/fault/test_fault.rb
|
887
|
+
- test/wsdl/fault/test_multifault.rb
|
888
|
+
- test/wsdl/group/expectedClassdef.rb
|
889
|
+
- test/wsdl/group/expectedDriver.rb
|
890
|
+
- test/wsdl/group/expectedMappingRegistry.rb
|
891
|
+
- test/wsdl/group/test_rpc.rb
|
892
|
+
- test/wsdl/list/test_list.rb
|
893
|
+
- test/wsdl/map/test_map.rb
|
894
|
+
- test/wsdl/marshal/Person.rb
|
895
|
+
- test/wsdl/marshal/person_org.rb
|
896
|
+
- test/wsdl/marshal/test_wsdlmarshal.rb
|
897
|
+
- test/wsdl/oneway/test_oneway.rb
|
898
|
+
- test/wsdl/overload/expectedClient.rb
|
899
|
+
- test/wsdl/overload/expectedDriver.rb
|
900
|
+
- test/wsdl/overload/expectedServant.rb
|
901
|
+
- test/wsdl/overload/test_overload.rb
|
902
|
+
- test/wsdl/qualified/test_qualified.rb
|
903
|
+
- test/wsdl/qualified/test_unqualified.rb
|
904
|
+
- test/wsdl/raa/RAAService.rb
|
905
|
+
- test/wsdl/raa/expectedClassDef.rb
|
906
|
+
- test/wsdl/raa/expectedDriver.rb
|
907
|
+
- test/wsdl/raa/expectedMappingRegistry.rb
|
908
|
+
- test/wsdl/raa/test_raa.rb
|
909
|
+
- test/wsdl/ref/expectedDriver.rb
|
910
|
+
- test/wsdl/ref/expectedProduct.rb
|
911
|
+
- test/wsdl/ref/test_ref.rb
|
912
|
+
- test/wsdl/rpc/test_rpc.rb
|
913
|
+
- test/wsdl/rpc/test_rpc_lit.rb
|
914
|
+
- test/wsdl/simplecontent/test_simplecontent.rb
|
915
|
+
- test/wsdl/simpletype/rpc/echo_version.rb
|
916
|
+
- test/wsdl/simpletype/rpc/echo_versionDriver.rb
|
917
|
+
- test/wsdl/simpletype/rpc/echo_versionMappingRegistry.rb
|
918
|
+
- test/wsdl/simpletype/rpc/echo_versionServant.rb
|
919
|
+
- test/wsdl/simpletype/rpc/echo_version_service.rb
|
920
|
+
- test/wsdl/simpletype/rpc/echo_version_serviceClient.rb
|
921
|
+
- test/wsdl/simpletype/rpc/expectedClient.rb
|
922
|
+
- test/wsdl/simpletype/rpc/expectedDriver.rb
|
923
|
+
- test/wsdl/simpletype/rpc/expectedEchoVersion.rb
|
924
|
+
- test/wsdl/simpletype/rpc/expectedMappingRegistry.rb
|
925
|
+
- test/wsdl/simpletype/rpc/expectedServant.rb
|
926
|
+
- test/wsdl/simpletype/rpc/expectedService.rb
|
927
|
+
- test/wsdl/simpletype/rpc/test_rpc.rb
|
928
|
+
- test/wsdl/simpletype/test_simpletype.rb
|
929
|
+
- test/wsdl/soap/test_soapbodyparts.rb
|
930
|
+
- test/wsdl/soap/wsdl2ruby/echo_version.rb
|
931
|
+
- test/wsdl/soap/wsdl2ruby/echo_versionDriver.rb
|
932
|
+
- test/wsdl/soap/wsdl2ruby/echo_versionMappingRegistry.rb
|
933
|
+
- test/wsdl/soap/wsdl2ruby/echo_versionServant.rb
|
934
|
+
- test/wsdl/soap/wsdl2ruby/echo_version_service.rb
|
935
|
+
- test/wsdl/soap/wsdl2ruby/echo_version_serviceClient.rb
|
936
|
+
- test/wsdl/soap/wsdl2ruby/expectedClassdef.rb
|
937
|
+
- test/wsdl/soap/wsdl2ruby/expectedClient.rb
|
938
|
+
- test/wsdl/soap/wsdl2ruby/expectedDriver.rb
|
939
|
+
- test/wsdl/soap/wsdl2ruby/expectedMappingRegistry.rb
|
940
|
+
- test/wsdl/soap/wsdl2ruby/expectedServant.rb
|
941
|
+
- test/wsdl/soap/wsdl2ruby/expectedService.rb
|
942
|
+
- test/wsdl/soap/wsdl2ruby/section/expectedClassdef.rb
|
943
|
+
- test/wsdl/soap/wsdl2ruby/section/test_section.rb
|
944
|
+
- test/wsdl/soap/wsdl2ruby/soapenc/test_soapenc.rb
|
945
|
+
- test/wsdl/soap/wsdl2ruby/test_wsdl2ruby.rb
|
946
|
+
- test/wsdl/soaptype/test_soaptype.rb
|
947
|
+
- test/wsdl/test_emptycomplextype.rb
|
948
|
+
- test/wsdl/test_fault.rb
|
949
|
+
- test/wsdl/test_multiplefault.rb
|
950
|
+
- test/xsd/codegen/test_classdef.rb
|
951
|
+
- test/xsd/test_noencoding.rb
|
952
|
+
- test/xsd/test_ns.rb
|
953
|
+
- test/xsd/test_xmlschemaparser.rb
|
954
|
+
- test/xsd/test_xsd.rb
|
955
|
+
- test/xsd/xsd2ruby/expected_mysample.rb
|
956
|
+
- test/xsd/xsd2ruby/expected_mysample_mapper.rb
|
957
|
+
- test/xsd/xsd2ruby/expected_mysample_mapping_registry.rb
|
958
|
+
- test/xsd/xsd2ruby/test_xsd2ruby.rb
|