soap4r-ruby1.9 1.0.0
Sign up to get free protection for your applications and to get access to all the features.
- data/COPYING +7 -0
- data/GPL +340 -0
- data/Gemfile +13 -0
- data/Gemfile.lock +20 -0
- data/README.rdoc +35 -0
- data/RELEASE_en.html +1900 -0
- data/RUBYS +56 -0
- data/Rakefile +53 -0
- data/VERSION +1 -0
- data/bin/wsdl2ruby.rb +137 -0
- data/bin/xsd2ruby.rb +90 -0
- data/lib/soap/attachment.rb +108 -0
- data/lib/soap/attrproxy.rb +34 -0
- data/lib/soap/baseData.rb +1094 -0
- data/lib/soap/element.rb +277 -0
- data/lib/soap/encodingstyle/aspDotNetHandler.rb +207 -0
- data/lib/soap/encodingstyle/handler.rb +120 -0
- data/lib/soap/encodingstyle/literalHandler.rb +195 -0
- data/lib/soap/encodingstyle/soapHandler.rb +559 -0
- data/lib/soap/filter.rb +13 -0
- data/lib/soap/filter/filterchain.rb +51 -0
- data/lib/soap/filter/handler.rb +31 -0
- data/lib/soap/filter/streamhandler.rb +29 -0
- data/lib/soap/generator.rb +299 -0
- data/lib/soap/header/handler.rb +61 -0
- data/lib/soap/header/handlerset.rb +70 -0
- data/lib/soap/header/mappinghandler.rb +47 -0
- data/lib/soap/header/simplehandler.rb +44 -0
- data/lib/soap/httpconfigloader.rb +139 -0
- data/lib/soap/mapping.rb +12 -0
- data/lib/soap/mapping/encodedregistry.rb +537 -0
- data/lib/soap/mapping/factory.rb +388 -0
- data/lib/soap/mapping/literalregistry.rb +391 -0
- data/lib/soap/mapping/mapping.rb +577 -0
- data/lib/soap/mapping/registry.rb +295 -0
- data/lib/soap/mapping/rubytypeFactory.rb +446 -0
- data/lib/soap/mapping/schemadefinition.rb +170 -0
- data/lib/soap/mapping/typeMap.rb +105 -0
- data/lib/soap/mapping/wsdlencodedregistry.rb +211 -0
- data/lib/soap/mapping/wsdlliteralregistry.rb +248 -0
- data/lib/soap/marshal.rb +59 -0
- data/lib/soap/mimemessage.rb +241 -0
- data/lib/soap/nestedexception.rb +42 -0
- data/lib/soap/netHttpClient.rb +241 -0
- data/lib/soap/ns.rb +34 -0
- data/lib/soap/parser.rb +252 -0
- data/lib/soap/processor.rb +66 -0
- data/lib/soap/property.rb +333 -0
- data/lib/soap/proxy.rb +14 -0
- data/lib/soap/rpc/cgistub.rb +247 -0
- data/lib/soap/rpc/driver.rb +221 -0
- data/lib/soap/rpc/element.rb +374 -0
- data/lib/soap/rpc/element.rb.orig +374 -0
- data/lib/soap/rpc/httpserver.rb +142 -0
- data/lib/soap/rpc/methodDef.rb +68 -0
- data/lib/soap/rpc/proxy.rb +572 -0
- data/lib/soap/rpc/router.rb +662 -0
- data/lib/soap/rpc/rpc.rb +25 -0
- data/lib/soap/rpc/soaplet.rb +200 -0
- data/lib/soap/rpc/standaloneServer.rb +43 -0
- data/lib/soap/ruby18ext.rb +13 -0
- data/lib/soap/soap.rb +151 -0
- data/lib/soap/streamHandler.rb +301 -0
- data/lib/soap/wsdlDriver.rb +164 -0
- data/lib/wsdl/binding.rb +65 -0
- data/lib/wsdl/data.rb +64 -0
- data/lib/wsdl/definitions.rb +236 -0
- data/lib/wsdl/documentation.rb +32 -0
- data/lib/wsdl/import.rb +80 -0
- data/lib/wsdl/importer.rb +38 -0
- data/lib/wsdl/info.rb +50 -0
- data/lib/wsdl/message.rb +54 -0
- data/lib/wsdl/operation.rb +151 -0
- data/lib/wsdl/operationBinding.rb +240 -0
- data/lib/wsdl/param.rb +93 -0
- data/lib/wsdl/parser.rb +164 -0
- data/lib/wsdl/part.rb +52 -0
- data/lib/wsdl/port.rb +66 -0
- data/lib/wsdl/portType.rb +75 -0
- data/lib/wsdl/service.rb +61 -0
- data/lib/wsdl/soap/address.rb +40 -0
- data/lib/wsdl/soap/binding.rb +49 -0
- data/lib/wsdl/soap/body.rb +58 -0
- data/lib/wsdl/soap/cgiStubCreator.rb +92 -0
- data/lib/wsdl/soap/classDefCreator.rb +433 -0
- data/lib/wsdl/soap/classDefCreatorSupport.rb +240 -0
- data/lib/wsdl/soap/classNameCreator.rb +54 -0
- data/lib/wsdl/soap/clientSkeltonCreator.rb +104 -0
- data/lib/wsdl/soap/complexType.rb +173 -0
- data/lib/wsdl/soap/data.rb +42 -0
- data/lib/wsdl/soap/definitions.rb +200 -0
- data/lib/wsdl/soap/driverCreator.rb +118 -0
- data/lib/wsdl/soap/element.rb +33 -0
- data/lib/wsdl/soap/encodedMappingRegistryCreator.rb +73 -0
- data/lib/wsdl/soap/fault.rb +56 -0
- data/lib/wsdl/soap/header.rb +86 -0
- data/lib/wsdl/soap/headerfault.rb +56 -0
- data/lib/wsdl/soap/literalMappingRegistryCreator.rb +115 -0
- data/lib/wsdl/soap/mappingRegistryCreator.rb +58 -0
- data/lib/wsdl/soap/mappingRegistryCreatorSupport.rb +376 -0
- data/lib/wsdl/soap/methodDefCreator.rb +199 -0
- data/lib/wsdl/soap/operation.rb +112 -0
- data/lib/wsdl/soap/servantSkeltonCreator.rb +89 -0
- data/lib/wsdl/soap/servletStubCreator.rb +104 -0
- data/lib/wsdl/soap/standaloneServerStubCreator.rb +100 -0
- data/lib/wsdl/soap/wsdl2ruby.rb +217 -0
- data/lib/wsdl/types.rb +44 -0
- data/lib/wsdl/wsdl.rb +24 -0
- data/lib/wsdl/xmlSchema/all.rb +24 -0
- data/lib/wsdl/xmlSchema/annotation.rb +34 -0
- data/lib/wsdl/xmlSchema/any.rb +61 -0
- data/lib/wsdl/xmlSchema/anyAttribute.rb +48 -0
- data/lib/wsdl/xmlSchema/attribute.rb +104 -0
- data/lib/wsdl/xmlSchema/attributeGroup.rb +68 -0
- data/lib/wsdl/xmlSchema/choice.rb +58 -0
- data/lib/wsdl/xmlSchema/complexContent.rb +97 -0
- data/lib/wsdl/xmlSchema/complexExtension.rb +119 -0
- data/lib/wsdl/xmlSchema/complexRestriction.rb +104 -0
- data/lib/wsdl/xmlSchema/complexType.rb +193 -0
- data/lib/wsdl/xmlSchema/content.rb +95 -0
- data/lib/wsdl/xmlSchema/data.rb +116 -0
- data/lib/wsdl/xmlSchema/element.rb +153 -0
- data/lib/wsdl/xmlSchema/enumeration.rb +36 -0
- data/lib/wsdl/xmlSchema/fractiondigits.rb +37 -0
- data/lib/wsdl/xmlSchema/group.rb +100 -0
- data/lib/wsdl/xmlSchema/import.rb +53 -0
- data/lib/wsdl/xmlSchema/importHandler.rb +45 -0
- data/lib/wsdl/xmlSchema/importer.rb +102 -0
- data/lib/wsdl/xmlSchema/include.rb +48 -0
- data/lib/wsdl/xmlSchema/length.rb +37 -0
- data/lib/wsdl/xmlSchema/list.rb +48 -0
- data/lib/wsdl/xmlSchema/maxexclusive.rb +37 -0
- data/lib/wsdl/xmlSchema/maxinclusive.rb +37 -0
- data/lib/wsdl/xmlSchema/maxlength.rb +37 -0
- data/lib/wsdl/xmlSchema/minexclusive.rb +37 -0
- data/lib/wsdl/xmlSchema/mininclusive.rb +37 -0
- data/lib/wsdl/xmlSchema/minlength.rb +37 -0
- data/lib/wsdl/xmlSchema/parser.rb +167 -0
- data/lib/wsdl/xmlSchema/pattern.rb +36 -0
- data/lib/wsdl/xmlSchema/ref.rb +33 -0
- data/lib/wsdl/xmlSchema/schema.rb +178 -0
- data/lib/wsdl/xmlSchema/sequence.rb +54 -0
- data/lib/wsdl/xmlSchema/simpleContent.rb +69 -0
- data/lib/wsdl/xmlSchema/simpleExtension.rb +62 -0
- data/lib/wsdl/xmlSchema/simpleRestriction.rb +132 -0
- data/lib/wsdl/xmlSchema/simpleType.rb +87 -0
- data/lib/wsdl/xmlSchema/totaldigits.rb +37 -0
- data/lib/wsdl/xmlSchema/union.rb +35 -0
- data/lib/wsdl/xmlSchema/unique.rb +34 -0
- data/lib/wsdl/xmlSchema/whitespace.rb +37 -0
- data/lib/wsdl/xmlSchema/xsd2ruby.rb +174 -0
- data/lib/xsd/charset.rb +188 -0
- data/lib/xsd/codegen.rb +12 -0
- data/lib/xsd/codegen/classdef.rb +208 -0
- data/lib/xsd/codegen/commentdef.rb +34 -0
- data/lib/xsd/codegen/gensupport.rb +273 -0
- data/lib/xsd/codegen/methoddef.rb +70 -0
- data/lib/xsd/codegen/moduledef.rb +208 -0
- data/lib/xsd/datatypes.rb +1466 -0
- data/lib/xsd/datatypes1999.rb +20 -0
- data/lib/xsd/iconvcharset.rb +33 -0
- data/lib/xsd/mapping.rb +68 -0
- data/lib/xsd/namedelements.rb +132 -0
- data/lib/xsd/ns.rb +182 -0
- data/lib/xsd/qname.rb +79 -0
- data/lib/xsd/xmlparser.rb +82 -0
- data/lib/xsd/xmlparser.rb.orig +76 -0
- data/lib/xsd/xmlparser/libxmlparser.rb +119 -0
- data/lib/xsd/xmlparser/parser.rb +100 -0
- data/lib/xsd/xmlparser/rexmlparser.rb +58 -0
- data/lib/xsd/xmlparser/xmlparser.rb +50 -0
- data/lib/xsd/xmlparser/xmlscanner.rb +149 -0
- data/rubyStyle.css +104 -0
- data/sample/attachment/complexmime/EdmService.rb +124 -0
- data/sample/attachment/complexmime/README.txt +3 -0
- data/sample/attachment/complexmime/client.rb +57 -0
- data/sample/attachment/complexmime/drift.cdf +1 -0
- data/sample/attachment/complexmime/plaatje.png +1 -0
- data/sample/attachment/complexmime/server.rb +68 -0
- data/sample/attachment/swa/client.rb +13 -0
- data/sample/attachment/swa/server.rb +23 -0
- data/sample/basic/apacheClient.rb +92 -0
- data/sample/basic/babelfish.rb +16 -0
- data/sample/basic/calc/calc.rb +17 -0
- data/sample/basic/calc/calc2.rb +29 -0
- data/sample/basic/calc/client.rb +26 -0
- data/sample/basic/calc/client2.rb +29 -0
- data/sample/basic/calc/httpd.rb +20 -0
- data/sample/basic/calc/samplehttpd.conf +2 -0
- data/sample/basic/calc/server.cgi +15 -0
- data/sample/basic/calc/server.fcgi +22 -0
- data/sample/basic/calc/server.rb +21 -0
- data/sample/basic/calc/server2.rb +24 -0
- data/sample/basic/exchange/client.rb +19 -0
- data/sample/basic/exchange/exchange.rb +17 -0
- data/sample/basic/exchange/httpd.rb +20 -0
- data/sample/basic/exchange/samplehttpd.conf +2 -0
- data/sample/basic/exchange/server.cgi +14 -0
- data/sample/basic/exchange/server.rb +20 -0
- data/sample/basic/flickr.rb +26 -0
- data/sample/basic/helloworld/client.rb +6 -0
- data/sample/basic/helloworld/server.rb +20 -0
- data/sample/basic/sampleStruct/client.rb +16 -0
- data/sample/basic/sampleStruct/httpd.rb +20 -0
- data/sample/basic/sampleStruct/iSampleStruct.rb +22 -0
- data/sample/basic/sampleStruct/sampleStruct.rb +13 -0
- data/sample/basic/sampleStruct/samplehttpd.conf +2 -0
- data/sample/basic/sampleStruct/server.cgi +14 -0
- data/sample/basic/sampleStruct/server.rb +20 -0
- data/sample/basic/whois.rb +14 -0
- data/sample/basic/wsdl_helloworld/README +15 -0
- data/sample/basic/wsdl_helloworld/client/default.rb +1 -0
- data/sample/basic/wsdl_helloworld/client/defaultDriver.rb +47 -0
- data/sample/basic/wsdl_helloworld/client/hws.wsdl +46 -0
- data/sample/basic/wsdl_helloworld/client/hwsClient.rb +22 -0
- data/sample/basic/wsdl_helloworld/server/hw_s.rb +25 -0
- data/sample/basic/wsdl_helloworld/server/hws.wsdl +46 -0
- data/sample/basic/yahooNewsSearch.rb +36 -0
- data/sample/howto/as_xml/client.rb +22 -0
- data/sample/howto/as_xml/server.rb +22 -0
- data/sample/howto/base64/client.rb +17 -0
- data/sample/howto/base64/server.rb +30 -0
- data/sample/howto/custom_ns/client.rb +37 -0
- data/sample/howto/custom_ns/server.rb +42 -0
- data/sample/howto/documentliteral/README.txt +19 -0
- data/sample/howto/documentliteral/client.rb +11 -0
- data/sample/howto/documentliteral/echo.wsdl +66 -0
- data/sample/howto/documentliteral/servant.rb +11 -0
- data/sample/howto/filter/client.rb +42 -0
- data/sample/howto/filter/server.rb +67 -0
- data/sample/howto/scopesample/client.rb +34 -0
- data/sample/howto/scopesample/httpd.rb +22 -0
- data/sample/howto/scopesample/samplehttpd.conf +2 -0
- data/sample/howto/scopesample/servant.rb +18 -0
- data/sample/howto/scopesample/server.cgi +29 -0
- data/sample/howto/scopesample/server.rb +20 -0
- data/sample/howto/styleuse/client.rb +21 -0
- data/sample/howto/styleuse/server.rb +86 -0
- data/sample/howto/wsdl_fault/README.txt +11 -0
- data/sample/howto/wsdl_fault/fault/AddClient.rb +24 -0
- data/sample/howto/wsdl_fault/fault/AddServer.rb +15 -0
- data/sample/howto/wsdl_fault/fault/AddServiceImpl.rb +18 -0
- data/sample/howto/wsdl_fault/fault/fault.wsdl +79 -0
- data/sample/howto/wsdl_fault/multifault/AddClient.rb +28 -0
- data/sample/howto/wsdl_fault/multifault/AddServer.rb +15 -0
- data/sample/howto/wsdl_fault/multifault/AddServiceImpl.rb +24 -0
- data/sample/howto/wsdl_fault/multifault/fault.wsdl +96 -0
- data/sample/howto/wsdl_hash/client.rb +11 -0
- data/sample/howto/wsdl_hash/hash.wsdl +69 -0
- data/sample/howto/wsdl_hash/server.rb +17 -0
- data/sample/marshal/customfactory.rb +97 -0
- data/sample/marshal/customregistry.rb +17 -0
- data/sample/marshal/digraph.rb +43 -0
- data/sample/marshal/enum/README.txt +6 -0
- data/sample/marshal/enum/enum.xsd +23 -0
- data/sample/marshal/enum/enumsample.rb +20 -0
- data/sample/marshal/enum/enumsample_mapper.rb +7 -0
- data/sample/marshal/enum/enumsample_mapping_registry.rb +23 -0
- data/sample/marshal/enum/marshal.rb +9 -0
- data/sample/payload/basicauth/client.rb +10 -0
- data/sample/payload/basicauth/htpasswd +2 -0
- data/sample/payload/basicauth/server.rb +43 -0
- data/sample/payload/cookies/calc.rb +52 -0
- data/sample/payload/cookies/client.rb +30 -0
- data/sample/payload/cookies/filterclient.rb +52 -0
- data/sample/payload/cookies/server.rb +24 -0
- data/sample/payload/gzipped/client.rb +8 -0
- data/sample/payload/gzipped/server.rb +21 -0
- data/sample/payload/ssl/files/README +1 -0
- data/sample/payload/ssl/files/ca.cert +23 -0
- data/sample/payload/ssl/files/client.cert +19 -0
- data/sample/payload/ssl/files/client.key +15 -0
- data/sample/payload/ssl/files/server.cert +19 -0
- data/sample/payload/ssl/files/server.key +15 -0
- data/sample/payload/ssl/files/sslclient.properties +5 -0
- data/sample/payload/ssl/files/sslclient_require_noserverauth.properties +2 -0
- data/sample/payload/ssl/files/sslclient_with_clientauth.properties +9 -0
- data/sample/payload/ssl/files/subca.cert +21 -0
- data/sample/payload/ssl/sslclient.rb +12 -0
- data/sample/payload/ssl/sslclient_require_noserverauth.rb +12 -0
- data/sample/payload/ssl/sslclient_with_clientauth.rb +12 -0
- data/sample/payload/ssl/sslserver.rb +49 -0
- data/sample/payload/ssl/sslserver_noauth.rb +45 -0
- data/sample/payload/ssl/sslserver_require_clientauth.rb +50 -0
- data/sample/showcase/soap/hippo5tq/hippo5tq.rb +41 -0
- data/sample/showcase/soap/hippo5tq/hippo5tq2.rb +99 -0
- data/sample/showcase/soap/hippo5tq/hippoClient.rb +106 -0
- data/sample/showcase/soap/icd/IICD.rb +17 -0
- data/sample/showcase/soap/icd/icd.rb +46 -0
- data/sample/showcase/soap/mssoap/README.txt +62 -0
- data/sample/showcase/soap/mssoap/client.vba +19 -0
- data/sample/showcase/soap/mssoap/stockQuoteService.cgi +44 -0
- data/sample/showcase/soap/mssoap/stockQuoteService.rb +9 -0
- data/sample/showcase/soap/mssoap/stockQuoteService.wsdl +47 -0
- data/sample/showcase/soap/mssoap/stockQuoteServiceClient.rb +26 -0
- data/sample/showcase/soap/mssoap/stockQuoteServiceClient.xls +0 -0
- data/sample/showcase/soap/mssoap/stockQuoteServicePortTypeDriver.rb +46 -0
- data/sample/showcase/soap/netDicV06/INetDicV06.rb +36 -0
- data/sample/showcase/soap/netDicV06/netDicV06.rb +16 -0
- data/sample/showcase/soap/raa/SOAP__Lite.pl +15 -0
- data/sample/showcase/soap/raa/pocketSOAP.js +33 -0
- data/sample/showcase/soap/raa2.4/raa.rb +332 -0
- data/sample/showcase/soap/raa2.4/raa.wsdl +644 -0
- data/sample/showcase/soap/raa2.4/raaDriver.rb +255 -0
- data/sample/showcase/soap/raa2.4/raaServiceClient.rb +354 -0
- data/sample/showcase/soap/raa2.4/sample.rb +115 -0
- data/sample/showcase/soap/rwiki/rwikiClient.rb +29 -0
- data/sample/showcase/soap/rwiki/rwikiServer.cgi +44 -0
- data/sample/showcase/soap/soapbox/ContactsDataSet.xml +37 -0
- data/sample/showcase/soap/soapbox/ExceptionDataSet.xml +23 -0
- data/sample/showcase/soap/soapbox/MessageDataSet.xml +8 -0
- data/sample/showcase/soap/soapbox/SoapBoxWebService.wsdl +1233 -0
- data/sample/showcase/soap/soapbox/SoapBoxWebServiceWithRawXML.wsdl +1226 -0
- data/sample/showcase/soap/soapbox/wsdlDriver.rb +23 -0
- data/sample/showcase/wsdl/PayPalSvc/client.rb +36 -0
- data/sample/showcase/wsdl/amazon/AmazonSearch.rb +3160 -0
- data/sample/showcase/wsdl/amazon/AmazonSearchDriver.rb +546 -0
- data/sample/showcase/wsdl/amazon/sampleClient.rb +37 -0
- data/sample/showcase/wsdl/amazon/wsdlDriver.rb +52 -0
- data/sample/showcase/wsdl/amazonEC/client.rb +13 -0
- data/sample/showcase/wsdl/eBaySvc/sampleclient.rb +60 -0
- data/sample/showcase/wsdl/googleAdwords/CampaignService.wsdl +785 -0
- data/sample/showcase/wsdl/googleAdwords/ca.pem +19 -0
- data/sample/showcase/wsdl/googleAdwords/client.rb +40 -0
- data/sample/showcase/wsdl/googleAdwords/soap/property +1 -0
- data/sample/showcase/wsdl/googleSearch/GoogleSearch.rb +97 -0
- data/sample/showcase/wsdl/googleSearch/GoogleSearchDriver.rb +102 -0
- data/sample/showcase/wsdl/googleSearch/README +6 -0
- data/sample/showcase/wsdl/googleSearch/httpd.rb +20 -0
- data/sample/showcase/wsdl/googleSearch/sampleClient.rb +56 -0
- data/sample/showcase/wsdl/googleSearch/samplehttpd.conf +2 -0
- data/sample/showcase/wsdl/googleSearch/sjissearch.sh +3 -0
- data/sample/showcase/wsdl/googleSearch/wsdlDriver.rb +29 -0
- data/sample/showcase/wsdl/noaa/README.txt +5 -0
- data/sample/showcase/wsdl/noaa/client.rb +44 -0
- data/sample/showcase/wsdl/noaa/default.rb +46 -0
- data/sample/showcase/wsdl/noaa/defaultDriver.rb +66 -0
- data/sample/showcase/wsdl/noaa/defaultMappingRegistry.rb +74 -0
- data/sample/showcase/wsdl/noaa/ndfdXMLClient.rb +43 -0
- data/sample/showcase/wsdl/raa2.4/raa.rb +134 -0
- data/sample/showcase/wsdl/raa2.4/raa.wsdl +644 -0
- data/sample/showcase/wsdl/raa2.4/wsdlDriver.rb +117 -0
- data/sample/showcase/wsdl/rnn/client.rb +59 -0
- data/sample/showcase/wsdl/rnn/post.rb +27 -0
- data/sample/showcase/wsdl/rnn/rnn-hash.wsdl +282 -0
- data/sample/showcase/wsdl/rnn/rnn.wsdl +310 -0
- data/sample/showcase/wsdl/rnn/submit.rb +63 -0
- data/sample/showcase/wsdl/salesforce/SforceServiceClient.rb +280 -0
- data/sample/showcase/wsdl/salesforce/ca.pem +35 -0
- data/sample/showcase/wsdl/salesforce/client.rb +156 -0
- data/sample/showcase/wsdl/salesforce/default.rb +1740 -0
- data/sample/showcase/wsdl/salesforce/defaultDriver.rb +165 -0
- data/sample/showcase/wsdl/salesforce/soap/property +1 -0
- data/sample/soapheader/authheader/authmgr.rb +41 -0
- data/sample/soapheader/authheader/client.rb +40 -0
- data/sample/soapheader/authheader/client2.rb +42 -0
- data/sample/soapheader/authheader/server.rb +73 -0
- data/sample/soapheader/authheader/server2.rb +83 -0
- data/sample/soapheader/soapext_basicauth/client.rb +25 -0
- data/sample/soapheader/soapext_basicauth/mms_MizGIS.rb +701 -0
- data/sample/soapheader/soapext_basicauth/mms_MizGIS.wsdl +1007 -0
- data/sample/soapheader/soapext_basicauth/mms_MizGISClient.rb +231 -0
- data/sample/soapheader/soapext_basicauth/mms_MizGISDriver.rb +210 -0
- data/sample/soapheader/soapext_basicauth/mms_MizGISMappingRegistry.rb +1232 -0
- data/setup.rb +1585 -0
- data/soap4r-ruby1.9.gemspec +907 -0
- data/test/16runner.rb +68 -0
- data/test/interopR2/README.txt +2 -0
- data/test/interopR2/SOAPBuildersInterop_R2.wsdl +461 -0
- data/test/interopR2/SOAPBuildersInterop_R2GrB.wsdl +19 -0
- data/test/interopR2/base.rb +288 -0
- data/test/interopR2/client.NetRemoting.rb +17 -0
- data/test/interopR2/client.rb +1234 -0
- data/test/interopR2/client4S4C.rb +15 -0
- data/test/interopR2/client4S4C2.rb +14 -0
- data/test/interopR2/clientASP.NET.rb +17 -0
- data/test/interopR2/clientApacheAxis.rb +16 -0
- data/test/interopR2/clientApacheSOAP.rb +17 -0
- data/test/interopR2/clientBEAWebLogic.rb +17 -0
- data/test/interopR2/clientBase.rb +1967 -0
- data/test/interopR2/clientCapeConnect.rb +18 -0
- data/test/interopR2/clientDelphi.rb +19 -0
- data/test/interopR2/clientEasySoap.rb +14 -0
- data/test/interopR2/clientFrontier.rb +25 -0
- data/test/interopR2/clientGLUE.rb +32 -0
- data/test/interopR2/clientHP.rb +13 -0
- data/test/interopR2/clientJAX-RPC.rb +19 -0
- data/test/interopR2/clientJSOAP.rb +14 -0
- data/test/interopR2/clientKafkaXSLT.rb +15 -0
- data/test/interopR2/clientMSSOAPToolkit2.0.rb +17 -0
- data/test/interopR2/clientMSSOAPToolkit3.0.rb +17 -0
- data/test/interopR2/clientNuSOAP.rb +19 -0
- data/test/interopR2/clientNuWave.rb +15 -0
- data/test/interopR2/clientOpenLink.rb +15 -0
- data/test/interopR2/clientOracle.rb +15 -0
- data/test/interopR2/clientPEAR.rb +18 -0
- data/test/interopR2/clientPhalanx.rb +18 -0
- data/test/interopR2/clientSIMACE.rb +18 -0
- data/test/interopR2/clientSOAP4R.rb +18 -0
- data/test/interopR2/clientSOAP__Lite.rb +14 -0
- data/test/interopR2/clientSQLData.rb +18 -0
- data/test/interopR2/clientSilverStream.rb +17 -0
- data/test/interopR2/clientSpray2001.rb +17 -0
- data/test/interopR2/clientSun.rb +19 -0
- data/test/interopR2/clientVWOpentalkSoap.rb +19 -0
- data/test/interopR2/clientWASP.rb +19 -0
- data/test/interopR2/clientWASPC.rb +18 -0
- data/test/interopR2/clientWebMethods.rb +15 -0
- data/test/interopR2/clientWhiteMesa.rb +28 -0
- data/test/interopR2/clientWingfoot.rb +15 -0
- data/test/interopR2/clientXMLBus.rb +19 -0
- data/test/interopR2/clientXMLRPC-EPI.rb +17 -0
- data/test/interopR2/clientXSOAP.rb +14 -0
- data/test/interopR2/clientZSI.rb +19 -0
- data/test/interopR2/clienteSOAP.rb +18 -0
- data/test/interopR2/clientgSOAP.rb +18 -0
- data/test/interopR2/clientkSOAP.rb +17 -0
- data/test/interopR2/iSimonReg.rb +112 -0
- data/test/interopR2/interopResultBase.rb +114 -0
- data/test/interopR2/interopService.rb +247 -0
- data/test/interopR2/rwikiInteropService.rb +105 -0
- data/test/interopR2/server.cgi +270 -0
- data/test/interopR2/server.rb +275 -0
- data/test/interopR2/simonReg.rb +123 -0
- data/test/interopR2/test.sh +49 -0
- data/test/interopR4/client.rb +112 -0
- data/test/results +4810 -0
- data/test/runner.rb +7 -0
- data/test/sm11/classDef.rb +156 -0
- data/test/sm11/client.rb +542 -0
- data/test/sm11/driver.rb +183 -0
- data/test/sm11/servant.rb +1067 -0
- data/test/sm11/server.rb +25 -0
- data/test/soap/asp.net/hello.wsdl +96 -0
- data/test/soap/asp.net/test_aspdotnet.rb +123 -0
- data/test/soap/auth/htdigest +2 -0
- data/test/soap/auth/htpasswd +2 -0
- data/test/soap/auth/test_basic.rb +117 -0
- data/test/soap/auth/test_digest.rb +118 -0
- data/test/soap/calc/calc.rb +17 -0
- data/test/soap/calc/calc2.rb +29 -0
- data/test/soap/calc/server.cgi +13 -0
- data/test/soap/calc/server.rb +17 -0
- data/test/soap/calc/server2.rb +20 -0
- data/test/soap/calc/test_calc.rb +51 -0
- data/test/soap/calc/test_calc2.rb +55 -0
- data/test/soap/calc/test_calc_cgi.rb +71 -0
- data/test/soap/case/test_mapping.rb +57 -0
- data/test/soap/fault/test_customfault.rb +60 -0
- data/test/soap/fault/test_fault.rb +46 -0
- data/test/soap/fault/test_soaparray.rb +35 -0
- data/test/soap/filter/test_filter.rb +146 -0
- data/test/soap/header/server.cgi +119 -0
- data/test/soap/header/session.pstoredb +0 -0
- data/test/soap/header/test_authheader.rb +240 -0
- data/test/soap/header/test_authheader_cgi.rb +121 -0
- data/test/soap/header/test_simplehandler.rb +116 -0
- data/test/soap/helloworld/hw_s.rb +16 -0
- data/test/soap/helloworld/test_helloworld.rb +43 -0
- data/test/soap/htpasswd +2 -0
- data/test/soap/literalArrayMapping/amazonEc.rb +4778 -0
- data/test/soap/literalArrayMapping/amazonEcDriver.rb +172 -0
- data/test/soap/literalArrayMapping/amazonresponse.xml +100 -0
- data/test/soap/literalArrayMapping/test_definedarray.rb +34 -0
- data/test/soap/marshal/marshaltestlib.rb +494 -0
- data/test/soap/marshal/test_digraph.rb +56 -0
- data/test/soap/marshal/test_marshal.rb +26 -0
- data/test/soap/marshal/test_struct.rb +47 -0
- data/test/soap/ssl/README +1 -0
- data/test/soap/ssl/ca.cert +23 -0
- data/test/soap/ssl/client.cert +19 -0
- data/test/soap/ssl/client.key +15 -0
- data/test/soap/ssl/server.cert +19 -0
- data/test/soap/ssl/server.key +15 -0
- data/test/soap/ssl/sslsvr.rb +57 -0
- data/test/soap/ssl/subca.cert +21 -0
- data/test/soap/ssl/test_ssl.rb +235 -0
- data/test/soap/struct/test_struct.rb +70 -0
- data/test/soap/styleuse/client.rb +20 -0
- data/test/soap/styleuse/server.rb +86 -0
- data/test/soap/swa/test_file.rb +75 -0
- data/test/soap/test_basetype.rb +1090 -0
- data/test/soap/test_cookie.rb +112 -0
- data/test/soap/test_custom_ns.rb +105 -0
- data/test/soap/test_custommap.rb +110 -0
- data/test/soap/test_empty.rb +105 -0
- data/test/soap/test_envelopenamespace.rb +85 -0
- data/test/soap/test_extraattr.rb +54 -0
- data/test/soap/test_generator.rb +27 -0
- data/test/soap/test_httpconfigloader.rb +71 -0
- data/test/soap/test_mapping.rb +131 -0
- data/test/soap/test_nestedexception.rb +56 -0
- data/test/soap/test_nil.rb +57 -0
- data/test/soap/test_no_indent.rb +88 -0
- data/test/soap/test_property.rb +428 -0
- data/test/soap/test_response_as_xml.rb +117 -0
- data/test/soap/test_soapelement.rb +138 -0
- data/test/soap/test_streamhandler.rb +270 -0
- data/test/soap/test_styleuse.rb +326 -0
- data/test/soap/wsdlDriver/README.txt +2 -0
- data/test/soap/wsdlDriver/calc.wsdl +126 -0
- data/test/soap/wsdlDriver/document.wsdl +54 -0
- data/test/soap/wsdlDriver/echo_version.rb +29 -0
- data/test/soap/wsdlDriver/simpletype.wsdl +63 -0
- data/test/soap/wsdlDriver/test_calc.rb +71 -0
- data/test/soap/wsdlDriver/test_document.rb +71 -0
- data/test/soap/wsdlDriver/test_simpletype.rb +80 -0
- data/test/testutil.rb +54 -0
- data/test/wsdl/abstract/abstract.wsdl +176 -0
- data/test/wsdl/abstract/test_abstract.rb +159 -0
- data/test/wsdl/anonymous/expectedClassDef.rb +128 -0
- data/test/wsdl/anonymous/expectedDriver.rb +59 -0
- data/test/wsdl/anonymous/expectedMappingRegistry.rb +176 -0
- data/test/wsdl/anonymous/lp.wsdl +147 -0
- data/test/wsdl/anonymous/test_anonymous.rb +130 -0
- data/test/wsdl/any/any.wsdl +114 -0
- data/test/wsdl/any/expectedDriver.rb +68 -0
- data/test/wsdl/any/expectedEcho.rb +57 -0
- data/test/wsdl/any/expectedMappingRegistry.rb +63 -0
- data/test/wsdl/any/expectedService.rb +69 -0
- data/test/wsdl/any/test_any.rb +193 -0
- data/test/wsdl/axisArray/axisArray.wsdl +87 -0
- data/test/wsdl/axisArray/test_axisarray.rb +124 -0
- data/test/wsdl/choice/choice.wsdl +167 -0
- data/test/wsdl/choice/test_choice.rb +310 -0
- data/test/wsdl/complexcontent/complexContent.wsdl +83 -0
- data/test/wsdl/complexcontent/test_echo.rb +90 -0
- data/test/wsdl/datetime/DatetimeService.rb +44 -0
- data/test/wsdl/datetime/datetime.rb +0 -0
- data/test/wsdl/datetime/datetime.wsdl +45 -0
- data/test/wsdl/datetime/datetimeServant.rb +22 -0
- data/test/wsdl/datetime/test_datetime.rb +86 -0
- data/test/wsdl/document/array/double.wsdl +161 -0
- data/test/wsdl/document/array/test_array.rb +201 -0
- data/test/wsdl/document/document.wsdl +76 -0
- data/test/wsdl/document/number.wsdl +54 -0
- data/test/wsdl/document/ping_nosoapaction.wsdl +66 -0
- data/test/wsdl/document/test_nosoapaction.rb +102 -0
- data/test/wsdl/document/test_number.rb +92 -0
- data/test/wsdl/document/test_rpc.rb +355 -0
- data/test/wsdl/emptycomplextype.wsdl +31 -0
- data/test/wsdl/fault/fault.wsdl +79 -0
- data/test/wsdl/fault/multifault.wsdl +96 -0
- data/test/wsdl/fault/test_fault.rb +119 -0
- data/test/wsdl/fault/test_multifault.rb +134 -0
- data/test/wsdl/group/expectedClassdef.rb +58 -0
- data/test/wsdl/group/expectedDriver.rb +51 -0
- data/test/wsdl/group/expectedMappingRegistry.rb +67 -0
- data/test/wsdl/group/group.wsdl +88 -0
- data/test/wsdl/group/test_rpc.rb +145 -0
- data/test/wsdl/list/list.wsdl +93 -0
- data/test/wsdl/list/test_list.rb +124 -0
- data/test/wsdl/map/map.wsdl +92 -0
- data/test/wsdl/map/map.xml +43 -0
- data/test/wsdl/map/test_map.rb +99 -0
- data/test/wsdl/marshal/Person.rb +1 -0
- data/test/wsdl/marshal/person.wsdl +21 -0
- data/test/wsdl/marshal/person_org.rb +23 -0
- data/test/wsdl/marshal/test_wsdlmarshal.rb +76 -0
- data/test/wsdl/multiplefault.wsdl +75 -0
- data/test/wsdl/oneway/oneway.wsdl +36 -0
- data/test/wsdl/oneway/test_oneway.rb +108 -0
- data/test/wsdl/overload/expectedClient.rb +37 -0
- data/test/wsdl/overload/expectedDriver.rb +61 -0
- data/test/wsdl/overload/expectedServant.rb +35 -0
- data/test/wsdl/overload/overload.wsdl +70 -0
- data/test/wsdl/overload/test_overload.rb +131 -0
- data/test/wsdl/qualified/lp.wsdl +47 -0
- data/test/wsdl/qualified/lp.xsd +26 -0
- data/test/wsdl/qualified/np.wsdl +51 -0
- data/test/wsdl/qualified/test_qualified.rb +137 -0
- data/test/wsdl/qualified/test_unqualified.rb +138 -0
- data/test/wsdl/raa/RAAService.rb +125 -0
- data/test/wsdl/raa/README.txt +8 -0
- data/test/wsdl/raa/expectedClassDef.rb +100 -0
- data/test/wsdl/raa/expectedDriver.rb +96 -0
- data/test/wsdl/raa/expectedMappingRegistry.rb +121 -0
- data/test/wsdl/raa/raa.wsdl +264 -0
- data/test/wsdl/raa/test_raa.rb +126 -0
- data/test/wsdl/ref/expectedDriver.rb +51 -0
- data/test/wsdl/ref/expectedProduct.rb +243 -0
- data/test/wsdl/ref/product.wsdl +147 -0
- data/test/wsdl/ref/test_ref.rb +268 -0
- data/test/wsdl/rpc/rpc.wsdl +109 -0
- data/test/wsdl/rpc/test-rpc-lit.wsdl +371 -0
- data/test/wsdl/rpc/test_rpc.rb +176 -0
- data/test/wsdl/rpc/test_rpc_lit.rb +470 -0
- data/test/wsdl/simplecontent/simplecontent.wsdl +84 -0
- data/test/wsdl/simplecontent/test_simplecontent.rb +102 -0
- data/test/wsdl/simpletype/rpc/echo_version.rb +1 -0
- data/test/wsdl/simpletype/rpc/echo_versionDriver.rb +10 -0
- data/test/wsdl/simpletype/rpc/echo_versionMappingRegistry.rb +4 -0
- data/test/wsdl/simpletype/rpc/echo_versionServant.rb +3 -0
- data/test/wsdl/simpletype/rpc/echo_version_service.rb +3 -0
- data/test/wsdl/simpletype/rpc/echo_version_serviceClient.rb +34 -0
- data/test/wsdl/simpletype/rpc/expectedClient.rb +34 -0
- data/test/wsdl/simpletype/rpc/expectedDriver.rb +58 -0
- data/test/wsdl/simpletype/rpc/expectedEchoVersion.rb +36 -0
- data/test/wsdl/simpletype/rpc/expectedMappingRegistry.rb +57 -0
- data/test/wsdl/simpletype/rpc/expectedServant.rb +32 -0
- data/test/wsdl/simpletype/rpc/expectedService.rb +55 -0
- data/test/wsdl/simpletype/rpc/rpc.wsdl +98 -0
- data/test/wsdl/simpletype/rpc/test_rpc.rb +52 -0
- data/test/wsdl/simpletype/simpletype.wsdl +114 -0
- data/test/wsdl/simpletype/test_simpletype.rb +92 -0
- data/test/wsdl/soap/soapbodyparts.wsdl +103 -0
- data/test/wsdl/soap/test_soapbodyparts.rb +79 -0
- data/test/wsdl/soap/wsdl2ruby/echo_version.rb +1 -0
- data/test/wsdl/soap/wsdl2ruby/echo_versionDriver.rb +10 -0
- data/test/wsdl/soap/wsdl2ruby/echo_versionMappingRegistry.rb +4 -0
- data/test/wsdl/soap/wsdl2ruby/echo_versionServant.rb +3 -0
- data/test/wsdl/soap/wsdl2ruby/echo_version_service.cgi +3 -0
- data/test/wsdl/soap/wsdl2ruby/echo_version_service.rb +7 -0
- data/test/wsdl/soap/wsdl2ruby/echo_version_serviceClient.rb +34 -0
- data/test/wsdl/soap/wsdl2ruby/expectedClassdef.rb +21 -0
- data/test/wsdl/soap/wsdl2ruby/expectedClient.rb +34 -0
- data/test/wsdl/soap/wsdl2ruby/expectedDriver.rb +58 -0
- data/test/wsdl/soap/wsdl2ruby/expectedMappingRegistry.rb +36 -0
- data/test/wsdl/soap/wsdl2ruby/expectedServant.rb +32 -0
- data/test/wsdl/soap/wsdl2ruby/expectedService.cgi +48 -0
- data/test/wsdl/soap/wsdl2ruby/expectedService.rb +55 -0
- data/test/wsdl/soap/wsdl2ruby/rpc.wsdl +80 -0
- data/test/wsdl/soap/wsdl2ruby/section/expectedClassdef.rb +37 -0
- data/test/wsdl/soap/wsdl2ruby/section/section.xsd +31 -0
- data/test/wsdl/soap/wsdl2ruby/section/test_section.rb +53 -0
- data/test/wsdl/soap/wsdl2ruby/soapenc/soapenc.wsdl +64 -0
- data/test/wsdl/soap/wsdl2ruby/soapenc/test_soapenc.rb +83 -0
- data/test/wsdl/soap/wsdl2ruby/test_wsdl2ruby.rb +102 -0
- data/test/wsdl/soaptype/soaptype.wsdl +61 -0
- data/test/wsdl/soaptype/test_soaptype.rb +178 -0
- data/test/wsdl/test_emptycomplextype.rb +21 -0
- data/test/wsdl/test_fault.rb +50 -0
- data/test/wsdl/test_multiplefault.rb +41 -0
- data/test/xsd/codegen/test_classdef.rb +244 -0
- data/test/xsd/noencoding.xml +4 -0
- data/test/xsd/test_noencoding.rb +32 -0
- data/test/xsd/test_ns.rb +41 -0
- data/test/xsd/test_xmlschemaparser.rb +22 -0
- data/test/xsd/test_xsd.rb +1638 -0
- data/test/xsd/xmllang.xml +43 -0
- data/test/xsd/xmlschema.xml +12 -0
- data/test/xsd/xsd2ruby/expected_mysample.rb +65 -0
- data/test/xsd/xsd2ruby/expected_mysample_mapper.rb +11 -0
- data/test/xsd/xsd2ruby/expected_mysample_mapping_registry.rb +51 -0
- data/test/xsd/xsd2ruby/section.xsd +49 -0
- data/test/xsd/xsd2ruby/test_xsd2ruby.rb +90 -0
- metadata +958 -0
@@ -0,0 +1,1007 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<definitions name="mms_MizGIS"
|
3
|
+
targetNamespace="urn:mms_MizGIS"
|
4
|
+
xmlns:tns="urn:mms_MizGIS"
|
5
|
+
xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
|
6
|
+
xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/"
|
7
|
+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
8
|
+
xmlns:xsd="http://www.w3.org/2001/XMLSchema"
|
9
|
+
xmlns:mms="urn:mms_MizGIS"
|
10
|
+
xmlns:SOAP="http://schemas.xmlsoap.org/wsdl/soap/"
|
11
|
+
xmlns:WSDL="http://schemas.xmlsoap.org/wsdl/"
|
12
|
+
xmlns="http://schemas.xmlsoap.org/wsdl/">
|
13
|
+
|
14
|
+
<types>
|
15
|
+
|
16
|
+
<schema targetNamespace="urn:mms_MizGIS"
|
17
|
+
xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
|
18
|
+
xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/"
|
19
|
+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
20
|
+
xmlns:xsd="http://www.w3.org/2001/XMLSchema"
|
21
|
+
xmlns:mms="urn:mms_MizGIS"
|
22
|
+
xmlns="http://www.w3.org/2001/XMLSchema"
|
23
|
+
elementFormDefault="unqualified"
|
24
|
+
attributeFormDefault="unqualified">
|
25
|
+
<import namespace="http://schemas.xmlsoap.org/soap/encoding/"/>
|
26
|
+
<simpleType name="ModeType">
|
27
|
+
<restriction base="xsd:string">
|
28
|
+
<enumeration value="rmONFOOT"/>
|
29
|
+
<enumeration value="rmCAR"/>
|
30
|
+
<enumeration value="rmPT"/>
|
31
|
+
</restriction>
|
32
|
+
</simpleType>
|
33
|
+
<simpleType name="VehicleType">
|
34
|
+
<restriction base="xsd:string">
|
35
|
+
<enumeration value="vtNULL"/>
|
36
|
+
<enumeration value="vtANY"/>
|
37
|
+
<enumeration value="vtCAR"/>
|
38
|
+
<enumeration value="vtRESIDENTIAL-VEHICLE"/>
|
39
|
+
<enumeration value="vtEMERGENCY-VEHICLE"/>
|
40
|
+
<enumeration value="vtTAXI"/>
|
41
|
+
<enumeration value="vtPUBLIC-BUS"/>
|
42
|
+
<enumeration value="vtDELIVERY-TRUCK"/>
|
43
|
+
<enumeration value="vtBICYCLE"/>
|
44
|
+
<enumeration value="vtPEDESTRIAN"/>
|
45
|
+
<enumeration value="vtBUS"/>
|
46
|
+
<enumeration value="vtTRAM"/>
|
47
|
+
<enumeration value="vtMETRO"/>
|
48
|
+
<enumeration value="vtTRAIN"/>
|
49
|
+
<enumeration value="vtAIRPLANE"/>
|
50
|
+
</restriction>
|
51
|
+
</simpleType>
|
52
|
+
<simpleType name="OptimizationType">
|
53
|
+
<restriction base="xsd:string">
|
54
|
+
<enumeration value="otSHORTEST"/>
|
55
|
+
<enumeration value="otFASTEST"/>
|
56
|
+
<enumeration value="otCHEAPEST"/>
|
57
|
+
</restriction>
|
58
|
+
</simpleType>
|
59
|
+
<simpleType name="DescriptionLevelType">
|
60
|
+
<restriction base="xsd:string">
|
61
|
+
<enumeration value="dlNONE"/>
|
62
|
+
<enumeration value="dlBRIEF"/>
|
63
|
+
<enumeration value="dlNORMAL"/>
|
64
|
+
</restriction>
|
65
|
+
</simpleType>
|
66
|
+
<simpleType name="StepActionType">
|
67
|
+
<restriction base="xsd:string">
|
68
|
+
<enumeration value="saNULL"/>
|
69
|
+
<enumeration value="saSTART"/>
|
70
|
+
<enumeration value="saARRIVE"/>
|
71
|
+
<enumeration value="saSTOP"/>
|
72
|
+
<enumeration value="saTURNLEFT"/>
|
73
|
+
<enumeration value="saTURNRIGHT"/>
|
74
|
+
<enumeration value="saCONTINUE"/>
|
75
|
+
<enumeration value="saONFOOTSTART"/>
|
76
|
+
<enumeration value="saONFOOTARRIVE"/>
|
77
|
+
<enumeration value="saMOTORWAYBEGIN"/>
|
78
|
+
<enumeration value="saMOTORWAYEND"/>
|
79
|
+
<enumeration value="saMOTORWAYENTER"/>
|
80
|
+
<enumeration value="saMOTORWAYLEAVE"/>
|
81
|
+
<enumeration value="saMOTORWAYCONTINUE"/>
|
82
|
+
<enumeration value="saMOTORWAYCHANGE"/>
|
83
|
+
<enumeration value="saCHANGECOUNTRY"/>
|
84
|
+
<enumeration value="saPTWAIT"/>
|
85
|
+
<enumeration value="saPTTRAVEL"/>
|
86
|
+
<enumeration value="saFERRY"/>
|
87
|
+
</restriction>
|
88
|
+
</simpleType>
|
89
|
+
<simpleType name="TmcRoadTypeType">
|
90
|
+
<restriction base="xsd:string">
|
91
|
+
<enumeration value="rtUNDEF"/>
|
92
|
+
<enumeration value="rtITA-AUTOS"/>
|
93
|
+
<enumeration value="rtITA-TANG"/>
|
94
|
+
<enumeration value="rtITA-SS"/>
|
95
|
+
<enumeration value="rtITA-DIR"/>
|
96
|
+
<enumeration value="rtITA-RACC"/>
|
97
|
+
<enumeration value="rtITA-TRAF"/>
|
98
|
+
<enumeration value="rtITA-SGC"/>
|
99
|
+
<enumeration value="rtNLD-A"/>
|
100
|
+
<enumeration value="rtNLD-N"/>
|
101
|
+
</restriction>
|
102
|
+
</simpleType>
|
103
|
+
<complexType name="ArrayOfint">
|
104
|
+
<complexContent>
|
105
|
+
<restriction base="SOAP-ENC:Array">
|
106
|
+
<sequence>
|
107
|
+
<element name="item" type="xsd:int" minOccurs="0" maxOccurs="unbounded"/>
|
108
|
+
</sequence>
|
109
|
+
<attribute ref="SOAP-ENC:arrayType" WSDL:arrayType="xsd:int[]"/>
|
110
|
+
</restriction>
|
111
|
+
</complexContent>
|
112
|
+
</complexType>
|
113
|
+
<complexType name="ArrayOfstring">
|
114
|
+
<complexContent>
|
115
|
+
<restriction base="SOAP-ENC:Array">
|
116
|
+
<sequence>
|
117
|
+
<element name="item" type="xsd:string" minOccurs="0" maxOccurs="unbounded"/>
|
118
|
+
</sequence>
|
119
|
+
<attribute ref="SOAP-ENC:arrayType" WSDL:arrayType="xsd:string[]"/>
|
120
|
+
</restriction>
|
121
|
+
</complexContent>
|
122
|
+
</complexType>
|
123
|
+
<complexType name="AccessCredentialsType">
|
124
|
+
<sequence>
|
125
|
+
<element name="Name" type="xsd:string" minOccurs="1" maxOccurs="1"/>
|
126
|
+
<element name="Password" type="xsd:string" minOccurs="1" maxOccurs="1"/>
|
127
|
+
</sequence>
|
128
|
+
</complexType>
|
129
|
+
<complexType name="AddressSearchType">
|
130
|
+
<sequence>
|
131
|
+
<element name="languageCode" type="xsd:string" minOccurs="1" maxOccurs="1"/>
|
132
|
+
<element name="countryCode" type="xsd:string" minOccurs="0" maxOccurs="1" nillable="true"/>
|
133
|
+
<element name="place" type="xsd:string" minOccurs="1" maxOccurs="1"/>
|
134
|
+
<element name="street" type="xsd:string" minOccurs="0" maxOccurs="1" nillable="true"/>
|
135
|
+
<element name="houseNumber" type="xsd:string" minOccurs="0" maxOccurs="1" nillable="true"/>
|
136
|
+
</sequence>
|
137
|
+
</complexType>
|
138
|
+
<complexType name="CoordinatesType">
|
139
|
+
<sequence>
|
140
|
+
<element name="longitude" type="xsd:double" minOccurs="1" maxOccurs="1"/>
|
141
|
+
<element name="latitude" type="xsd:double" minOccurs="1" maxOccurs="1"/>
|
142
|
+
</sequence>
|
143
|
+
</complexType>
|
144
|
+
<complexType name="BoxType">
|
145
|
+
<sequence>
|
146
|
+
<element name="bottomLeft" type="mms:CoordinatesType" minOccurs="1" maxOccurs="1"/>
|
147
|
+
<element name="topRight" type="mms:CoordinatesType" minOccurs="1" maxOccurs="1"/>
|
148
|
+
</sequence>
|
149
|
+
</complexType>
|
150
|
+
<complexType name="AreaType">
|
151
|
+
<sequence>
|
152
|
+
<element name="center" type="mms:CoordinatesType" minOccurs="1" maxOccurs="1"/>
|
153
|
+
<element name="radius" type="xsd:double" minOccurs="1" maxOccurs="1"/>
|
154
|
+
</sequence>
|
155
|
+
</complexType>
|
156
|
+
<complexType name="ArrayOfAreaType">
|
157
|
+
<complexContent>
|
158
|
+
<restriction base="SOAP-ENC:Array">
|
159
|
+
<sequence>
|
160
|
+
<element name="item" type="mms:AreaType" minOccurs="0" maxOccurs="unbounded"/>
|
161
|
+
</sequence>
|
162
|
+
<attribute ref="SOAP-ENC:arrayType" WSDL:arrayType="mms:AreaType[]"/>
|
163
|
+
</restriction>
|
164
|
+
</complexContent>
|
165
|
+
</complexType>
|
166
|
+
<complexType name="GeocodeType">
|
167
|
+
<sequence>
|
168
|
+
<element name="areaId" type="xsd:int" minOccurs="1" maxOccurs="1"/>
|
169
|
+
<element name="streetNameId" type="xsd:int" minOccurs="1" maxOccurs="1"/>
|
170
|
+
<element name="lineId" type="xsd:int" minOccurs="1" maxOccurs="1"/>
|
171
|
+
<element name="position" type="xsd:double" minOccurs="1" maxOccurs="1"/>
|
172
|
+
<element name="direction" type="xsd:int" minOccurs="1" maxOccurs="1"/>
|
173
|
+
<element name="highway" type="xsd:boolean" minOccurs="1" maxOccurs="1"/>
|
174
|
+
</sequence>
|
175
|
+
</complexType>
|
176
|
+
<complexType name="ArrayOfGeocodeType">
|
177
|
+
<complexContent>
|
178
|
+
<restriction base="SOAP-ENC:Array">
|
179
|
+
<sequence>
|
180
|
+
<element name="item" type="mms:GeocodeType" minOccurs="0" maxOccurs="unbounded"/>
|
181
|
+
</sequence>
|
182
|
+
<attribute ref="SOAP-ENC:arrayType" WSDL:arrayType="mms:GeocodeType[]"/>
|
183
|
+
</restriction>
|
184
|
+
</complexContent>
|
185
|
+
</complexType>
|
186
|
+
<complexType name="AddressType">
|
187
|
+
<sequence>
|
188
|
+
<element name="countryCode" type="xsd:string" minOccurs="1" maxOccurs="1"/>
|
189
|
+
<element name="languageCode" type="xsd:string" minOccurs="1" maxOccurs="1"/>
|
190
|
+
<element name="countryName" type="xsd:string" minOccurs="1" maxOccurs="1"/>
|
191
|
+
<element name="region" type="xsd:string" minOccurs="0" maxOccurs="1" nillable="true"/>
|
192
|
+
<element name="municipality" type="xsd:string" minOccurs="1" maxOccurs="1"/>
|
193
|
+
<element name="languageCodeDistrict" type="xsd:string" minOccurs="0" maxOccurs="1" nillable="true"/>
|
194
|
+
<element name="district" type="xsd:string" minOccurs="0" maxOccurs="1" nillable="true"/>
|
195
|
+
<element name="languageCodeStreetName" type="xsd:string" minOccurs="0" maxOccurs="1" nillable="true"/>
|
196
|
+
<element name="streetName" type="xsd:string" minOccurs="0" maxOccurs="1" nillable="true"/>
|
197
|
+
<element name="houseNumber" type="xsd:string" minOccurs="0" maxOccurs="1" nillable="true"/>
|
198
|
+
<element name="postCode" type="xsd:string" minOccurs="0" maxOccurs="1" nillable="true"/>
|
199
|
+
<element name="coordinates" type="mms:CoordinatesType" minOccurs="1" maxOccurs="1"/>
|
200
|
+
<element name="geocode" type="mms:GeocodeType" minOccurs="1" maxOccurs="1"/>
|
201
|
+
</sequence>
|
202
|
+
</complexType>
|
203
|
+
<complexType name="ArrayOfAddressType">
|
204
|
+
<complexContent>
|
205
|
+
<restriction base="SOAP-ENC:Array">
|
206
|
+
<sequence>
|
207
|
+
<element name="item" type="mms:AddressType" minOccurs="0" maxOccurs="unbounded"/>
|
208
|
+
</sequence>
|
209
|
+
<attribute ref="SOAP-ENC:arrayType" WSDL:arrayType="mms:AddressType[]"/>
|
210
|
+
</restriction>
|
211
|
+
</complexContent>
|
212
|
+
</complexType>
|
213
|
+
<complexType name="PoiMacrocategoryType">
|
214
|
+
<sequence>
|
215
|
+
<element name="macrocategoryId" type="xsd:string" minOccurs="1" maxOccurs="1"/>
|
216
|
+
<element name="description" type="xsd:string" minOccurs="1" maxOccurs="1"/>
|
217
|
+
</sequence>
|
218
|
+
</complexType>
|
219
|
+
<complexType name="ArrayOfPoiMacrocategoryType">
|
220
|
+
<complexContent>
|
221
|
+
<restriction base="SOAP-ENC:Array">
|
222
|
+
<sequence>
|
223
|
+
<element name="item" type="mms:PoiMacrocategoryType" minOccurs="0" maxOccurs="unbounded"/>
|
224
|
+
</sequence>
|
225
|
+
<attribute ref="SOAP-ENC:arrayType" WSDL:arrayType="mms:PoiMacrocategoryType[]"/>
|
226
|
+
</restriction>
|
227
|
+
</complexContent>
|
228
|
+
</complexType>
|
229
|
+
<complexType name="PoiCategoryType">
|
230
|
+
<sequence>
|
231
|
+
<element name="categoryId" type="xsd:string" minOccurs="1" maxOccurs="1"/>
|
232
|
+
<element name="macrocategoryId" type="xsd:string" minOccurs="1" maxOccurs="1"/>
|
233
|
+
<element name="description" type="xsd:string" minOccurs="1" maxOccurs="1"/>
|
234
|
+
<element name="populated" type="xsd:boolean" minOccurs="1" maxOccurs="1"/>
|
235
|
+
</sequence>
|
236
|
+
</complexType>
|
237
|
+
<complexType name="ArrayOfPoiCategoryType">
|
238
|
+
<complexContent>
|
239
|
+
<restriction base="SOAP-ENC:Array">
|
240
|
+
<sequence>
|
241
|
+
<element name="item" type="mms:PoiCategoryType" minOccurs="0" maxOccurs="unbounded"/>
|
242
|
+
</sequence>
|
243
|
+
<attribute ref="SOAP-ENC:arrayType" WSDL:arrayType="mms:PoiCategoryType[]"/>
|
244
|
+
</restriction>
|
245
|
+
</complexContent>
|
246
|
+
</complexType>
|
247
|
+
<complexType name="PoiInfoType">
|
248
|
+
<sequence>
|
249
|
+
<element name="type" type="xsd:int" minOccurs="1" maxOccurs="1"/>
|
250
|
+
<element name="value" type="xsd:string" minOccurs="1" maxOccurs="1"/>
|
251
|
+
</sequence>
|
252
|
+
</complexType>
|
253
|
+
<complexType name="ArrayOfPoiInfoType">
|
254
|
+
<complexContent>
|
255
|
+
<restriction base="SOAP-ENC:Array">
|
256
|
+
<sequence>
|
257
|
+
<element name="item" type="mms:PoiInfoType" minOccurs="0" maxOccurs="unbounded"/>
|
258
|
+
</sequence>
|
259
|
+
<attribute ref="SOAP-ENC:arrayType" WSDL:arrayType="mms:PoiInfoType[]"/>
|
260
|
+
</restriction>
|
261
|
+
</complexContent>
|
262
|
+
</complexType>
|
263
|
+
<complexType name="PoiType">
|
264
|
+
<sequence>
|
265
|
+
<element name="poiId" type="xsd:int" minOccurs="1" maxOccurs="1"/>
|
266
|
+
<element name="categories" type="mms:ArrayOfstring" minOccurs="1" maxOccurs="1" nillable="true"/>
|
267
|
+
<element name="name" type="xsd:string" minOccurs="1" maxOccurs="1"/>
|
268
|
+
<element name="coordinates" type="mms:CoordinatesType" minOccurs="1" maxOccurs="1"/>
|
269
|
+
<element name="geocode" type="mms:GeocodeType" minOccurs="1" maxOccurs="1"/>
|
270
|
+
<element name="address" type="xsd:string" minOccurs="1" maxOccurs="1"/>
|
271
|
+
<element name="postCode" type="xsd:string" minOccurs="1" maxOccurs="1"/>
|
272
|
+
<element name="place" type="xsd:string" minOccurs="1" maxOccurs="1"/>
|
273
|
+
<element name="country" type="xsd:string" minOccurs="1" maxOccurs="1"/>
|
274
|
+
<element name="info" type="mms:ArrayOfPoiInfoType" minOccurs="0" maxOccurs="1" nillable="true"/>
|
275
|
+
<element name="distance" type="xsd:double" minOccurs="0" maxOccurs="1" nillable="true"/>
|
276
|
+
</sequence>
|
277
|
+
</complexType>
|
278
|
+
<complexType name="ArrayOfPoiType">
|
279
|
+
<complexContent>
|
280
|
+
<restriction base="SOAP-ENC:Array">
|
281
|
+
<sequence>
|
282
|
+
<element name="item" type="mms:PoiType" minOccurs="0" maxOccurs="unbounded"/>
|
283
|
+
</sequence>
|
284
|
+
<attribute ref="SOAP-ENC:arrayType" WSDL:arrayType="mms:PoiType[]"/>
|
285
|
+
</restriction>
|
286
|
+
</complexContent>
|
287
|
+
</complexType>
|
288
|
+
<complexType name="TmcIdType">
|
289
|
+
<sequence>
|
290
|
+
<element name="cid" type="xsd:int" minOccurs="1" maxOccurs="1"/>
|
291
|
+
<element name="tabCd" type="xsd:int" minOccurs="1" maxOccurs="1"/>
|
292
|
+
<element name="lcd" type="xsd:int" minOccurs="1" maxOccurs="1"/>
|
293
|
+
</sequence>
|
294
|
+
</complexType>
|
295
|
+
<complexType name="ArrayOfTmcIdType">
|
296
|
+
<complexContent>
|
297
|
+
<restriction base="SOAP-ENC:Array">
|
298
|
+
<sequence>
|
299
|
+
<element name="item" type="mms:TmcIdType" minOccurs="0" maxOccurs="unbounded"/>
|
300
|
+
</sequence>
|
301
|
+
<attribute ref="SOAP-ENC:arrayType" WSDL:arrayType="mms:TmcIdType[]"/>
|
302
|
+
</restriction>
|
303
|
+
</complexContent>
|
304
|
+
</complexType>
|
305
|
+
<complexType name="TmcRoadQueryType">
|
306
|
+
<sequence>
|
307
|
+
<element name="cid" type="xsd:int" minOccurs="1" maxOccurs="1"/>
|
308
|
+
<element name="tabCd" type="xsd:int" minOccurs="1" maxOccurs="1"/>
|
309
|
+
<element name="roadLcds" type="mms:ArrayOfint" minOccurs="1" maxOccurs="1" nillable="true"/>
|
310
|
+
<element name="roadCodes" type="mms:ArrayOfstring" minOccurs="1" maxOccurs="1" nillable="true"/>
|
311
|
+
<element name="roadTypes" type="mms:ArrayOfint" minOccurs="1" maxOccurs="1" nillable="true"/>
|
312
|
+
<element name="roadName" type="xsd:string" minOccurs="0" maxOccurs="1" nillable="true"/>
|
313
|
+
<element name="status" type="xsd:int" minOccurs="0" maxOccurs="1" nillable="true"/>
|
314
|
+
</sequence>
|
315
|
+
</complexType>
|
316
|
+
<complexType name="ArrayOfTmcRoadQueryType">
|
317
|
+
<complexContent>
|
318
|
+
<restriction base="SOAP-ENC:Array">
|
319
|
+
<sequence>
|
320
|
+
<element name="item" type="mms:TmcRoadQueryType" minOccurs="0" maxOccurs="unbounded"/>
|
321
|
+
</sequence>
|
322
|
+
<attribute ref="SOAP-ENC:arrayType" WSDL:arrayType="mms:TmcRoadQueryType[]"/>
|
323
|
+
</restriction>
|
324
|
+
</complexContent>
|
325
|
+
</complexType>
|
326
|
+
<complexType name="TmcRoadOptionsType">
|
327
|
+
<sequence>
|
328
|
+
<element name="provideBox" type="xsd:boolean" minOccurs="0" maxOccurs="1" nillable="true"/>
|
329
|
+
<element name="nameDirections" type="xsd:boolean" minOccurs="0" maxOccurs="1" nillable="true"/>
|
330
|
+
<element name="listPoints" type="xsd:boolean" minOccurs="0" maxOccurs="1" nillable="true"/>
|
331
|
+
<element name="minPointImportance" type="xsd:int" minOccurs="0" maxOccurs="1" nillable="true"/>
|
332
|
+
</sequence>
|
333
|
+
</complexType>
|
334
|
+
<complexType name="TmcPointType">
|
335
|
+
<sequence>
|
336
|
+
<element name="pointId" type="mms:TmcIdType" minOccurs="1" maxOccurs="1"/>
|
337
|
+
<element name="roadLcd" type="xsd:int" minOccurs="1" maxOccurs="1"/>
|
338
|
+
<element name="segmentLcd" type="xsd:int" minOccurs="0" maxOccurs="1" nillable="true"/>
|
339
|
+
<element name="areaLcd" type="xsd:int" minOccurs="0" maxOccurs="1" nillable="true"/>
|
340
|
+
<element name="coordinates" type="mms:CoordinatesType" minOccurs="1" maxOccurs="1"/>
|
341
|
+
<element name="pointName" type="xsd:string" minOccurs="1" maxOccurs="1"/>
|
342
|
+
<element name="importance" type="xsd:int" minOccurs="1" maxOccurs="1"/>
|
343
|
+
</sequence>
|
344
|
+
</complexType>
|
345
|
+
<complexType name="ArrayOfTmcPointType">
|
346
|
+
<complexContent>
|
347
|
+
<restriction base="SOAP-ENC:Array">
|
348
|
+
<sequence>
|
349
|
+
<element name="item" type="mms:TmcPointType" minOccurs="0" maxOccurs="unbounded"/>
|
350
|
+
</sequence>
|
351
|
+
<attribute ref="SOAP-ENC:arrayType" WSDL:arrayType="mms:TmcPointType[]"/>
|
352
|
+
</restriction>
|
353
|
+
</complexContent>
|
354
|
+
</complexType>
|
355
|
+
<complexType name="TmcRoadType">
|
356
|
+
<sequence>
|
357
|
+
<element name="roadId" type="mms:TmcIdType" minOccurs="1" maxOccurs="1"/>
|
358
|
+
<element name="roadType" type="xsd:int" minOccurs="1" maxOccurs="1"/>
|
359
|
+
<element name="roadCode" type="xsd:string" minOccurs="1" maxOccurs="1"/>
|
360
|
+
<element name="roadName" type="xsd:string" minOccurs="1" maxOccurs="1"/>
|
361
|
+
<element name="box" type="mms:BoxType" minOccurs="0" maxOccurs="1" nillable="true"/>
|
362
|
+
<element name="status" type="xsd:int" minOccurs="0" maxOccurs="1" nillable="true"/>
|
363
|
+
<element name="positiveDirName" type="xsd:string" minOccurs="0" maxOccurs="1" nillable="true"/>
|
364
|
+
<element name="negativeDirName" type="xsd:string" minOccurs="0" maxOccurs="1" nillable="true"/>
|
365
|
+
<element name="points" type="mms:ArrayOfTmcPointType" minOccurs="0" maxOccurs="1" nillable="true"/>
|
366
|
+
</sequence>
|
367
|
+
</complexType>
|
368
|
+
<complexType name="ArrayOfTmcRoadType">
|
369
|
+
<complexContent>
|
370
|
+
<restriction base="SOAP-ENC:Array">
|
371
|
+
<sequence>
|
372
|
+
<element name="item" type="mms:TmcRoadType" minOccurs="0" maxOccurs="unbounded"/>
|
373
|
+
</sequence>
|
374
|
+
<attribute ref="SOAP-ENC:arrayType" WSDL:arrayType="mms:TmcRoadType[]"/>
|
375
|
+
</restriction>
|
376
|
+
</complexContent>
|
377
|
+
</complexType>
|
378
|
+
<complexType name="TmcTrafficQueryType">
|
379
|
+
<sequence>
|
380
|
+
<element name="area" type="mms:AreaType" minOccurs="0" maxOccurs="1" nillable="true"/>
|
381
|
+
<element name="box" type="mms:BoxType" minOccurs="0" maxOccurs="1" nillable="true"/>
|
382
|
+
<element name="roadIds" type="mms:ArrayOfTmcIdType" minOccurs="1" maxOccurs="1" nillable="true"/>
|
383
|
+
<element name="fromPoint" type="mms:TmcIdType" minOccurs="0" maxOccurs="1" nillable="true"/>
|
384
|
+
<element name="toPoint" type="mms:TmcIdType" minOccurs="0" maxOccurs="1" nillable="true"/>
|
385
|
+
<element name="traffIds" type="mms:ArrayOfstring" minOccurs="1" maxOccurs="1" nillable="true"/>
|
386
|
+
</sequence>
|
387
|
+
</complexType>
|
388
|
+
<complexType name="ArrayOfTmcTrafficQueryType">
|
389
|
+
<complexContent>
|
390
|
+
<restriction base="SOAP-ENC:Array">
|
391
|
+
<sequence>
|
392
|
+
<element name="item" type="mms:TmcTrafficQueryType" minOccurs="0" maxOccurs="unbounded"/>
|
393
|
+
</sequence>
|
394
|
+
<attribute ref="SOAP-ENC:arrayType" WSDL:arrayType="mms:TmcTrafficQueryType[]"/>
|
395
|
+
</restriction>
|
396
|
+
</complexContent>
|
397
|
+
</complexType>
|
398
|
+
<complexType name="TmcTrafficOptionsType">
|
399
|
+
<sequence>
|
400
|
+
<element name="languageCode" type="xsd:string" minOccurs="1" maxOccurs="1"/>
|
401
|
+
<element name="maxResults" type="xsd:int" minOccurs="0" maxOccurs="1" nillable="true"/>
|
402
|
+
<element name="orderBySeverity" type="xsd:boolean" minOccurs="0" maxOccurs="1" nillable="true"/>
|
403
|
+
</sequence>
|
404
|
+
</complexType>
|
405
|
+
<complexType name="TrafficInfoType">
|
406
|
+
<sequence>
|
407
|
+
<element name="id" type="xsd:string" minOccurs="1" maxOccurs="1"/>
|
408
|
+
<element name="cat" type="xsd:int" minOccurs="1" maxOccurs="1"/>
|
409
|
+
<element name="dob" type="xsd:string" minOccurs="1" maxOccurs="1"/>
|
410
|
+
<element name="dob2" type="xsd:string" minOccurs="0" maxOccurs="1" nillable="true"/>
|
411
|
+
<element name="dateTime" type="xsd:dateTime" minOccurs="0" maxOccurs="1" nillable="true"/>
|
412
|
+
<element name="coordinates" type="mms:CoordinatesType" minOccurs="1" maxOccurs="1"/>
|
413
|
+
<element name="distance" type="xsd:double" minOccurs="0" maxOccurs="1" nillable="true"/>
|
414
|
+
<element name="road" type="mms:TmcRoadType" minOccurs="1" maxOccurs="1"/>
|
415
|
+
<element name="roadName" type="xsd:string" minOccurs="1" maxOccurs="1"/>
|
416
|
+
<element name="directionName" type="xsd:string" minOccurs="0" maxOccurs="1" nillable="true"/>
|
417
|
+
<element name="segmentName" type="xsd:string" minOccurs="0" maxOccurs="1" nillable="true"/>
|
418
|
+
<element name="areaName" type="xsd:string" minOccurs="0" maxOccurs="1" nillable="true"/>
|
419
|
+
<element name="place" type="xsd:string" minOccurs="1" maxOccurs="1"/>
|
420
|
+
<element name="extraPlace" type="xsd:string" minOccurs="0" maxOccurs="1" nillable="true"/>
|
421
|
+
<element name="text" type="xsd:string" minOccurs="1" maxOccurs="1"/>
|
422
|
+
<element name="extraText" type="xsd:string" minOccurs="0" maxOccurs="1" nillable="true"/>
|
423
|
+
<element name="source" type="xsd:string" minOccurs="0" maxOccurs="1" nillable="true"/>
|
424
|
+
</sequence>
|
425
|
+
</complexType>
|
426
|
+
<complexType name="ArrayOfTrafficInfoType">
|
427
|
+
<complexContent>
|
428
|
+
<restriction base="SOAP-ENC:Array">
|
429
|
+
<sequence>
|
430
|
+
<element name="item" type="mms:TrafficInfoType" minOccurs="0" maxOccurs="unbounded"/>
|
431
|
+
</sequence>
|
432
|
+
<attribute ref="SOAP-ENC:arrayType" WSDL:arrayType="mms:TrafficInfoType[]"/>
|
433
|
+
</restriction>
|
434
|
+
</complexContent>
|
435
|
+
</complexType>
|
436
|
+
<complexType name="RouteParametersType">
|
437
|
+
<sequence>
|
438
|
+
<element name="startingTime" type="xsd:dateTime" minOccurs="0" maxOccurs="1" nillable="true"/>
|
439
|
+
<element name="arrivalTime" type="xsd:dateTime" minOccurs="0" maxOccurs="1" nillable="true"/>
|
440
|
+
<element name="mode" type="xsd:int" minOccurs="1" maxOccurs="1"/>
|
441
|
+
<element name="optimization" type="xsd:int" minOccurs="1" maxOccurs="1"/>
|
442
|
+
<element name="realTime" type="xsd:boolean" minOccurs="1" maxOccurs="1"/>
|
443
|
+
<element name="descriptionLevel" type="xsd:int" minOccurs="1" maxOccurs="1"/>
|
444
|
+
<element name="descriptionLanguageCode" type="xsd:string" minOccurs="1" maxOccurs="1"/>
|
445
|
+
<element name="providePath" type="xsd:boolean" minOccurs="1" maxOccurs="1"/>
|
446
|
+
<element name="providePathPoints" type="xsd:boolean" minOccurs="1" maxOccurs="1"/>
|
447
|
+
</sequence>
|
448
|
+
</complexType>
|
449
|
+
<complexType name="RouteStepType">
|
450
|
+
<sequence>
|
451
|
+
<element name="time" type="xsd:dateTime" minOccurs="0" maxOccurs="1" nillable="true"/>
|
452
|
+
<element name="duration" type="xsd:int" minOccurs="1" maxOccurs="1"/>
|
453
|
+
<element name="distance" type="xsd:double" minOccurs="1" maxOccurs="1"/>
|
454
|
+
<element name="action" type="xsd:int" minOccurs="1" maxOccurs="1"/>
|
455
|
+
<element name="description" type="xsd:string" minOccurs="1" maxOccurs="1"/>
|
456
|
+
</sequence>
|
457
|
+
</complexType>
|
458
|
+
<complexType name="ArrayOfRouteStepType">
|
459
|
+
<complexContent>
|
460
|
+
<restriction base="SOAP-ENC:Array">
|
461
|
+
<sequence>
|
462
|
+
<element name="item" type="mms:RouteStepType" minOccurs="0" maxOccurs="unbounded"/>
|
463
|
+
</sequence>
|
464
|
+
<attribute ref="SOAP-ENC:arrayType" WSDL:arrayType="mms:RouteStepType[]"/>
|
465
|
+
</restriction>
|
466
|
+
</complexContent>
|
467
|
+
</complexType>
|
468
|
+
<complexType name="RouteSegmentType">
|
469
|
+
<sequence>
|
470
|
+
<element name="origin" type="mms:GeocodeType" minOccurs="1" maxOccurs="1"/>
|
471
|
+
<element name="destination" type="mms:GeocodeType" minOccurs="1" maxOccurs="1"/>
|
472
|
+
<element name="startingTime" type="xsd:dateTime" minOccurs="0" maxOccurs="1" nillable="true"/>
|
473
|
+
<element name="duration" type="xsd:int" minOccurs="1" maxOccurs="1"/>
|
474
|
+
<element name="distance" type="xsd:double" minOccurs="1" maxOccurs="1"/>
|
475
|
+
<element name="vehicle" type="xsd:int" minOccurs="1" maxOccurs="1"/>
|
476
|
+
<element name="steps" type="mms:ArrayOfRouteStepType" minOccurs="1" maxOccurs="1" nillable="true"/>
|
477
|
+
<element name="path" type="xsd:string" minOccurs="0" maxOccurs="1" nillable="true"/>
|
478
|
+
</sequence>
|
479
|
+
</complexType>
|
480
|
+
<complexType name="ArrayOfRouteSegmentType">
|
481
|
+
<complexContent>
|
482
|
+
<restriction base="SOAP-ENC:Array">
|
483
|
+
<sequence>
|
484
|
+
<element name="item" type="mms:RouteSegmentType" minOccurs="0" maxOccurs="unbounded"/>
|
485
|
+
</sequence>
|
486
|
+
<attribute ref="SOAP-ENC:arrayType" WSDL:arrayType="mms:RouteSegmentType[]"/>
|
487
|
+
</restriction>
|
488
|
+
</complexContent>
|
489
|
+
</complexType>
|
490
|
+
<complexType name="RoutePartType">
|
491
|
+
<sequence>
|
492
|
+
<element name="origin" type="mms:GeocodeType" minOccurs="1" maxOccurs="1"/>
|
493
|
+
<element name="destination" type="mms:GeocodeType" minOccurs="1" maxOccurs="1"/>
|
494
|
+
<element name="startingTime" type="xsd:dateTime" minOccurs="0" maxOccurs="1" nillable="true"/>
|
495
|
+
<element name="duration" type="xsd:int" minOccurs="1" maxOccurs="1"/>
|
496
|
+
<element name="distance" type="xsd:double" minOccurs="1" maxOccurs="1"/>
|
497
|
+
<element name="segments" type="mms:ArrayOfRouteSegmentType" minOccurs="1" maxOccurs="1" nillable="true"/>
|
498
|
+
</sequence>
|
499
|
+
</complexType>
|
500
|
+
<complexType name="ArrayOfRoutePartType">
|
501
|
+
<complexContent>
|
502
|
+
<restriction base="SOAP-ENC:Array">
|
503
|
+
<sequence>
|
504
|
+
<element name="item" type="mms:RoutePartType" minOccurs="0" maxOccurs="unbounded"/>
|
505
|
+
</sequence>
|
506
|
+
<attribute ref="SOAP-ENC:arrayType" WSDL:arrayType="mms:RoutePartType[]"/>
|
507
|
+
</restriction>
|
508
|
+
</complexContent>
|
509
|
+
</complexType>
|
510
|
+
<complexType name="RouteType">
|
511
|
+
<sequence>
|
512
|
+
<element name="routeId" type="xsd:string" minOccurs="1" maxOccurs="1"/>
|
513
|
+
<element name="origin" type="mms:GeocodeType" minOccurs="1" maxOccurs="1"/>
|
514
|
+
<element name="destination" type="mms:GeocodeType" minOccurs="1" maxOccurs="1"/>
|
515
|
+
<element name="startingTime" type="xsd:dateTime" minOccurs="0" maxOccurs="1" nillable="true"/>
|
516
|
+
<element name="duration" type="xsd:int" minOccurs="1" maxOccurs="1"/>
|
517
|
+
<element name="distance" type="xsd:double" minOccurs="1" maxOccurs="1"/>
|
518
|
+
<element name="parts" type="mms:ArrayOfRoutePartType" minOccurs="1" maxOccurs="1" nillable="true"/>
|
519
|
+
</sequence>
|
520
|
+
</complexType>
|
521
|
+
<complexType name="ArrayOfRouteType">
|
522
|
+
<complexContent>
|
523
|
+
<restriction base="SOAP-ENC:Array">
|
524
|
+
<sequence>
|
525
|
+
<element name="item" type="mms:RouteType" minOccurs="0" maxOccurs="unbounded"/>
|
526
|
+
</sequence>
|
527
|
+
<attribute ref="SOAP-ENC:arrayType" WSDL:arrayType="mms:RouteType[]"/>
|
528
|
+
</restriction>
|
529
|
+
</complexContent>
|
530
|
+
</complexType>
|
531
|
+
<complexType name="ImagePointType">
|
532
|
+
<sequence>
|
533
|
+
<element name="x" type="xsd:int" minOccurs="1" maxOccurs="1"/>
|
534
|
+
<element name="y" type="xsd:int" minOccurs="1" maxOccurs="1"/>
|
535
|
+
</sequence>
|
536
|
+
</complexType>
|
537
|
+
<complexType name="ImageSizeType">
|
538
|
+
<sequence>
|
539
|
+
<element name="width" type="xsd:int" minOccurs="1" maxOccurs="1"/>
|
540
|
+
<element name="height" type="xsd:int" minOccurs="1" maxOccurs="1"/>
|
541
|
+
</sequence>
|
542
|
+
</complexType>
|
543
|
+
<complexType name="MapIconType">
|
544
|
+
<sequence>
|
545
|
+
<element name="iconId" type="xsd:string" minOccurs="1" maxOccurs="1"/>
|
546
|
+
<element name="iconType" type="xsd:string" minOccurs="1" maxOccurs="1"/>
|
547
|
+
<element name="description" type="xsd:string" minOccurs="0" maxOccurs="1" nillable="true"/>
|
548
|
+
<element name="dimmed" type="xsd:boolean" minOccurs="1" maxOccurs="1"/>
|
549
|
+
<element name="minimize" type="xsd:boolean" minOccurs="1" maxOccurs="1"/>
|
550
|
+
<element name="coordinates" type="mms:CoordinatesType" minOccurs="0" maxOccurs="1" nillable="true"/>
|
551
|
+
<element name="point" type="mms:ImagePointType" minOccurs="0" maxOccurs="1" nillable="true"/>
|
552
|
+
</sequence>
|
553
|
+
</complexType>
|
554
|
+
<complexType name="ArrayOfMapIconType">
|
555
|
+
<complexContent>
|
556
|
+
<restriction base="SOAP-ENC:Array">
|
557
|
+
<sequence>
|
558
|
+
<element name="item" type="mms:MapIconType" minOccurs="0" maxOccurs="unbounded"/>
|
559
|
+
</sequence>
|
560
|
+
<attribute ref="SOAP-ENC:arrayType" WSDL:arrayType="mms:MapIconType[]"/>
|
561
|
+
</restriction>
|
562
|
+
</complexContent>
|
563
|
+
</complexType>
|
564
|
+
<complexType name="MapOptionsType">
|
565
|
+
<sequence>
|
566
|
+
<element name="format" type="xsd:string" minOccurs="0" maxOccurs="1" nillable="true"/>
|
567
|
+
<element name="showTrafficEvents" type="xsd:boolean" minOccurs="0" maxOccurs="1" nillable="true"/>
|
568
|
+
<element name="trafficIconPrefix" type="xsd:string" minOccurs="0" maxOccurs="1" nillable="true"/>
|
569
|
+
<element name="trafficIconsDimmed" type="xsd:boolean" minOccurs="0" maxOccurs="1" nillable="true"/>
|
570
|
+
<element name="roadId" type="mms:TmcIdType" minOccurs="0" maxOccurs="1" nillable="true"/>
|
571
|
+
<element name="routeId" type="xsd:string" minOccurs="0" maxOccurs="1" nillable="true"/>
|
572
|
+
<element name="poiIds" type="mms:ArrayOfint" minOccurs="0" maxOccurs="1" nillable="true"/>
|
573
|
+
<element name="trafficInfoIds" type="mms:ArrayOfstring" minOccurs="0" maxOccurs="1" nillable="true"/>
|
574
|
+
<element name="icons" type="mms:ArrayOfMapIconType" minOccurs="0" maxOccurs="1" nillable="true"/>
|
575
|
+
<element name="routeIds" type="mms:ArrayOfstring" minOccurs="0" maxOccurs="1" nillable="true"/>
|
576
|
+
<element name="showBasicPois" type="xsd:boolean" minOccurs="0" maxOccurs="1" nillable="true"/>
|
577
|
+
</sequence>
|
578
|
+
</complexType>
|
579
|
+
<complexType name="MapType">
|
580
|
+
<sequence>
|
581
|
+
<element name="imageSize" type="mms:ImageSizeType" minOccurs="1" maxOccurs="1"/>
|
582
|
+
<element name="box" type="mms:BoxType" minOccurs="1" maxOccurs="1"/>
|
583
|
+
<element name="width" type="xsd:double" minOccurs="1" maxOccurs="1"/>
|
584
|
+
<element name="height" type="xsd:double" minOccurs="1" maxOccurs="1"/>
|
585
|
+
<element name="imageUrl" type="xsd:string" minOccurs="1" maxOccurs="1"/>
|
586
|
+
<element name="icons" type="mms:ArrayOfMapIconType" minOccurs="0" maxOccurs="1" nillable="true"/>
|
587
|
+
</sequence>
|
588
|
+
</complexType>
|
589
|
+
<element name="AccessCredentials" type="mms:AccessCredentialsType"/>
|
590
|
+
</schema>
|
591
|
+
|
592
|
+
</types>
|
593
|
+
|
594
|
+
<message name="getVersionRequest">
|
595
|
+
</message>
|
596
|
+
|
597
|
+
<message name="getVersionResponse">
|
598
|
+
<part name="name" type="xsd:string"/>
|
599
|
+
<part name="version" type="xsd:string"/>
|
600
|
+
<part name="date" type="xsd:string"/>
|
601
|
+
<part name="cartographyVersion" type="xsd:string"/>
|
602
|
+
<part name="poiCartographyVersion" type="xsd:string"/>
|
603
|
+
</message>
|
604
|
+
|
605
|
+
<message name="getAvailableCountriesRequest">
|
606
|
+
</message>
|
607
|
+
|
608
|
+
<message name="getAvailableCountriesResponse">
|
609
|
+
<part name="countries" type="mms:ArrayOfstring"/>
|
610
|
+
</message>
|
611
|
+
|
612
|
+
<message name="findAddressRequest">
|
613
|
+
<part name="addressSearch" type="mms:AddressSearchType"/>
|
614
|
+
<part name="maxResults" type="xsd:int"/>
|
615
|
+
<part name="onlyMunicipalities" type="xsd:boolean"/>
|
616
|
+
</message>
|
617
|
+
|
618
|
+
<message name="findAddressResponse">
|
619
|
+
<part name="addresses" type="mms:ArrayOfAddressType"/>
|
620
|
+
</message>
|
621
|
+
|
622
|
+
<message name="getAddressFromGeocodeRequest">
|
623
|
+
<part name="geocode" type="mms:GeocodeType"/>
|
624
|
+
<part name="languageCode" type="xsd:string"/>
|
625
|
+
</message>
|
626
|
+
|
627
|
+
<message name="getAddressFromGeocodeResponse">
|
628
|
+
<part name="address" type="mms:AddressType"/>
|
629
|
+
</message>
|
630
|
+
|
631
|
+
<message name="findGeocodeFromCoordinatesRequest">
|
632
|
+
<part name="coordinates" type="mms:CoordinatesType"/>
|
633
|
+
<part name="vehicle" type="xsd:int"/>
|
634
|
+
</message>
|
635
|
+
|
636
|
+
<message name="findGeocodeFromCoordinatesResponse">
|
637
|
+
<part name="found" type="xsd:boolean"/>
|
638
|
+
<part name="geocode" type="mms:GeocodeType"/>
|
639
|
+
<part name="distance" type="xsd:double"/>
|
640
|
+
</message>
|
641
|
+
|
642
|
+
<message name="findAddressFromCoordinatesRequest">
|
643
|
+
<part name="coordinates" type="mms:CoordinatesType"/>
|
644
|
+
<part name="vehicle" type="xsd:int"/>
|
645
|
+
<part name="languageCode" type="xsd:string"/>
|
646
|
+
</message>
|
647
|
+
|
648
|
+
<message name="findAddressFromCoordinatesResponse">
|
649
|
+
<part name="found" type="xsd:boolean"/>
|
650
|
+
<part name="address" type="mms:AddressType"/>
|
651
|
+
<part name="distance" type="xsd:double"/>
|
652
|
+
</message>
|
653
|
+
|
654
|
+
<message name="getListOfPoiMacrocategoriesRequest">
|
655
|
+
<part name="languageCode" type="xsd:string"/>
|
656
|
+
</message>
|
657
|
+
|
658
|
+
<message name="getListOfPoiMacrocategoriesResponse">
|
659
|
+
<part name="macrocategories" type="mms:ArrayOfPoiMacrocategoryType"/>
|
660
|
+
</message>
|
661
|
+
|
662
|
+
<message name="getListOfPoiCategoriesRequest">
|
663
|
+
<part name="languageCode" type="xsd:string"/>
|
664
|
+
<part name="onlyPopulated" type="xsd:boolean"/>
|
665
|
+
</message>
|
666
|
+
|
667
|
+
<message name="getListOfPoiCategoriesResponse">
|
668
|
+
<part name="categories" type="mms:ArrayOfPoiCategoryType"/>
|
669
|
+
</message>
|
670
|
+
|
671
|
+
<message name="findPoisRequest">
|
672
|
+
<part name="area" type="mms:AreaType"/>
|
673
|
+
<part name="box" type="mms:BoxType"/>
|
674
|
+
<part name="maxResults" type="xsd:int"/>
|
675
|
+
<part name="macroCategoryIds" type="mms:ArrayOfstring"/>
|
676
|
+
<part name="categoryIds" type="mms:ArrayOfstring"/>
|
677
|
+
<part name="provideInfo" type="xsd:boolean"/>
|
678
|
+
</message>
|
679
|
+
|
680
|
+
<message name="findPoisResponse">
|
681
|
+
<part name="pois" type="mms:ArrayOfPoiType"/>
|
682
|
+
</message>
|
683
|
+
|
684
|
+
<message name="getPoiInfoRequest">
|
685
|
+
<part name="poiIds" type="mms:ArrayOfint"/>
|
686
|
+
<part name="provideInfo" type="xsd:boolean"/>
|
687
|
+
</message>
|
688
|
+
|
689
|
+
<message name="getPoiInfoResponse">
|
690
|
+
<part name="pois" type="mms:ArrayOfPoiType"/>
|
691
|
+
</message>
|
692
|
+
|
693
|
+
<message name="getListOfRoadsRequest">
|
694
|
+
<part name="roadQueries" type="mms:ArrayOfTmcRoadQueryType"/>
|
695
|
+
<part name="roadOptions" type="mms:TmcRoadOptionsType"/>
|
696
|
+
</message>
|
697
|
+
|
698
|
+
<message name="getListOfRoadsResponse">
|
699
|
+
<part name="roads" type="mms:ArrayOfTmcRoadType"/>
|
700
|
+
</message>
|
701
|
+
|
702
|
+
<message name="getTrafficInfoRequest">
|
703
|
+
<part name="trafficQuery" type="mms:TmcTrafficQueryType"/>
|
704
|
+
<part name="trafficOptions" type="mms:TmcTrafficOptionsType"/>
|
705
|
+
</message>
|
706
|
+
|
707
|
+
<message name="getTrafficInfoResponse">
|
708
|
+
<part name="info" type="mms:ArrayOfTrafficInfoType"/>
|
709
|
+
</message>
|
710
|
+
|
711
|
+
<message name="getTrafficStatusRequest">
|
712
|
+
<part name="areas" type="mms:ArrayOfAreaType"/>
|
713
|
+
</message>
|
714
|
+
|
715
|
+
<message name="getTrafficStatusResponse">
|
716
|
+
<part name="status" type="mms:ArrayOfint"/>
|
717
|
+
</message>
|
718
|
+
|
719
|
+
<message name="findRouteRequest">
|
720
|
+
<part name="places" type="mms:ArrayOfGeocodeType"/>
|
721
|
+
<part name="params" type="mms:RouteParametersType"/>
|
722
|
+
</message>
|
723
|
+
|
724
|
+
<message name="findRouteResponse">
|
725
|
+
<part name="route" type="mms:RouteType"/>
|
726
|
+
</message>
|
727
|
+
|
728
|
+
<message name="getMapRequest">
|
729
|
+
<part name="imageSize" type="mms:ImageSizeType"/>
|
730
|
+
<part name="box" type="mms:BoxType"/>
|
731
|
+
<part name="options" type="mms:MapOptionsType"/>
|
732
|
+
</message>
|
733
|
+
|
734
|
+
<message name="getMapResponse">
|
735
|
+
<part name="map" type="mms:MapType"/>
|
736
|
+
</message>
|
737
|
+
|
738
|
+
<message name="getMapAroundRequest">
|
739
|
+
<part name="imageSize" type="mms:ImageSizeType"/>
|
740
|
+
<part name="center" type="mms:CoordinatesType"/>
|
741
|
+
<part name="radius" type="xsd:double"/>
|
742
|
+
<part name="options" type="mms:MapOptionsType"/>
|
743
|
+
</message>
|
744
|
+
|
745
|
+
<message name="getMapAroundResponse">
|
746
|
+
<part name="map" type="mms:MapType"/>
|
747
|
+
</message>
|
748
|
+
|
749
|
+
<message name="mms_MizGISHeader">
|
750
|
+
<part name="AccessCredentials" element="mms:AccessCredentials"/>
|
751
|
+
</message>
|
752
|
+
|
753
|
+
<portType name="mms_MizGISPortType">
|
754
|
+
<operation name="getVersion">
|
755
|
+
<documentation>Service definition of function mms__getVersion</documentation>
|
756
|
+
<input message="tns:getVersionRequest"/>
|
757
|
+
<output message="tns:getVersionResponse"/>
|
758
|
+
</operation>
|
759
|
+
<operation name="getAvailableCountries">
|
760
|
+
<documentation>Service definition of function mms__getAvailableCountries</documentation>
|
761
|
+
<input message="tns:getAvailableCountriesRequest"/>
|
762
|
+
<output message="tns:getAvailableCountriesResponse"/>
|
763
|
+
</operation>
|
764
|
+
<operation name="findAddress">
|
765
|
+
<documentation>Service definition of function mms__findAddress</documentation>
|
766
|
+
<input message="tns:findAddressRequest"/>
|
767
|
+
<output message="tns:findAddressResponse"/>
|
768
|
+
</operation>
|
769
|
+
<operation name="getAddressFromGeocode">
|
770
|
+
<documentation>Service definition of function mms__getAddressFromGeocode</documentation>
|
771
|
+
<input message="tns:getAddressFromGeocodeRequest"/>
|
772
|
+
<output message="tns:getAddressFromGeocodeResponse"/>
|
773
|
+
</operation>
|
774
|
+
<operation name="findGeocodeFromCoordinates">
|
775
|
+
<documentation>Service definition of function mms__findGeocodeFromCoordinates</documentation>
|
776
|
+
<input message="tns:findGeocodeFromCoordinatesRequest"/>
|
777
|
+
<output message="tns:findGeocodeFromCoordinatesResponse"/>
|
778
|
+
</operation>
|
779
|
+
<operation name="findAddressFromCoordinates">
|
780
|
+
<documentation>Service definition of function mms__findAddressFromCoordinates</documentation>
|
781
|
+
<input message="tns:findAddressFromCoordinatesRequest"/>
|
782
|
+
<output message="tns:findAddressFromCoordinatesResponse"/>
|
783
|
+
</operation>
|
784
|
+
<operation name="getListOfPoiMacrocategories">
|
785
|
+
<documentation>Service definition of function mms__getListOfPoiMacrocategories</documentation>
|
786
|
+
<input message="tns:getListOfPoiMacrocategoriesRequest"/>
|
787
|
+
<output message="tns:getListOfPoiMacrocategoriesResponse"/>
|
788
|
+
</operation>
|
789
|
+
<operation name="getListOfPoiCategories">
|
790
|
+
<documentation>Service definition of function mms__getListOfPoiCategories</documentation>
|
791
|
+
<input message="tns:getListOfPoiCategoriesRequest"/>
|
792
|
+
<output message="tns:getListOfPoiCategoriesResponse"/>
|
793
|
+
</operation>
|
794
|
+
<operation name="findPois">
|
795
|
+
<documentation>Service definition of function mms__findPois</documentation>
|
796
|
+
<input message="tns:findPoisRequest"/>
|
797
|
+
<output message="tns:findPoisResponse"/>
|
798
|
+
</operation>
|
799
|
+
<operation name="getPoiInfo">
|
800
|
+
<documentation>Service definition of function mms__getPoiInfo</documentation>
|
801
|
+
<input message="tns:getPoiInfoRequest"/>
|
802
|
+
<output message="tns:getPoiInfoResponse"/>
|
803
|
+
</operation>
|
804
|
+
<operation name="getListOfRoads">
|
805
|
+
<documentation>Service definition of function mms__getListOfRoads</documentation>
|
806
|
+
<input message="tns:getListOfRoadsRequest"/>
|
807
|
+
<output message="tns:getListOfRoadsResponse"/>
|
808
|
+
</operation>
|
809
|
+
<operation name="getTrafficInfo">
|
810
|
+
<documentation>Service definition of function mms__getTrafficInfo</documentation>
|
811
|
+
<input message="tns:getTrafficInfoRequest"/>
|
812
|
+
<output message="tns:getTrafficInfoResponse"/>
|
813
|
+
</operation>
|
814
|
+
<operation name="getTrafficStatus">
|
815
|
+
<documentation>Service definition of function mms__getTrafficStatus</documentation>
|
816
|
+
<input message="tns:getTrafficStatusRequest"/>
|
817
|
+
<output message="tns:getTrafficStatusResponse"/>
|
818
|
+
</operation>
|
819
|
+
<operation name="findRoute">
|
820
|
+
<documentation>Service definition of function mms__findRoute</documentation>
|
821
|
+
<input message="tns:findRouteRequest"/>
|
822
|
+
<output message="tns:findRouteResponse"/>
|
823
|
+
</operation>
|
824
|
+
<operation name="getMap">
|
825
|
+
<documentation>Service definition of function mms__getMap</documentation>
|
826
|
+
<input message="tns:getMapRequest"/>
|
827
|
+
<output message="tns:getMapResponse"/>
|
828
|
+
</operation>
|
829
|
+
<operation name="getMapAround">
|
830
|
+
<documentation>Service definition of function mms__getMapAround</documentation>
|
831
|
+
<input message="tns:getMapAroundRequest"/>
|
832
|
+
<output message="tns:getMapAroundResponse"/>
|
833
|
+
</operation>
|
834
|
+
</portType>
|
835
|
+
|
836
|
+
<binding name="mms_MizGIS" type="tns:mms_MizGISPortType">
|
837
|
+
<SOAP:binding style="rpc" transport="http://schemas.xmlsoap.org/soap/http"/>
|
838
|
+
<operation name="getVersion">
|
839
|
+
<SOAP:operation style="rpc" soapAction=""/>
|
840
|
+
<input>
|
841
|
+
<SOAP:body use="encoded" namespace="urn:mms_MizGIS" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
|
842
|
+
<SOAP:header use="literal" message="tns:mms_MizGISHeader" part="AccessCredentials"/>
|
843
|
+
</input>
|
844
|
+
<output>
|
845
|
+
<SOAP:body use="encoded" namespace="urn:mms_MizGIS" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
|
846
|
+
</output>
|
847
|
+
</operation>
|
848
|
+
<operation name="getAvailableCountries">
|
849
|
+
<SOAP:operation style="rpc" soapAction=""/>
|
850
|
+
<input>
|
851
|
+
<SOAP:body use="encoded" namespace="urn:mms_MizGIS" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
|
852
|
+
<SOAP:header use="literal" message="tns:mms_MizGISHeader" part="AccessCredentials"/>
|
853
|
+
</input>
|
854
|
+
<output>
|
855
|
+
<SOAP:body use="encoded" namespace="urn:mms_MizGIS" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
|
856
|
+
</output>
|
857
|
+
</operation>
|
858
|
+
<operation name="findAddress">
|
859
|
+
<SOAP:operation style="rpc" soapAction=""/>
|
860
|
+
<input>
|
861
|
+
<SOAP:body use="encoded" namespace="urn:mms_MizGIS" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
|
862
|
+
<SOAP:header use="literal" message="tns:mms_MizGISHeader" part="AccessCredentials"/>
|
863
|
+
</input>
|
864
|
+
<output>
|
865
|
+
<SOAP:body use="encoded" namespace="urn:mms_MizGIS" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
|
866
|
+
</output>
|
867
|
+
</operation>
|
868
|
+
<operation name="getAddressFromGeocode">
|
869
|
+
<SOAP:operation style="rpc" soapAction=""/>
|
870
|
+
<input>
|
871
|
+
<SOAP:body use="encoded" namespace="urn:mms_MizGIS" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
|
872
|
+
<SOAP:header use="literal" message="tns:mms_MizGISHeader" part="AccessCredentials"/>
|
873
|
+
</input>
|
874
|
+
<output>
|
875
|
+
<SOAP:body use="encoded" namespace="urn:mms_MizGIS" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
|
876
|
+
</output>
|
877
|
+
</operation>
|
878
|
+
<operation name="findGeocodeFromCoordinates">
|
879
|
+
<SOAP:operation style="rpc" soapAction=""/>
|
880
|
+
<input>
|
881
|
+
<SOAP:body use="encoded" namespace="urn:mms_MizGIS" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
|
882
|
+
<SOAP:header use="literal" message="tns:mms_MizGISHeader" part="AccessCredentials"/>
|
883
|
+
</input>
|
884
|
+
<output>
|
885
|
+
<SOAP:body use="encoded" namespace="urn:mms_MizGIS" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
|
886
|
+
</output>
|
887
|
+
</operation>
|
888
|
+
<operation name="findAddressFromCoordinates">
|
889
|
+
<SOAP:operation style="rpc" soapAction=""/>
|
890
|
+
<input>
|
891
|
+
<SOAP:body use="encoded" namespace="urn:mms_MizGIS" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
|
892
|
+
<SOAP:header use="literal" message="tns:mms_MizGISHeader" part="AccessCredentials"/>
|
893
|
+
</input>
|
894
|
+
<output>
|
895
|
+
<SOAP:body use="encoded" namespace="urn:mms_MizGIS" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
|
896
|
+
</output>
|
897
|
+
</operation>
|
898
|
+
<operation name="getListOfPoiMacrocategories">
|
899
|
+
<SOAP:operation style="rpc" soapAction=""/>
|
900
|
+
<input>
|
901
|
+
<SOAP:body use="encoded" namespace="urn:mms_MizGIS" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
|
902
|
+
<SOAP:header use="literal" message="tns:mms_MizGISHeader" part="AccessCredentials"/>
|
903
|
+
</input>
|
904
|
+
<output>
|
905
|
+
<SOAP:body use="encoded" namespace="urn:mms_MizGIS" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
|
906
|
+
</output>
|
907
|
+
</operation>
|
908
|
+
<operation name="getListOfPoiCategories">
|
909
|
+
<SOAP:operation style="rpc" soapAction=""/>
|
910
|
+
<input>
|
911
|
+
<SOAP:body use="encoded" namespace="urn:mms_MizGIS" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
|
912
|
+
<SOAP:header use="literal" message="tns:mms_MizGISHeader" part="AccessCredentials"/>
|
913
|
+
</input>
|
914
|
+
<output>
|
915
|
+
<SOAP:body use="encoded" namespace="urn:mms_MizGIS" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
|
916
|
+
</output>
|
917
|
+
</operation>
|
918
|
+
<operation name="findPois">
|
919
|
+
<SOAP:operation style="rpc" soapAction=""/>
|
920
|
+
<input>
|
921
|
+
<SOAP:body use="encoded" namespace="urn:mms_MizGIS" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
|
922
|
+
<SOAP:header use="literal" message="tns:mms_MizGISHeader" part="AccessCredentials"/>
|
923
|
+
</input>
|
924
|
+
<output>
|
925
|
+
<SOAP:body use="encoded" namespace="urn:mms_MizGIS" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
|
926
|
+
</output>
|
927
|
+
</operation>
|
928
|
+
<operation name="getPoiInfo">
|
929
|
+
<SOAP:operation style="rpc" soapAction=""/>
|
930
|
+
<input>
|
931
|
+
<SOAP:body use="encoded" namespace="urn:mms_MizGIS" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
|
932
|
+
<SOAP:header use="literal" message="tns:mms_MizGISHeader" part="AccessCredentials"/>
|
933
|
+
</input>
|
934
|
+
<output>
|
935
|
+
<SOAP:body use="encoded" namespace="urn:mms_MizGIS" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
|
936
|
+
</output>
|
937
|
+
</operation>
|
938
|
+
<operation name="getListOfRoads">
|
939
|
+
<SOAP:operation style="rpc" soapAction=""/>
|
940
|
+
<input>
|
941
|
+
<SOAP:body use="encoded" namespace="urn:mms_MizGIS" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
|
942
|
+
<SOAP:header use="literal" message="tns:mms_MizGISHeader" part="AccessCredentials"/>
|
943
|
+
</input>
|
944
|
+
<output>
|
945
|
+
<SOAP:body use="encoded" namespace="urn:mms_MizGIS" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
|
946
|
+
</output>
|
947
|
+
</operation>
|
948
|
+
<operation name="getTrafficInfo">
|
949
|
+
<SOAP:operation style="rpc" soapAction=""/>
|
950
|
+
<input>
|
951
|
+
<SOAP:body use="encoded" namespace="urn:mms_MizGIS" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
|
952
|
+
<SOAP:header use="literal" message="tns:mms_MizGISHeader" part="AccessCredentials"/>
|
953
|
+
</input>
|
954
|
+
<output>
|
955
|
+
<SOAP:body use="encoded" namespace="urn:mms_MizGIS" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
|
956
|
+
</output>
|
957
|
+
</operation>
|
958
|
+
<operation name="getTrafficStatus">
|
959
|
+
<SOAP:operation style="rpc" soapAction=""/>
|
960
|
+
<input>
|
961
|
+
<SOAP:body use="encoded" namespace="urn:mms_MizGIS" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
|
962
|
+
<SOAP:header use="literal" message="tns:mms_MizGISHeader" part="AccessCredentials"/>
|
963
|
+
</input>
|
964
|
+
<output>
|
965
|
+
<SOAP:body use="encoded" namespace="urn:mms_MizGIS" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
|
966
|
+
</output>
|
967
|
+
</operation>
|
968
|
+
<operation name="findRoute">
|
969
|
+
<SOAP:operation style="rpc" soapAction=""/>
|
970
|
+
<input>
|
971
|
+
<SOAP:body use="encoded" namespace="urn:mms_MizGIS" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
|
972
|
+
<SOAP:header use="literal" message="tns:mms_MizGISHeader" part="AccessCredentials"/>
|
973
|
+
</input>
|
974
|
+
<output>
|
975
|
+
<SOAP:body use="encoded" namespace="urn:mms_MizGIS" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
|
976
|
+
</output>
|
977
|
+
</operation>
|
978
|
+
<operation name="getMap">
|
979
|
+
<SOAP:operation style="rpc" soapAction=""/>
|
980
|
+
<input>
|
981
|
+
<SOAP:body use="encoded" namespace="urn:mms_MizGIS" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
|
982
|
+
<SOAP:header use="literal" message="tns:mms_MizGISHeader" part="AccessCredentials"/>
|
983
|
+
</input>
|
984
|
+
<output>
|
985
|
+
<SOAP:body use="encoded" namespace="urn:mms_MizGIS" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
|
986
|
+
</output>
|
987
|
+
</operation>
|
988
|
+
<operation name="getMapAround">
|
989
|
+
<SOAP:operation style="rpc" soapAction=""/>
|
990
|
+
<input>
|
991
|
+
<SOAP:body use="encoded" namespace="urn:mms_MizGIS" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
|
992
|
+
<SOAP:header use="literal" message="tns:mms_MizGISHeader" part="AccessCredentials"/>
|
993
|
+
</input>
|
994
|
+
<output>
|
995
|
+
<SOAP:body use="encoded" namespace="urn:mms_MizGIS" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
|
996
|
+
</output>
|
997
|
+
</operation>
|
998
|
+
</binding>
|
999
|
+
|
1000
|
+
<service name="mms_MizGIS">
|
1001
|
+
<documentation>MizGIS Web Service</documentation>
|
1002
|
+
<port name="mms_MizGIS" binding="tns:mms_MizGIS">
|
1003
|
+
<SOAP:address location="http://www.verona.miz.it/mizgis-api/3.4/server"/>
|
1004
|
+
</port>
|
1005
|
+
</service>
|
1006
|
+
|
1007
|
+
</definitions>
|