URLRewriting On but index.cfm shows

69 views
Skip to first unread message

John C. Bland II

unread,
Aug 12, 2010, 2:14:21 PM8/12/10
to cfwh...@googlegroups.com
[insert dead horse]

I'm not understanding why url rewriting is on but my links (not post-click but on hover) show index.cfm/something. If I've told Wheels to use url rewriting, why aren't the links created as /something (no index.cfm).

My links, etc work just fine but I want my underlying technology hidden. No user should see index.cfm and I don't want to outfit the entire site to use href's. I already did so on the main/sub nav but I can't control redirectTo.

I'm running 1.1 Beta 1.

Thoughts?

---
John C. Bland II
http://www.johncblandii.com
http://www.johnandseason.com
http://www.twitter.com/johncblandii
---
Suggested sites:
http://www.lifthimhigh.com - "Christian Products for Those Bold Enough to Wear Them"
http://www.sportsmatchmaker.com - "What are you doing today?"

raulriera

unread,
Aug 12, 2010, 3:36:16 PM8/12/10
to ColdFusion on Wheels
That happens to me once, I did a reload=true and it got sorted out...
You are not "forcing" the URL rewritting right? (there is a setting
for that but it will be "Partial" if the environment doesn't support
full url rewriting)

On Aug 12, 8:14 pm, "John C. Bland II" <johncblan...@gmail.com> wrote:
> [insert dead horse]
>
> I'm not understanding why url rewriting is on but my links (not post-click
> but on hover) show index.cfm/something. If I've told Wheels to use url
> rewriting, why aren't the links created as /something (no index.cfm).
>
> My links, etc work just fine but I want my underlying technology hidden. No
> user should see index.cfm and I don't want to outfit the entire site to use
> href's. I already did so on the main/sub nav but I can't control redirectTo.
>
> I'm running 1.1 Beta 1.
>
> Thoughts?
>
> ---
> John C. Bland IIhttp://www.johncblandii.comhttp://www.johnandseason.comhttp://www.twitter.com/johncblandii
> ---
> Suggested sites:http://www.lifthimhigh.com- "Christian Products for Those Bold Enough to
> Wear Them"http://www.sportsmatchmaker.com- "What are you doing today?"

Risto

unread,
Aug 12, 2010, 5:24:35 PM8/12/10
to ColdFusion on Wheels
John,

What web server & OS are you using? If it's IIS7 what are you using to
do the URL rewriting?



On Aug 12, 2:14 pm, "John C. Bland II" <johncblan...@gmail.com> wrote:
> [insert dead horse]
>
> I'm not understanding why url rewriting is on but my links (not post-click
> but on hover) show index.cfm/something. If I've told Wheels to use url
> rewriting, why aren't the links created as /something (no index.cfm).
>
> My links, etc work just fine but I want my underlying technology hidden. No
> user should see index.cfm and I don't want to outfit the entire site to use
> href's. I already did so on the main/sub nav but I can't control redirectTo.
>
> I'm running 1.1 Beta 1.
>
> Thoughts?
>
> ---
> John C. Bland IIhttp://www.johncblandii.comhttp://www.johnandseason.comhttp://www.twitter.com/johncblandii
> ---
> Suggested sites:http://www.lifthimhigh.com- "Christian Products for Those Bold Enough to
> Wear Them"http://www.sportsmatchmaker.com- "What are you doing today?"

John C. Bland II

unread,
Aug 12, 2010, 10:46:53 PM8/12/10
to cfwh...@googlegroups.com
@Risto
Railo + Tomcat through Apache.

@raul
Are you saying Wheels looks at my environment and decides whether to ignore my "On" setting? If so, that's a horrible convention. Please clarify.
http://www.lifthimhigh.com - "Christian Products for Those Bold Enough to Wear Them"
http://www.sportsmatchmaker.com - "What are you doing today?"


--
You received this message because you are subscribed to the Google Groups "ColdFusion on Wheels" group.
To post to this group, send email to cfwh...@googlegroups.com.
To unsubscribe from this group, send email to cfwheels+u...@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/cfwheels?hl=en.


