Logging out of Aware IM

If you have questions or if you want to share your opinion about Aware IM post your message on this forum
Post Reply
ollabun
Posts: 5
Joined: Wed Apr 27, 2005 3:38 am

Logging out of Aware IM

Post by ollabun »

Is it possible to configure Aware IM to display standard "Good-bye" message but also display a "Login" button, so that a user can log in back to the system?
aware_support
Posts: 7526
Joined: Sun Apr 24, 2005 12:36 am
Contact:

Post by aware_support »

Yes, but you will need to provide custom HTML or jsp page. A very crude example of such a page is shown below. You can take this file or modify it or provide your own HTML file (if you do this then the URL that you will need to specify for the Logon button or link is http://localhost:8080/AwareIM/logonOp.jsp).

You will need to specify the name of the page as the parameter for the Logout menu item (assuming that your page is in AwareIM/Tomcat/shared/webapps/AwareIM directory):

<html>
<head>
</head>
<body >

<table border="0" width="100%" >
<tr>
<td align="center">
Logout successful. Good-bye.
</td>
</tr>
<tr>
<td align="center" >
<a href="http://localhost:8080/AwareIM/logonOp.jsp" >
Logon
</a>
</td>
</tr>
</table>

</body>
</head>
</html>
Aware IM Support Team
Post Reply