Ok, It looks like the webpage is talking via the servlet, I am seeing post and get messages in the log file when I hit the send button on my page. Below is the HTML I am using:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"> <html lang="en"> <head> <title>Observatory</title> <script type="text/javascript" src="amq/amq.js"></script> <script type="text/javascript">amq.uri='amq';</script> <script type="text/javascript"> var myHandler = { rcvMessage: function(message) { alert("received "+message); } }; amq.addListener(gnip, 'channel://gnip', myHandler.rcvMessage); function sendMsg() { amq.sendMessage('channel://gnip', "<message item='hello'/>"); alert("message sent"); } </script> </head> <body> Observatory <br> <input type = "button" value = "Fire one" onclick = "sendMsg()" /> </body> </html> My question is am I addressing the queue gnip properly in the html? J Zanderfax wrote: > > I tried them, but I could not get them to work. Sorry for all the dumb > questions. > > J > > chago wrote: >> >> That's correct. Have you tried the examples in web demo? >> >> >> Zanderfax wrote: >>> >>> So I don't have to configure anything on the Jetty side to have the >>> topics available? >>> >> >> > > -- View this message in context: http://www.nabble.com/Looking-for-Help-ActiveMQ-and-Jetty-tf4379195s2354.html#a12534612 Sent from the ActiveMQ - User mailing list archive at Nabble.com.