we are seeing some bizarre behavior w/in the assign message policy and are curious if this is designed as expected:
I looking to add a query parameter with no value with the Assign Message policy:
<Add>
<Headers/>
<QueryParams>
<QueryParam name="format">json</QueryParam>
<QueryParam name="with-data"></QueryParam>
</QueryParams>
<FormParams/>
</Add>
I’m expecting to get:
/something/otherthing/somepath?op=search&format=json&with-data
But im getting:
/something/otherthing/somepath?op=search&format=json&with-data=
Is this possible to do w/o dropping into Javascript?