|
34 | 34 | <cfargument name="matchedURI" />
|
35 | 35 | <cfargument name="parsedResponse" />
|
36 | 36 | <cfargument name="originalResponse" />
|
| 37 | + <cfargument name="statusCode" /> |
37 | 38 | <cfreturn true />
|
38 | 39 | </cffunction>
|
39 | 40 |
|
|
83 | 84 | (
|
84 | 85 | application._taffy.settings.reloadOnEveryRequest eq true
|
85 | 86 | )>
|
86 |
| - <cfif !local.reloadedInThisRequest><!--- prevent double reloads ---> |
| 87 | + <cfif !local.reloadedInThisRequest and !isUnhandledPathRequest(arguments.targetPath)><!--- prevent double reloads ---> |
87 | 88 | <cfset onApplicationStart() />
|
88 | 89 | </cfif>
|
89 | 90 | </cfif>
|
|
491 | 492 | ,local.parsed.matchDetails.srcUri
|
492 | 493 | ,structKeyExists( _taffyRequest, 'resultSerialized' ) ? _taffyRequest.resultSerialized : ''
|
493 | 494 | ,structKeyExists( _taffyRequest, 'result' ) ? _taffyRequest.result.getData() : {}
|
| 495 | + ,_taffyRequest.statusArgs.statusCode |
494 | 496 | ) />
|
495 | 497 | <cfset m.otreTime = getTickCount() - m.beforeOnTaffyRequestEnd />
|
496 | 498 | <cfheader name="X-TIME-IN-ONTAFFYREQUESTEND" value="#m.otreTime#" />
|
|
1358 | 1360 | <cfset local.credentials.password = "" />
|
1359 | 1361 | <cftry>
|
1360 | 1362 | <cfset local.encodedCredentials = ListLast( GetPageContext().getRequest().getHeader("Authorization"), " " ) />
|
1361 |
| - <cfset local.decodedCredentials = toString( toBinary( local.EncodedCredentials ) ) /> |
| 1363 | + <cfset local.decodedCredentials = toString( toBinary( local.EncodedCredentials ), "iso-8859-1" ) /> |
1362 | 1364 | <cfset local.credentials.username = listFirst( local.decodedCredentials, ":" ) />
|
1363 | 1365 | <cfset local.credentials.password = listRest( local.decodedCredentials, ":" ) />
|
1364 | 1366 | <cfcatch></cfcatch>
|
|
0 commit comments