From 322fd80f40ba09a63c45ca0cf76984b266199f51 Mon Sep 17 00:00:00 2001 From: Jocelyn Fiat Date: Tue, 22 Apr 2014 10:18:16 +0200 Subject: [PATCH] Be sure to reset `is_https' to False, in case the wsf_request object is reused by the implementation. --- library/server/wsf/src/wsf_request.e | 2 ++ 1 file changed, 2 insertions(+) diff --git a/library/server/wsf/src/wsf_request.e b/library/server/wsf/src/wsf_request.e index 0d603d3e..35b4286e 100644 --- a/library/server/wsf/src/wsf_request.e +++ b/library/server/wsf/src/wsf_request.e @@ -125,6 +125,7 @@ feature {NONE} -- Initialization end --| HTTPS support + is_https := False if attached meta_string_variable ("HTTPS") as l_https and then not l_https.is_empty then is_https := l_https.is_case_insensitive_equal_general ("on") or else l_https.is_case_insensitive_equal_general ("yes") @@ -172,6 +173,7 @@ feature -- Destroy raw_input_data_recorded := False request_method := empty_string_8 set_uploaded_file_path (Void) + is_https := False end feature -- Status report