Gavin McLelland

unread,
Aug 12, 2010, 10:55:26 PM8/12/10
to cfwh...@googlegroups.com
Have you verified your rewrite config as working outside the framework? 

I am thinking rewrite on Tomcat is not setup correctly, sounds like its failing, the framework is still picking it up at the application level and doing partial rewrites. Post your config.

--
Gavin @Fusegrid
--


John C. Bland II

unread,
Aug 12, 2010, 11:01:11 PM8/12/10
to cfwh...@googlegroups.com
@Gavin
See my initial post. My links are showing index.cfm and it shouldn't. I told Wheels to us full url rewriting so linkTo(controller="my", action="life") should automatically make /my/life the url.

Again, I stopped using linkTo for my main/sub nav (using normal a/href's) and those url's work fine so url rewriting is fine. Wheels isn't.

WORKS
<a href="/my/life">Click me</a>

FAILS (by fail I mean it adds index.cfm)
linkTo(controller="my", action="life")

Does that make sense?

---
John C. Bland II
http://www.johncblandii.com
http://www.johnandseason.com
http://www.twitter.com/johncblandii
---
Suggested sites:
http://www.lifthimhigh.com - "Christian Products for Those Bold Enough to Wear Them"
http://www.sportsmatchmaker.com - "What are you doing today?"


Gavin McLelland

unread,
Aug 12, 2010, 11:09:37 PM8/12/10
to cfwh...@googlegroups.com
Makes perfect sense =)

I had the same type of issue happen about a year ago with Tomcat6+Railo+ColdBox. It had to do with my rewrite environment not supporting the QSA Flag (Query String Appends).

But your issue could be a whole other story....

--
Gavin @Fusegrid

John C. Bland II

unread,
Aug 12, 2010, 11:29:01 PM8/12/10
to cfwh...@googlegroups.com
But why would the rewrite engine "assume" to prepend index.cfm to my url's? The engine should only affect the url after it is clicked/accessed.

I'm not saying the rewrite engine isn't the issue. CF9 didn't seem to have this problem. I just don't understand why it would be since Wheels should "request" a proper url from the site.

Mind you...I'm trying to solve the href generation...not the url handling.

As request though...here is my setup.

WEB.XML
    <!-- RAILO -->
    <servlet>
    <servlet-name>GlobalCFMLServlet</servlet-name>
    <description>CFML runtime Engine</description>
    <servlet-class>railo.loader.servlet.CFMLServlet</servlet-class>
    <init-param>
    <param-name>configuration</param-name>
    <param-value>{web-root-directory}/WEB-INF/railo/</param-value>
    <description>Configuraton directory</description>
    </init-param>
    <load-on-startup>1</load-on-startup>
    </servlet>

    <servlet>
    <servlet-name>GlobalAMFServlet</servlet-name>
    <description>AMF Servlet for flash remoting</description>
    <servlet-class>railo.loader.servlet.AMFServlet</servlet-class>
    <load-on-startup>1</load-on-startup>
    </servlet>

    <servlet-mapping>
    <servlet-name>GlobalCFMLServlet</servlet-name>
    <url-pattern>*.cfm</url-pattern>
    </servlet-mapping>

    <servlet-mapping>
    <servlet-name>GlobalCFMLServlet</servlet-name>
    <url-pattern>*.cfml</url-pattern>
    </servlet-mapping>

    <servlet-mapping>
    <servlet-name>GlobalCFMLServlet</servlet-name>
    <url-pattern>*.cfc</url-pattern>
    </servlet-mapping>

    <servlet-mapping>
    <servlet-name>GlobalCFMLServlet</servlet-name>
    <url-pattern>/rewrite.cfm/*</url-pattern>
    </servlet-mapping>

    <servlet-mapping>
    <servlet-name>GlobalCFMLServlet</servlet-name>
    <url-pattern>/index.cfm/*</url-pattern>
    </servlet-mapping>

    <servlet-mapping>
    <servlet-name>GlobalAMFServlet</servlet-name>
    <url-pattern>/flashservices/gateway/*</url-pattern>
    </servlet-mapping>

.HTACCESS
Options +FollowSymLinks
RewriteEngine On
RewriteCond %{REQUEST_URI} !^.*/(ckeditor|assets|customTags|flex2gateway|jrunscripts|cfide|cfformgateway|railo|railo-context|misc|robots.txt|sitemap.xml|rewrite.cfm)($|/.*$) [NC]
RewriteRule ^/(.*)$ ./rewrite.cfm/$1 [L]

