Exit
  • Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
  • 한국 커뮤니티
0

Force use of accessors? (getters & setters)

New Here ,
Sep 17, 2012 Sep 17, 2012

How to prevent/detect the incorrect direct use of properies in cf9 e.g.

aPerson.FirstName = "Rumplestiltskin";

...when a component is rewritten to use accessors e.g.

aPerson.setFirstName("Rumplestiltskin");

e.g. a component is changed from...

Component Person  {

    property name="FirstName" type="string";

}

...to...

Component Person accessors="true" {

    property name="FirstName" type="string" getter="true" setter="true";

}

1) Is it possible to prevent the propeties being set directly?

e.g. This should cause an error:

aPerson.FirstName = "Rumplestiltskin";

In practice, properties can still be set directly even though the component has declared that accessors should be used.  I want to make this illegal im my app.

2) Is it possible to prevent the use of undeclared properties?

e.g. This should cause an error:

aPerson.ChristianName = "Rumplestiltskin"; // non-existent property

or

aPerson.furstname = "Rumplestiltskin"; // Mis-spelt property

In practice, properties can be set even if they don't exist.  I want to make this illegal im my app.

3) Is it possible to intercept the direct use of properties

e.g. when this is executed...

aPerson.FirstName = "Rumplestiltskin";

..the function aPerson.setFirstName() is called

This would make it possible to solve 1), or better still, make the app backwardly compatible.

When an app is rewritten to use accessors, I don't want to have to change every instance of

aPerson.FirstName = "Rumplestiltskin";

...to...

aPerson.setFirstName("Rumplestiltskin");

...or at least, I want to be told if I've missed one.

Thanks,

Julian

1.3K
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Adobe Employee ,
Sep 17, 2012 Sep 17, 2012

Hi

Is that what you can reproduce at your end ? If yes then please provide below information:

1. Test case with the code to reproduce the error.

2. Server settings summary

3. Environment such as Operating system details, Web Server details.

Swaraj

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
New Here ,
Sep 17, 2012 Sep 17, 2012

Hi AlbusTeck

I'm using cf9.0.0 with IIS7 on Windows 7.

I'll post server settings in a seperate reply.

Code sample follows:

testcomponent.cfc:

Component testComponent accessors="true" {

    property name="FirstName" type="string" getter="true" setter="true";

}

testcomponent.cfm:

<cfscript>

    person = createObject("component", "testComponent");

    writeOutput("<h1>1) Setting property directly doesn't cause an error, even though accessors should be used</h1>");

    person.FirstName = "Rumplestiltskin";

    writeOutput("person.FirstName returns: #person.FirstName#<br/>");

    writeOutput("<h1>2) Setting undefined property directly doesn't cause an error</h1>");

    person.Whatever = "Wah?";

    writeOutput("person.Whatever : #person.Whatever#<br/>");

</cfscript>

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
New Here ,
Sep 17, 2012 Sep 17, 2012
System Information
Server Details
Server Product ColdFusion
Version 9,0,0,251028  
Edition Developer  
Operating System Windows 7  
OS Version 6.1  
Adobe Driver Version 4.0 (Build 0005)  

