Transaction issue in ASP Classic

I came across HTTP 500 error

using a classic asp application hosted on a server IIS 7.5

and on a Windows 2008 server.

I did the following steps.

  • 32 bit included in the application pool
  • Include parent paths = true
  • Updated MSDTC security settings

However, this does not work with the above changes. But on uninstall and install MSDTC

and execute IISRESET

works fine.

Note. ASP page included with Transaction=required

and removing that works great too.

+3


source to share


1 answer


  • Open IIS Manager and go to ASP.
  • set browser submit error = true
  • remove default script error message
  • save and restart IIS
  • Uncheck "Show friendly error message" in browser. If you followed the above steps, you should be able to see the correct error in your browser.

Check out the screenshot below

IIS settings



What error do you see in the browser? Check the links below for configuring MSDTC and your DB for transactions and authentication (inbound, outbound). This is similar to an ASP authentication and transaction issue to describe.

Where MSDTC needs to be installed in case of a distributed transaction

https://msdn.microsoft.com/en-us/library/dd327979.aspx

0


source







All Articles