---
John C. Bland II
http://www.johncblandii.com
http://www.johnandseason.com
http://www.twitter.com/johncblandii
---
Suggested sites:
http://www.lifthimhigh.com - "Christian Products for Those Bold Enough to Wear Them"
http://www.sportsmatchmaker.com - "What are you doing today?"


John C. Bland II

unread,
Aug 13, 2010, 7:33:03 AM8/13/10
to cfwh...@googlegroups.com
I think my AJP code was to fault. I still don't follow how linkTo didn't "obey" but at least it seems the url's work.

Notice the last 4 are commented out. I added the /rewrite.cfm/* servlet path to my tomcat web.xml as well. We'll see if this causes any problems or not. Thx for the sounding board folks.

Here is the AJP config I was using:
#RAILO
ProxyPreserveHost On
ProxyPassReverse / ajp://localhost:8009/

RewriteEngine On
RewriteRule ^(.+\.cf[cm])(/.*)?$ ajp://localhost:8009$1$2 [P]

RewriteCond %{DOCUMENT_ROOT}%{REQUEST_URI} -d
RewriteRule ^(.+/)$ ajp://localhost:8009%{REQUEST_URI}index.cfm [P]

#RewriteCond %{DOCUMENT_ROOT}%{REQUEST_URI} -f
#RewriteRule . - [L]

#RewriteRule ^([a-zA-Z0-9/-]+[^/])$ $1/ [R=301,L]

#RewriteRule ^([a-zA-Z0-9/-]+)$ ajp://localhost:8009/index.cfm%{REQUEST_URI} [NE,P]

---
John C. Bland II
http://www.johncblandii.com
http://www.johnandseason.com
http://www.twitter.com/johncblandii
---
Suggested sites:
http://www.lifthimhigh.com - "Christian Products for Those Bold Enough to Wear Them"
http://www.sportsmatchmaker.com - "What are you doing today?"


raulriera

unread,
Aug 13, 2010, 8:03:25 AM8/13/10
to ColdFusion on Wheels
It's not a convention, it just won't work... doing <cfset
set(URLRewriting="On")> on something that doesn't have URLRewriting
properly setup won't work... It appears you fixed your rewriting file
anyway so nevermind

On Aug 13, 1:33 pm, "John C. Bland II" <johncblan...@gmail.com> wrote:
> I think my AJP code was to fault. I still don't follow how linkTo didn't
> "obey" but at least it seems the url's work.
>
> Notice the last 4 are commented out. I added the /rewrite.cfm/* servlet path
> to my tomcat web.xml as well. We'll see if this causes any problems or not.
> Thx for the sounding board folks.
>
> Here is the AJP config I was using:
> #RAILO
> ProxyPreserveHost On
> ProxyPassReverse / ajp://localhost:8009/
>
> RewriteEngine On
> RewriteRule ^(.+\.cf[cm])(/.*)?$ ajp://localhost:8009$1$2 [P]
>
> RewriteCond %{DOCUMENT_ROOT}%{REQUEST_URI} -d
> RewriteRule ^(.+/)$ ajp://localhost:8009%{REQUEST_URI}index.cfm [P]
>
> #RewriteCond %{DOCUMENT_ROOT}%{REQUEST_URI} -f
> #RewriteRule . - [L]
>
> #RewriteRule ^([a-zA-Z0-9/-]+[^/])$ $1/ [R=301,L]
>
> #RewriteRule ^([a-zA-Z0-9/-]+)$ ajp://localhost:8009/index.cfm%{REQUEST_URI}
> [NE,P]
>
> ---
> John C. Bland IIhttp://www.johncblandii.comhttp://www.johnandseason.comhttp://www.twitter.com/johncblandii
> ---
> Suggested sites:http://www.lifthimhigh.com- "Christian Products for Those Bold Enough to
> Wear Them"http://www.sportsmatchmaker.com- "What are you doing today?"
>
> On Thu, Aug 12, 2010 at 10:29 PM, John C. Bland II
> <johncblan...@gmail.com>wrote:
> > !^.*/(ckeditor|assets|customTags|flex2gateway|jrunscripts|cfide|cfformgatew ay|railo|railo-context|misc|robots.txt|sitemap.xml|rewrite.cfm)($|/.*$)
> > [NC]
> > RewriteRule ^/(.*)$ ./rewrite.cfm/$1 [L]
>
> > ---
> > John C. Bland II
> >http://www.johncblandii.com
> >http://www.johnandseason.com
> >http://www.twitter.com/johncblandii
> > ---
> > Suggested sites:
> >http://www.lifthimhigh.com- "Christian Products for Those Bold Enough to
> > Wear Them"
> >http://www.sportsmatchmaker.com- "What are you doing today?"
>
> > On Thu, Aug 12, 2010 at 10:09 PM, Gavin McLelland <
> > gavin.mclell...@gmail.com> wrote:
>
> >> Makes perfect sense =)
>
> >> I had the same type of issue happen about a year ago with
> >> Tomcat6+Railo+ColdBox. It had to do with my rewrite environment not
> >> supporting the QSA Flag (Query String Appends).
>
> >> But your issue could be a whole other story....
>
> >> --
> >> Gavin @Fusegrid <http://twitter.com/fusegrid>
>
> >> On Thu, Aug 12, 2010 at 8:01 PM, John C. Bland II <johncblan...@gmail.com
> >> > wrote:
>
> >>> @Gavin
> >>> See my initial post. My links are showing index.cfm and it shouldn't. I
> >>> told Wheels to us full url rewriting so linkTo(controller="my",
> >>> action="life") should automatically make /my/life the url.
>
> >>> Again, I stopped using linkTo for my main/sub nav (using normal a/href's)
> >>> and those url's work fine so url rewriting is fine. Wheels isn't.
>
> >>> WORKS
> >>> <a href="/my/life">Click me</a>
>
> >>> FAILS (by fail I mean it adds index.cfm)
> >>> linkTo(controller="my", action="life")
>
> >>> Does that make sense?
>
> >>> ---
> >>> John C. Bland II
> >>>http://www.johncblandii.com
> >>>http://www.johnandseason.com
> >>>http://www.twitter.com/johncblandii
> >>> ---
> >>> Suggested sites:
> >>>http://www.lifthimhigh.com- "Christian Products for Those Bold Enough
> >>> to Wear Them"
> >>>http://www.sportsmatchmaker.com- "What are you doing today?"
>
> >>> On Thu, Aug 12, 2010 at 9:55 PM, Gavin McLelland <
> >>> gavin.mclell...@gmail.com> wrote:
>
> >>>> Have you verified your rewrite config as working outside the framework?
>
> >>>> I am thinking rewrite on Tomcat is not setup correctly, sounds like its
> >>>> failing, the framework is still picking it up at the application level and
> >>>> doing partial rewrites. Post your config.
>
> >>>> --
> >>>> Gavin @Fusegrid <http://twitter.com/fusegrid>
>
> >>>> On Thu, Aug 12, 2010 at 7:46 PM, John C. Bland II <
> >>>> johncblan...@gmail.com> wrote:
>
> >>>>> @Risto
> >>>>> Railo + Tomcat through Apache.
>
> >>>>> @raul
> >>>>> Are you saying Wheels looks at my environment and decides whether to
> >>>>> ignore my "On" setting? If so, that's a horrible convention. Please clarify.
>
> >>>>> ---
> >>>>> John C. Bland II
> >>>>>http://www.johncblandii.com
> >>>>>http://www.johnandseason.com
> >>>>>http://www.twitter.com/johncblandii
> >>>>> ---
> >>>>> Suggested sites:
> >>>>>http://www.lifthimhigh.com- "Christian Products for Those Bold Enough
> >>>>> to Wear Them"
> >>>>>http://www.sportsmatchmaker.com- "What are you doing today?"
>
> >>>>>> cfwheels+u...@googlegroups.com<cfwheels%2Bunsubscribe@googlegroups.c om>
> >>>>>> .
> >>>>>> For more options, visit this group at
> >>>>>>http://groups.google.com/group/cfwheels?hl=en.
>
> >>>>>  --
> >>>>> You received this message because you are subscribed to the Google
> >>>>> Groups "ColdFusion on Wheels" group.
> >>>>> To post to this group, send email to cfwh...@googlegroups.com.
> >>>>> To unsubscribe from this group, send email to
> >>>>> cfwheels+u...@googlegroups.com<cfwheels%2Bunsubscribe@googlegroups.c om>
> >>>>> .
> >>>>> For more options, visit this group at
> >>>>>http://groups.google.com/group/cfwheels?hl=en.
>
> >>>> --
>
> >>>>  --
> >>>> You received this message because you are subscribed to the Google
> >>>> Groups "ColdFusion on Wheels" group.
> >>>> To post to this group, send email to cfwh...@googlegroups.com.
> >>>> To unsubscribe from this group, send email to
> >>>> cfwheels+u...@googlegroups.com<cfwheels%2Bunsubscribe@googlegroups.c om>
> >>>> .
> >>>> For more options, visit this group at
> >>>>http://groups.google.com/group/cfwheels?hl=en.
>
> >>>  --
> >>> You received this message because you are subscribed to the Google Groups
> >>> "ColdFusion on Wheels" group.
> >>> To post to this group, send email to cfwh...@googlegroups.com.
> >>> To unsubscribe from this group, send email to
> >>> cfwheels+u...@googlegroups.com<cfwheels%2Bunsubscribe@googlegroups.c om>
> >>> .
> >>> For more options, visit this group at
> >>>http://groups.google.com/group/cfwheels?hl=en.
>
> >>  --
> >> You received this message because you are subscribed to the Google Groups
> >> "ColdFusion on Wheels" group.
> >> To post to this group, send email to cfwh...@googlegroups.com.
> >> To unsubscribe from this group, send email to
> >> cfwheels+u...@googlegroups.com<cfwheels%2Bunsubscribe@googlegroups.c om>
> >> .

joshua clingenpeel

unread,
Aug 13, 2010, 9:28:51 AM8/13/10
to cfwh...@googlegroups.com
Why is 'on' acting like 'auto', if that's the case? It seems to make
more sense and be more helpful for debugging to have wheels not check
the webserver's capabilities if you've explicitly set the
functionality to 'on'. You'd get an appropriate error message and have
a better idea where the problem was. As John stated earlier, the
problem seemed like it could only be in wheels, when clearly it
wasn't.

--
Josh

John C. Bland II

unread,
Aug 13, 2010, 12:03:59 PM8/13/10
to cfwh...@googlegroups.com

Exactly Josh. On is On. Don't go partial if it is on.

--------------------------
John C. Bland II
Mobile

> To unsubscribe from this group, send email to cfwheels+u...@googlegroups.com.

Chris Peters

unread,
Aug 13, 2010, 12:25:43 PM8/13/10
to cfwh...@googlegroups.com
Can you submit an issue for this?

-----
Sent from my mobile.

John C. Bland II

unread,
Aug 13, 2010, 12:40:23 PM8/13/10
to cfwh...@googlegroups.com
Yep.http://www.lifthimhigh.com - "Christian Products for Those Bold Enough to Wear Them"
http://www.sportsmatchmaker.com - "What are you doing today?"

John C. Bland II

unread,
Aug 13, 2010, 12:51:43 PM8/13/10
to cfwh...@googlegroups.com
A little wordy but here it is: http://code.google.com/p/cfwheels/issues/detail?id=542.

Folks, vote it up.

---
John C. Bland II
http://www.johncblandii.com
http://www.johnandseason.com
http://www.twitter.com/johncblandii
---
Suggested sites:
http://www.lifthimhigh.com - "Christian Products for Those Bold Enough to Wear Them"
http://www.sportsmatchmaker.com - "What are you doing today?"


Chris Peters

unread,
Aug 13, 2010, 1:46:26 PM8/13/10
to cfwh...@googlegroups.com
Detailed is good. :) Thanks.

