• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Ron McLeod
  • Paul Clapham
  • Devaka Cooray
  • Tim Cooke
Sheriffs:
  • Rob Spoor
  • Liutauras Vilda
  • paul wheaton
Saloon Keepers:
  • Tim Holloway
  • Tim Moores
  • Mikalai Zaikin
  • Carey Brown
  • Piet Souris
Bartenders:
  • Stephan van Hulst

how can i call mbeanserver(mbeans) which are deployed in weblogic 7.0 from jbosss

 
Greenhorn
Posts: 1
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi,
i have my whole application running on jboss where i have deployed mbeans.
How can i able to communicate to those mbeans which i registered and deployed in weblogic 7.0 thru my application which is running in jboss application server

i tried this .
i am able to deploy mbean as well as registered m beans but problem starts when i call try to ping mbeanserver on weblogic
it shows me serialversionuid error as it comes becs i put weblogic .jar in my jboss server/default/lib
both jboss and weblogic have jvax/management classes these are in compatible

where shld i put my weblogic.jar in jboss so that it should not give me error

i will be very thkful and appreciate any suggestion from all of u
regards
anil(anilgogia@hotmail.com)
 
Ranch Hand
Posts: 225
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

Originally posted by Anil Gogia:
Hi,
i have my whole application running on jboss where i have deployed mbeans.
How can i able to communicate to those mbeans which i registered and deployed in weblogic 7.0 thru my application which is running in jboss application server

i tried this .
i am able to deploy mbean as well as registered m beans but problem starts when i call try to ping mbeanserver on weblogic
it shows me serialversionuid error as it comes becs i put weblogic .jar in my jboss server/default/lib
both jboss and weblogic have jvax/management classes these are in compatible

where shld i put my weblogic.jar in jboss so that it should not give me error

i will be very thkful and appreciate any suggestion from all of u
regards
anil(anilgogia@hotmail.com)



Hi, I've had problems like this between Sun, JBoss and Websphere. Basically, either there are slightly different implementations of the JMX spec, or vendor written incompatibilities. Don't ask me why they've done this.
You may not be able to use the Weblogic JMX implementation in JBoss. JBoss uses JMX as its microkernal - if you drop a potentially incompatible JMX implementation in there JBoss itself may stop working.
I guess you could use another technology for communicating between the appservers, such as RMI.
 
Ranch Hand
Posts: 2713
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

Originally posted by Steve Wink:
I guess you could use another technology for communicating between the appservers, such as RMI.


I guess the big question is: "Why do you need to communicate between JBoss and WebLogic?"
Depending on your application's requirements you may want to use JMS for communication between your Application Servers. I have used JMS for this purpose in the past and it has worked out well.
 
Chris Mathews
Ranch Hand
Posts: 2713
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Since this question is really Application Server specific I am going to move it to the BEA/WebLogic Forum. Please continue the discussion there.
 
I am Arthur, King of the Britons. And this is a tiny ad:
Gift giving made easy with the permaculture playing cards
https://coderanch.com/t/777758/Gift-giving-easy-permaculture-playing
reply
    Bookmark Topic Watch Topic
  • New Topic