source: extensions/gsdl-video/trunk/installed/cmdline/lib/ruby/1.8/xsd/mapping.rb@ 18425

Last change on this file since 18425 was 18425, checked in by davidb, 15 years ago

Video extension to Greenstone

File size: 1.2 KB
Line 
1# XSD4R - XML Mapping for Ruby
2# Copyright (C) 2005 NAKAMURA, Hiroshi <[email protected]>.
3
4# This program is copyrighted free software by NAKAMURA, Hiroshi. You can
5# redistribute it and/or modify it under the same terms of Ruby's license;
6# either the dual license version in 2003, or any later version.
7
8
9require "soap/parser"
10require 'soap/encodingstyle/literalHandler'
11require "soap/generator"
12require "soap/mapping"
13require "soap/mapping/wsdlliteralregistry"
14
15
16module XSD
17
18
19module Mapping
20 MappingRegistry = SOAP::Mapping::WSDLLiteralRegistry.new
21 MappingOpt = {:default_encodingstyle => SOAP::LiteralNamespace}
22
23 def self.obj2xml(obj, elename = nil, io = nil)
24 if !elename.nil? and !elename.is_a?(XSD::QName)
25 elename = XSD::QName.new(nil, elename)
26 end
27 elename ||= XSD::QName.new(nil, SOAP::Mapping.name2elename(obj.class.to_s))
28 soap = SOAP::Mapping.obj2soap(obj, MappingRegistry)
29 soap.elename = elename
30 generator = SOAP::SOAPGenerator.new(MappingOpt)
31 generator.generate(soap, io)
32 end
33
34 def self.xml2obj(stream)
35 parser = SOAP::Parser.new(MappingOpt)
36 soap = parser.parse(stream)
37 SOAP::Mapping.soap2obj(soap, MappingRegistry)
38 end
39end
40
41
42end
Note: See TracBrowser for help on using the repository browser.