# File webservices/soap/messaging.rb, line 55
  def get_carrier_names
    begin
      res = self.class.driver.getCarrierNames
      if res.carrierNames.respond_to? :string
        res.carrierNames.string
      else
        nil
      end
    rescue SOAP::FaultError
      false
    end
  end