Data Controls :: Save Chat Messages To Database Using SignalR Chat
May 7, 2015
I had create an application to allow user to register new project.Manager will chat with user base on the project ID(chat room id = Project ID) and store this conversation to database.
Example: User A register project A, other user cannot join the chat room A.
View 1 Replies
Similar Messages:
Nov 3, 2010
I'm developing chat application on asp.net mvc, in my app, user can create room and invite other join to chat, but don't need to save chat room information.So, I designed to save all chat message ,room information and user info in Session and clear it when owner close the room.I'm worry about stressing server when I save alot of data (include room info, user info, and message) in Session if there are up to 5000 rooms created and alot of messages transfered in that room.Is my solution good enough ? is it ok to save in Session ?
View 3 Replies
Jan 1, 2014
How to chat privately using signalR ...
View 1 Replies
Sep 5, 2012
I want to develope web based chat application for an organization
My requirements are,
1. Group chat
2. Private chat
3. All chat information will save in sql server
4. if user minimize the browser,it will blink like gtalk and face book
View 1 Replies
Jan 2, 2011
I'm creating a very simple chat application. It has an ASP.NET web page as front-end and a WCF service as back-end for storing the messages to a database.Everything works great except one thing; when Browser A enters a chat message I want Browser B to see the message as soon as possible (yeah, I know, that's the purpose of a chat).What I've done so far is to setup a trigger within the UpdatePanel, like this:
<Triggers>
<asp:AsyncPostBackTrigger ControlID="chatTimer" EventName="Tick" />
</Triggers>
which uses a timer:
<asp:Timer ID="chatTimer" runat="server" OnTick="chatTimer_Tick" Interval="1000" />
Is this the best approach or is there a better, yet simple, way to accomplish updating of messages. One drawback with this solution is that the textbox used to enter chat messages loses focus every time the Tick event runs.
View 3 Replies
Nov 25, 2010
user should be logged in one browser and chat with some one.the same user should be logeed in same id in any other browser the user can get that chat messages in this browser also. but i have some problem inasp.net coding i can get chat messages only in which browser i chat to some one. so i need that chat messges in another browser also. how can i write the coding for that.
View 1 Replies
Nov 4, 2010
My application is MVC Web App Chat Room , it supports following features:1.Create/Join/Close room 2.Send message in room (just live message, offline message might be supported in future)I have done logic for application, but I'm considering where to save chat room data (message,room information, and users in room) ? I see there are 2 options:1. Application variable2. Using file or database-What if I saved in Application variable:In case of there are 2000 rooms and 10000 users online, mean I have to persistence in Application variable (actually in RAM memory) information of 2000 rooms, more than 10000 message (text), these numbers might be increased by second if there are more users online in real time. and what's next ? I don't know what will happen to server, crash ? or my web app will be terminated ? whatever I don't want both results !
-What if I saved in file or DB (i.e: SQL Server DB) Because of web application, clients have to send request every 1 second to fetch data (messages and user list in room). So in case of there are 2000 rooms and 10000 users online, means they will make 10000 requests every 1 second to DB. I don't know what will happen to DB, there are a lot of connections and in EVERY 1 second, can DB still be alive to serve request ?I don't know where saving is good now because both seem are bad solution
View 2 Replies
Nov 4, 2010
My application is Web App Chat Room , it supports following features:
1.Create/Join/Close room
2.Send message in room (just live message, offline message might be supported in future)
I have done logic for application, but I'm considering where to save chat room data (message,room information, and users in room) ? I see there are 2 options:
1. Application variable
2. Using file or database
-What if I saved in Application variable: In case of there are 2000 rooms and 10000 users online, mean I have to persistence in Application variable (actually in RAM memory) information of 2000 rooms, more than 10000 message (text), these numbers might be increased by second if there are more users online in real time. and what's next ? I don't know what will happen to server, crash ? or my web app will be terminated ? whatever I don't want both results!
-What if I saved in file or DB (i.e: SQL Server DB) Because of web application, clients have to send request every 1 second to fetch data (messages and user list in room). So in case of there are 2000 rooms and 10000 users online, means they will make 10000 requests every 1 second to DB. I don't know what will happen to DB, there are a lot of connections and in EVERY 1 second, can DB still be alive to serve request ?
I don't know where saving is good now because both seem are bad solution :(. What is your opinion ?
View 1 Replies
Jun 21, 2012
i want to implement the chat in asp.net without databse
View 1 Replies
Jan 12, 2011
want to develop a comment box and chat for my new project.
would love to use some jquery ajax where-ever possble.
want to store commentbox data nto database and retrieve to display them.
no idea about chat whether it should be file or database.
View 3 Replies
Nov 16, 2013
How to intergrate on skype video chat on asp.net ....
View 1 Replies
Nov 22, 2010
I want to add chat to my web application. some readily available modules or add ons? The chat function will be one to one such as Facebook.
View 3 Replies
Aug 3, 2010
what is the best Chat Module? Audio/Video? for asp.net?
View 3 Replies
Feb 12, 2010
i am developing chat application using vb.net and asp.net where i am having a div tag inside which i am displaying the messages posted by the online users what my problem is when the messages are more and exceeds the height of the div tag then i am not comfortable to view the previous messages because i have set the scroll bar position to always to be pointed to bottom.
[code]....
View 1 Replies
Jan 15, 2011
I always wondered how to make an instance chat using ajax !
View 4 Replies
Nov 22, 2010
I want to add chat to my web application. How to readily available modules or add ons? The chat function will be one to one such as Facebook.
View 3 Replies
Apr 8, 2010
how it works to be on the chat site Facebook.When I watched this chat via Firebug, so there they have made with retrieving messages over and over again in the loop.
I used setInterval ("function", time);They're just loading the chat for a change.So how does such a professional ajax chat?
View 7 Replies
Jul 6, 2010
I am a c# developer and am working on a web site that contains user accounts. I am trying to add a chat feature like facebook. Only direct chat is to be available like IM, a logged in user in the website should be able to chat with only logged in users. And the user can chat with only one other user at a time. If he wants to chat with another user, he must open a new chat window for him seperately. Which is exactly like facebook's chatting system. Any guides how to go about this. I am a newbie in web applications. Also, preferred language to go about his is asp.net.
View 6 Replies
Feb 28, 2011
how can add chat to my website
View 3 Replies
Nov 26, 2012
How to add chat option to asp.net website.How to create chat that shows online users.
View 1 Replies
Aug 21, 2012
I need to implement chat with my application Is there any API to implement this in .net.
View 1 Replies
Jan 19, 2010
I need to create chat application in asp.net.But I don't need to store chat messages in database. Only I retrieve user list from database. I have to create group chat also. I have to show list users but online user's image in green color offline user image in red color for differentiating people.
View 7 Replies
Apr 19, 2010
I have done some research on creating a chat room for my website. i found one on the following site: [URL] But it is in C#, i tried converting it to VB version but it gives me different errors. I dont know much about it.
View 9 Replies
Jan 29, 2010
How can I develop a chat application using asp.net or How to integrate any chat api with asp.net application.
View 5 Replies
Jun 2, 2010
Just looking for recommendations, we have a need to supply a chat-room for our customers. It will be small-mid scale usage, has anyone purchased any products recently that they recommend? Open to bundled, open-source, or SaaS implementations.
View 2 Replies