| Class | WSDL::Importer |
| In: |
lib/wsdl/importer.rb
|
| Parent: | WSDL::XMLSchema::Importer |
# File lib/wsdl/importer.rb, line 17
17: def self.import(location, originalroot = nil)
18: new.import(location, originalroot)
19: end
# File lib/wsdl/importer.rb, line 23
23: def parse(content, location, originalroot)
24: opt = {
25: :location => location,
26: :originalroot => originalroot
27: }
28: begin
29: WSDL::Parser.new(opt).parse(content)
30: rescue WSDL::Parser::ParseError
31: super(content, location, originalroot)
32: end
33: end