Strange problem with transfer? the cache? coldbox?

I'm developing an application, with transfer v1.1, coldbox 2.6.4 and
coldspring.

My data model is based on 2 main objects Persons and Networks, that
have a many to many relation through a linking table PersonNet, that
stores the state of the relation (StartDate, EndDate). As I needed to
see all the nets related to a person, and viceversa, I created two
one2many relations: one between person and PersonNet, and the other
between Network and PersonNet.

My problem is, when I'm in the Person's page I can see all Nets
related, but when I'm in the Net's page, the persons related are not
shown... and this only happens in the PRODUCTION site!!

The only thing I can think of trying is removing the .transfer files
from the definitions directory... I've reset the framework a few times
without success :frowning:

Any other ideas?

Pedro.

I forgot to say that the only difference in the configuration of the
two environments are the ones recommended in the config file, and the
datasource. In development:
...
<!--Flag to Auto reload the internal handlers directory listing. False
for production. -->
  <Setting name="HandlersIndexAutoReload" value="true" />
<!--Flag to auto reload the config.xml settings. False for production.
-->
  <Setting name="ConfigAutoReload" value="true" />

These are set to false in the production environment.

Pedro.

Yeap, it was the .transfer files. I removed them all, reset the
framework, and it's now working perfectly!!

Is there a way to prevent this, or should I just delete the .transfer
files every time I update the site?

Pedro.