Re: Axis dies after I add support for ActiveMQ JMS Broker

2010-07-21 Thread dcausevic
This problem was fixed when I added $ACTIVEMQ_HOME/activemq-all-5.3.2.jar to Axis2 classpath, but that was not all. Appearently this had also to do with version 1.5.1... Namely I discovered that both org.apache.axis2.transport.jms.JMSListener, and JSMSender are removed from lib/axis2-kernel-1.5.1.

Re: Axis dies after I add support for ActiveMQ JMS Broker

2010-07-16 Thread dcausevic
Okay I got the error log with "bin/axis2server.sh >>/var/log/axis2.log 2>&1", and here it is: [INFO] [SimpleAxisServer] Starting [INFO] [SimpleAxisServer] Using the Axis2 Repository/opt/tools/axis/axis2-1.5.1/repository [SimpleAxisServer] Using the Axis2 Repository/opt/tools/axis/axis2-1.5.1/repo

Axis dies after I add support for ActiveMQ JMS Broker

2010-07-16 Thread dcausevic
I am running axis2 version 1.5.1 on my ubuntu 9.04 box. I have a service that needs to connect to ActiveMQ message broker which is also running on the same box. I read instructions on how to do this at http://ws.apache.org/axis2/1_2/jms-transport.html but when I add recommened code to my $AXIS2_HO

Re: Startup script for Axis2

2010-06-30 Thread dcausevic
Here it is... I had to develep it myself. Anyway here it is if anyone else might need it. It's for debian, but I am sure it would work with RedHat and other distributions as well with minor changes in code. #!/bin/sh # Written by Dzenan Causevic # JAVA_HOME and AXIS2_HOME must be defined prior

Startup script for Axis2

2010-06-29 Thread dcausevic
I am running Ubuntu 9.04 (Jaunty Jackalope) in text mode and I wanted to add Axis2 to my services that run on the system startup. Does anybody have a custom startup script that I could put in my /etc/init.d/ directory, or can I use $AXIS2_HOME/bin/axis2server.sh for this task? Has anyone tried thi