rubyjedi-soap4r 1.5.8.01
Sign up to get free protection for your applications and to get access to all the features.
- 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 +279 -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 +310 -0
- data/lib/soap/mapping/rubytypeFactory.rb +446 -0
- data/lib/soap/mapping/schemadefinition.rb +170 -0
- data/lib/soap/mapping/typeMap.rb +106 -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 +378 -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 +1465 -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 +110 -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/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 +29 -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 +75 -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 +519 -0
@@ -0,0 +1,43 @@
|
|
1
|
+
<?xml version="1.0" encoding="utf-8"?>
|
2
|
+
<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"
|
3
|
+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
4
|
+
xmlns:xsd="http://www.w3.org/2001/XMLSchema">
|
5
|
+
<soap:Header>
|
6
|
+
<gepirResponseHeader xmlns="http://www.example.com/xmllang">
|
7
|
+
<responderGln>12345</responderGln>
|
8
|
+
<numberOfHits>1</numberOfHits>
|
9
|
+
<returnCode>0</returnCode>
|
10
|
+
</gepirResponseHeader>
|
11
|
+
</soap:Header>
|
12
|
+
<soap:Body>
|
13
|
+
<gepirParty xmlns="http://www.example.com/xmllang">
|
14
|
+
<partyDataLine xml:lang="EN">
|
15
|
+
<gln>12345</gln>
|
16
|
+
<additionalPartyId>234</additionalPartyId>
|
17
|
+
<partyName>foobar LLC</partyName>
|
18
|
+
<streetAddress>baz</streetAddress>
|
19
|
+
<pOBoxNumber>9876</pOBoxNumber>
|
20
|
+
<city>Moscow</city>
|
21
|
+
<countryISOCode>RU</countryISOCode>
|
22
|
+
<contact>
|
23
|
+
<contactName> </contactName>
|
24
|
+
<communicationChannel communicationChannelCode="TELEFAX">12; 34 56 78</communicationChannel>
|
25
|
+
<communicationChannel communicationChannelCode="EMAIL">foo@example.com</communicationChannel>
|
26
|
+
<communicationChannel communicationChannelCode="TELEPHONE">123 456</communicationChannel>
|
27
|
+
</contact>
|
28
|
+
<contact>
|
29
|
+
<communicationChannel communicationChannelCode="EMAIL">bar@example.com</communicationChannel>
|
30
|
+
</contact>
|
31
|
+
<contact>
|
32
|
+
<communicationChannel communicationChannelCode="WEBSITE">www.example.com</communicationChannel>
|
33
|
+
</contact>
|
34
|
+
<contact>
|
35
|
+
<communicationChannel communicationChannelCode="TELEFAX">12 34; 56 78</communicationChannel>
|
36
|
+
</contact>
|
37
|
+
<contact>
|
38
|
+
<communicationChannel communicationChannelCode="TELEPHONE">789 012</communicationChannel>
|
39
|
+
</contact>
|
40
|
+
</partyDataLine>
|
41
|
+
</gepirParty>
|
42
|
+
</soap:Body>
|
43
|
+
</soap:Envelope>
|
@@ -0,0 +1,12 @@
|
|
1
|
+
<?xml version="1.0" encoding="utf-8"?>
|
2
|
+
<xs:schema
|
3
|
+
attributeFormDefault="qualified"
|
4
|
+
elementFormDefault="qualified"
|
5
|
+
targetNamespace="urn:jp.gr.jin.rrr.example.fakeschema"
|
6
|
+
xmlns:xs="http://www.w3.org/2001/XMLSchema">
|
7
|
+
<xs:element name="MessageDataSet">
|
8
|
+
<xs:complexType>
|
9
|
+
<xs:choice maxOccurs="unbounded" />
|
10
|
+
</xs:complexType>
|
11
|
+
</xs:element>
|
12
|
+
</xs:schema>
|
@@ -0,0 +1,65 @@
|
|
1
|
+
require 'xsd/qname'
|
2
|
+
|
3
|
+
module XSD; module XSD2Ruby
|
4
|
+
|
5
|
+
|
6
|
+
# {urn:mysample}question
|
7
|
+
# something - SOAP::SOAPString
|
8
|
+
class Question
|
9
|
+
attr_accessor :something
|
10
|
+
|
11
|
+
def initialize(something = nil)
|
12
|
+
@something = something
|
13
|
+
end
|
14
|
+
end
|
15
|
+
|
16
|
+
# {urn:mysample}section
|
17
|
+
# sectionID - SOAP::SOAPInt
|
18
|
+
# name - SOAP::SOAPString
|
19
|
+
# description - SOAP::SOAPString
|
20
|
+
# index - SOAP::SOAPInt
|
21
|
+
# firstQuestion - XSD::XSD2Ruby::Question
|
22
|
+
class Section
|
23
|
+
attr_accessor :sectionID
|
24
|
+
attr_accessor :name
|
25
|
+
attr_accessor :description
|
26
|
+
attr_accessor :index
|
27
|
+
attr_accessor :firstQuestion
|
28
|
+
|
29
|
+
def initialize(sectionID = nil, name = nil, description = nil, index = nil, firstQuestion = nil)
|
30
|
+
@sectionID = sectionID
|
31
|
+
@name = name
|
32
|
+
@description = description
|
33
|
+
@index = index
|
34
|
+
@firstQuestion = firstQuestion
|
35
|
+
end
|
36
|
+
end
|
37
|
+
|
38
|
+
# {urn:mysample}sectionArray
|
39
|
+
class SectionArray < ::Array
|
40
|
+
end
|
41
|
+
|
42
|
+
# {urn:mysample}sectionElement
|
43
|
+
# sectionID - SOAP::SOAPInt
|
44
|
+
# name - SOAP::SOAPString
|
45
|
+
# description - SOAP::SOAPString
|
46
|
+
# index - SOAP::SOAPInt
|
47
|
+
# firstQuestion - XSD::XSD2Ruby::Question
|
48
|
+
class SectionElement
|
49
|
+
attr_accessor :sectionID
|
50
|
+
attr_accessor :name
|
51
|
+
attr_accessor :description
|
52
|
+
attr_accessor :index
|
53
|
+
attr_accessor :firstQuestion
|
54
|
+
|
55
|
+
def initialize(sectionID = nil, name = nil, description = nil, index = nil, firstQuestion = nil)
|
56
|
+
@sectionID = sectionID
|
57
|
+
@name = name
|
58
|
+
@description = description
|
59
|
+
@index = index
|
60
|
+
@firstQuestion = firstQuestion
|
61
|
+
end
|
62
|
+
end
|
63
|
+
|
64
|
+
|
65
|
+
end; end
|
@@ -0,0 +1,51 @@
|
|
1
|
+
require 'xsd/mapping'
|
2
|
+
require 'mysample.rb'
|
3
|
+
|
4
|
+
module XSD; module XSD2Ruby
|
5
|
+
|
6
|
+
module MysampleMappingRegistry
|
7
|
+
NsMysample = "urn:mysample"
|
8
|
+
Registry = ::SOAP::Mapping::LiteralRegistry.new
|
9
|
+
|
10
|
+
Registry.register(
|
11
|
+
:class => XSD::XSD2Ruby::Question,
|
12
|
+
:schema_type => XSD::QName.new(NsMysample, "question"),
|
13
|
+
:schema_element => [
|
14
|
+
["something", ["SOAP::SOAPString", XSD::QName.new(nil, "something")]]
|
15
|
+
]
|
16
|
+
)
|
17
|
+
|
18
|
+
Registry.register(
|
19
|
+
:class => XSD::XSD2Ruby::Section,
|
20
|
+
:schema_type => XSD::QName.new(NsMysample, "section"),
|
21
|
+
:schema_element => [
|
22
|
+
["sectionID", ["SOAP::SOAPInt", XSD::QName.new(nil, "sectionID")]],
|
23
|
+
["name", ["SOAP::SOAPString", XSD::QName.new(nil, "name")]],
|
24
|
+
["description", ["SOAP::SOAPString", XSD::QName.new(nil, "description")]],
|
25
|
+
["index", ["SOAP::SOAPInt", XSD::QName.new(nil, "index")]],
|
26
|
+
["firstQuestion", ["XSD::XSD2Ruby::Question", XSD::QName.new(nil, "firstQuestion")]]
|
27
|
+
]
|
28
|
+
)
|
29
|
+
|
30
|
+
Registry.register(
|
31
|
+
:class => XSD::XSD2Ruby::SectionArray,
|
32
|
+
:schema_type => XSD::QName.new(NsMysample, "sectionArray"),
|
33
|
+
:schema_element => [
|
34
|
+
["element", ["XSD::XSD2Ruby::Section[]", XSD::QName.new(nil, "element")], [1, nil]]
|
35
|
+
]
|
36
|
+
)
|
37
|
+
|
38
|
+
Registry.register(
|
39
|
+
:class => XSD::XSD2Ruby::SectionElement,
|
40
|
+
:schema_name => XSD::QName.new(NsMysample, "sectionElement"),
|
41
|
+
:schema_element => [
|
42
|
+
["sectionID", ["SOAP::SOAPInt", XSD::QName.new(nil, "sectionID")]],
|
43
|
+
["name", ["SOAP::SOAPString", XSD::QName.new(nil, "name")]],
|
44
|
+
["description", ["SOAP::SOAPString", XSD::QName.new(nil, "description")]],
|
45
|
+
["index", ["SOAP::SOAPInt", XSD::QName.new(nil, "index")]],
|
46
|
+
["firstQuestion", ["XSD::XSD2Ruby::Question", XSD::QName.new(nil, "firstQuestion")]]
|
47
|
+
]
|
48
|
+
)
|
49
|
+
end
|
50
|
+
|
51
|
+
end; end
|
@@ -0,0 +1,49 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<xsd:schema targetNamespace="urn:mysample"
|
3
|
+
xmlns:tns="urn:mysample"
|
4
|
+
xmlns:xsd="http://www.w3.org/2001/XMLSchema"
|
5
|
+
xmlns:enc="http://schemas.xmlsoap.org/soap/encoding/"
|
6
|
+
xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">
|
7
|
+
|
8
|
+
<xsd:complexType name="question">
|
9
|
+
<xsd:sequence>
|
10
|
+
<xsd:element name="something" type="xsd:string" />
|
11
|
+
</xsd:sequence>
|
12
|
+
</xsd:complexType>
|
13
|
+
|
14
|
+
<xsd:element name="section">
|
15
|
+
<xsd:complexType>
|
16
|
+
<xsd:sequence>
|
17
|
+
<xsd:element name="different" type="xsd:int" />
|
18
|
+
</xsd:sequence>
|
19
|
+
</xsd:complexType>
|
20
|
+
</xsd:element>
|
21
|
+
|
22
|
+
<xsd:complexType name="section">
|
23
|
+
<xsd:sequence>
|
24
|
+
<xsd:element name="sectionID" type="xsd:int" />
|
25
|
+
<xsd:element name="name" type="xsd:string" />
|
26
|
+
<xsd:element name="description" type="xsd:string" />
|
27
|
+
<xsd:element name="index" type="xsd:int" />
|
28
|
+
<xsd:element name="firstQuestion" type="tns:question" />
|
29
|
+
</xsd:sequence>
|
30
|
+
</xsd:complexType>
|
31
|
+
|
32
|
+
<xsd:complexType name="sectionArray">
|
33
|
+
<xsd:sequence>
|
34
|
+
<xsd:element name="element" type="tns:section" maxOccurs="unbounded"/>
|
35
|
+
</xsd:sequence>
|
36
|
+
</xsd:complexType>
|
37
|
+
|
38
|
+
<xsd:element name="sectionElement">
|
39
|
+
<xsd:complexType>
|
40
|
+
<xsd:sequence>
|
41
|
+
<xsd:element name="sectionID" type="xsd:int" />
|
42
|
+
<xsd:element name="name" type="xsd:string" />
|
43
|
+
<xsd:element name="description" type="xsd:string" />
|
44
|
+
<xsd:element name="index" type="xsd:int" />
|
45
|
+
<xsd:element name="firstQuestion" type="tns:question" />
|
46
|
+
</xsd:sequence>
|
47
|
+
</xsd:complexType>
|
48
|
+
</xsd:element>
|
49
|
+
</xsd:schema>
|
@@ -0,0 +1,90 @@
|
|
1
|
+
require 'test/unit'
|
2
|
+
require 'wsdl/xmlSchema/xsd2ruby'
|
3
|
+
require File.join(File.dirname(File.expand_path(__FILE__)), '..', '..', 'testutil.rb')
|
4
|
+
|
5
|
+
|
6
|
+
module XSD; module XSD2Ruby
|
7
|
+
|
8
|
+
|
9
|
+
class TestXSD2Ruby < Test::Unit::TestCase
|
10
|
+
DIR = File.dirname(File.expand_path(__FILE__))
|
11
|
+
|
12
|
+
def setup
|
13
|
+
Dir.chdir(DIR) do
|
14
|
+
gen = WSDL::XMLSchema::XSD2Ruby.new
|
15
|
+
gen.location = pathname("section.xsd")
|
16
|
+
gen.basedir = DIR
|
17
|
+
gen.logger.level = Logger::FATAL
|
18
|
+
gen.opt['module_path'] = "XSD::XSD2Ruby"
|
19
|
+
gen.opt['classdef'] = nil
|
20
|
+
gen.opt['mapping_registry'] = nil
|
21
|
+
gen.opt['mapper'] = nil
|
22
|
+
gen.opt['force'] = true
|
23
|
+
gen.run
|
24
|
+
TestUtil.require(DIR, 'mysample.rb', 'mysample_mapping_registry.rb', 'mysample_mapper.rb')
|
25
|
+
end
|
26
|
+
end
|
27
|
+
|
28
|
+
def teardown
|
29
|
+
unless $DEBUG
|
30
|
+
File.unlink(pathname("mysample.rb"))
|
31
|
+
File.unlink(pathname("mysample_mapping_registry.rb"))
|
32
|
+
File.unlink(pathname("mysample_mapper.rb"))
|
33
|
+
end
|
34
|
+
# leave generated file for debug.
|
35
|
+
end
|
36
|
+
|
37
|
+
def test_generate
|
38
|
+
compare("expected_mysample.rb", "mysample.rb")
|
39
|
+
compare("expected_mysample_mapping_registry.rb", "mysample_mapping_registry.rb")
|
40
|
+
compare("expected_mysample_mapper.rb", "mysample_mapper.rb")
|
41
|
+
end
|
42
|
+
|
43
|
+
def test_mapper
|
44
|
+
mapper = XSD::XSD2Ruby::MysampleMapper.new
|
45
|
+
# complexType
|
46
|
+
arg = XSD::XSD2Ruby::Section.new(10001, 'name', 'description', 1, Question.new("hello world"))
|
47
|
+
obj = mapper.xml2obj(mapper.obj2xml(arg))
|
48
|
+
assert_section_equal(arg, obj)
|
49
|
+
# element
|
50
|
+
arg = XSD::XSD2Ruby::SectionElement.new(10001, 'name', 'description', 1, Question.new("hello world"))
|
51
|
+
obj = mapper.xml2obj(mapper.obj2xml(arg))
|
52
|
+
assert_section_equal(arg, obj)
|
53
|
+
# array
|
54
|
+
ele = XSD::XSD2Ruby::Section.new(10001, 'name', 'description', 1, Question.new("hello world"))
|
55
|
+
arg = XSD::XSD2Ruby::SectionArray[ele, ele, ele]
|
56
|
+
obj = mapper.xml2obj(mapper.obj2xml(arg))
|
57
|
+
assert_equal(arg.class, obj.class)
|
58
|
+
assert_equal(arg.size, obj.size)
|
59
|
+
0.upto(arg.size - 1) do |idx|
|
60
|
+
assert_section_equal(arg[idx], obj[idx])
|
61
|
+
end
|
62
|
+
end
|
63
|
+
|
64
|
+
private
|
65
|
+
|
66
|
+
def assert_section_equal(arg, obj)
|
67
|
+
assert_equal(arg.class, obj.class)
|
68
|
+
assert_equal(arg.sectionID, obj.sectionID)
|
69
|
+
assert_equal(arg.name, obj.name)
|
70
|
+
assert_equal(arg.description, obj.description)
|
71
|
+
assert_equal(arg.index, obj.index)
|
72
|
+
assert_equal(arg.firstQuestion.class, obj.firstQuestion.class)
|
73
|
+
assert_equal(arg.firstQuestion.something, obj.firstQuestion.something)
|
74
|
+
end
|
75
|
+
|
76
|
+
def pathname(filename)
|
77
|
+
File.join(DIR, filename)
|
78
|
+
end
|
79
|
+
|
80
|
+
def compare(expected, actual)
|
81
|
+
TestUtil.filecompare(pathname(expected), pathname(actual))
|
82
|
+
end
|
83
|
+
|
84
|
+
def loadfile(file)
|
85
|
+
File.open(pathname(file)) { |f| f.read }
|
86
|
+
end
|
87
|
+
end
|
88
|
+
|
89
|
+
|
90
|
+
end; end
|
metadata
ADDED
@@ -0,0 +1,519 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: rubyjedi-soap4r
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
prerelease: false
|
5
|
+
segments:
|
6
|
+
- 1
|
7
|
+
- 5
|
8
|
+
- 8
|
9
|
+
- 1
|
10
|
+
version: 1.5.8.01
|
11
|
+
platform: ruby
|
12
|
+
authors:
|
13
|
+
- NAKAMURA, Hiroshi
|
14
|
+
autorequire:
|
15
|
+
bindir: bin
|
16
|
+
cert_chain: []
|
17
|
+
|
18
|
+
date: 2007-09-24 00:00:00 -10:00
|
19
|
+
default_executable:
|
20
|
+
dependencies:
|
21
|
+
- !ruby/object:Gem::Dependency
|
22
|
+
name: httpclient
|
23
|
+
prerelease: false
|
24
|
+
requirement: &id001 !ruby/object:Gem::Requirement
|
25
|
+
requirements:
|
26
|
+
- - ">="
|
27
|
+
- !ruby/object:Gem::Version
|
28
|
+
segments:
|
29
|
+
- 2
|
30
|
+
- 1
|
31
|
+
- 1
|
32
|
+
version: 2.1.1
|
33
|
+
type: :runtime
|
34
|
+
version_requirements: *id001
|
35
|
+
description:
|
36
|
+
email: nahi@ruby-lang.org
|
37
|
+
executables:
|
38
|
+
- wsdl2ruby.rb
|
39
|
+
- xsd2ruby.rb
|
40
|
+
extensions: []
|
41
|
+
|
42
|
+
extra_rdoc_files: []
|
43
|
+
|
44
|
+
files:
|
45
|
+
- bin/xsd2ruby.rb
|
46
|
+
- bin/wsdl2ruby.rb
|
47
|
+
- lib/wsdl/documentation.rb
|
48
|
+
- lib/wsdl/info.rb
|
49
|
+
- lib/wsdl/message.rb
|
50
|
+
- lib/wsdl/import.rb
|
51
|
+
- lib/wsdl/operationBinding.rb
|
52
|
+
- lib/wsdl/port.rb
|
53
|
+
- lib/wsdl/operation.rb
|
54
|
+
- lib/wsdl/xmlSchema/choice.rb
|
55
|
+
- lib/wsdl/xmlSchema/ref.rb
|
56
|
+
- lib/wsdl/xmlSchema/whitespace.rb
|
57
|
+
- lib/wsdl/xmlSchema/complexRestriction.rb
|
58
|
+
- lib/wsdl/xmlSchema/import.rb
|
59
|
+
- lib/wsdl/xmlSchema/complexExtension.rb
|
60
|
+
- lib/wsdl/xmlSchema/fractiondigits.rb
|
61
|
+
- lib/wsdl/xmlSchema/group.rb
|
62
|
+
- lib/wsdl/xmlSchema/simpleRestriction.rb
|
63
|
+
- lib/wsdl/xmlSchema/simpleContent.rb
|
64
|
+
- lib/wsdl/xmlSchema/totaldigits.rb
|
65
|
+
- lib/wsdl/xmlSchema/complexType.rb
|
66
|
+
- lib/wsdl/xmlSchema/maxinclusive.rb
|
67
|
+
- lib/wsdl/xmlSchema/sequence.rb
|
68
|
+
- lib/wsdl/xmlSchema/xsd2ruby.rb
|
69
|
+
- lib/wsdl/xmlSchema/maxlength.rb
|
70
|
+
- lib/wsdl/xmlSchema/minexclusive.rb
|
71
|
+
- lib/wsdl/xmlSchema/complexContent.rb
|
72
|
+
- lib/wsdl/xmlSchema/parser.rb
|
73
|
+
- lib/wsdl/xmlSchema/maxexclusive.rb
|
74
|
+
- lib/wsdl/xmlSchema/union.rb
|
75
|
+
- lib/wsdl/xmlSchema/attributeGroup.rb
|
76
|
+
- lib/wsdl/xmlSchema/list.rb
|
77
|
+
- lib/wsdl/xmlSchema/importer.rb
|
78
|
+
- lib/wsdl/xmlSchema/include.rb
|
79
|
+
- lib/wsdl/xmlSchema/minlength.rb
|
80
|
+
- lib/wsdl/xmlSchema/any.rb
|
81
|
+
- lib/wsdl/xmlSchema/anyAttribute.rb
|
82
|
+
- lib/wsdl/xmlSchema/content.rb
|
83
|
+
- lib/wsdl/xmlSchema/simpleType.rb
|
84
|
+
- lib/wsdl/xmlSchema/importHandler.rb
|
85
|
+
- lib/wsdl/xmlSchema/mininclusive.rb
|
86
|
+
- lib/wsdl/xmlSchema/all.rb
|
87
|
+
- lib/wsdl/xmlSchema/data.rb
|
88
|
+
- lib/wsdl/xmlSchema/annotation.rb
|
89
|
+
- lib/wsdl/xmlSchema/schema.rb
|
90
|
+
- lib/wsdl/xmlSchema/unique.rb
|
91
|
+
- lib/wsdl/xmlSchema/pattern.rb
|
92
|
+
- lib/wsdl/xmlSchema/simpleExtension.rb
|
93
|
+
- lib/wsdl/xmlSchema/length.rb
|
94
|
+
- lib/wsdl/xmlSchema/enumeration.rb
|
95
|
+
- lib/wsdl/xmlSchema/attribute.rb
|
96
|
+
- lib/wsdl/xmlSchema/element.rb
|
97
|
+
- lib/wsdl/binding.rb
|
98
|
+
- lib/wsdl/wsdl.rb
|
99
|
+
- lib/wsdl/parser.rb
|
100
|
+
- lib/wsdl/soap/header.rb
|
101
|
+
- lib/wsdl/soap/body.rb
|
102
|
+
- lib/wsdl/soap/headerfault.rb
|
103
|
+
- lib/wsdl/soap/classDefCreatorSupport.rb
|
104
|
+
- lib/wsdl/soap/servantSkeltonCreator.rb
|
105
|
+
- lib/wsdl/soap/encodedMappingRegistryCreator.rb
|
106
|
+
- lib/wsdl/soap/clientSkeltonCreator.rb
|
107
|
+
- lib/wsdl/soap/mappingRegistryCreatorSupport.rb
|
108
|
+
- lib/wsdl/soap/complexType.rb
|
109
|
+
- lib/wsdl/soap/operation.rb
|
110
|
+
- lib/wsdl/soap/servletStubCreator.rb
|
111
|
+
- lib/wsdl/soap/binding.rb
|
112
|
+
- lib/wsdl/soap/address.rb
|
113
|
+
- lib/wsdl/soap/wsdl2ruby.rb
|
114
|
+
- lib/wsdl/soap/driverCreator.rb
|
115
|
+
- lib/wsdl/soap/literalMappingRegistryCreator.rb
|
116
|
+
- lib/wsdl/soap/standaloneServerStubCreator.rb
|
117
|
+
- lib/wsdl/soap/classNameCreator.rb
|
118
|
+
- lib/wsdl/soap/cgiStubCreator.rb
|
119
|
+
- lib/wsdl/soap/methodDefCreator.rb
|
120
|
+
- lib/wsdl/soap/data.rb
|
121
|
+
- lib/wsdl/soap/classDefCreator.rb
|
122
|
+
- lib/wsdl/soap/fault.rb
|
123
|
+
- lib/wsdl/soap/mappingRegistryCreator.rb
|
124
|
+
- lib/wsdl/soap/element.rb
|
125
|
+
- lib/wsdl/soap/definitions.rb
|
126
|
+
- lib/wsdl/part.rb
|
127
|
+
- lib/wsdl/types.rb
|
128
|
+
- lib/wsdl/service.rb
|
129
|
+
- lib/wsdl/importer.rb
|
130
|
+
- lib/wsdl/param.rb
|
131
|
+
- lib/wsdl/data.rb
|
132
|
+
- lib/wsdl/portType.rb
|
133
|
+
- lib/wsdl/definitions.rb
|
134
|
+
- lib/xsd/codegen.rb
|
135
|
+
- lib/xsd/iconvcharset.rb
|
136
|
+
- lib/xsd/datatypes1999.rb
|
137
|
+
- lib/xsd/charset.rb
|
138
|
+
- lib/xsd/namedelements.rb
|
139
|
+
- lib/xsd/datatypes.rb
|
140
|
+
- lib/xsd/xmlparser.rb.orig
|
141
|
+
- lib/xsd/codegen/classdef.rb
|
142
|
+
- lib/xsd/codegen/methoddef.rb
|
143
|
+
- lib/xsd/codegen/commentdef.rb
|
144
|
+
- lib/xsd/codegen/gensupport.rb
|
145
|
+
- lib/xsd/codegen/moduledef.rb
|
146
|
+
- lib/xsd/ns.rb
|
147
|
+
- lib/xsd/xmlparser/libxmlparser.rb
|
148
|
+
- lib/xsd/xmlparser/rexmlparser.rb
|
149
|
+
- lib/xsd/xmlparser/parser.rb
|
150
|
+
- lib/xsd/xmlparser/xmlscanner.rb
|
151
|
+
- lib/xsd/xmlparser/xmlparser.rb
|
152
|
+
- lib/xsd/mapping.rb
|
153
|
+
- lib/xsd/qname.rb
|
154
|
+
- lib/xsd/xmlparser.rb
|
155
|
+
- lib/soap/attrproxy.rb
|
156
|
+
- lib/soap/streamHandler.rb
|
157
|
+
- lib/soap/proxy.rb
|
158
|
+
- lib/soap/marshal.rb
|
159
|
+
- lib/soap/httpconfigloader.rb
|
160
|
+
- lib/soap/mimemessage.rb
|
161
|
+
- lib/soap/encodingstyle/literalHandler.rb
|
162
|
+
- lib/soap/encodingstyle/handler.rb
|
163
|
+
- lib/soap/encodingstyle/aspDotNetHandler.rb
|
164
|
+
- lib/soap/encodingstyle/soapHandler.rb
|
165
|
+
- lib/soap/mapping/schemadefinition.rb
|
166
|
+
- lib/soap/mapping/encodedregistry.rb
|
167
|
+
- lib/soap/mapping/wsdlliteralregistry.rb
|
168
|
+
- lib/soap/mapping/rubytypeFactory.rb
|
169
|
+
- lib/soap/mapping/registry.rb
|
170
|
+
- lib/soap/mapping/literalregistry.rb
|
171
|
+
- lib/soap/mapping/wsdlencodedregistry.rb
|
172
|
+
- lib/soap/mapping/typeMap.rb
|
173
|
+
- lib/soap/mapping/factory.rb
|
174
|
+
- lib/soap/mapping/mapping.rb
|
175
|
+
- lib/soap/filter/handler.rb
|
176
|
+
- lib/soap/filter/streamhandler.rb
|
177
|
+
- lib/soap/filter/filterchain.rb
|
178
|
+
- lib/soap/netHttpClient.rb
|
179
|
+
- lib/soap/wsdlDriver.rb
|
180
|
+
- lib/soap/header/handler.rb
|
181
|
+
- lib/soap/header/handlerset.rb
|
182
|
+
- lib/soap/header/mappinghandler.rb
|
183
|
+
- lib/soap/header/simplehandler.rb
|
184
|
+
- lib/soap/parser.rb
|
185
|
+
- lib/soap/generator.rb
|
186
|
+
- lib/soap/ns.rb
|
187
|
+
- lib/soap/nestedexception.rb
|
188
|
+
- lib/soap/filter.rb
|
189
|
+
- lib/soap/soap.rb
|
190
|
+
- lib/soap/processor.rb
|
191
|
+
- lib/soap/property.rb
|
192
|
+
- lib/soap/mapping.rb
|
193
|
+
- lib/soap/baseData.rb
|
194
|
+
- lib/soap/attachment.rb
|
195
|
+
- lib/soap/ruby18ext.rb
|
196
|
+
- lib/soap/rpc/cgistub.rb
|
197
|
+
- lib/soap/rpc/proxy.rb
|
198
|
+
- lib/soap/rpc/element.rb.orig
|
199
|
+
- lib/soap/rpc/methodDef.rb
|
200
|
+
- lib/soap/rpc/standaloneServer.rb
|
201
|
+
- lib/soap/rpc/driver.rb
|
202
|
+
- lib/soap/rpc/router.rb
|
203
|
+
- lib/soap/rpc/httpserver.rb
|
204
|
+
- lib/soap/rpc/rpc.rb
|
205
|
+
- lib/soap/rpc/soaplet.rb
|
206
|
+
- lib/soap/rpc/element.rb
|
207
|
+
- lib/soap/element.rb
|
208
|
+
- test/sm11/client.rb
|
209
|
+
- test/sm11/classDef.rb
|
210
|
+
- test/sm11/server.rb
|
211
|
+
- test/sm11/driver.rb
|
212
|
+
- test/sm11/servant.rb
|
213
|
+
- test/interopR2/test.sh
|
214
|
+
- test/interopR2/clientHP.rb
|
215
|
+
- test/interopR2/rwikiInteropService.rb
|
216
|
+
- test/interopR2/clientNuWave.rb
|
217
|
+
- test/interopR2/clientXSOAP.rb
|
218
|
+
- test/interopR2/SOAPBuildersInterop_R2GrB.wsdl
|
219
|
+
- test/interopR2/client4S4C.rb
|
220
|
+
- test/interopR2/interopService.rb
|
221
|
+
- test/interopR2/clientSOAP4R.rb
|
222
|
+
- test/interopR2/server.cgi
|
223
|
+
- test/interopR2/SOAPBuildersInterop_R2.wsdl
|
224
|
+
- test/interopR2/clientJAX-RPC.rb
|
225
|
+
- test/interopR2/clientWASP.rb
|
226
|
+
- test/interopR2/clientSpray2001.rb
|
227
|
+
- test/interopR2/clientDelphi.rb
|
228
|
+
- test/interopR2/clientVWOpentalkSoap.rb
|
229
|
+
- test/interopR2/clientCapeConnect.rb
|
230
|
+
- test/interopR2/clientMSSOAPToolkit3.0.rb
|
231
|
+
- test/interopR2/clientApacheAxis.rb
|
232
|
+
- test/interopR2/clientXMLBus.rb
|
233
|
+
- test/interopR2/clientASP.NET.rb
|
234
|
+
- test/interopR2/base.rb
|
235
|
+
- test/interopR2/clientMSSOAPToolkit2.0.rb
|
236
|
+
- test/interopR2/clientBEAWebLogic.rb
|
237
|
+
- test/interopR2/clientgSOAP.rb
|
238
|
+
- test/interopR2/clientWhiteMesa.rb
|
239
|
+
- test/interopR2/client.rb
|
240
|
+
- test/interopR2/clientSIMACE.rb
|
241
|
+
- test/interopR2/clientSQLData.rb
|
242
|
+
- test/interopR2/clientSilverStream.rb
|
243
|
+
- test/interopR2/clientGLUE.rb
|
244
|
+
- test/interopR2/clientWebMethods.rb
|
245
|
+
- test/interopR2/client.NetRemoting.rb
|
246
|
+
- test/interopR2/clienteSOAP.rb
|
247
|
+
- test/interopR2/server.rb
|
248
|
+
- test/interopR2/clientXMLRPC-EPI.rb
|
249
|
+
- test/interopR2/clientkSOAP.rb
|
250
|
+
- test/interopR2/clientSOAP__Lite.rb
|
251
|
+
- test/interopR2/iSimonReg.rb
|
252
|
+
- test/interopR2/clientBase.rb
|
253
|
+
- test/interopR2/clientFrontier.rb
|
254
|
+
- test/interopR2/clientEasySoap.rb
|
255
|
+
- test/interopR2/clientOpenLink.rb
|
256
|
+
- test/interopR2/clientWASPC.rb
|
257
|
+
- test/interopR2/clientZSI.rb
|
258
|
+
- test/interopR2/clientKafkaXSLT.rb
|
259
|
+
- test/interopR2/clientPhalanx.rb
|
260
|
+
- test/interopR2/clientNuSOAP.rb
|
261
|
+
- test/interopR2/interopResultBase.rb
|
262
|
+
- test/interopR2/simonReg.rb
|
263
|
+
- test/interopR2/clientJSOAP.rb
|
264
|
+
- test/interopR2/clientPEAR.rb
|
265
|
+
- test/interopR2/clientApacheSOAP.rb
|
266
|
+
- test/interopR2/clientOracle.rb
|
267
|
+
- test/interopR2/clientSun.rb
|
268
|
+
- test/interopR2/clientWingfoot.rb
|
269
|
+
- test/interopR2/client4S4C2.rb
|
270
|
+
- test/interopR2/README.txt
|
271
|
+
- test/wsdl/test_emptycomplextype.rb
|
272
|
+
- test/wsdl/qualified/np.wsdl
|
273
|
+
- test/wsdl/qualified/test_qualified.rb
|
274
|
+
- test/wsdl/qualified/lp.wsdl
|
275
|
+
- test/wsdl/qualified/lp.xsd
|
276
|
+
- test/wsdl/qualified/test_unqualified.rb
|
277
|
+
- test/wsdl/anonymous/expectedDriver.rb
|
278
|
+
- test/wsdl/anonymous/lp.wsdl
|
279
|
+
- test/wsdl/anonymous/expectedMappingRegistry.rb
|
280
|
+
- test/wsdl/anonymous/test_anonymous.rb
|
281
|
+
- test/wsdl/anonymous/expectedClassDef.rb
|
282
|
+
- test/wsdl/axisArray/axisArray.wsdl
|
283
|
+
- test/wsdl/axisArray/test_axisarray.rb
|
284
|
+
- test/wsdl/simplecontent/simplecontent.wsdl
|
285
|
+
- test/wsdl/simplecontent/test_simplecontent.rb
|
286
|
+
- test/wsdl/map/test_map.rb
|
287
|
+
- test/wsdl/map/map.xml
|
288
|
+
- test/wsdl/map/map.wsdl
|
289
|
+
- test/wsdl/datetime/datetime.wsdl
|
290
|
+
- test/wsdl/datetime/datetimeServant.rb
|
291
|
+
- test/wsdl/datetime/DatetimeService.rb
|
292
|
+
- test/wsdl/datetime/test_datetime.rb
|
293
|
+
- test/wsdl/datetime/datetime.rb
|
294
|
+
- test/wsdl/emptycomplextype.wsdl
|
295
|
+
- test/wsdl/raa/RAAService.rb
|
296
|
+
- test/wsdl/raa/expectedDriver.rb
|
297
|
+
- test/wsdl/raa/expectedMappingRegistry.rb
|
298
|
+
- test/wsdl/raa/test_raa.rb
|
299
|
+
- test/wsdl/raa/raa.wsdl
|
300
|
+
- test/wsdl/raa/expectedClassDef.rb
|
301
|
+
- test/wsdl/raa/README.txt
|
302
|
+
- test/wsdl/any/expectedService.rb
|
303
|
+
- test/wsdl/any/expectedDriver.rb
|
304
|
+
- test/wsdl/any/expectedMappingRegistry.rb
|
305
|
+
- test/wsdl/any/expectedEcho.rb
|
306
|
+
- test/wsdl/any/test_any.rb
|
307
|
+
- test/wsdl/any/any.wsdl
|
308
|
+
- test/wsdl/test_multiplefault.rb
|
309
|
+
- test/wsdl/multiplefault.wsdl
|
310
|
+
- test/wsdl/complexcontent/complexContent.wsdl
|
311
|
+
- test/wsdl/complexcontent/test_echo.rb
|
312
|
+
- test/wsdl/oneway/test_oneway.rb
|
313
|
+
- test/wsdl/oneway/oneway.wsdl
|
314
|
+
- test/wsdl/test_fault.rb
|
315
|
+
- test/wsdl/abstract/test_abstract.rb
|
316
|
+
- test/wsdl/abstract/abstract.wsdl
|
317
|
+
- test/wsdl/list/test_list.rb
|
318
|
+
- test/wsdl/list/list.wsdl
|
319
|
+
- test/wsdl/soap/soapbodyparts.wsdl
|
320
|
+
- test/wsdl/soap/wsdl2ruby/expectedService.rb
|
321
|
+
- test/wsdl/soap/wsdl2ruby/echo_version.rb
|
322
|
+
- test/wsdl/soap/wsdl2ruby/expectedClassdef.rb
|
323
|
+
- test/wsdl/soap/wsdl2ruby/echo_versionServant.rb
|
324
|
+
- test/wsdl/soap/wsdl2ruby/test_wsdl2ruby.rb
|
325
|
+
- test/wsdl/soap/wsdl2ruby/echo_versionMappingRegistry.rb
|
326
|
+
- test/wsdl/soap/wsdl2ruby/expectedDriver.rb
|
327
|
+
- test/wsdl/soap/wsdl2ruby/expectedService.cgi
|
328
|
+
- test/wsdl/soap/wsdl2ruby/echo_version_service.cgi
|
329
|
+
- test/wsdl/soap/wsdl2ruby/echo_version_service.rb
|
330
|
+
- test/wsdl/soap/wsdl2ruby/expectedClient.rb
|
331
|
+
- test/wsdl/soap/wsdl2ruby/expectedServant.rb
|
332
|
+
- test/wsdl/soap/wsdl2ruby/expectedMappingRegistry.rb
|
333
|
+
- test/wsdl/soap/wsdl2ruby/echo_version_serviceClient.rb
|
334
|
+
- test/wsdl/soap/wsdl2ruby/section/test_section.rb
|
335
|
+
- test/wsdl/soap/wsdl2ruby/section/expectedClassdef.rb
|
336
|
+
- test/wsdl/soap/wsdl2ruby/section/section.xsd
|
337
|
+
- test/wsdl/soap/wsdl2ruby/rpc.wsdl
|
338
|
+
- test/wsdl/soap/wsdl2ruby/soapenc/test_soapenc.rb
|
339
|
+
- test/wsdl/soap/wsdl2ruby/soapenc/soapenc.wsdl
|
340
|
+
- test/wsdl/soap/wsdl2ruby/echo_versionDriver.rb
|
341
|
+
- test/wsdl/soap/test_soapbodyparts.rb
|
342
|
+
- test/wsdl/ref/test_ref.rb
|
343
|
+
- test/wsdl/ref/product.wsdl
|
344
|
+
- test/wsdl/ref/expectedDriver.rb
|
345
|
+
- test/wsdl/ref/expectedProduct.rb
|
346
|
+
- test/wsdl/simpletype/test_simpletype.rb
|
347
|
+
- test/wsdl/simpletype/simpletype.wsdl
|
348
|
+
- test/wsdl/simpletype/rpc/expectedService.rb
|
349
|
+
- test/wsdl/simpletype/rpc/echo_version.rb
|
350
|
+
- test/wsdl/simpletype/rpc/echo_versionServant.rb
|
351
|
+
- test/wsdl/simpletype/rpc/echo_versionMappingRegistry.rb
|
352
|
+
- test/wsdl/simpletype/rpc/test_rpc.rb
|
353
|
+
- test/wsdl/simpletype/rpc/expectedDriver.rb
|
354
|
+
- test/wsdl/simpletype/rpc/echo_version_service.rb
|
355
|
+
- test/wsdl/simpletype/rpc/expectedClient.rb
|
356
|
+
- test/wsdl/simpletype/rpc/expectedServant.rb
|
357
|
+
- test/wsdl/simpletype/rpc/expectedMappingRegistry.rb
|
358
|
+
- test/wsdl/simpletype/rpc/echo_version_serviceClient.rb
|
359
|
+
- test/wsdl/simpletype/rpc/rpc.wsdl
|
360
|
+
- test/wsdl/simpletype/rpc/expectedEchoVersion.rb
|
361
|
+
- test/wsdl/simpletype/rpc/echo_versionDriver.rb
|
362
|
+
- test/wsdl/fault/fault.wsdl
|
363
|
+
- test/wsdl/fault/test_multifault.rb
|
364
|
+
- test/wsdl/fault/multifault.wsdl
|
365
|
+
- test/wsdl/fault/test_fault.rb
|
366
|
+
- test/wsdl/group/expectedClassdef.rb
|
367
|
+
- test/wsdl/group/group.wsdl
|
368
|
+
- test/wsdl/group/test_rpc.rb
|
369
|
+
- test/wsdl/group/expectedDriver.rb
|
370
|
+
- test/wsdl/group/expectedMappingRegistry.rb
|
371
|
+
- test/wsdl/choice/choice.wsdl
|
372
|
+
- test/wsdl/choice/test_choice.rb
|
373
|
+
- test/wsdl/overload/test_overload.rb
|
374
|
+
- test/wsdl/overload/expectedDriver.rb
|
375
|
+
- test/wsdl/overload/expectedClient.rb
|
376
|
+
- test/wsdl/overload/expectedServant.rb
|
377
|
+
- test/wsdl/overload/overload.wsdl
|
378
|
+
- test/wsdl/document/document.wsdl
|
379
|
+
- test/wsdl/document/array/double.wsdl
|
380
|
+
- test/wsdl/document/array/test_array.rb
|
381
|
+
- test/wsdl/document/ping_nosoapaction.wsdl
|
382
|
+
- test/wsdl/document/test_rpc.rb
|
383
|
+
- test/wsdl/document/test_nosoapaction.rb
|
384
|
+
- test/wsdl/document/number.wsdl
|
385
|
+
- test/wsdl/document/test_number.rb
|
386
|
+
- test/wsdl/marshal/test_wsdlmarshal.rb
|
387
|
+
- test/wsdl/marshal/person.wsdl
|
388
|
+
- test/wsdl/marshal/person_org.rb
|
389
|
+
- test/wsdl/marshal/Person.rb
|
390
|
+
- test/wsdl/rpc/test_rpc.rb
|
391
|
+
- test/wsdl/rpc/test-rpc-lit.wsdl
|
392
|
+
- test/wsdl/rpc/test_rpc_lit.rb
|
393
|
+
- test/wsdl/rpc/rpc.wsdl
|
394
|
+
- test/wsdl/soaptype/test_soaptype.rb
|
395
|
+
- test/wsdl/soaptype/soaptype.wsdl
|
396
|
+
- test/testutil.rb
|
397
|
+
- test/xsd/xmllang.xml
|
398
|
+
- test/xsd/noencoding.xml
|
399
|
+
- test/xsd/test_xsd.rb
|
400
|
+
- test/xsd/codegen/test_classdef.rb
|
401
|
+
- test/xsd/test_ns.rb
|
402
|
+
- test/xsd/xsd2ruby/expected_mysample.rb
|
403
|
+
- test/xsd/xsd2ruby/test_xsd2ruby.rb
|
404
|
+
- test/xsd/xsd2ruby/expected_mysample_mapper.rb
|
405
|
+
- test/xsd/xsd2ruby/expected_mysample_mapping_registry.rb
|
406
|
+
- test/xsd/xsd2ruby/section.xsd
|
407
|
+
- test/xsd/test_xmlschemaparser.rb
|
408
|
+
- test/xsd/test_noencoding.rb
|
409
|
+
- test/xsd/xmlschema.xml
|
410
|
+
- test/runner.rb
|
411
|
+
- test/interopR4/client.rb
|
412
|
+
- test/soap/case/test_mapping.rb
|
413
|
+
- test/soap/test_empty.rb
|
414
|
+
- test/soap/struct/test_struct.rb
|
415
|
+
- test/soap/test_generator.rb
|
416
|
+
- test/soap/asp.net/hello.wsdl
|
417
|
+
- test/soap/asp.net/test_aspdotnet.rb
|
418
|
+
- test/soap/test_property.rb
|
419
|
+
- test/soap/test_basetype.rb
|
420
|
+
- test/soap/test_styleuse.rb
|
421
|
+
- test/soap/ssl/sslsvr.rb
|
422
|
+
- test/soap/ssl/subca.cert
|
423
|
+
- test/soap/ssl/client.key
|
424
|
+
- test/soap/ssl/client.cert
|
425
|
+
- test/soap/ssl/server.cert
|
426
|
+
- test/soap/ssl/test_ssl.rb
|
427
|
+
- test/soap/ssl/README
|
428
|
+
- test/soap/ssl/server.key
|
429
|
+
- test/soap/ssl/ca.cert
|
430
|
+
- test/soap/test_soapelement.rb
|
431
|
+
- test/soap/test_custommap.rb
|
432
|
+
- test/soap/test_custom_ns.rb
|
433
|
+
- test/soap/test_cookie.rb
|
434
|
+
- test/soap/test_no_indent.rb
|
435
|
+
- test/soap/auth/htdigest
|
436
|
+
- test/soap/auth/test_digest.rb
|
437
|
+
- test/soap/auth/test_basic.rb
|
438
|
+
- test/soap/auth/htpasswd
|
439
|
+
- test/soap/calc/server2.rb
|
440
|
+
- test/soap/calc/test_calc.rb
|
441
|
+
- test/soap/calc/server.cgi
|
442
|
+
- test/soap/calc/test_calc_cgi.rb
|
443
|
+
- test/soap/calc/test_calc2.rb
|
444
|
+
- test/soap/calc/server.rb
|
445
|
+
- test/soap/calc/calc.rb
|
446
|
+
- test/soap/calc/calc2.rb
|
447
|
+
- test/soap/filter/test_filter.rb
|
448
|
+
- test/soap/test_mapping.rb
|
449
|
+
- test/soap/helloworld/hw_s.rb
|
450
|
+
- test/soap/helloworld/test_helloworld.rb
|
451
|
+
- test/soap/header/server.cgi
|
452
|
+
- test/soap/header/test_authheader_cgi.rb
|
453
|
+
- test/soap/header/test_simplehandler.rb
|
454
|
+
- test/soap/header/session.pstoredb
|
455
|
+
- test/soap/header/test_authheader.rb
|
456
|
+
- test/soap/test_httpconfigloader.rb
|
457
|
+
- test/soap/wsdlDriver/test_calc.rb
|
458
|
+
- test/soap/wsdlDriver/echo_version.rb
|
459
|
+
- test/soap/wsdlDriver/document.wsdl
|
460
|
+
- test/soap/wsdlDriver/test_simpletype.rb
|
461
|
+
- test/soap/wsdlDriver/test_document.rb
|
462
|
+
- test/soap/wsdlDriver/calc.wsdl
|
463
|
+
- test/soap/wsdlDriver/simpletype.wsdl
|
464
|
+
- test/soap/wsdlDriver/README.txt
|
465
|
+
- test/soap/fault/test_customfault.rb
|
466
|
+
- test/soap/fault/test_fault.rb
|
467
|
+
- test/soap/fault/test_soaparray.rb
|
468
|
+
- test/soap/test_nil.rb
|
469
|
+
- test/soap/styleuse/client.rb
|
470
|
+
- test/soap/styleuse/server.rb
|
471
|
+
- test/soap/test_extraattr.rb
|
472
|
+
- test/soap/swa/test_file.rb
|
473
|
+
- test/soap/test_streamhandler.rb
|
474
|
+
- test/soap/literalArrayMapping/amazonEcDriver.rb
|
475
|
+
- test/soap/literalArrayMapping/amazonEc.rb
|
476
|
+
- test/soap/literalArrayMapping/amazonresponse.xml
|
477
|
+
- test/soap/literalArrayMapping/test_definedarray.rb
|
478
|
+
- test/soap/test_envelopenamespace.rb
|
479
|
+
- test/soap/marshal/test_struct.rb
|
480
|
+
- test/soap/marshal/test_digraph.rb
|
481
|
+
- test/soap/marshal/test_marshal.rb
|
482
|
+
- test/soap/marshal/marshaltestlib.rb
|
483
|
+
- test/soap/htpasswd
|
484
|
+
- test/soap/test_nestedexception.rb
|
485
|
+
- test/soap/test_response_as_xml.rb
|
486
|
+
- test/results
|
487
|
+
- test/16runner.rb
|
488
|
+
has_rdoc: true
|
489
|
+
homepage: http://dev.ctor.org/soap4r
|
490
|
+
licenses: []
|
491
|
+
|
492
|
+
post_install_message:
|
493
|
+
rdoc_options: []
|
494
|
+
|
495
|
+
require_paths:
|
496
|
+
- lib
|
497
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
498
|
+
requirements:
|
499
|
+
- - ">="
|
500
|
+
- !ruby/object:Gem::Version
|
501
|
+
segments:
|
502
|
+
- 0
|
503
|
+
version: "0"
|
504
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
505
|
+
requirements:
|
506
|
+
- - ">="
|
507
|
+
- !ruby/object:Gem::Version
|
508
|
+
segments:
|
509
|
+
- 0
|
510
|
+
version: "0"
|
511
|
+
requirements: []
|
512
|
+
|
513
|
+
rubyforge_project:
|
514
|
+
rubygems_version: 1.3.6
|
515
|
+
signing_key:
|
516
|
+
specification_version: 3
|
517
|
+
summary: An updated implementation of SOAP 1.1 for Ruby 1.8 and 1.9.
|
518
|
+
test_files:
|
519
|
+
- test/runner.rb
|