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,35 @@
|
|
1
|
+
-----BEGIN CERTIFICATE-----
|
2
|
+
MIICPDCCAaUCEHC65B0Q2Sk0tjjKewPMur8wDQYJKoZIhvcNAQECBQAwXzELMAkG
|
3
|
+
A1UEBhMCVVMxFzAVBgNVBAoTDlZlcmlTaWduLCBJbmMuMTcwNQYDVQQLEy5DbGFz
|
4
|
+
cyAzIFB1YmxpYyBQcmltYXJ5IENlcnRpZmljYXRpb24gQXV0aG9yaXR5MB4XDTk2
|
5
|
+
MDEyOTAwMDAwMFoXDTI4MDgwMTIzNTk1OVowXzELMAkGA1UEBhMCVVMxFzAVBgNV
|
6
|
+
BAoTDlZlcmlTaWduLCBJbmMuMTcwNQYDVQQLEy5DbGFzcyAzIFB1YmxpYyBQcmlt
|
7
|
+
YXJ5IENlcnRpZmljYXRpb24gQXV0aG9yaXR5MIGfMA0GCSqGSIb3DQEBAQUAA4GN
|
8
|
+
ADCBiQKBgQDJXFme8huKARS0EN8EQNvjV69qRUCPhAwL0TPZ2RHP7gJYHyX3KqhE
|
9
|
+
BarsAx94f56TuZoAqiN91qyFomNFx3InzPRMxnVx0jnvT0Lwdd8KkMaOIG+YD/is
|
10
|
+
I19wKTakyYbnsZogy1Olhec9vn2a/iRFM9x2Fe0PonFkTGUugWhFpwIDAQABMA0G
|
11
|
+
CSqGSIb3DQEBAgUAA4GBALtMEivPLCYATxQT3ab7/AoRhIzzKBxnki98tsX63/Do
|
12
|
+
lbwdj2wsqFHMc9ikwFPwTtYmwHYBV4GSXiHx0bH/59AhWM1pF+NEHJwZRDmJXNyc
|
13
|
+
AA9WjQKZ7aKQRUzkuxCkPfAyAw7xzvjoyVGM5mKf5p/AfbdynMk2OmufTqj/ZA1k
|
14
|
+
-----END CERTIFICATE-----
|
15
|
+
-----BEGIN CERTIFICATE-----
|
16
|
+
MIIDgzCCAuygAwIBAgIQJUuKhThCzONY+MXdriJupDANBgkqhkiG9w0BAQUFADBf
|
17
|
+
MQswCQYDVQQGEwJVUzEXMBUGA1UEChMOVmVyaVNpZ24sIEluYy4xNzA1BgNVBAsT
|
18
|
+
LkNsYXNzIDMgUHVibGljIFByaW1hcnkgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkw
|
19
|
+
HhcNOTcwNDE3MDAwMDAwWhcNMTExMDI0MjM1OTU5WjCBujEfMB0GA1UEChMWVmVy
|
20
|
+
aVNpZ24gVHJ1c3QgTmV0d29yazEXMBUGA1UECxMOVmVyaVNpZ24sIEluYy4xMzAx
|
21
|
+
BgNVBAsTKlZlcmlTaWduIEludGVybmF0aW9uYWwgU2VydmVyIENBIC0gQ2xhc3Mg
|
22
|
+
MzFJMEcGA1UECxNAd3d3LnZlcmlzaWduLmNvbS9DUFMgSW5jb3JwLmJ5IFJlZi4g
|
23
|
+
TElBQklMSVRZIExURC4oYyk5NyBWZXJpU2lnbjCBnzANBgkqhkiG9w0BAQEFAAOB
|
24
|
+
jQAwgYkCgYEA2IKA6NYZAn0fhRg5JaJlK+G/1AXTvOY2O6rwTGxbtueqPHNFVbLx
|
25
|
+
veqXQu2aNAoV1Klc9UAl3dkHwTKydWzEyruj/lYncUOqY/UwPpMo5frxCTvzt01O
|
26
|
+
OfdcSVq4wR3Tsor+cDCVQsv+K1GLWjw6+SJPkLICp1OcTzTnqwSye28CAwEAAaOB
|
27
|
+
4zCB4DAPBgNVHRMECDAGAQH/AgEAMEQGA1UdIAQ9MDswOQYLYIZIAYb4RQEHAQEw
|
28
|
+
KjAoBggrBgEFBQcCARYcaHR0cHM6Ly93d3cudmVyaXNpZ24uY29tL0NQUzA0BgNV
|
29
|
+
HSUELTArBggrBgEFBQcDAQYIKwYBBQUHAwIGCWCGSAGG+EIEAQYKYIZIAYb4RQEI
|
30
|
+
ATALBgNVHQ8EBAMCAQYwEQYJYIZIAYb4QgEBBAQDAgEGMDEGA1UdHwQqMCgwJqAk
|
31
|
+
oCKGIGh0dHA6Ly9jcmwudmVyaXNpZ24uY29tL3BjYTMuY3JsMA0GCSqGSIb3DQEB
|
32
|
+
BQUAA4GBAAgB7ORolANC8XPxI6I63unx2sZUxCM+hurPajozq+qcBBQHNgYL+Yhv
|
33
|
+
1RPuKSvD5HKNRO3RrCAJLeH24RkFOLA9D59/+J4C3IYChmFOJl9en5IeDCSk9dBw
|
34
|
+
E88mw0M9SR2egi5SX7w+xmYpAY5Okiy8RnUDgqxz6dl+C2fvVFIa
|
35
|
+
-----END CERTIFICATE-----
|
@@ -0,0 +1,156 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
|
3
|
+
require 'defaultDriver.rb'
|
4
|
+
require 'soap/header/simplehandler'
|
5
|
+
include XSD
|
6
|
+
include SOAP
|
7
|
+
|
8
|
+
class SessionHeaderHandler < SOAP::Header::SimpleHandler
|
9
|
+
HeaderName = XSD::QName.new('urn:partner.soap.sforce.com', 'SessionHeader')
|
10
|
+
|
11
|
+
attr_accessor :sessionid
|
12
|
+
|
13
|
+
def initialize
|
14
|
+
super(HeaderName)
|
15
|
+
@sessionid = nil
|
16
|
+
end
|
17
|
+
|
18
|
+
def on_simple_outbound
|
19
|
+
if @sessionid
|
20
|
+
{'sessionId' => @sessionid}
|
21
|
+
else
|
22
|
+
nil # no header
|
23
|
+
end
|
24
|
+
end
|
25
|
+
end
|
26
|
+
|
27
|
+
class CallOptionsHandler < SOAP::Header::SimpleHandler
|
28
|
+
HeaderName = XSD::QName.new('urn:partner.soap.sforce.com', 'CallOptions')
|
29
|
+
|
30
|
+
attr_accessor :client
|
31
|
+
|
32
|
+
def initialize
|
33
|
+
super(HeaderName)
|
34
|
+
@client = nil
|
35
|
+
end
|
36
|
+
|
37
|
+
def on_simple_outbound
|
38
|
+
if @client
|
39
|
+
{'client' => @client}
|
40
|
+
else
|
41
|
+
nil # no header
|
42
|
+
end
|
43
|
+
end
|
44
|
+
end
|
45
|
+
|
46
|
+
sessionid_handler = SessionHeaderHandler.new
|
47
|
+
calloptions_handler = CallOptionsHandler.new
|
48
|
+
|
49
|
+
endpoint_url = ARGV.shift
|
50
|
+
obj = Soap.new(endpoint_url)
|
51
|
+
obj.headerhandler << sessionid_handler
|
52
|
+
obj.headerhandler << calloptions_handler
|
53
|
+
obj.wiredump_dev = STDOUT
|
54
|
+
|
55
|
+
p obj.delete(Delete.new([1, 2, 3]))
|
56
|
+
p obj.describeSObject(:sObjectType => "hello world")
|
57
|
+
p obj.describeSObject(DescribeSObject.new("hello world"))
|
58
|
+
|
59
|
+
if false
|
60
|
+
require 'soap/wsdlDriver'
|
61
|
+
obj = SOAP::WSDLDriverFactory.new("partner.wsdl").create_rpc_driver
|
62
|
+
end
|
63
|
+
|
64
|
+
ns = "urn:sobject.partner.soap.sforce.com"
|
65
|
+
|
66
|
+
if false
|
67
|
+
require 'orderedhash'
|
68
|
+
sobj = OrderedHash.new
|
69
|
+
sobj[QName.new(ns, "type")] = "Contact"
|
70
|
+
sobj[QName.new(ns, "Id")] = "012345678901234567"
|
71
|
+
#sobj["type"] = "Contact"
|
72
|
+
#sobj["Id"] = "012345678901234567"
|
73
|
+
sobj[:FirstName] = "Joe"
|
74
|
+
sobj[:lastname] = "Blow"
|
75
|
+
sobj[:Salutation] = "Mr."
|
76
|
+
sobj[:Phone] = "999.999.9999"
|
77
|
+
sobj[:Title] = "Purchasing Director"
|
78
|
+
obj.test_loopback_response << ''
|
79
|
+
obj.create(:sObjects => [sobj, sobj])
|
80
|
+
end
|
81
|
+
|
82
|
+
if false
|
83
|
+
ns1 = 'urn:partner.soap.sforce.com'
|
84
|
+
ns2 = "urn:sobject.partner.soap.sforce.com"
|
85
|
+
ele = SOAPElement.new(QName.new(ns1, 'create'))
|
86
|
+
sobj = SOAPElement.new(QName.new(ns1, 'sObjects'))
|
87
|
+
sobj.add(SOAPElement.new(QName.new(ns2, "type"), "Contact"))
|
88
|
+
sobj.add(SOAPElement.new(QName.new(ns2, 'Id'), "012345678901234567"))
|
89
|
+
sobj.add(SOAPElement.new(QName.new(nil, 'FirstName'), 'Joe'))
|
90
|
+
sobj.add(SOAPElement.new(QName.new(nil, 'lastname'), 'Blow'))
|
91
|
+
sobj.add(SOAPElement.new(QName.new(nil, 'Salutation'), 'Mr.'))
|
92
|
+
sobj.add(SOAPElement.new(QName.new(nil, 'Phone'), '999.999.9999'))
|
93
|
+
sobj.add(SOAPElement.new(QName.new(nil, 'Title'), 'Purchasing Director'))
|
94
|
+
ele.add(sobj)
|
95
|
+
ele.add(sobj)
|
96
|
+
obj.test_loopback_response << ''
|
97
|
+
obj.create(:sObjects => [sobj, sobj]) rescue nil
|
98
|
+
end
|
99
|
+
|
100
|
+
sobj = [
|
101
|
+
[QName.new(ns, "type"), "Contact"],
|
102
|
+
[QName.new(ns, "Id"), "012345678901234567"],
|
103
|
+
[:FirstName, "Joe"],
|
104
|
+
[:lastname, "Blow"],
|
105
|
+
[:Salutation, "Mr."],
|
106
|
+
[:Phone, "999.999.9999"],
|
107
|
+
[:Title, "Purchasing Director"]
|
108
|
+
]
|
109
|
+
obj.test_loopback_response << ''
|
110
|
+
obj.create(:sObjects => [sobj, sobj]) rescue nil
|
111
|
+
|
112
|
+
|
113
|
+
mycontact = SObject.new
|
114
|
+
mycontact.type = "Contact"
|
115
|
+
mycontact.Id = "012345678901234567"
|
116
|
+
mycontact.set_any([
|
117
|
+
[:FirstName, "Joe"],
|
118
|
+
[:lastname, "Blow"],
|
119
|
+
[:Salutation, "Mr."],
|
120
|
+
[:Phone, "999.999.9999"],
|
121
|
+
[:Title, "Purchasing Director"]
|
122
|
+
])
|
123
|
+
|
124
|
+
obj.test_loopback_response << ''
|
125
|
+
obj.create(Create.new([mycontact, mycontact])) rescue nil
|
126
|
+
exit
|
127
|
+
|
128
|
+
|
129
|
+
|
130
|
+
ns = "urn:sobject.partner.soap.sforce.com"
|
131
|
+
ele = SOAP::SOAPElement.new(XSD::QName.new(nil, "type"))
|
132
|
+
ele.text = "Contact"
|
133
|
+
ele.extraattr["xmlns"] = ns
|
134
|
+
|
135
|
+
sobj = SObject.new("Contact")
|
136
|
+
sobj.instance_eval do
|
137
|
+
@Id = "id"
|
138
|
+
@FirstName = "Joe"
|
139
|
+
@lastname = "Blow"
|
140
|
+
@Salutation = "Mr."
|
141
|
+
@Phone = "999.999.9999"
|
142
|
+
@Title = "Purchasing Director"
|
143
|
+
end
|
144
|
+
|
145
|
+
obj.create(Create.new([sobj]))
|
146
|
+
#obj.create(Create.new([SObject.new(ele, ["fields", "To", "Null"], "id", {"LastName" => "Spaceley"}) ]))
|
147
|
+
|
148
|
+
exit
|
149
|
+
|
150
|
+
calloptions_handler.client = 'client'
|
151
|
+
|
152
|
+
parameters = Login.new('NaHi', 'password')
|
153
|
+
login_result = obj.login(parameters).result
|
154
|
+
sessionid_handler.sessionid = login_result.sessionId
|
155
|
+
|
156
|
+
obj.delete(Delete.new([1, 2, 3]))
|
@@ -0,0 +1,1740 @@
|
|
1
|
+
require 'xsd/qname'
|
2
|
+
|
3
|
+
# {urn:partner.soap.sforce.com}login
|
4
|
+
class Login
|
5
|
+
@@schema_type = "login"
|
6
|
+
@@schema_ns = "urn:partner.soap.sforce.com"
|
7
|
+
@@schema_qualified = "true"
|
8
|
+
@@schema_element = [
|
9
|
+
["username", "SOAP::SOAPString"],
|
10
|
+
["password", "SOAP::SOAPString"]
|
11
|
+
]
|
12
|
+
|
13
|
+
attr_accessor :username
|
14
|
+
attr_accessor :password
|
15
|
+
|
16
|
+
def initialize(username = nil, password = nil)
|
17
|
+
@username = username
|
18
|
+
@password = password
|
19
|
+
end
|
20
|
+
end
|
21
|
+
|
22
|
+
# {urn:partner.soap.sforce.com}loginResponse
|
23
|
+
class LoginResponse
|
24
|
+
@@schema_type = "loginResponse"
|
25
|
+
@@schema_ns = "urn:partner.soap.sforce.com"
|
26
|
+
@@schema_qualified = "true"
|
27
|
+
@@schema_element = [
|
28
|
+
["result", "LoginResult"]
|
29
|
+
]
|
30
|
+
|
31
|
+
attr_accessor :result
|
32
|
+
|
33
|
+
def initialize(result = nil)
|
34
|
+
@result = result
|
35
|
+
end
|
36
|
+
end
|
37
|
+
|
38
|
+
# {urn:partner.soap.sforce.com}describeSObject
|
39
|
+
class DescribeSObject
|
40
|
+
@@schema_type = "describeSObject"
|
41
|
+
@@schema_ns = "urn:partner.soap.sforce.com"
|
42
|
+
@@schema_qualified = "true"
|
43
|
+
@@schema_element = [
|
44
|
+
["sObjectType", "SOAP::SOAPString"]
|
45
|
+
]
|
46
|
+
|
47
|
+
attr_accessor :sObjectType
|
48
|
+
|
49
|
+
def initialize(sObjectType = nil)
|
50
|
+
@sObjectType = sObjectType
|
51
|
+
end
|
52
|
+
end
|
53
|
+
|
54
|
+
# {urn:partner.soap.sforce.com}describeSObjectResponse
|
55
|
+
class DescribeSObjectResponse
|
56
|
+
@@schema_type = "describeSObjectResponse"
|
57
|
+
@@schema_ns = "urn:partner.soap.sforce.com"
|
58
|
+
@@schema_qualified = "true"
|
59
|
+
@@schema_element = [
|
60
|
+
["result", "DescribeSObjectResult"]
|
61
|
+
]
|
62
|
+
|
63
|
+
attr_accessor :result
|
64
|
+
|
65
|
+
def initialize(result = nil)
|
66
|
+
@result = result
|
67
|
+
end
|
68
|
+
end
|
69
|
+
|
70
|
+
# {urn:partner.soap.sforce.com}describeGlobal
|
71
|
+
class DescribeGlobal
|
72
|
+
@@schema_type = "describeGlobal"
|
73
|
+
@@schema_ns = "urn:partner.soap.sforce.com"
|
74
|
+
@@schema_qualified = "true"
|
75
|
+
@@schema_element = []
|
76
|
+
|
77
|
+
def initialize
|
78
|
+
end
|
79
|
+
end
|
80
|
+
|
81
|
+
# {urn:partner.soap.sforce.com}describeGlobalResponse
|
82
|
+
class DescribeGlobalResponse
|
83
|
+
@@schema_type = "describeGlobalResponse"
|
84
|
+
@@schema_ns = "urn:partner.soap.sforce.com"
|
85
|
+
@@schema_qualified = "true"
|
86
|
+
@@schema_element = [
|
87
|
+
["result", "DescribeGlobalResult"]
|
88
|
+
]
|
89
|
+
|
90
|
+
attr_accessor :result
|
91
|
+
|
92
|
+
def initialize(result = nil)
|
93
|
+
@result = result
|
94
|
+
end
|
95
|
+
end
|
96
|
+
|
97
|
+
# {urn:partner.soap.sforce.com}describeLayout
|
98
|
+
class DescribeLayout
|
99
|
+
@@schema_type = "describeLayout"
|
100
|
+
@@schema_ns = "urn:partner.soap.sforce.com"
|
101
|
+
@@schema_qualified = "true"
|
102
|
+
@@schema_element = [
|
103
|
+
["sObjectType", "SOAP::SOAPString"]
|
104
|
+
]
|
105
|
+
|
106
|
+
attr_accessor :sObjectType
|
107
|
+
|
108
|
+
def initialize(sObjectType = nil)
|
109
|
+
@sObjectType = sObjectType
|
110
|
+
end
|
111
|
+
end
|
112
|
+
|
113
|
+
# {urn:partner.soap.sforce.com}describeLayoutResponse
|
114
|
+
class DescribeLayoutResponse
|
115
|
+
@@schema_type = "describeLayoutResponse"
|
116
|
+
@@schema_ns = "urn:partner.soap.sforce.com"
|
117
|
+
@@schema_qualified = "true"
|
118
|
+
@@schema_element = [
|
119
|
+
["result", "DescribeLayoutResult"]
|
120
|
+
]
|
121
|
+
|
122
|
+
attr_accessor :result
|
123
|
+
|
124
|
+
def initialize(result = nil)
|
125
|
+
@result = result
|
126
|
+
end
|
127
|
+
end
|
128
|
+
|
129
|
+
# {urn:partner.soap.sforce.com}create
|
130
|
+
class Create < ::Array
|
131
|
+
@@schema_type = "sObject"
|
132
|
+
@@schema_ns = "urn:sobject.partner.soap.sforce.com"
|
133
|
+
@@schema_element = [
|
134
|
+
["sObjects", ["SObject[]", XSD::QName.new("urn:partner.soap.sforce.com", "sObjects")]]
|
135
|
+
]
|
136
|
+
end
|
137
|
+
|
138
|
+
# {urn:partner.soap.sforce.com}createResponse
|
139
|
+
class CreateResponse < ::Array
|
140
|
+
@@schema_type = "SaveResult"
|
141
|
+
@@schema_ns = "urn:partner.soap.sforce.com"
|
142
|
+
@@schema_element = [
|
143
|
+
["result", ["SaveResult[]", XSD::QName.new("urn:partner.soap.sforce.com", "result")]]
|
144
|
+
]
|
145
|
+
end
|
146
|
+
|
147
|
+
# {urn:partner.soap.sforce.com}update
|
148
|
+
class Update < ::Array
|
149
|
+
@@schema_type = "sObject"
|
150
|
+
@@schema_ns = "urn:sobject.partner.soap.sforce.com"
|
151
|
+
@@schema_element = [
|
152
|
+
["sObjects", ["SObject[]", XSD::QName.new("urn:partner.soap.sforce.com", "sObjects")]]
|
153
|
+
]
|
154
|
+
end
|
155
|
+
|
156
|
+
# {urn:partner.soap.sforce.com}updateResponse
|
157
|
+
class UpdateResponse < ::Array
|
158
|
+
@@schema_type = "SaveResult"
|
159
|
+
@@schema_ns = "urn:partner.soap.sforce.com"
|
160
|
+
@@schema_element = [
|
161
|
+
["result", ["SaveResult[]", XSD::QName.new("urn:partner.soap.sforce.com", "result")]]
|
162
|
+
]
|
163
|
+
end
|
164
|
+
|
165
|
+
# {urn:partner.soap.sforce.com}delete
|
166
|
+
class Delete < ::Array
|
167
|
+
@@schema_type = "ID"
|
168
|
+
@@schema_ns = "urn:partner.soap.sforce.com"
|
169
|
+
@@schema_element = [
|
170
|
+
["ids", ["SOAP::SOAPString[]", XSD::QName.new("urn:partner.soap.sforce.com", "ids")]]
|
171
|
+
]
|
172
|
+
end
|
173
|
+
|
174
|
+
# {urn:partner.soap.sforce.com}deleteResponse
|
175
|
+
class DeleteResponse < ::Array
|
176
|
+
@@schema_type = "DeleteResult"
|
177
|
+
@@schema_ns = "urn:partner.soap.sforce.com"
|
178
|
+
@@schema_element = [
|
179
|
+
["result", ["DeleteResult[]", XSD::QName.new("urn:partner.soap.sforce.com", "result")]]
|
180
|
+
]
|
181
|
+
end
|
182
|
+
|
183
|
+
# {urn:partner.soap.sforce.com}retrieve
|
184
|
+
class Retrieve
|
185
|
+
@@schema_type = "retrieve"
|
186
|
+
@@schema_ns = "urn:partner.soap.sforce.com"
|
187
|
+
@@schema_qualified = "true"
|
188
|
+
@@schema_element = [
|
189
|
+
["fieldList", "SOAP::SOAPString"],
|
190
|
+
["sObjectType", "SOAP::SOAPString"],
|
191
|
+
["ids", "SOAP::SOAPString[]"]
|
192
|
+
]
|
193
|
+
|
194
|
+
attr_accessor :fieldList
|
195
|
+
attr_accessor :sObjectType
|
196
|
+
attr_accessor :ids
|
197
|
+
|
198
|
+
def initialize(fieldList = nil, sObjectType = nil, ids = [])
|
199
|
+
@fieldList = fieldList
|
200
|
+
@sObjectType = sObjectType
|
201
|
+
@ids = ids
|
202
|
+
end
|
203
|
+
end
|
204
|
+
|
205
|
+
# {urn:partner.soap.sforce.com}retrieveResponse
|
206
|
+
class RetrieveResponse < ::Array
|
207
|
+
@@schema_type = "sObject"
|
208
|
+
@@schema_ns = "urn:sobject.partner.soap.sforce.com"
|
209
|
+
@@schema_element = [
|
210
|
+
["result", ["SObject[]", XSD::QName.new("urn:partner.soap.sforce.com", "result")]]
|
211
|
+
]
|
212
|
+
end
|
213
|
+
|
214
|
+
# {urn:partner.soap.sforce.com}convertLead
|
215
|
+
class ConvertLead < ::Array
|
216
|
+
@@schema_type = "LeadConvert"
|
217
|
+
@@schema_ns = "urn:partner.soap.sforce.com"
|
218
|
+
@@schema_element = [
|
219
|
+
["leadConverts", ["LeadConvert[]", XSD::QName.new("urn:partner.soap.sforce.com", "leadConverts")]]
|
220
|
+
]
|
221
|
+
end
|
222
|
+
|
223
|
+
# {urn:partner.soap.sforce.com}convertLeadResponse
|
224
|
+
class ConvertLeadResponse < ::Array
|
225
|
+
@@schema_type = "LeadConvertResult"
|
226
|
+
@@schema_ns = "urn:partner.soap.sforce.com"
|
227
|
+
@@schema_element = [
|
228
|
+
["result", ["LeadConvertResult[]", XSD::QName.new("urn:partner.soap.sforce.com", "result")]]
|
229
|
+
]
|
230
|
+
end
|
231
|
+
|
232
|
+
# {urn:partner.soap.sforce.com}getUpdated
|
233
|
+
class GetUpdated
|
234
|
+
@@schema_type = "getUpdated"
|
235
|
+
@@schema_ns = "urn:partner.soap.sforce.com"
|
236
|
+
@@schema_qualified = "true"
|
237
|
+
@@schema_element = [
|
238
|
+
["sObjectType", "SOAP::SOAPString"],
|
239
|
+
["startDate", "SOAP::SOAPDateTime"],
|
240
|
+
["endDate", "SOAP::SOAPDateTime"]
|
241
|
+
]
|
242
|
+
|
243
|
+
attr_accessor :sObjectType
|
244
|
+
attr_accessor :startDate
|
245
|
+
attr_accessor :endDate
|
246
|
+
|
247
|
+
def initialize(sObjectType = nil, startDate = nil, endDate = nil)
|
248
|
+
@sObjectType = sObjectType
|
249
|
+
@startDate = startDate
|
250
|
+
@endDate = endDate
|
251
|
+
end
|
252
|
+
end
|
253
|
+
|
254
|
+
# {urn:partner.soap.sforce.com}getUpdatedResponse
|
255
|
+
class GetUpdatedResponse
|
256
|
+
@@schema_type = "getUpdatedResponse"
|
257
|
+
@@schema_ns = "urn:partner.soap.sforce.com"
|
258
|
+
@@schema_qualified = "true"
|
259
|
+
@@schema_element = [
|
260
|
+
["result", "GetUpdatedResult"]
|
261
|
+
]
|
262
|
+
|
263
|
+
attr_accessor :result
|
264
|
+
|
265
|
+
def initialize(result = nil)
|
266
|
+
@result = result
|
267
|
+
end
|
268
|
+
end
|
269
|
+
|
270
|
+
# {urn:partner.soap.sforce.com}getDeleted
|
271
|
+
class GetDeleted
|
272
|
+
@@schema_type = "getDeleted"
|
273
|
+
@@schema_ns = "urn:partner.soap.sforce.com"
|
274
|
+
@@schema_qualified = "true"
|
275
|
+
@@schema_element = [
|
276
|
+
["sObjectType", "SOAP::SOAPString"],
|
277
|
+
["startDate", "SOAP::SOAPDateTime"],
|
278
|
+
["endDate", "SOAP::SOAPDateTime"]
|
279
|
+
]
|
280
|
+
|
281
|
+
attr_accessor :sObjectType
|
282
|
+
attr_accessor :startDate
|
283
|
+
attr_accessor :endDate
|
284
|
+
|
285
|
+
def initialize(sObjectType = nil, startDate = nil, endDate = nil)
|
286
|
+
@sObjectType = sObjectType
|
287
|
+
@startDate = startDate
|
288
|
+
@endDate = endDate
|
289
|
+
end
|
290
|
+
end
|
291
|
+
|
292
|
+
# {urn:partner.soap.sforce.com}getDeletedResponse
|
293
|
+
class GetDeletedResponse
|
294
|
+
@@schema_type = "getDeletedResponse"
|
295
|
+
@@schema_ns = "urn:partner.soap.sforce.com"
|
296
|
+
@@schema_qualified = "true"
|
297
|
+
@@schema_element = [
|
298
|
+
["result", "GetDeletedResult"]
|
299
|
+
]
|
300
|
+
|
301
|
+
attr_accessor :result
|
302
|
+
|
303
|
+
def initialize(result = nil)
|
304
|
+
@result = result
|
305
|
+
end
|
306
|
+
end
|
307
|
+
|
308
|
+
# {urn:partner.soap.sforce.com}query
|
309
|
+
class Query
|
310
|
+
@@schema_type = "query"
|
311
|
+
@@schema_ns = "urn:partner.soap.sforce.com"
|
312
|
+
@@schema_qualified = "true"
|
313
|
+
@@schema_element = [
|
314
|
+
["queryString", "SOAP::SOAPString"]
|
315
|
+
]
|
316
|
+
|
317
|
+
attr_accessor :queryString
|
318
|
+
|
319
|
+
def initialize(queryString = nil)
|
320
|
+
@queryString = queryString
|
321
|
+
end
|
322
|
+
end
|
323
|
+
|
324
|
+
# {urn:partner.soap.sforce.com}queryResponse
|
325
|
+
class QueryResponse
|
326
|
+
@@schema_type = "queryResponse"
|
327
|
+
@@schema_ns = "urn:partner.soap.sforce.com"
|
328
|
+
@@schema_qualified = "true"
|
329
|
+
@@schema_element = [
|
330
|
+
["result", "QueryResult"]
|
331
|
+
]
|
332
|
+
|
333
|
+
attr_accessor :result
|
334
|
+
|
335
|
+
def initialize(result = nil)
|
336
|
+
@result = result
|
337
|
+
end
|
338
|
+
end
|
339
|
+
|
340
|
+
# {urn:partner.soap.sforce.com}queryMore
|
341
|
+
class QueryMore
|
342
|
+
@@schema_type = "queryMore"
|
343
|
+
@@schema_ns = "urn:partner.soap.sforce.com"
|
344
|
+
@@schema_qualified = "true"
|
345
|
+
@@schema_element = [
|
346
|
+
["queryLocator", "SOAP::SOAPString"]
|
347
|
+
]
|
348
|
+
|
349
|
+
attr_accessor :queryLocator
|
350
|
+
|
351
|
+
def initialize(queryLocator = nil)
|
352
|
+
@queryLocator = queryLocator
|
353
|
+
end
|
354
|
+
end
|
355
|
+
|
356
|
+
# {urn:partner.soap.sforce.com}queryMoreResponse
|
357
|
+
class QueryMoreResponse
|
358
|
+
@@schema_type = "queryMoreResponse"
|
359
|
+
@@schema_ns = "urn:partner.soap.sforce.com"
|
360
|
+
@@schema_qualified = "true"
|
361
|
+
@@schema_element = [
|
362
|
+
["result", "QueryResult"]
|
363
|
+
]
|
364
|
+
|
365
|
+
attr_accessor :result
|
366
|
+
|
367
|
+
def initialize(result = nil)
|
368
|
+
@result = result
|
369
|
+
end
|
370
|
+
end
|
371
|
+
|
372
|
+
# {urn:partner.soap.sforce.com}search
|
373
|
+
class Search
|
374
|
+
@@schema_type = "search"
|
375
|
+
@@schema_ns = "urn:partner.soap.sforce.com"
|
376
|
+
@@schema_qualified = "true"
|
377
|
+
@@schema_element = [
|
378
|
+
["searchString", "SOAP::SOAPString"]
|
379
|
+
]
|
380
|
+
|
381
|
+
attr_accessor :searchString
|
382
|
+
|
383
|
+
def initialize(searchString = nil)
|
384
|
+
@searchString = searchString
|
385
|
+
end
|
386
|
+
end
|
387
|
+
|
388
|
+
# {urn:partner.soap.sforce.com}searchResponse
|
389
|
+
class SearchResponse
|
390
|
+
@@schema_type = "searchResponse"
|
391
|
+
@@schema_ns = "urn:partner.soap.sforce.com"
|
392
|
+
@@schema_qualified = "true"
|
393
|
+
@@schema_element = [
|
394
|
+
["result", "SearchResult"]
|
395
|
+
]
|
396
|
+
|
397
|
+
attr_accessor :result
|
398
|
+
|
399
|
+
def initialize(result = nil)
|
400
|
+
@result = result
|
401
|
+
end
|
402
|
+
end
|
403
|
+
|
404
|
+
# {urn:partner.soap.sforce.com}getServerTimestamp
|
405
|
+
class GetServerTimestamp
|
406
|
+
@@schema_type = "getServerTimestamp"
|
407
|
+
@@schema_ns = "urn:partner.soap.sforce.com"
|
408
|
+
@@schema_qualified = "true"
|
409
|
+
@@schema_element = []
|
410
|
+
|
411
|
+
def initialize
|
412
|
+
end
|
413
|
+
end
|
414
|
+
|
415
|
+
# {urn:partner.soap.sforce.com}getServerTimestampResponse
|
416
|
+
class GetServerTimestampResponse
|
417
|
+
@@schema_type = "getServerTimestampResponse"
|
418
|
+
@@schema_ns = "urn:partner.soap.sforce.com"
|
419
|
+
@@schema_qualified = "true"
|
420
|
+
@@schema_element = [
|
421
|
+
["result", "GetServerTimestampResult"]
|
422
|
+
]
|
423
|
+
|
424
|
+
attr_accessor :result
|
425
|
+
|
426
|
+
def initialize(result = nil)
|
427
|
+
@result = result
|
428
|
+
end
|
429
|
+
end
|
430
|
+
|
431
|
+
# {urn:partner.soap.sforce.com}setPassword
|
432
|
+
class SetPassword
|
433
|
+
@@schema_type = "setPassword"
|
434
|
+
@@schema_ns = "urn:partner.soap.sforce.com"
|
435
|
+
@@schema_qualified = "true"
|
436
|
+
@@schema_element = [
|
437
|
+
["userId", "SOAP::SOAPString"],
|
438
|
+
["password", "SOAP::SOAPString"]
|
439
|
+
]
|
440
|
+
|
441
|
+
attr_accessor :userId
|
442
|
+
attr_accessor :password
|
443
|
+
|
444
|
+
def initialize(userId = nil, password = nil)
|
445
|
+
@userId = userId
|
446
|
+
@password = password
|
447
|
+
end
|
448
|
+
end
|
449
|
+
|
450
|
+
# {urn:partner.soap.sforce.com}setPasswordResponse
|
451
|
+
class SetPasswordResponse
|
452
|
+
@@schema_type = "setPasswordResponse"
|
453
|
+
@@schema_ns = "urn:partner.soap.sforce.com"
|
454
|
+
@@schema_qualified = "true"
|
455
|
+
@@schema_element = [
|
456
|
+
["result", "SetPasswordResult"]
|
457
|
+
]
|
458
|
+
|
459
|
+
attr_accessor :result
|
460
|
+
|
461
|
+
def initialize(result = nil)
|
462
|
+
@result = result
|
463
|
+
end
|
464
|
+
end
|
465
|
+
|
466
|
+
# {urn:partner.soap.sforce.com}resetPassword
|
467
|
+
class ResetPassword
|
468
|
+
@@schema_type = "resetPassword"
|
469
|
+
@@schema_ns = "urn:partner.soap.sforce.com"
|
470
|
+
@@schema_qualified = "true"
|
471
|
+
@@schema_element = [
|
472
|
+
["userId", "SOAP::SOAPString"]
|
473
|
+
]
|
474
|
+
|
475
|
+
attr_accessor :userId
|
476
|
+
|
477
|
+
def initialize(userId = nil)
|
478
|
+
@userId = userId
|
479
|
+
end
|
480
|
+
end
|
481
|
+
|
482
|
+
# {urn:partner.soap.sforce.com}resetPasswordResponse
|
483
|
+
class ResetPasswordResponse
|
484
|
+
@@schema_type = "resetPasswordResponse"
|
485
|
+
@@schema_ns = "urn:partner.soap.sforce.com"
|
486
|
+
@@schema_qualified = "true"
|
487
|
+
@@schema_element = [
|
488
|
+
["result", "ResetPasswordResult"]
|
489
|
+
]
|
490
|
+
|
491
|
+
attr_accessor :result
|
492
|
+
|
493
|
+
def initialize(result = nil)
|
494
|
+
@result = result
|
495
|
+
end
|
496
|
+
end
|
497
|
+
|
498
|
+
# {urn:partner.soap.sforce.com}getUserInfo
|
499
|
+
class GetUserInfo
|
500
|
+
@@schema_type = "getUserInfo"
|
501
|
+
@@schema_ns = "urn:partner.soap.sforce.com"
|
502
|
+
@@schema_qualified = "true"
|
503
|
+
@@schema_element = []
|
504
|
+
|
505
|
+
def initialize
|
506
|
+
end
|
507
|
+
end
|
508
|
+
|
509
|
+
# {urn:partner.soap.sforce.com}getUserInfoResponse
|
510
|
+
class GetUserInfoResponse
|
511
|
+
@@schema_type = "getUserInfoResponse"
|
512
|
+
@@schema_ns = "urn:partner.soap.sforce.com"
|
513
|
+
@@schema_qualified = "true"
|
514
|
+
@@schema_element = [
|
515
|
+
["result", "GetUserInfoResult"]
|
516
|
+
]
|
517
|
+
|
518
|
+
attr_accessor :result
|
519
|
+
|
520
|
+
def initialize(result = nil)
|
521
|
+
@result = result
|
522
|
+
end
|
523
|
+
end
|
524
|
+
|
525
|
+
# {urn:partner.soap.sforce.com}SessionHeader
|
526
|
+
class SessionHeader
|
527
|
+
@@schema_type = "SessionHeader"
|
528
|
+
@@schema_ns = "urn:partner.soap.sforce.com"
|
529
|
+
@@schema_qualified = "true"
|
530
|
+
@@schema_element = [
|
531
|
+
["sessionId", "SOAP::SOAPString"]
|
532
|
+
]
|
533
|
+
|
534
|
+
attr_accessor :sessionId
|
535
|
+
|
536
|
+
def initialize(sessionId = nil)
|
537
|
+
@sessionId = sessionId
|
538
|
+
end
|
539
|
+
end
|
540
|
+
|
541
|
+
# {urn:partner.soap.sforce.com}CallOptions
|
542
|
+
class CallOptions
|
543
|
+
@@schema_type = "CallOptions"
|
544
|
+
@@schema_ns = "urn:partner.soap.sforce.com"
|
545
|
+
@@schema_qualified = "true"
|
546
|
+
@@schema_element = [
|
547
|
+
["client", "SOAP::SOAPString"]
|
548
|
+
]
|
549
|
+
|
550
|
+
attr_accessor :client
|
551
|
+
|
552
|
+
def initialize(client = nil)
|
553
|
+
@client = client
|
554
|
+
end
|
555
|
+
end
|
556
|
+
|
557
|
+
# {urn:partner.soap.sforce.com}QueryOptions
|
558
|
+
class QueryOptions
|
559
|
+
@@schema_type = "QueryOptions"
|
560
|
+
@@schema_ns = "urn:partner.soap.sforce.com"
|
561
|
+
@@schema_qualified = "true"
|
562
|
+
@@schema_element = [
|
563
|
+
["batchSize", "SOAP::SOAPInt"]
|
564
|
+
]
|
565
|
+
|
566
|
+
attr_accessor :batchSize
|
567
|
+
|
568
|
+
def initialize(batchSize = nil)
|
569
|
+
@batchSize = batchSize
|
570
|
+
end
|
571
|
+
end
|
572
|
+
|
573
|
+
# {urn:partner.soap.sforce.com}SaveOptions
|
574
|
+
class SaveOptions
|
575
|
+
@@schema_type = "SaveOptions"
|
576
|
+
@@schema_ns = "urn:partner.soap.sforce.com"
|
577
|
+
@@schema_qualified = "true"
|
578
|
+
@@schema_element = [
|
579
|
+
["autoAssign", "SOAP::SOAPBoolean"],
|
580
|
+
["assignmentRuleId", "SOAP::SOAPString"]
|
581
|
+
]
|
582
|
+
|
583
|
+
attr_accessor :autoAssign
|
584
|
+
attr_accessor :assignmentRuleId
|
585
|
+
|
586
|
+
def initialize(autoAssign = nil, assignmentRuleId = nil)
|
587
|
+
@autoAssign = autoAssign
|
588
|
+
@assignmentRuleId = assignmentRuleId
|
589
|
+
end
|
590
|
+
end
|
591
|
+
|
592
|
+
# {urn:partner.soap.sforce.com}AssignmentRuleHeader
|
593
|
+
class AssignmentRuleHeader
|
594
|
+
@@schema_type = "AssignmentRuleHeader"
|
595
|
+
@@schema_ns = "urn:partner.soap.sforce.com"
|
596
|
+
@@schema_qualified = "true"
|
597
|
+
@@schema_element = [
|
598
|
+
["assignmentRuleId", "SOAP::SOAPString"],
|
599
|
+
["useDefaultRule", "SOAP::SOAPBoolean"]
|
600
|
+
]
|
601
|
+
|
602
|
+
attr_accessor :assignmentRuleId
|
603
|
+
attr_accessor :useDefaultRule
|
604
|
+
|
605
|
+
def initialize(assignmentRuleId = nil, useDefaultRule = nil)
|
606
|
+
@assignmentRuleId = assignmentRuleId
|
607
|
+
@useDefaultRule = useDefaultRule
|
608
|
+
end
|
609
|
+
end
|
610
|
+
|
611
|
+
# {urn:sobject.partner.soap.sforce.com}sObject
|
612
|
+
class SObject
|
613
|
+
@@schema_type = "sObject"
|
614
|
+
@@schema_ns = "urn:sobject.partner.soap.sforce.com"
|
615
|
+
@@schema_element = [
|
616
|
+
["type", "SOAP::SOAPString"],
|
617
|
+
["fieldsToNull", "SOAP::SOAPString[]"],
|
618
|
+
["id", ["SOAP::SOAPString", XSD::QName.new("urn:sobject.partner.soap.sforce.com", "Id")]],
|
619
|
+
["any", [nil, XSD::QName.new("http://www.w3.org/2001/XMLSchema", "anyType")]]
|
620
|
+
]
|
621
|
+
|
622
|
+
attr_accessor :type
|
623
|
+
attr_accessor :fieldsToNull
|
624
|
+
attr_accessor :id
|
625
|
+
attr_reader :__xmlele_any
|
626
|
+
|
627
|
+
def set_any(elements)
|
628
|
+
@__xmlele_any = elements
|
629
|
+
end
|
630
|
+
|
631
|
+
def initialize(type = nil, fieldsToNull = [], id = nil)
|
632
|
+
@type = type
|
633
|
+
@fieldsToNull = fieldsToNull
|
634
|
+
@id = id
|
635
|
+
@__xmlele_any = nil
|
636
|
+
end
|
637
|
+
end
|
638
|
+
|
639
|
+
# {urn:partner.soap.sforce.com}QueryResult
|
640
|
+
class QueryResult
|
641
|
+
@@schema_type = "QueryResult"
|
642
|
+
@@schema_ns = "urn:partner.soap.sforce.com"
|
643
|
+
@@schema_element = [
|
644
|
+
["done", "SOAP::SOAPBoolean"],
|
645
|
+
["queryLocator", "SOAP::SOAPString"],
|
646
|
+
["records", "SObject[]"],
|
647
|
+
["size", "SOAP::SOAPInt"]
|
648
|
+
]
|
649
|
+
|
650
|
+
attr_accessor :done
|
651
|
+
attr_accessor :queryLocator
|
652
|
+
attr_accessor :records
|
653
|
+
attr_accessor :size
|
654
|
+
|
655
|
+
def initialize(done = nil, queryLocator = nil, records = [], size = nil)
|
656
|
+
@done = done
|
657
|
+
@queryLocator = queryLocator
|
658
|
+
@records = records
|
659
|
+
@size = size
|
660
|
+
end
|
661
|
+
end
|
662
|
+
|
663
|
+
# {urn:partner.soap.sforce.com}SearchResult
|
664
|
+
class SearchResult
|
665
|
+
@@schema_type = "SearchResult"
|
666
|
+
@@schema_ns = "urn:partner.soap.sforce.com"
|
667
|
+
@@schema_element = [
|
668
|
+
["searchRecords", "SearchRecord[]"],
|
669
|
+
["sforceReserved", "SOAP::SOAPString"]
|
670
|
+
]
|
671
|
+
|
672
|
+
attr_accessor :searchRecords
|
673
|
+
attr_accessor :sforceReserved
|
674
|
+
|
675
|
+
def initialize(searchRecords = [], sforceReserved = nil)
|
676
|
+
@searchRecords = searchRecords
|
677
|
+
@sforceReserved = sforceReserved
|
678
|
+
end
|
679
|
+
end
|
680
|
+
|
681
|
+
# {urn:partner.soap.sforce.com}SearchRecord
|
682
|
+
class SearchRecord
|
683
|
+
@@schema_type = "SearchRecord"
|
684
|
+
@@schema_ns = "urn:partner.soap.sforce.com"
|
685
|
+
@@schema_element = [
|
686
|
+
["record", "SObject"]
|
687
|
+
]
|
688
|
+
|
689
|
+
attr_accessor :record
|
690
|
+
|
691
|
+
def initialize(record = nil)
|
692
|
+
@record = record
|
693
|
+
end
|
694
|
+
end
|
695
|
+
|
696
|
+
# {urn:partner.soap.sforce.com}GetUpdatedResult
|
697
|
+
class GetUpdatedResult
|
698
|
+
@@schema_type = "GetUpdatedResult"
|
699
|
+
@@schema_ns = "urn:partner.soap.sforce.com"
|
700
|
+
@@schema_element = [
|
701
|
+
["ids", "SOAP::SOAPString[]"],
|
702
|
+
["sforceReserved", "SOAP::SOAPString"]
|
703
|
+
]
|
704
|
+
|
705
|
+
attr_accessor :ids
|
706
|
+
attr_accessor :sforceReserved
|
707
|
+
|
708
|
+
def initialize(ids = [], sforceReserved = nil)
|
709
|
+
@ids = ids
|
710
|
+
@sforceReserved = sforceReserved
|
711
|
+
end
|
712
|
+
end
|
713
|
+
|
714
|
+
# {urn:partner.soap.sforce.com}GetDeletedResult
|
715
|
+
class GetDeletedResult
|
716
|
+
@@schema_type = "GetDeletedResult"
|
717
|
+
@@schema_ns = "urn:partner.soap.sforce.com"
|
718
|
+
@@schema_element = [
|
719
|
+
["deletedRecords", "DeletedRecord[]"],
|
720
|
+
["sforceReserved", "SOAP::SOAPString"]
|
721
|
+
]
|
722
|
+
|
723
|
+
attr_accessor :deletedRecords
|
724
|
+
attr_accessor :sforceReserved
|
725
|
+
|
726
|
+
def initialize(deletedRecords = [], sforceReserved = nil)
|
727
|
+
@deletedRecords = deletedRecords
|
728
|
+
@sforceReserved = sforceReserved
|
729
|
+
end
|
730
|
+
end
|
731
|
+
|
732
|
+
# {urn:partner.soap.sforce.com}DeletedRecord
|
733
|
+
class DeletedRecord
|
734
|
+
@@schema_type = "DeletedRecord"
|
735
|
+
@@schema_ns = "urn:partner.soap.sforce.com"
|
736
|
+
@@schema_element = [
|
737
|
+
["deletedDate", "SOAP::SOAPDateTime"],
|
738
|
+
["id", "SOAP::SOAPString"]
|
739
|
+
]
|
740
|
+
|
741
|
+
attr_accessor :deletedDate
|
742
|
+
attr_accessor :id
|
743
|
+
|
744
|
+
def initialize(deletedDate = nil, id = nil)
|
745
|
+
@deletedDate = deletedDate
|
746
|
+
@id = id
|
747
|
+
end
|
748
|
+
end
|
749
|
+
|
750
|
+
# {urn:partner.soap.sforce.com}GetServerTimestampResult
|
751
|
+
class GetServerTimestampResult
|
752
|
+
@@schema_type = "GetServerTimestampResult"
|
753
|
+
@@schema_ns = "urn:partner.soap.sforce.com"
|
754
|
+
@@schema_element = [
|
755
|
+
["timestamp", "SOAP::SOAPDateTime"]
|
756
|
+
]
|
757
|
+
|
758
|
+
attr_accessor :timestamp
|
759
|
+
|
760
|
+
def initialize(timestamp = nil)
|
761
|
+
@timestamp = timestamp
|
762
|
+
end
|
763
|
+
end
|
764
|
+
|
765
|
+
# {urn:partner.soap.sforce.com}SetPasswordResult
|
766
|
+
class SetPasswordResult
|
767
|
+
@@schema_type = "SetPasswordResult"
|
768
|
+
@@schema_ns = "urn:partner.soap.sforce.com"
|
769
|
+
@@schema_element = []
|
770
|
+
|
771
|
+
def initialize
|
772
|
+
end
|
773
|
+
end
|
774
|
+
|
775
|
+
# {urn:partner.soap.sforce.com}ResetPasswordResult
|
776
|
+
class ResetPasswordResult
|
777
|
+
@@schema_type = "ResetPasswordResult"
|
778
|
+
@@schema_ns = "urn:partner.soap.sforce.com"
|
779
|
+
@@schema_element = [
|
780
|
+
["password", "SOAP::SOAPString"]
|
781
|
+
]
|
782
|
+
|
783
|
+
attr_accessor :password
|
784
|
+
|
785
|
+
def initialize(password = nil)
|
786
|
+
@password = password
|
787
|
+
end
|
788
|
+
end
|
789
|
+
|
790
|
+
# {urn:partner.soap.sforce.com}GetUserInfoResult
|
791
|
+
class GetUserInfoResult
|
792
|
+
@@schema_type = "GetUserInfoResult"
|
793
|
+
@@schema_ns = "urn:partner.soap.sforce.com"
|
794
|
+
@@schema_element = [
|
795
|
+
["currencySymbol", "SOAP::SOAPString"],
|
796
|
+
["organizationId", "SOAP::SOAPString"],
|
797
|
+
["organizationMultiCurrency", "SOAP::SOAPBoolean"],
|
798
|
+
["organizationName", "SOAP::SOAPString"],
|
799
|
+
["userDefaultCurrencyIsoCode", "SOAP::SOAPString"],
|
800
|
+
["userEmail", "SOAP::SOAPString"],
|
801
|
+
["userFullName", "SOAP::SOAPString"],
|
802
|
+
["userId", "SOAP::SOAPString"],
|
803
|
+
["userLanguage", "SOAP::SOAPString"],
|
804
|
+
["userLocale", "SOAP::SOAPString"],
|
805
|
+
["userTimeZone", "SOAP::SOAPString"]
|
806
|
+
]
|
807
|
+
|
808
|
+
attr_accessor :currencySymbol
|
809
|
+
attr_accessor :organizationId
|
810
|
+
attr_accessor :organizationMultiCurrency
|
811
|
+
attr_accessor :organizationName
|
812
|
+
attr_accessor :userDefaultCurrencyIsoCode
|
813
|
+
attr_accessor :userEmail
|
814
|
+
attr_accessor :userFullName
|
815
|
+
attr_accessor :userId
|
816
|
+
attr_accessor :userLanguage
|
817
|
+
attr_accessor :userLocale
|
818
|
+
attr_accessor :userTimeZone
|
819
|
+
|
820
|
+
def initialize(currencySymbol = nil, organizationId = nil, organizationMultiCurrency = nil, organizationName = nil, userDefaultCurrencyIsoCode = nil, userEmail = nil, userFullName = nil, userId = nil, userLanguage = nil, userLocale = nil, userTimeZone = nil)
|
821
|
+
@currencySymbol = currencySymbol
|
822
|
+
@organizationId = organizationId
|
823
|
+
@organizationMultiCurrency = organizationMultiCurrency
|
824
|
+
@organizationName = organizationName
|
825
|
+
@userDefaultCurrencyIsoCode = userDefaultCurrencyIsoCode
|
826
|
+
@userEmail = userEmail
|
827
|
+
@userFullName = userFullName
|
828
|
+
@userId = userId
|
829
|
+
@userLanguage = userLanguage
|
830
|
+
@userLocale = userLocale
|
831
|
+
@userTimeZone = userTimeZone
|
832
|
+
end
|
833
|
+
end
|
834
|
+
|
835
|
+
# {urn:partner.soap.sforce.com}LoginResult
|
836
|
+
class LoginResult
|
837
|
+
@@schema_type = "LoginResult"
|
838
|
+
@@schema_ns = "urn:partner.soap.sforce.com"
|
839
|
+
@@schema_element = [
|
840
|
+
["passwordExpired", "SOAP::SOAPBoolean"],
|
841
|
+
["serverUrl", "SOAP::SOAPString"],
|
842
|
+
["sessionId", "SOAP::SOAPString"],
|
843
|
+
["userId", "SOAP::SOAPString"]
|
844
|
+
]
|
845
|
+
|
846
|
+
attr_accessor :passwordExpired
|
847
|
+
attr_accessor :serverUrl
|
848
|
+
attr_accessor :sessionId
|
849
|
+
attr_accessor :userId
|
850
|
+
|
851
|
+
def initialize(passwordExpired = nil, serverUrl = nil, sessionId = nil, userId = nil)
|
852
|
+
@passwordExpired = passwordExpired
|
853
|
+
@serverUrl = serverUrl
|
854
|
+
@sessionId = sessionId
|
855
|
+
@userId = userId
|
856
|
+
end
|
857
|
+
end
|
858
|
+
|
859
|
+
# {urn:partner.soap.sforce.com}Error
|
860
|
+
class Error
|
861
|
+
@@schema_type = "Error"
|
862
|
+
@@schema_ns = "urn:partner.soap.sforce.com"
|
863
|
+
@@schema_element = [
|
864
|
+
["fields", "SOAP::SOAPString[]"],
|
865
|
+
["message", "SOAP::SOAPString"],
|
866
|
+
["statusCode", "SOAP::SOAPString"]
|
867
|
+
]
|
868
|
+
|
869
|
+
attr_accessor :fields
|
870
|
+
attr_accessor :message
|
871
|
+
attr_accessor :statusCode
|
872
|
+
|
873
|
+
def initialize(fields = [], message = nil, statusCode = nil)
|
874
|
+
@fields = fields
|
875
|
+
@message = message
|
876
|
+
@statusCode = statusCode
|
877
|
+
end
|
878
|
+
end
|
879
|
+
|
880
|
+
# {urn:partner.soap.sforce.com}SaveResult
|
881
|
+
class SaveResult
|
882
|
+
@@schema_type = "SaveResult"
|
883
|
+
@@schema_ns = "urn:partner.soap.sforce.com"
|
884
|
+
@@schema_element = [
|
885
|
+
["errors", "Error[]"],
|
886
|
+
["id", "SOAP::SOAPString"],
|
887
|
+
["success", "SOAP::SOAPBoolean"]
|
888
|
+
]
|
889
|
+
|
890
|
+
attr_accessor :errors
|
891
|
+
attr_accessor :id
|
892
|
+
attr_accessor :success
|
893
|
+
|
894
|
+
def initialize(errors = [], id = nil, success = nil)
|
895
|
+
@errors = errors
|
896
|
+
@id = id
|
897
|
+
@success = success
|
898
|
+
end
|
899
|
+
end
|
900
|
+
|
901
|
+
# {urn:partner.soap.sforce.com}DeleteResult
|
902
|
+
class DeleteResult
|
903
|
+
@@schema_type = "DeleteResult"
|
904
|
+
@@schema_ns = "urn:partner.soap.sforce.com"
|
905
|
+
@@schema_element = [
|
906
|
+
["errors", "Error[]"],
|
907
|
+
["id", "SOAP::SOAPString"],
|
908
|
+
["success", "SOAP::SOAPBoolean"]
|
909
|
+
]
|
910
|
+
|
911
|
+
attr_accessor :errors
|
912
|
+
attr_accessor :id
|
913
|
+
attr_accessor :success
|
914
|
+
|
915
|
+
def initialize(errors = [], id = nil, success = nil)
|
916
|
+
@errors = errors
|
917
|
+
@id = id
|
918
|
+
@success = success
|
919
|
+
end
|
920
|
+
end
|
921
|
+
|
922
|
+
# {urn:partner.soap.sforce.com}LeadConvert
|
923
|
+
class LeadConvert
|
924
|
+
@@schema_type = "LeadConvert"
|
925
|
+
@@schema_ns = "urn:partner.soap.sforce.com"
|
926
|
+
@@schema_element = [
|
927
|
+
["accountId", "SOAP::SOAPString"],
|
928
|
+
["contactId", "SOAP::SOAPString"],
|
929
|
+
["convertedStatus", "SOAP::SOAPString"],
|
930
|
+
["doNotCreateOpportunity", "SOAP::SOAPBoolean"],
|
931
|
+
["leadId", "SOAP::SOAPString"],
|
932
|
+
["opportunityName", "SOAP::SOAPString"],
|
933
|
+
["overwriteLeadSource", "SOAP::SOAPBoolean"],
|
934
|
+
["ownerId", "SOAP::SOAPString"],
|
935
|
+
["sendNotificationEmail", "SOAP::SOAPBoolean"]
|
936
|
+
]
|
937
|
+
|
938
|
+
attr_accessor :accountId
|
939
|
+
attr_accessor :contactId
|
940
|
+
attr_accessor :convertedStatus
|
941
|
+
attr_accessor :doNotCreateOpportunity
|
942
|
+
attr_accessor :leadId
|
943
|
+
attr_accessor :opportunityName
|
944
|
+
attr_accessor :overwriteLeadSource
|
945
|
+
attr_accessor :ownerId
|
946
|
+
attr_accessor :sendNotificationEmail
|
947
|
+
|
948
|
+
def initialize(accountId = nil, contactId = nil, convertedStatus = nil, doNotCreateOpportunity = nil, leadId = nil, opportunityName = nil, overwriteLeadSource = nil, ownerId = nil, sendNotificationEmail = nil)
|
949
|
+
@accountId = accountId
|
950
|
+
@contactId = contactId
|
951
|
+
@convertedStatus = convertedStatus
|
952
|
+
@doNotCreateOpportunity = doNotCreateOpportunity
|
953
|
+
@leadId = leadId
|
954
|
+
@opportunityName = opportunityName
|
955
|
+
@overwriteLeadSource = overwriteLeadSource
|
956
|
+
@ownerId = ownerId
|
957
|
+
@sendNotificationEmail = sendNotificationEmail
|
958
|
+
end
|
959
|
+
end
|
960
|
+
|
961
|
+
# {urn:partner.soap.sforce.com}LeadConvertResult
|
962
|
+
class LeadConvertResult
|
963
|
+
@@schema_type = "LeadConvertResult"
|
964
|
+
@@schema_ns = "urn:partner.soap.sforce.com"
|
965
|
+
@@schema_element = [
|
966
|
+
["accountId", "SOAP::SOAPString"],
|
967
|
+
["contactId", "SOAP::SOAPString"],
|
968
|
+
["errors", "Error[]"],
|
969
|
+
["leadId", "SOAP::SOAPString"],
|
970
|
+
["opportunityId", "SOAP::SOAPString"],
|
971
|
+
["success", "SOAP::SOAPBoolean"]
|
972
|
+
]
|
973
|
+
|
974
|
+
attr_accessor :accountId
|
975
|
+
attr_accessor :contactId
|
976
|
+
attr_accessor :errors
|
977
|
+
attr_accessor :leadId
|
978
|
+
attr_accessor :opportunityId
|
979
|
+
attr_accessor :success
|
980
|
+
|
981
|
+
def initialize(accountId = nil, contactId = nil, errors = [], leadId = nil, opportunityId = nil, success = nil)
|
982
|
+
@accountId = accountId
|
983
|
+
@contactId = contactId
|
984
|
+
@errors = errors
|
985
|
+
@leadId = leadId
|
986
|
+
@opportunityId = opportunityId
|
987
|
+
@success = success
|
988
|
+
end
|
989
|
+
end
|
990
|
+
|
991
|
+
# {urn:partner.soap.sforce.com}DescribeSObjectResult
|
992
|
+
class DescribeSObjectResult
|
993
|
+
@@schema_type = "DescribeSObjectResult"
|
994
|
+
@@schema_ns = "urn:partner.soap.sforce.com"
|
995
|
+
@@schema_element = [
|
996
|
+
["activateable", "SOAP::SOAPBoolean"],
|
997
|
+
["createable", "SOAP::SOAPBoolean"],
|
998
|
+
["custom", "SOAP::SOAPBoolean"],
|
999
|
+
["deletable", "SOAP::SOAPBoolean"],
|
1000
|
+
["fields", "Field[]"],
|
1001
|
+
["keyPrefix", "SOAP::SOAPString"],
|
1002
|
+
["label", "SOAP::SOAPString"],
|
1003
|
+
["layoutable", "SOAP::SOAPBoolean"],
|
1004
|
+
["name", "SOAP::SOAPString"],
|
1005
|
+
["queryable", "SOAP::SOAPBoolean"],
|
1006
|
+
["replicateable", "SOAP::SOAPBoolean"],
|
1007
|
+
["retrieveable", "SOAP::SOAPBoolean"],
|
1008
|
+
["searchable", "SOAP::SOAPBoolean"],
|
1009
|
+
["undeletable", "SOAP::SOAPBoolean"],
|
1010
|
+
["updateable", "SOAP::SOAPBoolean"],
|
1011
|
+
["urlDetail", "SOAP::SOAPString"],
|
1012
|
+
["urlEdit", "SOAP::SOAPString"],
|
1013
|
+
["urlNew", "SOAP::SOAPString"]
|
1014
|
+
]
|
1015
|
+
|
1016
|
+
attr_accessor :activateable
|
1017
|
+
attr_accessor :createable
|
1018
|
+
attr_accessor :custom
|
1019
|
+
attr_accessor :deletable
|
1020
|
+
attr_accessor :fields
|
1021
|
+
attr_accessor :keyPrefix
|
1022
|
+
attr_accessor :label
|
1023
|
+
attr_accessor :layoutable
|
1024
|
+
attr_accessor :name
|
1025
|
+
attr_accessor :queryable
|
1026
|
+
attr_accessor :replicateable
|
1027
|
+
attr_accessor :retrieveable
|
1028
|
+
attr_accessor :searchable
|
1029
|
+
attr_accessor :undeletable
|
1030
|
+
attr_accessor :updateable
|
1031
|
+
attr_accessor :urlDetail
|
1032
|
+
attr_accessor :urlEdit
|
1033
|
+
attr_accessor :urlNew
|
1034
|
+
|
1035
|
+
def initialize(activateable = nil, createable = nil, custom = nil, deletable = nil, fields = [], keyPrefix = nil, label = nil, layoutable = nil, name = nil, queryable = nil, replicateable = nil, retrieveable = nil, searchable = nil, undeletable = nil, updateable = nil, urlDetail = nil, urlEdit = nil, urlNew = nil)
|
1036
|
+
@activateable = activateable
|
1037
|
+
@createable = createable
|
1038
|
+
@custom = custom
|
1039
|
+
@deletable = deletable
|
1040
|
+
@fields = fields
|
1041
|
+
@keyPrefix = keyPrefix
|
1042
|
+
@label = label
|
1043
|
+
@layoutable = layoutable
|
1044
|
+
@name = name
|
1045
|
+
@queryable = queryable
|
1046
|
+
@replicateable = replicateable
|
1047
|
+
@retrieveable = retrieveable
|
1048
|
+
@searchable = searchable
|
1049
|
+
@undeletable = undeletable
|
1050
|
+
@updateable = updateable
|
1051
|
+
@urlDetail = urlDetail
|
1052
|
+
@urlEdit = urlEdit
|
1053
|
+
@urlNew = urlNew
|
1054
|
+
end
|
1055
|
+
end
|
1056
|
+
|
1057
|
+
# {urn:partner.soap.sforce.com}DescribeGlobalResult
|
1058
|
+
class DescribeGlobalResult
|
1059
|
+
@@schema_type = "DescribeGlobalResult"
|
1060
|
+
@@schema_ns = "urn:partner.soap.sforce.com"
|
1061
|
+
@@schema_element = [
|
1062
|
+
["encoding", "SOAP::SOAPString"],
|
1063
|
+
["maxBatchSize", "SOAP::SOAPInt"],
|
1064
|
+
["types", "SOAP::SOAPString[]"]
|
1065
|
+
]
|
1066
|
+
|
1067
|
+
attr_accessor :encoding
|
1068
|
+
attr_accessor :maxBatchSize
|
1069
|
+
attr_accessor :types
|
1070
|
+
|
1071
|
+
def initialize(encoding = nil, maxBatchSize = nil, types = [])
|
1072
|
+
@encoding = encoding
|
1073
|
+
@maxBatchSize = maxBatchSize
|
1074
|
+
@types = types
|
1075
|
+
end
|
1076
|
+
end
|
1077
|
+
|
1078
|
+
# {urn:partner.soap.sforce.com}Field
|
1079
|
+
class Field
|
1080
|
+
@@schema_type = "Field"
|
1081
|
+
@@schema_ns = "urn:partner.soap.sforce.com"
|
1082
|
+
@@schema_element = [
|
1083
|
+
["autoNumber", "SOAP::SOAPBoolean"],
|
1084
|
+
["byteLength", "SOAP::SOAPInt"],
|
1085
|
+
["createable", "SOAP::SOAPBoolean"],
|
1086
|
+
["custom", "SOAP::SOAPBoolean"],
|
1087
|
+
["defaultedOnCreate", "SOAP::SOAPBoolean"],
|
1088
|
+
["digits", "SOAP::SOAPInt"],
|
1089
|
+
["filterable", "SOAP::SOAPBoolean"],
|
1090
|
+
["label", "SOAP::SOAPString"],
|
1091
|
+
["length", "SOAP::SOAPInt"],
|
1092
|
+
["name", "SOAP::SOAPString"],
|
1093
|
+
["nameField", "SOAP::SOAPBoolean"],
|
1094
|
+
["nillable", "SOAP::SOAPBoolean"],
|
1095
|
+
["picklistValues", "PicklistEntry[]"],
|
1096
|
+
["precision", "SOAP::SOAPInt"],
|
1097
|
+
["referenceTo", "SOAP::SOAPString[]"],
|
1098
|
+
["restrictedPicklist", "SOAP::SOAPBoolean"],
|
1099
|
+
["scale", "SOAP::SOAPInt"],
|
1100
|
+
["soapType", "SOAP::SOAPString"],
|
1101
|
+
["type", "SOAP::SOAPString"],
|
1102
|
+
["updateable", "SOAP::SOAPBoolean"]
|
1103
|
+
]
|
1104
|
+
|
1105
|
+
attr_accessor :autoNumber
|
1106
|
+
attr_accessor :byteLength
|
1107
|
+
attr_accessor :createable
|
1108
|
+
attr_accessor :custom
|
1109
|
+
attr_accessor :defaultedOnCreate
|
1110
|
+
attr_accessor :digits
|
1111
|
+
attr_accessor :filterable
|
1112
|
+
attr_accessor :label
|
1113
|
+
attr_accessor :length
|
1114
|
+
attr_accessor :name
|
1115
|
+
attr_accessor :nameField
|
1116
|
+
attr_accessor :nillable
|
1117
|
+
attr_accessor :picklistValues
|
1118
|
+
attr_accessor :precision
|
1119
|
+
attr_accessor :referenceTo
|
1120
|
+
attr_accessor :restrictedPicklist
|
1121
|
+
attr_accessor :scale
|
1122
|
+
attr_accessor :soapType
|
1123
|
+
attr_accessor :type
|
1124
|
+
attr_accessor :updateable
|
1125
|
+
|
1126
|
+
def initialize(autoNumber = nil, byteLength = nil, createable = nil, custom = nil, defaultedOnCreate = nil, digits = nil, filterable = nil, label = nil, length = nil, name = nil, nameField = nil, nillable = nil, picklistValues = [], precision = nil, referenceTo = [], restrictedPicklist = nil, scale = nil, soapType = nil, type = nil, updateable = nil)
|
1127
|
+
@autoNumber = autoNumber
|
1128
|
+
@byteLength = byteLength
|
1129
|
+
@createable = createable
|
1130
|
+
@custom = custom
|
1131
|
+
@defaultedOnCreate = defaultedOnCreate
|
1132
|
+
@digits = digits
|
1133
|
+
@filterable = filterable
|
1134
|
+
@label = label
|
1135
|
+
@length = length
|
1136
|
+
@name = name
|
1137
|
+
@nameField = nameField
|
1138
|
+
@nillable = nillable
|
1139
|
+
@picklistValues = picklistValues
|
1140
|
+
@precision = precision
|
1141
|
+
@referenceTo = referenceTo
|
1142
|
+
@restrictedPicklist = restrictedPicklist
|
1143
|
+
@scale = scale
|
1144
|
+
@soapType = soapType
|
1145
|
+
@type = type
|
1146
|
+
@updateable = updateable
|
1147
|
+
end
|
1148
|
+
end
|
1149
|
+
|
1150
|
+
# {urn:partner.soap.sforce.com}PicklistEntry
|
1151
|
+
class PicklistEntry
|
1152
|
+
@@schema_type = "PicklistEntry"
|
1153
|
+
@@schema_ns = "urn:partner.soap.sforce.com"
|
1154
|
+
@@schema_element = [
|
1155
|
+
["active", "SOAP::SOAPBoolean"],
|
1156
|
+
["defaultValue", "SOAP::SOAPBoolean"],
|
1157
|
+
["label", "SOAP::SOAPString"],
|
1158
|
+
["value", "SOAP::SOAPString"]
|
1159
|
+
]
|
1160
|
+
|
1161
|
+
attr_accessor :active
|
1162
|
+
attr_accessor :defaultValue
|
1163
|
+
attr_accessor :label
|
1164
|
+
attr_accessor :value
|
1165
|
+
|
1166
|
+
def initialize(active = nil, defaultValue = nil, label = nil, value = nil)
|
1167
|
+
@active = active
|
1168
|
+
@defaultValue = defaultValue
|
1169
|
+
@label = label
|
1170
|
+
@value = value
|
1171
|
+
end
|
1172
|
+
end
|
1173
|
+
|
1174
|
+
# {urn:partner.soap.sforce.com}DescribeLayoutResult
|
1175
|
+
class DescribeLayoutResult
|
1176
|
+
@@schema_type = "DescribeLayoutResult"
|
1177
|
+
@@schema_ns = "urn:partner.soap.sforce.com"
|
1178
|
+
@@schema_element = [
|
1179
|
+
["layouts", "DescribeLayout[]"],
|
1180
|
+
["recordTypeMappings", "RecordTypeMapping[]"]
|
1181
|
+
]
|
1182
|
+
|
1183
|
+
attr_accessor :layouts
|
1184
|
+
attr_accessor :recordTypeMappings
|
1185
|
+
|
1186
|
+
def initialize(layouts = [], recordTypeMappings = [])
|
1187
|
+
@layouts = layouts
|
1188
|
+
@recordTypeMappings = recordTypeMappings
|
1189
|
+
end
|
1190
|
+
end
|
1191
|
+
|
1192
|
+
# {urn:partner.soap.sforce.com}DescribeLayout
|
1193
|
+
class DescribeLayout
|
1194
|
+
@@schema_type = "DescribeLayout"
|
1195
|
+
@@schema_ns = "urn:partner.soap.sforce.com"
|
1196
|
+
@@schema_element = [
|
1197
|
+
["detailLayoutSections", "DescribeLayoutSection[]"],
|
1198
|
+
["editLayoutSections", "DescribeLayoutSection[]"],
|
1199
|
+
["id", "SOAP::SOAPString"]
|
1200
|
+
]
|
1201
|
+
|
1202
|
+
attr_accessor :detailLayoutSections
|
1203
|
+
attr_accessor :editLayoutSections
|
1204
|
+
attr_accessor :id
|
1205
|
+
|
1206
|
+
def initialize(detailLayoutSections = [], editLayoutSections = [], id = nil)
|
1207
|
+
@detailLayoutSections = detailLayoutSections
|
1208
|
+
@editLayoutSections = editLayoutSections
|
1209
|
+
@id = id
|
1210
|
+
end
|
1211
|
+
end
|
1212
|
+
|
1213
|
+
# {urn:partner.soap.sforce.com}DescribeLayoutSection
|
1214
|
+
class DescribeLayoutSection
|
1215
|
+
@@schema_type = "DescribeLayoutSection"
|
1216
|
+
@@schema_ns = "urn:partner.soap.sforce.com"
|
1217
|
+
@@schema_element = [
|
1218
|
+
["columns", "SOAP::SOAPInt"],
|
1219
|
+
["heading", "SOAP::SOAPString"],
|
1220
|
+
["layoutRows", "DescribeLayoutRow[]"],
|
1221
|
+
["rows", "SOAP::SOAPInt"],
|
1222
|
+
["useHeading", "SOAP::SOAPBoolean"]
|
1223
|
+
]
|
1224
|
+
|
1225
|
+
attr_accessor :columns
|
1226
|
+
attr_accessor :heading
|
1227
|
+
attr_accessor :layoutRows
|
1228
|
+
attr_accessor :rows
|
1229
|
+
attr_accessor :useHeading
|
1230
|
+
|
1231
|
+
def initialize(columns = nil, heading = nil, layoutRows = [], rows = nil, useHeading = nil)
|
1232
|
+
@columns = columns
|
1233
|
+
@heading = heading
|
1234
|
+
@layoutRows = layoutRows
|
1235
|
+
@rows = rows
|
1236
|
+
@useHeading = useHeading
|
1237
|
+
end
|
1238
|
+
end
|
1239
|
+
|
1240
|
+
# {urn:partner.soap.sforce.com}DescribeLayoutRow
|
1241
|
+
class DescribeLayoutRow
|
1242
|
+
@@schema_type = "DescribeLayoutRow"
|
1243
|
+
@@schema_ns = "urn:partner.soap.sforce.com"
|
1244
|
+
@@schema_element = [
|
1245
|
+
["layoutItems", "DescribeLayoutItem[]"],
|
1246
|
+
["numItems", "SOAP::SOAPInt"]
|
1247
|
+
]
|
1248
|
+
|
1249
|
+
attr_accessor :layoutItems
|
1250
|
+
attr_accessor :numItems
|
1251
|
+
|
1252
|
+
def initialize(layoutItems = [], numItems = nil)
|
1253
|
+
@layoutItems = layoutItems
|
1254
|
+
@numItems = numItems
|
1255
|
+
end
|
1256
|
+
end
|
1257
|
+
|
1258
|
+
# {urn:partner.soap.sforce.com}DescribeLayoutItem
|
1259
|
+
class DescribeLayoutItem
|
1260
|
+
@@schema_type = "DescribeLayoutItem"
|
1261
|
+
@@schema_ns = "urn:partner.soap.sforce.com"
|
1262
|
+
@@schema_element = [
|
1263
|
+
["editable", "SOAP::SOAPBoolean"],
|
1264
|
+
["label", "SOAP::SOAPString"],
|
1265
|
+
["layoutComponents", "DescribeLayoutComponent[]"],
|
1266
|
+
["placeholder", "SOAP::SOAPBoolean"],
|
1267
|
+
["required", "SOAP::SOAPBoolean"]
|
1268
|
+
]
|
1269
|
+
|
1270
|
+
attr_accessor :editable
|
1271
|
+
attr_accessor :label
|
1272
|
+
attr_accessor :layoutComponents
|
1273
|
+
attr_accessor :placeholder
|
1274
|
+
attr_accessor :required
|
1275
|
+
|
1276
|
+
def initialize(editable = nil, label = nil, layoutComponents = [], placeholder = nil, required = nil)
|
1277
|
+
@editable = editable
|
1278
|
+
@label = label
|
1279
|
+
@layoutComponents = layoutComponents
|
1280
|
+
@placeholder = placeholder
|
1281
|
+
@required = required
|
1282
|
+
end
|
1283
|
+
end
|
1284
|
+
|
1285
|
+
# {urn:partner.soap.sforce.com}DescribeLayoutComponent
|
1286
|
+
class DescribeLayoutComponent
|
1287
|
+
@@schema_type = "DescribeLayoutComponent"
|
1288
|
+
@@schema_ns = "urn:partner.soap.sforce.com"
|
1289
|
+
@@schema_element = [
|
1290
|
+
["tabOrder", "SOAP::SOAPInt"],
|
1291
|
+
["type", "SOAP::SOAPString"],
|
1292
|
+
["value", "SOAP::SOAPString"]
|
1293
|
+
]
|
1294
|
+
|
1295
|
+
attr_accessor :tabOrder
|
1296
|
+
attr_accessor :type
|
1297
|
+
attr_accessor :value
|
1298
|
+
|
1299
|
+
def initialize(tabOrder = nil, type = nil, value = nil)
|
1300
|
+
@tabOrder = tabOrder
|
1301
|
+
@type = type
|
1302
|
+
@value = value
|
1303
|
+
end
|
1304
|
+
end
|
1305
|
+
|
1306
|
+
# {urn:partner.soap.sforce.com}RecordTypeMapping
|
1307
|
+
class RecordTypeMapping
|
1308
|
+
@@schema_type = "RecordTypeMapping"
|
1309
|
+
@@schema_ns = "urn:partner.soap.sforce.com"
|
1310
|
+
@@schema_element = [
|
1311
|
+
["available", "SOAP::SOAPBoolean"],
|
1312
|
+
["defaultRecordTypeMapping", "SOAP::SOAPBoolean"],
|
1313
|
+
["layoutId", "SOAP::SOAPString"],
|
1314
|
+
["name", "SOAP::SOAPString"],
|
1315
|
+
["picklistsForRecordType", "PicklistForRecordType[]"],
|
1316
|
+
["recordTypeId", "SOAP::SOAPString"]
|
1317
|
+
]
|
1318
|
+
|
1319
|
+
attr_accessor :available
|
1320
|
+
attr_accessor :defaultRecordTypeMapping
|
1321
|
+
attr_accessor :layoutId
|
1322
|
+
attr_accessor :name
|
1323
|
+
attr_accessor :picklistsForRecordType
|
1324
|
+
attr_accessor :recordTypeId
|
1325
|
+
|
1326
|
+
def initialize(available = nil, defaultRecordTypeMapping = nil, layoutId = nil, name = nil, picklistsForRecordType = [], recordTypeId = nil)
|
1327
|
+
@available = available
|
1328
|
+
@defaultRecordTypeMapping = defaultRecordTypeMapping
|
1329
|
+
@layoutId = layoutId
|
1330
|
+
@name = name
|
1331
|
+
@picklistsForRecordType = picklistsForRecordType
|
1332
|
+
@recordTypeId = recordTypeId
|
1333
|
+
end
|
1334
|
+
end
|
1335
|
+
|
1336
|
+
# {urn:partner.soap.sforce.com}PicklistForRecordType
|
1337
|
+
class PicklistForRecordType
|
1338
|
+
@@schema_type = "PicklistForRecordType"
|
1339
|
+
@@schema_ns = "urn:partner.soap.sforce.com"
|
1340
|
+
@@schema_element = [
|
1341
|
+
["picklistName", "SOAP::SOAPString"],
|
1342
|
+
["picklistValues", "PicklistEntry[]"]
|
1343
|
+
]
|
1344
|
+
|
1345
|
+
attr_accessor :picklistName
|
1346
|
+
attr_accessor :picklistValues
|
1347
|
+
|
1348
|
+
def initialize(picklistName = nil, picklistValues = [])
|
1349
|
+
@picklistName = picklistName
|
1350
|
+
@picklistValues = picklistValues
|
1351
|
+
end
|
1352
|
+
end
|
1353
|
+
|
1354
|
+
# {urn:fault.partner.soap.sforce.com}ApiFault
|
1355
|
+
class ApiFault
|
1356
|
+
@@schema_type = "ApiFault"
|
1357
|
+
@@schema_ns = "urn:fault.partner.soap.sforce.com"
|
1358
|
+
@@schema_element = [
|
1359
|
+
["exceptionCode", "SOAP::SOAPString"],
|
1360
|
+
["exceptionMessage", "SOAP::SOAPString"]
|
1361
|
+
]
|
1362
|
+
|
1363
|
+
attr_accessor :exceptionCode
|
1364
|
+
attr_accessor :exceptionMessage
|
1365
|
+
|
1366
|
+
def initialize(exceptionCode = nil, exceptionMessage = nil)
|
1367
|
+
@exceptionCode = exceptionCode
|
1368
|
+
@exceptionMessage = exceptionMessage
|
1369
|
+
end
|
1370
|
+
end
|
1371
|
+
|
1372
|
+
# {urn:fault.partner.soap.sforce.com}LoginFault
|
1373
|
+
class LoginFault
|
1374
|
+
@@schema_type = "LoginFault"
|
1375
|
+
@@schema_ns = "urn:fault.partner.soap.sforce.com"
|
1376
|
+
@@schema_element = [
|
1377
|
+
["exceptionCode", "SOAP::SOAPString"],
|
1378
|
+
["exceptionMessage", "SOAP::SOAPString"]
|
1379
|
+
]
|
1380
|
+
|
1381
|
+
attr_accessor :exceptionCode
|
1382
|
+
attr_accessor :exceptionMessage
|
1383
|
+
|
1384
|
+
def initialize(exceptionCode = nil, exceptionMessage = nil)
|
1385
|
+
@exceptionCode = exceptionCode
|
1386
|
+
@exceptionMessage = exceptionMessage
|
1387
|
+
end
|
1388
|
+
end
|
1389
|
+
|
1390
|
+
# {urn:fault.partner.soap.sforce.com}InvalidSObjectFault
|
1391
|
+
class InvalidSObjectFault
|
1392
|
+
@@schema_type = "InvalidSObjectFault"
|
1393
|
+
@@schema_ns = "urn:fault.partner.soap.sforce.com"
|
1394
|
+
@@schema_element = [
|
1395
|
+
["exceptionCode", "SOAP::SOAPString"],
|
1396
|
+
["exceptionMessage", "SOAP::SOAPString"]
|
1397
|
+
]
|
1398
|
+
|
1399
|
+
attr_accessor :exceptionCode
|
1400
|
+
attr_accessor :exceptionMessage
|
1401
|
+
|
1402
|
+
def initialize(exceptionCode = nil, exceptionMessage = nil)
|
1403
|
+
@exceptionCode = exceptionCode
|
1404
|
+
@exceptionMessage = exceptionMessage
|
1405
|
+
end
|
1406
|
+
end
|
1407
|
+
|
1408
|
+
# {urn:fault.partner.soap.sforce.com}InvalidFieldFault
|
1409
|
+
class InvalidFieldFault
|
1410
|
+
@@schema_type = "InvalidFieldFault"
|
1411
|
+
@@schema_ns = "urn:fault.partner.soap.sforce.com"
|
1412
|
+
@@schema_element = [
|
1413
|
+
["exceptionCode", "SOAP::SOAPString"],
|
1414
|
+
["exceptionMessage", "SOAP::SOAPString"]
|
1415
|
+
]
|
1416
|
+
|
1417
|
+
attr_accessor :exceptionCode
|
1418
|
+
attr_accessor :exceptionMessage
|
1419
|
+
|
1420
|
+
def initialize(exceptionCode = nil, exceptionMessage = nil)
|
1421
|
+
@exceptionCode = exceptionCode
|
1422
|
+
@exceptionMessage = exceptionMessage
|
1423
|
+
end
|
1424
|
+
end
|
1425
|
+
|
1426
|
+
# {urn:fault.partner.soap.sforce.com}MalformedQueryFault
|
1427
|
+
class MalformedQueryFault
|
1428
|
+
@@schema_type = "MalformedQueryFault"
|
1429
|
+
@@schema_ns = "urn:fault.partner.soap.sforce.com"
|
1430
|
+
@@schema_element = [
|
1431
|
+
["exceptionCode", "SOAP::SOAPString"],
|
1432
|
+
["exceptionMessage", "SOAP::SOAPString"]
|
1433
|
+
]
|
1434
|
+
|
1435
|
+
attr_accessor :exceptionCode
|
1436
|
+
attr_accessor :exceptionMessage
|
1437
|
+
|
1438
|
+
def initialize(exceptionCode = nil, exceptionMessage = nil)
|
1439
|
+
@exceptionCode = exceptionCode
|
1440
|
+
@exceptionMessage = exceptionMessage
|
1441
|
+
end
|
1442
|
+
end
|
1443
|
+
|
1444
|
+
# {urn:fault.partner.soap.sforce.com}InvalidQueryLocatorFault
|
1445
|
+
class InvalidQueryLocatorFault
|
1446
|
+
@@schema_type = "InvalidQueryLocatorFault"
|
1447
|
+
@@schema_ns = "urn:fault.partner.soap.sforce.com"
|
1448
|
+
@@schema_element = [
|
1449
|
+
["exceptionCode", "SOAP::SOAPString"],
|
1450
|
+
["exceptionMessage", "SOAP::SOAPString"]
|
1451
|
+
]
|
1452
|
+
|
1453
|
+
attr_accessor :exceptionCode
|
1454
|
+
attr_accessor :exceptionMessage
|
1455
|
+
|
1456
|
+
def initialize(exceptionCode = nil, exceptionMessage = nil)
|
1457
|
+
@exceptionCode = exceptionCode
|
1458
|
+
@exceptionMessage = exceptionMessage
|
1459
|
+
end
|
1460
|
+
end
|
1461
|
+
|
1462
|
+
# {urn:fault.partner.soap.sforce.com}MalformedSearchFault
|
1463
|
+
class MalformedSearchFault
|
1464
|
+
@@schema_type = "MalformedSearchFault"
|
1465
|
+
@@schema_ns = "urn:fault.partner.soap.sforce.com"
|
1466
|
+
@@schema_element = [
|
1467
|
+
["exceptionCode", "SOAP::SOAPString"],
|
1468
|
+
["exceptionMessage", "SOAP::SOAPString"]
|
1469
|
+
]
|
1470
|
+
|
1471
|
+
attr_accessor :exceptionCode
|
1472
|
+
attr_accessor :exceptionMessage
|
1473
|
+
|
1474
|
+
def initialize(exceptionCode = nil, exceptionMessage = nil)
|
1475
|
+
@exceptionCode = exceptionCode
|
1476
|
+
@exceptionMessage = exceptionMessage
|
1477
|
+
end
|
1478
|
+
end
|
1479
|
+
|
1480
|
+
# {urn:fault.partner.soap.sforce.com}InvalidNewPasswordFault
|
1481
|
+
class InvalidNewPasswordFault
|
1482
|
+
@@schema_type = "InvalidNewPasswordFault"
|
1483
|
+
@@schema_ns = "urn:fault.partner.soap.sforce.com"
|
1484
|
+
@@schema_element = [
|
1485
|
+
["exceptionCode", "SOAP::SOAPString"],
|
1486
|
+
["exceptionMessage", "SOAP::SOAPString"]
|
1487
|
+
]
|
1488
|
+
|
1489
|
+
attr_accessor :exceptionCode
|
1490
|
+
attr_accessor :exceptionMessage
|
1491
|
+
|
1492
|
+
def initialize(exceptionCode = nil, exceptionMessage = nil)
|
1493
|
+
@exceptionCode = exceptionCode
|
1494
|
+
@exceptionMessage = exceptionMessage
|
1495
|
+
end
|
1496
|
+
end
|
1497
|
+
|
1498
|
+
# {urn:fault.partner.soap.sforce.com}InvalidIdFault
|
1499
|
+
class InvalidIdFault
|
1500
|
+
@@schema_type = "InvalidIdFault"
|
1501
|
+
@@schema_ns = "urn:fault.partner.soap.sforce.com"
|
1502
|
+
@@schema_element = [
|
1503
|
+
["exceptionCode", "SOAP::SOAPString"],
|
1504
|
+
["exceptionMessage", "SOAP::SOAPString"]
|
1505
|
+
]
|
1506
|
+
|
1507
|
+
attr_accessor :exceptionCode
|
1508
|
+
attr_accessor :exceptionMessage
|
1509
|
+
|
1510
|
+
def initialize(exceptionCode = nil, exceptionMessage = nil)
|
1511
|
+
@exceptionCode = exceptionCode
|
1512
|
+
@exceptionMessage = exceptionMessage
|
1513
|
+
end
|
1514
|
+
end
|
1515
|
+
|
1516
|
+
# {urn:fault.partner.soap.sforce.com}UnexpectedErrorFault
|
1517
|
+
class UnexpectedErrorFault
|
1518
|
+
@@schema_type = "UnexpectedErrorFault"
|
1519
|
+
@@schema_ns = "urn:fault.partner.soap.sforce.com"
|
1520
|
+
@@schema_element = [
|
1521
|
+
["exceptionCode", "SOAP::SOAPString"],
|
1522
|
+
["exceptionMessage", "SOAP::SOAPString"]
|
1523
|
+
]
|
1524
|
+
|
1525
|
+
attr_accessor :exceptionCode
|
1526
|
+
attr_accessor :exceptionMessage
|
1527
|
+
|
1528
|
+
def initialize(exceptionCode = nil, exceptionMessage = nil)
|
1529
|
+
@exceptionCode = exceptionCode
|
1530
|
+
@exceptionMessage = exceptionMessage
|
1531
|
+
end
|
1532
|
+
end
|
1533
|
+
|
1534
|
+
# {urn:partner.soap.sforce.com}StatusCode
|
1535
|
+
module StatusCode
|
1536
|
+
ASSIGNEE_TYPE_REQUIRED = "ASSIGNEE_TYPE_REQUIRED"
|
1537
|
+
BAD_CUSTOM_ENTITY_PARENT_DOMAIN = "BAD_CUSTOM_ENTITY_PARENT_DOMAIN"
|
1538
|
+
CANNOT_CASCADE_PRODUCT_ACTIVE = "CANNOT_CASCADE_PRODUCT_ACTIVE"
|
1539
|
+
CANNOT_DEACTIVATE_DIVISION = "CANNOT_DEACTIVATE_DIVISION"
|
1540
|
+
CANNOT_INSERT_UPDATE_ACTIVATE_ENTITY = "CANNOT_INSERT_UPDATE_ACTIVATE_ENTITY"
|
1541
|
+
CANNOT_REPARENT_RECORD = "CANNOT_REPARENT_RECORD"
|
1542
|
+
CANNOT_RESOLVE_NAME = "CANNOT_RESOLVE_NAME"
|
1543
|
+
CANNOT_UPDATE_CONVERTED_LEAD = "CANNOT_UPDATE_CONVERTED_LEAD"
|
1544
|
+
CANT_DISABLE_CORP_CURRENCY = "CANT_DISABLE_CORP_CURRENCY"
|
1545
|
+
CANT_UNSET_CORP_CURRENCY = "CANT_UNSET_CORP_CURRENCY"
|
1546
|
+
CHILD_SHARE_FAILS_PARENT = "CHILD_SHARE_FAILS_PARENT"
|
1547
|
+
CIRCULAR_DEPENDENCY = "CIRCULAR_DEPENDENCY"
|
1548
|
+
CUSTOM_ENTITY_OR_FIELD_LIMIT = "CUSTOM_ENTITY_OR_FIELD_LIMIT"
|
1549
|
+
CUSTOM_FIELD_INDEX_LIMIT_EXCEEDED = "CUSTOM_FIELD_INDEX_LIMIT_EXCEEDED"
|
1550
|
+
CUSTOM_INDEX_EXISTS = "CUSTOM_INDEX_EXISTS"
|
1551
|
+
DELETE_FAILED = "DELETE_FAILED"
|
1552
|
+
DELETE_REQUIRED_ON_CASCADE = "DELETE_REQUIRED_ON_CASCADE"
|
1553
|
+
DEPENDENCY_EXISTS = "DEPENDENCY_EXISTS"
|
1554
|
+
DUPLICATE_CASE_SOLUTION = "DUPLICATE_CASE_SOLUTION"
|
1555
|
+
DUPLICATE_CUSTOM_TAB_MOTIF = "DUPLICATE_CUSTOM_TAB_MOTIF"
|
1556
|
+
DUPLICATE_DEVELOPER_NAME = "DUPLICATE_DEVELOPER_NAME"
|
1557
|
+
DUPLICATE_MASTER_LABEL = "DUPLICATE_MASTER_LABEL"
|
1558
|
+
DUPLICATE_USERNAME = "DUPLICATE_USERNAME"
|
1559
|
+
DUPLICATE_VALUE = "DUPLICATE_VALUE"
|
1560
|
+
ENTITY_FAILED_IFLASTMODIFIED_ON_UPDATE = "ENTITY_FAILED_IFLASTMODIFIED_ON_UPDATE"
|
1561
|
+
ENTITY_IS_ARCHIVED = "ENTITY_IS_ARCHIVED"
|
1562
|
+
ENTITY_IS_DELETED = "ENTITY_IS_DELETED"
|
1563
|
+
ENTITY_IS_LOCKED = "ENTITY_IS_LOCKED"
|
1564
|
+
FAILED_ACTIVATION = "FAILED_ACTIVATION"
|
1565
|
+
FIELD_INTEGRITY_EXCEPTION = "FIELD_INTEGRITY_EXCEPTION"
|
1566
|
+
INACTIVE_OWNER_OR_USER = "INACTIVE_OWNER_OR_USER"
|
1567
|
+
INSUFFICIENT_ACCESS_ON_CROSS_REFERENCE_ENTITY = "INSUFFICIENT_ACCESS_ON_CROSS_REFERENCE_ENTITY"
|
1568
|
+
INSUFFICIENT_ACCESS_OR_READONLY = "INSUFFICIENT_ACCESS_OR_READONLY"
|
1569
|
+
INVALID_ACCESS_LEVEL = "INVALID_ACCESS_LEVEL"
|
1570
|
+
INVALID_ARGUMENT_TYPE = "INVALID_ARGUMENT_TYPE"
|
1571
|
+
INVALID_ASSIGNEE_TYPE = "INVALID_ASSIGNEE_TYPE"
|
1572
|
+
INVALID_ASSIGNMENT_RULE = "INVALID_ASSIGNMENT_RULE"
|
1573
|
+
INVALID_BATCH_OPERATION = "INVALID_BATCH_OPERATION"
|
1574
|
+
INVALID_CREDIT_CARD_INFO = "INVALID_CREDIT_CARD_INFO"
|
1575
|
+
INVALID_CROSS_REFERENCE_KEY = "INVALID_CROSS_REFERENCE_KEY"
|
1576
|
+
INVALID_CROSS_REFERENCE_TYPE_FOR_FIELD = "INVALID_CROSS_REFERENCE_TYPE_FOR_FIELD"
|
1577
|
+
INVALID_CURRENCY_ISO = "INVALID_CURRENCY_ISO"
|
1578
|
+
INVALID_EMAIL_ADDRESS = "INVALID_EMAIL_ADDRESS"
|
1579
|
+
INVALID_EMPTY_KEY_OWNER = "INVALID_EMPTY_KEY_OWNER"
|
1580
|
+
INVALID_FIELD = "INVALID_FIELD"
|
1581
|
+
INVALID_FIELD_FOR_INSERT_UPDATE = "INVALID_FIELD_FOR_INSERT_UPDATE"
|
1582
|
+
INVALID_FILTER_ACTION = "INVALID_FILTER_ACTION"
|
1583
|
+
INVALID_ID_FIELD = "INVALID_ID_FIELD"
|
1584
|
+
INVALID_LINEITEM_CLONE_STATE = "INVALID_LINEITEM_CLONE_STATE"
|
1585
|
+
INVALID_OPERATOR = "INVALID_OPERATOR"
|
1586
|
+
INVALID_OR_NULL_FOR_RESTRICTED_PICKLIST = "INVALID_OR_NULL_FOR_RESTRICTED_PICKLIST"
|
1587
|
+
INVALID_STATUS = "INVALID_STATUS"
|
1588
|
+
INVALID_TYPE = "INVALID_TYPE"
|
1589
|
+
INVALID_TYPE_FOR_OPERATION = "INVALID_TYPE_FOR_OPERATION"
|
1590
|
+
INVALID_TYPE_ON_FIELD_IN_RECORD = "INVALID_TYPE_ON_FIELD_IN_RECORD"
|
1591
|
+
LAST_MODIFIED_SINCE_TOO_OLD = "LAST_MODIFIED_SINCE_TOO_OLD"
|
1592
|
+
LICENSE_LIMIT_EXCEEDED = "LICENSE_LIMIT_EXCEEDED"
|
1593
|
+
MALFORMED_ID = "MALFORMED_ID"
|
1594
|
+
MAXIMUM_CCEMAILS_EXCEEDED = "MAXIMUM_CCEMAILS_EXCEEDED"
|
1595
|
+
MAXIMUM_DASHBOARD_COMPONENTS_EXCEEDED = "MAXIMUM_DASHBOARD_COMPONENTS_EXCEEDED"
|
1596
|
+
MAXIMUM_SIZE_OF_ATTACHMENT = "MAXIMUM_SIZE_OF_ATTACHMENT"
|
1597
|
+
MAXIMUM_SIZE_OF_DOCUMENT = "MAXIMUM_SIZE_OF_DOCUMENT"
|
1598
|
+
MAX_ACTIONS_PER_RULE_EXCEEDED = "MAX_ACTIONS_PER_RULE_EXCEEDED"
|
1599
|
+
MAX_ACTIVE_RULES_EXCEEDED = "MAX_ACTIVE_RULES_EXCEEDED"
|
1600
|
+
MAX_TASK_DESCRIPTION_EXCEEEDED = "MAX_TASK_DESCRIPTION_EXCEEEDED"
|
1601
|
+
MISSING_ARGUMENT = "MISSING_ARGUMENT"
|
1602
|
+
NONUNIQUE_SHIPPING_ADDRESS = "NONUNIQUE_SHIPPING_ADDRESS"
|
1603
|
+
NUMBER_OUTSIDE_VALID_RANGE = "NUMBER_OUTSIDE_VALID_RANGE"
|
1604
|
+
PRIVATE_CONTACT_ON_ASSET = "PRIVATE_CONTACT_ON_ASSET"
|
1605
|
+
REQUIRED_FIELD_MISSING = "REQUIRED_FIELD_MISSING"
|
1606
|
+
SHARE_NEEDED_FOR_CHILD_OWNER = "SHARE_NEEDED_FOR_CHILD_OWNER"
|
1607
|
+
STANDARD_PRICE_NOT_DEFINED = "STANDARD_PRICE_NOT_DEFINED"
|
1608
|
+
STORAGE_LIMIT_EXCEEDED = "STORAGE_LIMIT_EXCEEDED"
|
1609
|
+
TEXT_DATA_OUTSIDE_SUPPORTED_CHARSET = "TEXT_DATA_OUTSIDE_SUPPORTED_CHARSET"
|
1610
|
+
TOO_MANY_ENUM_VALUE = "TOO_MANY_ENUM_VALUE"
|
1611
|
+
TRANSFER_REQUIRES_READ = "TRANSFER_REQUIRES_READ"
|
1612
|
+
UNKNOWN_EXCEPTION = "UNKNOWN_EXCEPTION"
|
1613
|
+
UNSPECIFIED_EMAIL_ADDRESS = "UNSPECIFIED_EMAIL_ADDRESS"
|
1614
|
+
end
|
1615
|
+
|
1616
|
+
# {urn:partner.soap.sforce.com}fieldType
|
1617
|
+
module FieldType
|
1618
|
+
Base64 = "base64"
|
1619
|
+
Boolean = "boolean"
|
1620
|
+
Combobox = "combobox"
|
1621
|
+
Currency = "currency"
|
1622
|
+
Date = "date"
|
1623
|
+
Datetime = "datetime"
|
1624
|
+
Double = "double"
|
1625
|
+
Email = "email"
|
1626
|
+
Id = "id"
|
1627
|
+
Int = "int"
|
1628
|
+
Multipicklist = "multipicklist"
|
1629
|
+
Percent = "percent"
|
1630
|
+
Phone = "phone"
|
1631
|
+
Picklist = "picklist"
|
1632
|
+
Reference = "reference"
|
1633
|
+
String = "string"
|
1634
|
+
Textarea = "textarea"
|
1635
|
+
Url = "url"
|
1636
|
+
end
|
1637
|
+
|
1638
|
+
# {urn:partner.soap.sforce.com}soapType
|
1639
|
+
module SoapType
|
1640
|
+
TnsID = "tns:ID"
|
1641
|
+
XsdBase64Binary = "xsd:base64Binary"
|
1642
|
+
XsdBoolean = "xsd:boolean"
|
1643
|
+
XsdDate = "xsd:date"
|
1644
|
+
XsdDateTime = "xsd:dateTime"
|
1645
|
+
XsdDouble = "xsd:double"
|
1646
|
+
XsdInt = "xsd:int"
|
1647
|
+
XsdString = "xsd:string"
|
1648
|
+
end
|
1649
|
+
|
1650
|
+
# {urn:partner.soap.sforce.com}layoutComponentType
|
1651
|
+
module LayoutComponentType
|
1652
|
+
Field = "Field"
|
1653
|
+
Separator = "Separator"
|
1654
|
+
end
|
1655
|
+
|
1656
|
+
# {urn:fault.partner.soap.sforce.com}ExceptionCode
|
1657
|
+
module ExceptionCode
|
1658
|
+
API_CURRENTLY_DISABLED = "API_CURRENTLY_DISABLED"
|
1659
|
+
API_DISABLED_FOR_ORG = "API_DISABLED_FOR_ORG"
|
1660
|
+
EXCEEDED_ID_LIMIT = "EXCEEDED_ID_LIMIT"
|
1661
|
+
EXCEEDED_LEAD_CONVERT_LIMIT = "EXCEEDED_LEAD_CONVERT_LIMIT"
|
1662
|
+
EXCEEDED_MAX_SIZE_REQUEST = "EXCEEDED_MAX_SIZE_REQUEST"
|
1663
|
+
EXCEEDED_QUOTA = "EXCEEDED_QUOTA"
|
1664
|
+
EXCEEDED_RATE_LIMIT = "EXCEEDED_RATE_LIMIT"
|
1665
|
+
FUNCTIONALITY_NOT_ENABLED = "FUNCTIONALITY_NOT_ENABLED"
|
1666
|
+
INSUFFICIENT_ACCESS = "INSUFFICIENT_ACCESS"
|
1667
|
+
INVALID_ASSIGNMENT_RULE = "INVALID_ASSIGNMENT_RULE"
|
1668
|
+
INVALID_BATCH_SIZE = "INVALID_BATCH_SIZE"
|
1669
|
+
INVALID_CLIENT = "INVALID_CLIENT"
|
1670
|
+
INVALID_FIELD = "INVALID_FIELD"
|
1671
|
+
INVALID_ID_FIELD = "INVALID_ID_FIELD"
|
1672
|
+
INVALID_LOGIN = "INVALID_LOGIN"
|
1673
|
+
INVALID_NEW_PASSWORD = "INVALID_NEW_PASSWORD"
|
1674
|
+
INVALID_OPERATION_WITH_EXPIRED_PASSWORD = "INVALID_OPERATION_WITH_EXPIRED_PASSWORD"
|
1675
|
+
INVALID_QUERY_FILTER_OPERATOR = "INVALID_QUERY_FILTER_OPERATOR"
|
1676
|
+
INVALID_QUERY_LOCATOR = "INVALID_QUERY_LOCATOR"
|
1677
|
+
INVALID_QUERY_SCOPE = "INVALID_QUERY_SCOPE"
|
1678
|
+
INVALID_REPLICATION_DATE = "INVALID_REPLICATION_DATE"
|
1679
|
+
INVALID_SEARCH = "INVALID_SEARCH"
|
1680
|
+
INVALID_SEARCH_SCOPE = "INVALID_SEARCH_SCOPE"
|
1681
|
+
INVALID_SESSION_ID = "INVALID_SESSION_ID"
|
1682
|
+
INVALID_SSO_GATEWAY_URL = "INVALID_SSO_GATEWAY_URL"
|
1683
|
+
INVALID_TYPE = "INVALID_TYPE"
|
1684
|
+
LOGIN_DURING_RESTRICTED_DOMAIN = "LOGIN_DURING_RESTRICTED_DOMAIN"
|
1685
|
+
LOGIN_DURING_RESTRICTED_TIME = "LOGIN_DURING_RESTRICTED_TIME"
|
1686
|
+
MALFORMED_QUERY = "MALFORMED_QUERY"
|
1687
|
+
MALFORMED_SEARCH = "MALFORMED_SEARCH"
|
1688
|
+
ORG_LOCKED = "ORG_LOCKED"
|
1689
|
+
PASSWORD_LOCKOUT = "PASSWORD_LOCKOUT"
|
1690
|
+
QUERY_TIMEOUT = "QUERY_TIMEOUT"
|
1691
|
+
SERVER_UNAVAILABLE = "SERVER_UNAVAILABLE"
|
1692
|
+
SSO_SERVICE_DOWN = "SSO_SERVICE_DOWN"
|
1693
|
+
TRIAL_EXPIRED = "TRIAL_EXPIRED"
|
1694
|
+
UNKNOWN_EXCEPTION = "UNKNOWN_EXCEPTION"
|
1695
|
+
UNSUPPORTED_API_VERSION = "UNSUPPORTED_API_VERSION"
|
1696
|
+
UNSUPPORTED_CLIENT = "UNSUPPORTED_CLIENT"
|
1697
|
+
end
|
1698
|
+
|
1699
|
+
# {urn:fault.partner.soap.sforce.com}FaultCode
|
1700
|
+
module FaultCode
|
1701
|
+
FnsAPI_CURRENTLY_DISABLED = "fns:API_CURRENTLY_DISABLED"
|
1702
|
+
FnsAPI_DISABLED_FOR_ORG = "fns:API_DISABLED_FOR_ORG"
|
1703
|
+
FnsEXCEEDED_ID_LIMIT = "fns:EXCEEDED_ID_LIMIT"
|
1704
|
+
FnsEXCEEDED_LEAD_CONVERT_LIMIT = "fns:EXCEEDED_LEAD_CONVERT_LIMIT"
|
1705
|
+
FnsEXCEEDED_MAX_SIZE_REQUEST = "fns:EXCEEDED_MAX_SIZE_REQUEST"
|
1706
|
+
FnsEXCEEDED_QUOTA = "fns:EXCEEDED_QUOTA"
|
1707
|
+
FnsEXCEEDED_RATE_LIMIT = "fns:EXCEEDED_RATE_LIMIT"
|
1708
|
+
FnsFUNCTIONALITY_NOT_ENABLED = "fns:FUNCTIONALITY_NOT_ENABLED"
|
1709
|
+
FnsINSUFFICIENT_ACCESS = "fns:INSUFFICIENT_ACCESS"
|
1710
|
+
FnsINVALID_ASSIGNMENT_RULE = "fns:INVALID_ASSIGNMENT_RULE"
|
1711
|
+
FnsINVALID_BATCH_SIZE = "fns:INVALID_BATCH_SIZE"
|
1712
|
+
FnsINVALID_CLIENT = "fns:INVALID_CLIENT"
|
1713
|
+
FnsINVALID_FIELD = "fns:INVALID_FIELD"
|
1714
|
+
FnsINVALID_ID_FIELD = "fns:INVALID_ID_FIELD"
|
1715
|
+
FnsINVALID_LOGIN = "fns:INVALID_LOGIN"
|
1716
|
+
FnsINVALID_NEW_PASSWORD = "fns:INVALID_NEW_PASSWORD"
|
1717
|
+
FnsINVALID_OPERATION_WITH_EXPIRED_PASSWORD = "fns:INVALID_OPERATION_WITH_EXPIRED_PASSWORD"
|
1718
|
+
FnsINVALID_QUERY_FILTER_OPERATOR = "fns:INVALID_QUERY_FILTER_OPERATOR"
|
1719
|
+
FnsINVALID_QUERY_LOCATOR = "fns:INVALID_QUERY_LOCATOR"
|
1720
|
+
FnsINVALID_QUERY_SCOPE = "fns:INVALID_QUERY_SCOPE"
|
1721
|
+
FnsINVALID_REPLICATION_DATE = "fns:INVALID_REPLICATION_DATE"
|
1722
|
+
FnsINVALID_SEARCH = "fns:INVALID_SEARCH"
|
1723
|
+
FnsINVALID_SEARCH_SCOPE = "fns:INVALID_SEARCH_SCOPE"
|
1724
|
+
FnsINVALID_SESSION_ID = "fns:INVALID_SESSION_ID"
|
1725
|
+
FnsINVALID_SSO_GATEWAY_URL = "fns:INVALID_SSO_GATEWAY_URL"
|
1726
|
+
FnsINVALID_TYPE = "fns:INVALID_TYPE"
|
1727
|
+
FnsLOGIN_DURING_RESTRICTED_DOMAIN = "fns:LOGIN_DURING_RESTRICTED_DOMAIN"
|
1728
|
+
FnsLOGIN_DURING_RESTRICTED_TIME = "fns:LOGIN_DURING_RESTRICTED_TIME"
|
1729
|
+
FnsMALFORMED_QUERY = "fns:MALFORMED_QUERY"
|
1730
|
+
FnsMALFORMED_SEARCH = "fns:MALFORMED_SEARCH"
|
1731
|
+
FnsORG_LOCKED = "fns:ORG_LOCKED"
|
1732
|
+
FnsPASSWORD_LOCKOUT = "fns:PASSWORD_LOCKOUT"
|
1733
|
+
FnsQUERY_TIMEOUT = "fns:QUERY_TIMEOUT"
|
1734
|
+
FnsSERVER_UNAVAILABLE = "fns:SERVER_UNAVAILABLE"
|
1735
|
+
FnsSSO_SERVICE_DOWN = "fns:SSO_SERVICE_DOWN"
|
1736
|
+
FnsTRIAL_EXPIRED = "fns:TRIAL_EXPIRED"
|
1737
|
+
FnsUNKNOWN_EXCEPTION = "fns:UNKNOWN_EXCEPTION"
|
1738
|
+
FnsUNSUPPORTED_API_VERSION = "fns:UNSUPPORTED_API_VERSION"
|
1739
|
+
FnsUNSUPPORTED_CLIENT = "fns:UNSUPPORTED_CLIENT"
|
1740
|
+
end
|