mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* lib/soap/attachment.rb
* lib/soap/header
* lib/soap/mimemessage.rb
* lib/soap/rpc/httpserver.rb
* lib/wsdl/soap/cgiStubCreator.rb
* lib/wsdl/soap/classDefCreator.rb
* lib/wsdl/soap/classDefCreatorSupport.rb
* lib/wsdl/soap/clientSkeltonCreator.rb
* lib/wsdl/soap/driverCreator.rb
* lib/wsdl/soap/mappingRegistryCreator.rb
* lib/wsdl/soap/methodDefCreator.rb
* lib/wsdl/soap/servantSkeltonCreator.rb
* lib/wsdl/soap/standaloneServerStubCreator.rb
* lib/wsdl/xmlSchema/enumeration.rb
* lib/wsdl/xmlSchema/simpleRestriction.rb
* lib/wsdl/xmlSchema/simpleType.rb
* lib/xsd/codegen
* lib/xsd/codegen.rb
* sample/soap/authheader
* sample/soap/raa2.4
* sample/soap/ssl
* sample/soap/swa
* sample/soap/whois.rb
* sample/soap/calc/samplehttpd.conf
* sample/soap/exchange/samplehttpd.conf
* sample/soap/sampleStruct/samplehttpd.conf
* sample/wsdl/raa2.4
* sample/wsdl/googleSearch/samplehttpd.conf
* test/openssl/_test_ssl.rb
* test/soap/header
* test/soap/ssl
* test/soap/struct
* test/soap/swa
* test/soap/wsdlDriver
* test/wsdl/multiplefault.wsdl
* test/wsdl/simpletype
* test/wsdl/test_multiplefault.rb
* modified files
* lib/soap/baseData.rb
* lib/soap/element.rb
* lib/soap/generator.rb
* lib/soap/marshal.rb
* lib/soap/netHttpClient.rb
* lib/soap/parser.rb
* lib/soap/processor.rb
* lib/soap/property.rb
* lib/soap/soap.rb
* lib/soap/streamHandler.rb
* lib/soap/wsdlDriver.rb
* lib/soap/encodingstyle/handler.rb
* lib/soap/encodingstyle/literalHandler.rb
* lib/soap/encodingstyle/soapHandler.rb
* lib/soap/mapping/factory.rb
* lib/soap/mapping/mapping.rb
* lib/soap/mapping/registry.rb
* lib/soap/mapping/rubytypeFactory.rb
* lib/soap/mapping/wsdlRegistry.rb
* lib/soap/rpc/cgistub.rb
* lib/soap/rpc/driver.rb
* lib/soap/rpc/element.rb
* lib/soap/rpc/proxy.rb
* lib/soap/rpc/router.rb
* lib/soap/rpc/soaplet.rb
* lib/soap/rpc/standaloneServer.rb
* lib/wsdl/data.rb
* lib/wsdl/definitions.rb
* lib/wsdl/operation.rb
* lib/wsdl/parser.rb
* lib/wsdl/soap/definitions.rb
* lib/wsdl/xmlSchema/complexContent.rb
* lib/wsdl/xmlSchema/complexType.rb
* lib/wsdl/xmlSchema/data.rb
* lib/wsdl/xmlSchema/parser.rb
* lib/wsdl/xmlSchema/schema.rb
* lib/xsd/datatypes.rb
* lib/xsd/qname.rb
* sample/soap/calc/httpd.rb
* sample/soap/exchange/httpd.rb
* sample/soap/sampleStruct/httpd.rb
* sample/soap/sampleStruct/server.rb
* sample/wsdl/amazon/AmazonSearch.rb
* sample/wsdl/amazon/AmazonSearchDriver.rb
* sample/wsdl/googleSearch/httpd.rb
* test/soap/test_basetype.rb
* test/soap/test_property.rb
* test/soap/test_streamhandler.rb
* test/soap/calc/test_calc.rb
* test/soap/calc/test_calc2.rb
* test/soap/calc/test_calc_cgi.rb
* test/soap/helloworld/test_helloworld.rb
* test/wsdl/test_emptycomplextype.rb
* test/wsdl/axisArray/test_axisarray.rb
* test/wsdl/datetime/test_datetime.rb
* test/wsdl/raa/test_raa.rb
* test/xsd/test_xmlschemaparser.rb
* test/xsd/test_xsd.rb
* summary
* add SOAP Header mustUnderstand support.
* add HTTP client SSL configuration and Cookies support (works
completely with http-access2).
* add header handler for handling sending/receiving SOAP Header.
* map Ruby's anonymous Struct to common SOAP Struct in SOAP Object
Model. it caused error.
* add WSDL simpleType support to restrict lexical value space.
* add SOAP with Attachment support.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8@6567 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
270 lines
5.2 KiB
Ruby
270 lines
5.2 KiB
Ruby
# SOAP4R - RPC element definition.
|
|
# Copyright (C) 2000, 2001, 2003 NAKAMURA, Hiroshi <nahi@ruby-lang.org>.
|
|
|
|
# This program is copyrighted free software by NAKAMURA, Hiroshi. You can
|
|
# redistribute it and/or modify it under the same terms of Ruby's license;
|
|
# either the dual license version in 2003, or any later version.
|
|
|
|
|
|
require 'soap/baseData'
|
|
|
|
|
|
module SOAP
|
|
|
|
# Add method definitions for RPC to common definition in element.rb
|
|
class SOAPBody < SOAPStruct
|
|
public
|
|
|
|
def request
|
|
root_node
|
|
end
|
|
|
|
def response
|
|
if !@is_fault
|
|
if void?
|
|
nil
|
|
else
|
|
# Initial element is [retval].
|
|
root_node[0]
|
|
end
|
|
else
|
|
root_node
|
|
end
|
|
end
|
|
|
|
def outparams
|
|
if !@is_fault and !void?
|
|
op = root_node[1..-1]
|
|
op = nil if op && op.empty?
|
|
op
|
|
else
|
|
nil
|
|
end
|
|
end
|
|
|
|
def void?
|
|
root_node.nil?
|
|
end
|
|
|
|
def fault
|
|
if @is_fault
|
|
self['fault']
|
|
else
|
|
nil
|
|
end
|
|
end
|
|
|
|
def fault=(fault)
|
|
@is_fault = true
|
|
add_member('fault', fault)
|
|
end
|
|
end
|
|
|
|
|
|
module RPC
|
|
|
|
|
|
class RPCError < Error; end
|
|
class MethodDefinitionError < RPCError; end
|
|
class ParameterError < RPCError; end
|
|
|
|
class SOAPMethod < SOAPStruct
|
|
RETVAL = 'retval'
|
|
IN = 'in'
|
|
OUT = 'out'
|
|
INOUT = 'inout'
|
|
|
|
attr_reader :param_def
|
|
attr_reader :inparam
|
|
attr_reader :outparam
|
|
|
|
def initialize(qname, param_def = nil)
|
|
super(nil)
|
|
@elename = qname
|
|
@encodingstyle = nil
|
|
|
|
@param_def = param_def
|
|
|
|
@signature = []
|
|
@inparam_names = []
|
|
@inoutparam_names = []
|
|
@outparam_names = []
|
|
|
|
@inparam = {}
|
|
@outparam = {}
|
|
@retval_name = nil
|
|
|
|
init_param(@param_def) if @param_def
|
|
end
|
|
|
|
def have_outparam?
|
|
@outparam_names.size > 0
|
|
end
|
|
|
|
def each_param_name(*type)
|
|
@signature.each do |io_type, name, param_type|
|
|
if type.include?(io_type)
|
|
yield(name)
|
|
end
|
|
end
|
|
end
|
|
|
|
def set_param(params)
|
|
params.each do |param, data|
|
|
@inparam[param] = data
|
|
data.elename.name = param
|
|
data.parent = self
|
|
end
|
|
end
|
|
|
|
def set_outparam(params)
|
|
params.each do |param, data|
|
|
@outparam[param] = data
|
|
data.elename.name = param
|
|
end
|
|
end
|
|
|
|
def SOAPMethod.create_param_def(param_names)
|
|
param_def = []
|
|
param_names.each do |param_name|
|
|
param_def.push([IN, param_name, nil])
|
|
end
|
|
param_def.push([RETVAL, 'return', nil])
|
|
param_def
|
|
end
|
|
|
|
private
|
|
|
|
def init_param(param_def)
|
|
param_def.each do |io_type, name, param_type|
|
|
case io_type
|
|
when IN
|
|
@signature.push([IN, name, param_type])
|
|
@inparam_names.push(name)
|
|
when OUT
|
|
@signature.push([OUT, name, param_type])
|
|
@outparam_names.push(name)
|
|
when INOUT
|
|
@signature.push([INOUT, name, param_type])
|
|
@inoutparam_names.push(name)
|
|
when RETVAL
|
|
if (@retval_name)
|
|
raise MethodDefinitionError.new('Duplicated retval')
|
|
end
|
|
@retval_name = name
|
|
else
|
|
raise MethodDefinitionError.new("Unknown type: #{ io_type }")
|
|
end
|
|
end
|
|
end
|
|
end
|
|
|
|
|
|
class SOAPMethodRequest < SOAPMethod
|
|
attr_accessor :soapaction
|
|
|
|
def SOAPMethodRequest.create_request(qname, *params)
|
|
param_def = []
|
|
param_value = []
|
|
i = 0
|
|
params.each do |param|
|
|
param_name = "p#{ i }"
|
|
i += 1
|
|
param_def << [IN, param_name, nil]
|
|
param_value << [param_name, param]
|
|
end
|
|
param_def << [RETVAL, 'return', nil]
|
|
o = new(qname, param_def)
|
|
o.set_param(param_value)
|
|
o
|
|
end
|
|
|
|
def initialize(qname, param_def = nil, soapaction = nil)
|
|
check_elename(qname)
|
|
super(qname, param_def)
|
|
@soapaction = soapaction
|
|
end
|
|
|
|
def each
|
|
each_param_name(IN, INOUT) do |name|
|
|
unless @inparam[name]
|
|
raise ParameterError.new("Parameter: #{ name } was not given.")
|
|
end
|
|
yield(name, @inparam[name])
|
|
end
|
|
end
|
|
|
|
def dup
|
|
req = self.class.new(@elename.dup, @param_def, @soapaction)
|
|
req.encodingstyle = @encodingstyle
|
|
req
|
|
end
|
|
|
|
def create_method_response
|
|
SOAPMethodResponse.new(
|
|
XSD::QName.new(@elename.namespace, @elename.name + 'Response'),
|
|
@param_def)
|
|
end
|
|
|
|
private
|
|
|
|
def check_elename(qname)
|
|
# NCName & ruby's method name
|
|
unless /\A[\w_][\w\d_\-]*\z/ =~ qname.name
|
|
raise MethodDefinitionError.new("Element name '#{qname.name}' not allowed")
|
|
end
|
|
end
|
|
end
|
|
|
|
|
|
class SOAPMethodResponse < SOAPMethod
|
|
|
|
def initialize(qname, param_def = nil)
|
|
super(qname, param_def)
|
|
@retval = nil
|
|
end
|
|
|
|
def retval=(retval)
|
|
@retval = retval
|
|
@retval.elename = @retval.elename.dup_name(@retval_name || 'return')
|
|
retval.parent = self
|
|
retval
|
|
end
|
|
|
|
def each
|
|
if @retval_name and !@retval.is_a?(SOAPVoid)
|
|
yield(@retval_name, @retval)
|
|
end
|
|
|
|
each_param_name(OUT, INOUT) do |param_name|
|
|
unless @outparam[param_name]
|
|
raise ParameterError.new("Parameter: #{ param_name } was not given.")
|
|
end
|
|
yield(param_name, @outparam[param_name])
|
|
end
|
|
end
|
|
end
|
|
|
|
|
|
# To return(?) void explicitly.
|
|
# def foo(input_var)
|
|
# ...
|
|
# return SOAP::RPC::SOAPVoid.new
|
|
# end
|
|
class SOAPVoid < XSD::XSDAnySimpleType
|
|
include SOAPBasetype
|
|
extend SOAPModuleUtils
|
|
Name = XSD::QName.new(Mapping::RubyCustomTypeNamespace, nil)
|
|
|
|
public
|
|
def initialize()
|
|
@elename = Name
|
|
@id = nil
|
|
@precedents = []
|
|
@parent = nil
|
|
end
|
|
end
|
|
|
|
|
|
end
|
|
end
|