JVM Details
Java Version 1.6.0_14  
Java Vendor Sun Microsystems Inc.  
Java Vendor URL http://java.sun.com/  
Java Home C:\ColdFusion9\runtime\jre  
Java File Encoding Cp1252  
Java Default Locale en_GB  
File Separator \  
Path Separator ;  
Line Separator Chr(13)  
User Name XXXX
User Home C:\  
User Dir C:\ColdFusion9\runtime\bin  
Java VM Specification Version 1.0  
Java VM Specification Vendor Sun Microsystems Inc.  
Java VM Specification Name Java Virtual Machine Specification  
Java VM Version 14.0-b16  
Java VM Vendor Sun Microsystems Inc.  
Java VM Name Java HotSpot(TM) Server VM  
Java Specification Version 1.6  
Java Specification Vendor Sun Microsystems Inc.  
Java Specification Name Java Platform API Specification  
Java Class Version 50.0  
CF Server Java Class Path ;C:/ColdFusion9/runtime/../lib/activation.jar;  C:/ColdFusion9/runtime/../lib/ant-launcher.jar;  C:/ColdFusion9/runtime/../lib/ant.jar;  C:/ColdFusion9/runtime/../lib/antlr-2.7.6.jar;  C:/ColdFusion9/runtime/../lib/apache-solr-core.jar;  C:/ColdFusion9/runtime/../lib/apache-solr-solrj.jar;  C:/ColdFusion9/runtime/../lib/asn1.jar;  C:/ColdFusion9/runtime/../lib/axis.jar;  C:/ColdFusion9/runtime/../lib/backport-util-concurrent.jar;  C:/ColdFusion9/runtime/../lib/bcel.jar;  C:/ColdFusion9/runtime/../lib/bcmail-jdk14-139.jar;  C:/ColdFusion9/runtime/../lib/bcprov-jdk14-139.jar;  C:/ColdFusion9/runtime/../lib/cdo.jar;  C:/ColdFusion9/runtime/../lib/cdohost.jar;  C:/ColdFusion9/runtime/../lib/certj.jar;  C:/ColdFusion9/runtime/../lib/cf-acrobat.jar;  C:/ColdFusion9/runtime/../lib/cf-assembler.jar;  C:/ColdFusion9/runtime/../lib/cf-logging.jar;  C:/ColdFusion9/runtime/../lib/cf4was.jar;  C:/ColdFusion9/runtime/../lib/cf4was_ae.jar;  C:/ColdFusion9/runtime/../lib/cfusion-req.jar;  C:/ColdFusion9/runtime/../lib/cfusion.jar;  C:/ColdFusion9/runtime/../lib/clibwrapper_jiio.jar;  C:/ColdFusion9/runtime/../lib/commons-beanutils-1.8.0.jar;  C:/ColdFusion9/runtime/../lib/commons-codec-1.3.jar;  C:/ColdFusion9/runtime/../lib/commons-collections-3.2.1.jar;  C:/ColdFusion9/runtime/../lib/commons-digester-2.0.jar;  C:/ColdFusion9/runtime/../lib/commons-discovery-0.4.jar;  C:/ColdFusion9/runtime/../lib/commons-httpclient-3.1.jar;  C:/ColdFusion9/runtime/../lib/commons-lang-2.4.jar;  C:/ColdFusion9/runtime/../lib/commons-logging-1.1.1.jar;  C:/ColdFusion9/runtime/../lib/commons-logging-api-1.1.1.jar;  C:/ColdFusion9/runtime/../lib/commons-net-2.0.jar;  C:/ColdFusion9/runtime/../lib/commons-vfs-1.0.jar;  C:/ColdFusion9/runtime/../lib/crystal.jar;  C:/ColdFusion9/runtime/../lib/derby.jar;  C:/ColdFusion9/runtime/../lib/derbyclient.jar;  C:/ColdFusion9/runtime/../lib/derbynet.jar;  C:/ColdFusion9/runtime/../lib/derbyrun.jar;  C:/ColdFusion9/runtime/../lib/derbytools.jar;  C:/ColdFusion9/runtime/../lib/dom4j-1.6.1.jar;  C:/ColdFusion9/runtime/../lib/ehcache-web.jar;  C:/ColdFusion9/runtime/../lib/ehcache.jar;  C:/ColdFusion9/runtime/../lib/FCSj.jar;  C:/ColdFusion9/runtime/../lib/flashgateway.jar;  C:/ColdFusion9/runtime/../lib/flex-messaging-common.jar;  C:/ColdFusion9/runtime/../lib/flex-messaging-core.jar;  C:/ColdFusion9/runtime/../lib/flex-messaging-opt.jar;  C:/ColdFusion9/runtime/../lib/flex-messaging-proxy.jar;  C:/ColdFusion9/runtime/../lib/flex-messaging-remoting.jar;  C:/ColdFusion9/runtime/../lib/geronimo-stax-api_1.0_spec-1.0.jar;  C:/ColdFusion9/runtime/../lib/hibernate3.jar;  C:/ColdFusion9/runtime/../lib/httpclient.jar;  C:/ColdFusion9/runtime/../lib/ib6addonpatch.jar;  C:/ColdFusion9/runtime/../lib/ib6core.jar;  C:/ColdFusion9/runtime/../lib/ib6http.jar;  C:/ColdFusion9/runtime/../lib/ib6swing.jar;  C:/ColdFusion9/runtime/../lib/ib6util.jar;  C:/ColdFusion9/runtime/../lib/im.jar;  C:/ColdFusion9/runtime/../lib/iText.jar;  C:/ColdFusion9/runtime/../lib/iTextAsian.jar;  C:/ColdFusion9/runtime/../lib/izmado.jar;  C:/ColdFusion9/runtime/../lib/jai_codec.jar;  C:/ColdFusion9/runtime/../lib/jai_core.jar;  C:/ColdFusion9/runtime/../lib/jai_imageio.jar;  C:/ColdFusion9/runtime/../lib/jakarta-oro-2.0.6.jar;  C:/ColdFusion9/runtime/../lib/jakarta-slide-webdavlib-2.1.jar;  C:/ColdFusion9/runtime/../lib/java2wsdl.jar;  C:/ColdFusion9/runtime/../lib/jax-qname.jar;  C:/ColdFusion9/runtime/../lib/jaxb-api.jar;  C:/ColdFusion9/runtime/../lib/jaxb-impl.jar;  C:/ColdFusion9/runtime/../lib/jaxb-libs.jar;  C:/ColdFusion9/runtime/../lib/jaxb-xjc.jar;  C:/ColdFusion9/runtime/../lib/jaxrpc.jar;  C:/ColdFusion9/runtime/../lib/jdom-1.0.jar;  C:/ColdFusion9/runtime/../lib/jeb.jar;  C:/ColdFusion9/runtime/../lib/jintegra.jar;  C:/ColdFusion9/runtime/../lib/jnbcore.jar;  C:/ColdFusion9/runtime/../lib/jpedal.jar;  C:/ColdFusion9/runtime/../lib/js.jar;  C:/ColdFusion9/runtime/../lib/jsch-0.1.41m.jar;  C:/ColdFusion9/runtime/../lib/jsr107cache.jar;  C:/ColdFusion9/runtime/../lib/jutf7-0.9.0.jar;  C:/ColdFusion9/runtime/../lib/ldap.jar;  C:/ColdFusion9/runtime/../lib/ldapbp.jar;  C:/ColdFusion9/runtime/../lib/log4j-1.2.15.jar;  C:/ColdFusion9/runtime/../lib/lucene-analyzers.jar;  C:/ColdFusion9/runtime/../lib/lucene.jar;  C:/ColdFusion9/runtime/../lib/lucenedemo.jar;  C:/ColdFusion9/runtime/../lib/macromedia_drivers.jar;  C:/ColdFusion9/runtime/../lib/mail.jar;  C:/ColdFusion9/runtime/../lib/metadata-extractor-2.4.0-beta-1.jar;  C:/ColdFusion9/runtime/../lib/mlibwrapper_jai.jar;  C:/ColdFusion9/runtime/../lib/msapps.jar;  C:/ColdFusion9/runtime/../lib/mysql-connector-java-commercial-5.1.7-bin.jar;  C:/ColdFusion9/runtime/../lib/namespace.jar;  C:/ColdFusion9/runtime/../lib/nekohtml.jar;  C:/ColdFusion9/runtime/../lib/ooxml-schemas.jar;  C:/ColdFusion9/runtime/../lib/pdfencryption.jar;  C:/ColdFusion9/runtime/../lib/poi-contrib.jar;  C:/ColdFusion9/runtime/../lib/poi-ooxml.jar;  C:/ColdFusion9/runtime/../lib/poi-scratchpad.jar;  C:/ColdFusion9/runtime/../lib/poi.jar;  C:/ColdFusion9/runtime/../lib/portlet_20.jar;  C:/ColdFusion9/runtime/../lib/postgresql-8.3-604.jdbc3.jar;  C:/ColdFusion9/runtime/../lib/relaxngDatatype.jar;  C:/ColdFusion9/runtime/../lib/ri_generic.jar;  C:/ColdFusion9/runtime/../lib/rome-cf.jar;  C:/ColdFusion9/runtime/../lib/saaj.jar;  C:/ColdFusion9/runtime/../lib/slf4j-api-1.5.6.jar;  C:/ColdFusion9/runtime/../lib/slf4j-log4j12-1.5.6.jar;  C:/ColdFusion9/runtime/../lib/smack.jar;  C:/ColdFusion9/runtime/../lib/smpp.jar;  C:/ColdFusion9/runtime/../lib/STComm.jar;  C:/ColdFusion9/runtime/../lib/tools.jar;  C:/ColdFusion9/runtime/../lib/tt-bytecode.jar;  C:/ColdFusion9/runtime/../lib/vadmin.jar;  C:/ColdFusion9/runtime/../lib/verity.jar;  C:/ColdFusion9/runtime/../lib/vparametric.jar;  C:/ColdFusion9/runtime/../lib/vsearch.jar;  C:/ColdFusion9/runtime/../lib/wc50.jar;  C:/ColdFusion9/runtime/../lib/webchartsJava2D.jar;  C:/ColdFusion9/runtime/../lib/wsdl2java.jar;  C:/ColdFusion9/runtime/../lib/wsdl4j-1.5.1.jar;  C:/ColdFusion9/runtime/../lib/wsrp4j-commons-0.5-SNAPSHOT.jar;  C:/ColdFusion9/runtime/../lib/wsrp4j-producer.jar;  C:/ColdFusion9/runtime/../lib/xalan.jar;  C:/ColdFusion9/runtime/../lib/xercesImpl.jar;  C:/ColdFusion9/runtime/../lib/xml-apis.jar;  C:/ColdFusion9/runtime/../lib/xmlbeans-2.3.0.jar;  C:/ColdFusion9/runtime/../lib/xmpcore.jar;  C:/ColdFusion9/runtime/../lib/xsdlib.jar;  C:/ColdFusion9/runtime/../lib/;  C:/ColdFusion9/runtime/../gateway/lib/examples.jar;  C:/ColdFusion9/runtime/../gateway/lib/;  C:/ColdFusion9/runtime/../wwwroot/WEB-INF/cfform/jars/batik-awt-util.jar;  C:/ColdFusion9/runtime/../wwwroot/WEB-INF/cfform/jars/batik-css.jar;  C:/ColdFusion9/runtime/../wwwroot/WEB-INF/cfform/jars/batik-ext.jar;  C:/ColdFusion9/runtime/../wwwroot/WEB-INF/cfform/jars/batik-transcoder.jar;  C:/ColdFusion9/runtime/../wwwroot/WEB-INF/cfform/jars/batik-util.jar;  C:/ColdFusion9/runtime/../wwwroot/WEB-INF/cfform/jars/commons-discovery.jar;   C:/ColdFusion9/runtime/../wwwroot/WEB-INF/cfform/jars/commons-logging.jar;  C:/ColdFusion9/runtime/../wwwroot/WEB-INF/cfform/jars/concurrent.jar;  C:/ColdFusion9/runtime/../wwwroot/WEB-INF/cfform/jars/flex.jar;  C:/ColdFusion9/runtime/../wwwroot/WEB-INF/cfform/jars/jakarta-oro-2.0.7.jar;  C:/ColdFusion9/runtime/../wwwroot/WEB-INF/cfform/jars/jcert.jar;  C:/ColdFusion9/runtime/../wwwroot/WEB-INF/cfform/jars/jnet.jar;  C:/ColdFusion9/runtime/../wwwroot/WEB-INF/cfform/jars/jsse.jar;  C:/ColdFusion9/runtime/../wwwroot/WEB-INF/cfform/jars/oscache.jar;  C:/ColdFusion9/runtime/../wwwroot/WEB-INF/cfform/jars/;  C:/ColdFusion9/runtime/../wwwroot/WEB-INF/flex/jars/cfgatewayadapter.jar;  C:/ColdFusion9/runtime/../wwwroot/WEB-INF/flex/jars/concurrent.jar;  C:/ColdFusion9/runtime/../wwwroot/WEB-INF/flex/jars/;  
Java Class Path C:\ColdFusion9\runtime\servers\lib;
C:\ColdFusion9\runtime\servers\lib\jrun-patch.jar;
C:\ColdFusion9\runtime\..\lib\macromedia_drivers.jar;
C:\ColdFusion9\runtime\lib\cfmx_mbean.jar;
C:\ColdFusion9\runtime\..\lib\oosdk\classes;
C:\ColdFusion9\runtime\..\lib\oosdk\lib;
C:\ColdFusion9\runtime\..\lib\oosdk\lib\juh.jar;
C:\ColdFusion9\runtime\..\lib\oosdk\lib\jurt.jar;
C:\ColdFusion9\runtime\..\lib\oosdk\lib\ridl.jar;
C:\ColdFusion9\runtime\..\lib\oosdk\lib\unoil.jar;
C:\ColdFusion9\runtime\lib;
C:\ColdFusion9\runtime\lib\cfmx_mbean.jar;
C:\ColdFusion9\runtime\lib\instutil.jar;
C:\ColdFusion9\runtime\lib\java2wsdl.jar;
C:\ColdFusion9\runtime\lib\jrun-ant-tasks.jar;
C:\ColdFusion9\runtime\lib\jrun-xdoclet.jar;
C:\ColdFusion9\runtime\lib\jrun.jar;
C:\ColdFusion9\runtime\lib\jspc.jar;
C:\ColdFusion9\runtime\lib\migrate.jar;
C:\ColdFusion9\runtime\lib\oem-xdoclet.jar;
C:\ColdFusion9\runtime\lib\sniffer.jar;
C:\ColdFusion9\runtime\lib\webservices.jar;
C:\ColdFusion9\runtime\lib\wsconfig.jar;
C:\ColdFusion9\runtime\lib\wsdl2java.jar;
C:\ColdFusion9\runtime\lib\xmlscript.jar;
C:\ColdFusion9\runtime\lib\jrun.jar  
Java Ext Dirs C:\ColdFusion9\runtime\jre\lib\ext;C:\Windows\Sun\Java\lib\ext  
Printer Details
Default Printer
Printers Microsoft XPS Document Writer
Fax
 

