Re: Problems creating JMS Resrouce Group

2006-02-08 Thread Johnny l
Thanks a lot Aaron! that worked perfectly! I'm still hammering this all out so I'll hopefully be back with more fundamental questions!


Re: Problems creating JMS Resrouce Group

2006-02-06 Thread Aaron Mulder
For one thing, I think your parentId should be
geronimo/activemq-broker/1.0/car (you want to force the broker to
start first, not the other standard ActiveMQ resources).

Also, you should remove the implemented-interface element you have --
that's only used if you have additional interfaces above and beyond
what's listed in the connectionfactory-interface, and repeating the
same one appears to hose it up.

Thanks,
Aaron

On 2/6/06, Johnny l <[EMAIL PROTECTED]> wrote:
> lol well after relooking at that entire section, I took a swipe at the
> manual config of it. Unfortunately I still can't seem to get it going. When
> I deploy the deployment plan with deploy, everything goes fine until i check
> it out in the admin console. The connection factory's state is set to Failed
> and when i try to check the details, it gives me "Error occurred in
> portlet!".
>
> In the server window the exception thrown is:
> ERROR [GBeanInstanceState] Error while starting; GBean is now in the FAILED
> state:
> objectName="geronimo.server:J2EEApplication=null,J2EEServer=geronimo,
> JCAResource=jms/TopicConnectionFactory,j2eeType=JCAManagedConnectionFactory,name=jms/TopicConnectionFactory"
>
> Considering I took most of my deployplan from the tutorial and didn't change
> too much, I feel I sorta missed some vital step in actually setting up the
> server perhaps? Any help would be greatly appreciated (and sorry about all
> these bash head on desk silly problems :)
>
> 
>  xmlns="http://geronimo.apache.org/xml/ns/j2ee/connector-1.0";
> configId="MyTopicConnectionFactory"
> parentId="geronimo/activemq/1.0/car">
> 
> 
> 
>   TestJMS
>   
> tcp://localhost:61616
>   
>
> not needed
>   
>   
> not needed
>   
>   
> DefaultWorkManager
>   
> 
> 
> 
>   
> 
>   javax.jms.TopicConnectionFactory
> 
> 
>   jms/MyTopicConnectionFactory
>   
> javax.jms.TopicConnectionFactory
>   
>   
> 
>   
> 
> 
>   10
>   0
>   
> 5000
>   
>   
> 0
>   
>   
> 
>   
> 
>   
> 
>   
> 
>   
> javax.jms.Topic
> org.activemq.message.ActiveMQTopic
> 
> 
>
> jms/Topic
>name="PhysicalName">jms/Topic
> 
>   
> 
>


Re: Problems creating JMS Resrouce Group

2006-02-06 Thread Johnny l
lol well after relooking at that entire section, I took a swipe at the manual config of it. Unfortunately I still can't seem to get it going. When I deploy the deployment plan with deploy, everything goes fine until i check it out in the admin console. The connection factory's state is set to Failed and when i try to check the details, it gives me "Error occurred in portlet!". 

 
In the server window the exception thrown is:
ERROR [GBeanInstanceState] Error while starting; GBean is now in the FAILED state: objectName="geronimo.server:J2EEApplication=null,J2EEServer=geronimo,
JCAResource=jms/TopicConnectionFactory,j2eeType=JCAManagedConnectionFactory,name=jms/TopicConnectionFactory"
 
Considering I took most of my deployplan from the tutorial and didn't change too much, I feel I sorta missed some vital step in actually setting up the server perhaps? Any help would be greatly appreciated (and sorry about all these bash head on desk silly problems :)

 
http://geronimo.apache.org/xml/ns/j2ee/connector-1.0"
    configId="MyTopicConnectionFactory"    parentId="geronimo/activemq/1.0/car">
  TestJMS      tcp://localhost:61616  
      not needed        not needed  
      DefaultWorkManager  
        javax.jms.TopicConnectionFactory        
  jms/MyTopicConnectionFactory      javax.jms.TopicConnectionFactory    
                10  0
      5000        0  
                  
        javax.jms.Topic    org.activemq.message.ActiveMQTopic
      jms/Topic  jms/Topic
       


Re: Problems creating JMS Resrouce Group

2006-02-05 Thread Aaron Mulder
Unfortunately, you missed the key note at the top of that section (7.2):

Warning:  The console features described here are available in
Geronimo starting with version 1.0.1.

The JMS console features in the 1.0 release are nothing to write home
about, and the new JMS portlet was added for the next release (which
is not out yet).  It has occured to me that it might be worth
releasing a console update even before the next product release, since
it's pretty easy to update the console in place, but in the mean time,
there's not an easy way to get the new JMS portlet.

Thanks,
Aaron

On 2/6/06, Johnny l <[EMAIL PROTECTED]> wrote:
> I'm just trying starting up with Geronimo, so please be gentle:
>
> I was just running through Aaron Mulder's online book Apache Geronimo
> Development and Deployment and got to the chapter in creating JMS Connection
> factories and resource groups ( 7.2 Easy configuration and deployment using
> the console). My problem is that I can't find any of the view's that are
> being shown! in fact, I can't even find where you even create a new
> destination. All I have options for is to create a new connection factory
> (no option for any other JMS provider as stated in the tutorial) and only
> options for url, name, pw, pool max, and blockout timer.
>
> I'm really confused and been frustrated with this for a few days now. Any
> ideas?