Package com.adobe.idp.dsc

Examples of com.adobe.idp.dsc.InvocationRequest


    private void invokeAndPostDataToLC(Document xmlData, String process, LiveCycleService lvService) {
        try {
            ServiceClientFactory serviceClientFactory = lvService.getServiceClientFactory();
            Map<String, Object> inputParams = new HashMap<String, Object>();
            inputParams.put("formData1", xmlData);
            InvocationRequest request = serviceClientFactory.createInvocationRequest(process, "invoke", inputParams, false);
            serviceClientFactory.getServiceClient().invoke(request);
        } catch (Exception exc) {
            exc.printStackTrace();
        }
    }
View Full Code Here

TOP

Related Classes of com.adobe.idp.dsc.InvocationRequest

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.