<blockquote class="gmail_quote" style="font-family: arial, sans-serif; margin: 0px 0px 0px 0.8ex; border-left-width: 1px; border-left-color: rgb(204, 204, 204); border-left-style: solid; padding-left: 1ex;"><div dir="ltr"><span style="font-family: Arial, Helvetica, sans-serif;">Hi,&nbsp;</span><div style="font-family: Arial, Helvetica, sans-serif;"><br></div><div style="font-family: Arial, Helvetica, sans-serif;">I am trying to send and receive a XML with a RabbitMQ + Stomp and a browser client, I also use SockJS . First, I send and receive a simple text message without problems, but when I send a XML, I lost my connection and I don't know why. Any idea?</div><div style="font-family: Arial, Helvetica, sans-serif;"><br></div><div style="font-family: Arial, Helvetica, sans-serif;">Thanks in advance.</div><div style="font-family: Arial, Helvetica, sans-serif;"><br></div></div></blockquote><div style="font-family: arial, sans-serif;">Here my code, where d.body supposedly is my XML message:</div><div style="font-family: arial, sans-serif;">&nbsp;</div><blockquote class="gmail_quote" style="font-family: arial, sans-serif; margin: 0px 0px 0px 0.8ex; border-left-width: 1px; border-left-color: rgb(204, 204, 204); border-left-style: solid; padding-left: 1ex;"><div dir="ltr"><div style="font-family: Arial, Helvetica, sans-serif;"><div>&lt;script&gt;</div><div>&nbsp; &nbsp; &nbsp; // Stomp.js &nbsp;create WS connection</div><div class="im" style="color: rgb(80, 0, 80);"><div>&nbsp; &nbsp; &nbsp;var ws = new SockJS('http://' + window.location.hostname + ':15674/stomp');</div><div>&nbsp; &nbsp; &nbsp; var client = Stomp.over(ws);</div><div><br></div><div>&nbsp; &nbsp; &nbsp; client.heartbeat.outgoing = 0;</div><div>&nbsp; &nbsp; &nbsp; client.heartbeat.incoming = 0;</div><div>&nbsp; &nbsp;<span style="white-space: pre-wrap;">        </span>&nbsp; &nbsp;</div><div><br></div></div></div></div></blockquote><blockquote class="gmail_quote" style="font-family: arial, sans-serif; margin: 0px 0px 0px 0.8ex; border-left-width: 1px; border-left-color: rgb(204, 204, 204); border-left-style: solid; padding-left: 1ex;"><div dir="ltr"><div style="font-family: Arial, Helvetica, sans-serif;"><div>&nbsp; &nbsp; &nbsp; var on_connect = function(x) {</div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="font-family: arial; font-size: small;">&nbsp;</span></div></div></div></blockquote><blockquote class="gmail_quote" style="font-family: arial, sans-serif; margin: 0px 0px 0px 0.8ex; border-left-width: 1px; border-left-color: rgb(204, 204, 204); border-left-style: solid; padding-left: 1ex;"><div dir="ltr"><div style="font-family: Arial, Helvetica, sans-serif;"><div class="im" style="color: rgb(80, 0, 80);"><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; id = client.subscribe("/exchange/<wbr>nombreExchange", function(d) {</div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;<span style="white-space: pre-wrap;">        </span>print_first(d.body);</div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="white-space: pre-wrap;">        </span>});</div><div>&nbsp; &nbsp; &nbsp; };</div><div><br></div><div>&nbsp; &nbsp; &nbsp; var on_error = &nbsp;function() {</div><div>&nbsp; &nbsp; &nbsp; &nbsp; console.log('error');</div><div>&nbsp; &nbsp; &nbsp; };</div><div>&nbsp; &nbsp; &nbsp; client.connect('guest', 'guest', on_connect, on_error, '/');</div><div><br></div><div><br></div></div><div>&nbsp; &nbsp; &lt;/script&gt;</div></div></div></blockquote>