Ask a Question related to Coldfusion - Getting Started, Design and Development.

  1. #1

    Default RDS

    We are running W2K3 server, CFMX 6 and SQL2K. When I try to disable RDS (as
    explained in CF Technote: Disabling/enabling ColdFusion RDS on production
    servers), our website becomes unreachable and we get the following error: "JRun
    Servlet Error" "500 There is no web application configured to service your
    request". Is there anything else that needs to be modified to disable the RDS?
    Thanks in advance!!

    Aiops Guest

  2. #2

    Default Re: RDS

    That's all you should need to do. I would make a backup copy of the web.xml
    file before editing it because it's easy to cause problems with the server if
    not edited properly. Also I would edit the file using either notepad or
    wordpad as some programs might add special charcters to the file that will also
    cause problems.

    HTH

    Ted Zimmerman

    tzimmerman Guest

  3. #3

    Default Re: RDS

    Thanks for your input!
    Aiops Guest

  4. #4

    Default RDS

    We are running CFMX7 on a Windows 2003 server. To date I have been
    unsuccessful at enabling RDS. I have followed the instructions to enable RDS
    by uncommenting the servlet-mapping code found in web.xml. I also restarted
    all of the CF services as instructed after that file was saved. What happens
    is that I still get that "IO Error On Server Communication" error.

    Note that I run the developer version of CFMX7 on my PC and when I uncomment
    that very same code in the local copy of web.xml the java applet works and I am
    able to browse the local disks. Anyone have trouble shooting tips for my
    server problem? Thanks!

    NVL-Tom Guest

  5. #5

    Default Re: RDS

    Make sure that both the servelet definition and servlet-mapping are uncommented
    in the web.xml file:

    <!-- begin RDS -->
    <servlet id="macromedia_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>
    <!-- end RDS -->

    <!-- begin RDS -->
    <servlet-mapping id="macromedia_mapping_9">
    <servlet-name>RDSServlet</servlet-name>
    <url-pattern>/CFIDE/main/ide.cfm</url-pattern>
    </servlet-mapping>
    <!-- end RDS -->


    tzimmerman Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139