Changeset 1349
- Timestamp:
- 12/02/04 22:01:20 (4 years ago)
- Files:
-
- trunk/lib/soap/rpc/soaplet.rb (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/lib/soap/rpc/soaplet.rb
r1334 r1349 115 115 116 116 def do_POST(req, res) 117 @config[:Logger].debug { "SOAP request: " + req.body } 117 118 soapaction = parse_soapaction(req.meta_vars['HTTP_SOAPACTION']) 118 119 router = lookup_router(soapaction) … … 144 145 if res.body.is_a?(IO) 145 146 res.chunked = true 147 @config[:Logger].debug { "SOAP response: (chunked response not logged)" } 148 else 149 @config[:Logger].debug { "SOAP response: " + res.body } 146 150 end 147 151 end