Debugging with ConduitRun ColdFusion from the Command LineRunning ColdFusion from the command line will mean you will be able to see any error messages and/or logging calls that occur, which can save valuable hours when debugging with with Conduit. On Linux: {ColdFusionHome}/runtime/bin/jrun start coldfusion & On Windows: {ColdFusionHome}/bin/cfstart.bat On Mac: {ColdFusionHome}/bin/jrun start cfusion (This taken from here, I'm not a mac user, so tell me if I'm wrong) Turn on BlazeDS Logging
<logging>
<target class="flex.messaging.log.ConsoleTarget" level="Info">
<properties>
<prefix>[BlazeDS] </prefix>
<includeDate>false</includeDate>
<includeTime>false</includeTime>
<includeLevel>false</includeLevel>
<includeCategory>false</includeCategory>
</properties>
<filters>
<pattern>Endpoint.*</pattern>
<pattern>Service.*</pattern>
<pattern>Configuration</pattern>
<pattern>Message.*</pattern>
</filters>
</target>
</logging>
[BlazeDS]Conduit: ColdFusion Adapter initialised.
in the ColdFusion startup log, in case you were wondering if Conduit had been installed correctly. |