Re: [NMS] download of Spring.Messaging.Nms available

2007-04-03 Thread sparky2708
Would it be possible to provide some example like you guys did for ActiveMQ.NET. I didn't see any examples on the website for Spring.NET or in the zip file that I downloaded. Just looking for some quick start documentation -- a sample async subscriber, a sample publisher and I can take it from the

Re: [NMS] download of Spring.Messaging.Nms available

2007-04-03 Thread sparky2708
How is this different from the NMS that used to be provided by ActiveMQ? Does this support failover URLS? James.Strachan wrote: > > For folks using .Net with ActiveMQ we highly recommend the use of > Spring.Messaging.Nms for working with NMS. > > You can grab a binary download here... > http:/

Re: [NMS] download of Spring.Messaging.Nms available

2007-04-03 Thread James Strachan
On 4/3/07, sparky2708 <[EMAIL PROTECTED]> wrote: How is this different from the NMS that used to be provided by ActiveMQ? It uses the NMS from ActiveMQ; its a utility layer above NMS. So if you're aware of Spring and Java, think NMS is like JMS (along with providers) and Spring.Messaging.Nms i

Re: How do I delete a queue or topic that I no longer need?

2007-04-03 Thread sparky2708
Found the easy answer to this question: In your activemq.xml file put: Run JCONSOLE from your java directory. TO REMOVE A TOPIC/QUEUE: (1) In the MBEANS tab under org.apache.activemq there will be something called "BROKER" (sometimes under master if you have master/slave setup) (2) Click o

Re: Java Heap Space Exception

2007-04-03 Thread Karthik.Gopalakrishnan
Hi I am able to get ActiveMQBytesMessage from the c# client(with openwire) successfully. But when i try sending a ActiveMQTextMessage from the c# client i am getting that java heap space problem even though this is a small string which has been .I dont think something has t

RE: spring and activemq

2007-04-03 Thread Garner, Shawn
No, 4.1 was the best available download when I downloaded it a few days ago. I wouldn't think there should be that much difference between a minor minor version. I got it working using regular spring bean file instead of the xbean as the example was. I don't really have time to redownload 4.1.1 a

Re: Implementation / Evaluation Questions

2007-04-03 Thread James Strachan
On 4/3/07, sktyjd <[EMAIL PROTECTED]> wrote: I came upon ActiveMQ in a post regarding JPMorgan's middleware specification and decided I'd take a look. Great Sorry if this question has been answered before but I was wondering if someone could shed some light on a few questions I have. Curre

Implementation / Evaluation Questions

2007-04-03 Thread sktyjd
I came upon ActiveMQ in a post regarding JPMorgan's middleware specification and decided I'd take a look. Sorry if this question has been answered before but I was wondering if someone could shed some light on a few questions I have. Currently, we have a trading system written in C# which relies

Re: Best approach for HA message broker + grid

2007-04-03 Thread Manuel Teira
Thanks for your fast answer, James. Some doubts between the lines: James Strachan escribió: On 4/3/07, Manuel Teira <[EMAIL PROTECTED]> wrote: Hello. My aim is to have a set of brokers, running in different machines, to consume messages coming from different clients, to be able to scale the s

Re: What is the best approach to connect ActiveMQ in Delphi?

2007-04-03 Thread James Strachan
On 4/3/07, Dingwen Yuan <[EMAIL PROTECTED]> wrote: Hi all, What is the best approach to connect ActiveMQ in Delphi? JNI, Stomp, or any other suggestions? Writing a Stomp client would be the best really; you can create & read/write to sockets from Delphi right? (I've never used Delphi myself).

Re: Loading configuration from properties file

2007-04-03 Thread Javier Leyba
On 4/2/07, Javier Leyba <[EMAIL PROTECTED]> wrote: Also, I need to change the JMX port, how could I do it ? Hi I've solved it with this: -- service = new BrokerService(); service.setBrokerName(masterBrokerProps.getProperty("brokerName")); service.setPersistent(true

Re: Best approach for HA message broker + grid

2007-04-03 Thread James Strachan
On 4/3/07, Manuel Teira <[EMAIL PROTECTED]> wrote: Hello. My aim is to have a set of brokers, running in different machines, to consume messages coming from different clients, to be able to scale the system for future needs. Furthermore, HA features are also required, to protect the system on ha

Re: STOMP broker - order of ACKs?

2007-04-03 Thread James Strachan
BTW some bugs were fixed in 4.1.1 to do with out of order ACK support. But if you really want to have child processes/threads perform independent work which will lead to messages being processed out of order from which they are received, I'd recommed using multiple subscriptions; one per thread/p

Re: Shared File System Master Slave with Windows

2007-04-03 Thread James Strachan
On 4/3/07, pdvyuan <[EMAIL PROTECTED]> wrote: Hi all, Can I use a shared windows file system to achieve "Shared File System Master Slave"? I have made some tests, but occasionally some error would occur. I made the test under 2 instances of activemq-4.2 runing on WinXP. The errors are as follo

Re: Suggested implmentation?

2007-04-03 Thread James Strachan
On 4/2/07, mnishizawa <[EMAIL PROTECTED]> wrote: I am looking build an event based system where the event is logged in a message queue and then listeners(subscribers/receivers) all perform their specific tasks based on the event. I've looked at the documentation and I can't seem to find exactly

Re: spring and activemq

2007-04-03 Thread James Strachan
You tried 4.1.1? On 4/2/07, Garner, Shawn <[EMAIL PROTECTED]> wrote: ActiveMQ 4.1 Shawn -Original Message- From: James Strachan [mailto:[EMAIL PROTECTED] Sent: Monday, April 02, 2007 3:08 AM To: users@activemq.apache.org Subject: Re: spring and activemq Which version were you using?

Best approach for HA message broker + grid

2007-04-03 Thread Manuel Teira
Hello. My aim is to have a set of brokers, running in different machines, to consume messages coming from different clients, to be able to scale the system for future needs. Furthermore, HA features are also required, to protect the system on hardware malfunction. Looking at the alternatives

Re: How do I delete a queue or topic that I no longer need?

2007-04-03 Thread James Strachan
On 4/2/07, sparky2708 <[EMAIL PROTECTED]> wrote: How do I delete a queue or topic that I no longer need? Can I do this through JConsole? If not, how? BTW the MBean interfaces are your friend... http://activemq.apache.org/maven/activemq-core/apidocs/org/apache/activemq/broker/jmx/package-summar

Re: Register ActiveMQ destinations in JNDI

2007-04-03 Thread James Strachan
On 4/3/07, Rama Casturi <[EMAIL PROTECTED]> wrote: I am new to using ActiveMQ. I am trying to integrate ActiveMQ in our Spring application environment. I have been successful in running the broker (defined in the activemq.xml file on the classpath) in the embedded form as a spring bean in our ap