Re: Easiest way to (pre-)fill/add new msgs into an ActiveMQ server?

2012-03-19 Thread Marcelo Jabali
Hi Ben, Like Thorsten and Jaskirat said you have a few options but you can also run any of those samples shipped with ActiveMQ as well. Have a look at $AMQ_HOME/example and you can easily run an Ant script with the options described on the build.xml file where you can configure the broker URL,

Re: Easiest way to (pre-)fill/add new msgs into an ActiveMQ server?

2012-03-19 Thread jaskirat singh
Hi Ben I always use Java client to send test messages. Write any client code in your language and use command line to control it. Thanks Jaskirat On Mon, Mar 19, 2012 at 9:02 AM, Torsten Mielke wrote: > Hello Ben, > > You have a couple of options for sending messages to the broker: > - Use the w

Re: Easiest way to (pre-)fill/add new msgs into an ActiveMQ server?

2012-03-19 Thread Torsten Mielke
Hello Ben, You have a couple of options for sending messages to the broker: - Use the web console - use JMX operation (e.g. via JConsole) - use other external tools that aren't provided by ActiveMQ like HermesJMS - write you own little application > I prefer a batch script where all header fie

Easiest way to (pre-)fill/add new msgs into an ActiveMQ server?

2012-03-19 Thread Ben Stover
Assume I started a new installed ActiveMQ server on a new server machine. Now I want to pre-fill (e.g. for presentation or testing purposes) this ActiveMQ server with a couple of sample msgs. What is the easiest way to do that? I don't want to do this manually through the browser interface. I p