dswitzer
06/02/2022, 9:31 PMxajp-path-info
header which contains the /item/a09sada1234/
value, which I can dump out to the URL summary, but it's not as clean as having it be part of the URL.
Is there a trick to get this working in FR?carehart
06/10/2022, 3:59 PMdswitzer
06/21/2022, 12:57 PMif( len(cgi["xajp-path-info"]) ){
var frapi = createObject("java","com.intergral.fusionreactor.api.FRAPI").getInstance();
var txn = frapi.getActiveTransaction();
txn.setUrl(replace(cgi.request_url, "/index.cfm", "/index.cfm" & cgi["xajp-path-info"]));
}
carehart
06/21/2022, 1:32 PM