I ran this and it showed RDS as true but I still get the IO error when I browse for a database in the admin etc.
Thanks, Patrick J. Hedgepath Pegasus Web Productions [EMAIL PROTECTED] 803-996-0578 -----Original Message----- From: Vamseekrishna Manneboina [mailto:[EMAIL PROTECTED] Sent: Wednesday, April 16, 2008 5:28 AM To: CF-Talk Subject: RE: IO error on server communication You could use the admin API to enable RDS. Run the following script (replace {admin_pwd} with your CF Admin password) and restart your server. <cfset admin = createObject("component","CFIDE.adminapi.administrator")> <cfset security = createObject("component","CFIDE.adminapi.security")> <cfset admin.login("{admin_pwd}")> <cfset isRDSEnabled = security.getEnableRDS()> <cfoutput>Is RDS Enabled : #isRDSEnabled#</cfoutput> <cfif not isRDSEnabled> <cfset security.setEnableRDS(true)> <cfset isRDSEnabled = security.getEnableRDS()> <cfoutput><br>Is RDS Enabled : #isRDSEnabled#</cfoutput> </cfif> <cfset admin.logout()> Thanks, Vamsee -----Original Message----- From: Cutter (CFRelated) [mailto:[EMAIL PROTECTED] Sent: Wednesday, April 16, 2008 1:14 PM To: CF-Talk Subject: Re: IO error on server communication Did you verify that the RDS ports are open on your firewall? Can't remember what they are off the top of my head... Steve "Cutter" Blades Adobe Certified Professional Advanced Macromedia ColdFusion MX 7 Developer _____________________________ http://blog.cutterscrossing.com [EMAIL PROTECTED] wrote: > I checked the web.xml file and according to it RDS is enabled. > > Thanks, > Patrick J. Hedgepath > Pegasus Web Productions > [EMAIL PROTECTED] > 803-996-0578 > > > > > > -----Original Message----- > From: James Holmes [mailto:[EMAIL PROTECTED] > Sent: Tuesday, April 15, 2008 10:42 PM > To: CF-Talk > Subject: Re: IO error on server communication > > Yes, RDS is not enabled on the server. You can enable it by editing > the appropriate file - I can't recall which but a search should turn > it up. > > On Wed, Apr 16, 2008 at 10:34 AM, <[EMAIL PROTECTED]> wrote: >> I am getting this "IO error on server communication" when I try to >> browser for a file in the CF administrator. I understand this might > be >> related to RDS and since I cannot seem to connect with RDS either I'm >> pretty sure RDS is the root of my problems. However I'm not sure how > to >> fix it. Anybody run into this on CF 8.0.1 before and know how to fix > it? > ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date Get the Free Trial http://ad.doubleclick.net/clk;192386516;25150098;k Archive: http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:303581 Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

