When using rewriteConfig in commandbox, my FORM sc...
# box-products
s
When using rewriteConfig in commandbox, my FORM scope never seems to get populated when posting to a rewritten URL (in hindsight, this kinda sounds logical), but how can I fix this?
Solved my own problem while writing this down. Was using
type="redirect"
in the XML config. Shouldn't have done that.
b
@satauros I highly recommend looking into using Server Rules to use instead of the older, and sadly completely unsupported, Tuckey library.
👍 1
Tuckey has become Java abandonware, and poses significant limitations for use in multi-context applications (ModCFML, and multi-site) due to its reliance on the servlet. CommandBox Server Rules (my fancy name for Undertow's Predicate Language) is the way to go moving forward and I'll be deprecating Tuckey i the 6.0 release.
s
Thanks for the feedback, @bdw429s.