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.
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.