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

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?
 
R

Reginald Blue

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]
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top