Writing MBeans on Weblogic Server 8.1 sp5

Hi,
I am trying to write a standard mbean for managing my application. As of now its a simple MBean which just needs to print hello world on the server when a MBean Client invokes it. Let me discuss the apporach i have taken. Classes that have been devloped are.
Interface HelloMBean.java which doesnt extend any interface (as this is not a dynamic mbean). This contains a method hello()
Class Hello.java implementing the HelloMBean. This contains the method hello() which does the printing on the server when invoked.
HelloStartup which registers the mbean with the MBeanServer after doing a JNDI lookup for "weblogic.management.server"
MBeanClient.java which does a look up for the mbean the code of which is :-
url = "t3://localhost:7001" ;
username = "weblogic";
password = "weblogic";
MBeanHome home = null;
Environment env = new Environment();
env.setProviderUrl(url);
env.setSecurityPrincipal(username);
env.setSecurityCredentials(password);
Context ctx = env.getInitialContext();
//Retrieving the Administration MBeanHome interface
Object obj = ctx.lookup(MBeanHome.ADMIN_JNDI_NAME);
home = (MBeanHome) PortableRemoteObject.narrow(obj, MBeanHome.class);
WebLogicObjectName mbeanName = new WebLogicObjectName("MBeanDomain:Name=Hello,Type=ServerConfig");
WebLogicMBean mbean = (WebLogicMBean)home.getMBean(mbeanName);
Now At the server startup i see that the mbean has got successfully registered by using the isRegistered() method. But when i try to retreive the object from client i am getting a exception javax.management.InstanceNotFoundException.
I would appreciate if anyone could help me out in this issue. Also if anyone has written any sample code to register and invoke the mbeans written using other interfaces like DynamicMBean, WeblogicMBean etc and could share them or perhaps give pointers in how to go about writing and invoking them in weblogic would be really helpfull.
I read somewhere that till 7.0 weblogic didnt support writing of custom MBeans can anyone confirm that we can write custom MBeans on 8.1 ??
My purpose of writing this MBean is to invoke it from across the JVM. I know its possible using rmi but do think MBean would be the rite choice for it.
Thanks in advance

Change this code
<i>WebLogicObjectName mbeanName = new WebLogicObjectName("MBeanDomain:Name=Hello,Type=ServerConfig");
WebLogicMBean mbean = (WebLogicMBean)home.getMBean(mbeanName);</i>
to
MBeanServer mbs = home.getMBeanServer()
ObjectName oname = new ObjectName("MBeanDomain:Name=Hello,Type=ServerConfig");
// to invoke your mbean's hello method
mbs.invoke(oname, "hello", null, null);
You should remember that for CustomMBean's you cannot use MBeanHome.
HTH,
-satya
BEA Blog:
http://dev2dev.bea.com/blog/sghattu/
Get Involved in CodeShare:
https://wls-console-extensions.projects.dev2dev.bea.com/
https://wlnav.projects.dev2dev.bea.com/
https://eclipse-wlst.projects.dev2dev.bea.com/
https://wlst.projects.dev2dev.bea.com/

