Subject: Component sending message problem
I have written a simple server component, and a simple client application. I was trying to test to see whether I could send messages back and forth between the client and the server component. I am finding that I can send messages from the client to the server component, but the message from the server component to the client is not being received.
Here is the message from the client to the server component:
And here is the message being received by the server component:
Here is the message from the server component to the client that never gets received:
The format of the message looks correct. Is there something special you have to do in order to receive a message from a server component?
Here is the message from the client to the server component:
<message xmlns="jabber:client" to="games.dilbert"><body /><weather xmlns="bartbert:weather"><humidity>90</humidity><temperature>57</temperature></weather></message>
And here is the message being received by the server component:
<message xmlns="jabber:component:accept" from="brian@dilbert/b579460d" to="games.dilbert"><body /><weather xmlns="bartbert:weather"><humidity>90</humidity><temperature>57</temperature></weather></message>
Here is the message from the server component to the client that never gets received:
<message xmlns="jabber:client" to="brian@dilbert"><body>Test message</body><weather xmlns="bartbert:weather"><humidity>90</humidity><temperature>57</temperature></weather></message>
The format of the message looks correct. Is there something special you have to do in order to receive a message from a server component?