Creating a Java client to test with might help you rule out the if its
the MDB or the C++ code that is faulty. Its just another Data Point to
try and help figure out what's wrong.
alexvs wrote:
That's what I tried first, but "topic/SciTegic", according to jboss is the
jndi name of the topic. The actual topic name is SciTegic, but maybe
something else has to be appended to the name, I have no clue.
This is for a huge C++ application we're trying to integrate with an APP
server, so, unfortunately having a java client is not an option at this
point.
nmittler wrote:
That would be my guess (use "topic/SciTegic") ... the problem of creating
topics vs using pre-existing ones should not be a non-issue. All
topics/queues in ActiveMQ are dynamic, so it doesn't matter how you create
them (from the client-side or server-side). So long as the names are the
same, it should work.
On 6/7/07, Desire ATANGA <[EMAIL PROTECTED]> wrote:
Hello,
destination = session->createTopic( "TOPIC.SciTegic" ); // IS THIS THE
RIGHT NAME TO USE?
Have you tried to this?
destination = session->createTopic( "topic/SciTegic" );
Cheers,
Desire