+1

Flex config

So I needed to move some samples of code onto a real world box. The code I needed to move was simple enough and can be seen here:

http://tutorial3.flexcf.com/

The example was working perfectly locally but as soon as I tried it from the remote server I was having a few issues.

After pulling my hair out for some time I showed my boss who had an idea. It was the remoting-config.mxl file that was the culprit. Someone here had changed the property case to force lower case. We can't actually remember doing this but it was very frustrating. The exact issue was the label fields in the combo boxes.  I was using the case from the sample CF databases ( upper ) but CF was returning all lower case values.  Just something to look out for.

Here is the correct block of code:

<property-case>
                <!-- cfc property names -->
                <force-cfc-lowercase>false</force-cfc-lowercase>
                <!-- Query column names -->
                <force-query-lowercase>false</force-query-lowercase>
                <!-- struct keys -->
                <force-struct-lowercase>false</force-struct-lowercase>
</property-case>


Search