private Method

Importer.parse(content, location, originalroot)

There's no documentation for this item.

Source Code

# File wsdl/importer.rb, line 23
def parse(content, location, originalroot)
  opt = {
    :location => location,
    :originalroot => originalroot
  }
  begin
    WSDL::Parser.new(opt).parse(content)
  rescue WSDL::Parser::ParseError
    super(content, location, originalroot)
  end
end
Comments

Have your say
Please use Textile formatting (click here for a cheat sheet). Use <code/> and <pre/> for code samples.
Click here to login with OpenID to to post comments.