method

web_client

web_client()
private

No documentation available.

# File lib/wsdl/xmlSchema/importer.rb, line 69
  def web_client
    @web_client ||= begin
        require 'http-access2'
        if HTTPAccess2::VERSION < "2.0"
          raise LoadError.new("http-access/2.0 or later is required.")
        end
        HTTPAccess2::Client
      rescue LoadError
        warn("Loading http-access2 failed.  Net/http is used.") if $DEBUG
        require 'soap/netHttpClient'
        ::SOAP::NetHttpClient
      end
    @web_client
  end