John C. Bland II

unread,
Aug 13, 2010, 2:49:25 PM8/13/10
to cfwh...@googlegroups.com

Coolio.

--------------------------
John C. Bland II
Mobile

>>>> IIhttp://www.johncblandii.comhttp://www.johnandseason.comhttp://<http://www.twitter.com/johncblandii>


>>>> www.twitter.com/johncblandii
>>>> >>> ---
>>>> >>> Suggested sites: <http://www.lifthimhigh.com->

>>>> >>> > <http://www.johncblandii.com>http://www.johncblandii.com
>>>> >>> > <http://www.johnandseason.com>http://www.johnandseason.com
>>>> >>> > <http://www.twitter.com/johncblandii>


>>>> http://www.twitter.com/johncblandii
>>>> >>> > ---
>>>> >>> > Suggested sites:

>>>> >>> > <http://www.lifthimhigh.com->http://www.lifthimhigh.com-"Christian Products for Those Bold Enough to
>>>> >>> > Wear Them"
>>>> >>> > <http://www.sportsmatchmaker.com->http://www.sportsmatchmaker.com-"What are you doing today?"

>>>> >>> >>> <http://www.johncblandii.com>http://www.johncblandii.com
>>>> >>> >>> <http://www.johnandseason.com>http://www.johnandseason.com
>>>> >>> >>> <http://www.twitter.com/johncblandii>


