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
@@ -0,0 +1,126 @@
|
|
1
|
+
<?xml version='1.0' encoding='UTF-8'?>
|
2
|
+
<!--generated by GLUE Standard 4.0.1 on Wed Mar 09 10:20:07 GMT-08:00
|
3
|
+
2005-->
|
4
|
+
<wsdl:definitions name='Calculator'
|
5
|
+
targetNamespace='http://www.themindelectric.com/wsdl/Calculator/'
|
6
|
+
xmlns:tns='http://www.themindelectric.com/wsdl/Calculator/'
|
7
|
+
xmlns:soap='http://schemas.xmlsoap.org/wsdl/soap/'
|
8
|
+
xmlns:http='http://schemas.xmlsoap.org/wsdl/http/'
|
9
|
+
xmlns:mime='http://schemas.xmlsoap.org/wsdl/mime/'
|
10
|
+
xmlns:xsd='http://www.w3.org/2001/XMLSchema'
|
11
|
+
xmlns:soapenc='http://schemas.xmlsoap.org/soap/encoding/'
|
12
|
+
xmlns:wsdl='http://schemas.xmlsoap.org/wsdl/'
|
13
|
+
xmlns:tme='http://www.themindelectric.com/'>
|
14
|
+
<wsdl:message name='add0In'>
|
15
|
+
<wsdl:part name='x' type='xsd:float'/>
|
16
|
+
<wsdl:part name='y' type='xsd:float'/>
|
17
|
+
</wsdl:message>
|
18
|
+
<wsdl:message name='add0Out'>
|
19
|
+
<wsdl:part name='Result' type='xsd:float'/>
|
20
|
+
</wsdl:message>
|
21
|
+
<wsdl:message name='divide1In'>
|
22
|
+
<wsdl:part name='numerator' type='xsd:float'/>
|
23
|
+
<wsdl:part name='denominator' type='xsd:float'/>
|
24
|
+
</wsdl:message>
|
25
|
+
<wsdl:message name='divide1Out'>
|
26
|
+
<wsdl:part name='Result' type='xsd:float'/>
|
27
|
+
</wsdl:message>
|
28
|
+
<wsdl:message name='multiply2In'>
|
29
|
+
<wsdl:part name='x' type='xsd:float'/>
|
30
|
+
<wsdl:part name='y' type='xsd:float'/>
|
31
|
+
</wsdl:message>
|
32
|
+
<wsdl:message name='multiply2Out'>
|
33
|
+
<wsdl:part name='Result' type='xsd:float'/>
|
34
|
+
</wsdl:message>
|
35
|
+
<wsdl:message name='subtract3In'>
|
36
|
+
<wsdl:part name='x' type='xsd:float'/>
|
37
|
+
<wsdl:part name='y' type='xsd:float'/>
|
38
|
+
</wsdl:message>
|
39
|
+
<wsdl:message name='subtract3Out'>
|
40
|
+
<wsdl:part name='Result' type='xsd:float'/>
|
41
|
+
</wsdl:message>
|
42
|
+
<wsdl:portType name='ICalculator'>
|
43
|
+
<wsdl:operation name='add' parameterOrder='x y'>
|
44
|
+
<wsdl:input name='add0In' message='tns:add0In'/>
|
45
|
+
<wsdl:output name='add0Out' message='tns:add0Out'/>
|
46
|
+
</wsdl:operation>
|
47
|
+
<wsdl:operation name='divide' parameterOrder='numerator
|
48
|
+
denominator'>
|
49
|
+
<wsdl:input name='divide1In' message='tns:divide1In'/>
|
50
|
+
<wsdl:output name='divide1Out' message='tns:divide1Out'/>
|
51
|
+
</wsdl:operation>
|
52
|
+
<wsdl:operation name='multiply' parameterOrder='x y'>
|
53
|
+
<wsdl:input name='multiply2In' message='tns:multiply2In'/>
|
54
|
+
<wsdl:output name='multiply2Out'
|
55
|
+
message='tns:multiply2Out'/>
|
56
|
+
</wsdl:operation>
|
57
|
+
<wsdl:operation name='subtract' parameterOrder='x y'>
|
58
|
+
<wsdl:input name='subtract3In' message='tns:subtract3In'/>
|
59
|
+
<wsdl:output name='subtract3Out'
|
60
|
+
message='tns:subtract3Out'/>
|
61
|
+
</wsdl:operation>
|
62
|
+
</wsdl:portType>
|
63
|
+
<wsdl:binding name='ICalculator' type='tns:ICalculator'>
|
64
|
+
<soap:binding style='rpc'
|
65
|
+
transport='http://schemas.xmlsoap.org/soap/http'/>
|
66
|
+
<wsdl:operation name='add'>
|
67
|
+
<soap:operation soapAction='add' style='rpc'/>
|
68
|
+
<wsdl:input name='add0In'>
|
69
|
+
<soap:body use='encoded'
|
70
|
+
namespace='http://www.fred.com'
|
71
|
+
encodingStyle='http://schemas.xmlsoap.org/soap/encoding/'/>
|
72
|
+
</wsdl:input>
|
73
|
+
<wsdl:output name='add0Out'>
|
74
|
+
<soap:body use='encoded'
|
75
|
+
namespace='http://www.fred.com'
|
76
|
+
encodingStyle='http://schemas.xmlsoap.org/soap/encoding/'/>
|
77
|
+
</wsdl:output>
|
78
|
+
</wsdl:operation>
|
79
|
+
<wsdl:operation name='divide'>
|
80
|
+
<soap:operation soapAction='divide' style='rpc'/>
|
81
|
+
<wsdl:input name='divide1In'>
|
82
|
+
<soap:body use='encoded'
|
83
|
+
namespace='http://www.fred.com'
|
84
|
+
encodingStyle='http://schemas.xmlsoap.org/soap/encoding/'/>
|
85
|
+
</wsdl:input>
|
86
|
+
<wsdl:output name='divide1Out'>
|
87
|
+
<soap:body use='encoded'
|
88
|
+
namespace='http://www.fred.com'
|
89
|
+
encodingStyle='http://schemas.xmlsoap.org/soap/encoding/'/>
|
90
|
+
</wsdl:output>
|
91
|
+
</wsdl:operation>
|
92
|
+
<wsdl:operation name='multiply'>
|
93
|
+
<soap:operation soapAction='multiply' style='rpc'/>
|
94
|
+
<wsdl:input name='multiply2In'>
|
95
|
+
<soap:body use='encoded'
|
96
|
+
namespace='http://www.fred.com'
|
97
|
+
encodingStyle='http://schemas.xmlsoap.org/soap/encoding/'/>
|
98
|
+
</wsdl:input>
|
99
|
+
<wsdl:output name='multiply2Out'>
|
100
|
+
<soap:body use='encoded'
|
101
|
+
namespace='http://www.fred.com'
|
102
|
+
encodingStyle='http://schemas.xmlsoap.org/soap/encoding/'/>
|
103
|
+
</wsdl:output>
|
104
|
+
</wsdl:operation>
|
105
|
+
<wsdl:operation name='subtract'>
|
106
|
+
<soap:operation soapAction='subtract' style='rpc'/>
|
107
|
+
<wsdl:input name='subtract3In'>
|
108
|
+
<soap:body use='encoded'
|
109
|
+
namespace='http://www.fred.com'
|
110
|
+
encodingStyle='http://schemas.xmlsoap.org/soap/encoding/'/>
|
111
|
+
</wsdl:input>
|
112
|
+
<wsdl:output name='subtract3Out'>
|
113
|
+
<soap:body use='encoded'
|
114
|
+
namespace='http://www.fred.com'
|
115
|
+
encodingStyle='http://schemas.xmlsoap.org/soap/encoding/'/>
|
116
|
+
</wsdl:output>
|
117
|
+
</wsdl:operation>
|
118
|
+
</wsdl:binding>
|
119
|
+
<wsdl:service name='Calculator'>
|
120
|
+
<wsdl:documentation>calculator service</wsdl:documentation>
|
121
|
+
<wsdl:port name='ICalculator' binding='tns:ICalculator'>
|
122
|
+
<soap:address
|
123
|
+
location='http://ukulele:8080/calcapp/services/calculator'/>
|
124
|
+
</wsdl:port>
|
125
|
+
</wsdl:service>
|
126
|
+
</wsdl:definitions>
|
@@ -0,0 +1,54 @@
|
|
1
|
+
<?xml version="1.0" encoding="utf-8"?>
|
2
|
+
<definitions name="submit_service"
|
3
|
+
xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
|
4
|
+
xmlns:xsd="http://www.w3.org/2001/XMLSchema"
|
5
|
+
xmlns:tns="urn:example.com:document"
|
6
|
+
targetNamespace="urn:example.com:document"
|
7
|
+
xmlns="http://schemas.xmlsoap.org/wsdl/">
|
8
|
+
<types>
|
9
|
+
<xsd:schema targetNamespace="urn:example.com:document">
|
10
|
+
<xsd:element name="ruby">
|
11
|
+
<xsd:complexType>
|
12
|
+
<xsd:sequence>
|
13
|
+
<xsd:element minOccurs="1" maxOccurs="1" name="myversion" type="tns:myversion"/>
|
14
|
+
<xsd:element minOccurs="0" maxOccurs="1" name="date" type="xsd:dateTime"/>
|
15
|
+
</xsd:sequence>
|
16
|
+
</xsd:complexType>
|
17
|
+
</xsd:element>
|
18
|
+
|
19
|
+
<xsd:simpleType name="myversion">
|
20
|
+
<xsd:restriction base="xsd:string">
|
21
|
+
<xsd:enumeration value="1.6"/>
|
22
|
+
<xsd:enumeration value="1.8"/>
|
23
|
+
<xsd:enumeration value="1.9"/>
|
24
|
+
</xsd:restriction>
|
25
|
+
</xsd:simpleType>
|
26
|
+
</xsd:schema>
|
27
|
+
</types>
|
28
|
+
|
29
|
+
<message name="submit_msg">
|
30
|
+
<part name="parameters" element="tns:ruby"/>
|
31
|
+
</message>
|
32
|
+
|
33
|
+
<portType name="submit_port_type">
|
34
|
+
<operation name="submit">
|
35
|
+
<input message="tns:submit_msg"/>
|
36
|
+
<output message="tns:submit_msg"/>
|
37
|
+
</operation>
|
38
|
+
</portType>
|
39
|
+
|
40
|
+
<binding name="submit_binding" type="tns:submit_port_type">
|
41
|
+
<soap:binding transport="http://schemas.xmlsoap.org/soap/http" style="document"/>
|
42
|
+
<operation name="submit">
|
43
|
+
<soap:operation soapAction="urn:example.com:document#submit" style="document"/>
|
44
|
+
<input><soap:body use="literal"/></input>
|
45
|
+
<output><soap:body use="literal"/></output>
|
46
|
+
</operation>
|
47
|
+
</binding>
|
48
|
+
|
49
|
+
<service name="submit_service">
|
50
|
+
<port name="submit_port" binding="tns:submit_binding">
|
51
|
+
<soap:address location="http://localhost:10080"/>
|
52
|
+
</port>
|
53
|
+
</service>
|
54
|
+
</definitions>
|
@@ -0,0 +1,30 @@
|
|
1
|
+
# encoding: ASCII-8BIT
|
2
|
+
require 'xsd/qname'
|
3
|
+
|
4
|
+
# {urn:example.com:simpletype-rpc-type}version_struct
|
5
|
+
class Version_struct
|
6
|
+
@@schema_type = "version_struct"
|
7
|
+
@@schema_ns = "urn:example.com:simpletype-rpc-type"
|
8
|
+
@@schema_element = [
|
9
|
+
["myversion", ["SOAP::SOAPString", XSD::QName.new(nil, "myversion")]],
|
10
|
+
["msg", ["SOAP::SOAPString", XSD::QName.new(nil, "msg")]]
|
11
|
+
]
|
12
|
+
|
13
|
+
attr_accessor :myversion
|
14
|
+
attr_accessor :msg
|
15
|
+
|
16
|
+
def initialize(myversion = nil, msg = nil)
|
17
|
+
@myversion = myversion
|
18
|
+
@msg = msg
|
19
|
+
end
|
20
|
+
end
|
21
|
+
|
22
|
+
# {urn:example.com:simpletype-rpc-type}myversions
|
23
|
+
class Myversions < ::String
|
24
|
+
@@schema_type = "myversions"
|
25
|
+
@@schema_ns = "urn:example.com:simpletype-rpc-type"
|
26
|
+
|
27
|
+
C_16 = Myversions.new("1.6")
|
28
|
+
C_18 = Myversions.new("1.8")
|
29
|
+
C_19 = Myversions.new("1.9")
|
30
|
+
end
|
@@ -0,0 +1,63 @@
|
|
1
|
+
<?xml version="1.0" encoding="utf-8"?>
|
2
|
+
<definitions name="echo_version"
|
3
|
+
xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
|
4
|
+
xmlns:xsd="http://www.w3.org/2001/XMLSchema"
|
5
|
+
xmlns:tns="urn:example.com:simpletype-rpc"
|
6
|
+
xmlns:txd="urn:example.com:simpletype-rpc-type"
|
7
|
+
targetNamespace="urn:example.com:simpletype-rpc"
|
8
|
+
xmlns="http://schemas.xmlsoap.org/wsdl/">
|
9
|
+
<types>
|
10
|
+
<xsd:schema targetNamespace="urn:example.com:simpletype-rpc-type">
|
11
|
+
<xsd:complexType name="version_struct">
|
12
|
+
<xsd:all>
|
13
|
+
<xsd:element name="myversion" type="txd:myversions" />
|
14
|
+
<xsd:element name="msg" type="xsd:string" />
|
15
|
+
</xsd:all>
|
16
|
+
</xsd:complexType>
|
17
|
+
|
18
|
+
<xsd:simpleType name="myversions">
|
19
|
+
<xsd:restriction base="xsd:string">
|
20
|
+
<xsd:enumeration value="1.6"/>
|
21
|
+
<xsd:enumeration value="1.8"/>
|
22
|
+
<xsd:enumeration value="1.9"/>
|
23
|
+
</xsd:restriction>
|
24
|
+
</xsd:simpleType>
|
25
|
+
</xsd:schema>
|
26
|
+
</types>
|
27
|
+
|
28
|
+
<message name="msg_version">
|
29
|
+
<part name="myversion" type="txd:myversions"/>
|
30
|
+
</message>
|
31
|
+
|
32
|
+
<message name="msg_version_struct">
|
33
|
+
<part name="return" type="txd:version_struct"/>
|
34
|
+
</message>
|
35
|
+
|
36
|
+
<portType name="echo_version_port_type">
|
37
|
+
<operation name="echo_version">
|
38
|
+
<input message="tns:msg_version"/>
|
39
|
+
<output message="tns:msg_version_struct"/>
|
40
|
+
</operation>
|
41
|
+
</portType>
|
42
|
+
|
43
|
+
<binding name="echo_version_binding" type="tns:echo_version_port_type">
|
44
|
+
<soap:binding transport="http://schemas.xmlsoap.org/soap/http" style="rpc"/>
|
45
|
+
<operation name="echo_version">
|
46
|
+
<soap:operation soapAction="urn:example.com:simpletype-rpc"/>
|
47
|
+
<input>
|
48
|
+
<soap:body use="encoded" namespace="urn:example.com:simpletype-rpc"
|
49
|
+
encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
|
50
|
+
</input>
|
51
|
+
<output>
|
52
|
+
<soap:body use="encoded" namespace="urn:example.com:simpletype-rpc"
|
53
|
+
encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
|
54
|
+
</output>
|
55
|
+
</operation>
|
56
|
+
</binding>
|
57
|
+
|
58
|
+
<service name="echo_version_service">
|
59
|
+
<port name="echo_version_port" binding="tns:echo_version_binding">
|
60
|
+
<soap:address location="http://localhost:10080"/>
|
61
|
+
</port>
|
62
|
+
</service>
|
63
|
+
</definitions>
|
@@ -0,0 +1,72 @@
|
|
1
|
+
# encoding: ASCII-8BIT
|
2
|
+
require 'helper'
|
3
|
+
require 'testutil'
|
4
|
+
require 'soap/rpc/httpserver'
|
5
|
+
require 'soap/wsdlDriver'
|
6
|
+
|
7
|
+
|
8
|
+
module SOAP
|
9
|
+
|
10
|
+
|
11
|
+
class TestCalc < Test::Unit::TestCase
|
12
|
+
class Server < ::SOAP::RPC::HTTPServer
|
13
|
+
def on_init
|
14
|
+
add_method(self, 'add', 'x', 'y')
|
15
|
+
end
|
16
|
+
|
17
|
+
def add(x, y)
|
18
|
+
x.to_f + y.to_f
|
19
|
+
end
|
20
|
+
end
|
21
|
+
|
22
|
+
DIR = File.dirname(File.expand_path(__FILE__))
|
23
|
+
Port = 17171
|
24
|
+
|
25
|
+
def setup
|
26
|
+
setup_server
|
27
|
+
setup_client
|
28
|
+
end
|
29
|
+
|
30
|
+
def setup_server
|
31
|
+
@server = Server.new(
|
32
|
+
:BindAddress => "0.0.0.0",
|
33
|
+
:Port => Port,
|
34
|
+
:AccessLog => [],
|
35
|
+
:SOAPDefaultNamespace => 'http://www.fred.com'
|
36
|
+
)
|
37
|
+
@server.level = Logger::Severity::ERROR
|
38
|
+
@server_thread = TestUtil.start_server_thread(@server)
|
39
|
+
end
|
40
|
+
|
41
|
+
def setup_client
|
42
|
+
@wsdl = File.join(DIR, 'calc.wsdl')
|
43
|
+
end
|
44
|
+
|
45
|
+
def teardown
|
46
|
+
teardown_server if @server
|
47
|
+
teardown_client if @client
|
48
|
+
end
|
49
|
+
|
50
|
+
def teardown_server
|
51
|
+
@server.shutdown
|
52
|
+
@server_thread.kill
|
53
|
+
@server_thread.join
|
54
|
+
end
|
55
|
+
|
56
|
+
def teardown_client
|
57
|
+
@client.reset_stream if @client
|
58
|
+
end
|
59
|
+
|
60
|
+
def test_rpc_driver
|
61
|
+
@client = ::SOAP::WSDLDriverFactory.new(@wsdl).create_rpc_driver
|
62
|
+
@client.wiredump_dev = STDOUT if $DEBUG
|
63
|
+
@client.endpoint_url = "http://localhost:#{Port}/"
|
64
|
+
@client.generate_explicit_type = true
|
65
|
+
assert_equal(0.3, @client.add(0.1, 0.2))
|
66
|
+
@client.generate_explicit_type = false
|
67
|
+
assert_equal(0.3, @client.add(0.1, 0.2))
|
68
|
+
end
|
69
|
+
end
|
70
|
+
|
71
|
+
|
72
|
+
end
|
@@ -0,0 +1,72 @@
|
|
1
|
+
# encoding: ASCII-8BIT
|
2
|
+
require 'helper'
|
3
|
+
require 'testutil'
|
4
|
+
require 'soap/rpc/standaloneServer'
|
5
|
+
require 'soap/wsdlDriver'
|
6
|
+
|
7
|
+
|
8
|
+
module SOAP
|
9
|
+
|
10
|
+
|
11
|
+
class TestDocument < Test::Unit::TestCase
|
12
|
+
Namespace = 'urn:example.com:document'
|
13
|
+
|
14
|
+
class Server < ::SOAP::RPC::StandaloneServer
|
15
|
+
def on_init
|
16
|
+
add_document_method(self, 'urn:example.com:document#submit', 'submit', XSD::QName.new(Namespace, 'ruby'), XSD::QName.new(Namespace, 'ruby'))
|
17
|
+
end
|
18
|
+
|
19
|
+
def submit(ruby)
|
20
|
+
ruby
|
21
|
+
end
|
22
|
+
end
|
23
|
+
|
24
|
+
DIR = File.dirname(File.expand_path(__FILE__))
|
25
|
+
|
26
|
+
Port = 17171
|
27
|
+
|
28
|
+
def setup
|
29
|
+
setup_server
|
30
|
+
setup_client
|
31
|
+
end
|
32
|
+
|
33
|
+
def setup_server
|
34
|
+
@server = Server.new('Test', Namespace, '0.0.0.0', Port)
|
35
|
+
@server.level = Logger::Severity::ERROR
|
36
|
+
@server_thread = TestUtil.start_server_thread(@server)
|
37
|
+
end
|
38
|
+
|
39
|
+
def setup_client
|
40
|
+
wsdl = File.join(DIR, 'document.wsdl')
|
41
|
+
@client = ::SOAP::WSDLDriverFactory.new(wsdl).create_rpc_driver
|
42
|
+
@client.endpoint_url = "http://localhost:#{Port}/"
|
43
|
+
@client.wiredump_dev = STDOUT if $DEBUG
|
44
|
+
end
|
45
|
+
|
46
|
+
def teardown
|
47
|
+
teardown_server if @server
|
48
|
+
teardown_client if @client
|
49
|
+
end
|
50
|
+
|
51
|
+
def teardown_server
|
52
|
+
@server.shutdown
|
53
|
+
@server_thread.kill
|
54
|
+
@server_thread.join
|
55
|
+
end
|
56
|
+
|
57
|
+
def teardown_client
|
58
|
+
@client.reset_stream
|
59
|
+
end
|
60
|
+
|
61
|
+
def test_document
|
62
|
+
msg = {'myversion' => "1.9", 'date' => "2004-01-01T00:00:00Z"}
|
63
|
+
reply_msg = @client.submit(msg)
|
64
|
+
assert_equal('1.9', reply_msg.myversion)
|
65
|
+
assert_equal('1.9', reply_msg['myversion'])
|
66
|
+
assert_equal('2004-01-01T00:00:00Z', reply_msg.date)
|
67
|
+
assert_equal('2004-01-01T00:00:00Z', reply_msg['date'])
|
68
|
+
end
|
69
|
+
end
|
70
|
+
|
71
|
+
|
72
|
+
end
|
@@ -0,0 +1,82 @@
|
|
1
|
+
# encoding: ASCII-8BIT
|
2
|
+
require 'helper'
|
3
|
+
require 'testutil'
|
4
|
+
require 'soap/rpc/httpserver'
|
5
|
+
require 'soap/wsdlDriver'
|
6
|
+
|
7
|
+
|
8
|
+
|
9
|
+
module SOAP
|
10
|
+
|
11
|
+
|
12
|
+
class TestSimpleType < Test::Unit::TestCase
|
13
|
+
class Server < ::SOAP::RPC::HTTPServer
|
14
|
+
def on_init
|
15
|
+
add_method(self, 'echo_version', 'version')
|
16
|
+
end
|
17
|
+
|
18
|
+
def echo_version(version)
|
19
|
+
# "2.0" is out of range.
|
20
|
+
Version_struct.new(version || "2.0", 'checked')
|
21
|
+
end
|
22
|
+
end
|
23
|
+
|
24
|
+
DIR = File.dirname(File.expand_path(__FILE__))
|
25
|
+
require File.join(DIR, 'echo_version')
|
26
|
+
|
27
|
+
Port = 17171
|
28
|
+
|
29
|
+
def setup
|
30
|
+
setup_server
|
31
|
+
setup_client
|
32
|
+
end
|
33
|
+
|
34
|
+
def setup_server
|
35
|
+
@server = Server.new(
|
36
|
+
:BindAddress => "0.0.0.0",
|
37
|
+
:Port => Port,
|
38
|
+
:AccessLog => [],
|
39
|
+
:SOAPDefaultNamespace => "urn:example.com:simpletype-rpc"
|
40
|
+
)
|
41
|
+
@server.level = Logger::Severity::ERROR
|
42
|
+
@server_thread = TestUtil.start_server_thread(@server)
|
43
|
+
end
|
44
|
+
|
45
|
+
def setup_client
|
46
|
+
wsdl = File.join(DIR, 'simpletype.wsdl')
|
47
|
+
@client = ::SOAP::WSDLDriverFactory.new(wsdl).create_rpc_driver
|
48
|
+
@client.wiredump_dev = STDOUT if $DEBUG
|
49
|
+
@client.endpoint_url = "http://localhost:#{Port}/"
|
50
|
+
@client.generate_explicit_type = false
|
51
|
+
end
|
52
|
+
|
53
|
+
def teardown
|
54
|
+
teardown_server if @server
|
55
|
+
teardown_client if @client
|
56
|
+
end
|
57
|
+
|
58
|
+
def teardown_server
|
59
|
+
@server.shutdown
|
60
|
+
@server_thread.kill
|
61
|
+
@server_thread.join
|
62
|
+
end
|
63
|
+
|
64
|
+
def teardown_client
|
65
|
+
@client.reset_stream
|
66
|
+
end
|
67
|
+
|
68
|
+
def test_ping
|
69
|
+
result = @client.echo_version("1.9")
|
70
|
+
assert_equal("1.9", result.myversion)
|
71
|
+
assert_equal("checked", result.msg)
|
72
|
+
assert_raise(XSD::ValueSpaceError) do
|
73
|
+
@client.echo_version("2.0")
|
74
|
+
end
|
75
|
+
assert_raise(XSD::ValueSpaceError) do
|
76
|
+
@client.echo_version(nil) # nil => "2.0" => out of range
|
77
|
+
end
|
78
|
+
end
|
79
|
+
end
|
80
|
+
|
81
|
+
|
82
|
+
end
|
data/test/testutil.rb
ADDED
@@ -0,0 +1,55 @@
|
|
1
|
+
# encoding: ASCII-8BIT
|
2
|
+
module TestUtil
|
3
|
+
# MT-unsafe
|
4
|
+
def self.require(dir, *features)
|
5
|
+
begin
|
6
|
+
# avoid 'already initialized constant FizzBuzz' warning
|
7
|
+
silent do
|
8
|
+
$:.unshift(dir)
|
9
|
+
features.each do |feature|
|
10
|
+
Kernel.require feature
|
11
|
+
end
|
12
|
+
$:.shift
|
13
|
+
end
|
14
|
+
ensure
|
15
|
+
features.each do |feature|
|
16
|
+
$".delete(feature)
|
17
|
+
end
|
18
|
+
end
|
19
|
+
end
|
20
|
+
|
21
|
+
# MT-unsafe
|
22
|
+
def self.silent
|
23
|
+
if $DEBUG
|
24
|
+
yield
|
25
|
+
else
|
26
|
+
back = $VERBOSE
|
27
|
+
$VERBOSE = nil
|
28
|
+
begin
|
29
|
+
yield
|
30
|
+
ensure
|
31
|
+
$VERBOSE = back
|
32
|
+
end
|
33
|
+
end
|
34
|
+
end
|
35
|
+
|
36
|
+
def self.filecompare(expectedfile, actualfile)
|
37
|
+
expected = loadfile(expectedfile)
|
38
|
+
actual = loadfile(actualfile)
|
39
|
+
if expected != actual
|
40
|
+
raise "#{File.basename(actualfile)} is different from #{File.basename(expectedfile)}"
|
41
|
+
end
|
42
|
+
end
|
43
|
+
|
44
|
+
def self.loadfile(file)
|
45
|
+
File.open(file) { |f| f.read }
|
46
|
+
end
|
47
|
+
|
48
|
+
def self.start_server_thread(server)
|
49
|
+
t = Thread.new {
|
50
|
+
Thread.current.abort_on_exception = true
|
51
|
+
server.start
|
52
|
+
}
|
53
|
+
t
|
54
|
+
end
|
55
|
+
end
|