ColdFire 1.3.187.187
The latest version of ColdFire has one new feature and a few bug fixes. From the release notes:
- added Copy SQL context menu option.
- fixed issue with reported start and end times with enhanced trace tag.
- changed CFAJAX JS injection so that more requests can be debugged.
- fixed issue with build that resulted in corrupted image files.

To debug <CFAJAXPROXY> tags, what edits must I make to the Coldspring configuration below for my application? To what directory should I copy the Coldspring configuration? What filename should I assign to the Coldspring configuration? What file extension should I assign to the Coldspring configuration's filename? Coldspring.XML?
The dot notation below includes a 'myapp' prefix. Should I replace the 'myapp' prefix with my ColdFusion application's name? Must I instantiate these beans in my ColdFusion code?
To what directory should I copy ColdFireAdvice.cfc?
(The XML below appears in install.txt in the .zip for ColdFire 1.3.187.187.)
<beans>
<bean
id="service"
class="myapp.service" />
<bean
id="remoteService"
class="coldspring.aop.framework.RemoteFactoryBean"
lazy-init="false">
<property name="target">
<ref bean="service" />
</property>
<property name="serviceName">
<value>remoteService</value>
</property>
<property name="relativePath">
<value>/remote</value>
</property>
<property name="remoteMethodNames">
<value>*</value>
</property>
<property name="beanFactoryName">
<value>beanFactory</value>
</property>
<property name="interceptorNames">
<list>
<value>coldfireAdvisor</value>
</list>
</property>
</bean>
<bean
id="coldfireAdvice"
class="coldfire.ColdFireAdvice" />
<bean
id="coldfireAdvisor"
class="coldspring.aop.support.NamedMethodPointcutAdvisor">
<property name="advice">
<ref bean="coldfireAdvice" />
</property>
<property name="mappedNames">
<value>*</value>
</property>
</bean>
</beans>
Can the Coldfire custom trace.cfm tag dump a structure to the Traces panel?
Thanks!
Mike
I've just tried to get this version of Coldfire working but I'm finding that as soon as the extension is added Firebug refuses to open when I click the icon. As soon as I disable Coldfire, Firebug opens as expected.
I've setup coldfire.cfm as the debugging template in CF administrator.
I'm running V1.2.0a30X of Firebug.
Any ideas what could be causing the conflict?
Thanks for the very quick response.
I should really have checked for the latest version of Firebug! I did an update check in the extensions panel but it didn't find anything annoyingly. I should have done a search though.
Thanks again.