Ask a Question related to ASP.NET Web Services, Design and Development.
-
KIAMagentis #1
Real-time notification in ASP.NET
Hello!
I wonder, if there could be a way for a client of ASP.NET application
to recieve a message from a server. For example, let's consider we
have a job assignment application. The dispatcher assigns a job for a
particular executer. How to notify executor that he or she has a new
job assigned?
In other words, is there a way to make a real-time notification of new
jobs for a client in a ASP.NET application or by means of ASP.NET
web-service?
The need of such notification occurs very often in distributed
application, so it would be very important for me to choose
appropriate technology to use. In one hand, ASP.NET allows the
application to be platform-independend, but I can't find the way to
perform the interested functionality. In other hand, .NET Remoting
allows to make such things more clearly, but applications become
Windows-dependend, more complex to install and to use.
I would greatly appriciate any advises for the problem I've described.
Thanks
KIAMagentis Guest
-
3D real Time
I have this problem to solve: I want to interconnect a control system with a computer to display a 3D image of a room in a screen. The control... -
Real Time 3D for TV
Hi. I was wondering if Shockwave3D is suitable for interactive TV. The project consists of a TV show where people can interact through sms. The... -
Real-Time RSS Feed
I have an RSS feed written in ColdFusion that is currently scheduled (in CF Administrator) to update every 3 hours. Instead, I plan to have it... -
REAL TIME SHADOWS
why director/shockwave 3d doesn't have real time shadows? the most of 3d engines has,without the performance loss apology. -
Real time converted to Unix time
I have seen many request to go from unix to GM time, but I have not seen the reverse. Anyone know what the formula would be to convert a US... -
stephg #2
RE: Real-time notification in ASP.NET
I have a similar scenario in my application where I have implemented internal
instant messaging.
In my main aspx page I have an iFrame implemented that is being refreshed
every 10 seconds.
This iFrame calls a webservice to check whether there are new messages. If
yes, a pop-up window will display notifying the user.
Code extract for implementig the iFrame in master.aspx looks like:
<iframe src="CheckMessage.aspx" width="100%" height="200" scrolling="auto"
frameborder="no">
</iframe>
CheckMessage.aspx looks like:
<HEAD>
<meta http-equiv="Refresh" content="10">
</HEAD>
and in the code behind you call the webservice in pageload section and
display the pop-up via:
Dim message as String = "There is a new message for you"
Dim messText As String = "<script language=" & Chr(39) & "JavaScript" &
Chr(39) & ">alert(" & Chr(34) & message & Chr(34) & ");</script>"
Response.Write(messText)
stephg Guest
-
-
Trapulo #4
Re: Real-time notification in ASP.NET
HTTP is stateless, so I think yo can't
With remoting you can make this. Installation is easy and you have more
choise (IIS is not required), however the two solutions have different pro
and contro.
bye
Trapulo Guest
-
kibitz #5
Notification in asp.net
Hi!! i am an asp.net programmer and i got a problem in my notifications!! or should i say i dont know how to put an notification in my site?? so i just want to ask if you could help me with my problem? thanks in regards. this is the scenario of my program how can i put a notification if the user receive a mail, but the mail is like only datasource bind. is is possible that the grid view may change color? for the read and non read messages?? thanks in regards^_^
by the way can you give me more simple codes? hehe thanks againkibitz Guest



Reply With Quote

