Just like we can get the domain root directory from weblogic.management.DomainDir
String root = DomainDir.getRootDir() ;
and domain name from weblogic.management.configuration.DomainMBean
DomainMBean domainMBean = MBeanUtils.getDomainMBean();
String domainName = domainMBean.getName() ;
How can i get , the application name in which the servlet is deployed from inside the same servlet ? Which API from weblogic provides that information ?
for eg : application path = Middleware/user_projects/domains/Domain_1/servers/AdminServer/upload/webapp1. war
and application name = webapp1. war
Edited by: Tom on Mar 31, 2011 7:27 PM
Middleware/user_projects/domains/Domain_1/servers/AdminServer/upload/webapp1(only and only if Weblogic expands the WAR in same root folder and uses the WAR filename as expanded folder name). Let me know if this is acceptable, then I'll post an answer how to do it. – BalusC Mar 31 '11 at 16:22