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