Hi Team,
I am getting ViewObject from ApplicationModule as shown below , but for 5 view objects I am getting 5 Active connections count in weblogic server,
on closing ApplicationModule it is coming to 0. I would like to know is this the correct approach are do we need to maintain Active connections count as 1 ? if yes, Please let me know how can I achieve it...!
please clarify.
Code :
ApplicationModule am = ADFUtil.getApplicationModule(amDef, config);
ViewObject vo1 = am.findViewObject("ViewObject1");
ViewObject vo2 = am.findViewObject("ViewObject2");
ViewObject vo3 = am.findViewObject("ViewObject3");
ViewObject vo4 = am.findViewObject("ViewObject4");
ViewObject vo5 = am.findViewObject("ViewObject5");

Jdev : 11.1.2.4.0
Regards,
ADF Developer