FileSecure Interfaces integration source code reference. FS Helper Initialization ------------------------ - At application startup initializing FSHelperlibrary and FSHelper - Below classes are used for the same - SecloreMain - static block :- InitializeWSClient.initializeHelperLibrary((FSHELPERLIBRARY_CONFIG_XML_PATH, );); InitializeWSClient.initializeHelper(HELPER_INSTANCE_KEY, FSHELPER_RESOURCE_PATH, FSHELPER_CONFIG_XML_PATH, ); - InitializeWSClient - initializeHelperLibrary( ... ) - initializeHelper( ... ) Main Class ------------ - com.seclore.fs.protect.example.main - SecloreMain class Note: ===== while preparing xml string for request or response. please escape below spacial character for the string which will be written within xml tag. "&" -> "&" "<" -> "<" ">", -> ">" "\"" -> """ "'" -> "'"; Refer: com.seclore.fs.protect.example.util.XMLUtil class and - escapeForXML () method Example: sample xml is "Sample Sales & purchase report.pdf" here "Sample Sales and purchase report" should be escaped. Use: String fileName = XMLHelper.escapeForXML( "Sample Sales & purchase report" ); ""+fileName+""