Changeset 1048
- Timestamp:
- 11/23/07 17:28:19 (9 months ago)
- Files:
-
- trunk/example/net/servlets.d (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/example/net/servlets.d
r1025 r1048 135 135 // log everything to the output 136 136 output ("------------------------") (Newline) 137 ("Uri: ") (uri.to Utf8) (Newline)137 ("Uri: ") (uri.toString) (Newline) 138 138 ("------------------------") (Newline) 139 139 ("Headers:") (Newline); … … 152 152 // display the Servlet environment 153 153 output ("encoding: ") (request.characterEncoding) (Newline) 154 ("content length: ") (Integer.to Utf8(request.contentLength)) (Newline)154 ("content length: ") (Integer.toString(request.contentLength)) (Newline) 155 155 ("content type: ") (request.contentType) (Newline) 156 156 ("protocol: ") (request.protocol) (Newline) … … 158 158 ("method: ") (request.method) (Newline) 159 159 ("host name: ") (request.serverName) (Newline) 160 ("host port: ") (Integer.to Utf8(request.serverPort)) (Newline)160 ("host port: ") (Integer.toString(request.serverPort)) (Newline) 161 161 ("remote address: ") (request.remoteAddress) (Newline) 162 162 ("remote host: ") (request.remoteHost) (Newline)
