HII am trying to create from xdf file using formserver-client.jar. This
my codeIOutputContext _context = LiveCycle.getInstance().renderPdfForm(
"http://localhost:8080/lesson2", "requestform.xdp",
XomUtil.toByteArray(_formData));LiveCycle class ispublic class LiveCycle
{ private static LiveCycle self = null; private EJBClient lcForms;
private LiveCycle() { // Singleton constructor lcForms = new
EJBClient(); } static public LiveCycle getInstance() { if (self == null)
{ self = new LiveCycle(); } re...