Why is it that nothing is ever like they say it is?

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

  1. #1

    Default Why is it that nothing is ever like they say it is?

    DWMX 04, CFMX 6.1 built in webserver, MySQL.
    Okay, I am trying to hook up to my db in DW MX04 and it is wanting an
    RDS login. Don't have one, can't figure out how to give it one. So I
    figure I will make CF not have an RDS password. Well, the CF help says
    it is under Security. Can't find it there, all I have is Admin Password
    and Sandbox Security. Okay I figure I will run a Settings Summary to see
    what I see. Sure enough, Use RDS Password is set to yes. So, since I
    can't find a place to disable the RDS password I go to MM.com and find a
    kb article that tells how to disable RDS by commenting out the following
    code in web.xml
    <servlet-mapping>
    <servlet-name>RDSServlet</servlet-name>
    <url-pattern>/CFIDE/main/ide.cfm</url-pattern>
    </servlet-mapping>
    So I think "hey, piece of cake." Guess what, there is no such <servlet
    mapping> tag in my web.xml file. There is:
    <servlet>
    <servlet-name>RDSServlet</servlet-name>
    <servlet-class>coldfusion.rds.RdsFrontEndServlet</servlet-class>
    </servlet>
    But that isn't what they told me to look for and there is no way I am
    going to screw around with this stuff until I know exactly what I need
    to do.

    Need I say help?
    I have done it before on my old computer and never had a problem with
    the RDS login thing that I can remember. What am I missing.

    stillwaiting
    stillwaiting Guest

  2. #2

    Default Re: Why is it that nothing is ever like they say it is?

    > DWMX 04, CFMX 6.1 built in webserver, MySQL.
    > Okay, I am trying to hook up to my db in DW MX04 and it is wanting an
    > RDS login. Don't have one, can't figure out how to give it one. So I
    > figure I will make CF not have an RDS password. Well, the CF help says
    > it is under Security. Can't find it there, all I have is Admin Password
    > and Sandbox Security. Okay I figure I will run a Settings Summary to see
    > what I see. Sure enough, Use RDS Password is set to yes. So, since I
    > can't find a place to disable the RDS password I go to MM.com and find a
    > kb article that tells how to disable RDS by commenting out the following
    > code in web.xml
    > <servlet-mapping>
    > <servlet-name>RDSServlet</servlet-name>
    > <url-pattern>/CFIDE/main/ide.cfm</url-pattern>
    > </servlet-mapping>
    > So I think "hey, piece of cake." Guess what, there is no such <servlet
    > mapping> tag in my web.xml file. There is:
    > <servlet>
    > <servlet-name>RDSServlet</servlet-name>
    > <servlet-class>coldfusion.rds.RdsFrontEndServlet</servlet-class>
    > </servlet>
    > But that isn't what they told me to look for and there is no way I am
    > going to screw around with this stuff until I know exactly what I need
    > to do.
    >
    > Need I say help?
    > I have done it before on my old computer and never had a problem with
    > the RDS login thing that I can remember. What am I missing.
    >
    > stillwaiting
    Let's add a little more info to the equation. This may be a dreamweaver
    problem but since I have started here I won't cross post until I give
    you CF guys a chance.
    When I attempt to specify the RDS Login in the Application panel it give
    me the following error:
    "The server name or address could not be resolved.
    Possible reasons:
    1. The URL specified for this site's testing server may be
    incorrect:[url]http://localhost:8500/findahideaway/[/url]
    2. The testing server may be incorrectly configured (for example, CF may
    not be running).

    That is what it is telling me. I have gone over my site definition
    several times and tried lots of variations and nothing changes it.

    stillwaiting
    stillwaiting Guest

  3. #3

    Default Here Is the answer. I conquered!!!

    After spending hours pulling my hair out and seriously considering
    reinstalling CF I finally figured it out.

    1. Inserted the following code into web.xml
    <servlet-mapping>
    <servlet-name>RDSServlet</servlet-name>
    <url-pattern>/CFIDE/main/ide.cfm</url-pattern>
    </servlet-mapping>
    2. Restarted CF Application Server
    3. Logged into the Admin and viola, RDS Password is now an option under
    Security.
    4. Reset RDS Password (just for good measure)
    5. Went to DW and clicked on specify RDS login. Dialog appeared and took
    password and now it all works.

    MM needs to write up a kb on this.

    stillwaiting
    stillwaiting Guest

  4. #4

    Default Re: Here Is the answer. I conquered!!!

    Let them know -

    [url]http://www.macromedia.com/support/email/wishform/[/url]

    --
    Murray --- ICQ 71997575
    Team Macromedia Volunteer for Dreamweaver
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    [url]http://www.dreamweavermx-templates.com[/url] - Template Triage!
    [url]http://www.projectseven.com/go[/url] - DW FAQs, Tutorials & Resources
    [url]http://www.dwfaq.com[/url] - DW FAQs, Tutorials & Resources
    [url]http://www.macromedia.com/support/search/[/url] - Macromedia (MM) Technotes
    ==================


    "stillwaiting" <agent0011@gmail.com> wrote in message
    news:dj0npb$b2g$1@forums.macromedia.com...
    > After spending hours pulling my hair out and seriously considering
    > reinstalling CF I finally figured it out.
    >
    > 1. Inserted the following code into web.xml
    > <servlet-mapping>
    > <servlet-name>RDSServlet</servlet-name>
    > <url-pattern>/CFIDE/main/ide.cfm</url-pattern>
    > </servlet-mapping>
    > 2. Restarted CF Application Server
    > 3. Logged into the Admin and viola, RDS Password is now an option under
    > Security.
    > 4. Reset RDS Password (just for good measure)
    > 5. Went to DW and clicked on specify RDS login. Dialog appeared and took
    > password and now it all works.
    >
    > MM needs to write up a kb on this.
    >
    > stillwaiting

    Murray *TMM* Guest

  5. #5

    Default Re: Here Is the answer. I conquered!!!

    The closest bug I found was 59546.

    I've run into this too. If you don't configure RDS during install, the
    web.xml entries are left out. To turn it on, you have to edit the web.xml.

    More than a KB, we have to make this easier to use so users can't toggle RDS
    on and OFF and not have to edit files.

    Sorry you had so much trouble.

    Stephen Dupre
    Macromedia QA

    sdupre Guest

  6. #6

    Default Re: Here Is the answer. I conquered!!!

    Was it fixed in 7?
    Well, I imagine there won't be anymore updates to CF 6 in which it could be changed so I think a technote would hit the spot.

    stillwaiting
    > The closest bug I found was 59546.
    >
    > I've run into this too. If you don't configure RDS during install, the
    > web.xml entries are left out. To turn it on, you have to edit the web.xml.
    >
    > More than a KB, we have to make this easier to use so users can't toggle RDS
    > on and OFF and not have to edit files.
    >
    > Sorry you had so much trouble.
    >
    > Stephen Dupre
    > Macromedia QA
    >
    stillwaiting 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