>>>> http://www.twitter.com/johncblandii
>>>> >>> >>> ---
>>>> >>> >>> Suggested sites:

>>>> >>> >>> <http://www.lifthimhigh.com->http://www.lifthimhigh.com-"Christian Products for Those Bold Enough


>>>> >>> >>> to Wear Them"
>>>> >>> >>> <http://www.sportsmatchmaker.com->

>>>> http://www.sportsmatchmaker.com- "What are you doing today?"
>>>> >>>
>>>> >>> >>> On Thu, Aug 12, 2010 at 9:55 PM, Gavin McLelland <
>>>> >>> >>> gavin.mclell...@gmail.com> wrote:
>>>> >>>
>>>> >>> >>>> Have you verified your rewrite config as working outside the
>>>> framework?
>>>> >>>
>>>> >>> >>>> I am thinking rewrite on Tomcat is not setup correctly, sounds
>>>> like its
>>>> >>> >>>> failing, the framework is still picking it up at the application
>>>> level and
>>>> >>> >>>> doing partial rewrites. Post your config.
>>>> >>>
>>>> >>> >>>> --
>>>> >>> >>>> Gavin @Fusegrid < <http://twitter.com/fusegrid>
>>>> http://twitter.com/fusegrid>
>>>> >>>
>>>> >>> >>>> On Thu, Aug 12, 2010 at 7:46 PM, John C. Bland II <
>>>> >>> >>>> johncblan...@gmail.com> wrote:
>>>> >>>
>>>> >>> >>>>> @Risto
>>>> >>> >>>>> Railo + Tomcat through Apache.
>>>> >>>
>>>> >>> >>>>> @raul
>>>> >>> >>>>> Are you saying Wheels looks at my environment and decides
>>>> whether to
>>>> >>> >>>>> ignore my "On" setting? If so, that's a horrible convention.
>>>> Please clarify.
>>>> >>>
>>>> >>> >>>>> ---
>>>> >>> >>>>> John C. Bland II

