[
https://issues.apache.org/jira/browse/VYSPER-286?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13057610#comment-13057610
]
Bernd Fondermann commented on VYSPER-286:
-----------------------------------------
add a shutdown hook to your application to make sure the client terminates the
connection properly.
call code like this before or right after you established a connection:
protected void addShutdownHook_GracefulXMPPTermination() {
Runtime.getRuntime().addShutdownHook(new Thread(new Runnable() {
@Override
public void run() {
LOGGER.info("executing shutdown hook.");
XMPPConnection locXmppConnection = xmppConnection;
if (locXmppConnection != null) {
locXmppConnection.disconnect();
}
}
}));
}
I'm happy to continue this discussion on the mina user maling list.
> Message cannot send message to offline receiver is not sent back to client
> --------------------------------------------------------------------------
>
> Key: VYSPER-286
> URL: https://issues.apache.org/jira/browse/VYSPER-286
> Project: VYSPER
> Issue Type: Bug
> Components: core protocol
> Affects Versions: 0.7
> Environment: windows 7
> Reporter: Aruna polepally
>
> Using a smack Api as client i am trying to send message from Client A to
> Client B
> (offline).I can see the error message in the server console as follows :
> org.apache.vysper.xmpp.delivery.inbound.DeliveringInternalInboundStanzaRelay
> WARN cannot relay to offline receiver b@localhost stanza message.body.Hello.I
> could not see any error message sending back to client A so that the message
> can be captured.
> Is ther
--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira