Posts

Showing posts from February, 2014

how to get the value of a parameter "of OperationBinding" at runtime

Hi This method is used to retrieve the input value of a parameter of an Operation     public String viewScannedDocumentAction() {         String outcome = null;         Long doctype = null;         String yer = null;         DCIteratorBinding scanedDocIter = ADFUtils.findIterator("DocTransDocDtlVoIterator");         DCIteratorBinding currentIterator = ADFUtils.findIterator("DocTransDocCountIterator");         OperationBinding opr = getOperation("ExecuteWithParams");         Row row = currentIterator.getCurrentRow();         if (row != null) {          //   Map operationParamsMap = opr.getParamsMap();             DCInvokeMethod method = (DCInvokeMethod) opr.getOperationInfo();             if (method != null) {                 DCInvokeMethodDef methodDef = method.getDef();                 if (methodDef != null) {                     OperationParameter[] operationParameters = null;                     operationParameters = methodDef.getPara

Scanning Document from ADF Application

Using JTwain library , I managed to capture images from scanners and convert it to PDF file and upload this file to the database column "BLOB' Here is a demonstration Archiving System