> When I try to do a
>
>       topicConnection.start();
>
> I get the following error:
>
> .javax.jms.JMSException: Unable to connect to JMSServer
> (ATTILA/127.0.0.1:9127)
>
> The obvious problem is that the JMSServer isn't located at the specified
> address.
> Where do I have to change which properties to connect to the right server?
>

You need to modify your orion/config/jms.xml file.  You have to explicitly
identify your server in this, i.e.
<jms-server host="myserver.mydomain.com" port="9127">

This is defined in the documentation (look at jms.xml.html) by the
following:

<jms-server host="hostname.domain.com|123.124.125.126|[ALL]" port="9127">
This file contains the configuration for a JMS-server.
host - The host/IP to listen for JMS-connections at. If [ALL] is specified
then all the servers IP's are used.
port - The port to listen for JMS-connections at.

In addition, this has been addressed in the past on this mailing list,
archives are located
at http://www.mail-archive.com/orion-interest%40orionserver.com/

jason


Reply via email to