Server encountered an internal error. For more information, turn off customErrors in the server's .c

  • Thread starter Thread starter Ray Stevens
  • Start date Start date
R

Ray Stevens

"Server encountered an internal error. For more information, turn off
customErrors in the server's .config file."

The above is not a particularly helpful error message. It is being thrown by
a remoting C# application server accessing the bll/dal layers from a web
server. I turned off customErrors in the remote config file, but still get
this nearly useless error message. Worse, everything works fine if the
layers are all run on the same machine.

Does anyone have a clue as to what to do about it?
 
Ray said:
"Server encountered an internal error. For more information, turn off
customErrors in the server's .config file."

The above is not a particularly helpful error message. It is being
thrown by a remoting C# application server accessing the bll/dal
layers from a web server. I turned off customErrors in the remote
config file, but still get this nearly useless error message. Worse,
everything works fine if the layers are all run on the same machine.

Does anyone have a clue as to what to do about it?

like this:

<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<system.runtime.remoting>
<customErrors mode="off"/>


--
Reginald Blue
"I have always wished that my computer would be as easy to use as my
telephone. My wish has come true. I no longer know how to use my
telephone."
- Bjarne Stroustrup (originator of C++) [quoted at the 2003
International Conference on Intelligent User Interfaces]
 
Back
Top