Specifications

© 2013 Adobe Systems Incorporated and its licensors. All rights reserved.
4.
c.
d.
5.
1.
2.
3.
4.
5.
nameserv namingroot
Note
The name of the Naming Service (namingroot in the previous example) must
match the value for SVCnameroot in the vbjorb.properties file.
Start Visibroker on your CORBA server.For more information, see the Borland Visibroker
documentation.
Restart ColdFusion for your changes to take effect.
For more information, see Managing ColdFusion services in Windows and Managing the ColdFusion
process in UNIX.
You can now make CORBA invocations from ColdFusion. For more information about integrating
CORBA objects into ColdFusion, see the guide.Developing ColdFusion Applications
#back to top
Disabling Remote Development Services
If you use Adobe Dreamweaver, Macromedia HomeSite, Adobe Flash Builder, or Eclipse to develop your
applications, you can access a remote ColdFusion server using HTTP. However, you must configure Remote
Development Services (RDS) in your integrated development environment (IDE), and RDS must be enabled
in ColdFusion. Using RDS, IDE users can securely access remote files and data sources, build SQL queries
from these data sources, and debug CFML code.
Note
The ColdFusion Report Builder uses RDS for the Query Builder and for charting support.
However, for security reasons, Adobe recommends that you disable RDS on a production server. To disable
it, disable the RDSServlet mapping.
Disable the RDSServlet mapping
Back up the web.xml file. This file is in the \cfusion\wwwroot\WEB-INF directory in Windows andcf_root
in the _cf_root/_cfusion/wwwroot/WEB-INF directory in UNIX.
Open the original web.xml file for editing.
Comment out the RDSServlet mapping, as the following example shows:
<!--
<servlet id="coldfusion_servlet_8789">
<servlet-name>RDSServlet</servlet-name>
<display-name>RDS Servlet</display-name>
<servlet-class>coldfusion.bootstrap.BootstrapServlet</servlet-class>
<init-param id="InitParam_103401311065856789">
<param-name>servlet.class</param-name>
<param-value>coldfusion.rds.RdsFrontEndServlet</param-value>
</init-param>
</servlet>
-->
Save the file.