473,386 Members | 1,883 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,386 software developers and data experts.

communications between sessions?

aa
Does ASP allow communications between sessions?
Usually Response sends the response to the destination from which the
Request came.
Is it possible to send the Response to some other client who is connected to
the same page at this moment?
Jul 19 '05 #1
8 1430
nope

--
Curt Christianson
Owner/Lead Developer, DF-Software
www.Darkfalz.com
"aa" <aa@virgin.net> wrote in message
news:ex**************@TK2MSFTNGP09.phx.gbl...
Does ASP allow communications between sessions?
Usually Response sends the response to the destination from which the
Request came.
Is it possible to send the Response to some other client who is connected to the same page at this moment?

Jul 19 '05 #2
aa wrote on 03 feb 2004 in microsoft.public.inetserver.asp.general:
Does ASP allow communications between sessions?
Usually Response sends the response to the destination from which the
Request came.
Is it possible to send the Response to some other client who is
connected to the same page at this moment?


Clients are not connected to a page, they just get a html page downloaded.

The only way to get info from one session to the other is the save that
info on the server [in a file, a database file or an application variable]
for retrieval by another session's page.
--
Evertjan.
The Netherlands.
(Please change the x'es to dots in my emailaddress)
Jul 19 '05 #3
aa
Clients are not connected to a page, they just get a html page downloaded.

I appreciate that.
But a client stays connected (Connection:Keep-Alive) to the server (I guess)
which I interpret as a possibility for the server to use this connection to
send information.
Where am I wrong?

"Evertjan." <ex**************@interxnl.net> wrote in message
news:Xn********************@194.109.133.29...
aa wrote on 03 feb 2004 in microsoft.public.inetserver.asp.general:
Does ASP allow communications between sessions?
Usually Response sends the response to the destination from which the
Request came.
Is it possible to send the Response to some other client who is
connected to the same page at this moment?


Clients are not connected to a page, they just get a html page downloaded.

The only way to get info from one session to the other is the save that
info on the server [in a file, a database file or an application variable]
for retrieval by another session's page.
--
Evertjan.
The Netherlands.
(Please change the x'es to dots in my emailaddress)

Jul 19 '05 #4
aa wrote on 04 feb 2004 in microsoft.public.inetserver.asp.general:
Clients are not connected to a page, they just get a html page
downloaded.
This shows there is no keep alive in connection with the browser.
I appreciate that.
But a client stays connected (Connection:Keep-Alive) to the server (I
guess) which I interpret as a possibility for the server to use this
connection to send information.
Where am I wrong?


You are wrong

[1 By topposting]

2 There is no keep alive in asp server client intercource, as far as I
know.

Only thwe client can ask for more information by rewesting a new page.

(I hope we are not talking asp.net [OT on this NG] which perhaps fakes a
connection by adsking for iframse or so. I knowe nothing about that.)

--
Evertjan.
The Netherlands.
(Please change the x'es to dots in my emailaddress)
Jul 19 '05 #5
aa
1 There is no keep alive in asp server client intercource, as far as I
know.

Is this relevant to asp server? I thought that this is relevant to HTTP and
a server which manages HTTP

2. Only thwe client can ask for more information by rewesting a new page
This is how thing are working most of the time. But are you sure about
"Only"?

Consider this:
A Client sends an HTTP request. Webserver replies to it with an HTTP
response. What prevents the Webserver from sending a second response along
the same route?

3. REMOTE_HOST in Request.ServerVariables - does it mean the IP (static or
dynamic) adress of the computer, generated the HTTP request?

4. [1 By topposting]

If you mean my message timestamped 1.5 hours before yours - I have nothing
to do with this for these 1.5 hour give no advantage and secondly, I
understand that this can only be done by wrong time set on my. As of this
writing I have 10:14 am UK time on my machine

"Evertjan." <ex**************@interxnl.net> wrote in message
news:Xn********************@194.109.133.29...
aa wrote on 04 feb 2004 in microsoft.public.inetserver.asp.general:
Clients are not connected to a page, they just get a html page
downloaded.


This shows there is no keep alive in connection with the browser.
I appreciate that.
But a client stays connected (Connection:Keep-Alive) to the server (I
guess) which I interpret as a possibility for the server to use this
connection to send information.
Where am I wrong?


You are wrong

[1 By topposting]

2 There is no keep alive in asp server client intercource, as far as I
know.

Only thwe client can ask for more information by rewesting a new page.

(I hope we are not talking asp.net [OT on this NG] which perhaps fakes a
connection by adsking for iframse or so. I knowe nothing about that.)

--
Evertjan.
The Netherlands.
(Please change the x'es to dots in my emailaddress)

Jul 19 '05 #6
aa wrote on 05 feb 2004 in microsoft.public.inetserver.asp.general:
1 There is no keep alive in asp server client intercource, as far as
I know.

Is this relevant to asp server? I thought that this is relevant to
HTTP and a server which manages HTTP
It is relevant to the browser, that only sees html content and header
info. It needs two to keep a connection alive.
2. Only thwe client can ask for more information by rewesting a new
page This is how thing are working most of the time. But are you sure
about "Only"?

Consider this:
A Client sends an HTTP request. Webserver replies to it with an HTTP
response. What prevents the Webserver from sending a second response
along the same route?
Nothing, but the browser is not "into" unrequested streams.
3. REMOTE_HOST in Request.ServerVariables - does it mean the IP
(static or dynamic) adress of the computer, generated the HTTP
request?
No, it could also mean the proxiserver. Or your NAT translation router.
4. [1 By topposting]

If you mean my message timestamped 1.5 hours before yours - I have
nothing to do with this for these 1.5 hour give no advantage and
secondly, I understand that this can only be done by wrong time set on
my. As of this writing I have 10:14 am UK time on my machine


No, please read up on usenet netiquette about quoting.

Why is Bottom-posting better than Top-posting
<http://www.caliburn.nl/topposting.html>

RFC 1855
<http://www.faqs.org/rfcs/rfc1855.html>

etc.

--
Evertjan.
The Netherlands.
(Please change the x'es to dots in my emailaddress)
Jul 19 '05 #7
1. > Nothing, but the browser is not "into" unrequested streams.

You mean that it is possible to generate "unsolisited" responce on the
server, and it will reach the cleant, but the browser will ignore it?

2. [1 By topposting]
I see. Actually this is not a strict rule, but rather an opinion. There are
a lot of people who prefer bottomposting, myself among them.
Topposting is consideres bad, because it does not creat context. But I
always quote the bit I refering to, so the context is there.

I find bottomposting inconveniet as it forses you to scroll down though your
own writing and make is easy to miss an important comment. But again, this
is a matter of taste.

"Evertjan." <ex**************@interxnl.net> wrote in message
news:Xn********************@194.109.133.29...
aa wrote on 05 feb 2004 in microsoft.public.inetserver.asp.general:
1 There is no keep alive in asp server client intercource, as far as
I know.

Is this relevant to asp server? I thought that this is relevant to
HTTP and a server which manages HTTP


It is relevant to the browser, that only sees html content and header
info. It needs two to keep a connection alive.
2. Only thwe client can ask for more information by rewesting a new
page This is how thing are working most of the time. But are you sure
about "Only"?

Consider this:
A Client sends an HTTP request. Webserver replies to it with an HTTP
response. What prevents the Webserver from sending a second response
along the same route?


Nothing, but the browser is not "into" unrequested streams.
3. REMOTE_HOST in Request.ServerVariables - does it mean the IP
(static or dynamic) adress of the computer, generated the HTTP
request?


No, it could also mean the proxiserver. Or your NAT translation router.
4. [1 By topposting]

If you mean my message timestamped 1.5 hours before yours - I have
nothing to do with this for these 1.5 hour give no advantage and
secondly, I understand that this can only be done by wrong time set on
my. As of this writing I have 10:14 am UK time on my machine


No, please read up on usenet netiquette about quoting.

Why is Bottom-posting better than Top-posting
<http://www.caliburn.nl/topposting.html>

RFC 1855
<http://www.faqs.org/rfcs/rfc1855.html>

etc.

--
Evertjan.
The Netherlands.
(Please change the x'es to dots in my emailaddress)

Jul 19 '05 #8
wrote on 05 feb 2004 in microsoft.public.inetserver.asp.general:
1. > Nothing, but the browser is not "into" unrequested streams.

You mean that it is possible to generate "unsolisited" responce on the
server, and it will reach the cleant, but the browser will ignore it?
No, not at all, there is no reason to generate "unsolisited" responces to
browsers that will not listen anyway.
2. [1 By topposting]
I see. Actually this is not a strict rule, but rather an opinion.
There are a lot of people who prefer bottomposting, myself among them.
Topposting is consideres bad, because it does not creat context. But I
always quote the bit I refering to, so the context is there.


It surely is a strict rule, as far as netiquette on usenet and anything in
this free for all cybespace can be called strict.

The alternative to topposting is not bottomposting, but also and better
interposting, as you sometimes(?) and I now do.

And why repeat the quote of the total post at the bottom, where it only
takes an enormous unused bandwith and storage on all those usenet machines,
let alone that it clutters my view?

--
Evertjan.
The Netherlands.
(Please change the x'es to dots in my emailaddress)
Jul 19 '05 #9

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

3
by: Maxime Ducharme | last post by:
Hi group We have a problem with sessions in one of our sites. Sessions are used to store login info & some other infos (no objects are stored in sessions). We are using Windows 2000 Server...
0
by: Dana Morris | last post by:
Call for Participation OMG's First Annual Software-Based Communications (SBC) Workshop: From Mobile to Agile Communications http://www.omg.org/news/meetings/SBC2004/call.htm September 13-16,...
1
by: Catherine Jo Morgan | last post by:
This is for a recreational tree climbing database. When a climb is arranged, it often begins with one or more inquiries by phone or email. Sometimes it takes several communications to answer...
6
by: Peter Krikelis | last post by:
Hi All, I am having a problem setting up input mode for serial communications. (Sorry about the long code post). The following code is what I use to set up my comm port.
5
by: Daniel J Rodriguez | last post by:
Greetings everyone! This is a fairly broard question.. But should be enough to suffice for an answer. Currently we are making an entreprise database server. We will be using C# - my question is...
4
by: Paul Baker | last post by:
Hello All, This is my first post so apologies if this is the wrong newsgroup. I'm designing software for a platform that will sit on a CAN bus. There will be three separate programs running...
4
by: Gary Frank | last post by:
I'd like to write a program in VB.Net that handles serial communications to several devices. VB.Net 2003 does not have adequate built-in serial communications. I heard that 2005 will have that. ...
8
by: vicky | last post by:
Hello,I met a question when I wrote the program.I want the program can transmit the data frame continuosly through the RS232 when the communication has been interrupted.But I don't know how to...
3
Atli
by: Atli | last post by:
Introduction: Sessions are one of the simplest and more powerful tools in a web developers arsenal. This tool is invaluable in dynamic web page development and it is one of those things every...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.