Server Information
General Settings
Timeout requests Yes  
Enable Per App Settings Yes  
Request Time Limit 3600 seconds 
Use UUID for CFToken No  
Enable Whitespace Management Yes  
Disable Service Factory No  
Protect serialized JSON No  
Protect Serialized JSON Prefix //  
Missing Template Handler
Site-wide Error Handler
Enable HTTP status codes Yes  
Enable Global Script Protection Yes  
Default CFForm ScriptSrc Directory /CFIDE/scripts/  
Google Map Key
Maximum size of post data 100 MB 
Request Throttle Threshold 4 MB 
Request Throttle Memory 200 MB 
Request Tuning
Simultaneous request limit 10  
Flash Remoting request limit 5  
Web Service request limit 5  
CFC request limit 10  
CFThread Pool Size 10  
Maximum number of report threads 8  
Request Queue Timeout 60 seconds 
Request Queue Timeout Page
Maximum number of running JRun threads 50  
Maximum number of queued JRun threads 1000  
Caching
Template cache size 1024 templates 
Enable trusted cache No  
Cached query limit 100
Save Class Files Yes  
Cache web server paths No
Client Variable Settings
Default client variable store Registry  
Client Stores
Registry  
Type REGISTRY  
Description System registry.   
Purge data after time limit Yes  
Time limit 90 days 
Disable global updates No  
Cookie  
Type COOKIE  
Description Client based text file.   
Purge data after time limit Yes  
Time limit 10 days 
Disable global updates No  
Memory Variables
J2EE Sessions No  
Application Variables
Enable Application Variables Yes  
Default Timeout 2,0,0,0  
Maximum Timeout 2,0,0,0  
Session Variables
Enable session variables Yes  
Default Timeout 0,0,20,0  
Maximum Timeout 2,0,0,0  
ColdFusion Mappings
/gateway   C:\ColdFusion9\gateway\cfc  
/CFIDE   C:\inetpub\wwwroot\CFIDE  
Mail Connection Settings
Default Server Port 587  
Connection Timeout 60 seconds 
Spool Interval 15 seconds
Mail Delivery Threads 10  
Maintain Connection to Mail Server No  
Spool Messages To disk
Max Messages Spooled to Memory 50000  
Default CFMail Charset UTF-8  
Use SSL Connection No  
Use TLS Yes  
Default Mail Server
smtp.gmail.com  
Server smtp.gmail.com  
Port 587  
Username XXXX
Password not shown  
Mail Logging Settings
Log Severity warning  
Log all E-mail messages sent by ColdFusion No  
Charting
Cache Type disk images 
Maximum number of images in cache 50 images 
Maximum number of charting threads 4  
Disk cache location C:\ColdFusion9\charting\cache  
Java and JVM
Java virtual machine path C:/ColdFusion9/runtime/jre  
Initial memory size MB
Maximum memory size 512 MB
Class path   -Dcoldfusion.classPath={application.home}/../lib/updates,{application.home}/../lib,{application.home}/../gateway/lib/,{application.home}/../wwwroot/WEB-INF/cfform/jars,{application.home}/../wwwroot/WEB-INF/flex/jars  
JVM arguments -server -Dsun.io.useCanonCaches=false -XX:MaxPermSize=192m -XX:+UseParallelGC -Dcoldfusion.rootDir={application.home}/../ -Dcoldfusion.libPath={application.home}/../lib  

