In this tutorial i am going to show that how can you add a custom flash chat in your ADF application, and use it to chat with friends.
this is very much simple, as no code required to do this.
- Go to http://www.everywherechat.com/ , this site provides free custom flash chat rooms, get html code of your custom chat from here
- Create an html page using that code
<html>
<body>
<!-- Begin Everywherechat Room Code -->
<br />
<script src="http://www.everywherechat.com/e.php?defaultRoom=Lobby&roomList=true&fontSize=12&width=600&height=500&theme=night"></script>
<!-- End Everywherechat Room Code -->
</body>
</html>
- Now create a Fusion Web Application and create a page in it, call this HTML page in an inlineFrame (af:inlineFrame)
<?xml version='1.0' encoding='UTF-8'?>
<jsp:root xmlns:jsp="http://java.sun.com/JSP/Page" version="2.1" xmlns:af="http://xmlns.oracle.com/adf/faces/rich">
<af:panelGroupLayout id="pgl1">
<af:inlineFrame id="if1" source="/chat.html" inlineStyle="height:700px;width:700px;"/>
</af:panelGroupLayout>
</jsp:root>
- Now Run your application and see your flash chat room is ready - Happy Coding