13 lines
591 B
Plaintext
13 lines
591 B
Plaintext
<cfsetting showdebugoutput="no" enablecfoutputonly="yes">
|
|
<cfheader name="Content-Type" value="application/json">
|
|
<cfset result = {}>
|
|
<cftry>
|
|
<cfset result.pdfbox = createObject("java", "org.apache.pdfbox.pdmodel.PDDocument").getClass().getName()>
|
|
<cfcatch><cfset result.pdfbox = "NOT FOUND: " & cfcatch.message></cfcatch>
|
|
</cftry>
|
|
<cftry>
|
|
<cfset result.poi = createObject("java", "org.apache.poi.xwpf.usermodel.XWPFDocument").getClass().getName()>
|
|
<cfcatch><cfset result.poi = "NOT FOUND: " & cfcatch.message></cfcatch>
|
|
</cftry>
|
|
<cfoutput>#serializeJSON(result)#</cfoutput>
|