Click here to Skip to main content
16,011,120 members
Home / Discussions / Web Development
   

Web Development

 
GeneralProblem while posting to many asp pages from an html page! Pin
TPN6-Oct-03 0:46
TPN6-Oct-03 0:46 
GeneralRe: Problem while posting to many asp pages from an html page! Pin
Nathan Ridley6-Oct-03 17:53
Nathan Ridley6-Oct-03 17:53 
GeneralRe: Problem while posting to many asp pages from an html page! Pin
TPN6-Oct-03 20:58
TPN6-Oct-03 20:58 
GeneralRe: Problem while posting to many asp pages from an html page! Pin
Nathan Ridley7-Oct-03 3:55
Nathan Ridley7-Oct-03 3:55 
GeneralRe: Problem while posting to many asp pages from an html page! Pin
TPN10-Oct-03 21:19
TPN10-Oct-03 21:19 
GeneralRe: Problem while posting to many asp pages from an html page! Pin
Nathan Ridley10-Oct-03 22:53
Nathan Ridley10-Oct-03 22:53 
GeneralRe: Problem while posting to many asp pages from an html page! Pin
TPN11-Oct-03 18:11
TPN11-Oct-03 18:11 
GeneralRe: Problem while posting to many asp pages from an html page! Pin
Sage16-Oct-03 9:18
Sage16-Oct-03 9:18 
so if I understand this correctly, there are multiple web servers in multiple locations.

firstly, if you are hosting a server on an unreliable leased line circuit, and POSTING some semi-critical data to it, then what do you expect to happen IF you get your form posting to multiple locations BUT one of those locations is down? Seems to me that you app falls flat right there.

Why not go this route......

is there any one server that is not on a leasedline? IE, Fully reliable?

If so, when the form posts and you create your "session" file, create the file on the reliable server, say, as an XML file....

Then, reference this file from your "slave" servers when checking "session"..
These servers would check the "session" using something like this...


set objHttp = Server.CreateObject("Msxml2.ServerXMLHTTP")
objHttp.open "GET", "http://www.cdsgrants.com/Content/user.txt", false
objHttp.Send ""

if objHttp.status <> "200" then
Response.write "File Not Retrieved " & sResponse
Else
Response.Write objHTTP.ResponseTEXT & "

"
end if

set objHttp = nothing
GeneralRe: Problem while posting to many asp pages from an html page! Pin
Philip Fitzsimons7-Oct-03 3:03
Philip Fitzsimons7-Oct-03 3:03 
GeneralRe: Problem while posting to many asp pages from an html page! Pin
TPN10-Oct-03 20:28
TPN10-Oct-03 20:28 
GeneralRe: Problem while posting to many asp pages from an html page! Pin
Philip Fitzsimons12-Oct-03 23:12
Philip Fitzsimons12-Oct-03 23:12 
GeneralWebServices and .Net Pin
sybux20005-Oct-03 9:48
sybux20005-Oct-03 9:48 
GeneralRe: WebServices and .Net Pin
David Cunningham5-Oct-03 9:55
cofounderDavid Cunningham5-Oct-03 9:55 
GeneralRe: WebServices and .Net Pin
sybux20006-Oct-03 7:01
sybux20006-Oct-03 7:01 
General&lt;input type=file&gt; Pin
kokain5-Oct-03 6:26
kokain5-Oct-03 6:26 
GeneralRe: &lt;input type=file&gt; Pin
markkuk5-Oct-03 7:12
markkuk5-Oct-03 7:12 
GeneralRe: &lt;input type=file&gt; Pin
Blake Coverett5-Oct-03 10:24
Blake Coverett5-Oct-03 10:24 
GeneralRemote and Local DBs Pin
J. Dunlap3-Oct-03 12:20
J. Dunlap3-Oct-03 12:20 
GeneralVertically center text Pin
Navin3-Oct-03 10:33
Navin3-Oct-03 10:33 
GeneralRe: Vertically center text Pin
J. Dunlap3-Oct-03 10:34
J. Dunlap3-Oct-03 10:34 
GeneralForums.. Pin
chr36812-Oct-03 16:32
chr36812-Oct-03 16:32 
GeneralRe: Forums.. Pin
alex.barylski2-Oct-03 17:17
alex.barylski2-Oct-03 17:17 
GeneralRe: Forums.. Pin
Nathan Ridley2-Oct-03 17:43
Nathan Ridley2-Oct-03 17:43 
GeneralRe: Forums.. Pin
chr36812-Oct-03 18:10
chr36812-Oct-03 18:10 
GeneralRe: Forums.. Pin
Roger Wright3-Oct-03 5:40
professionalRoger Wright3-Oct-03 5:40 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.