On Sat, Mar 20, 2010 at 2:48 PM, Supun Kamburugamuva <[email protected]> wrote: > > Yes I was missing something :). If the content type is null for a GET > request, it is default to application/x-www-form-urlencoded in the > org.apache.axis2.transport.http.util.RESTUtil.java. > > if (contentType == null || "".equals(contentType)) { > contentType = HTTPConstants.MEDIA_TYPE_X_WWW_FORM; > } >
Well that may work but its wrong :-). GET (or any HTTP request that has no entity body) is not required to have a content type and does not have a content type. So we should fix it properly by having the default builder notion .. not a default content type concept. Sanjiva. -- Sanjiva Weerawarana, Ph.D. Founder, Chairman & CEO; WSO2, Inc.; http://wso2.com/ email: [email protected]; phone: +1 408 754 7388 x51726; cell: +94 77 787 6880 blog: http://sanjiva.weerawarana.org/ Lean . Enterprise . Middleware
_______________________________________________ Carbon-dev mailing list [email protected] https://mail.wso2.org/cgi-bin/mailman/listinfo/carbon-dev
