$subject!

eg: SourceRequest class has a headers hash map, and currently it cannot
handle http headers in case insensitive manner.

Should be corrected like below:

/** HTTP Headers */
private Map<String, String> headers =  new TreeMap<String, String>(new
Comparator<String>() {
        public int compare(String o1, String o2) {
            return o1.compareToIgnoreCase(o2);
        }
    });

PS: there can be other places too.

-- 

Thanks & regards,
Nirmal

Software Engineer- Platform Technologies Team, WSO2 Inc.
Mobile: +94715779733
Blog: http://nirmalfdo.blogspot.com/

<http://nirmalfdo.blogspot.com/>
_______________________________________________
Dev mailing list
[email protected]
http://wso2.org/cgi-bin/mailman/listinfo/dev

Reply via email to