Problem passing enum to a remote object

  • Thread starter Thread starter Julia
  • Start date Start date
J

Julia

Hi,

I am calling a remote object from ASP.NET application.
when passing an ENUM to a method i am getting an exception

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

The enum is valid and all other methdos are working fine.
The enum is mark with
[Serializable()]

The is no exception in the remote method,it does not being called at all.

Thanks.
 
Hi Julia,

try to set custom errors to *Off*.

<customErrors
mode="Off"
/>

in the web.config file.

You will then get a more detailed error description, which might help to
solve your problem.

Kind regards
Alex


- Alexander Rauser

http://www.flashshop.info
 
Back
Top