Debugging & Logging
Debugging Settings
Enable debugging Yes  
Enable Robust Exception Information Yes  
Display format classic.cfm  
Execution times Yes  
Execution time format summary  
Execution time highlight threshold 250 ms
Database activity Yes  
Exception information Yes  
Tracing information Yes  
Timer Information Yes  
Variables Yes  
Variables
Application Yes  
CGI Yes  
Client Yes  
Cookie Yes  
Form Yes  
Request Yes  
Server Yes  
Session Yes  
URL Yes  
Debugging IP Addresses
Debugging IP Address Restrictions 127.0.0.1
0:0:0:0:0:0:0:1  
Line Debugger Settings
Allow Line Debugging NO  
Debugger Port 5005  
Max Simultaneous Debugging Sessions 5  
Logging Settings
Log directory C:\ColdFusion9\logs  
Maximum file size 5000 KB
Maximum number of archives 10  
Log slow pages No  
Slow page time limit 30 seconds 
Log CORBA calls No  
Log scheduled tasks No  

Schedule Tasks & Probes
Scheduled Tasks
System Probes

Extensions  
Java Applets
CFX Tags
Custom Tag Paths
C:\ColdFusion9/CustomTags  
CORBA
Selected connector   [ none]   
Connectors

Event Gateways
Settings
Enable Event Gateway Yes  
Thread Pool Size 1  
Max Queue Size 10  
Gateway Types
SMS  
Description Handles SMS text messaging  
Class coldfusion.eventgateway.sms.SMSGateway  
Timeout 30 seconds  
Kill On Timeout Yes  
XMPP  
Description Handles XMPP instant messaging  
Class coldfusion.eventgateway.im.XMPPGateway  
Timeout 30 seconds 
Kill On Timeout Yes  
SAMETIME  
Description Handles Lotus SAMETIME instant messaging  
Class coldfusion.eventgateway.im.SAMETIMEGateway  
Timeout 30 seconds  
Kill On Timeout Yes  
DirectoryWatcher  
Description Watches a directory for file changes  
Class examples.watcher.DirectoryWatcherGateway  
Timeout 30 seconds 
Kill On Timeout Yes  
Socket  
Description Listens on a socket  
Class examples.socket.SocketGateway  
Timeout 30 seconds  
Kill On Timeout Yes  
CFML  
Description Handles asynchronous events through CFCs  
Class coldfusion.eventgateway.cfml.CfmlGateway  
Timeout 30 seconds 
Kill On Timeout Yes  
JMS  
Description Handles Java Messaging Service messages  
Class examples.JMS.JMSGateway  
Timeout 30 seconds  
Kill On Timeout Yes  
ActiveMQ  
Description Handles Apache ActiveMQ JMS messages  
Class examples.ActiveMQ.JMSGateway  
Timeout 30 seconds 
Kill On Timeout Yes  
DataServicesMessaging  
Description Handles Data Services Messaging messages  
Class coldfusion.eventgateway.flex.FlexMessagingGateway  
Timeout 30 seconds  
Kill On Timeout No  
FMS  
Description Handles Flash Media Server shared objects  
Class coldfusion.eventgateway.fms.FMSGateway  
Timeout 30 seconds 
Kill On Timeout Yes  
DataManagement  
Description Notifies Data Management Services of data changes  
Class coldfusion.eventgateway.flex.FlexDataManagementGateway  
Timeout 30 seconds  
Kill On Timeout Yes  

Security
CF Admin Authentication
Enable authentication for the ColdFusion Administrator Yes  
Allow access to ColdFusion Administrator with a Single password Yes  
RDS Authentication
Enable authentication for RDS access Yes  
Allow access through RDS with Single password Yes  
Security Sandboxes
Enable ColdFusion Security No  
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
New Here ,
Sep 18, 2012 Sep 18, 2012
LATEST

Hi Swaraj

> Is that what you can reproduce at your end?

Are you saying that using an undefined property should raise an error?

Thanks,

Julian

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Resources