Questions tagged [asp-classic]

The (usually-IIS-hosted) ASP3 platform

The Application Server Page 3 server-side web application scripting platform.

113 questions
2
votes
3 answers

Authenticated User Impersonation in Classic ASP under IIS7

I've recently moved one of our servers from Server 2003 and IIS6 to Server 2008 R2 and IIS7 (technically IIS7.5 I suppose). In doing so I am transitioning a small account management tool written in classic ASP and have run into a problem with user…
user52663
2
votes
1 answer

Classic ASP on large memory server

I have a client with a large ASP app that apparently is fairly memory intensive. I’m helping them migrate to new hardware running Win2k8 R2. They have 4 physical servers with 32gb of RAM each. I’m making the assumption that ASP apps run as a x32…
Steve Evans
  • 260
  • 1
  • 5
  • 16
2
votes
1 answer

How to enable extended logging for classic asp on IIS7 on Windows 2008 R2

I had to deploy an application that was not written by me onto the above configuration. It is a rather bizarre hybrid of asp.net and classic asp and it's the classic asp that is proving troublesome. The client is having problems with 500 Internal…
Neil Trodden
  • 262
  • 5
  • 14
2
votes
1 answer

IIS7 Binary Stream Error

I'm struggling to understand the problem I'm seeing so please accept my apology if the question is vague. I'm running a classic asp app in IIS7 and everything seems to work fine except for one issue that has me stumped. Basically, files can be…
WDuffy
  • 123
  • 1
  • 3
2
votes
2 answers

IIS6 cdo.message cannot send emails access denied error

Got some very basic email code on a iis 6 server to send a test email. Relay is enabled on exchange server for this server, the iis user has write permissions to the directories for mailroot and all its subfolders, and yet we still get this blasted…
aduljr
  • 500
  • 2
  • 5
  • 16
1
vote
0 answers

Docker SQL Server remote login from IIS login failed for user sa

I have this error when I trying to connect ASP Classic web app (hosted in IIS 10) to SQL Server 2014 with username and password using a DSN configured in IIS dockerfile: Microsoft OLE DB Provider for ODBC Drivers error '80040e4d' [Microsoft][ODBC…
D. Duran
  • 11
  • 1
1
vote
0 answers

Is there a Windows Command Line utility or DLL to convert URL text to clickable Hyperlinks in PDF files?

I'm editing an ASP Classic application that uses a DLL called PDFLib to import existing PDF files, make modifications, and generate new PDF files. The problem is that any URLs that were in the source PDF are not hyperlinks in the generated PDF. The…
scottkeen
  • 19
  • 1
1
vote
2 answers

Disallowing access to certain file type in IIS6

I can do this just fine under Apache with htaccess / permissions. But at work its all M$ all the time... I need to lock off access to any .fla files that might come up. We keep them next to the few .swf we use on some of our sites, I just want to be…
Jakub
  • 380
  • 1
  • 11
1
vote
1 answer

Telnet SMTP gives OK but not accepted or queued message and mails not received

I am trying to debug a CDO.Message.1 error '80040213', The transport failed to connect to the server. So I am testing the connection to the SMTP server via telnet. After entering the DATA I am getting this response: 250 ok 1515609773 qp 24996 On a…
Brad Mathews
  • 173
  • 2
  • 8
1
vote
0 answers

How to find cause of Classic ASP page errors - IIS8

I'm running a Windows Server 2012 R12 running IIS8. I have a classic ASP website running on it, and for the most part it runs fine. The website gets about 1.5 million page views per month (approx 400,000 unique page views). I have a custom error…
4532066
  • 131
  • 6
1
vote
1 answer

How can I monitor the connection pool in IIS?

On a Win2003 server, a site running Classic ASP (not asp.net) is having performance problems. How can I monitor the performance of the connection pool? The backend SQL Server database (on another server) is nowhere near breaking a sweat, and the…
Kjensen
  • 1,039
  • 10
  • 28
  • 39
1
vote
2 answers

w3wp.exe application pool crashing every 5 minutes

I had a classic ASP working site on Windows 2012. Everything worked ok. Since I moved it to 2016 machine (same DB, same files), w3wp.exe is crashing every few minutes ;-( I did the dump and there seems to be this 2 errors every time there is a…
Jerry2
  • 171
  • 8
1
vote
1 answer

Slow IIS performance after upgrade from 7.0 to 8.5

A website was running on an IIS server 7.0 / Windows 2008. A new server was set up, running IIS 8.5 / Windows 2012, with more powerful hardware (4 CPU cores). However, performance of a new server is dramatically low. Application is ASP classic. What…
milet
  • 11
  • 2
1
vote
3 answers

SQL Server 0x0004005 "Unspecified error"

This is a system/setup that has been working just fine for years. We have the web server on one box, SQL Server 2000 on a different one. Suddenly, we're getting the following error: Provider (0x0004005) Unspecified error (path to file), line…
Martha
  • 143
  • 7
1
vote
1 answer

IIS - Chunked large file uploads fail without error

I need a way to send large files (5 GB) to my webserver, for this I use a plugin that can send chuncks of 100MB. I configured request/response limits and if I send files with a maximum of approximately 800MB, then everything is working fine. If I…