Changeset 123
- Timestamp:
- 06/21/01 14:53:29 (7 years ago)
- Files:
-
- trunk/lib/soap/streamHandler.rb (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/lib/soap/streamHandler.rb
r108 r123 122 122 Content-Length: #{ soapString.size } 123 123 Content-Type: #{ MediaType } 124 User-Agent: SOAP4R/#{ Version } 124 125 SOAPAction: #{ action } 125 126 … … 151 152 line = s.gets.chop 152 153 dumpDev << line << "\n" if dumpDev 153 Regexp.new( '^HTTP/(1.\d)\s+(\d+) \s+(.*)$' ) =~ line154 Regexp.new( '^HTTP/(1.\d)\s+(\d+)(?:\s+(.*))?$' ) =~ line 154 155 version = $1 155 156 status = $2