I´m trying to build a Rails 4+ SOAP webservice with the wash_out gem and things look pretty straight forward. What I need is simply output an array of records fetched from a rails model, the complexity comes because my model is actually a MongoDB document with no fields declared. This table can potentially hold any kind of key/value/datatype data that I manage elsewhere in my system.
As I understand, to make use of a ReusableTypes in wash_out you need to specify the field map for that specific type which in my case could be different from one record to another.
Any ideas on how to sort out this scenario?
Thanks!