# 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
# File soap/wsdlDriver.rb, line 206
def httpproxy
@servant.options["protocol.http.proxy"]
end
# File soap/wsdlDriver.rb, line 210
def httpproxy=(httpproxy)
@servant.options["protocol.http.proxy"] = httpproxy
end
# File soap/wsdlDriver.rb, line 242
def inspect
"#<#{self.class}:#{@servant.port.name}>"
end
# File soap/wsdlDriver.rb, line 222
def mandatorycharset
@servant.options["protocol.mandatorycharset"]
end
# File soap/wsdlDriver.rb, line 226
def mandatorycharset=(mandatorycharset)
@servant.options["protocol.mandatorycharset"] = mandatorycharset
end
# File soap/wsdlDriver.rb, line 246
def reset_stream
@servant.reset_stream
end
# File soap/wsdlDriver.rb, line 214
def wiredump_dev
@servant.options["protocol.http.wiredump_dev"]
end
# File soap/wsdlDriver.rb, line 218
def wiredump_dev=(wiredump_dev)
@servant.options["protocol.http.wiredump_dev"] = wiredump_dev
end
Commenting is here to help enhance the documentation. For example, code samples, or clarification of the documentation.
If you have questions about Ruby or the documentation, please post to one of the Ruby mailing lists. You will get better, faster, help that way.
If you wish to post a correction of the docs, please do so, but also file bug report so that it can be corrected for the next release. Thank you.
If you want to help improve the Ruby documentation, please see Improve the docs, or visit Documenting-ruby.org.