* lib/soap/**/*.rb, lib/wsdl/**/*.rb, lib/xsd/**/*.rb: changed license; GPL2 -> Ruby's.
* lib/soap/rpc/driver.rb, lib/soap/wsdlDriver.rb, lib/soap/streamHandler.rb: add interface to streamhandler.
* lib/soap/marshal.rb: raise error if parse fails.
* lib/soap/netHttpClient.rb: add https support. Patched by Oliver M. Bolzer.
* lib/soap/netHttpClient.rb: dump HTTP response message body by itself.
* lib/soap/rpc/driver.rb, lib/soap/rpc/proxy.rb, lib/soap/wsdlDriver.rb: add driver#mandatorycharset interface to foce using charset for parsing response from buggy server.
* lib/soap/encodingstyle/soapHandler.rb: support Apache Axis's half typed multi-ref array.
* lib/soap/mapping/factory.rb, lib/soap/mapping/registry.rb: map SOAPStruct which has multi-accessors which name are the same, to an array.
* lib/soap/rpc/element.rb: fixed illegal parameter order.
* lib/soap/rpc/element.rb: element name of response message could have the name other than 'return'.
* lib/wsdl/operation.rb, lib/wsdl/operationBinding.rb, lib/wsdl/soap/classDefCreator.rb, lib/wsdl/soap/methodDefCreator.rb, lib/wsdl/soap/methodDefCreatorSupport.rb: WSDL/1.1 allows plural fault definition in a operation. [ruby-talk:84948]
* test/wsdl/multiplefault.wsdl, test/wsdl/test_multiplefault.rb: add test for above fix.
* lib/wsdl/soap/complexType.rb: support WSDL array definition with maxOccures="unbound".
* lib/xsd/charset.rb: use cp932 under emx. Patched by Siena. / SHINAGAWA, Norihide in [ruby-dev:21972]
* lib/xsd/xmlparser/parser.rb: set @charset nil by default. Nil means 'follow encoding declaration in XML'.
* sample/soap/digraph.rb, sample/wsdl/amazon/wsdlDriver.rb, sample/wsdl/googleSearch/sampleClient.rb, sample/wsdl/googleSearch/wsdlDriver.rb, test/wsdl/test_emptycomplextype.rb, test/wsdl/marshal/test_wsdlmarshal.rb, test/xsd/test_xmlschemaparser.rb: use File.open(...) { |f| f.read } instead of File.open(...).read. [ruby-dev:21964]
* test/wsdl/emptycomplextype.wsdl, test/wsdl/test_emptycomplextype.rb: simplify the test case.
* test/wsdl/axisArray/*: add tests for axis's array encoding.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@5022 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2003-11-25 02:31:33 -05:00
|
|
|
# SOAP4R - SOAP XML Instance Generator library.
|
|
|
|
# Copyright (C) 2001, 2003 NAKAMURA, Hiroshi <nahi@ruby-lang.org>.
|
2003-09-24 11:18:44 -04:00
|
|
|
|
* lib/soap/**/*.rb, lib/wsdl/**/*.rb, lib/xsd/**/*.rb: changed license; GPL2 -> Ruby's.
* lib/soap/rpc/driver.rb, lib/soap/wsdlDriver.rb, lib/soap/streamHandler.rb: add interface to streamhandler.
* lib/soap/marshal.rb: raise error if parse fails.
* lib/soap/netHttpClient.rb: add https support. Patched by Oliver M. Bolzer.
* lib/soap/netHttpClient.rb: dump HTTP response message body by itself.
* lib/soap/rpc/driver.rb, lib/soap/rpc/proxy.rb, lib/soap/wsdlDriver.rb: add driver#mandatorycharset interface to foce using charset for parsing response from buggy server.
* lib/soap/encodingstyle/soapHandler.rb: support Apache Axis's half typed multi-ref array.
* lib/soap/mapping/factory.rb, lib/soap/mapping/registry.rb: map SOAPStruct which has multi-accessors which name are the same, to an array.
* lib/soap/rpc/element.rb: fixed illegal parameter order.
* lib/soap/rpc/element.rb: element name of response message could have the name other than 'return'.
* lib/wsdl/operation.rb, lib/wsdl/operationBinding.rb, lib/wsdl/soap/classDefCreator.rb, lib/wsdl/soap/methodDefCreator.rb, lib/wsdl/soap/methodDefCreatorSupport.rb: WSDL/1.1 allows plural fault definition in a operation. [ruby-talk:84948]
* test/wsdl/multiplefault.wsdl, test/wsdl/test_multiplefault.rb: add test for above fix.
* lib/wsdl/soap/complexType.rb: support WSDL array definition with maxOccures="unbound".
* lib/xsd/charset.rb: use cp932 under emx. Patched by Siena. / SHINAGAWA, Norihide in [ruby-dev:21972]
* lib/xsd/xmlparser/parser.rb: set @charset nil by default. Nil means 'follow encoding declaration in XML'.
* sample/soap/digraph.rb, sample/wsdl/amazon/wsdlDriver.rb, sample/wsdl/googleSearch/sampleClient.rb, sample/wsdl/googleSearch/wsdlDriver.rb, test/wsdl/test_emptycomplextype.rb, test/wsdl/marshal/test_wsdlmarshal.rb, test/xsd/test_xmlschemaparser.rb: use File.open(...) { |f| f.read } instead of File.open(...).read. [ruby-dev:21964]
* test/wsdl/emptycomplextype.wsdl, test/wsdl/test_emptycomplextype.rb: simplify the test case.
* test/wsdl/axisArray/*: add tests for axis's array encoding.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@5022 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2003-11-25 02:31:33 -05:00
|
|
|
# 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.
|
2003-09-24 11:18:44 -04:00
|
|
|
|
|
|
|
|
|
|
|
require 'xsd/ns'
|
|
|
|
require 'soap/soap'
|
|
|
|
require 'soap/baseData'
|
|
|
|
require 'soap/encodingstyle/handler'
|
|
|
|
|
|
|
|
|
|
|
|
module SOAP
|
|
|
|
|
|
|
|
|
|
|
|
###
|
|
|
|
## CAUTION: MT-unsafe
|
|
|
|
#
|
|
|
|
class SOAPGenerator
|
|
|
|
include SOAP
|
|
|
|
|
|
|
|
class FormatEncodeError < Error; end
|
|
|
|
|
|
|
|
public
|
|
|
|
|
|
|
|
attr_accessor :charset
|
|
|
|
attr_accessor :default_encodingstyle
|
|
|
|
attr_accessor :generate_explicit_type
|
|
|
|
|
|
|
|
def initialize(opt = {})
|
|
|
|
@reftarget = nil
|
|
|
|
@handlers = {}
|
|
|
|
@charset = opt[:charset] || XSD::Charset.encoding_label
|
|
|
|
@default_encodingstyle = opt[:default_encodingstyle] || EncodingNamespace
|
|
|
|
@generate_explicit_type =
|
|
|
|
opt.key?(:generate_explicit_type) ? opt[:generate_explicit_type] : true
|
2003-10-14 11:14:02 -04:00
|
|
|
@buf = @indent = @curr = nil
|
2003-09-24 11:18:44 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def generate(obj, io = nil)
|
2003-10-14 11:14:02 -04:00
|
|
|
@buf = io || ''
|
|
|
|
@indent = ''
|
|
|
|
|
2003-09-24 11:18:44 -04:00
|
|
|
prologue
|
|
|
|
@handlers.each do |uri, handler|
|
|
|
|
handler.encode_prologue
|
|
|
|
end
|
|
|
|
|
|
|
|
ns = XSD::NS.new
|
2003-10-14 11:14:02 -04:00
|
|
|
@buf << xmldecl
|
|
|
|
encode_data(ns, true, obj, nil)
|
2003-09-24 11:18:44 -04:00
|
|
|
|
|
|
|
@handlers.each do |uri, handler|
|
|
|
|
handler.encode_epilogue
|
|
|
|
end
|
|
|
|
epilogue
|
|
|
|
|
2003-10-14 11:14:02 -04:00
|
|
|
@buf
|
2003-09-24 11:18:44 -04:00
|
|
|
end
|
|
|
|
|
2003-10-14 11:14:02 -04:00
|
|
|
def encode_data(ns, qualified, obj, parent)
|
2003-09-24 11:18:44 -04:00
|
|
|
if obj.is_a?(SOAPEnvelopeElement)
|
2003-10-14 11:14:02 -04:00
|
|
|
encode_element(ns, qualified, obj, parent)
|
2003-09-24 11:18:44 -04:00
|
|
|
return
|
|
|
|
end
|
|
|
|
|
|
|
|
if @reftarget && !obj.precedents.empty?
|
2003-10-14 11:14:02 -04:00
|
|
|
add_reftarget(obj.elename.name, obj)
|
* import soap4r/1.5.2;
* lib/soap/{attachment.rb,baseData.rb,encodingstyle/soapHandler.rb}:
introduce SOAPExternalReference class as a referenct to SOAPEnvelope
external content.
* lib/soap/{attachment.rb,mimemessage.rb}: great SwA (SOAP messages
with Attachments) support code by Jamie Herre.
* lib/soap/{element.rb,marshal.rb,parser.rb,processor.rb,
streamHandler.rb,wsdlDriver.rb}: SwA support.
* lib/soap/rpc/{cgistub.rb,driver.rb,element.rb,proxy.rb,router.rb,
soaplet.rb}: SwA support and refactoring.
* lib/soap/generator.rb, lib/soap/mapping/mapping.rb: follow
SOAPReference#initialize signature change.
* lib/soap/mapping/factory.rb: deleted unused methods.
* lib/soap/mapping/rubytypeFactory.rb: do no ignore case while xsi:type
string <-> Ruby class name matching.
* lib/xsd/datatypes.rb: check the smallest positive non-zero
single-precision float exactly instead of packing with "f".
[ruby-talk:88822]
* test/soap/test_basetype.rb, test/xsd/test_xsd.rb: use 1.402e-45, not
1.4e-45. 1.4e-45 is smaller than 2 ** -149...
* test/soap/test_basetype.rb, test/soap/marshal/test_marshal.rb,
test/xsd/test_xsd.rb: use "(-1.0 / (1.0 / 0.0))" instead of "-0.0".
* test/soap/test_streamhandler.rb: revert to the previous test that
warns "basic_auth unsupported under net/http".
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@5384 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2004-01-05 21:20:51 -05:00
|
|
|
ref = SOAPReference.new(obj)
|
2003-09-24 11:18:44 -04:00
|
|
|
ref.elename.name = obj.elename.name
|
|
|
|
obj.precedents.clear # Avoid cyclic delay.
|
|
|
|
obj.encodingstyle = parent.encodingstyle
|
|
|
|
# SOAPReference is encoded here.
|
|
|
|
obj = ref
|
|
|
|
end
|
|
|
|
|
|
|
|
encodingstyle = obj.encodingstyle
|
|
|
|
# Children's encodingstyle is derived from its parent.
|
|
|
|
encodingstyle ||= parent.encodingstyle if parent
|
|
|
|
obj.encodingstyle = encodingstyle
|
|
|
|
|
|
|
|
handler = find_handler(encodingstyle || @default_encodingstyle)
|
|
|
|
unless handler
|
|
|
|
raise FormatEncodeError.new("Unknown encodingStyle: #{ encodingstyle }.")
|
|
|
|
end
|
|
|
|
|
|
|
|
if !obj.elename.name
|
|
|
|
raise FormatEncodeError.new("Element name not defined: #{ obj }.")
|
|
|
|
end
|
|
|
|
|
2003-10-14 11:14:02 -04:00
|
|
|
handler.encode_data(self, ns, qualified, obj, parent) do |child, child_q|
|
|
|
|
indent_backup, @indent = @indent, @indent + ' '
|
|
|
|
encode_data(ns.clone_ns, child_q, child, obj)
|
|
|
|
@indent = indent_backup
|
|
|
|
end
|
|
|
|
handler.encode_data_end(self, ns, qualified, obj, parent)
|
|
|
|
end
|
|
|
|
|
|
|
|
def add_reftarget(name, node)
|
|
|
|
unless @reftarget
|
|
|
|
raise FormatEncodeError.new("Reftarget is not defined.")
|
2003-09-24 11:18:44 -04:00
|
|
|
end
|
2003-10-14 11:14:02 -04:00
|
|
|
@reftarget.add(name, node)
|
2003-09-24 11:18:44 -04:00
|
|
|
end
|
|
|
|
|
2003-10-14 11:14:02 -04:00
|
|
|
def encode_element(ns, qualified, obj, parent)
|
2003-09-24 11:18:44 -04:00
|
|
|
attrs = {}
|
|
|
|
if obj.is_a?(SOAPBody)
|
|
|
|
@reftarget = obj
|
2003-10-14 11:14:02 -04:00
|
|
|
obj.encode(self, ns, attrs) do |child, child_q|
|
|
|
|
indent_backup, @indent = @indent, @indent + ' '
|
|
|
|
encode_data(ns.clone_ns, child_q, child, obj)
|
|
|
|
@indent = indent_backup
|
2003-09-24 11:18:44 -04:00
|
|
|
end
|
|
|
|
@reftarget = nil
|
|
|
|
else
|
|
|
|
if obj.is_a?(SOAPEnvelope)
|
|
|
|
# xsi:nil="true" can appear even if dumping without explicit type.
|
|
|
|
SOAPGenerator.assign_ns(attrs, ns,
|
|
|
|
XSD::InstanceNamespace, XSINamespaceTag)
|
|
|
|
if @generate_explicit_type
|
|
|
|
SOAPGenerator.assign_ns(attrs, ns, XSD::Namespace, XSDNamespaceTag)
|
|
|
|
end
|
|
|
|
end
|
2003-10-14 11:14:02 -04:00
|
|
|
obj.encode(self, ns, attrs) do |child, child_q|
|
|
|
|
indent_backup, @indent = @indent, @indent + ' '
|
|
|
|
encode_data(ns.clone_ns, child_q, child, obj)
|
|
|
|
@indent = indent_backup
|
2003-09-24 11:18:44 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2003-10-14 11:14:02 -04:00
|
|
|
def encode_tag(elename, attrs = nil)
|
2003-10-30 09:25:21 -05:00
|
|
|
if !attrs or attrs.empty?
|
2003-10-14 11:14:02 -04:00
|
|
|
@buf << "\n#{ @indent }<#{ elename }>"
|
2003-10-30 09:25:21 -05:00
|
|
|
elsif attrs.size == 1
|
|
|
|
key, value = attrs.shift
|
|
|
|
@buf << %Q[\n#{ @indent }<#{ elename } #{ key }="#{ value }">]
|
|
|
|
else
|
|
|
|
@buf << "\n#{ @indent }<#{ elename } " <<
|
|
|
|
attrs.collect { |key, value|
|
|
|
|
%Q[#{ key }="#{ value }"]
|
|
|
|
}.join("\n#{ @indent } ") <<
|
|
|
|
'>'
|
2003-09-24 11:18:44 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2003-10-14 11:14:02 -04:00
|
|
|
def encode_tag_end(elename, cr = nil)
|
2003-09-24 11:18:44 -04:00
|
|
|
if cr
|
2003-10-14 11:14:02 -04:00
|
|
|
@buf << "\n#{ @indent }</#{ elename }>"
|
2003-09-24 11:18:44 -04:00
|
|
|
else
|
2003-10-14 11:14:02 -04:00
|
|
|
@buf << "</#{ elename }>"
|
2003-09-24 11:18:44 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2003-10-14 11:14:02 -04:00
|
|
|
def encode_rawstring(str)
|
|
|
|
@buf << str
|
|
|
|
end
|
|
|
|
|
2003-09-24 11:18:44 -04:00
|
|
|
EncodeMap = {
|
|
|
|
'&' => '&',
|
|
|
|
'<' => '<',
|
|
|
|
'>' => '>',
|
|
|
|
'"' => '"',
|
|
|
|
'\'' => ''',
|
|
|
|
"\r" => '
'
|
|
|
|
}
|
|
|
|
EncodeCharRegexp = Regexp.new("[#{EncodeMap.keys.join}]")
|
2003-10-14 11:14:02 -04:00
|
|
|
def encode_string(str)
|
|
|
|
@buf << str.gsub(EncodeCharRegexp) { |c| EncodeMap[c] }
|
|
|
|
end
|
|
|
|
|
|
|
|
def self.assign_ns(attrs, ns, namespace, tag = nil)
|
|
|
|
if namespace and !ns.assigned?(namespace)
|
|
|
|
tag = ns.assign(namespace, tag)
|
|
|
|
attrs['xmlns:' << tag] = namespace
|
|
|
|
end
|
2003-09-24 11:18:44 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def prologue
|
|
|
|
end
|
|
|
|
|
|
|
|
def epilogue
|
|
|
|
end
|
|
|
|
|
|
|
|
def find_handler(encodingstyle)
|
|
|
|
unless @handlers.key?(encodingstyle)
|
|
|
|
handler = SOAP::EncodingStyle::Handler.handler(encodingstyle).new(@charset)
|
|
|
|
handler.generate_explicit_type = @generate_explicit_type
|
|
|
|
handler.encode_prologue
|
|
|
|
@handlers[encodingstyle] = handler
|
|
|
|
end
|
|
|
|
@handlers[encodingstyle]
|
|
|
|
end
|
|
|
|
|
|
|
|
def xmldecl
|
|
|
|
if @charset
|
|
|
|
%Q[<?xml version="1.0" encoding="#{ @charset }" ?>]
|
|
|
|
else
|
|
|
|
%Q[<?xml version="1.0" ?>]
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
|
|
end
|