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

link|improve this question

Please include a link to your topic on the other forum from where you copypasted the question. This way we can also track any updates. – BalusC Mar 31 '11 at 14:22
forums.oracle.com/forums/message.jspa?messageID=9484658#9484658 - same question in OTN forums. no answers yet. – Tom Mar 31 '11 at 15:00
Can you elaborate in non-Weblogic terms what exactly the "application name/fullpath" represents? Eventually with an example? The basic Servlet API also offers some methods to reveal server specific information. – BalusC Mar 31 '11 at 15:34
@BalusC edited the post. added more details. – Tom Mar 31 '11 at 16:02
This information is unfortunately not directly available by Servlet API, no. You can at highest get the root folder where the WAR is been expanded, which would in your case be 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
show 3 more comments
feedback

1 Answer

up vote 4 down vote accepted

I dont have a working example to hand, but try

getComponentName() and getModuleURI() from the

weblogic.management.runtime.WebAppComponentRuntimeMBean

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.