Actionwebservice returning backtrace in production

How can I make actionwebservice not return a backtrace to clients in
production mode? This is in edge rails.

Chris

On 12/4/06, snacktime [email protected] wrote:

How can I make actionwebservice not return a backtrace to clients in
production mode? This is in edge rails.

Chris

Try this:

class BackendContainer < ActionController::Base
web_service_exception_reporting true
end


Kent