How to implement real time updates and interactive chats in a webpage


 
Thread Tools Search this Thread
Top Forums Web Development How to implement real time updates and interactive chats in a webpage
# 1  
Old 02-17-2012
Java How to implement real time updates and interactive chats in a webpage

I want to build a website.. All i know is shell and perl programming.. so i started with perl cgi and was successful in developing a page that asks username and password and authenticates the user...
Now can some one tell me how to add IRC(interactive chat) and real time updates to my webpage, like facebook, or gmail does..
what language or technology should i learn for this...? Smilie

PS: my test bed involves Apache/2.2.20 (Ubuntu), perl5 and Mozilla firefox.
# 2  
Old 02-17-2012
HTTP isn't well-suited to "real-time" things, it loads a page then quits. "real-time" updates really mean a javascript something on the webpage repeatedly loading some URL to see if it has anything new to report.

So it's not just an HTTP thing, not just a server-side thing, and not just a javascript thing. It's all three. Trying to master all of them at once may be a bit of a tall order.
# 3  
Old 02-18-2012
Java thanks for ur answer

thanks for ur answer.. will try to learn javascript and get back.. Smilie
Login or Register to Ask a Question

Previous Thread | Next Thread

7 More Discussions You Might Find Interesting

1. Proxy Server

First time AIX: question about updates

On HP_UX i download the patches and then install with swinstall On AIX,i found "service packs" but there are many,i have to install all service packs,or the latest is ok? Thanks (5 Replies)
Discussion started by: Linusolaradm1
5 Replies

2. Shell Programming and Scripting

Converting real time to epoch time

# date +%s -d "Mon Feb 11 02:26:04" 1360567564 # perl -e 'print scalar localtime(1360567564), "\n";' Mon Feb 11 02:26:04 2013 the epoch conversion is working fine. but one of my application needs 13 digit epoch time as input 1359453135154 rather than 10 digit epoch time 1360567564... (3 Replies)
Discussion started by: vivek d r
3 Replies

3. UNIX for Advanced & Expert Users

How much time for updates: HP-UX and AIX.?

Wasn't sure how to word the title... sorry. In HP-UX and AIX specifically you apply a set of patches, not like solaris and linux where you update what's needed individually. So, for example, when going from patch level 1.1 to 1.8 is the time to complete exponential (1.1 -> 1.2 -> 1.3.. so on)... (1 Reply)
Discussion started by: gville2otown
1 Replies

4. Shell Programming and Scripting

Shell script to convert epoch time to real time

Dear experts, I have an epoch time input file such as : - 1302451209564 1302483698948 1302485231072 1302490805383 1302519244700 1302492787481 1302505299145 1302506557022 1302532112140 1302501033105 1302511536485 1302512669550 I need the epoch time above to be converted into real... (4 Replies)
Discussion started by: aismann
4 Replies

5. UNIX for Dummies Questions & Answers

Live/real-time text-file updates in terminal

I want to have a terminal open and have something like a "repeating cat" command running in it for a certain text file (in particular /var/log/system.log). So my terminal will scan or cat the text file every so often or whenever the text file system.log gets written to by the system, it will... (1 Reply)
Discussion started by: guitarscn
1 Replies

6. Programming

problem with real-time

hello every1, i'm very hope so anyone here have experience with lib rt like aio linux based. In first I've a problem with receiving data from aio_buf, i.e. I have received it, but if the next data size less then pervious I've got a noise from a socket. I've tried to fix it by different ways, but... (0 Replies)
Discussion started by: quant
0 Replies

7. Solaris

Real time problems

Hi friends, I am new to solaris and looking for a job, when ever i attend interview i get most of the questions on real time problems, every one sak me the same questions what are the problems you face daily.. and what are the types? i know few like, disk extension,swap memory increasing,... (2 Replies)
Discussion started by: kurva
2 Replies
Login or Register to Ask a Question