Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have an ear deployed on weblogic console. I need to check contents of manifest file of a jar that is present in the deployed ear.

Currently I am using below code to access jar inside ear deployed :

           Hashtable env = new Hashtable(5);
            env.put(Context.INITIAL_CONTEXT_FACTORY,
                        "weblogic.jndi.WLInitialContextFactory");
            env.put(Context.PROVIDER_URL,
                        url);
            env.put(Context.SECURITY_PRINCIPAL, user);
            env.put(Context.SECURITY_CREDENTIALS, password);
            Context ctx = new InitialContext(env);
            mBeanHome = (MBeanHome)ctx.lookup(MBeanHome.ADMIN_JNDI_NAME);


            String type = "EJBComponentRuntime";  
            Set beans = mBeanHome.getMBeansByType(type);  


            try{
            for(Iterator it=beans.iterator();it.hasNext();)
            {      
                  EJBComponentRuntimeMBean rt = (EJBComponentRuntimeMBean)it.next();  

                  if(rt.getParent().getName().equals("xxx.ear")){
                        System.out.println(rt.getName());

Here rt.getName() will give jar inside "xxx.ear"

Now I need to access the manifest file of this jar.

share|improve this question
look whether something from here would work forums.sun.com/thread.jspa?threadID=642761 – Bozho Sep 7 '10 at 7:48

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.