Steve,
Yeah, I was actually able to get this to work. I followed the following
steps:
1. Go to the web site that uses the SSL you wish to import over
SSL
2. Once you're at the web site, click on the "LOCK" to the
right of the address bar (In Internet Explorer v 7+)
Convert it to a struct, then back to a list:
http://www.bennadel.com/blog/432-Using-ColdFusion-Structures-To-Remove-Dupli
cate-List-Values.htm
andy
-Original Message-
From: Les Irvin [mailto:les.cft...@gmail.com]
Sent: Thursday, April 07, 2011 11:07 PM
To: cf-talk
Subject: Removing dup
What's the easiest way to remove dupes from a value list?
I want to turn, say, this:
History,Recreation,History,Music,Architecture,History,Recreation,Music
into this:
History,Recreation,Music,Architecture
Thanks in advance for your help,
Les
>Hey everyone. I have run into the age old issue that Coldfusion JRE does not
>have included a ssl certificate (from GoDaddy) used on a remote CF system I
>have setup. I have read how to import the SSL into the JRE using keytool,
>however it requires restarting CF services which I do not want to h
>The translation is actually rather easy. It's just a bunch of RegEx for
>parsing and rules for understanding. The limitations of cfscript are perfect
>here as there are not many rules. The only thing would be the loops that are
>available in cfscript but do not exist in standard cf. Also, if some
>That's funny. Actually I created a tags --> script converter a few weeks
>ago, kind of for fun, kind of for upgrading to CF9. It works for basic
>stuff, components, functions, some loops, try/catch, etc, but gets confused
>with queries or anything else complicated.
>
>nathan strutz
>[http://www.d
> On Thu, Apr 7, 2011 at 4:20 PM, Jeff Gladnick com> wrote:
> > I actually don't hate cfscript, but I do hate that we have both tags
> and script based syntax for CFML. And since it started off as tags, I
> firmly believe that's the way it should stay.
>
> You won't like the new version of FW
The translation is actually rather easy. It's just a bunch of RegEx for
parsing and rules for understanding. The limitations of cfscript are perfect
here as there are not many rules. The only thing would be the loops that are
available in cfscript but do not exist in standard cf. Also, if someone
That's funny. Actually I created a tags --> script converter a few weeks
ago, kind of for fun, kind of for upgrading to CF9. It works for basic
stuff, components, functions, some loops, try/catch, etc, but gets confused
with queries or anything else complicated.
nathan strutz
[http://www.dopefly.
On Thu, Apr 7, 2011 at 4:20 PM, Jeff Gladnick wrote:
> I actually don't hate cfscript, but I do hate that we have both tags and
> script based syntax for CFML. And since it started off as tags, I firmly
> believe that's the way it should stay.
You won't like the new version of FW/1 then... 2.
Albeit a tame flame. :)
On Thu, Apr 7, 2011 at 7:32 PM, Jeff Gladnick wrote:
>
> First flame!
>
> >And I'm willing to pay for a C-64 version of Halo 3.
> >
> >
> >On Thu, Apr 7, 2011 at 7:20 PM, Jeff Gladnick >wrote:
> >
> >>
>
>
~~~
First flame!
>And I'm willing to pay for a C-64 version of Halo 3.
>
>
>On Thu, Apr 7, 2011 at 7:20 PM, Jeff Gladnick wrote:
>
>>
~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/
So this was a weird one... the error is resolved, but I was wondering if
anyone could explain what was causing my error.
I had a query that was timing out (its one of those nice long monster
queries - so I'm not pasting it in its entirety) - but when I copied/pasted
out of the cfcatch.sql (from e
And I'm willing to pay for a C-64 version of Halo 3.
On Thu, Apr 7, 2011 at 7:20 PM, Jeff Gladnick wrote:
>
> I actually don't hate cfscript, but I do hate that we have both tags and
> script based syntax for CFML. And since it started off as tags, I firmly
> believe that's the way it should s
I actually don't hate cfscript, but I do hate that we have both tags and script
based syntax for CFML. And since it started off as tags, I firmly believe
that's the way it should stay.
I understand lots of people feel differently, but it really sucks (for me)
seeing all the new great open sou
Hence the "could". There are plenty of wrenches to throw into it (like the
delimiter character being used as a normal character in one of the values).
.:.:.:.:.:.:.:.:.:.:.:.:.:.
Bobby Hartsfield
http://acoderslife.com
http://cf4em.com
-Original Message-
From: Raymond Camden [mailto:rcam
I have just started using cfexchange tags to communicate with Exchange Server.
I am able to create new contacts and modify existing contacts in the default
contact list on the Exchange Server. What I would like to be able to do is
create and update contacts another contact list that I created o
Isn't this the sort of thing ColdSpring is good for ?
On Thu, Apr 7, 2011 at 8:51 PM, Dave Watts wrote:
>
> > Thanks for the input. So what about using relative paths? We are
> implementing a stronger development environment
> > and these component references will change depending on the serv
Thanks dave. :)
-Original Message-
From: Dave Watts [mailto:dwa...@figleaf.com]
Sent: Thursday, April 07, 2011 9:39 AM
To: cf-talk
Subject: Re: 64-bit ColdFusion 8 Download
> I'm migrating one of our ColdFusion 8 servers to a 64-bit server and was
> wondering if anyone knows of a place
> Thanks for the input. So what about using relative paths? We are
> implementing a stronger development environment
> and these component references will change depending on the server. We are
> searching for ways to make the code
> more flexible so we can easily move from one server to anot
> I'm migrating one of our ColdFusion 8 servers to a 64-bit server and was
> wondering if anyone knows of a place to download the 64-bit version of
> ColdFusion 8?
Also keep in mind that the 64-bit edition will only install if you
have an enterprise license key. The 64-bit installer won't accept
Returntype can simply be "datasource", in your example, which specifies the
type without having to worry about the path, so that may be an option:
...
From: "Hunsaker, Michael Scott"
Sent: Thursday, April 07, 2011 10:30 AM
To: "cf-talk"
Subject: RE:
Thanks for the input. So what about using relative paths? We are implementing
a stronger development environment and these component references will change
depending on the server. We are searching for ways to make the code more
flexible so we can easily move from one server to another.
Tha
Not if any value has a comma in it. You can use other delimiters, but
then you just have a different problem.
On Wed, Apr 6, 2011 at 4:38 PM, Bobby Hartsfield wrote:
>
> Assuming you are dealing with one dimensional arrays, sure, converting it to
> a list could work.
>
> .:.:.:.:.:.:.:.:.:.:.:.:
> I'm migrating one of our ColdFusion 8 servers to a 64-bit server and was
> wondering if anyone knows of a place to download the 64-bit version of
> ColdFusion 8?
You should still be able to get all versions here:
https://www.adobe.com/cfusion/tdrc/index.cfm?product=coldfusion8
Dave Watts, CTO,
Hi,
I'm migrating one of our ColdFusion 8 servers to a 64-bit server and was
wondering if anyone knows of a place to download the 64-bit version of
ColdFusion 8?
Thanks,
Paul
~|
Order the Adobe Coldfusion Anthology now!
h
26 matches
Mail list logo