Similar Messages

  • How can I configuration MBean in weblogic server  using the console ?

    How can I configuration MBean in weblogic server using the console ?
    I hear people talking about mbeans in weblogic server I have look in the console I can not find where , or how to do it.
    can some body explain that or a link that explain it, how to do it on the console ?

    Hi,
    Registering Custom MBeans from Admin Console is not yet possible. But yes there are ways to Configure and Utilize Custom MBeans ...
    http://weblogic-wonders.com/weblogic/2010/02/16/registering-and-invoking-custommbeans/
    Thanks
    Jay SenSharma

  • How to see registered mbeans in weblogic server 10.3.3.0 in web console

    Hi ,
    I am new in mbeans registration in weblogic. I have written code to registered mbeans in weblogic server 10.3.3.0. And I have successfully configured this through weblogic. I can see my registered mbeans in JConsole. I have referred the below link to get help of registering my mbeans :
    https://blogs.oracle.com/WebLogicServer/entry/developing_custom_mbeans_to_ma
    My problem is :_ I can not ask my client to check or do some modification through JConsole. The solution which I was looking for this, If we could get some way to see those registered mbeans through web console such as Weblogic administration console. Is there any way to make this possible ? Do we have any configuration in weblogic server through which I can see my registered mbeans through web console.
    Or By goggling, I found we can use JMX console to registered our mbeans. But I do not have any idea how?
    I am rigorously looking for help. Thanks in advance who come forward to help me.
    Regards,
    Niraj Kumar Singh

    Niraj,
    According to [url http://docs.oracle.com/cd/E12840_01/wls/docs103/jmxinst/accesscust.html#wp1107240]the docs, you cannot access mbeans through the WLS console. JConsole is a JMX console, so you do know how already :)
    If you have Enterprise Manager (aka Fusion Middleware Control) installed in your domain, you can use that to see the mbeans as well.
    John

  • CPU Usage is high - WebLogic Server 8.1 SP5

    Hi,
    We upgraded the WebLogic Server 6.1 to WebLogic Server 8.1 SP5 for one of our application.
    The load test with WLS6.1 results,
    CPU Usage was peak up to 18% with sessions 10 -15 simultaneously.
    The load test with WLS8.1 results,
    CPU Usage was peak up to 60% for 12 users simultaneously.
    Why this higher CPU Usage in WebLogic 8.1 SP5 than WebLogic 6.1 for the similar environment (hardware)?
    Please give us the solution or the suggestions asap.

    If MQ V5 clients cannot interoperate with MQ V7 servers, then perhaps MQ V6 clients support the 1.4 JVM? If so, I suppose you can use an MQ V6 client to communicate with V7.
    Alternatively, perhaps MQ's "extended transactional client" provides more flexibility in interoperability than the client you're using.
    Tom

  • Weblogic server 8.1 sp5 connection to MQ V 7.1

    Hi,
    We are using Weblogic 8.1 sp5 to connect to Websphere MQ v 5.3 using the "Foreign JMS Server" connectivity of Weblogic. Websphere MQ Qmgr is being accessed in ".bindings" mode.
    we have configured an XA Queue connection factories and queues in the file based jndi tree (.bindings) to connect to MQ. Weblogic is configured to use this bindings file to look up the file base JNDI tree for Weblogic MQ and also all binaries such as "com.ibm.mq.mqjms.jar" etc are available in its classpath.
    An MDB is deployed on weblogic to listen to an MQ queue. The connectivity works fine and messages are delivered to the MDB (XA mode) and processed fine.
    Now the MQ is getting upgraded to V 7.1.
    From the below link i think we can only use weblogic server 9.1 to connect MQ v 7.1
    http://publib.boulder.ibm.com/infocenter/wmqv7/v7r0/index.jsp?topic=/com.ibm.mq.csqzaw.doc/jm41140_.htm
    If i am wrong can you clarify the below doubts
    1) What changes should be done at weblogic server side ... like
    a) getting the new .bindings file for MQ V 7.1 and it's related jars.
    2) Will the above set-up works as java version is 1.4.2.10
    3) Is there any known issues.
    for ex: http://www-01.ibm.com/support/docview.wss?uid=swg1IZ71306
    Thanks in advance

    If MQ V5 clients cannot interoperate with MQ V7 servers, then perhaps MQ V6 clients support the 1.4 JVM? If so, I suppose you can use an MQ V6 client to communicate with V7.
    Alternatively, perhaps MQ's "extended transactional client" provides more flexibility in interoperability than the client you're using.
    Tom

  • Portlet Url writing with a Weblogic Server as WSRP Producer

    Hi there,
    I’m having problem to find out which API I have to use to make my producer write the URL using the consumer’s urlTemplate.
    I have a basic Struts portlet with two forward (to a JSP) actions, I need to find a way to use the urlTemplate from the consumer (I do receive the good SOAP message with those templates from the consumer) to make my producer re-write the url (href to next.do in a JSP).
    My consumer is running on a bea Weblogic Portal 8.1 and my WSRP (simple) producer on a Weblogic server 8.1
    I did not find any example in the whole bea documentation and I hope that some of you may have experienced it.
    Thank you.
    Joanny

    If you are using the correct version of Struts taglib, this rewriting
    should happen automatically. Can you check if the taglib tld points to
    com.bea. classes?
    Subbu
    Joanny CHRIST wrote:
    Hi there,
    I???m having problem to find out which API I have to use to make my producer write the URL using the consumer???s urlTemplate.
    I have a basic Struts portlet with two forward (to a JSP) actions, I need to find a way to use the urlTemplate from the consumer (I do receive the good SOAP message with those templates from the consumer) to make my producer re-write the url (href to next.do in a JSP).
    My consumer is running on a bea Weblogic Portal 8.1 and my WSRP (simple) producer on a Weblogic server 8.1
    I did not find any example in the whole bea documentation and I hope that some of you may have experienced it.
    Thank you.
    Joanny

  • Requesting links for Weblogic Server 8.1 (sp5) binaries for all platforms.

    This might seem like a brazen request, but could someone provide me a link for Weblogic 8.1 (sp5) binaries. . .It seems unreasonable to spend $2,000 just to download a product version no longer supported by Oracle. The fact of the matter is that my client and my client's third-party staging server deploys their application in Weblogic 8.1 (sp5); believe me, if I had the authority and range of control to update my client's staging server and production server I would.
    Regards,
    Chuck
    Edited by: user11226438 on Jun 3, 2009 7:33 AM
    Ok, I found a majority of Weblogic's 8.1 (sp6) links. . .do you think developing on sp6 and deploying to sp5 will cause some issues? I'm supposing it won't and while the client has yet to deliver the application, the app server, documentation, or any other required materials, I'd at least like to get an environment that is compliant with their staging server's environment before-hand.
    Edited by: user11226438 on Jun 3, 2009 9:38 AM
    If anyone thinks that I will need to acquire a license for running (a sanboxed) version of Weblogic please let me know so I can inform my employer accordingly.

    If MQ V5 clients cannot interoperate with MQ V7 servers, then perhaps MQ V6 clients support the 1.4 JVM? If so, I suppose you can use an MQ V6 client to communicate with V7.
    Alternatively, perhaps MQ's "extended transactional client" provides more flexibility in interoperability than the client you're using.
    Tom

  • Weblogic server 8.1 sp5 startup problem

    Hello all,
    I have been having a problem with Weblogic 8.1 sp5.
    Twice in a week, I would start an admin and managed server and what would happen is that the managed server will not startup. I would click the it's startup .cmd file and it would pop up and then dissapear. This was my primary problem.
    In one case the admin server terminal would show up but I would go to the admin console and it would not appear, hence the admin server could not start up.
    What I would like to know is why when we click a startup .cmd file, the terminal would pop up and disappear and why servers don't start up in general? What areas should we look into?
    Any input is welcome.

    start ur admin first as ./startweblogic.sh or double click on startweblogic.cmd if in windows OS
    Then modify ur startmanagedweblogic file with admin url and port and also server name as ur managed servers name
    Save that file as (save as option) startManagedWeblogic_M1.cmd and startManagedWeblogic_M2.cmd to start them
    the admin url and port would be the same form M1 and M2
    only the server_name will be different, M1 for M1 and M2 for M2
    Next start ur managed servers and let me know

  • Weblogic Server HeuristicMixedException

    Hi
    I've been encountering the following exception occassionally. I'm using Weblogic server 8.1 SP5 and connecting to 9i Oracle DB. Appreciate any help to solve this.
    <Error> <JTA> <BEA-110412> <Name=[EJB com.liferay.portal.ejb.UserManagerEJB.getAllLayouts(java.lang.String)],Xid=BEA1-79D34965B736AAD3495F(17057455),Status=Committed,HeuristicErrorCode=XA_HEURHAZ,numRepliesOwedMe=0,numRepliesOwedOthers=0,seconds since begin=81,seconds left=38,activeThread=Thread[ExecuteThread: '20' for queue: 'weblogic.kernel.Default',5,Thread Group for Queue: 'weblogic.kernel.Default'],XAServerResourceInfo[TX1]=(ServerResourceInfo[TX1]=(state=committed,assigned=mainServer),xar=TX1,re-Registered = false),SCInfo[AAPPS+mainServer]=(state=committed),properties=({weblogic.transaction.name=[EJB com.liferay.portal.ejb.UserManagerEJB.getAllLayouts(java.lang.String)]}),local properties=({weblogic.jdbc.jta.TX1=weblogic.jdbc.wrapper.TxInfo@1bc97fd}),OwnerTransactionManager=ServerTM[ServerCoordinatorDescriptor=(CoordinatorURL=mainAdmin:8401+APPS+t3+, XAResources={TX1, weblogic.jdbc.wrapper.JTSXAResourceImpl, JMS_jms1_81_NotDurable, JMS_NBSDummyJMSServer_NotDurable},NonXAResources={})],CoordinatorURL=mainAdmin:8401+APPS+t3+) completed heuristically: (TX1, HeuristicHazard, ()) >
    <Error> <EJB> <BEA-010026> <Exception occurred during commit of transaction Name=[EJB com.liferay.portal.ejb.UserManagerEJB.getAllLayouts(java.lang.String)],Xid=BEA1-79D34965B736AAD3495F(17057455),Status=Committed,HeuristicErrorCode=XA_HEURHAZ,numRepliesOwedMe=0,numRepliesOwedOthers=0,seconds since begin=81,seconds left=38,XAServerResourceInfo[TX1]=(ServerResourceInfo[TX1]=(state=committed,assigned=mainServer),xar=TX1,re-Registered = false),SCInfo[AAPPS+mainServer]=(state=committed),properties=({weblogic.transaction.name=[EJB com.liferay.portal.ejb.UserManagerEJB.getAllLayouts(java.lang.String)]}),local properties=({weblogic.jdbc.jta.TX1=weblogic.jdbc.wrapper.TxInfo@1bc97fd}),OwnerTransactionManager=ServerTM[ServerCoordinatorDescriptor=(CoordinatorURL=mainAdmin:8401+APPS+t3+, XAResources={TX1, weblogic.jdbc.wrapper.JTSXAResourceImpl, JMS_jms1_81_NotDurable, JMS_NBSDummyJMSServer_NotDurable},NonXAResources={})],CoordinatorURL=mainAdmin:8401+APPS+t3+): javax.transaction.HeuristicMixedException: (TX1, HeuristicHazard, ())
    at weblogic.transaction.internal.ServerTransactionImpl.internalCommit(ServerTransactionImpl.java:278)
    at weblogic.transaction.internal.ServerTransactionImpl.commit(ServerTransactionImpl.java:228)
    at weblogic.ejb20.internal.BaseEJBObject.postInvoke(BaseEJBObject.java:320)
    at weblogic.ejb20.internal.StatelessEJBObject.postInvoke(StatelessEJBObject.java:168)
    Cheers,
    bayisuper

    no, it support partially.
    I just want to encrypt my data (due to client requirement)
    and i found in documentation that it supports
    Encryption & Integrity
    http://download-west.oracle.com/docs/cd/A87860_01/doc/java.817/a83724/advanc2.htm#1022022
    Strange is, my whole J2EE-application works fine, but having problem only one EJB which reads/writes BLOB in Database ...
    Sanjay

  • Weblogic server not properly started in myeclipse

    Click to email this message
    Feb 7, 2009 6:05:06 PM EST> <Info> <WebLogicServer> <BEA-000377> <Starting WebLogic Server with Java HotSpot(TM) Client VM Version 1.5.0_11-b03 from Sun Microsystems Inc.>
    <Feb 7, 2009 6:05:08 PM EST> <Info> <Configuration Management> <BEA-150016> <This server is being started as the administration server.>
    <Feb 7, 2009 6:05:08 PM EST> <Info> <Management> <BEA-141107> <Version: WebLogic Server 8.1 SP5 Mon Sep 19 23:06:54 PDT 2005 641358
    WebLogic XMLX Module 8.1 SP5 Mon Sep 19 23:06:54 PDT 2005 641358 >
    The WebLogic Server did not start up properly.
    java.io.InvalidClassException: javax.management.MBeanAttributeInfo; local class incompatible: stream classdesc serialVersionUID = 7043855487133450673, local class serialVersionUID = 8644704819898565848
    at java.io.ObjectStreamClass.initNonProxy(Unknown Source)
    at java.io.ObjectInputStream.readNonProxyDesc(Unknown Source)
    at java.io.ObjectInputStream.readClassDesc(Unknown Source)
    at java.io.ObjectInputStream.readNonProxyDesc(Unknown Source)
    at java.io.ObjectInputStream.readClassDesc(Unknown Source)
    at java.io.ObjectInputStream.readOrdinaryObject(Unknown Source)
    at java.io.ObjectInputStream.readObject0(Unknown Source)
    at java.io.ObjectInputStream.readArray(Unknown Source)
    at java.io.ObjectInputStream.readObject0(Unknown Source)
    at java.io.ObjectInputStream.defaultReadFields(Unknown Source)
    at java.io.ObjectInputStream.readSerialData(Unknown Source)
    at java.io.ObjectInputStream.readOrdinaryObject(Unknown Source)
    at java.io.ObjectInputStream.readObject0(Unknown Source)
    at java.io.ObjectInputStream.readObject(Unknown Source)
    at weblogic.management.internal.TypesHelper.getMBeanInfo(TypesHelper.java:274)
    at weblogic.management.internal.TypesHelper.getAdminOrConfigMBeanInfo(TypesHelper.java:384)
    at weblogic.management.internal.ConfigurationMBeanImpl.<init>(ConfigurationMBeanImpl.java:137)
    at weblogic.management.AdminServer.<init>(AdminServer.java:59)
    at weblogic.management.AdminServerAdmin.initialize(AdminServerAdmin.java:245)
    at weblogic.t3.srvr.T3Srvr.initializeHere(T3Srvr.java:770)
    at weblogic.t3.srvr.T3Srvr.initialize(T3Srvr.java:669)
    at weblogic.t3.srvr.T3Srvr.run(T3Srvr.java:343)
    at weblogic.Server.main(Server.java:32)
    nested within: weblogic.management.configuration.ConfigurationException: - with nested exception:
    [java.io.InvalidClassException: javax.management.MBeanAttributeInfo; local class incompatible: stream classdesc serialVersionUID = 7043855487133450673, local class serialVersionUID = 8644704819898565848]
    at weblogic.management.internal.TypesHelper.getMBeanInfo(TypesHelper.java:279)
    at weblogic.management.internal.TypesHelper.getAdminOrConfigMBeanInfo(TypesHelper.java:384)
    at weblogic.management.internal.ConfigurationMBeanImpl.<init>(ConfigurationMBeanImpl.java:137)
    at weblogic.management.AdminServer.<init>(AdminServer.java:59)
    at weblogic.management.AdminServerAdmin.initialize(AdminServerAdmin.java:245)
    at weblogic.t3.srvr.T3Srvr.initializeHere(T3Srvr.java:770)
    at weblogic.t3.srvr.T3Srvr.initialize(T3Srvr.java:669)
    at weblogic.t3.srvr.T3Srvr.run(T3Srvr.java:343)
    at weblogic.Server.main(Server.java:32)
    nested within: weblogic.management.configuration.ConfigurationError - with nested exception:
    [weblogic.management.configuration.ConfigurationException: - with nested exception:
    [java.io.InvalidClassException: javax.management.MBeanAttributeInfo; local class incompatible: stream classdesc serialVersionUID = 7043855487133450673, local class serialVersionUID = 8644704819898565848]]
    at weblogic.management.internal.TypesHelper.getAdminOrConfigMBeanInfo(TypesHelper.java:395)
    at weblogic.management.internal.ConfigurationMBeanImpl.<init>(ConfigurationMBeanImpl.java:137)
    at weblogic.management.AdminServer.<init>(AdminServer.java:59)
    at weblogic.management.AdminServerAdmin.initialize(AdminServerAdmin.java:245)
    at weblogic.t3.srvr.T3Srvr.initializeHere(T3Srvr.java:770)
    at weblogic.t3.srvr.T3Srvr.initialize(T3Srvr.java:669)
    at weblogic.t3.srvr.T3Srvr.run(T3Srvr.java:343)
    at weblogic.Server.main(Server.java:32)
    ***************************************************************************

    pravalika wrote:
    java.io.InvalidClassException: javax.management.MBeanAttributeInfo; local class incompatible: stream classdesc serialVersionUID = 7043855487133450673, local class serialVersionUID = 8644704819898565848]][http://www.google.com/search?q=%22java.io.InvalidClassException%3A+javax.management.MBeanAttributeInfo%3B+local+class+incompatible%22]
    Look like you're not the only one who encountered this specific problem. There are several solutions mentioned, under each downgrading to Java SE 1.4 or upgrading to Weblogic 9.

  • Does WebLogic Server 8.1 supports ejb2.1(timer service)

    1.does WebLogic Server 8.1(SP5) supports ejb2.1 (timer service)?
    2. does ejb 2.0 support timer service?

    Hi,
    1. No, EJB Timer support was added in WLS 9.0.
    2. No, EJB Timers were introduced in EJB 2.1.
    - Matt

  • How to deploy custom JMX Mbean in Weblogic

    Hi,
    I dont find any forum relevant to my topic. Hence i am posting my query here.
    I have a custom developed MBean running in a seperate JVM i need to deploy this in Weblogic Server JMX agent. How do i deploy this Mbean in Weblogic Server 9.2
    Suggest me please.
    Thanks and Regards,
    Rajashankar.R

    keerthijava wrote:
    Hi,
    I believe you would have got a solution for deploying JMX Mbean in Weblogic . Could you please suggest me .Please, don't resurrect old threads. The thread was posted almost a year ago. I'm locking it.
    Kaj

  • Weblogic server not getting started.(undefined mbean reference.)

    Hi ,
    I am using Weblogic server 7.0 in solaris and i have deployed web applications to the managed servers.
    When i am restarting my admin server , i am getting the following error:
    <May 22, 2009 12:08:23 PM IST> <Critical> <WebLogicServer> <000364> <Server failed during initialization. Exception:weblogic.management.configuration.ConfigurationException: undefined mbean reference: iciciprulife:Name=DefaultWebApp,Server=adminserver,Type=WebAppComponent
    weblogic.management.configuration.ConfigurationException: undefined mbean reference: iciciprulife:Name=DefaultWebApp,Server=adminserver,Type=WebAppComponent
    at weblogic.management.internal.xml.ConfigurationParser$ConfigurationHandler.resolveMBeanAttributes(ConfigurationParser.java:809)
    at weblogic.management.internal.xml.ConfigurationParser$ConfigurationHandler.endDocument(ConfigurationParser.java:337)
    at weblogic.apache.xerces.parsers.SAXParser.endDocument(SAXParser.java:1235)
    at weblogic.apache.xerces.validators.common.XMLValidator.callEndDocument(XMLValidator.java:1159)
    at weblogic.apache.xerces.framework.XMLDocumentScanner$EndOfInputDispatcher.dispatch(XMLDocumentScanner.java:1531)
    at weblogic.apache.xerces.framework.XMLDocumentScanner.parseSome(XMLDocumentScanner.java:399)
    at weblogic.apache.xerces.framework.XMLParser.parse(XMLParser.java:1138)
    at weblogic.management.internal.xml.ConfigurationParser.parse(ConfigurationParser.java:227)
    at weblogic.management.internal.xml.XmlFileRepository.createOrLoadDomain(XmlFileRepository.java:483)
    at weblogic.management.internal.xml.XmlFileRepository.bootStrapAndLoadActiveDomain(XmlFileRepository.java:354)
    at weblogic.management.AdminServer.configureFromRepository(AdminServer.java:217)
    at weblogic.management.AdminServer.configureFromRepository(AdminServer.java:202)
    at weblogic.management.AdminServer.configure(AdminServer.java:196)
    at weblogic.management.AdminServerAdmin.initialize(AdminServerAdmin.java:111)
    at weblogic.t3.srvr.T3Srvr.initialize1(T3Srvr.java:664)
    at weblogic.t3.srvr.T3Srvr.initialize(T3Srvr.java:594)
    at weblogic.t3.srvr.T3Srvr.run(T3Srvr.java:282)
    at weblogic.Server.main(Server.java:32)
    >
    The WebLogic Server did not start up properly.
    Exception raised:
    weblogic.management.configuration.ConfigurationException: undefined mbean reference: iciciprulife:Name=DefaultWebApp,Server=adminserver,Type=WebAppComponent
    at weblogic.management.internal.xml.ConfigurationParser$ConfigurationHandler.resolveMBeanAttributes(ConfigurationParser.java:809)
    at weblogic.management.internal.xml.ConfigurationParser$ConfigurationHandler.endDocument(ConfigurationParser.java:337)
    at weblogic.apache.xerces.parsers.SAXParser.endDocument(SAXParser.java:1235)
    at weblogic.apache.xerces.validators.common.XMLValidator.callEndDocument(XMLValidator.java:1159)
    at weblogic.apache.xerces.framework.XMLDocumentScanner$EndOfInputDispatcher.dispatch(XMLDocumentScanner.java:1531)
    at weblogic.apache.xerces.framework.XMLDocumentScanner.parseSome(XMLDocumentScanner.java:399)
    at weblogic.apache.xerces.framework.XMLParser.parse(XMLParser.java:1138)
    at weblogic.management.internal.xml.ConfigurationParser.parse(ConfigurationParser.java:227)
    at weblogic.management.internal.xml.XmlFileRepository.createOrLoadDomain(XmlFileRepository.java:483)
    at weblogic.management.internal.xml.XmlFileRepository.bootStrapAndLoadActiveDomain(XmlFileRepository.java:354)
    at weblogic.management.AdminServer.configureFromRepository(AdminServer.java:217)
    at weblogic.management.AdminServer.configureFromRepository(AdminServer.java:202)
    at weblogic.management.AdminServer.configure(AdminServer.java:196)
    at weblogic.management.AdminServerAdmin.initialize(AdminServerAdmin.java:111)
    at weblogic.t3.srvr.T3Srvr.initialize1(T3Srvr.java:664)
    at weblogic.t3.srvr.T3Srvr.initialize(T3Srvr.java:594)
    at weblogic.t3.srvr.T3Srvr.run(T3Srvr.java:282)
    at weblogic.Server.main(Server.java:32)
    Reason: Fatal initialization exception
    Throwable: weblogic.management.configuration.ConfigurationException: undefined mbean reference: iciciprulife:Name=DefaultWebApp,Server=adminserver,Type=WebAppComponent
    weblogic.management.configuration.ConfigurationException: undefined mbean reference: iciciprulife:Name=DefaultWebApp,Server=adminserver,Type=WebAppComponent
    at weblogic.management.internal.xml.ConfigurationParser$ConfigurationHandler.resolveMBeanAttributes(ConfigurationParser.java:809)
    at weblogic.management.internal.xml.ConfigurationParser$ConfigurationHandler.endDocument(ConfigurationParser.java:337)
    at weblogic.apache.xerces.parsers.SAXParser.endDocument(SAXParser.java:1235)
    at weblogic.apache.xerces.validators.common.XMLValidator.callEndDocument(XMLValidator.java:1159)
    at weblogic.apache.xerces.framework.XMLDocumentScanner$EndOfInputDispatcher.dispatch(XMLDocumentScanner.java:1531)
    at weblogic.apache.xerces.framework.XMLDocumentScanner.parseSome(XMLDocumentScanner.java:399)
    at weblogic.apache.xerces.framework.XMLParser.parse(XMLParser.java:1138)
    at weblogic.management.internal.xml.ConfigurationParser.parse(ConfigurationParser.java:227)
    at weblogic.management.internal.xml.XmlFileRepository.createOrLoadDomain(XmlFileRepository.java:483)
    at weblogic.management.internal.xml.XmlFileRepository.bootStrapAndLoadActiveDomain(XmlFileRepository.java:354)
    at weblogic.management.AdminServer.configureFromRepository(AdminServer.java:217)
    at weblogic.management.AdminServer.configureFromRepository(AdminServer.java:202)
    at weblogic.management.AdminServer.configure(AdminServer.java:196)
    at weblogic.management.AdminServerAdmin.initialize(AdminServerAdmin.java:111)
    at weblogic.t3.srvr.T3Srvr.initialize1(T3Srvr.java:664)
    at weblogic.t3.srvr.T3Srvr.initialize(T3Srvr.java:594)
    at weblogic.t3.srvr.T3Srvr.run(T3Srvr.java:282)
    at weblogic.Server.main(Server.java:32)
    + set +x
    Canany one please help me to rectify the above problem.
    Thanks in advance.
    Krikar

    Hi take a backup of config.xml file first and then replace it with config.xml.booted. This is the config file which ran successfully last time.
    Note : I am assuming this is not production server. If it is then I would suggest you to open a SR with support.
    Edited by: mchellap on May 22, 2009 3:43 PM

  • Can't install weblogic server sp5(apache bridge) on linux

    Hi.
    I can't install weblogic server service pack 5(weblogic for apache
    bridge,mod_wl.so) on redhat linux 6.2,my apache server version is 1.3, and
    it work without sp5,when I use new mod_wl.so overwrite old one, apache
    server can't start.
    Please help,
    Thanks
    Jason Shi([email protected])

    What exact problems are you having? I'm using WLS 5.1 SP5 + apache
    1.3.12 + mod_ssl just fine.
    John Salvo
    Jason wrote:
    >
    Hi.
    I can't install weblogic server service pack 5(weblogic for apache
    bridge,mod_wl.so) on redhat linux 6.2,my apache server version is 1.3, and
    it work without sp5,when I use new mod_wl.so overwrite old one, apache
    server can't start.
    Please help,
    Thanks
    Jason Shi([email protected])

  • WebLogic Server 9.2/10 Remote MBean Access with Java

    Hi -
    I wrote a monitoring client for WebLogic 8.1 and it was easy to navigate through the MBeans by using the typed classes like "ClusterRunTimeMBean". I would like to update this code to work with WebLogic 10. After reading the docs online I am still confused as to how (if) I can create an instance of the actual ClusterRuntimeMBean or if I have to use the JMX MBeanServerConnection.getAttribute() and MBeanServerConnection.invoke() to get access to the things I want.
    Is it possible to work with the MBeans in WebLogic 10 with instances of the MBean classes? If so, can someone please provide me an example of how to do it?
    Thanks,
    Jeff

    Hi..
    Checkout domain health http://sourceforge.net/projects/domainhealth
    Since it's open source then you can get a lot of pointers..

Maybe you are looking for

  • Support for slow macbookpro 3.06 ghz 10.7.5

    Hi all, my macbookpro is been running slow and having problems for a while now, I've reached the point where it makes it really difficult to work, perhaps the fact that I've a large amount of data on my disk could be parlty the problem. I noticed ano

  • Database hang up please help!!!

    Hello, We have a big trouble with the database of our company, when is running all is OK since a few days to now is continuing hanging up and many errors appears, i dont know where i can find a solution, the system is a dataguar with windows 2003 sta

  • Trying to gift playlist and getting Your request is temporarily unable to be processed.

    I created a playlist with 19 songs. I gift playlist go through entire process, click purchase and get "Your request is temporarily unable to be processed. Try again Later" from Itunes

  • ISSUES WITH LAYERS

    Hey there! I am an amatuer so this may be a totally dumb question but I am about to throw this whole thing out the window. Anyways... I am trying to creat a webpage that has layers what I need to know how to do is have the layers resize and stay wher

  • HT201077 Shared Photo Stream

    Can I add photos to a shared photo stream from someon else other than myself?