Changeset 2002
- Timestamp:
- 10/19/07 00:07:43 (1 year ago)
- Files:
-
- branches/1_5/lib/soap/mimemessage.rb (modified) (1 diff)
- branches/1_5/lib/soap/soap.rb (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
branches/1_5/lib/soap/mimemessage.rb
r1737 r2002 121 121 122 122 def parse(str) 123 headers, body = str.split(/\r\n\r\n/ s, 2)123 headers, body = str.split(/\r\n\r\n/, 2) 124 124 if headers != nil and body != nil 125 125 @headers = Headers.parse(headers) branches/1_5/lib/soap/soap.rb
r1984 r2002 15 15 16 16 17 VERSION = Version = '1.5. 8'17 VERSION = Version = '1.5.9-SNAPSHOT' 18 18 PropertyName = 'soap/property' 19 19