>>>> >>> >>>>> <http://www.johncblandii.com>http://www.johncblandii.com
>>>> >>> >>>>> <http://www.johnandseason.com>http://www.johnandseason.com
>>>> >>> >>>>> <http://www.twitter.com/johncblandii>


>>>> http://www.twitter.com/johncblandii
>>>> >>> >>>>> ---
>>>> >>> >>>>> Suggested sites:

>>>> >>> >>>>> <http://www.lifthimhigh.com->http://www.lifthimhigh.com-"Christian Products for Those Bold Enough


>>>> >>> >>>>> to Wear Them"
>>>> >>> >>>>> <http://www.sportsmatchmaker.com->

>>>> >>> >>>>>> <http://www.twitter.com/johncblandii>


>>>> www.twitter.com/johncblandii
>>>> >>> >>>>>> > ---
>>>> >>> >>>>>> > Suggested sites: <http://www.lifthimhigh.com->

>>>> http://www.lifthimhigh.com-"Christian Products for
>>>> >>> >>>>>> Those Bold Enough to
>>>> >>> >>>>>> > Wear Them" <http://www.sportsmatchmaker.com->

>>>> http://www.sportsmatchmaker.com-"What are you doing
>>>> >>> >>>>>> today?"
>>>> >>>
>>>> >>> >>>>>> --
>>>> >>> >>>>>> You received this message because you are subscribed to the
>>>> Google
>>>> >>> >>>>>> Groups "ColdFusion on Wheels" group.
>>>> >>> >>>>>> To post to this group, send email to

