.NETGURU
webpage chat using asp.net?
Messages   Related Types
This message was discovered on ASPFriends.com 'aspng' list.
Responses highlighted in red are from those people who are likely to be able to contribute good, authoratitive information to this discussion. They include Microsoft employees, MVP's and others who IMHO contribute well to these kinds of discussions.

Ian (VIP)
Hey guys,

been looking for some sort of project to get me started on asp.net, and i'm
wondering if this might be it.

How feasible is it to create a live chat room in a webpage using asp.net?

Ian

Reply to this message...
 
    
Venkat
Hi Ian,

Live chat room using asp.net sure is a cool idea to start of with. I
already have a chat application done using asp, try this link
http://www16.brinkster.com/venkats, but use only lower case while logging
in. Its yet incomplete. But the idea is very much possible and pretty
simple.

Venkat.

-----Original Message-----
From: Ian [mailto:Click here to reveal e-mail address]
Sent: Thursday, May 10, 2001 5:47 PM
To: aspng
Subject: [aspng] webpage chat using asp.net?

Hey guys,

been looking for some sort of project to get me started on asp.net, and i'm
wondering if this might be it.

How feasible is it to create a live chat room in a webpage using asp.net?

Ian

| [aspng] member Click here to reveal e-mail address = YOUR ID
| http://www.asplists.com/asplists/aspngcurious.asp = JOIN/QUIT
| http://www.asplists.com/search = SEARCH Archives

Reply to this message...
 
    
Terje Beck Nilsen
Hello Ian,

Prasad V. made a sample to Chat Services based on .NET and C#.

Look at ASP.todays article
http://www.asptoday.com/content/articles/20010402.asp?WROXEMPTOKEN=2709639ZP
rDPPxagj3pmzJJH2a

Greetings
Terje Beck Nilsen
Partner Manager
+47 90 17 19 62 (Norway) +47 51 68 03 20
http://www.W3Schools.com http://www.w3AppML.com
_______________________________________________
Knowledge is not as much knowing a subject
as it is knowing where to find information upon it
----- Original Message -----
From: "Ian" <Click here to reveal e-mail address>
To: "aspng" <Click here to reveal e-mail address>
Sent: Thursday, May 10, 2001 2:17 PM
Subject: [aspng] webpage chat using asp.net?

[Original message clipped]

Reply to this message...
 
    
Ian (VIP)
Hmm, thanks.

I'm guessing i actually wont be able to do this the way i wanted unless i
use some java stuff since i didnt want to have a continuously refreshing
webpage. I wanted something like a true chat client, like the way irc
works. I was looking at www.ichat.com, but i need something cheaper then
that. sigh....guess i have to find something else to get me started with
asp.net :)p

At 06:08 PM 5/10/99 +0530, you wrote:
[Original message clipped]

Reply to this message...
 
    
Ian (VIP)
but for any sort of chat, wouldn't i need some sort of client side
application as well? And for compatibility issues, i'm assuming i'd have to
use java for that.

I cant read the below article without subscribing to asptoday. I'll poke
around on charle's site first before i get desperate enough to subscribe :)

At 02:37 PM 5/10/01 +0200, you wrote:
[Original message clipped]

Reply to this message...
 
    
Joo Hang Cha
I got bored one weekend so I spent a couple of hours to develop a very
simple chat client with XML and ASP.

I don't have a URL at the moment to show you, but here is what I did:

chat.xml on the server:
- Acts like a database for all chat messages

chat.asp on the server:
- Takes care of login (a username only)
- Appends a new node to chat.xml file

chat.asp on the client:
- Displays a <div> container
- A DHTML script opens a new XML DOM object and reads chat.xml
- The script displays the chat.xml file and uses XSLT to limit the entries
to 25 and provides a nice formatting

When I have a better understanding of ASP.NET, I'm thinking about improving
this application with any new features I can think of.

My 2ยข.

----- Original Message -----
From: "Terje Beck Nilsen" <Click here to reveal e-mail address>
To: "aspng" <Click here to reveal e-mail address>
Sent: Thursday, May 10, 2001 5:37 AM
Subject: [aspng] Re: webpage chat using asp.net?

[Original message clipped]

Reply to this message...
 
    
y s
(Type your message here)

--------------------------------
From: y s

can you send me the source to mailto:Click here to reveal e-mail address
Reply to this message...
 
    
Carrico Todd
Yes, to do it this way you have to have a client. You could use .NET to
create a web service. Then create your client in what ever supports SOAP,
such as JAVA. Or just alienate anyone not on an MS platform eh eh eh.

Tc

-----Original Message-----
From: Ian [mailto:Click here to reveal e-mail address]
Sent: Thursday, May 10, 2001 9:13 AM
To: aspng
Subject: [aspng] Re: webpage chat using asp.net?

but for any sort of chat, wouldn't i need some sort of client side
application as well? And for compatibility issues, i'm assuming i'd have to
use java for that.

I cant read the below article without subscribing to asptoday. I'll poke
around on charle's site first before i get desperate enough to subscribe :)

At 02:37 PM 5/10/01 +0200, you wrote:
[Original message clipped]

| [aspng] member Click here to reveal e-mail address = YOUR ID
| http://www.asplists.com/asplists/aspngcurious.asp = JOIN/QUIT
| http://www.asplists.com/search = SEARCH Archives

Reply to this message...
 
    
Terje Beck Nilsen
This was Prasad DV's newsgroup information about the Chat Web Service -
before the AspToday article.

"Chat service has been implemented by me as a web service and the client
interface as a custom ASP.NET web component using webservices behavior at
http://aspx.securewebs.com/prasadv/chatroom.aspx

Enjoy all! (only IE 5.0 or above browsers!!) "

e-mail adress to Prasad DV Click here to reveal e-mail address

