In Files

  • soap/wsdlDriver.rb

Class/Module Index [+]

Quicksearch

SOAP::WSDLDriver

Public Class Methods

__attr_proxy(symbol, assignable = false) click to toggle source
 
               # File soap/wsdlDriver.rb, line 164
def __attr_proxy(symbol, assignable = false)
  name = symbol.to_s
  define_method(name) {
    @servant.__send__(name)
  }
  if assignable
    aname = name + '='
    define_method(aname) { |rhs|
      @servant.__send__(aname, rhs)
    }
  end
end
            
new(wsdl, port, logdev) click to toggle source
 
               # File soap/wsdlDriver.rb, line 238
def initialize(wsdl, port, logdev)
  @servant = Servant__.new(self, wsdl, port, logdev)
end
            

Public Instance Methods

httpproxy() click to toggle source
 
               # File soap/wsdlDriver.rb, line 206
def httpproxy
  @servant.options["protocol.http.proxy"]
end
            
httpproxy=(httpproxy) click to toggle source
 
               # File soap/wsdlDriver.rb, line 210
def httpproxy=(httpproxy)
  @servant.options["protocol.http.proxy"] = httpproxy
end
            
inspect() click to toggle source
 
               # File soap/wsdlDriver.rb, line 242
def inspect
  "#<#{self.class}:#{@servant.port.name}>"
end
            
mandatorycharset() click to toggle source
 
               # File soap/wsdlDriver.rb, line 222
def mandatorycharset
  @servant.options["protocol.mandatorycharset"]
end
            
mandatorycharset=(mandatorycharset) click to toggle source
 
               # File soap/wsdlDriver.rb, line 226
def mandatorycharset=(mandatorycharset)
  @servant.options["protocol.mandatorycharset"] = mandatorycharset
end
            
reset_stream() click to toggle source
 
               # File soap/wsdlDriver.rb, line 246
def reset_stream
  @servant.reset_stream
end
            
wiredump_dev() click to toggle source
 
               # File soap/wsdlDriver.rb, line 214
def wiredump_dev
  @servant.options["protocol.http.wiredump_dev"]
end
            
wiredump_dev=(wiredump_dev) click to toggle source
 
               # File soap/wsdlDriver.rb, line 218
def wiredump_dev=(wiredump_dev)
  @servant.options["protocol.http.wiredump_dev"] = wiredump_dev
end
            
wiredump_file_base() click to toggle source
 
               # File soap/wsdlDriver.rb, line 230
def wiredump_file_base
  @servant.options["protocol.wiredump_file_base"]
end
            
wiredump_file_base=(wiredump_file_base) click to toggle source
 
               # File soap/wsdlDriver.rb, line 234
def wiredump_file_base=(wiredump_file_base)
  @servant.options["protocol.wiredump_file_base"] = wiredump_file_base
end