>>>> <cfwh...@googlegroups.com>cfwh...@googlegroups.com.


>>>> >>> >>>>>> To unsubscribe from this group, send email to

>>>> >>> >>>>>> <cfwheels%2Bunsu...@googlegroups.com>


>>>> cfwheels+u...@googlegroups.com
>>>> <cfwheels%2Bunsubscribe@googlegroups.c om>
>>>> >>> >>>>>> .
>>>> >>> >>>>>> For more options, visit this group at
>>>> >>> >>>>>> <http://groups.google.com/group/cfwheels?hl=en>
>>>> http://groups.google.com/group/cfwheels?hl=en.
>>>> >>>
>>>> >>> >>>>> --
>>>> >>> >>>>> You received this message because you are subscribed to the
>>>> Google
>>>> >>> >>>>> Groups "ColdFusion on Wheels" group.
>>>> >>> >>>>> To post to this group, send email to

>>>> <cfwh...@googlegroups.com>cfwh...@googlegroups.com.


>>>> >>> >>>>> To unsubscribe from this group, send email to

>>>> >>> >>>>> <cfwheels%2Bunsu...@googlegroups.com>


>>>> cfwheels+u...@googlegroups.com
>>>> <cfwheels%2Bunsubscribe@googlegroups.c om>
>>>> >>> >>>>> .
>>>> >>> >>>>> For more options, visit this group at
>>>> >>> >>>>> <http://groups.google.com/group/cfwheels?hl=en>

>>>> http://groups.google.com/group/cfwheels?hl=en.
>>>> >>>
>>>> >>> >>>> --
>>>> >>>
>>>> >>> >>>> --
>>>> >>> >>>> You received this message because you are subscribed to the
>>>> Google
>>>> >>> >>>> Groups "ColdFusion on Wheels" group.
>>>> >>> >>>> To post to this group, send email to

>>>> <cfwh...@googlegroups.com>cfwh...@googlegroups.com.


>>>> >>> >>>> To unsubscribe from this group, send email to

>>>> >>> >>>> <cfwheels%2Bunsu...@googlegroups.com>


>>>> cfwheels+u...@googlegroups.com
>>>> <cfwheels%2Bunsubscribe@googlegroups.c om>
>>>> >>> >>>> .
>>>> >>> >>>> For more options, visit this group at
>>>> >>> >>>> <http://groups.google.com/group/cfwheels?hl=en>
>>>> http://groups.google.com/group/cfwheels?hl=en.
>>>> >>>
>>>> >>> >>> --
>>>> >>> >>> You received this message because you are subscribed to the
>>>> Google Groups
>>>> >>> >>> "ColdFusion on Wheels" group.
>>>> >>> >>> To post to this group, send email to <cfwh...@googlegroups.com>
>>>> cfwh...@googlegroups.com.
>>>> >>> >>> To unsubscribe from this group, send email to

