http://qs1969.pair.com?node_id=964417


in reply to HTTP Data Being Changed

application/x-www-form-urlencoded type specifies + for spaces. You need to escape them:

useURI::Escape;
$r->content(uri_escape($content));

Replies are listed 'Best First'.
Re^2: HTTP Data Being Changed
by dlwester (Initiate) on Apr 11, 2012 at 13:39 UTC
    Thanks, that did the trick!