That ColdFusion setting is stored in neo-runtime.xml. As a
hack, you could extract the value from the file in your
onApplicationStart method. Then store it in an application
variable. Though there may be better ways of doing it.
<!--- set the default to unknown --->
<cfset postSizeLimit = "unknown">
<!--- read in the file --->
<cfset contents = FileRead( Server.ColdFusion.RootDir
&"/lib/neo-runtime.xml")>
<cfwddx action="wddx2cfml" input="#contents#"
output="settings">
<!--- search the settings for the post size key --->
<cfloop array="#settings#" index="data">
<cfif isStruct(data) AND structKeyExists(data,
"postSizeLimit")>
<cfset postSizeLimit = data.postSizeLimit>
<cfbreak>
</cfif>
</cfloop>
<!--- display the final value --->
<cfoutput>
postSizeLimit = #postSizeLimit#
</cfoutput>