Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chris Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Weblogic JMX API Problem

Status
Not open for further replies.

sharvey99

Programmer
Aug 24, 2000
16
GB
Please Help!!!

I have been struggling with the creation of JMS Resources via the BEA Weblogic 8.1 API. Whilst I am able to create a JMS Server and Queues and QCF I am unable to use these resources . I beleive the problem is that I am not deploying them on the Admin Server. This is born out of there apprent exisitance, seen via the Admin GUI, however they are not deployed to the server. Does anyone know how to perform this step..

So far I....

JMSConnectionFactoryMBean jmsQCF = (JMSConnectionFactoryMBean)home.createAdminMBean(weblogicQCF,"JMSConnectionFactory");
jmsQCF.setJNDIName(weblogicQCF);
jmsQCF.setXAConnectionFactoryEnabled(true);
jmsQCF.setPersistenceEnabled(false);

I guess there is a next step but I have tried many ways but have yet to hit on the correct one.

For some reason I don't seem to be able to retrieve the objects I have created and as such cannot test before creating them a second time.

Regards

Steve harvey
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top