Class: TeamForge::TFSoapRequest
- Inherits:
-
Struct
- Object
- Struct
- TeamForge::TFSoapRequest
- Defined in:
- lib/teamforge/tfsoaprequest.rb
Instance Method Summary collapse
-
#request(server = nil, timeout = nil, ssl = nil, proxy = nil) ⇒ Object
All Soap Requests sent to TeamForge are messages packaged in Ruby Structs.
Instance Method Details
#request(server = nil, timeout = nil, ssl = nil, proxy = nil) ⇒ Object
All Soap Requests sent to TeamForge are messages packaged in Ruby Structs. Structs maintain the proper parameter order that is required by TeamForge and allow for incremental building.
Calling this method ‘request’ on any Soap Message Struct in teamforge will send it to the server specified. The TeamForge module will remember the TeamForge server specified so it doesn’t have to be entered each time.
12 13 14 |
# File 'lib/teamforge/tfsoaprequest.rb', line 12 def request(server=nil, timeout=nil, ssl=nil, proxy=nil) TeamForge.request(self, server, timeout ,ssl, proxy) end |