.
.
.
# FOR PDB WEB SERVICES
require 'rubygems'
gem 'soap4r'
require 'driver.rb'
.
.
.
Again, the error occurs whenever the require 'driver.rb' line is included. That file resides at my RAILS_ROOT, and starts with:
require 'default.rb'
require 'MappingRegistry.rb'
require 'soap/rpc/driver'
.
.
.
The files default.rb and MappingRegistry.rb are also in my RAILS_ROOT. Any thoughts why this works from the console but not as part of a FCGI process?
-cal