[JBoss-user] [Messaging, JMS & JBossMQ] - Re: org.jboss.mq.SpyJMSException: OutOfMemoryError

2005-04-20 Thread disrael
We were doing 1) but it is very expensive.  I am switching over to 2) which is 
easy until you play around with server disconnect problem.

View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3874725#3874725

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3874725


---
This SF.Net email is sponsored by: New Crystal Reports XI.
Version 11 adds new functionality designed to reduce time involved in
creating, integrating, and deploying reporting solutions. Free runtime info,
new features, or free trial, at: http://www.businessobjects.com/devxi/728
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Messaging, JMS & JBossMQ] - Re: org.jboss.mq.SpyJMSException: OutOfMemoryError

2005-04-19 Thread disrael
Move the connection = cf.createConnection();
outside of the send.

View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3874503#3874503

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3874503


---
This SF.Net email is sponsored by: New Crystal Reports XI.
Version 11 adds new functionality designed to reduce time involved in
creating, integrating, and deploying reporting solutions. Free runtime info,
new features, or free trial, at: http://www.businessobjects.com/devxi/728
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Messaging, JMS & JBossMQ] - Re: org.jboss.mq.SpyJMSException: OutOfMemoryError

2005-04-18 Thread disrael
Are you using connection pooling?  It seems like you are not and are running 
out of ability to create new tcp sockets.  Would be interested if your test 
still fails if you use only one connection for all messaging.

View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3874383#3874383

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3874383


---
This SF.Net email is sponsored by: New Crystal Reports XI.
Version 11 adds new functionality designed to reduce time involved in
creating, integrating, and deploying reporting solutions. Free runtime info,
new features, or free trial, at: http://www.businessobjects.com/devxi/728
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JCA/JBoss] - Re: Using JBoss jms-ra.rar in another application server

2005-04-14 Thread disrael
Just a warning for others attempting to follow this path for creating a 
JBossMQ.rar.  The jms-ra.rar code's ManagedConnection.getConnection returns a 
session object!

View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3873973#3873973

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3873973


---
SF email is sponsored by - The IT Product Guide
Read honest & candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595&alloc_id=14396&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JCA/JBoss] - Re: Using JBoss jms-ra.rar in another application server

2005-04-08 Thread disrael
I'm having problems with multiple class loaders:

Properties environment = new Properties();
  | environment.put("java.naming.factory.initial", 
"org.jnp.interfaces.NamingContextFactory");
  | environment.put("java.naming.provider.url", jnpUrl);
  | environment.put("java.naming.factory.url.pkgs", 
"org.jboss.naming:org.jnp.interfaces");
  | NamingContextFactory contextFactory = new NamingContextFactory();
  | NamingContext jndiContext = (NamingContext) 
contextFactory.getInitialContext(environment);
  | Object o = jndiContext.lookup("ConnectionFactory");

When this code runs within my resource loader it does not use 
Thread.currentThread().getContextClassLoader() to find the supporting classes 
it needs.  So even though jboss-common-client.jar and jbossmq-client.jar are in 
the rar file it cannot access it.  Is there a way around this problem?

Thank you,
David

View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3873305#3873305

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3873305


---
SF email is sponsored by - The IT Product Guide
Read honest & candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595&alloc_id=14396&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JCA/JBoss] - Re: Using JBoss jms-ra.rar in another application server

2005-04-07 Thread disrael
I have a JBossMQ.rar that I built out of jms-ra.rar but it is just a thin 
wrapper around jbossmq-client.jar.  Since you are redoing JBossMQ anyway I will 
raise a feature request for the new development to keep JCA in mind.

Thanks again.

View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3873115#3873115

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3873115


---
SF email is sponsored by - The IT Product Guide
Read honest & candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595&alloc_id=14396&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JCA/JBoss] - Re: Using JBoss jms-ra.rar in another application server

2005-04-05 Thread disrael
I guess I could follow your directions and modify jms-ra.rar to incorporate 
JBoss JMS.  Still interested in a road map though.

Thank you.

View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3872801#3872801

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3872801


---
SF email is sponsored by - The IT Product Guide
Read honest & candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595&alloc_id=14396&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JCA/JBoss] - Re: Using JBoss jms-ra.rar in another application server

2005-04-05 Thread disrael
Thanks for clearing up some of my confusion.  What I am looking for is a 
jbossmq.rar then.  I want to integrate JBoss JMS implementation into the SIP 
application server using JCA.  As you pointed out I don't think jms-ra.rar is 
relevant to this task.

With the activemq-ra-2.1.rar I just used JCA to load it into the SIP 
application server and configured the URL to point at an ActiveMQ server 
instance.  I was hoping for an equivalent JBoss rar because our tests showed 
JBoss was more reliable than ActiveMQ.

Any road map for such a JBoss JMS rar?  Any thoughts on how hard it would be 
for me to create one?

Thank you very much for replying so quickly.

View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3872800#3872800

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3872800


---
SF email is sponsored by - The IT Product Guide
Read honest & candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595&alloc_id=14396&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JCA/JBoss] - Using JBoss jms-ra.rar in another application server

2005-04-05 Thread disrael
See original thread at: 

http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3870289#3872657

I have the activemq-ra-2.1.rar working as a JMS resource in a SIP application 
server and would like to replace it with JBoss JMS.  Currently the jms-ra.rar 
is not a self contained rar like ActiveMQ (see original post).  Has anyone 
published a modified rar that works as an independent resource?  Any ideas on 
doing this beyond what narayanrm suggests?

Thank you for your help.

View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3872796#3872796

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3872796


---
SF email is sponsored by - The IT Product Guide
Read honest & candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595&alloc_id=14396&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Messaging, JMS & JBossMQ] - Re: JBossMQ under other application servers

2005-04-04 Thread disrael
I am trying to use JBossMQ as a .rar from another application server.  With the 
current jms-ra.rar the first problem I hit is:

anonymous wrote : Exception in thread "main" java.lang.NoClassDefFoundError: 
org/jboss/resource/JBossResourceException
  | at java.lang.Class.forName0(Native Method)
  | at java.lang.Class.forName(Unknown Source)
  | at 
org.jboss.resource.adapter.jms.JmsManagedConnectionFactory.class$(JmsManagedConnectionFactory.java:45)
  | at 
org.jboss.resource.adapter.jms.JmsManagedConnectionFactory.(JmsManagedConnectionFactory.java:45)

JBossResourceException is not included in the rar file.  Thanks very much for 
the tips below on getting this to work.  Are there any plans for JBoss resource 
adaptor jms-ra.rar to work stand alone?  Anyone already done this and published 
on a web site somewhere?

Thank you for your help.

View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3872657#3872657

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3872657


---
SF email is sponsored by - The IT Product Guide
Read honest & candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595&alloc_id=14396&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user