Greetings
Terje Beck Nilsen

----- Original Message -----
From: "Ian" <Click here to reveal e-mail address>
To: "aspng" <Click here to reveal e-mail address>
Sent: Thursday, May 10, 2001 3:12 PM
Subject: [aspng] Re: webpage chat using asp.net?

[Original message clipped]

Reply to this message...
 
    
Ian (VIP)
Hmm....maybe i'll look into that. You've mentioned enough things that i
dont know about. So it would be a good learning experience :)

At 11:08 AM 5/10/01 -0500, you wrote:
[Original message clipped]

Reply to this message...
 
    
Brian Boyce
Quite straightforward, create a web Service that writes to the single chat
room or communicates with clients via IP and streams. Messages can then be
communicated via the service (handy for monitoring all chat for gossip /
sensitive info ;o)

Sample web service code listed below.

    <%@ WebService Language="VB" Class="DemoSrv" %>
    
    Imports System.Web.Services
    
    Public Class DemoSrv
     Public Function <WebMethod()> MyNameIs() as String
     MyNameIs = "Brian"
     End Function
    End Class

Brian

P.S Have you seen 'Prisoners Dilema' the MS .NET Robot battle, write a
webservice and pit it against opponents.

Brian

-----Original Message-----
From: Ian [mailto:Click here to reveal e-mail address]
Sent: 10 May 2001 13:17
To: aspng
Subject: [aspng] webpage chat using asp.net?

Hey guys,

been looking for some sort of project to get me started on asp.net, and i'm
wondering if this might be it.

How feasible is it to create a live chat room in a webpage using asp.net?

Ian

| [aspng] member Click here to reveal e-mail address = YOUR ID
| http://www.asplists.com/asplists/aspngcurious.asp = JOIN/QUIT
| http://www.asplists.com/search = SEARCH Archives

Reply to this message...
 
    
Scott Watermasysk (VIP)
I believe ASPToday had an article on this.

-----Original Message-----
From: Ian [mailto:Click here to reveal e-mail address]
Sent: Thursday, May 10, 2001 8:17 AM
To: aspng
Subject: [aspng] webpage chat using asp.net?

Hey guys,

been looking for some sort of project to get me started on asp.net, and i'm
wondering if this might be it.

How feasible is it to create a live chat room in a webpage using asp.net?

Ian

| [aspng] member Click here to reveal e-mail address = YOUR ID
| http://www.asplists.com/asplists/aspngcurious.asp = JOIN/QUIT
| http://www.asplists.com/search = SEARCH Archives

Reply to this message...
 
    
akshay_markande@satyam-infoway.com

hi well
i been throught your chat ...
well here is mine... hope u would like it
http://www.jaipurcity.com/chat
if u interested in in then let me know

@
Akshay Markande
E-Biz Division (SIFY-2001)

|--------+----------------------->
| | Ian |
| | <merk@pacific|
| | net.net> |
| | |
| | 05/10/2001 |
| | 06:25 PM |
| | Please |
| | respond to |
| | "aspng" |
| | |
|--------+----------------------->
>--------------------------------------------------------|
| |
| To: "aspng" <Click here to reveal e-mail address> |
| cc: (bcc: akshay markande/Satyam) |
| Subject: [aspng] RE: webpage chat using |
| asp.net? |
>--------------------------------------------------------|

Hmm, thanks.

I'm guessing i actually wont be able to do this the way i wanted unless i
use some java stuff since i didnt want to have a continuously refreshing
webpage. I wanted something like a true chat client, like the way irc
works. I was looking at www.ichat.com, but i need something cheaper then
that. sigh....guess i have to find something else to get me started with
asp.net :)p

At 06:08 PM 5/10/99 +0530, you wrote:
[Original message clipped]

| [aspng] member Click here to reveal e-mail address = YOUR ID
| http://www.asplists.com/asplists/aspngcurious.asp = JOIN/QUIT
| http://www.asplists.com/search = SEARCH Archives

Reply to this message...
 
    
Murat Cureklibatir
unless we see some code, it doesnt help much

[Original message clipped]

_________________________________________________________________________
Get Your Private, Free E-mail from MSN Hotmail at http://www.hotmail.com.

Reply to this message...
 
 
System.Web.Services.WebService




ExamGuru IT Solutions - .Net Guru is owned and operated by ExamGuru, Inc., the man behind .Net Guru. If you're in the market for bespoke software or software consultancy, why not get him and his highly trained team to help? - www.examguru.net/ITCertification
Ad


Need Dot Net Interview Questions?
Ask ExamGuru, Inc. for advice and help on Passing .Net Interviews
.Net Projects
Best-of-breed application framework for .NET projects, developed by ExamGuru, Inc. and ExamGuru IT
Free .net Help
Commission ExamGuru, Inc. and his team for your next bespoke software project
FogBUGZ
The only bug tracking system carefully crafted with one goal in mind: helping teams create great software.
Awesome Tools
If you don't know about these, you're missing out... IT Certification Questions
IT Interview Questions
Free Oracle 10g Training
MCSE Boortcamp
Cisco Study Guides
Cheap Study Guides
Exact Questions
Dot Net Interview Questions
Oracle OCP
Cheap Travel
Designer Perfumes - Wholesale Prices
Free Programming Tutorials
 
ExamGuru IT Solutions - .Net Guru is owned and operated by ExamGuru, Inc., the man behind .Net Guru. If you're in the market for bespoke software or software consultancy, why not get him and his highly trained team to help? - www.examguru.net/ITCertification
 Copyright © ExamGuru, Inc. 2001-2006
Contact Us - Terms of Use - Privacy Policy - www.dot-net-guru.com - www.examguru.net - www.oraclesource.net - www.itinterviews.net - www.examguru.net/ITCertification