rtiss_soap4r 1.6.0
Sign up to get free protection for your applications and to get access to all the features.
- data/bin/wsdl2ruby.rb +139 -0
- data/bin/xsd2ruby.rb +91 -0
- data/lib/soap/attachment.rb +109 -0
- data/lib/soap/attrproxy.rb +35 -0
- data/lib/soap/baseData.rb +1095 -0
- data/lib/soap/element.rb +278 -0
- data/lib/soap/encodingstyle/aspDotNetHandler.rb +208 -0
- data/lib/soap/encodingstyle/handler.rb +121 -0
- data/lib/soap/encodingstyle/literalHandler.rb +196 -0
- data/lib/soap/encodingstyle/soapHandler.rb +560 -0
- data/lib/soap/filter/filterchain.rb +52 -0
- data/lib/soap/filter/handler.rb +32 -0
- data/lib/soap/filter/streamhandler.rb +30 -0
- data/lib/soap/filter.rb +14 -0
- data/lib/soap/generator.rb +299 -0
- data/lib/soap/header/handler.rb +62 -0
- data/lib/soap/header/handlerset.rb +71 -0
- data/lib/soap/header/mappinghandler.rb +48 -0
- data/lib/soap/header/simplehandler.rb +45 -0
- data/lib/soap/httpconfigloader.rb +140 -0
- data/lib/soap/mapping/encodedregistry.rb +539 -0
- data/lib/soap/mapping/factory.rb +389 -0
- data/lib/soap/mapping/literalregistry.rb +392 -0
- data/lib/soap/mapping/mapping.rb +577 -0
- data/lib/soap/mapping/registry.rb +296 -0
- data/lib/soap/mapping/rubytypeFactory.rb +446 -0
- data/lib/soap/mapping/schemadefinition.rb +171 -0
- data/lib/soap/mapping/typeMap.rb +107 -0
- data/lib/soap/mapping/wsdlencodedregistry.rb +212 -0
- data/lib/soap/mapping/wsdlliteralregistry.rb +249 -0
- data/lib/soap/mapping.rb +13 -0
- data/lib/soap/marshal.rb +60 -0
- data/lib/soap/mimemessage.rb +243 -0
- data/lib/soap/nestedexception.rb +43 -0
- data/lib/soap/netHttpClient.rb +242 -0
- data/lib/soap/ns.rb +39 -0
- data/lib/soap/parser.rb +253 -0
- data/lib/soap/processor.rb +67 -0
- data/lib/soap/property.rb +340 -0
- data/lib/soap/proxy.rb +15 -0
- data/lib/soap/rpc/cgistub.rb +248 -0
- data/lib/soap/rpc/driver.rb +222 -0
- data/lib/soap/rpc/element.rb +375 -0
- data/lib/soap/rpc/httpserver.rb +143 -0
- data/lib/soap/rpc/methodDef.rb +69 -0
- data/lib/soap/rpc/proxy.rb +573 -0
- data/lib/soap/rpc/router.rb +663 -0
- data/lib/soap/rpc/rpc.rb +26 -0
- data/lib/soap/rpc/soaplet.rb +201 -0
- data/lib/soap/rpc/standaloneServer.rb +44 -0
- data/lib/soap/soap.rb +154 -0
- data/lib/soap/streamHandler.rb +306 -0
- data/lib/soap/version.rb +9 -0
- data/lib/soap/wsdlDriver.rb +165 -0
- data/lib/wsdl/binding.rb +66 -0
- data/lib/wsdl/data.rb +65 -0
- data/lib/wsdl/definitions.rb +237 -0
- data/lib/wsdl/documentation.rb +33 -0
- data/lib/wsdl/import.rb +81 -0
- data/lib/wsdl/importer.rb +39 -0
- data/lib/wsdl/info.rb +51 -0
- data/lib/wsdl/message.rb +55 -0
- data/lib/wsdl/operation.rb +152 -0
- data/lib/wsdl/operationBinding.rb +241 -0
- data/lib/wsdl/param.rb +94 -0
- data/lib/wsdl/parser.rb +165 -0
- data/lib/wsdl/part.rb +53 -0
- data/lib/wsdl/port.rb +67 -0
- data/lib/wsdl/portType.rb +76 -0
- data/lib/wsdl/service.rb +62 -0
- data/lib/wsdl/soap/address.rb +41 -0
- data/lib/wsdl/soap/binding.rb +50 -0
- data/lib/wsdl/soap/body.rb +59 -0
- data/lib/wsdl/soap/cgiStubCreator.rb +93 -0
- data/lib/wsdl/soap/classDefCreator.rb +434 -0
- data/lib/wsdl/soap/classDefCreatorSupport.rb +241 -0
- data/lib/wsdl/soap/classNameCreator.rb +55 -0
- data/lib/wsdl/soap/clientSkeltonCreator.rb +107 -0
- data/lib/wsdl/soap/complexType.rb +174 -0
- data/lib/wsdl/soap/data.rb +43 -0
- data/lib/wsdl/soap/definitions.rb +201 -0
- data/lib/wsdl/soap/driverCreator.rb +121 -0
- data/lib/wsdl/soap/element.rb +34 -0
- data/lib/wsdl/soap/encodedMappingRegistryCreator.rb +74 -0
- data/lib/wsdl/soap/fault.rb +57 -0
- data/lib/wsdl/soap/header.rb +87 -0
- data/lib/wsdl/soap/headerfault.rb +57 -0
- data/lib/wsdl/soap/literalMappingRegistryCreator.rb +116 -0
- data/lib/wsdl/soap/mappingRegistryCreator.rb +59 -0
- data/lib/wsdl/soap/mappingRegistryCreatorSupport.rb +377 -0
- data/lib/wsdl/soap/methodDefCreator.rb +200 -0
- data/lib/wsdl/soap/operation.rb +113 -0
- data/lib/wsdl/soap/servantSkeltonCreator.rb +92 -0
- data/lib/wsdl/soap/servletStubCreator.rb +105 -0
- data/lib/wsdl/soap/standaloneServerStubCreator.rb +101 -0
- data/lib/wsdl/soap/wsdl2ruby.rb +226 -0
- data/lib/wsdl/types.rb +45 -0
- data/lib/wsdl/wsdl.rb +25 -0
- data/lib/wsdl/xmlSchema/all.rb +25 -0
- data/lib/wsdl/xmlSchema/annotation.rb +35 -0
- data/lib/wsdl/xmlSchema/any.rb +62 -0
- data/lib/wsdl/xmlSchema/anyAttribute.rb +49 -0
- data/lib/wsdl/xmlSchema/attribute.rb +105 -0
- data/lib/wsdl/xmlSchema/attributeGroup.rb +69 -0
- data/lib/wsdl/xmlSchema/choice.rb +59 -0
- data/lib/wsdl/xmlSchema/complexContent.rb +98 -0
- data/lib/wsdl/xmlSchema/complexExtension.rb +120 -0
- data/lib/wsdl/xmlSchema/complexRestriction.rb +105 -0
- data/lib/wsdl/xmlSchema/complexType.rb +194 -0
- data/lib/wsdl/xmlSchema/content.rb +96 -0
- data/lib/wsdl/xmlSchema/data.rb +117 -0
- data/lib/wsdl/xmlSchema/element.rb +154 -0
- data/lib/wsdl/xmlSchema/enumeration.rb +37 -0
- data/lib/wsdl/xmlSchema/fractiondigits.rb +38 -0
- data/lib/wsdl/xmlSchema/group.rb +101 -0
- data/lib/wsdl/xmlSchema/import.rb +54 -0
- data/lib/wsdl/xmlSchema/importHandler.rb +46 -0
- data/lib/wsdl/xmlSchema/importer.rb +103 -0
- data/lib/wsdl/xmlSchema/include.rb +49 -0
- data/lib/wsdl/xmlSchema/length.rb +38 -0
- data/lib/wsdl/xmlSchema/list.rb +49 -0
- data/lib/wsdl/xmlSchema/maxexclusive.rb +38 -0
- data/lib/wsdl/xmlSchema/maxinclusive.rb +38 -0
- data/lib/wsdl/xmlSchema/maxlength.rb +38 -0
- data/lib/wsdl/xmlSchema/minexclusive.rb +38 -0
- data/lib/wsdl/xmlSchema/mininclusive.rb +38 -0
- data/lib/wsdl/xmlSchema/minlength.rb +38 -0
- data/lib/wsdl/xmlSchema/parser.rb +168 -0
- data/lib/wsdl/xmlSchema/pattern.rb +37 -0
- data/lib/wsdl/xmlSchema/ref.rb +34 -0
- data/lib/wsdl/xmlSchema/schema.rb +179 -0
- data/lib/wsdl/xmlSchema/sequence.rb +55 -0
- data/lib/wsdl/xmlSchema/simpleContent.rb +70 -0
- data/lib/wsdl/xmlSchema/simpleExtension.rb +63 -0
- data/lib/wsdl/xmlSchema/simpleRestriction.rb +133 -0
- data/lib/wsdl/xmlSchema/simpleType.rb +88 -0
- data/lib/wsdl/xmlSchema/totaldigits.rb +38 -0
- data/lib/wsdl/xmlSchema/union.rb +36 -0
- data/lib/wsdl/xmlSchema/unique.rb +35 -0
- data/lib/wsdl/xmlSchema/whitespace.rb +38 -0
- data/lib/wsdl/xmlSchema/xsd2ruby.rb +176 -0
- data/lib/xsd/charset.rb +190 -0
- data/lib/xsd/codegen/classdef.rb +209 -0
- data/lib/xsd/codegen/commentdef.rb +35 -0
- data/lib/xsd/codegen/gensupport.rb +277 -0
- data/lib/xsd/codegen/methoddef.rb +71 -0
- data/lib/xsd/codegen/moduledef.rb +209 -0
- data/lib/xsd/codegen.rb +13 -0
- data/lib/xsd/datatypes.rb +1466 -0
- data/lib/xsd/datatypes1999.rb +21 -0
- data/lib/xsd/iconvcharset.rb +34 -0
- data/lib/xsd/mapping.rb +69 -0
- data/lib/xsd/namedelements.rb +133 -0
- data/lib/xsd/ns.rb +183 -0
- data/lib/xsd/qname.rb +80 -0
- data/lib/xsd/xmlparser/libxmlparser.rb +116 -0
- data/lib/xsd/xmlparser/parser.rb +101 -0
- data/lib/xsd/xmlparser/rexmlparser.rb +59 -0
- data/lib/xsd/xmlparser/xmlparser.rb +51 -0
- data/lib/xsd/xmlparser/xmlscanner.rb +150 -0
- data/lib/xsd/xmlparser.rb +77 -0
- data/test/16runner.rb +69 -0
- data/test/helper.rb +7 -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 +289 -0
- data/test/interopR2/client.NetRemoting.rb +18 -0
- data/test/interopR2/client.rb +1235 -0
- data/test/interopR2/client4S4C.rb +16 -0
- data/test/interopR2/client4S4C2.rb +15 -0
- data/test/interopR2/clientASP.NET.rb +18 -0
- data/test/interopR2/clientApacheAxis.rb +17 -0
- data/test/interopR2/clientApacheSOAP.rb +18 -0
- data/test/interopR2/clientBEAWebLogic.rb +18 -0
- data/test/interopR2/clientBase.rb +1968 -0
- data/test/interopR2/clientCapeConnect.rb +19 -0
- data/test/interopR2/clientDelphi.rb +20 -0
- data/test/interopR2/clientEasySoap.rb +15 -0
- data/test/interopR2/clientFrontier.rb +26 -0
- data/test/interopR2/clientGLUE.rb +33 -0
- data/test/interopR2/clientHP.rb +14 -0
- data/test/interopR2/clientJAX-RPC.rb +20 -0
- data/test/interopR2/clientJSOAP.rb +15 -0
- data/test/interopR2/clientKafkaXSLT.rb +16 -0
- data/test/interopR2/clientMSSOAPToolkit2.0.rb +18 -0
- data/test/interopR2/clientMSSOAPToolkit3.0.rb +18 -0
- data/test/interopR2/clientNuSOAP.rb +20 -0
- data/test/interopR2/clientNuWave.rb +16 -0
- data/test/interopR2/clientOpenLink.rb +16 -0
- data/test/interopR2/clientOracle.rb +16 -0
- data/test/interopR2/clientPEAR.rb +19 -0
- data/test/interopR2/clientPhalanx.rb +19 -0
- data/test/interopR2/clientSIMACE.rb +19 -0
- data/test/interopR2/clientSOAP4R.rb +19 -0
- data/test/interopR2/clientSOAP__Lite.rb +15 -0
- data/test/interopR2/clientSQLData.rb +19 -0
- data/test/interopR2/clientSilverStream.rb +18 -0
- data/test/interopR2/clientSpray2001.rb +18 -0
- data/test/interopR2/clientSun.rb +20 -0
- data/test/interopR2/clientVWOpentalkSoap.rb +20 -0
- data/test/interopR2/clientWASP.rb +20 -0
- data/test/interopR2/clientWASPC.rb +19 -0
- data/test/interopR2/clientWebMethods.rb +16 -0
- data/test/interopR2/clientWhiteMesa.rb +29 -0
- data/test/interopR2/clientWingfoot.rb +16 -0
- data/test/interopR2/clientXMLBus.rb +20 -0
- data/test/interopR2/clientXMLRPC-EPI.rb +18 -0
- data/test/interopR2/clientXSOAP.rb +15 -0
- data/test/interopR2/clientZSI.rb +20 -0
- data/test/interopR2/clienteSOAP.rb +19 -0
- data/test/interopR2/clientgSOAP.rb +19 -0
- data/test/interopR2/clientkSOAP.rb +18 -0
- data/test/interopR2/iSimonReg.rb +113 -0
- data/test/interopR2/interopResultBase.rb +115 -0
- data/test/interopR2/interopService.rb +248 -0
- data/test/interopR2/rwikiInteropService.rb +106 -0
- data/test/interopR2/server.cgi +271 -0
- data/test/interopR2/server.rb +276 -0
- data/test/interopR2/simonReg.rb +124 -0
- data/test/interopR2/test.sh +49 -0
- data/test/interopR4/client.rb +113 -0
- data/test/runner.rb +8 -0
- data/test/sm11/classDef.rb +157 -0
- data/test/sm11/client.rb +543 -0
- data/test/sm11/driver.rb +184 -0
- data/test/sm11/servant.rb +1068 -0
- data/test/sm11/server.rb +26 -0
- data/test/soap/asp.net/hello.wsdl +96 -0
- data/test/soap/asp.net/test_aspdotnet.rb +124 -0
- data/test/soap/auth/htdigest +2 -0
- data/test/soap/auth/htpasswd +2 -0
- data/test/soap/auth/test_basic.rb +118 -0
- data/test/soap/auth/test_digest.rb +119 -0
- data/test/soap/calc/calc.rb +18 -0
- data/test/soap/calc/calc2.rb +30 -0
- data/test/soap/calc/server.cgi +16 -0
- data/test/soap/calc/server.rb +18 -0
- data/test/soap/calc/server2.rb +21 -0
- data/test/soap/calc/test_calc.rb +53 -0
- data/test/soap/calc/test_calc2.rb +57 -0
- data/test/soap/calc/test_calc_cgi.rb +72 -0
- data/test/soap/case/test_mapping.rb +58 -0
- data/test/soap/fault/test_customfault.rb +61 -0
- data/test/soap/fault/test_fault.rb +47 -0
- data/test/soap/fault/test_soaparray.rb +36 -0
- data/test/soap/filter/test_filter.rb +147 -0
- data/test/soap/header/server.cgi +121 -0
- data/test/soap/header/test_authheader.rb +241 -0
- data/test/soap/header/test_authheader_cgi.rb +122 -0
- data/test/soap/header/test_simplehandler.rb +117 -0
- data/test/soap/helloworld/hw_s.rb +17 -0
- data/test/soap/helloworld/test_helloworld.rb +45 -0
- data/test/soap/htpasswd +2 -0
- data/test/soap/literalArrayMapping/amazonEc.rb +4779 -0
- data/test/soap/literalArrayMapping/amazonEcDriver.rb +173 -0
- data/test/soap/literalArrayMapping/amazonresponse.xml +100 -0
- data/test/soap/literalArrayMapping/test_definedarray.rb +35 -0
- data/test/soap/marshal/marshaltestlib.rb +498 -0
- data/test/soap/marshal/test_digraph.rb +57 -0
- data/test/soap/marshal/test_marshal.rb +28 -0
- data/test/soap/marshal/test_struct.rb +48 -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 +59 -0
- data/test/soap/ssl/subca.cert +21 -0
- data/test/soap/ssl/test_ssl.rb +236 -0
- data/test/soap/struct/test_struct.rb +71 -0
- data/test/soap/styleuse/client.rb +21 -0
- data/test/soap/styleuse/server.rb +87 -0
- data/test/soap/swa/test_file.rb +76 -0
- data/test/soap/test_basetype.rb +1091 -0
- data/test/soap/test_cookie.rb +113 -0
- data/test/soap/test_custom_ns.rb +106 -0
- data/test/soap/test_custommap.rb +111 -0
- data/test/soap/test_empty.rb +106 -0
- data/test/soap/test_envelopenamespace.rb +86 -0
- data/test/soap/test_extraattr.rb +55 -0
- data/test/soap/test_generator.rb +32 -0
- data/test/soap/test_httpconfigloader.rb +72 -0
- data/test/soap/test_mapping.rb +132 -0
- data/test/soap/test_nestedexception.rb +71 -0
- data/test/soap/test_nil.rb +71 -0
- data/test/soap/test_no_indent.rb +89 -0
- data/test/soap/test_property.rb +429 -0
- data/test/soap/test_response_as_xml.rb +118 -0
- data/test/soap/test_soapelement.rb +139 -0
- data/test/soap/test_streamhandler.rb +271 -0
- data/test/soap/test_styleuse.rb +327 -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 +30 -0
- data/test/soap/wsdlDriver/simpletype.wsdl +63 -0
- data/test/soap/wsdlDriver/test_calc.rb +72 -0
- data/test/soap/wsdlDriver/test_document.rb +72 -0
- data/test/soap/wsdlDriver/test_simpletype.rb +82 -0
- data/test/testutil.rb +55 -0
- data/test/wsdl/abstract/abstract.wsdl +176 -0
- data/test/wsdl/abstract/test_abstract.rb +160 -0
- data/test/wsdl/anonymous/expectedClassDef.rb +129 -0
- data/test/wsdl/anonymous/expectedDriver.rb +60 -0
- data/test/wsdl/anonymous/expectedMappingRegistry.rb +177 -0
- data/test/wsdl/anonymous/lp.wsdl +147 -0
- data/test/wsdl/anonymous/test_anonymous.rb +131 -0
- data/test/wsdl/any/any.wsdl +114 -0
- data/test/wsdl/any/expectedDriver.rb +69 -0
- data/test/wsdl/any/expectedEcho.rb +58 -0
- data/test/wsdl/any/expectedMappingRegistry.rb +64 -0
- data/test/wsdl/any/expectedService.rb +70 -0
- data/test/wsdl/any/test_any.rb +194 -0
- data/test/wsdl/axisArray/axisArray.wsdl +87 -0
- data/test/wsdl/axisArray/test_axisarray.rb +125 -0
- data/test/wsdl/choice/choice.wsdl +167 -0
- data/test/wsdl/choice/test_choice.rb +311 -0
- data/test/wsdl/complexcontent/complexContent.wsdl +83 -0
- data/test/wsdl/complexcontent/test_echo.rb +91 -0
- data/test/wsdl/datetime/DatetimeService.rb +45 -0
- data/test/wsdl/datetime/datetime.rb +0 -0
- data/test/wsdl/datetime/datetime.wsdl +45 -0
- data/test/wsdl/datetime/datetimeServant.rb +23 -0
- data/test/wsdl/datetime/test_datetime.rb +88 -0
- data/test/wsdl/document/array/double.wsdl +161 -0
- data/test/wsdl/document/array/test_array.rb +202 -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 +103 -0
- data/test/wsdl/document/test_number.rb +93 -0
- data/test/wsdl/document/test_rpc.rb +356 -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 +120 -0
- data/test/wsdl/fault/test_multifault.rb +135 -0
- data/test/wsdl/group/expectedClassdef.rb +59 -0
- data/test/wsdl/group/expectedDriver.rb +52 -0
- data/test/wsdl/group/expectedMappingRegistry.rb +68 -0
- data/test/wsdl/group/group.wsdl +88 -0
- data/test/wsdl/group/test_rpc.rb +146 -0
- data/test/wsdl/list/list.wsdl +93 -0
- data/test/wsdl/list/test_list.rb +125 -0
- data/test/wsdl/map/map.wsdl +92 -0
- data/test/wsdl/map/map.xml +43 -0
- data/test/wsdl/map/test_map.rb +100 -0
- data/test/wsdl/marshal/person.wsdl +21 -0
- data/test/wsdl/marshal/person_org.rb +24 -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 +109 -0
- data/test/wsdl/overload/expectedClient.rb +38 -0
- data/test/wsdl/overload/expectedDriver.rb +62 -0
- data/test/wsdl/overload/expectedServant.rb +36 -0
- data/test/wsdl/overload/overload.wsdl +70 -0
- data/test/wsdl/overload/test_overload.rb +132 -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 +138 -0
- data/test/wsdl/qualified/test_unqualified.rb +139 -0
- data/test/wsdl/raa/RAAService.rb +126 -0
- data/test/wsdl/raa/README.txt +8 -0
- data/test/wsdl/raa/expectedClassDef.rb +101 -0
- data/test/wsdl/raa/expectedDriver.rb +97 -0
- data/test/wsdl/raa/expectedMappingRegistry.rb +122 -0
- data/test/wsdl/raa/raa.wsdl +264 -0
- data/test/wsdl/raa/test_raa.rb +127 -0
- data/test/wsdl/ref/expectedDriver.rb +52 -0
- data/test/wsdl/ref/expectedProduct.rb +244 -0
- data/test/wsdl/ref/product.wsdl +147 -0
- data/test/wsdl/ref/test_ref.rb +269 -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 +177 -0
- data/test/wsdl/rpc/test_rpc_lit.rb +471 -0
- data/test/wsdl/simplecontent/simplecontent.wsdl +84 -0
- data/test/wsdl/simplecontent/test_simplecontent.rb +103 -0
- data/test/wsdl/simpletype/rpc/expectedClient.rb +35 -0
- data/test/wsdl/simpletype/rpc/expectedDriver.rb +59 -0
- data/test/wsdl/simpletype/rpc/expectedEchoVersion.rb +37 -0
- data/test/wsdl/simpletype/rpc/expectedMappingRegistry.rb +58 -0
- data/test/wsdl/simpletype/rpc/expectedServant.rb +33 -0
- data/test/wsdl/simpletype/rpc/expectedService.rb +56 -0
- data/test/wsdl/simpletype/rpc/rpc.wsdl +98 -0
- data/test/wsdl/simpletype/rpc/test_rpc.rb +53 -0
- data/test/wsdl/simpletype/simpletype.wsdl +114 -0
- data/test/wsdl/simpletype/test_simpletype.rb +93 -0
- data/test/wsdl/soap/soapbodyparts.wsdl +103 -0
- data/test/wsdl/soap/test_soapbodyparts.rb +80 -0
- data/test/wsdl/soap/wsdl2ruby/expectedClassdef.rb +22 -0
- data/test/wsdl/soap/wsdl2ruby/expectedClient.rb +35 -0
- data/test/wsdl/soap/wsdl2ruby/expectedDriver.rb +59 -0
- data/test/wsdl/soap/wsdl2ruby/expectedMappingRegistry.rb +37 -0
- data/test/wsdl/soap/wsdl2ruby/expectedServant.rb +33 -0
- data/test/wsdl/soap/wsdl2ruby/expectedService.cgi +49 -0
- data/test/wsdl/soap/wsdl2ruby/expectedService.rb +56 -0
- data/test/wsdl/soap/wsdl2ruby/rpc.wsdl +80 -0
- data/test/wsdl/soap/wsdl2ruby/section/expectedClassdef.rb +38 -0
- data/test/wsdl/soap/wsdl2ruby/section/section.xsd +31 -0
- data/test/wsdl/soap/wsdl2ruby/section/test_section.rb +54 -0
- data/test/wsdl/soap/wsdl2ruby/soapenc/soapenc.wsdl +64 -0
- data/test/wsdl/soap/wsdl2ruby/soapenc/test_soapenc.rb +84 -0
- data/test/wsdl/soap/wsdl2ruby/test_wsdl2ruby.rb +103 -0
- data/test/wsdl/soaptype/soaptype.wsdl +61 -0
- data/test/wsdl/soaptype/test_soaptype.rb +179 -0
- data/test/wsdl/test_emptycomplextype.rb +22 -0
- data/test/wsdl/test_fault.rb +51 -0
- data/test/wsdl/test_multiplefault.rb +42 -0
- data/test/xsd/codegen/test_classdef.rb +245 -0
- data/test/xsd/noencoding.xml +4 -0
- data/test/xsd/test_noencoding.rb +33 -0
- data/test/xsd/test_ns.rb +42 -0
- data/test/xsd/test_xmlschemaparser.rb +23 -0
- data/test/xsd/test_xsd.rb +1639 -0
- data/test/xsd/xmllang.xml +43 -0
- data/test/xsd/xmlschema.xml +12 -0
- data/test/xsd/xsd2ruby/expected_mysample.rb +66 -0
- data/test/xsd/xsd2ruby/expected_mysample_mapper.rb +12 -0
- data/test/xsd/xsd2ruby/expected_mysample_mapping_registry.rb +52 -0
- data/test/xsd/xsd2ruby/section.xsd +49 -0
- data/test/xsd/xsd2ruby/test_xsd2ruby.rb +91 -0
- metadata +489 -0
metadata
ADDED
@@ -0,0 +1,489 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: rtiss_soap4r
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 1.6.0
|
5
|
+
prerelease:
|
6
|
+
platform: ruby
|
7
|
+
authors:
|
8
|
+
- Laurence A. Lee, Hiroshi NAKAMURA, Fabio Kung, Igor Jancev
|
9
|
+
autorequire:
|
10
|
+
bindir: bin
|
11
|
+
cert_chain: []
|
12
|
+
date: 2014-02-06 00:00:00.000000000 Z
|
13
|
+
dependencies:
|
14
|
+
- !ruby/object:Gem::Dependency
|
15
|
+
name: httpclient
|
16
|
+
requirement: !ruby/object:Gem::Requirement
|
17
|
+
none: false
|
18
|
+
requirements:
|
19
|
+
- - ! '>='
|
20
|
+
- !ruby/object:Gem::Version
|
21
|
+
version: 2.1.1
|
22
|
+
type: :runtime
|
23
|
+
prerelease: false
|
24
|
+
version_requirements: !ruby/object:Gem::Requirement
|
25
|
+
none: false
|
26
|
+
requirements:
|
27
|
+
- - ! '>='
|
28
|
+
- !ruby/object:Gem::Version
|
29
|
+
version: 2.1.1
|
30
|
+
description:
|
31
|
+
email: rubyjedi@gmail.com, nahi@ruby-lang.org, fabio.kung@gmail.com, igor@masterybits.com
|
32
|
+
executables:
|
33
|
+
- wsdl2ruby.rb
|
34
|
+
- xsd2ruby.rb
|
35
|
+
extensions: []
|
36
|
+
extra_rdoc_files: []
|
37
|
+
files:
|
38
|
+
- bin/wsdl2ruby.rb
|
39
|
+
- bin/xsd2ruby.rb
|
40
|
+
- lib/wsdl/operationBinding.rb
|
41
|
+
- lib/wsdl/parser.rb
|
42
|
+
- lib/wsdl/definitions.rb
|
43
|
+
- lib/wsdl/portType.rb
|
44
|
+
- lib/wsdl/info.rb
|
45
|
+
- lib/wsdl/wsdl.rb
|
46
|
+
- lib/wsdl/port.rb
|
47
|
+
- lib/wsdl/operation.rb
|
48
|
+
- lib/wsdl/documentation.rb
|
49
|
+
- lib/wsdl/service.rb
|
50
|
+
- lib/wsdl/xmlSchema/enumeration.rb
|
51
|
+
- lib/wsdl/xmlSchema/maxexclusive.rb
|
52
|
+
- lib/wsdl/xmlSchema/totaldigits.rb
|
53
|
+
- lib/wsdl/xmlSchema/choice.rb
|
54
|
+
- lib/wsdl/xmlSchema/include.rb
|
55
|
+
- lib/wsdl/xmlSchema/parser.rb
|
56
|
+
- lib/wsdl/xmlSchema/unique.rb
|
57
|
+
- lib/wsdl/xmlSchema/any.rb
|
58
|
+
- lib/wsdl/xmlSchema/list.rb
|
59
|
+
- lib/wsdl/xmlSchema/ref.rb
|
60
|
+
- lib/wsdl/xmlSchema/length.rb
|
61
|
+
- lib/wsdl/xmlSchema/pattern.rb
|
62
|
+
- lib/wsdl/xmlSchema/complexContent.rb
|
63
|
+
- lib/wsdl/xmlSchema/sequence.rb
|
64
|
+
- lib/wsdl/xmlSchema/maxinclusive.rb
|
65
|
+
- lib/wsdl/xmlSchema/complexType.rb
|
66
|
+
- lib/wsdl/xmlSchema/minlength.rb
|
67
|
+
- lib/wsdl/xmlSchema/complexExtension.rb
|
68
|
+
- lib/wsdl/xmlSchema/complexRestriction.rb
|
69
|
+
- lib/wsdl/xmlSchema/simpleRestriction.rb
|
70
|
+
- lib/wsdl/xmlSchema/xsd2ruby.rb
|
71
|
+
- lib/wsdl/xmlSchema/element.rb
|
72
|
+
- lib/wsdl/xmlSchema/import.rb
|
73
|
+
- lib/wsdl/xmlSchema/anyAttribute.rb
|
74
|
+
- lib/wsdl/xmlSchema/whitespace.rb
|
75
|
+
- lib/wsdl/xmlSchema/attributeGroup.rb
|
76
|
+
- lib/wsdl/xmlSchema/content.rb
|
77
|
+
- lib/wsdl/xmlSchema/attribute.rb
|
78
|
+
- lib/wsdl/xmlSchema/all.rb
|
79
|
+
- lib/wsdl/xmlSchema/fractiondigits.rb
|
80
|
+
- lib/wsdl/xmlSchema/mininclusive.rb
|
81
|
+
- lib/wsdl/xmlSchema/group.rb
|
82
|
+
- lib/wsdl/xmlSchema/maxlength.rb
|
83
|
+
- lib/wsdl/xmlSchema/simpleContent.rb
|
84
|
+
- lib/wsdl/xmlSchema/annotation.rb
|
85
|
+
- lib/wsdl/xmlSchema/importHandler.rb
|
86
|
+
- lib/wsdl/xmlSchema/data.rb
|
87
|
+
- lib/wsdl/xmlSchema/schema.rb
|
88
|
+
- lib/wsdl/xmlSchema/importer.rb
|
89
|
+
- lib/wsdl/xmlSchema/simpleExtension.rb
|
90
|
+
- lib/wsdl/xmlSchema/simpleType.rb
|
91
|
+
- lib/wsdl/xmlSchema/minexclusive.rb
|
92
|
+
- lib/wsdl/xmlSchema/union.rb
|
93
|
+
- lib/wsdl/import.rb
|
94
|
+
- lib/wsdl/param.rb
|
95
|
+
- lib/wsdl/part.rb
|
96
|
+
- lib/wsdl/message.rb
|
97
|
+
- lib/wsdl/binding.rb
|
98
|
+
- lib/wsdl/soap/literalMappingRegistryCreator.rb
|
99
|
+
- lib/wsdl/soap/body.rb
|
100
|
+
- lib/wsdl/soap/driverCreator.rb
|
101
|
+
- lib/wsdl/soap/definitions.rb
|
102
|
+
- lib/wsdl/soap/header.rb
|
103
|
+
- lib/wsdl/soap/encodedMappingRegistryCreator.rb
|
104
|
+
- lib/wsdl/soap/classNameCreator.rb
|
105
|
+
- lib/wsdl/soap/address.rb
|
106
|
+
- lib/wsdl/soap/wsdl2ruby.rb
|
107
|
+
- lib/wsdl/soap/complexType.rb
|
108
|
+
- lib/wsdl/soap/clientSkeltonCreator.rb
|
109
|
+
- lib/wsdl/soap/headerfault.rb
|
110
|
+
- lib/wsdl/soap/cgiStubCreator.rb
|
111
|
+
- lib/wsdl/soap/operation.rb
|
112
|
+
- lib/wsdl/soap/methodDefCreator.rb
|
113
|
+
- lib/wsdl/soap/element.rb
|
114
|
+
- lib/wsdl/soap/mappingRegistryCreatorSupport.rb
|
115
|
+
- lib/wsdl/soap/classDefCreator.rb
|
116
|
+
- lib/wsdl/soap/binding.rb
|
117
|
+
- lib/wsdl/soap/data.rb
|
118
|
+
- lib/wsdl/soap/servletStubCreator.rb
|
119
|
+
- lib/wsdl/soap/fault.rb
|
120
|
+
- lib/wsdl/soap/standaloneServerStubCreator.rb
|
121
|
+
- lib/wsdl/soap/servantSkeltonCreator.rb
|
122
|
+
- lib/wsdl/soap/classDefCreatorSupport.rb
|
123
|
+
- lib/wsdl/soap/mappingRegistryCreator.rb
|
124
|
+
- lib/wsdl/data.rb
|
125
|
+
- lib/wsdl/importer.rb
|
126
|
+
- lib/wsdl/types.rb
|
127
|
+
- lib/soap/parser.rb
|
128
|
+
- lib/soap/processor.rb
|
129
|
+
- lib/soap/version.rb
|
130
|
+
- lib/soap/ns.rb
|
131
|
+
- lib/soap/proxy.rb
|
132
|
+
- lib/soap/mimemessage.rb
|
133
|
+
- lib/soap/generator.rb
|
134
|
+
- lib/soap/soap.rb
|
135
|
+
- lib/soap/wsdlDriver.rb
|
136
|
+
- lib/soap/mapping.rb
|
137
|
+
- lib/soap/baseData.rb
|
138
|
+
- lib/soap/filter.rb
|
139
|
+
- lib/soap/mapping/encodedregistry.rb
|
140
|
+
- lib/soap/mapping/wsdlliteralregistry.rb
|
141
|
+
- lib/soap/mapping/schemadefinition.rb
|
142
|
+
- lib/soap/mapping/typeMap.rb
|
143
|
+
- lib/soap/mapping/factory.rb
|
144
|
+
- lib/soap/mapping/literalregistry.rb
|
145
|
+
- lib/soap/mapping/mapping.rb
|
146
|
+
- lib/soap/mapping/rubytypeFactory.rb
|
147
|
+
- lib/soap/mapping/registry.rb
|
148
|
+
- lib/soap/mapping/wsdlencodedregistry.rb
|
149
|
+
- lib/soap/encodingstyle/soapHandler.rb
|
150
|
+
- lib/soap/encodingstyle/literalHandler.rb
|
151
|
+
- lib/soap/encodingstyle/handler.rb
|
152
|
+
- lib/soap/encodingstyle/aspDotNetHandler.rb
|
153
|
+
- lib/soap/property.rb
|
154
|
+
- lib/soap/element.rb
|
155
|
+
- lib/soap/httpconfigloader.rb
|
156
|
+
- lib/soap/streamHandler.rb
|
157
|
+
- lib/soap/attachment.rb
|
158
|
+
- lib/soap/attrproxy.rb
|
159
|
+
- lib/soap/header/simplehandler.rb
|
160
|
+
- lib/soap/header/handler.rb
|
161
|
+
- lib/soap/header/handlerset.rb
|
162
|
+
- lib/soap/header/mappinghandler.rb
|
163
|
+
- lib/soap/nestedexception.rb
|
164
|
+
- lib/soap/marshal.rb
|
165
|
+
- lib/soap/netHttpClient.rb
|
166
|
+
- lib/soap/rpc/cgistub.rb
|
167
|
+
- lib/soap/rpc/standaloneServer.rb
|
168
|
+
- lib/soap/rpc/proxy.rb
|
169
|
+
- lib/soap/rpc/rpc.rb
|
170
|
+
- lib/soap/rpc/element.rb
|
171
|
+
- lib/soap/rpc/methodDef.rb
|
172
|
+
- lib/soap/rpc/driver.rb
|
173
|
+
- lib/soap/rpc/httpserver.rb
|
174
|
+
- lib/soap/rpc/soaplet.rb
|
175
|
+
- lib/soap/rpc/router.rb
|
176
|
+
- lib/soap/filter/handler.rb
|
177
|
+
- lib/soap/filter/streamhandler.rb
|
178
|
+
- lib/soap/filter/filterchain.rb
|
179
|
+
- lib/xsd/codegen.rb
|
180
|
+
- lib/xsd/ns.rb
|
181
|
+
- lib/xsd/xmlparser/parser.rb
|
182
|
+
- lib/xsd/xmlparser/xmlparser.rb
|
183
|
+
- lib/xsd/xmlparser/xmlscanner.rb
|
184
|
+
- lib/xsd/xmlparser/rexmlparser.rb
|
185
|
+
- lib/xsd/xmlparser/libxmlparser.rb
|
186
|
+
- lib/xsd/xmlparser.rb
|
187
|
+
- lib/xsd/datatypes1999.rb
|
188
|
+
- lib/xsd/mapping.rb
|
189
|
+
- lib/xsd/iconvcharset.rb
|
190
|
+
- lib/xsd/charset.rb
|
191
|
+
- lib/xsd/namedelements.rb
|
192
|
+
- lib/xsd/qname.rb
|
193
|
+
- lib/xsd/datatypes.rb
|
194
|
+
- lib/xsd/codegen/classdef.rb
|
195
|
+
- lib/xsd/codegen/methoddef.rb
|
196
|
+
- lib/xsd/codegen/gensupport.rb
|
197
|
+
- lib/xsd/codegen/moduledef.rb
|
198
|
+
- lib/xsd/codegen/commentdef.rb
|
199
|
+
- test/wsdl/list/test_list.rb
|
200
|
+
- test/wsdl/list/list.wsdl
|
201
|
+
- test/wsdl/test_multiplefault.rb
|
202
|
+
- test/wsdl/simpletype/simpletype.wsdl
|
203
|
+
- test/wsdl/simpletype/test_simpletype.rb
|
204
|
+
- test/wsdl/simpletype/rpc/rpc.wsdl
|
205
|
+
- test/wsdl/simpletype/rpc/expectedServant.rb
|
206
|
+
- test/wsdl/simpletype/rpc/expectedEchoVersion.rb
|
207
|
+
- test/wsdl/simpletype/rpc/expectedClient.rb
|
208
|
+
- test/wsdl/simpletype/rpc/expectedDriver.rb
|
209
|
+
- test/wsdl/simpletype/rpc/expectedMappingRegistry.rb
|
210
|
+
- test/wsdl/simpletype/rpc/test_rpc.rb
|
211
|
+
- test/wsdl/simpletype/rpc/expectedService.rb
|
212
|
+
- test/wsdl/document/ping_nosoapaction.wsdl
|
213
|
+
- test/wsdl/document/test_rpc.rb
|
214
|
+
- test/wsdl/document/array/double.wsdl
|
215
|
+
- test/wsdl/document/array/test_array.rb
|
216
|
+
- test/wsdl/document/number.wsdl
|
217
|
+
- test/wsdl/document/test_nosoapaction.rb
|
218
|
+
- test/wsdl/document/test_number.rb
|
219
|
+
- test/wsdl/document/document.wsdl
|
220
|
+
- test/wsdl/simplecontent/simplecontent.wsdl
|
221
|
+
- test/wsdl/simplecontent/test_simplecontent.rb
|
222
|
+
- test/wsdl/emptycomplextype.wsdl
|
223
|
+
- test/wsdl/choice/test_choice.rb
|
224
|
+
- test/wsdl/choice/choice.wsdl
|
225
|
+
- test/wsdl/datetime/DatetimeService.rb
|
226
|
+
- test/wsdl/datetime/datetimeServant.rb
|
227
|
+
- test/wsdl/datetime/datetime.wsdl
|
228
|
+
- test/wsdl/datetime/datetime.rb
|
229
|
+
- test/wsdl/datetime/test_datetime.rb
|
230
|
+
- test/wsdl/group/group.wsdl
|
231
|
+
- test/wsdl/group/expectedDriver.rb
|
232
|
+
- test/wsdl/group/expectedMappingRegistry.rb
|
233
|
+
- test/wsdl/group/test_rpc.rb
|
234
|
+
- test/wsdl/group/expectedClassdef.rb
|
235
|
+
- test/wsdl/raa/raa.wsdl
|
236
|
+
- test/wsdl/raa/expectedDriver.rb
|
237
|
+
- test/wsdl/raa/expectedMappingRegistry.rb
|
238
|
+
- test/wsdl/raa/RAAService.rb
|
239
|
+
- test/wsdl/raa/README.txt
|
240
|
+
- test/wsdl/raa/test_raa.rb
|
241
|
+
- test/wsdl/raa/expectedClassDef.rb
|
242
|
+
- test/wsdl/oneway/oneway.wsdl
|
243
|
+
- test/wsdl/oneway/test_oneway.rb
|
244
|
+
- test/wsdl/anonymous/expectedDriver.rb
|
245
|
+
- test/wsdl/anonymous/expectedMappingRegistry.rb
|
246
|
+
- test/wsdl/anonymous/lp.wsdl
|
247
|
+
- test/wsdl/anonymous/test_anonymous.rb
|
248
|
+
- test/wsdl/anonymous/expectedClassDef.rb
|
249
|
+
- test/wsdl/ref/test_ref.rb
|
250
|
+
- test/wsdl/ref/product.wsdl
|
251
|
+
- test/wsdl/ref/expectedProduct.rb
|
252
|
+
- test/wsdl/ref/expectedDriver.rb
|
253
|
+
- test/wsdl/multiplefault.wsdl
|
254
|
+
- test/wsdl/test_emptycomplextype.rb
|
255
|
+
- test/wsdl/fault/test_multifault.rb
|
256
|
+
- test/wsdl/fault/multifault.wsdl
|
257
|
+
- test/wsdl/fault/test_fault.rb
|
258
|
+
- test/wsdl/fault/fault.wsdl
|
259
|
+
- test/wsdl/qualified/np.wsdl
|
260
|
+
- test/wsdl/qualified/test_unqualified.rb
|
261
|
+
- test/wsdl/qualified/test_qualified.rb
|
262
|
+
- test/wsdl/qualified/lp.xsd
|
263
|
+
- test/wsdl/qualified/lp.wsdl
|
264
|
+
- test/wsdl/soaptype/soaptype.wsdl
|
265
|
+
- test/wsdl/soaptype/test_soaptype.rb
|
266
|
+
- test/wsdl/complexcontent/complexContent.wsdl
|
267
|
+
- test/wsdl/complexcontent/test_echo.rb
|
268
|
+
- test/wsdl/map/map.xml
|
269
|
+
- test/wsdl/map/map.wsdl
|
270
|
+
- test/wsdl/map/test_map.rb
|
271
|
+
- test/wsdl/axisArray/axisArray.wsdl
|
272
|
+
- test/wsdl/axisArray/test_axisarray.rb
|
273
|
+
- test/wsdl/abstract/test_abstract.rb
|
274
|
+
- test/wsdl/abstract/abstract.wsdl
|
275
|
+
- test/wsdl/test_fault.rb
|
276
|
+
- test/wsdl/soap/soapbodyparts.wsdl
|
277
|
+
- test/wsdl/soap/test_soapbodyparts.rb
|
278
|
+
- test/wsdl/soap/wsdl2ruby/rpc.wsdl
|
279
|
+
- test/wsdl/soap/wsdl2ruby/expectedServant.rb
|
280
|
+
- test/wsdl/soap/wsdl2ruby/soapenc/soapenc.wsdl
|
281
|
+
- test/wsdl/soap/wsdl2ruby/soapenc/test_soapenc.rb
|
282
|
+
- test/wsdl/soap/wsdl2ruby/expectedClient.rb
|
283
|
+
- test/wsdl/soap/wsdl2ruby/expectedDriver.rb
|
284
|
+
- test/wsdl/soap/wsdl2ruby/expectedMappingRegistry.rb
|
285
|
+
- test/wsdl/soap/wsdl2ruby/section/test_section.rb
|
286
|
+
- test/wsdl/soap/wsdl2ruby/section/section.xsd
|
287
|
+
- test/wsdl/soap/wsdl2ruby/section/expectedClassdef.rb
|
288
|
+
- test/wsdl/soap/wsdl2ruby/test_wsdl2ruby.rb
|
289
|
+
- test/wsdl/soap/wsdl2ruby/expectedService.cgi
|
290
|
+
- test/wsdl/soap/wsdl2ruby/expectedClassdef.rb
|
291
|
+
- test/wsdl/soap/wsdl2ruby/expectedService.rb
|
292
|
+
- test/wsdl/rpc/rpc.wsdl
|
293
|
+
- test/wsdl/rpc/test_rpc_lit.rb
|
294
|
+
- test/wsdl/rpc/test_rpc.rb
|
295
|
+
- test/wsdl/rpc/test-rpc-lit.wsdl
|
296
|
+
- test/wsdl/marshal/person_org.rb
|
297
|
+
- test/wsdl/marshal/person.wsdl
|
298
|
+
- test/wsdl/marshal/test_wsdlmarshal.rb
|
299
|
+
- test/wsdl/overload/overload.wsdl
|
300
|
+
- test/wsdl/overload/expectedServant.rb
|
301
|
+
- test/wsdl/overload/expectedClient.rb
|
302
|
+
- test/wsdl/overload/expectedDriver.rb
|
303
|
+
- test/wsdl/overload/test_overload.rb
|
304
|
+
- test/wsdl/any/test_any.rb
|
305
|
+
- test/wsdl/any/expectedDriver.rb
|
306
|
+
- test/wsdl/any/expectedMappingRegistry.rb
|
307
|
+
- test/wsdl/any/any.wsdl
|
308
|
+
- test/wsdl/any/expectedEcho.rb
|
309
|
+
- test/wsdl/any/expectedService.rb
|
310
|
+
- test/interopR2/clientJAX-RPC.rb
|
311
|
+
- test/interopR2/clientJSOAP.rb
|
312
|
+
- test/interopR2/clientSOAP__Lite.rb
|
313
|
+
- test/interopR2/clientNuWave.rb
|
314
|
+
- test/interopR2/clienteSOAP.rb
|
315
|
+
- test/interopR2/clientHP.rb
|
316
|
+
- test/interopR2/clientgSOAP.rb
|
317
|
+
- test/interopR2/client.rb
|
318
|
+
- test/interopR2/base.rb
|
319
|
+
- test/interopR2/server.rb
|
320
|
+
- test/interopR2/clientASP.NET.rb
|
321
|
+
- test/interopR2/clientFrontier.rb
|
322
|
+
- test/interopR2/clientSpray2001.rb
|
323
|
+
- test/interopR2/test.sh
|
324
|
+
- test/interopR2/clientWASPC.rb
|
325
|
+
- test/interopR2/clientPEAR.rb
|
326
|
+
- test/interopR2/clientXMLRPC-EPI.rb
|
327
|
+
- test/interopR2/clientVWOpentalkSoap.rb
|
328
|
+
- test/interopR2/clientBEAWebLogic.rb
|
329
|
+
- test/interopR2/clientWebMethods.rb
|
330
|
+
- test/interopR2/clientMSSOAPToolkit3.0.rb
|
331
|
+
- test/interopR2/clientXMLBus.rb
|
332
|
+
- test/interopR2/clientOracle.rb
|
333
|
+
- test/interopR2/clientKafkaXSLT.rb
|
334
|
+
- test/interopR2/SOAPBuildersInterop_R2GrB.wsdl
|
335
|
+
- test/interopR2/clientMSSOAPToolkit2.0.rb
|
336
|
+
- test/interopR2/clientDelphi.rb
|
337
|
+
- test/interopR2/clientSIMACE.rb
|
338
|
+
- test/interopR2/client.NetRemoting.rb
|
339
|
+
- test/interopR2/clientBase.rb
|
340
|
+
- test/interopR2/clientXSOAP.rb
|
341
|
+
- test/interopR2/README.txt
|
342
|
+
- test/interopR2/clientEasySoap.rb
|
343
|
+
- test/interopR2/clientSQLData.rb
|
344
|
+
- test/interopR2/clientCapeConnect.rb
|
345
|
+
- test/interopR2/clientWhiteMesa.rb
|
346
|
+
- test/interopR2/clientWingfoot.rb
|
347
|
+
- test/interopR2/clientOpenLink.rb
|
348
|
+
- test/interopR2/iSimonReg.rb
|
349
|
+
- test/interopR2/clientGLUE.rb
|
350
|
+
- test/interopR2/clientNuSOAP.rb
|
351
|
+
- test/interopR2/clientZSI.rb
|
352
|
+
- test/interopR2/SOAPBuildersInterop_R2.wsdl
|
353
|
+
- test/interopR2/interopResultBase.rb
|
354
|
+
- test/interopR2/clientWASP.rb
|
355
|
+
- test/interopR2/clientPhalanx.rb
|
356
|
+
- test/interopR2/clientkSOAP.rb
|
357
|
+
- test/interopR2/clientApacheAxis.rb
|
358
|
+
- test/interopR2/clientSun.rb
|
359
|
+
- test/interopR2/clientApacheSOAP.rb
|
360
|
+
- test/interopR2/server.cgi
|
361
|
+
- test/interopR2/clientSOAP4R.rb
|
362
|
+
- test/interopR2/client4S4C.rb
|
363
|
+
- test/interopR2/rwikiInteropService.rb
|
364
|
+
- test/interopR2/client4S4C2.rb
|
365
|
+
- test/interopR2/interopService.rb
|
366
|
+
- test/interopR2/clientSilverStream.rb
|
367
|
+
- test/interopR2/simonReg.rb
|
368
|
+
- test/helper.rb
|
369
|
+
- test/testutil.rb
|
370
|
+
- test/16runner.rb
|
371
|
+
- test/runner.rb
|
372
|
+
- test/interopR4/client.rb
|
373
|
+
- test/soap/helloworld/hw_s.rb
|
374
|
+
- test/soap/helloworld/test_helloworld.rb
|
375
|
+
- test/soap/htpasswd
|
376
|
+
- test/soap/swa/test_file.rb
|
377
|
+
- test/soap/test_streamhandler.rb
|
378
|
+
- test/soap/calc/test_calc_cgi.rb
|
379
|
+
- test/soap/calc/calc2.rb
|
380
|
+
- test/soap/calc/test_calc.rb
|
381
|
+
- test/soap/calc/server.rb
|
382
|
+
- test/soap/calc/test_calc2.rb
|
383
|
+
- test/soap/calc/server.cgi
|
384
|
+
- test/soap/calc/calc.rb
|
385
|
+
- test/soap/calc/server2.rb
|
386
|
+
- test/soap/test_no_indent.rb
|
387
|
+
- test/soap/test_nestedexception.rb
|
388
|
+
- test/soap/test_cookie.rb
|
389
|
+
- test/soap/test_response_as_xml.rb
|
390
|
+
- test/soap/test_mapping.rb
|
391
|
+
- test/soap/test_empty.rb
|
392
|
+
- test/soap/struct/test_struct.rb
|
393
|
+
- test/soap/test_property.rb
|
394
|
+
- test/soap/styleuse/client.rb
|
395
|
+
- test/soap/styleuse/server.rb
|
396
|
+
- test/soap/test_generator.rb
|
397
|
+
- test/soap/test_envelopenamespace.rb
|
398
|
+
- test/soap/test_extraattr.rb
|
399
|
+
- test/soap/test_nil.rb
|
400
|
+
- test/soap/wsdlDriver/calc.wsdl
|
401
|
+
- test/soap/wsdlDriver/test_calc.rb
|
402
|
+
- test/soap/wsdlDriver/simpletype.wsdl
|
403
|
+
- test/soap/wsdlDriver/echo_version.rb
|
404
|
+
- test/soap/wsdlDriver/README.txt
|
405
|
+
- test/soap/wsdlDriver/test_simpletype.rb
|
406
|
+
- test/soap/wsdlDriver/test_document.rb
|
407
|
+
- test/soap/wsdlDriver/document.wsdl
|
408
|
+
- test/soap/test_httpconfigloader.rb
|
409
|
+
- test/soap/test_custom_ns.rb
|
410
|
+
- test/soap/test_basetype.rb
|
411
|
+
- test/soap/fault/test_customfault.rb
|
412
|
+
- test/soap/fault/test_fault.rb
|
413
|
+
- test/soap/fault/test_soaparray.rb
|
414
|
+
- test/soap/test_styleuse.rb
|
415
|
+
- test/soap/header/test_authheader_cgi.rb
|
416
|
+
- test/soap/header/test_authheader.rb
|
417
|
+
- test/soap/header/test_simplehandler.rb
|
418
|
+
- test/soap/header/server.cgi
|
419
|
+
- test/soap/asp.net/hello.wsdl
|
420
|
+
- test/soap/asp.net/test_aspdotnet.rb
|
421
|
+
- test/soap/marshal/marshaltestlib.rb
|
422
|
+
- test/soap/marshal/test_digraph.rb
|
423
|
+
- test/soap/marshal/test_marshal.rb
|
424
|
+
- test/soap/marshal/test_struct.rb
|
425
|
+
- test/soap/test_soapelement.rb
|
426
|
+
- test/soap/literalArrayMapping/amazonEc.rb
|
427
|
+
- test/soap/literalArrayMapping/amazonEcDriver.rb
|
428
|
+
- test/soap/literalArrayMapping/amazonresponse.xml
|
429
|
+
- test/soap/literalArrayMapping/test_definedarray.rb
|
430
|
+
- test/soap/case/test_mapping.rb
|
431
|
+
- test/soap/ssl/subca.cert
|
432
|
+
- test/soap/ssl/server.cert
|
433
|
+
- test/soap/ssl/sslsvr.rb
|
434
|
+
- test/soap/ssl/server.key
|
435
|
+
- test/soap/ssl/client.key
|
436
|
+
- test/soap/ssl/test_ssl.rb
|
437
|
+
- test/soap/ssl/README
|
438
|
+
- test/soap/ssl/client.cert
|
439
|
+
- test/soap/ssl/ca.cert
|
440
|
+
- test/soap/auth/htpasswd
|
441
|
+
- test/soap/auth/test_digest.rb
|
442
|
+
- test/soap/auth/test_basic.rb
|
443
|
+
- test/soap/auth/htdigest
|
444
|
+
- test/soap/test_custommap.rb
|
445
|
+
- test/soap/filter/test_filter.rb
|
446
|
+
- test/xsd/test_ns.rb
|
447
|
+
- test/xsd/xmlschema.xml
|
448
|
+
- test/xsd/xmllang.xml
|
449
|
+
- test/xsd/test_xmlschemaparser.rb
|
450
|
+
- test/xsd/test_noencoding.rb
|
451
|
+
- test/xsd/test_xsd.rb
|
452
|
+
- test/xsd/xsd2ruby/test_xsd2ruby.rb
|
453
|
+
- test/xsd/xsd2ruby/expected_mysample_mapper.rb
|
454
|
+
- test/xsd/xsd2ruby/expected_mysample_mapping_registry.rb
|
455
|
+
- test/xsd/xsd2ruby/expected_mysample.rb
|
456
|
+
- test/xsd/xsd2ruby/section.xsd
|
457
|
+
- test/xsd/codegen/test_classdef.rb
|
458
|
+
- test/xsd/noencoding.xml
|
459
|
+
- test/sm11/client.rb
|
460
|
+
- test/sm11/server.rb
|
461
|
+
- test/sm11/servant.rb
|
462
|
+
- test/sm11/driver.rb
|
463
|
+
- test/sm11/classDef.rb
|
464
|
+
homepage: https://github.com/rtiss/soap4r
|
465
|
+
licenses: []
|
466
|
+
post_install_message:
|
467
|
+
rdoc_options: []
|
468
|
+
require_paths:
|
469
|
+
- lib
|
470
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
471
|
+
none: false
|
472
|
+
requirements:
|
473
|
+
- - ! '>='
|
474
|
+
- !ruby/object:Gem::Version
|
475
|
+
version: '0'
|
476
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
477
|
+
none: false
|
478
|
+
requirements:
|
479
|
+
- - ! '>='
|
480
|
+
- !ruby/object:Gem::Version
|
481
|
+
version: '0'
|
482
|
+
requirements:
|
483
|
+
- none
|
484
|
+
rubyforge_project: rtiss_soap4r
|
485
|
+
rubygems_version: 1.8.25
|
486
|
+
signing_key:
|
487
|
+
specification_version: 3
|
488
|
+
summary: An updated implementation of SOAP 1.1 for Ruby 1.8 and 1.9. (RTISS version)
|
489
|
+
test_files: []
|