>>>> >>> >>> <cfwheels%2Bunsu...@googlegroups.com>


>>>> cfwheels+u...@googlegroups.com
>>>> <cfwheels%2Bunsubscribe@googlegroups.c om>
>>>> >>> >>> .
>>>> >>> >>> For more options, visit this group at
>>>> >>> >>> <http://groups.google.com/group/cfwheels?hl=en>
>>>> http://groups.google.com/group/cfwheels?hl=en.
>>>> >>>
>>>> >>> >> --
>>>> >>> >> You received this message because you are subscribed to the Google
>>>> Groups
>>>> >>> >> "ColdFusion on Wheels" group.
>>>> >>> >> To post to this group, send email to <cfwh...@googlegroups.com>
>>>> cfwh...@googlegroups.com.
>>>> >>> >> To unsubscribe from this group, send email to

>>>> >>> >> <cfwheels%2Bunsu...@googlegroups.com>


>>>> cfwheels+u...@googlegroups.com
>>>> <cfwheels%2Bunsubscribe@googlegroups.c om>
>>>> >>> >> .
>>>> >>> >> For more options, visit this group at
>>>> >>> >> <http://groups.google.com/group/cfwheels?hl=en>
>>>> http://groups.google.com/group/cfwheels?hl=en.
>>>> >>
>>>> >> --
>>>> >> You received this message because you are subscribed to the Google
>>>> Groups "ColdFusion on Wheels" group.
>>>> >> To post to this group, send email to <cfwh...@googlegroups.com>

>>>> cfwh...@googlegroups.com.
>>>> >> To unsubscribe from this group, send email to
>>>> >
>>>> > --
>>>> > Josh
>>>> >
>>>> > --
>>>> > You received this message because you are subscribed to the Google
>>>> Groups "ColdFusion on Wheels" group.
>>>> > To post to this group, send email to <cfwh...@googlegroups.com>

>>>> cfwh...@googlegroups.com.
>>>> > To unsubscribe from this group, send email to

>>>> <cfwheels%2Bunsu...@googlegroups.com>


>>>> cfwheels+u...@googlegroups.com.
>>>> > For more options, visit this group at
>>>> <http://groups.google.com/group/cfwheels?hl=en>
>>>> http://groups.google.com/group/cfwheels?hl=en.
>>>> >
>>>>
>>>> --
>>>> You received this message because you are subscribed to the Google Groups
>>>> "ColdFusion on Wheels" group.
>>>> To post to this group, send email to cfwh...@googlegroups.com.
>>>> To unsubscribe from this group, send email to
>>>> cfwheels+u...@googlegroups.com.
>>>> For more options, visit this group at
>>>> http://groups.google.com/group/cfwheels?hl=en.
>>>>
>>>> --
>>>> You received this message because you are subscribed to the Google Groups
>>>> "ColdFusion on Wheels" group.
>>>> To post to this group, send email to cfwh...@googlegroups.com.
>>>> To unsubscribe from this group, send email to

>>>> cfwheels+u...@googlegroups.com<cfwheels%2Bunsu...@googlegroups.com>


>>>> .
>>>> For more options, visit this group at
>>>> http://groups.google.com/group/cfwheels?hl=en.
>>>>
>>>
>>>
>> --
>> You received this message because you are subscribed to the Google Groups
>> "ColdFusion on Wheels" group.
>> To post to this group, send email to cfwh...@googlegroups.com.
>> To unsubscribe from this group, send email to

>> cfwheels+u...@googlegroups.com<cfwheels%2Bunsu...@googlegroups.com>


>> .
>> For more options, visit this group at
>> http://groups.google.com/group/cfwheels?hl=en.
>>
>
> --
> You received this message because you are subscribed to the Google Groups "ColdFusion on Wheels" group.
> To post to this group, send email to cfwh...@googlegroups.com.

Reply all
Reply to author
Forward
0 new messages