summaryrefslogtreecommitdiffstats
path: root/sample/wsdl/googleSearch/GoogleSearch.rb
diff options
context:
space:
mode:
authornahi <nahi@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2005-05-22 13:03:38 +0000
committernahi <nahi@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2005-05-22 13:03:38 +0000
commit810a605c34d97fa878cb5b615b9e95a2fee84ca8 (patch)
treec17440206af25b52f47b1c391f818e126a994d0a /sample/wsdl/googleSearch/GoogleSearch.rb
parent11491c909c15feef7731483824ab29ce1d434739 (diff)
downloadruby-810a605c34d97fa878cb5b615b9e95a2fee84ca8.tar.gz
ruby-810a605c34d97fa878cb5b615b9e95a2fee84ca8.tar.xz
ruby-810a605c34d97fa878cb5b615b9e95a2fee84ca8.zip
* lib/{soap,wsdl,xsd}, test/{soap,wsdl,xsd}: imported soap4r/1.5.4.
== SOAP client and server == === for both client side and server side === * improved document/literal service support. style(rpc,document)/use(encoding, literal) combination are all supported. for the detail about combination, see test/soap/test_style.rb. * let WSDLEncodedRegistry#soap2obj map SOAP/OM to Ruby according to WSDL as well as obj2soap. closes #70. * let SOAP::Mapping::Object handle XML attribute for doc/lit service. you can set/get XML attribute via accessor methods which as a name 'xmlattr_' prefixed (<foo name="bar"/> -> Foo#xmlattr_name). === client side === * WSDLDriver capitalized name operation bug fixed. from 1.5.3-ruby1.8.2, operation which has capitalized name (such as KeywordSearchRequest in AWS) is defined as a method having uncapitalized name. (converted with GenSupport.safemethodname to handle operation name 'foo-bar'). it introduced serious incompatibility; in the past, it was defined as a capitalized. define capitalized method as well under that circumstance. * added new factory interface 'WSDLDriverFactory#create_rpc_driver' to create RPC::Driver, not WSDLDriver (RPC::Driver and WSDLDriver are merged). 'WSDLDriverFactory#create_driver' still creates WSDLDriver for compatibility but it warns that the method is deprecated. please use create_rpc_driver instead of create_driver. * allow to use an URI object as an endpoint_url even with net/http, not http-access2. === server side === * added mod_ruby support to SOAP::CGIStub. rename a CGI script server.cgi to server.rb and let mod_ruby's RubyHandler handles the script. CGIStub detects if it's running under mod_ruby environment or not. * added fcgi support to SOAP::CGIStub. see the sample at sample/soap/calc/server.fcgi. (almost same as server.cgi but has fcgi handler at the bottom.) * allow to return a SOAPFault object to respond customized SOAP fault. * added the interface 'generate_explicit_type' for server side (CGIStub, HTTPServer). call 'self.generate_explicit_type = true' if you want to return simplified XML even if it's rpc/encoded service. == WSDL == === WSDL definition === * improved XML Schema support such as extension, restriction, simpleType, complexType + simpleContent, ref, length, import, include. * reduced "unknown element/attribute" warnings (warn only 1 time for each QName). * importing XSD file at schemaLocation with xsd:import. === code generation from WSDL === * generator crashed when there's '-' in defined element/attribute name. * added ApacheMap WSDL definition. * sample/{soap,wsdl}: removed. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@8500 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'sample/wsdl/googleSearch/GoogleSearch.rb')
-rw-r--r--sample/wsdl/googleSearch/GoogleSearch.rb258
1 files changed, 0 insertions, 258 deletions
diff --git a/sample/wsdl/googleSearch/GoogleSearch.rb b/sample/wsdl/googleSearch/GoogleSearch.rb
deleted file mode 100644
index e124208b9..000000000
--- a/sample/wsdl/googleSearch/GoogleSearch.rb
+++ /dev/null
@@ -1,258 +0,0 @@
-# urn:GoogleSearch
-class GoogleSearchResult
- @@schema_type = "GoogleSearchResult"
- @@schema_ns = "urn:GoogleSearch"
-
- def documentFiltering
- @documentFiltering
- end
-
- def documentFiltering=(value)
- @documentFiltering = value
- end
-
- def searchComments
- @searchComments
- end
-
- def searchComments=(value)
- @searchComments = value
- end
-
- def estimatedTotalResultsCount
- @estimatedTotalResultsCount
- end
-
- def estimatedTotalResultsCount=(value)
- @estimatedTotalResultsCount = value
- end
-
- def estimateIsExact
- @estimateIsExact
- end
-
- def estimateIsExact=(value)
- @estimateIsExact = value
- end
-
- def resultElements
- @resultElements
- end
-
- def resultElements=(value)
- @resultElements = value
- end
-
- def searchQuery
- @searchQuery
- end
-
- def searchQuery=(value)
- @searchQuery = value
- end
-
- def startIndex
- @startIndex
- end
-
- def startIndex=(value)
- @startIndex = value
- end
-
- def endIndex
- @endIndex
- end
-
- def endIndex=(value)
- @endIndex = value
- end
-
- def searchTips
- @searchTips
- end
-
- def searchTips=(value)
- @searchTips = value
- end
-
- def directoryCategories
- @directoryCategories
- end
-
- def directoryCategories=(value)
- @directoryCategories = value
- end
-
- def searchTime
- @searchTime
- end
-
- def searchTime=(value)
- @searchTime = value
- end
-
- def initialize(documentFiltering = nil,
- searchComments = nil,
- estimatedTotalResultsCount = nil,
- estimateIsExact = nil,
- resultElements = nil,
- searchQuery = nil,
- startIndex = nil,
- endIndex = nil,
- searchTips = nil,
- directoryCategories = nil,
- searchTime = nil)
- @documentFiltering = documentFiltering
- @searchComments = searchComments
- @estimatedTotalResultsCount = estimatedTotalResultsCount
- @estimateIsExact = estimateIsExact
- @resultElements = resultElements
- @searchQuery = searchQuery
- @startIndex = startIndex
- @endIndex = endIndex
- @searchTips = searchTips
- @directoryCategories = directoryCategories
- @searchTime = searchTime
- end
-end
-
-# urn:GoogleSearch
-class ResultElement
- @@schema_type = "ResultElement"
- @@schema_ns = "urn:GoogleSearch"
-
- def summary
- @summary
- end
-
- def summary=(value)
- @summary = value
- end
-
- def URL
- @uRL
- end
-
- def URL=(value)
- @uRL = value
- end
-
- def snippet
- @snippet
- end
-
- def snippet=(value)
- @snippet = value
- end
-
- def title
- @title
- end
-
- def title=(value)
- @title = value
- end
-
- def cachedSize
- @cachedSize
- end
-
- def cachedSize=(value)
- @cachedSize = value
- end
-
- def relatedInformationPresent
- @relatedInformationPresent
- end
-
- def relatedInformationPresent=(value)
- @relatedInformationPresent = value
- end
-
- def hostName
- @hostName
- end
-
- def hostName=(value)
- @hostName = value
- end
-
- def directoryCategory
- @directoryCategory
- end
-
- def directoryCategory=(value)
- @directoryCategory = value
- end
-
- def directoryTitle
- @directoryTitle
- end
-
- def directoryTitle=(value)
- @directoryTitle = value
- end
-
- def initialize(summary = nil,
- uRL = nil,
- snippet = nil,
- title = nil,
- cachedSize = nil,
- relatedInformationPresent = nil,
- hostName = nil,
- directoryCategory = nil,
- directoryTitle = nil)
- @summary = summary
- @uRL = uRL
- @snippet = snippet
- @title = title
- @cachedSize = cachedSize
- @relatedInformationPresent = relatedInformationPresent
- @hostName = hostName
- @directoryCategory = directoryCategory
- @directoryTitle = directoryTitle
- end
-end
-
-# urn:GoogleSearch
-class ResultElementArray < Array
- # Contents type should be dumped here...
- @@schema_type = "ResultElementArray"
- @@schema_ns = "urn:GoogleSearch"
-end
-
-# urn:GoogleSearch
-class DirectoryCategoryArray < Array
- # Contents type should be dumped here...
- @@schema_type = "DirectoryCategoryArray"
- @@schema_ns = "urn:GoogleSearch"
-end
-
-# urn:GoogleSearch
-class DirectoryCategory
- @@schema_type = "DirectoryCategory"
- @@schema_ns = "urn:GoogleSearch"
-
- def fullViewableName
- @fullViewableName
- end
-
- def fullViewableName=(value)
- @fullViewableName = value
- end
-
- def specialEncoding
- @specialEncoding
- end
-
- def specialEncoding=(value)
- @specialEncoding = value
- end
-
- def initialize(fullViewableName = nil,
- specialEncoding = nil)
- @fullViewableName = fullViewableName
- @specialEncoding = specialEncoding
- end
-end
-