Classic ASP - Request object Is Empty - Stack Overflow most recent 30 from stackoverflow.com 2009-12-03T19:50:04Z http://stackoverflow.com/feeds/question/883672 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/883672/classic-asp-request-object-is-empty 2 Classic ASP - Request object Is Empty mklinker 2009-05-19T16:09:24Z 2009-05-19T19:49:20Z <p>I'm working on adding a feature to an old classic asp site and ran into an interesting problem. The following line on the page results in the helpful error "Object required:'' " </p> <pre><code>strServerName = Request.ServerVariables("server_name") </code></pre> <p>When I attached a debugger to look at it, Request is in fact Empty, which I don't understand how that can happen? This line exists on several pages and executes with no problems besides this one. In this case, the page is executed by a Redirect from another page.</p> <p>I've been searching for a solution for a day or so now and haven't been able to locate anything that's been helpful. I'm desperate, any ideas would be greatly appreciated.</p> <p>Oh, and if any more information is required, please don't hesitate to call me out. </p> <p>Thanks!</p> <p><strong>Update 1</strong><br> As requested, below is the entire code snippet wrapped in &lt;% %> tags. This block exists as first code within the file (named 'order-results-instant.asp'):</p> <pre><code>&lt;% strServerName = Request.ServerVariables("server_name") strServerName = UCase(strServerName) strServerURL = "http://localhost/cbr" strServerURLhttps = "https://localhost/cbr" strConnect = "Provider=SQLOLEDB;Data Source=localhost;Initial Catalog=CBR; Integrated Security=SSPI" Dim objConn Dim sql_stmt Dim rs %&gt; </code></pre> <p><strong>Update 2</strong><br> I've used the following 2 methods to redirect execution to this page - perhaps this can cause the request to be lost?</p> <pre><code> 'Response.Redirect strServerURL &amp; "/order-results-instant.asp?gwstep=1" Response.Write "&lt;META HTTP-EQUIV=""refresh"" content=""5;URL=" &amp; strServerURL &amp; "/order-results-instant.asp?gwstep=1""&gt;" </code></pre> http://stackoverflow.com/questions/883672/classic-asp-request-object-is-empty/883920#883920 0 Answer by Mcbeev for Classic ASP - Request object Is Empty Mcbeev 2009-05-19T16:57:51Z 2009-05-19T16:57:51Z <p>On your server is the Active Server Pages Web Service extension allowed (turned on) ? </p> http://stackoverflow.com/questions/883672/classic-asp-request-object-is-empty/883955#883955 0 Answer by Jason Heine for Classic ASP - Request object Is Empty Jason Heine 2009-05-19T17:05:11Z 2009-05-19T17:05:11Z <p>I copied your code into my test asp file with the following code and it redirected just fine.</p> <pre><code>&lt;% strServerName = Request.ServerVariables("server_name") strServerName = UCase(strServerName) strServerURL = "http://localhost/" strServerURLhttps = "https://localhost/" strConnect = "Provider=SQLOLEDB;Data Source=localhost;Initial Catalog=CBR; Integrated Security=SSPI" Dim objConn Dim sql_stmt Dim rs Response.Write(strServerName) if Request.Querystring("test") &lt;&gt; "1" then Response.Redirect("http://" + strServerName + "/asptest.asp?test=1") end if %&gt; </code></pre> <p>The only real difference is I am adding "http://" to the redirect. Maybe something I did will shed some light to help you solve your issue.</p> <p>thanks</p> http://stackoverflow.com/questions/883672/classic-asp-request-object-is-empty/884508#884508 0 Answer by jotham for Classic ASP - Request object Is Empty jotham 2009-05-19T19:09:36Z 2009-05-19T19:09:36Z <p>Does it work if you try to access it at an earlier point in the page?</p> http://stackoverflow.com/questions/883672/classic-asp-request-object-is-empty/884689#884689 3 Answer by AnthonyWJones for Classic ASP - Request object Is Empty AnthonyWJones 2009-05-19T19:49:20Z 2009-05-19T19:49:20Z <p>Scan through the rest of the code. At the Global level you will find this:-</p> <pre><code>Dim Request </code></pre> <p>Rename this variable and its current usage and the Request object attached to the script context will become visible.</p>