Home arrow Discussion Forum
psadmin.org
Welcome, Guest
Please Login or Register.    Lost Password?
JOLTPOOLING (1 viewing) (1) Guest
Go to bottom Post Reply Favoured: 0
TOPIC: JOLTPOOLING
#234
Rohit Talwar (Visitor)
Click here to see the profile of this user
Birthdate:
JOLTPOOLING 4 Months, 3 Weeks ago  
Just want to share, this is how the JOLTPOOLING is being taken care at the servlet level, this same snippet is being used in the all the servlets like psc, psp, SchedulerTransfer, PSAttachServelt, etc. We disable/enable them at the servlet basis only in web.xml. Whereas the web.xml act as the servlet configuration file and even also also termed as weblogic descriptors files (web.xml, weblogic.xml). Once you make this change then this snippet is called in in the respective servlet. For reading these codes, we need to use the Java Dcompiler to read all the servlet files at the location (PS_HOME\webserv\peoplesoft\applications\peoplesoft\PORTAL\WEB-INF\classes\psft\pt8) to understand the JOLTPOOLING, how it has been embeded in all the servelets meant for PeopleSoft. In WL console, we would find the link for JOLTPOOLING but it would be empty as in Peoplesoft JOLTPOOLING is being taken care at the servlet level.





public void init(ServletConfig servletconfig)

throws ServletException

{

super.init(servletconfig);

PIAContext piacontext = PIAContext.getPIAContext();

piacontext.init1(servletconfig);

CacheUtil.loadCacheContext(piacontext);

configDir = servletconfig.getInitParameter("configDir");

PSAuthenticator.initConfiguration(servletconfig);

String s = servletconfig.getInitParameter("joltPooling");

if(s != null)

{

LoginInfo.setJoltPooling(s);

} else

{

LoginInfo.setJoltPooling("false");

}

String s1 = servletconfig.getInitParameter("maxPoolSize");

if(s1 != null)

{

LoginInfo.setMaxPoolSize(Integer.valueOf(s1).intValue());

}

log = Logger.getSingleton();

config = servletconfig;

}
Enter code here   
Please note, although no boardcode and smiley buttons are shown, they are still useable
 
Logged Logged  
  Reply Quote
      Topics Author Date
    emo
*Unchanged in Compare Reports
Guest 2008/05/27 20:23
    thread link
thread linkthread link Re:*Unchanged in Compare Reports
Praveen Joshi 2008/10/29 23:08
    thread link
thread linkthread linkthread link JOLTPOOLING
Rohit Talwar 2010/04/16 03:42
Go to top Post Reply
Powered by PsAdmin.orgget the latest posts directly to your desktop
© 2010 PSADMIN.org
PSAdmin.org is for & by the PeopleSoft Administrators to share their Experience.