You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Nov 9, 2022. It is now read-only.
let $var := req:required("q", "type=xs:string")
return xdmp:log($var)
with the input
"this is my
++test input"
is stripping out the '+' characters from the input (replacing them with spaces). The characters are being sent across properly url encoded as %2B. Replacing req:required() with xdmp:get-request-field() works correctly.
The text was updated successfully, but these errors were encountered:
This query
let $var := req:required("q", "type=xs:string")
return xdmp:log($var)
with the input
"this is my
++test input"
is stripping out the '+' characters from the input (replacing them with spaces). The characters are being sent across properly url encoded as %2B. Replacing req:required() with xdmp:get-request-field() works correctly.
The text was updated successfully, but these errors were encountered: