Randy,
Short answer: Railo, or it's web server, appears to double-encode
Cookies, which we use to persist test summaries across multiple http
requests. It's a comma-delimited list of test runs, failures, errors,
and total time. This cookie, decoded, in ColdFusion looks something
like this:
Set-Cookie: MXUNIT_SUMMARY=28,0,0,479;path=/
However, Railo Express returns the decoded cookie like so:
*Set-Cookie: MXUNIT_SUMMARY=28%2C1%2C4%2C107;path=/
If I decode it again, it looks correct: *Set-Cookie:
MXUNIT_SUMMARY=28,1,4,107;path=/
At first glance, it appears that Railo or Resin is double-encoding the
cookie, but I suspect it might be another encoding issue I'm missing -
maybe something to do with locale or some other incompatibility. I'm
certainly open to suggestions here.
Sorry, but no workaround yet.
bill