Displaying 1 result from an estimated 1 matches for "navigablestring".
2007 Aug 30
0
No method exception - figured it out
I had to dig through the source and do a lot of debug printing, but I
figured out that because I was using NavigableString objects generated from
RubyfulSoup parsing lib, instead of String, the drb server was not properly
unmarshalling the object.
I fixed it by calling to_s on all my strings.
ActiveRecord and the local ferret server handled this fine, but the remote
one chokes.
The error was masked twice by the exce...