Re: [ACFUG Discuss] TLS in CFLDAP [Lucee]

2018-03-02 Thread John Mason
Just fyi for people, several service providers will pushed hard this
year for full TLS 1.2 compliance. This JVM tweak won't work with older
Adobe ColdFusion versions (pre CF11).

This blog post by CFMuse helps explain the problem..
https://www.coldfusionmuse.com/index.cfm/2014/12/8/colfusion-jvm-versions-sslv3-tls

The solution is to upgrade your CF servers or switch to Lucee. If you
need extra time, you can switch out your cfhttp calls to use the
cfx_http5 custom tag which is a C++ tag and avoids the entire problem
with old CF/JVM systems.

cfx_http5
https://www.coldfusionmuse.com/index.cfm/2014/12/8/colfusion-jvm-versions-sslv3-tls

John
ma...@fusionlink.com



On 3/2/18 7:26 AM, Ajas Mohammed wrote:
> Rob,
>
> I have not used Lucee but I believe it's java behind the scenes. 
>
> If yes, then what's the jdk version?
>
> If you are on say jdk 1.8, you can add this to your
> jvm.config Dhttps.protocols=TLSv1.2 . Check for other jdk also like 1.7. 
>
> Thanks,
>
>
> On Thu, Mar 1, 2018 at 7:50 PM Rob Saxon  > wrote:
>
> CF gurus,
>
> We have a server with Lucee installed. Is there a way to get
> CFLDAP to use TLS instead of SSL for secure connections? I am
> trying to connect to an LDAP server that does not support SSL v2.
> I don’t see usetls as a parameter available in CFLDAP in Lucee. 
> Is there a workaround?
>
>  
>
> Thanks,
>
> Rob
>
> -- 
>  
> iUseDropbox(http://db.tt/63Lvone9) 
> http://ajashadi.blogspot.com
> We cannot become what we need to be, remaining what we are.
> No matter what, find a way. Because thats what winners do.
> You can't improve what you don't measure.
> Quality is never an accident; it is always the result of high
> intention, sincere effort, intelligent direction and skillful
> execution; it represents the wise choice of many alternatives.




Re: [ACFUG Discuss] strange behavior with cftoken/cfid with CF9

2018-02-24 Thread John Mason
Sorry for the delay Les, I still manage the ACFUG list and will have you
off in a moment. FYI for others as well, simply email me if you need to
unsubscribe.

John
ma...@fusionlink.com



On 2/24/18 7:12 AM, Les wrote:
> That's cool, thanks.  No offense, I've just retired.
>
> On 2/23/2018 5:50 PM, Charlie Arehart wrote:
>>
>> Wow, I don’t know if there’s anyone with that ability. There was for
>> a time, but then the group moved to a new system. Then it went quiet
>> for a few years.
>>
>> Now that it’s reviving again, surely some like Les will say “I don’t
>> care to be here anymore”. I’m just not sure who has control anymore
>> to remove you. (There was even a time where there was a way to remove
>> yourself, but I don’t know it myself.)
>>
>> So Les, if you don’t hear from anyone, you may no choice but to just
>> setup a rule to just tell your mail client (or server) to delete
>> messages you receive that show being sent “to” discussion@acfug.org
>> . (It’s also possible that this spate of
>> activity will die down again. Just depends on who DOES value it.)
>>
>> /charlie
>>
>>  
>>
>> *From:*ad...@acfug.org [mailto:ad...@acfug.org] *On Behalf Of *Les
>> *Sent:* Friday, February 23, 2018 06:53 AM
>> *To:* discussion@acfug.org
>> *Subject:* Re: [ACFUG Discuss] strange behavior with cftoken/cfid
>> with CF9
>>
>>  
>>
>> please remove me from this list.
>>
>



[ACFUG Discuss] Web Designer

2017-01-07 Thread John Mason
Just forwarding this along. He is a hosting client of mine.

Newnan GA based family owned company seeking WEB DESIGNER to work
remotely on existing websites built with CF that sell retail products
directly to the consumer. This post is for creative/design work to
update existing websites and integrate social media and mobile elements.
Requires extensive experience in all aspects of web forms, DB and
e-commerce. Send details of experience, links, references, etc. by email
or call.

Lenn Brown

770-755-8175

l...@knbonline.com 




Re: [ACFUG Discuss] Hopefully this list still exists

2016-09-01 Thread John Mason
Yep the list is still active and on one of my email servers. The
subscribe/unsubscribe is manual at this point. So just notify me if you
need anything.

John
ma...@fusionlink.com




signature.asc
Description: OpenPGP digital signature


[ACFUG Discuss] NCDevCon

2015-05-29 Thread John Mason
NCDevCon is a affordable nearby conference. Usually a very good time out 
and topics.


From Jim Priest of NCDevCon..

Hi,  I am one of the organizers of NCDevCon, the largest Web / 
JavaScript / Mobile / ColdFusion conference in North Carolina.


I was contacting you to see if you could help us spread the word about 
our conference with your Meetup members.


General registration is open as is the call for speakers.

NCDevCon, associates, and sponsors are organizing the NCDevCon 2015 
Conference (NCDevCon) to be held September 26-27, 2015 on the Centennial 
Campus of NC State University in Raleigh, North Carolina. The conference 
planning committee is currently calling for presentation proposals from 
interested subject matter experts. There will be a number of nationally 
known speakers as well as regional and local presenters.


The Call for Speakers will close on June 7th.

Submit your topic ideas here: 
http://www.ncdevcon.com/extensions/callforspeakers/SessionForm.cfm


The conference will cover a wide variety of web development and design 
topics including Web, Mobile, Javascript and ColdFusion technologies.


Registration is also open: http://ncdevcon.eventbrite.com

Cost is only $200 and covers admission to all sessions, lunch for both 
days and drinks and snacks.  More information can be found online: 
http://ncdevcon.com


Thanks, Jim Priest ~NCDevCon



Re: [ACFUG Discuss] Running CFExecute in ColdFusion 11

2015-02-02 Thread John Mason
Just that you really shouldn't be doing that anyway. The web app server 
shouldn't be able to make a direct command line call. And specially so 
if it's still operating as 'Local Service' or root. Just too many ways 
for a hacker to play with that. Doesn't matter if it's public facing or 
not imho.


Drop the command into a database that an independent cron job picks up, 
etc. Really parse down what the command is and how it gets ferried over 
in the process. This is also good in that it gives you a record of 
commands that have been sent through.


John
ma...@fusionlink.com




On 2/2/15 10:39 AM, Bettina M. Scurlock wrote:

Goon Morning All,

We recently upgrade one of our servers from CF9 to CF11 last month.  
The only issue we encountered is trying to get the CFExecute tag to 
execute BAT files.

Thoughts?

Thank you in advance for your help!

Cheers,
Bettina





[ACFUG Discuss] Call for speakers for Oct and Nov

2014-09-22 Thread John Mason
We need to line up some speakers for this fall. If you have a topic and 
would like to present, please let me know. It can be CF or any Web other 
technology or topic.


John
ma...@fusionlink.com





Re: [ACFUG Discuss] Cflunch US v Germany game

2014-06-24 Thread John Mason
If it's just two of us, it's probably not worth it. We'll regular to our 
regular schedule programming. So that means CFLunch midtown is tomorrow.


BTW, I'm looking for speakers for hte next few meetings. Let me know if 
you have a topic you were be interested in presenting.


John


On 6/23/14, 8:14 PM, Scott Dowling wrote:


I'm still for it.

On Jun 23, 2014 8:09 PM, "John Mason" <mailto:ma...@fusionlink.com>> wrote:


That sounds problematic. Who's actually game for this? If the
numbers aren't good it might not be worth it.

John
ma...@fusionlink.com <mailto:ma...@fusionlink.com>



On 6/23/14, 1:40 PM, Scott Dowling wrote:


Just called RiRa. They will have the match playing but are
opening at 9am so people can get tables!!!

On Jun 23, 2014 1:36 PM, "Douglas Knudsen"
mailto:douglasknud...@gmail.com>> wrote:

I'd so trek down ITP for that!  Alas, I'll be on a plane,
boarding at kickoff no less.  Try and stream espn at 20k feet :)

DK

Douglas Knudsen
http://www.cubicleman.com
this is my signature, like it?


On Mon, Jun 23, 2014 at 9:35 AM, Cameron Childress
mailto:camer...@gmail.com>> wrote:

It's fine by me. I actually have a lunch meeting
elsewhere Thursday already but it totally makes sense to
move it if everyone can make it on that date.

-Cameron



On Mon, Jun 23, 2014 at 9:31 AM, John Mason
mailto:ma...@fusionlink.com>> wrote:

Sure, why not. Is that ok?

John



On 6/23/14, 8:44 AM, Cameron Childress wrote:

CFLunch is on Wed, the game is Thursday. Thinking
about switching days?

-Cameron


On Sun, Jun 22, 2014 at 8:02 PM, John Mason
mailto:ma...@fusionlink.com>>
wrote:

Any people interested in an extended CFLunch
watching the US v Germany game. It starts at
noon. Any recommendations on location?

John
ma...@fusionlink.com <mailto:ma...@fusionlink.com>








-- 
Cameron Childress

--
p: 678.637.5072 
im: cameroncf
facebook <http://www.facebook.com/cameroncf> |
twitter <http://twitter.com/cameronc> | google+
<https://profiles.google.com/u/0/117829379451708140985>






-- 
Cameron Childress

--
p: 678.637.5072 
im: cameroncf
facebook <http://www.facebook.com/cameroncf> | twitter
<http://twitter.com/cameronc> | google+
<https://profiles.google.com/u/0/117829379451708140985>








Re: [ACFUG Discuss] Cflunch US v Germany game

2014-06-23 Thread John Mason
That sounds problematic. Who's actually game for this? If the numbers 
aren't good it might not be worth it.


John
ma...@fusionlink.com



On 6/23/14, 1:40 PM, Scott Dowling wrote:


Just called RiRa. They will have the match playing but are opening at 
9am so people can get tables!!!


On Jun 23, 2014 1:36 PM, "Douglas Knudsen" <mailto:douglasknud...@gmail.com>> wrote:


I'd so trek down ITP for that!  Alas, I'll be on a plane, boarding
at kickoff no less.  Try and stream espn at 20k feet :)

DK

Douglas Knudsen
http://www.cubicleman.com
this is my signature, like it?


On Mon, Jun 23, 2014 at 9:35 AM, Cameron Childress
mailto:camer...@gmail.com>> wrote:

It's fine by me. I actually have a lunch meeting elsewhere
Thursday already but it totally makes sense to move it if
everyone can make it on that date.

-Cameron



    On Mon, Jun 23, 2014 at 9:31 AM, John Mason
mailto:ma...@fusionlink.com>> wrote:

Sure, why not. Is that ok?

John



On 6/23/14, 8:44 AM, Cameron Childress wrote:

CFLunch is on Wed, the game is Thursday. Thinking about
switching days?

-Cameron


On Sun, Jun 22, 2014 at 8:02 PM, John Mason
mailto:ma...@fusionlink.com>> wrote:

Any people interested in an extended CFLunch watching
the US v Germany game. It starts at noon. Any
recommendations on location?

John
ma...@fusionlink.com <mailto:ma...@fusionlink.com>








-- 
Cameron Childress

--
p: 678.637.5072 
im: cameroncf
facebook <http://www.facebook.com/cameroncf> | twitter
<http://twitter.com/cameronc> | google+
<https://profiles.google.com/u/0/117829379451708140985>






-- 
Cameron Childress

--
p: 678.637.5072 
im: cameroncf
facebook <http://www.facebook.com/cameroncf> | twitter
<http://twitter.com/cameronc> | google+
<https://profiles.google.com/u/0/117829379451708140985>






Re: [ACFUG Discuss] Cflunch US v Germany game

2014-06-23 Thread John Mason

Sure, why not. Is that ok?

John


On 6/23/14, 8:44 AM, Cameron Childress wrote:

CFLunch is on Wed, the game is Thursday. Thinking about switching days?

-Cameron


On Sun, Jun 22, 2014 at 8:02 PM, John Mason <mailto:ma...@fusionlink.com>> wrote:


Any people interested in an extended CFLunch watching the US v
Germany game. It starts at noon. Any recommendations on location?

John
ma...@fusionlink.com <mailto:ma...@fusionlink.com>








--
Cameron Childress
--
p:   678.637.5072
im: cameroncf
facebook <http://www.facebook.com/cameroncf> | twitter 
<http://twitter.com/cameronc> | google+ 
<https://profiles.google.com/u/0/117829379451708140985>






[ACFUG Discuss] Cflunch US v Germany game

2014-06-22 Thread John Mason
Any people interested in an extended CFLunch watching the US v Germany 
game. It starts at noon. Any recommendations on location?


John
ma...@fusionlink.com







[ACFUG Discuss] June Meeting

2014-05-15 Thread John Mason
Thanks to everyone for being patient. Good news, we have a new meeting 
location right off Peachtree St near Piedmont Hospital.


To start up again, we're having lightning talks for June's meeting. 
Short and simple 10 minute presentations by members showing a variety of 
topics related to web/mobile technology. As always, pizza and drinks 
will be available. Feel free to contact me if you would like to present 
a topic.


RSVP at
http://www.meetup.com/AtlantaWTG/events/183298992/

John
ma...@fusionlink.com





Re: [ACFUG Discuss] reasonable and reliable CF Hosting solution?

2014-04-21 Thread John Mason

Thanks Charlie,


I'll just add that FusionLink's systems are running on top of Amazon 
AWS. Actually in the middle of moving the remaining stuff we have over. 
Some may want the benefits of the cloud without having to dive directly 
into all the particulars and management side of it. It can get pretty 
complex. We're basically doing all the system admin heavy lifting for 
you. So with us, you can get the benefits for the AWS cloud including 
the managed hosting we provide.



John
ma...@fusionlink.com




On 4/21/14, 11:11 PM, Charlie Arehart wrote:


Let’s not forget our own John Mason and his FusionLink.com hosting. I 
know he has many happy customers.


And I happen to be hosted at EdgeWeb Hosting, who while not 
inexpensive, are very good.


Finally, I keep a list of other CF hosting companies at my CF411 list, 
specifically at cf411.com/cfhost.


/charlie

*From:*ad...@acfug.org [mailto:ad...@acfug.org] *On Behalf Of *Jeff Howard
*Sent:* Monday, April 21, 2014 5:04 PM
*To:* discussion@acfug.org
*Subject:* [ACFUG Discuss] reasonable and reliable CF Hosting solution?

Hey all. I've been using Hostek for years at this point but over the 
past month I have encountered issue after issue and today their 
servers have been down for the greater part of the day and I have some 
unhappy clients.


In this downtime I've been shopping around looking for an alternative. 
I figured that some of you probably have some good quality options so 
I thought I'd ask.


I'll also need the ability to have an MS SQL and MySQL database along 
with the ability to publish a WordPress public website.


I'm open for any and all suggestions.

Thanks,
Jeff





Re: [ACFUG Discuss] AWSome Day | Atlanta

2014-04-18 Thread John Mason

>Hopefully the training dude talks more than the sales dude

We can only hope :)  just registered myself. Look forward to seeing 
everyone there.


John
ma...@fusionlink.com



On 4/18/14, 1:47 PM, Cameron Childress wrote:
Ditto! Very interesting looking day. Hopefully the training dude talks 
more than the sales dude, but it looks great. I registered.


-Cameron


On Fri, Apr 18, 2014 at 10:11 AM, Erika L. Rich > wrote:


AWESOME! Thank you for sharing... I'm even going to come down out
of the hills for this! Registered. :)


On Friday, April 18, 2014, Matt Fuller mailto:m...@coldfusioncocoa.com>> wrote:

Hi all,

I hope this finds everyone doing well.  I came across this
event and though that it might be beneficial to anyone in the
group interested in Amazon Web Services (AWS).  It’s a free
event from 8:00am-6:00pm on Tuesday, April 29, in Buckhead.

“This is a free, one-day event that will be delivered by AWS
expert technical instructors. This event is ideal for business
and technical leaders, as well as IT Pros and developers who
are eager to learn more about cloud computing and be trained
on the AWS Cloud."

You can check out the details and register at
aws.amazon.com/events/awsome-day/atlanta-01/


Maybe I'll see you there!
*
*


.

Matt Fuller @ColdFusionCocoa    
  
*Matt Fuller*

*m...@coldfusioncocoa.com* /email/
*coldfusioncocoa.com * /web/
*@coldfusioncocoa *
/twitter/
*linkedin.com/in/coldfusioncocoa
* /linkedin/
*meetup.com/AtlantaCFUG *
/atlanta coldfusion user group (acfug)/






--
Cameron Childress
--
p:   678.637.5072
im: cameroncf
facebook  | twitter 
 | google+ 







Re: [ACFUG Discuss] CF10 and Exchange 2013

2014-03-20 Thread John Mason
There are some Java solutions as well, but I tend to think the same 
problem exists. If Microsoft changes anything you might be caught in a 
similar trap until a vendor or open source group works up a solution. At 
least with .NET, you can be fairly sure that the changes in Exchange 
will be addressed quickly in .NET (if not even ahead of time), because 
you are staying inside the same vendor stack. When you cross vendor 
solutions is when I think doing a simple API with an XML or JSON 
exchange helps keep your options open.


John
ma...@fusionlink.com

On 3/20/14, 1:46 PM, DeJong, Nathan D. wrote:


Thanks Charlie and John.

We are looking at doing a project this summer that involves connecting 
with Exchange 2013 for calendaring purposes.  We are still running CF8 
and looking to upgrade to CF10/11 or possibly move to Railo.  I was 
trying to search for any resources about connecting ColdFusion and 
Exchange 2013 but not finding much information besides CF10 and 
Exchange 2010. With Railo I saw a recommendation to use a 3^rd party 
java implementation called JWebServices for Exchange. I had not seen 
anything about using .Net so I will look into that further as well.


Thanks,

Nathan

*From:*ad...@acfug.org [mailto:ad...@acfug.org] *On Behalf Of *John Mason
*Sent:* Wednesday, March 19, 2014 9:50 PM
*To:* discussion@acfug.org
*Subject:* Re: [ACFUG Discuss] CF10 and Exchange 2013

Given the history and simply crossing vendor boundaries is always 
problematic, it's more than likely a better idea to interact with 
Exchange through .Net and then talk to .Net via an API you develop. 
Expecting the cfexchange tags to keep up with Microsoft changes is 
unrealistic as we have seen.


John
ma...@fusionlink.com <mailto:ma...@fusionlink.com>


On 3/19/14, 9:33 PM, Charlie Arehart wrote:

CF10 added support for Exchange 2010, not 13. (See that and other
features of CF10 here:

http://www.carehart.org/blog/client/index.cfm/2012/3/7/charlie_areharts_ultimate_cf10_new_features_list0

As for CF11/Splendor, the feature set is not complete, but I see
no reference to 2013 in the PDFs available at labs.adobe.com.

That said, just because it's not "supported" doesn't mean it won't
work. Are you finding that it does not? If so, there could be
other issues that are not related to CF's support of it. I find
many struggle with Exchange integration for all kinds of reasons.

Perhaps someone with more experience may speak up, or share more
details on what's happening for you.

/charlie

*From:*ad...@acfug.org <mailto:ad...@acfug.org>
[mailto:ad...@acfug.org] *On Behalf Of *DeJong, Nathan D.
*Sent:* Wednesday, March 19, 2014 1:44 PM
*To:* discussion@acfug.org <mailto:discussion@acfug.org>
*Subject:* [ACFUG Discuss] CF10 and Exchange 2013

Hey, I am wondering if anyone knows if CF10 works with Microsoft
Exchange 2013?  Or if not, if CF11 will support it?

Thanks,

Nathan


-
To unsubscribe from this list, manage your profile @
http://www.acfug.org?fa=login.edituserform

For more info, see http://www.acfug.org/mailinglists
Archive @ http://www.mail-archive.com/discussion%40acfug.org/
List hosted by FusionLink <http://www.fusionlink.com>
-


-
To unsubscribe from this list, manage your profile @
http://www.acfug.org?fa=login.edituserform

For more info, see http://www.acfug.org/mailinglists
Archive @ http://www.mail-archive.com/discussion%40acfug.org/
List hosted by FusionLink <http://www.fusionlink.com>
-


-
To unsubscribe from this list, manage your profile @
http://www.acfug.org?fa=login.edituserform

For more info, see http://www.acfug.org/mailinglists
Archive @ http://www.mail-archive.com/discussion%40acfug.org/
List hosted by FusionLink <http://www.fusionlink.com>
-


-
To unsubscribe from this list, manage your profile @
http://www.acfug.org?fa=login.edituserform

For more info, see http://www.acfug.org/mailinglists
Archive @ http://www.mail-archive.com/discussion%40acfug.org/
List hosted by FusionLink <http://www.fusionlink.com>
- 





-
To unsubscribe from this list, manage your profile @ 
http://www.acfug.org?fa=login.edituserform


For more info, see http://www.acfug.org/mailinglists
Archive @ http://www.mail-archive.com/discussion%40acfug.org/
List hosted by http://www.fusionlink.com
-



Re: [ACFUG Discuss] CF10 and Exchange 2013

2014-03-19 Thread John Mason
Given the history and simply crossing vendor boundaries is always 
problematic, it's more than likely a better idea to interact with 
Exchange through .Net and then talk to .Net via an API you develop. 
Expecting the cfexchange tags to keep up with Microsoft changes is 
unrealistic as we have seen.


John
ma...@fusionlink.com


On 3/19/14, 9:33 PM, Charlie Arehart wrote:


CF10 added support for Exchange 2010, not 13. (See that and other 
features of CF10 here: 
http://www.carehart.org/blog/client/index.cfm/2012/3/7/charlie_areharts_ultimate_cf10_new_features_list0


As for CF11/Splendor, the feature set is not complete, but I see no 
reference to 2013 in the PDFs available at labs.adobe.com.


That said, just because it's not "supported" doesn't mean it won't 
work. Are you finding that it does not? If so, there could be other 
issues that are not related to CF's support of it. I find many 
struggle with Exchange integration for all kinds of reasons.


Perhaps someone with more experience may speak up, or share more 
details on what's happening for you.


/charlie

*From:*ad...@acfug.org [mailto:ad...@acfug.org] *On Behalf Of *DeJong, 
Nathan D.

*Sent:* Wednesday, March 19, 2014 1:44 PM
*To:* discussion@acfug.org
*Subject:* [ACFUG Discuss] CF10 and Exchange 2013

Hey, I am wondering if anyone knows if CF10 works with Microsoft 
Exchange 2013?  Or if not, if CF11 will support it?


Thanks,

Nathan


-
To unsubscribe from this list, manage your profile @
http://www.acfug.org?fa=login.edituserform

For more info, see http://www.acfug.org/mailinglists
Archive @ http://www.mail-archive.com/discussion%40acfug.org/
List hosted by FusionLink 
-


-
To unsubscribe from this list, manage your profile @
http://www.acfug.org?fa=login.edituserform

For more info, see http://www.acfug.org/mailinglists
Archive @ http://www.mail-archive.com/discussion%40acfug.org/
List hosted by FusionLink 
- 





-
To unsubscribe from this list, manage your profile @ 
http://www.acfug.org?fa=login.edituserform


For more info, see http://www.acfug.org/mailinglists
Archive @ http://www.mail-archive.com/discussion%40acfug.org/
List hosted by http://www.fusionlink.com
-



[ACFUG Discuss] Security update for Mura CMS

2014-01-29 Thread John Mason
A very important security update for Mura just came out. Please update 
your installations asap.


http://www.getmura.com/blog/important-security-patch-available-for-mura-cms-update-now/

John
ma...@fusionlink.com




-
To unsubscribe from this list, manage your profile @ 
http://www.acfug.org?fa=login.edituserform


For more info, see http://www.acfug.org/mailinglists
Archive @ http://www.mail-archive.com/discussion%40acfug.org/
List hosted by http://www.fusionlink.com
-





Re: [ACFUG Discuss] CFLDAP oddity

2013-11-04 Thread John Mason
That sounds like a possible hacking attempt. I would look through your 
logs and see if someone is exploiting something in your coding. There's 
nothing inherent in the tag that would cause this.


John
ma...@fusionlink.com


On 11/4/13 6:01 PM, Rob Saxon wrote:


CF gurus,

Our LDAP administrator informed us that our online directory 
application was making 17000 thousand connection requests to the LDAP 
server in the course of a few hours. Our web logs show that, at most, 
about 800 requests were made during that time.  Is there something 
about the CFLDAP tag that would suddenly generate that kind of traffic?


Thanks,

Rob

---
Rob Saxon
Director
Web Management
Mercer University
478-301-5550


-
To unsubscribe from this list, manage your profile @
http://www.acfug.org?fa=login.edituserform

For more info, see http://www.acfug.org/mailinglists
Archive @ http://www.mail-archive.com/discussion%40acfug.org/
List hosted by FusionLink 
- 





-
To unsubscribe from this list, manage your profile @ 
http://www.acfug.org?fa=login.edituserform


For more info, see http://www.acfug.org/mailinglists
Archive @ http://www.mail-archive.com/discussion%40acfug.org/
List hosted by http://www.fusionlink.com
-



Re: [ACFUG Discuss] Meeting tonight - Lightning Talks

2013-10-09 Thread John Mason

Great transcendental numbers made it in :)

On 10/9/13 3:06 PM, Douglas Knudsen wrote:

Creating SVG on the fly and estimating Pi

DK

Douglas Knudsen
http://www.cubicleman.com
this is my signature, like it?


On Wed, Oct 9, 2013 at 10:45 AM, John Mason <mailto:ma...@fusionlink.com>> wrote:


Just a reminder that our normal monthly meeting is tonight (keep
not of the new location).

http://www.meetup.com/AtlantaWTG/events/137302262/

If you are planning on presenting a topic tonight, can you post it
here on the list.

thanks,
John
ma...@fusionlink.com <mailto:ma...@fusionlink.com>




-
To unsubscribe from this list, manage your profile @
http://www.acfug.org?fa=login.edituserform

For more info, see http://www.acfug.org/mailinglists
Archive @ http://www.mail-archive.com/discussion%40acfug.org/
List hosted by http://www.fusionlink.com
-









-
To unsubscribe from this list, manage your profile @ 
http://www.acfug.org?fa=login.edituserform


For more info, see http://www.acfug.org/mailinglists
Archive @ http://www.mail-archive.com/discussion%40acfug.org/
List hosted by http://www.fusionlink.com
-



[ACFUG Discuss] Meeting tonight - Lightning Talks

2013-10-09 Thread John Mason
Just a reminder that our normal monthly meeting is tonight (keep not of 
the new location).


http://www.meetup.com/AtlantaWTG/events/137302262/

If you are planning on presenting a topic tonight, can you post it here 
on the list.


thanks,
John
ma...@fusionlink.com




-
To unsubscribe from this list, manage your profile @ 
http://www.acfug.org?fa=login.edituserform


For more info, see http://www.acfug.org/mailinglists
Archive @ http://www.mail-archive.com/discussion%40acfug.org/
List hosted by http://www.fusionlink.com
-





[ACFUG Discuss] Tomorrow's meeting postponed until next week

2013-09-03 Thread John Mason
Sorry folks, something has come up and we need to reschedule the meeting 
that was set for tomorrow to next week. The new date hasn't been 
confirmed yet.


So tomorrow's meeting is postponed until next week (more than likely on 
the 11th). Hope everyone had a good Labor Day. Hope to see you at the 
meeting.


John
ma...@fusionlink.com



-
To unsubscribe from this list, manage your profile @ 
http://www.acfug.org?fa=login.edituserform


For more info, see http://www.acfug.org/mailinglists
Archive @ http://www.mail-archive.com/discussion%40acfug.org/
List hosted by http://www.fusionlink.com
-





[ACFUG Discuss] Atlanta Web Technology Group

2013-08-29 Thread John Mason

Ok, here's some very big news.

The old Flex user group and our ACFUG group have now merge to form the 
Atlanta Web Technology Group!


In an effort to stay current with the changes in the industry, we felt 
it was time to retool the group to hit a wider audience. We will still 
have topics and discussion on CF, but we can now also include a wider 
range of topics.


The first meeting is next week, Wednesday Sept 4 and will be a Lightning 
Talk, so anything goes as long as it relates to web or mobile 
technologies. These are short and simple 10 minute presentations. Feel 
free to contact me if you would like to present a topic.


If you were a member of the old Atlanta Flex group, you have already 
received a couple of emails on the changes. There's nothing more you 
need to do. If you weren't a member of the Flex group, then we need you 
to join up the newly formed group to keep receiving the meeting 
notifications and TechLunch announcements. So please take a minute and 
join the new group at..


http://www.meetup.com/AtlantaWTG

Additional changes will be coming, but this is it for now. Hope everyone 
is as excited as I am in this new direction.


thanks,
John
ma...@fusionlink.com






-
To unsubscribe from this list, manage your profile @ 
http://www.acfug.org?fa=login.edituserform


For more info, see http://www.acfug.org/mailinglists
Archive @ http://www.mail-archive.com/discussion%40acfug.org/
List hosted by http://www.fusionlink.com
-





[ACFUG Discuss] Lightning Talks for Sept?

2013-08-23 Thread John Mason
We're thinking about doing some lightning talks for the Sept ACFUG 
meeting. These are short 10min presentations on just about anything. If 
you are interesting in throwing a topic in, please feel free to email.


John
ma...@fusionlink.com




-
To unsubscribe from this list, manage your profile @ 
http://www.acfug.org?fa=login.edituserform


For more info, see http://www.acfug.org/mailinglists
Archive @ http://www.mail-archive.com/discussion%40acfug.org/
List hosted by http://www.fusionlink.com
-





[ACFUG Discuss] ACFUG August Meeting cancelled

2013-08-05 Thread John Mason
We have to cancel the meeting for this month. We'll have a meeting lined 
up for Sept and should have a topic/speaker posted soon.


John
ma...@fusionlink.com




-
To unsubscribe from this list, manage your profile @ 
http://www.acfug.org?fa=login.edituserform


For more info, see http://www.acfug.org/mailinglists
Archive @ http://www.mail-archive.com/discussion%40acfug.org/
List hosted by http://www.fusionlink.com
-





[ACFUG Discuss] July Meeting Cancelled

2013-07-08 Thread John Mason
Sorry folks, we have to cancel the ACFUG meeting for this month. We 
should have one for August. Hope everyone is having a good summer so far.


John
ma...@fusionlink.com




-
To unsubscribe from this list, manage your profile @ 
http://www.acfug.org?fa=login.edituserform


For more info, see http://www.acfug.org/mailinglists
Archive @ http://www.mail-archive.com/discussion%40acfug.org/
List hosted by http://www.fusionlink.com
-





Re: [ACFUG Discuss] Meeting tonight?

2013-06-05 Thread John Mason
If you're on there, you should be getting those announcements, might 
need to check your spam folder just in case.


John
ma...@fusionlink.com


On 6/5/13 2:56 PM, Frank Moorman wrote:
I have a meetup account only for ACFUG... I am never on it except to 
acknowledge when I am going.


I do get emails (I noticed the CFLunch that was cancelled earlier...) 
but, because I never actually use meetup, I expect a meeting on the 
first Wednesday, and I did not receive any email about a scheduling 
delay, I was curious.


But thank you John, I'm glad I didn't waste a few gallons of gas...



On 06/05/2013 02:46 PM, John Mason wrote:

On 6/5/13 2:34 PM, Frank Moorman wrote:

Did I miss the email notice?

Is there a meeting tonight? topic?


-
To unsubscribe from this list, manage your profile @ 
http://www.acfug.org?fa=login.edituserform


For more info, see http://www.acfug.org/mailinglists
Archive @ http://www.mail-archive.com/discussion%40acfug.org/
List hosted by http://www.fusionlink.com
-




No, it's next week. You need to be on Meetup.com to get the 
announcements.


John
ma...@fusionlink.com




-
To unsubscribe from this list, manage your profile @ 
http://www.acfug.org?fa=login.edituserform


For more info, see http://www.acfug.org/mailinglists
Archive @ http://www.mail-archive.com/discussion%40acfug.org/
List hosted by http://www.fusionlink.com
-








-
To unsubscribe from this list, manage your profile @ 
http://www.acfug.org?fa=login.edituserform


For more info, see http://www.acfug.org/mailinglists
Archive @ http://www.mail-archive.com/discussion%40acfug.org/
List hosted by http://www.fusionlink.com
-








-
To unsubscribe from this list, manage your profile @ 
http://www.acfug.org?fa=login.edituserform


For more info, see http://www.acfug.org/mailinglists
Archive @ http://www.mail-archive.com/discussion%40acfug.org/
List hosted by http://www.fusionlink.com
-





Re: [ACFUG Discuss] Meeting tonight?

2013-06-05 Thread John Mason

On 6/5/13 2:34 PM, Frank Moorman wrote:

Did I miss the email notice?

Is there a meeting tonight? topic?


-
To unsubscribe from this list, manage your profile @ 
http://www.acfug.org?fa=login.edituserform


For more info, see http://www.acfug.org/mailinglists
Archive @ http://www.mail-archive.com/discussion%40acfug.org/
List hosted by http://www.fusionlink.com
-





No, it's next week. You need to be on Meetup.com to get the announcements.

John
ma...@fusionlink.com




-
To unsubscribe from this list, manage your profile @ 
http://www.acfug.org?fa=login.edituserform


For more info, see http://www.acfug.org/mailinglists
Archive @ http://www.mail-archive.com/discussion%40acfug.org/
List hosted by http://www.fusionlink.com
-





Re: [ACFUG Discuss] FYI - Security Advisory for ColdFusion - Active zero day exploit

2013-05-09 Thread John Mason
95% of the security issues that have come up lately have basically been 
around the same thing, locking down those areas.


John
ma...@fusionlink.com


On 5/9/13 10:04 AM, Ajas Mohammed wrote:
Nevermind, Charlie has links (How to lock down the /adminapi, 
/administrator, and /componentutils directories) in his blog post here 
http://www.carehart.org/blog/client/index.cfm/2013/1/2/Part2_serious_security_threat



iUseDropbox(http://db.tt/63Lvone9)
http://ajashadi.blogspot.com
We cannot become what we need to be, remaining what we are.
No matter what, find a way. Because thats what winners do.
You can't improve what you don't measure.
Quality is never an accident; it is always the result of high 
intention, sincere effort, intelligent direction and skillful 
execution; it represents the wise choice of many alternatives.



On Thu, May 9, 2013 at 9:32 AM, Ajas Mohammed > wrote:


Does anyone have instructions for IIS 6.0 ?


iUseDropbox(http://db.tt/63Lvone9)
http://ajashadi.blogspot.com
We cannot become what we need to be, remaining what we are.
No matter what, find a way. Because thats what winners do.
You can't improve what you don't measure.
Quality is never an accident; it is always the result of high
intention, sincere effort, intelligent direction and skillful
execution; it represents the wise choice of many alternatives.


On Thu, May 9, 2013 at 3:54 AM, Frank Moorman
mailto:stretch...@franksdomain.net>>
wrote:

All,

In case you have not heard... Adobe mentioned this last night...

https://www.adobe.com/support/security/advisories/apsa13-03.html

Essentially, the believe the exploit is already out there and
is actively infecting systems.

However, it can be prevented through access controls on the
CFIDE admin directories.



  AFFECTED SOFTWARE VERSIONS

ColdFusion 10, 9.0.2, 9.0.1 and 9.0 for Windows, Macintosh
and UNIX


  MITIGATIONS

Adobe recommends ColdFusion customers take the following
steps to mitigate this vulnerability:

  * Restrict public access to the CFIDE/administrator,
CFIDE/adminapi and CFIDE/gettingstarted directories by
following the hardening guidance in theColdFusion 9
Lockdown Guide

andColdFusion
10 Lockdown Guide



  * Refer to theColdFusion 9 Lockdown Guide

andColdFusion
10 Lockdown Guide

for
security best practices and further information on these
hardening techniques.


This is the first I have heard of the CFIDE/gettingstarted
directory, so I am assuming that is only on CF10. Another
directory that should be protected but it not mentioned on
this exploit(but has been mentioned on others) is the
CFIDE/componentutils directory.

If needed/desired, I can share some simple .htaccess samples
for people that need to protect CF on an apache server...

-
To unsubscribe from this list, manage your profile @
http://www.acfug.org?fa=login.edituserform

For more info, see http://www.acfug.org/mailinglists
Archive @ http://www.mail-archive.com/discussion%40acfug.org/
List hosted by FusionLink 
- 









-
To unsubscribe from this list, manage your profile @ 
http://www.acfug.org?fa=login.edituserform


For more info, see http://www.acfug.org/mailinglists
Archive @ http://www.mail-archive.com/discussion%40acfug.org/
List hosted by http://www.fusionlink.com
-



Re: [ACFUG Discuss] Quick Survey - Mura Users? Railo?

2012-11-02 Thread John Mason

On 11/2/12 10:18 AM, Cameron Childress wrote:
Next week at ACFUG I'm going to be going through Blue River's MuraCon 
slidedeck and talking about the upcoming Mura 6 (http://getmura.com/) 
release. I'm also going to run through Gert Franz's State of Railo 
slidedeck about new Railo 4 features and some other developments in 
the Railo camp.


I thought I'd check with the group beforehand and ask those who plan 
to attend:


1) Who's heard of Mura?
2) Who's using Mura?
3) Who's using Railo?

-Cameron

--
Cameron Childress
--
p:   678.637.5072
im: cameroncf
facebook  | twitter 
 | google+ 





1 yes
1 yes
1 yes





-
To unsubscribe from this list, manage your profile @ 
http://www.acfug.org?fa=login.edituserform


For more info, see http://www.acfug.org/mailinglists
Archive @ http://www.mail-archive.com/discussion%40acfug.org/
List hosted by http://www.fusionlink.com
-



Re: [ACFUG Discuss] Communicating with a data source moved to on another server

2012-09-09 Thread John Mason
In the CF admin you can specify any location to a local or remote mysql 
server.


You will need to install stunnel on both the database and cf boxes. The 
site has the install instructions. Once set it up, you would route the 
communication through it.


"If the server admin, needs to implement it, it will be pushed back 
since he is swamped."


He will and they always are :) ,but seriously you don't want the backend 
database communications to not be secured. If you are doing any 
e-commerce or sensitive stuff you would be leaving it wide open on the 
backend.


John
ma...@fusionlink.com





On 9/9/12 3:06 PM, Chris wrote:

Thanks John:

Can you please advice how I can implement option 2? I am new to this. 
My development machine has MySQL, Coldfusion and IIS running on the 
same box so I am not familiar with doing this.


Now, is using stunnel something I need to do or our server 
administrator? If the server admin, needs to implement it, it will be 
pushed back since he is swamped.


Thanks

----
*From:* John Mason 
*To:* discussion@acfug.org
*Sent:* Sunday, September 9, 2012 12:02 PM
*Subject:* Re: [ACFUG Discuss] Communicating with a data source moved 
to on another server


If you do option2, make sure that the datasource connection between 
the two servers is secure in some manner. Probably one of the easiest 
things to do is to use stunnel (http://www.stunnel.org/index.html) and 
create a simple SSL wrapper for the calls. Takes about 5mins to set up.


John
ma...@fusionlink.com <mailto:ma...@fusionlink.com>



On 9/8/12 9:42 PM, Troy Jones wrote:

Chris,
I think what you’re asking is that you want a cfc that is hosted on a 
remote server to access your datasource, hosted on your server? If 
so,  I do not know of a way to do that although it may be possible 
and I’m just not aware of it. I’d recommend one of two things:
1). Move your local datasource and database to the remote server and 
all will be good as before.
2). If this is not possible, then create a datasource on the remote 
server and point the connection to your server’s MySQL database.
*From:*ad...@acfug.org <mailto:ad...@acfug.org> 
[mailto:ad...@acfug.org] *On Behalf Of *Chris

*Sent:* Saturday, September 08, 2012 3:55 PM
*To:* discussion@acfug.org <mailto:discussion@acfug.org>
*Subject:* [ACFUG Discuss] Communicating with a data source moved to 
on another server
Initially, we had on the same box, a MySQL server, a Coldfusion 
server so when a MySQL database named "mydatabase" was referenced in 
the Coldfusion component file, the application worked.
The application is a Flex front end, Coldfusion middle tier and MySQL 
back end. The Flex component communicates with Coldfusion using 
remoting services.


Now, the Coldfusion is provided by a off-site hosting provider to 
avoid costs of a Coldfusion license. However, the datasource named 
"mydatabase"
cannot be accessed by the Coldfusion component since it is on the 
on-site server. The error message is "Unable to invoke CFC operation 
failed on the orf2344_cfvars data source"


What needs to be done so that the Coldfusion component can access the 
datasource named "mydatabase"? Our server administrator who changed 
the servers does not
have time to look into this so I need to find out what could have 
gone wrong and inform him how to fix it.

Any suggestions would be appreciated.
Thanks

No virus found in this message.
Checked by AVG - www.avg.com <http://www.avg.com/>
Version: 2012.0.2197 / Virus Database: 2437/5256 - Release Date: 09/08/12

-
To unsubscribe from this list, manage your profile @
http://www.acfug.org?fa=login.edituserform

For more info, see http://www.acfug.org/mailinglists
Archive @ http://www.mail-archive.com/discussion%40acfug.org/
List hosted by FusionLink <http://www.fusionlink.com/>
-

-
To unsubscribe from this list, manage your profile @
http://www.acfug.org?fa=login.edituserform 
<http://www.acfug.org/?fa=login.edituserform>


For more info, see http://www.acfug.org/mailinglists
Archive @ http://www.mail-archive.com/discussion%40acfug.org/
List hosted by FusionLink <http://www.fusionlink.com/>
- 



-
To unsubscribe from this list, manage your profile @
http://www.acfug.org?fa=login.edituserform 
<http://www.acfug.org/?fa=login.edituserform>


For more info, see http://www.acfug.org/mailinglists
Archive @ h

Re: [ACFUG Discuss] Communicating with a data source moved to on another server

2012-09-09 Thread John Mason
If you do option2, make sure that the datasource connection between the 
two servers is secure in some manner. Probably one of the easiest things 
to do is to use stunnel (http://www.stunnel.org/index.html) and create a 
simple SSL wrapper for the calls. Takes about 5mins to set up.


John
ma...@fusionlink.com



On 9/8/12 9:42 PM, Troy Jones wrote:


Chris,

I think what you're asking is that you want a cfc that is hosted on a 
remote server to access your datasource, hosted on your server? If 
so,  I do not know of a way to do that although it may be possible and 
I'm just not aware of it. I'd recommend one of two things:


1). Move your local datasource and database to the remote server and 
all will be good as before.


2). If this is not possible, then create a datasource on the remote 
server and point the connection to your server's MySQL database.


*From:*ad...@acfug.org [mailto:ad...@acfug.org] *On Behalf Of *Chris
*Sent:* Saturday, September 08, 2012 3:55 PM
*To:* discussion@acfug.org
*Subject:* [ACFUG Discuss] Communicating with a data source moved to 
on another server


Initially, we had on the same box, a MySQL server, a Coldfusion server 
so when a MySQL database named "mydatabase" was referenced in the 
Coldfusion component file, the application worked.
The application is a Flex front end, Coldfusion middle tier and MySQL 
back end. The Flex component communicates with Coldfusion using 
remoting services.



Now, the Coldfusion is provided by a off-site hosting provider to 
avoid costs of a Coldfusion license. However, the datasource named 
"mydatabase"
cannot be accessed by the Coldfusion component since it is on the 
on-site server. The error message is "Unable to invoke CFC operation 
failed on the orf2344_cfvars data source"


What needs to be done so that the Coldfusion component can access the 
datasource named "mydatabase"? Our server administrator who changed 
the servers does not
have time to look into this so I need to find out what could have gone 
wrong and inform him how to fix it.


Any suggestions would be appreciated.

Thanks



No virus found in this message.
Checked by AVG - www.avg.com 
Version: 2012.0.2197 / Virus Database: 2437/5256 - Release Date: 09/08/12


-
To unsubscribe from this list, manage your profile @
http://www.acfug.org?fa=login.edituserform

For more info, see http://www.acfug.org/mailinglists
Archive @ http://www.mail-archive.com/discussion%40acfug.org/
List hosted by FusionLink 
-


-
To unsubscribe from this list, manage your profile @
http://www.acfug.org?fa=login.edituserform

For more info, see http://www.acfug.org/mailinglists
Archive @ http://www.mail-archive.com/discussion%40acfug.org/
List hosted by FusionLink 
- 





-
To unsubscribe from this list, manage your profile @ 
http://www.acfug.org?fa=login.edituserform


For more info, see http://www.acfug.org/mailinglists
Archive @ http://www.mail-archive.com/discussion%40acfug.org/
List hosted by http://www.fusionlink.com
-



Re: [ACFUG Discuss] CFC path - bind autosuggest issue

2012-08-21 Thread John Mason
Ajas Mohammed can you contact me off list. I got an email about managed 
hosting and you were mentioned in it. Just trying to connect the dots :)


thanks,
John
ma...@fusionlink.com



-
To unsubscribe from this list, manage your profile @ 
http://www.acfug.org?fa=login.edituserform


For more info, see http://www.acfug.org/mailinglists
Archive @ http://www.mail-archive.com/discussion%40acfug.org/
List hosted by http://www.fusionlink.com
-





[ACFUG Discuss] NCDevCon

2012-08-20 Thread John Mason


Just forwarding this from Dan Wilson...


Hey Folks, I'm one of the founders of NCDevCon the largest developer 
conference in North Carolina. Our topic tracks this year are: Mobile, 
CSS3, HTML5, Javascript, ColdFusion and General Development.


We've got 39 days left until the big show and I'd appreciate any help in 
getting the word out.


Held on September 29 – 30, 2012 in Raleigh at Centennial Campus, 
NCDevCon is the best training and continuing education opportunity for 
technologists in the Triangle area.


Sponsors

Sponsored by leading organizations like Adobe Systems, NC State College 
of Textiles, TACFUG, Research in Motion, Verian and others, NCDevCon 
brings speakers from around the country to talk on technology topics 
relevant to software developers. The areas covered this year are Mobile, 
CSS3, HTML5, Javascript, ColdFusion and General Development.


Speakers

Marquee Speakers include Adam Lehman, Elisha Dvorak, Hemant Khandelwal 
and Raymond Camden, from Adobe Systems along with Jonathan LeBlanc and 
Pragati Rai from Paypal. Many other distinguished speakers from around 
the country round out the roster for NCDevCon 2012.


For the $200 registration fee, NCDevCon delivers quite a bit of value. 
44 different sessions run in 4 track categories. Attendees have their 
choice of 4 different sessions for each of the 11 time slots so there is 
always something interesting going on. At no extra cost, attendees 
receive lunch at the conference location on both Saturday and Sunday. 
Unlimited snacks, soda, juice and refreshments will be provided 
throughout the conference. Plus, attendees get access to the Saturday 
Night After-party held on the conference site with free food, beverages 
and opportunities to network with their fellow conference attendees.


Hands On Classes

NCDevCon also includes several instructor led hands-on classes at no 
additional charge for attendees. The hands-on classes are conducted in a 
Bring Your Own Laptop format. Since an instructor leads the class 
participants through practical application of a technology, this 
represents a great training opportunity for developers to learn new 
technology fast.


The current hands-on class list is:

Introduction to Mobile Applications with PhoneGap/Cordova

Building Applications With HTML5/CSS3/JavaScript

GIT: Choosing Workflows That Make Sense

JQuery Mobile 101

Authentication Using Twitter, Google, Facebook, And More

The 4th NCDevCon is shaping up to be the can't-miss developer training 
and conference event in Raleigh. If you would like more information 
about NCDevCon, visit the website at: http://ncdevcon.com/



-
To unsubscribe from this list, manage your profile @ 
http://www.acfug.org?fa=login.edituserform


For more info, see http://www.acfug.org/mailinglists
Archive @ http://www.mail-archive.com/discussion%40acfug.org/
List hosted by http://www.fusionlink.com
-





[ACFUG Discuss] CF 10 meeting this wednesday

2012-07-09 Thread John Mason
Just a reminder that the ACFUG July meeting is this Wednesday and we 
have Charlie Arehart and Stephen "Cutter" Blades presenting.


http://www.acfug.org


Also, I mentioned back in May (during our meeting about the job market) 
that if anyone needed a nice headshot to let me know and we could do 
some at the next meeting. A few people mentioned an interest. Please 
email me again and I'll see if we can do this either before or after the 
meeting. Thanks.


John
ma...@fusionlink.com




-
To unsubscribe from this list, manage your profile @ 
http://www.acfug.org?fa=login.edituserform


For more info, see http://www.acfug.org/mailinglists
Archive @ http://www.mail-archive.com/discussion%40acfug.org/
List hosted by http://www.fusionlink.com
-





Re: [ACFUG Discuss] LinkedIn hacked...

2012-06-20 Thread John Mason
I don't think there is a limit hence one of the reasons it should never 
be left publicly exposed.


John
ma...@fusionlink.com


On 6/20/12 8:43 AM, brooks.wil...@atl.frb.org wrote:
Question: how many login attempts does CF Administrator allow before 
it locks you out?


Sincerely, Brooks

*ADS* develops & supports effective, efficient and secure software 
solutions
*--* 


*Federal Reserve Bank of Atlanta *∙**Application Delivery Services
1000 Peachtree Street NE ∙ Atlanta,Georgia ∙ 30309-4470  404-498-8178


n╤КN▀╖╡ФЛr╦⌡yЗХ ьb╡X╛╤f╖j╡╒ЙИ╝┤Б∙ФКj


-
To unsubscribe from this list, manage your profile @ 
http://www.acfug.org?fa=login.edituserform


For more info, see http://www.acfug.org/mailinglists
Archive @ http://www.mail-archive.com/discussion%40acfug.org/
List hosted by http://www.fusionlink.com
-





[ACFUG Discuss] CF Developer week

2012-05-30 Thread John Mason
Just forwarding this on. This is a free online conference devoted to CF 
for an entire week. I good way to get the latest information on CF 10.


John
ma...@fusionlink.com



Hi All,

We are conducting the 2nd ColdFusion Developer week happening from 4th 
-- 8th June 2012. (Register here: http://adobe.com/go/cfdeveloperweek )


With the launch of ColdFusion 10, we are back with the 2nd ColdFusion 
Developer Week, a series of free, live webinars hosted by seasoned 
ColdFusion experts. The webinars cover a wide range of topics, from what 
ColdFusion is and how to code it, to more in-depth topics related to 
CF10- HTML5, REST, ORM, Security enhancements and more.


If you are a new developer, someone with little or no ColdFusion 
experience, or even if you have been using ColdFusion all your life, 
these sessions are ideal for you. The ColdFusion Developer Week provides 
something for everyone so sign up now (http://adobe.com/go/cfdeveloperweek)


Thanks,

*Rakshith*



-
To unsubscribe from this list, manage your profile @ 
http://www.acfug.org?fa=login.edituserform


For more info, see http://www.acfug.org/mailinglists
Archive @ http://www.mail-archive.com/discussion%40acfug.org/
List hosted by http://www.fusionlink.com
-



Re: [ACFUG Discuss] New Testing Lab - Device Lab Atlanta

2012-05-18 Thread John Mason

Very cool idea.


On 5/18/12 2:10 PM, Cameron Childress wrote:
Slightly off topic for some, but of value to many of you I am sure... 
 Device Lab Atlanta is looking for feedback.


"Device Lab Atlanta is an on premise testing lab located in Midtown 
Atlanta. For a small fee, you can visit our lab to test and debug your 
apps. You’ll get your own workspace, and access to any device you need 
while you’re here."


There's an interest list signup here:
http://devicelabatlanta.com

There's an optional followup survey after you indicate interest. Feel 
free to tweet / forward the link out if you find this type of facility 
worthwhile.


-Cameron

--
Cameron Childress
--
p:   678.637.5072
im: cameroncf
facebook  | twitter 
 | google+ 









-
To unsubscribe from this list, manage your profile @ 
http://www.acfug.org?fa=login.edituserform


For more info, see http://www.acfug.org/mailinglists
Archive @ http://www.mail-archive.com/discussion%40acfug.org/
List hosted by http://www.fusionlink.com
-



Re: [ACFUG Discuss] openCFML Foundation

2012-05-18 Thread John Mason

Wow, it's indeed been a while. Hope all is well for you Adam.

John

On 5/18/12 9:57 AM, Adam Churvis wrote:

Hey, remember the firestorm over this:

"Among other things, it means that when the time comes (relatively
soon), Adobe will most likely wash their hands clean of ColdFusion via
the open source route as well, rather than by trying to dump it on
another company."

Caught about twelve yards of hell over that one.

It will be interesting to see what happens.

I hope everyone's doing well.  Been a long time.

Adam

On Fri, May 18, 2012 at 9:41 AM, John Mason  wrote:

Indeed some interesting moves lately.

And just to be clear, I actually think that could be the best possible
future for CF going forward. Sort like with Spoon.as/Apache and Flex, it
could provide a new chance for life. The corporate Adobe umbrella I think
has been more of a problem than anything, so finally breaking free might be
the best possible way for CF to find new ground. Adobe has bigger challenges
anyway, so it would help them to stay focused on their core issues.

John
ma...@fusionlink.com




On 5/18/12 7:16 AM, Mark Fennell wrote:

Perhaps JM's call of the last Adobe CF is more real than speculation and
Adobe is planning on releasing CF into the open source universe much like it
did with action script. It would be a stretch, but perhaps Blue River picked
up on that in conversations with Adobe and kicked up involvement in the Open
CFML Foundation? All of this is mere speculation.

On 5/18/2012 1:03 AM, Charlie Arehart wrote:

Well they've sailed still farther out of the harbor: http://img.ly/imYv

/charlie



-Original Message-
From: ad...@acfug.org [mailto:ad...@acfug.org] On Behalf Of Josh Adams
Sent: Thursday, May 17, 2012 10:53 PM
To: discussion@acfug.org
Subject: Re: [ACFUG Discuss] openCFML Foundation

Well, okay: I meant to send that reply back only to John, not to the

entire

discussion list.

But since I did send it to the list, let me add a little clarity: last

year the

ColdFusion BU was in discussions with Blue River (the makers of the mura
content management system) about partnering for mutual promotion (Adobe
of
mura and Blue River of ColdFusion). It seemed to me good progress was

being

made there so I was therefore surprised to see Blue River's involvement
in

the

Open CFML Foundation. Clearly in the intervening months the Blue River

guys

have had a change of heart about what's best for their business--and as
I

said, I

take no exception with that but it is of course disappointing from the

Adobe

perspective.

Josh




On 5/17/12 10:46 PM, "Josh Adams"wrote:


Are you at cf.Objective()? Or just following news online?

It's interesting to me that the Blue River guys are involved in this:
just in August I thought we were making good progress in relationship
with them. I guess things have changed. I brought this to the attention
of the ColdFusion team when I heard about it; from there it's up to
them how to handle Blue River. Disappointing from an Adobe perspective
(though I certainly don't begrudge the Blue River guys doing what they
deem best for their business).

Josh




-
To unsubscribe from this list, manage your profile @
http://www.acfug.org?fa=login.edituserform

For more info, see http://www.acfug.org/mailinglists
Archive @ http://www.mail-archive.com/discussion%40acfug.org/
List hosted by http://www.fusionlink.com
-






-
To unsubscribe from this list, manage your profile @
http://www.acfug.org?fa=login.edituserform

For more info, see http://www.acfug.org/mailinglists
Archive @ http://www.mail-archive.com/discussion%40acfug.org/
List hosted by http://www.fusionlink.com
-










-
To unsubscribe from this list, manage your profile @ 
http://www.acfug.org?fa=login.edituserform


For more info, see http://www.acfug.org/mailinglists
Archive @ http://www.mail-archive.com/discussion%40acfug.org/
List hosted by http://www.fusionlink.com
-





Re: [ACFUG Discuss] openCFML Foundation

2012-05-18 Thread John Mason

Indeed some interesting moves lately.

And just to be clear, I actually think that could be the best possible 
future for CF going forward. Sort like with Spoon.as/Apache and Flex, it 
could provide a new chance for life. The corporate Adobe umbrella I 
think has been more of a problem than anything, so finally breaking free 
might be the best possible way for CF to find new ground. Adobe has 
bigger challenges anyway, so it would help them to stay focused on their 
core issues.


John
ma...@fusionlink.com



On 5/18/12 7:16 AM, Mark Fennell wrote:
Perhaps JM's call of the last Adobe CF is more real than speculation 
and Adobe is planning on releasing CF into the open source universe 
much like it did with action script. It would be a stretch, but 
perhaps Blue River picked up on that in conversations with Adobe and 
kicked up involvement in the Open CFML Foundation? All of this is mere 
speculation.


On 5/18/2012 1:03 AM, Charlie Arehart wrote:

Well they've sailed still farther out of the harbor: http://img.ly/imYv

/charlie



-Original Message-
From: ad...@acfug.org [mailto:ad...@acfug.org] On Behalf Of Josh Adams
Sent: Thursday, May 17, 2012 10:53 PM
To: discussion@acfug.org
Subject: Re: [ACFUG Discuss] openCFML Foundation

Well, okay: I meant to send that reply back only to John, not to the

entire

discussion list.

But since I did send it to the list, let me add a little clarity: last

year the
ColdFusion BU was in discussions with Blue River (the makers of the 
mura
content management system) about partnering for mutual promotion 
(Adobe of

mura and Blue River of ColdFusion). It seemed to me good progress was

being
made there so I was therefore surprised to see Blue River's 
involvement in

the

Open CFML Foundation. Clearly in the intervening months the Blue River

guys
have had a change of heart about what's best for their business--and 
as I

said, I

take no exception with that but it is of course disappointing from the

Adobe

perspective.

Josh




On 5/17/12 10:46 PM, "Josh Adams"  wrote:


Are you at cf.Objective()? Or just following news online?

It's interesting to me that the Blue River guys are involved in this:
just in August I thought we were making good progress in relationship
with them. I guess things have changed. I brought this to the 
attention

of the ColdFusion team when I heard about it; from there it's up to
them how to handle Blue River. Disappointing from an Adobe perspective
(though I certainly don't begrudge the Blue River guys doing what they
deem best for their business).

Josh





-
To unsubscribe from this list, manage your profile @
http://www.acfug.org?fa=login.edituserform

For more info, see http://www.acfug.org/mailinglists
Archive @ http://www.mail-archive.com/discussion%40acfug.org/
List hosted by http://www.fusionlink.com
-









-
To unsubscribe from this list, manage your profile @ 
http://www.acfug.org?fa=login.edituserform


For more info, see http://www.acfug.org/mailinglists
Archive @ http://www.mail-archive.com/discussion%40acfug.org/
List hosted by http://www.fusionlink.com
-





[ACFUG Discuss] openCFML Foundation

2012-05-16 Thread John Mason
Looks like the crew from Mura and Matt/Peter (from the old CF weekly 
podcast) are trying to start a open source CF foundation. Worth looking 
into.


http://www.opencfmlfoundation.org/

John
ma...@fusionlink.com




-
To unsubscribe from this list, manage your profile @ 
http://www.acfug.org?fa=login.edituserform


For more info, see http://www.acfug.org/mailinglists
Archive @ http://www.mail-archive.com/discussion%40acfug.org/
List hosted by http://www.fusionlink.com
-





[ACFUG Discuss] An important note about CF9/8 and Verity

2012-05-16 Thread John Mason

http://blogs.coldfusion.com/post.cfm/availability-of-coldfusion-9




-
To unsubscribe from this list, manage your profile @ 
http://www.acfug.org?fa=login.edituserform


For more info, see http://www.acfug.org/mailinglists
Archive @ http://www.mail-archive.com/discussion%40acfug.org/
List hosted by http://www.fusionlink.com
-





[ACFUG Discuss] ColdFusion 10 is now public

2012-05-15 Thread John Mason

http://www.adobe.com/products/coldfusion-family.html




-
To unsubscribe from this list, manage your profile @ 
http://www.acfug.org?fa=login.edituserform


For more info, see http://www.acfug.org/mailinglists
Archive @ http://www.mail-archive.com/discussion%40acfug.org/
List hosted by http://www.fusionlink.com
-





[ACFUG Discuss] Arial font in IE9

2012-04-26 Thread John Mason
Anyone else noticing this bug. Sounds like a licensing issue with Arial 
and with newer Windows machines.


http://social.technet.microsoft.com/Forums/en/ieitpropriorver/thread/75a1fe0f-4c00-4f20-b602-984f187aeb45


I've run across this on a couple of site. Not sure of a good solution to this 
other than using a cloud based font or switching to something else.

Thoughts?

John
ma...@fusionlink.com






-
To unsubscribe from this list, manage your profile @ 
http://www.acfug.org?fa=login.edituserform


For more info, see http://www.acfug.org/mailinglists
Archive @ http://www.mail-archive.com/discussion%40acfug.org/
List hosted by http://www.fusionlink.com
-





Re: [ACFUG Discuss] Unconscionable Adobe Behavior

2012-03-14 Thread John Mason
They use the promote Google toolbar for several years, it's simply 
McAfee now. It's always a good idea to take your time when installing 
something on your computer.


John



On 3/14/12 9:31 AM, Clint Willard wrote:
Ah ha. I disabled Flash in FF and made it ask me to install Flash. It 
does take you to the Adobe site to install Flash and it does "ask" if 
you want to install McAfee with a check box defaulted to checked. 
Simply uncheck it. Your working too fast man, slow down and notice the 
check boxes, it's standard practice. But yes, it's the first time I 
noticed the McAfee thing, doesn't bother me though.


Cheers,

*Clint Willard *
Senior ColdFusion Programmer Analyst
clint...@gmail.com 



On Wed, Mar 14, 2012 at 8:57 AM, Andrew Powell > wrote:


I think you're getting a bit too worked up.  Simply uninstall it
and move on.  Obviously it bothered you enough to craft an email
about it, but is it really a big deal?  Just uninstall McAfee and
be done with it.


On Mar 14, 2012, at 8:51 AM, Peyton Todd wrote:


The website is the one at the url below:


http://www.kodakgallery.com/gallery/creativeapps/slideShow/Main.jsp;jsessionid=F0820D54374464EDF158A9C6740AB907.ecom303_main?sourceId=533754321803&cm_mmc=Share-_-Personal-_-Email-_-Sharee-_-Images&token=7319175931105%3A201251901&_requestid=122667



And if it matters, the browser I was using in Firefox. But do
either of these things matter? Can I not assume they were merely
passing the ball to Adobe? Certainly the look and feel of the
installation windows were unmistakeably the Adobe style!

Peyton



*From:*Clint Willard mailto:clint...@gmail.com>>
*To:*discussion@acfug.org 
*Sent:*Wed, March 14, 2012 8:18:58 AM
*Subject:*Re: [ACFUG Discuss] Unconscionable Adobe Behavior

"Yesterday I went to a website" - What web site? Did it take you
to Adobe for real. It seem possible for someone to make an
installer with flash to include a copy of something else, not
sure. If so, it probably has an affiliate tracking attached to
make them money when you "hopefully" buy it. If "a website" tells
you that you need Flash, then get it from a trusted source like
Adobe, especially if it doesn't look right. If this is not the
case you should be more specific in your complaint. Personally
I've never had a Flash install include anything, let alone ask if
you want anything else that I can remember.

*Clint Willard*
Senior ColdFusion Programmer Analyst
clint...@gmail.com 



On Wed, Mar 14, 2012 at 7:06 AM, Peyton Toddmailto:peytont...@att.net>>wrote:

Hello all,

Can anyone please instruct me on how best to complain to
Adobe about a loathsome practice I have just experienced? (Or
perhaps, as their official representative, you, Josh, can do
this for me?)

Yesterday I went to a website, and was told I had to download
the latest version of Flash Player, which I agreed to do,
whereupon I found McAfee Security program being installed at
the same time. The previous practice was bad enough (in fact,
already despicable): one had to notice that the check box for
agreeing to download McAfee was already defaulted to Yes, and
explicitly un-check it to prevent this from happening. Now,
however, it simply installs McAfee without warning, and
without giving one any other option.

I had thought Adobe was a good company. But surely all will
agree that this is a disgusting practice truly beneath
contempt, perpetrated by scumbag scoundrels who should be
lined up before a firing squad immediately.

Peyton

-
To unsubscribe from this list, manage your profile @
http://www.acfug.org?fa=login.edituserform

For more info, seehttp://www.acfug.org/mailinglists
Archive @http://www.mail-archive.com/discussion%40acfug.org/
List hosted byFusionLink 
-



-
To unsubscribe from this list, manage your profile @
http://www.acfug.org?fa=login.edituserform

For more info, seehttp://www.acfug.org/mailinglists
Archive @http://www.mail-archive.com/discussion%40acfug.org/
List hosted byFusionLink 
--

[ACFUG Discuss] Meeting tonight and board elections

2012-03-07 Thread John Mason
Just a reminder that the ACFUG meeting is tonight. We'll be having a 
panel discussion on the new features in CF 10. We are also doing board 
elections for the 2012 year. Let me know if you want to serve on the 
board this year.


http://www.acfug.org

John
ma...@fusionlink.com




-
To unsubscribe from this list, manage your profile @ 
http://www.acfug.org?fa=login.edituserform


For more info, see http://www.acfug.org/mailinglists
Archive @ http://www.mail-archive.com/discussion%40acfug.org/
List hosted by http://www.fusionlink.com
-





[ACFUG Discuss] March Meeting and Board Elections

2012-02-29 Thread John Mason
We'll be having a panel discussion on the new release of ColdFusion 10 
Beta and its features. So prepare your questions and we'll have a fun 
night looking at the new release in more detail.


We also will be having board elections at this meeting for the 2012 
year. If you're interested in serving on the ACFUG Board, just let me 
know at ma...@fusionlink.com


Make sure to rsvp for the meeting at..

http://www.meetup.com/AtlantaCFUG/events/54284332/




-
To unsubscribe from this list, manage your profile @ 
http://www.acfug.org?fa=login.edituserform


For more info, see http://www.acfug.org/mailinglists
Archive @ http://www.mail-archive.com/discussion%40acfug.org/
List hosted by http://www.fusionlink.com
-





[ACFUG Discuss] CF 10 Beta Release

2012-02-17 Thread John Mason

The Cf 10 Beta release is up on labs.

http://labs.adobe.com/technologies/coldfusion10/

John
ma...@fusionlink.com




-
To unsubscribe from this list, manage your profile @ 
http://www.acfug.org?fa=login.edituserform


For more info, see http://www.acfug.org/mailinglists
Archive @ http://www.mail-archive.com/discussion%40acfug.org/
List hosted by http://www.fusionlink.com
-





[ACFUG Discuss] ACFUG Meeting is tomorrow

2012-01-31 Thread John Mason
Just a reminder. The Feb meeting is tomorrow. Charlie Arehart is 
scheduled in to present on new FusionAnalytics and FusionReactor 4.


You can RSVP at..
http://www.meetup.com/AtlantaCFUG/events/46273172/

John
ma...@fusionlink.com




-
To unsubscribe from this list, manage your profile @ 
http://www.acfug.org?fa=login.edituserform


For more info, see http://www.acfug.org/mailinglists
Archive @ http://www.mail-archive.com/discussion%40acfug.org/
List hosted by http://www.fusionlink.com
-





Re: [ACFUG Discuss] PermGen CF Server Memory Errors

2011-12-06 Thread John Mason
Actually if you can, please post your full jvm.config file. I'm 
wondering if maybe the heap is filling up then throwing things into the 
perm space.


John
ma...@fusionlink.com




On 12/6/11 10:09 PM, Cheyenne Throckmorton wrote:
One of our CF servers keeps needing to have the CF service rebooted on 
it in order to work and continue serving our sites 1-2x / week. 
 Fortunately we do have a web service on one of the other box that 
monitors this machine to let us know when it starts bugging out again.


The error I am getting on the server has to do with an out of memory 
perm gen space issue, something that there is tons of stuff online 
about but nothing that I've been able to succinctly tell is a good 
idea to look toward resolving the issue.  Here are the errors we get 
before the service fails.


javax.servlet.ServletException: ROOT CAUSE: 
java.lang.OutOfMemoryError: PermGen space


12/06 16:24:46 Error [jrpp-3954] - PermGen space The specific sequence 
of files included or processed is: 
F:\...\case-studies\ENDO-enduring-hot-seat-discussion\index.cfm''


12/06 16:24:46 error ROOT CAUSE: java.lang.OutOfMemoryError: PermGen space

javax.servlet.ServletException: ROOT CAUSE: 
java.lang.OutOfMemoryError: PermGen space



Server: Windows Server 2008 R2 64bit
ColdFusion  9,0,1,274733 Standard
Java Version:  1.6.0_24
RAM 8GB

JVM Arguments
-server -Dsun.io.useCanonCaches=false -XX:MaxPermSize=192m 
-XX:+UseParallelGC -Xbatch -Dcoldfusion.rootDir={application.home}/../ 
-Dcoldfusion.libPath={application.home}/../lib


Despite my attendance of multiple Charlie lectures and/or because of 
such attendance I certainly do not consider myself an expert in the 
memory underpinnings of CF.  What I do believe is happening through 
some research and late night testing is that essentially the server 
stores information (in think in cfclasses) that is essentially 
compiled java code.  It does this to speed the delivery of data 
generated by CF in a caching like mechanism.


There is a checkmark in the settings that says "Save Class Files" 
which I suspect would solve the problem if indeed this area is getting 
overflowed and not properly Garbage Collected (if GC even runs in 
PermGen).  However, unchecking that is not recommended for a 
production machine, and it would obviously slow down all of the sites. 
 Similarly I've seen posts that say to just increase the MaxPermSize, 
but I find many posts after those saying that is not solve and just 
delaying the problem.  I'd rather solve the problem.


Additionally, when observing the websites when it is acting up we get 
a lot of totally blank pages along with 200 OK http response codes.  I 
have also gotten partial pages at times, but that all leads me to some 
sort of partial template loading until the permgen runs out of memory.


Finally, I don't know that it is a 100% deal, but we have launched a 
new application on this server that makes use of the new ORM Hibernate 
functionality.  This happened right around the same time we started 
observing these issues.  This was my first shot at ORM within CF and I 
know I need to go back and re-look at how I have the lazy-loading set 
up.  I have a feeling that it can definitely be tuned better and that 
it's possible this type of code may make heavy use of the permgen 
space with dynamically loading data in the way that it works.  This 
heavy banging in the permgen along with an untuned JVM may be the 
combo that is causing our problems, or maybe I'm way off.  Figured I'd 
throw it out there to group to see what thoughts and solutions might 
be out there beyond my teams continued googling of words like 
"permgen", "coldfusion", "hibernate", "orm" and "arehart" :)


- Cheyenne Throckmorton

P.S. Looking forward to seeing folks at Whirlyball tomorrow night.

--
Cheyenne Throckmorton - Atlanta, GA
Blog  : www.CheyenneJack.com 
Twitter   : @cheyennejack
Founder : www.AtlantaUserGroups.com 
www.TheTallStreetJournal.com 
www.MohawksRock.com 





-
To unsubscribe from this list, manage your profile @ 
http://www.acfug.org?fa=login.edituserform


For more info, see http://www.acfug.org/mailinglists
Archive @ http://www.mail-archive.com/discussion%40acfug.org/
List hosted by http://www.fusionlink.com
-



Re: [ACFUG Discuss] PermGen CF Server Memory Errors

2011-12-06 Thread John Mason

I would go ahead and make the perm gen 256 or 300MB

I would be surprised if they are throwing the hibernate objects into the 
perm gen, but it sounds like that may be the case. Can you track the 
perm gen usage before that app loads in and then after to see if it 
increases when the hibernate app loads? Just throw in either merlin, 
fusionreactor or seefusion to see.


John
ma...@fusionlink.com







On 12/6/11 10:09 PM, Cheyenne Throckmorton wrote:
One of our CF servers keeps needing to have the CF service rebooted on 
it in order to work and continue serving our sites 1-2x / week. 
 Fortunately we do have a web service on one of the other box that 
monitors this machine to let us know when it starts bugging out again.


The error I am getting on the server has to do with an out of memory 
perm gen space issue, something that there is tons of stuff online 
about but nothing that I've been able to succinctly tell is a good 
idea to look toward resolving the issue.  Here are the errors we get 
before the service fails.


javax.servlet.ServletException: ROOT CAUSE: 
java.lang.OutOfMemoryError: PermGen space


12/06 16:24:46 Error [jrpp-3954] - PermGen space The specific sequence 
of files included or processed is: 
F:\...\case-studies\ENDO-enduring-hot-seat-discussion\index.cfm''


12/06 16:24:46 error ROOT CAUSE: java.lang.OutOfMemoryError: PermGen space

javax.servlet.ServletException: ROOT CAUSE: 
java.lang.OutOfMemoryError: PermGen space



Server: Windows Server 2008 R2 64bit
ColdFusion  9,0,1,274733 Standard
Java Version:  1.6.0_24
RAM 8GB

JVM Arguments
-server -Dsun.io.useCanonCaches=false -XX:MaxPermSize=192m 
-XX:+UseParallelGC -Xbatch -Dcoldfusion.rootDir={application.home}/../ 
-Dcoldfusion.libPath={application.home}/../lib


Despite my attendance of multiple Charlie lectures and/or because of 
such attendance I certainly do not consider myself an expert in the 
memory underpinnings of CF.  What I do believe is happening through 
some research and late night testing is that essentially the server 
stores information (in think in cfclasses) that is essentially 
compiled java code.  It does this to speed the delivery of data 
generated by CF in a caching like mechanism.


There is a checkmark in the settings that says "Save Class Files" 
which I suspect would solve the problem if indeed this area is getting 
overflowed and not properly Garbage Collected (if GC even runs in 
PermGen).  However, unchecking that is not recommended for a 
production machine, and it would obviously slow down all of the sites. 
 Similarly I've seen posts that say to just increase the MaxPermSize, 
but I find many posts after those saying that is not solve and just 
delaying the problem.  I'd rather solve the problem.


Additionally, when observing the websites when it is acting up we get 
a lot of totally blank pages along with 200 OK http response codes.  I 
have also gotten partial pages at times, but that all leads me to some 
sort of partial template loading until the permgen runs out of memory.


Finally, I don't know that it is a 100% deal, but we have launched a 
new application on this server that makes use of the new ORM Hibernate 
functionality.  This happened right around the same time we started 
observing these issues.  This was my first shot at ORM within CF and I 
know I need to go back and re-look at how I have the lazy-loading set 
up.  I have a feeling that it can definitely be tuned better and that 
it's possible this type of code may make heavy use of the permgen 
space with dynamically loading data in the way that it works.  This 
heavy banging in the permgen along with an untuned JVM may be the 
combo that is causing our problems, or maybe I'm way off.  Figured I'd 
throw it out there to group to see what thoughts and solutions might 
be out there beyond my teams continued googling of words like 
"permgen", "coldfusion", "hibernate", "orm" and "arehart" :)


- Cheyenne Throckmorton

P.S. Looking forward to seeing folks at Whirlyball tomorrow night.

--
Cheyenne Throckmorton - Atlanta, GA
Blog  : www.CheyenneJack.com 
Twitter   : @cheyennejack
Founder : www.AtlantaUserGroups.com 
www.TheTallStreetJournal.com 
www.MohawksRock.com 





-
To unsubscribe from this list, manage your profile @ 
http://www.acfug.org?fa=login.edituserform


For more info, see http://www.acfug.org/mailinglists
Archive @ http://www.mail-archive.com/discussion%40acfug.org/
List hosted by http://www.fusionlink.com
-



[ACFUG Discuss] Tonight's meeting

2011-11-09 Thread John Mason
There's been a lot of news coming out of Adobe this week. Just fyi, we 
will be having a group discussion at the later half of the meeting on 
the Adobe news. I may have to shorten my cross-site request forgery talk 
a bit, but I think we can squeeze everything in.


Hope to see you there. Make sure to RSVP at http://www.acfug.org

John
ma...@fusionlink.com





-
To unsubscribe from this list, manage your profile @ 
http://www.acfug.org?fa=login.edituserform


For more info, see http://www.acfug.org/mailinglists
Archive @ http://www.mail-archive.com/discussion%40acfug.org/
List hosted by http://www.fusionlink.com
-





[ACFUG Discuss] ACFUG Meeting is Tomorrow

2011-11-08 Thread John Mason

Make sure to RSVP at http://www.acfug.org

We have two topics set for tomorrow.

Black and White Stripes to Data: Using Search to Transform UPCs into 
Information

by Scott Talsma

Cross-site Request Forgery
by John Mason

Hope to see you there.

John
ma...@fusionlink.com




-
To unsubscribe from this list, manage your profile @ 
http://www.acfug.org?fa=login.edituserform


For more info, see http://www.acfug.org/mailinglists
Archive @ http://www.mail-archive.com/discussion%40acfug.org/
List hosted by http://www.fusionlink.com
-





[ACFUG Discuss] November ACFUG Meeting

2011-11-01 Thread John Mason

Just fyi, the meeting will be next week on the 9th and not tomorrow.

Meeting Topic: Black and White Stripes to Data: Using Search to 
Transform UPCs into Information


So you have an UPC symbol; how can you transform it into usable data? 
What are the pitfalls? This talk addresses these questions and shows 
some code, using existing search APIs, Google Products and others to go 
from a bunch of line to data that your application can actually use.


About the Speaker:

Scott Talsma is an independent freelance for Straight Flush Tech, LLC. 
He is currently engaged by several organizations throughout the 
Southeast. Straight Flush Tech specializes in developing Flex, Flash and 
ColdFusion solutions for a wide variety of customers in various fields, 
including aviation, warehousing, education and eLearning.


RSVP at
http://www.acfug.org




-
To unsubscribe from this list, manage your profile @ 
http://www.acfug.org?fa=login.edituserform


For more info, see http://www.acfug.org/mailinglists
Archive @ http://www.mail-archive.com/discussion%40acfug.org/
List hosted by http://www.fusionlink.com
-





[ACFUG Discuss] October ACFUG Meeting is this Wednesday

2011-10-10 Thread John Mason
Our October meeting will have a panel discussion on the new stuff 
announced at this year's Adobe MAX conference. If you want to stay 
up-to-date on the latest news and tech advances in the world of Adobe, 
you will not want to miss the meeting.


Please RSVP at..
http://www.meetup.com/AtlantaCFUG/events/34414982/




-
To unsubscribe from this list, manage your profile @ 
http://www.acfug.org?fa=login.edituserform


For more info, see http://www.acfug.org/mailinglists
Archive @ http://www.mail-archive.com/discussion%40acfug.org/
List hosted by http://www.fusionlink.com
-





[ACFUG Discuss] Meeting is next week

2011-10-05 Thread John Mason
Just want to remind people that the next ACFUG meeting will be next 
week, NOT today :)


We'll have a MAX wrapup for the topic.

John
ma...@fusionlink.com



-
To unsubscribe from this list, manage your profile @ 
http://www.acfug.org?fa=login.edituserform


For more info, see http://www.acfug.org/mailinglists
Archive @ http://www.mail-archive.com/discussion%40acfug.org/
List hosted by http://www.fusionlink.com
-





[ACFUG Discuss] Fwd: ColdFusion Developer Week - AUG - Announce - Adobe User Group - Announce

2011-09-12 Thread John Mason



 Original Message 
Subject: 	ColdFusion Developer Week - AUG - Announce - Adobe User Group 
- Announce

Date:   Mon, 12 Sep 2011 11:54:17 -0700
From:   John Koch - AUG - Announce 
To: John Mason 



John Koch wrote:

This week is ColdFusion Developer Week! Please share the event links 
with your community and followers.


http://adobe.ly/CFDevWeek

Here is a rundown on the CF Developer Week events

Getting Started with Web Application Development Using ColdFusion
http://adobe.ly/CFWeek01
Monday 10AM PDT

Working with PDFs Made Easy with ColdFusion
http://adobe.ly/CFWeek02
Monday  1PM PDT

Introduction to ColdFusion Components (CFCs)
http://adobe.ly/CFWeek03
Monday  4PM PDT

Improve Your ColdFusion Code Through Unit Testing
http://adobe.ly/CFWeek04
Tuesday  10AM PDT

Using ColdFusion Frameworks for Application Development
http://adobe.ly/CFWeek05
Tuesday  1PM PDT

Understanding and Using the ColdFusion Server Monitor
http://adobe.ly/CFWeek06
Tuesday  4PM PDT

ColdFusion Builder: The Professional IDE to Boost Your Productivity
http://adobe.ly/CFWeek07
Wednesday  10AM PDT

Expand Functionality with ColdFusion Builder Extensions
http://adobe.ly/CFWeek08
Wednesday  1PM PDT

Developing Your First Application Using ColdFusion 9 and ORM
http://adobe.ly/CFWeek09
Thursday  10AM PDT

Speed Up Your Apps with Caching in ColdFusion
http://adobe.ly/CFWeek10
Thursday  11:30AM PDT

ColdFusion and Mobile - Browser-Based Applications Made Easy
http://adobe.ly/CFWeek11
Thursday  1PM PDT

Become ColdFusion Empowered in Under an Hour
http://adobe.ly/CFWeek12
Thursday  4PM PDT

Accessing ColdFusion Services From Flex Applications
http://adobe.ly/CFWeek13
Friday  10AM PDT

Securing your ColdFusion Applications
http://adobe.ly/CFWeek14
Friday  11:30AM PDT

Make Your Site Searchable with Solr
http://adobe.ly/CFWeek15
Friday  1PM PDT

Bringing ColdFusion to Java SpringMVC
http://adobe.ly/CFWeek16
Friday  4PM PDT




~-~-~-~

You may respond to this E-mail by clicking "Reply" in your E-mail 
client. The body of your E-mail will become the body of your Post.
To create a new Topic in this Forum send a NEW E-mail to 
prfor...@adobe.com and ensure the first word in the subject line is 
AUGANC, followed by your Topic Title (Example Subject: AUGANC What's up 
with the weather recently?. The body of your E-mail will become the body 
of your post.
For a list of all Forums in this Community that you may be able to 
interract with via E-mail, send a NEW E-mail message to 
prfor...@adobe.com with a blank Subject.
You may view This Thread 
<http://prerelease.adobe.com/r/?2959cb4f3b8e46c88beee1efa36e1761> or 
This Post 
<http://prerelease.adobe.com/r/?7f10e725b4964242bc454a0788b5c882> online.


~-~-~-~




-
To unsubscribe from this list, manage your profile @ 
http://www.acfug.org?fa=login.edituserform


For more info, see http://www.acfug.org/mailinglists
Archive @ http://www.mail-archive.com/discussion%40acfug.org/
List hosted by http://www.fusionlink.com
-



[ACFUG Discuss] ACFUG Meeting is Tonight

2011-09-07 Thread John Mason
Ever wonder how to get into the cloud stuff, then tonight's the night. 
Please make sure to RSVP at 
http://www.meetup.com/AtlantaCFUG/events/29865061/


What does it take to get your ColdFusion application running in Amazon's 
Cloud? What are the costs? What types of instances will you need? What 
about backups, databases, server access, email?  What are availability 
zones and do you need more than one?  Can my app still send out email? 
 What are the gotchas of running in the cloud and is it safe for the 
enterprise?  How do I scale my small application to millions of page 
views per month?  If you find yourself pondering answers to these 
questions - this presentation is for you!


*About the Speaker:*

Jeremy Bruck is presently a managing partner with Strategic Growth 
Services (SGS).  SGS focuses on building clean, beautiful and intuitive 
web and mobile applications.  Prior to joining SGS, Jeremy was CTO for 
MFG.com  and prior to MFG.com  he was 
CTO for 1stAg.com .   Jeremy Bruck has been building 
CF applications since version 3.1 back when it was Allaire for clients 
ranging from Fortune 100 companies (MCI, AST Computers, UPS, Cargil, 
ADM) to startups across diverse industries.






-
To unsubscribe from this list, manage your profile @ 
http://www.acfug.org?fa=login.edituserform


For more info, see http://www.acfug.org/mailinglists
Archive @ http://www.mail-archive.com/discussion%40acfug.org/
List hosted by http://www.fusionlink.com
-



Re: [ACFUG Discuss] Server-side Actionscript

2011-09-01 Thread John Mason
Not yet from Adobe. There is server-side ECMAscript with Node.js. Since 
actionscript and ecmascript are so closely related, it might be worth 
looking that route.


You could also do an air app with a socket server to have cf call it 
that way.



John
ma...@fusionlink.com


On 9/1/11 1:14 PM, Howard Fore wrote:

Hey,

Has anyone used Server-side Actionscript? Is it just another way for 
Flash/Flex to talk to CF? I was hoping it would allow communication 
the other way, where I could have a CFM or CFC call an Actionscript 
function. I have a third-party SWF (AnyChart) that has a function to 
export any chart it creates as PNG (or JPEG) but I wanted to do it on 
the backend, not force the user to do it in the browser.


--
Howard Fore, howard.f...@hofo.com 
"A novice asked the master, 'What is the true meaning of programming?' 
The master replied: 'Eat when you are hungry, sleep when you are 
fatigued, program when the moment is right.' " - Geoffrey James 
 
- From The Zen of Programming.





-
To unsubscribe from this list, manage your profile @ 
http://www.acfug.org?fa=login.edituserform


For more info, see http://www.acfug.org/mailinglists
Archive @ http://www.mail-archive.com/discussion%40acfug.org/
List hosted by http://www.fusionlink.com
-



[ACFUG Discuss] Sept ACFUG Meeting has been posted

2011-08-18 Thread John Mason
The Sept meeting has just been posted. Jeremy Bruck will be talking 
about Amazon's Cloud services and how you can use them in ColdFusion.


http://www.meetup.com/AtlantaCFUG/events/29865061/

John
ma...@fusionlink.com




-
To unsubscribe from this list, manage your profile @ 
http://www.acfug.org?fa=login.edituserform


For more info, see http://www.acfug.org/mailinglists
Archive @ http://www.mail-archive.com/discussion%40acfug.org/
List hosted by http://www.fusionlink.com
-





[ACFUG Discuss] August ACFUG Meeting is Tonight

2011-08-03 Thread John Mason


This week we have Matt Fuller presenting on CF, Facebook and Social Gaming.

The presentation will go over how CF, Facebook, HTML5 and Gamification
were utilized to increase awareness and education about the influenza
virus. I look forward to seeing you there, and I hope you'll come ready
to share some of your own experience in this area.

http://www.acfug.org




-
To unsubscribe from this list, manage your profile @ 
http://www.acfug.org?fa=login.edituserform


For more info, see http://www.acfug.org/mailinglists
Archive @ http://www.mail-archive.com/discussion%40acfug.org/
List hosted by http://www.fusionlink.com
-





[ACFUG Discuss] August ACFUG Meeting is Tomorrow

2011-08-02 Thread John Mason



This week we have Matt Fuller presenting on CF, Facebook and Social Gaming.

The presentation will go over how CF, Facebook, HTML5 and Gamification
were utilized to increase awareness and education about the influenza
virus. I look forward to seeing you there, and I hope you'll come ready
to share some of your own experience in this area.

http://www.acfug.org









-
To unsubscribe from this list, manage your profile @ 
http://www.acfug.org?fa=login.edituserform


For more info, see http://www.acfug.org/mailinglists
Archive @ http://www.mail-archive.com/discussion%40acfug.org/
List hosted by http://www.fusionlink.com
-





[ACFUG Discuss] August ACFUG Meeting is this Wednesday

2011-08-01 Thread John Mason


This week we have Matt Fuller presenting on CF, Facebook and Social Gaming.

The presentation will go over how CF, Facebook, HTML5 and Gamification
were utilized to increase awareness and education about the influenza
virus. I look forward to seeing you there, and I hope you'll come ready
to share some of your own experience in this area.

http://www.acfug.org




-
To unsubscribe from this list, manage your profile @ 
http://www.acfug.org?fa=login.edituserform


For more info, see http://www.acfug.org/mailinglists
Archive @ http://www.mail-archive.com/discussion%40acfug.org/
List hosted by http://www.fusionlink.com
-





Re: [ACFUG Discuss] How to have colleague join mailing list

2011-07-22 Thread John Mason

Just have him send me his email address.

John
ma...@fusionlink.com

On 7/22/11 8:00 AM, Ed Szwedo wrote:

Hey there,

I want a colleague of mine to join the mailing list.  The links I have
found at the bottom of ACFUG emails point to  a page that redirects
here:

http://www.meetup.com/AtlantaCFUG/mailinglists/ which talks about  a
meetup group.  Don't see how to join the mailing list.

Help please.

ed

__
Ed Szwedo
Web Development Team Lead
ECS Team - ITS-EPA II Contractor

109 TW Alexander Drive, Building NCC, Mail Drop N176-05, Research
Triangle Park, NC 27711
Information Technology Infrastructure Solutions | Office: (919)541-3955
| Fax: (919)541-3641 | szwedo...@epa.gov | www.ecs-federal.com



-
To unsubscribe from this list, manage your profile @
http://www.acfug.org?fa=login.edituserform

For more info, see http://www.acfug.org/mailinglists
Archive @ http://www.mail-archive.com/discussion%40acfug.org/
List hosted by http://www.fusionlink.com
-








-
To unsubscribe from this list, manage your profile @ 
http://www.acfug.org?fa=login.edituserform


For more info, see http://www.acfug.org/mailinglists
Archive @ http://www.mail-archive.com/discussion%40acfug.org/
List hosted by http://www.fusionlink.com
-





Re: [ACFUG Discuss] Fwd: [ria-23] Adobe MAX discount code!!

2011-07-18 Thread John Mason

Yep, that may be a good solution for the future.

John

On 7/18/11 8:25 PM, Charlie Arehart wrote:


It would be a shame not to forward it in the future. Quite a 
conundrum. (And I don't hold it against you, John, for not thinking of 
it. We appreciate all you do!)


One thought, now that we're on meetup.com, would be to put it instead 
in a page on the site that you have to be a member to see. Meetup does 
have a "pages" feature that would work well for that. Just something 
to consider.


If anyone wonders, when I share such things with the members of the 
Online CFMeetup (coldfusionmeetup.com), which is also a meetup.com 
group, our announcement mailing list (for that group) is managed by 
meetup.com, and is not archived. Perhaps someday the ACFUG 
announcement list may be migrated to that, and then that would be 
another solution to this challenge.


/charlie

*From:*ad...@acfug.org [mailto:ad...@acfug.org] *On Behalf Of *John Mason
*Sent:* Monday, July 18, 2011 5:32 PM
*To:* discussion@acfug.org
*Subject:* Re: [ACFUG Discuss] Fwd: [ria-23] Adobe MAX discount code!!

Ok, note to self not to simply forward these in the future. There's 
not a way to remove that fromt he archive but someone would have to 
know it's there to begin with to find it. I doubt there's anyone who's 
not already a member that would know to look for it.


John


-
To unsubscribe from this list, manage your profile @
http://www.acfug.org?fa=login.edituserform

For more info, see http://www.acfug.org/mailinglists
Archive @ http://www.mail-archive.com/discussion%40acfug.org/
List hosted by FusionLink <http://www.fusionlink.com>
- 





-
To unsubscribe from this list, manage your profile @ 
http://www.acfug.org?fa=login.edituserform


For more info, see http://www.acfug.org/mailinglists
Archive @ http://www.mail-archive.com/discussion%40acfug.org/
List hosted by http://www.fusionlink.com
-



Re: [ACFUG Discuss] Fwd: [ria-23] Adobe MAX discount code!!

2011-07-18 Thread John Mason
Ok, note to self not to simply forward these in the future. There's not 
a way to remove that fromt he archive but someone would have to know 
it's there to begin with to find it. I doubt there's anyone who's not 
already a member that would know to look for it.


John






On 7/18/11 4:45 PM, Steve Ross wrote:

FYI this list is searchable on the web...

http://www.mail-archive.com/discussion%40acfug.org/

On Mon, Jul 18, 2011 at 9:06 AM, Charlie Arehart <mailto:char...@carehart.org>> wrote:


Again folks, make sure to note the last line: please do not
publicize this discount code, or we (user group members) risk not
getting it again in the future.

/charlie

*From:*ad...@acfug.org <mailto:ad...@acfug.org>
[mailto:ad...@acfug.org <mailto:ad...@acfug.org>] *On Behalf Of
*John Mason
*Sent:* Friday, July 15, 2011 8:16 PM
*To:* discussion@acfug.org <mailto:discussion@acfug.org>
*Subject:* [ACFUG Discuss] Fwd: [ria-23] Adobe MAX discount code!!



 Original Message 

*Subject: *



[ria-23] Adobe MAX discount code!!

*Date: *



Fri, 15 Jul 2011 16:48:44 -0400

*From: *



Douglas Knudsen 
<mailto:douglasknud...@gmail.com>

*Reply-To: *



ria...@meetup.com <mailto:ria...@meetup.com>

*To: *



ria...@meetup.com <mailto:ria...@meetup.com>

Going to MAX 2011?  On the Fence maybe?  This may help!

The MAX team came through and there IS a MAX discount for Adobe
User Group members! Woohoo!!!

Use promo code "UGDP11" to get a MAX pass for $1095.

The Early Bird pass is $1295 and the regular MAX pass is $1495 so
depending on when you use it, this is either $200 or $400 off.

http://max.adobe.com/

*please do NOT share this on Twitter, FaceBook, or anywhere else!*


Douglas Knudsen
http://www.cubicleman.com
this is my signature, like it?





--
Please Note: If you hit "*REPLY*", your message will be sent to
*everyone* on this mailing list (ria...@meetup.com
<mailto:ria...@meetup.com>)
This message was sent by Douglas Knudsen (douglasknud...@gmail.com
<mailto:douglasknud...@gmail.com>) from Atlanta Flex User Group
<http://www.meetup.com/atlflex/>.
To learn more about Douglas Knudsen, visit his/her member profile
<http://www.meetup.com/atlflex/members/2110223/>
To unsubscribe or to update your mailing list settings, click here
<http://www.meetup.com/atlflex/settings/>

Meetup, PO Box 4668 #37895 New York, New York 10163-4668 |
supp...@meetup.com <mailto:supp...@meetup.com>


-
To unsubscribe from this list, manage your profile @
http://www.acfug.org?fa=login.edituserform

For more info, see http://www.acfug.org/mailinglists
Archive @ http://www.mail-archive.com/discussion%40acfug.org/
List hosted by FusionLink <http://www.fusionlink.com>
-


-
To unsubscribe from this list, manage your profile @
http://www.acfug.org?fa=login.edituserform

For more info, see http://www.acfug.org/mailinglists
Archive @ http://www.mail-archive.com/discussion%40acfug.org/
List hosted by FusionLink <http://www.fusionlink.com>
-




--
Steve Ross
web application & interface developer
http://blog.stevensross.com
[mobile] (912) 344-8113
[ AIM / Yahoo! : zeriumsteven ] [googleTalk : nowhiding ]





-
To unsubscribe from this list, manage your profile @ 
http://www.acfug.org?fa=login.edituserform


For more info, see http://www.acfug.org/mailinglists
Archive @ http://www.mail-archive.com/discussion%40acfug.org/
List hosted by http://www.fusionlink.com
-



[ACFUG Discuss] Fwd: [ria-23] Adobe MAX discount code!!

2011-07-15 Thread John Mason



 Original Message 
Subject:[ria-23] Adobe MAX discount code!!
Date:   Fri, 15 Jul 2011 16:48:44 -0400
From:   Douglas Knudsen 
Reply-To:   ria...@meetup.com
To: ria...@meetup.com



Going to MAX 2011?  On the Fence maybe?  This may help!

The MAX team came through and there IS a MAX discount for Adobe User 
Group members! Woohoo!!!


Use promo code "UGDP11" to get a MAX pass for $1095.

The Early Bird pass is $1295 and the regular MAX pass is $1495 so 
depending on when you use it, this is either $200 or $400 off.


http://max.adobe.com/


*please do NOT share this on Twitter, FaceBook, or anywhere else!*

Douglas Knudsen
http://www.cubicleman.com
this is my signature, like it?




--
Please Note: If you hit "*REPLY*", your message will be sent to 
*everyone* on this mailing list (ria...@meetup.com 
)
This message was sent by Douglas Knudsen (douglasknud...@gmail.com) from 
Atlanta Flex User Group .
To learn more about Douglas Knudsen, visit his/her member profile 

To unsubscribe or to update your mailing list settings, click here 



Meetup, PO Box 4668 #37895 New York, New York 10163-4668 | 
supp...@meetup.com




-
To unsubscribe from this list, manage your profile @ 
http://www.acfug.org?fa=login.edituserform


For more info, see http://www.acfug.org/mailinglists
Archive @ http://www.mail-archive.com/discussion%40acfug.org/
List hosted by http://www.fusionlink.com
-



[ACFUG Discuss] RSVPs

2011-07-12 Thread John Mason

Make sure to rsvp for the meeting tomorow if you're coming :)

http://www.acfug.org

thanks,
John
ma...@fusionlink.com




-
To unsubscribe from this list, manage your profile @ 
http://www.acfug.org?fa=login.edituserform


For more info, see http://www.acfug.org/mailinglists
Archive @ http://www.mail-archive.com/discussion%40acfug.org/
List hosted by http://www.fusionlink.com
-





[ACFUG Discuss] July ACFUG Meeting is this Wednesday

2011-07-11 Thread John Mason

July 13 - Lightning Round Talks

This month we're doing lightning round talks. Each speaker will have 
5-10 minutes to present a simple topic to the group. This is similar to 
the Ignite or Pecha Kucha formats. We already have some speakers lined 
up. If you would like to present, please let me know.. Speakers 
presenting so far include Charlie Arehart,  Scott Talsma, Kenny Bunch, 
Shawn Gorrell and John Mason


We are also in the process of moving things to Meetup.com. When you have 
a moment, please sign up to the new site so you can continue to get 
meeting announcements and updates. The url is..


http://www.acfug.org

or

http://www.meetup.com/AtlantaCFUG


John
ma...@fusionlink.com


-
To unsubscribe from this list, manage your profile @ 
http://www.acfug.org?fa=login.edituserform


For more info, see http://www.acfug.org/mailinglists
Archive @ http://www.mail-archive.com/discussion%40acfug.org/
List hosted by http://www.fusionlink.com
-





Re: [ACFUG Discuss] CF and OAuth/Twitter

2011-07-07 Thread John Mason

There's a few projects on riaforge.org

John


On 7/7/11 2:46 PM, Derrick Peavy wrote:

Anyone have a good OAuth system in place for Twitter?  Willing to share?

__
Derrick Peavy
derr...@derrickpeavy.com 
404-786-5036

“Innovation distinguishes between a leader and a follower.” - Steve Jobs
"In economics, the majority is always wrong." - John Kenneth Galbraith
_








-
To unsubscribe from this list, manage your profile @ 
http://www.acfug.org?fa=login.edituserform


For more info, see http://www.acfug.org/mailinglists
Archive @ http://www.mail-archive.com/discussion%40acfug.org/
List hosted by http://www.fusionlink.com
-



Re: [ACFUG Discuss] July ACFUG Meeting

2011-07-06 Thread John Mason

The url is..

http://www.meetup.com/AtlantaCFUG/

http://www.acfug.org will go there as well now.

John
ma...@fusionlink.com


On 7/6/11 3:50 PM, John Mason wrote:

July 13 - Lightning Round Talks

This month we're doing lightning round talks. Each speaker will have 
5-10 minutes to present a simple topic to the group. This is similar 
to the Ignite or Pecha Kucha formats. We already have some speakers 
lined up. If you would like to present, please let me know.. Speakers 
presenting so far include Charlie Arehart,  Scott Talsma and John Mason


We are also in the process of moving things to Meetup.com. When you 
have a moment, please sign up to the new site so you can continue to 
get meeting announcements and updates. The url is..


http://www.meetup.com/AtlantaCFU

John
ma...@fusionlink.com




-
To unsubscribe from this list, manage your profile @ 
http://www.acfug.org?fa=login.edituserform


For more info, see http://www.acfug.org/mailinglists
Archive @ http://www.mail-archive.com/discussion%40acfug.org/
List hosted by http://www.fusionlink.com
-








-
To unsubscribe from this list, manage your profile @ 
http://www.acfug.org?fa=login.edituserform


For more info, see http://www.acfug.org/mailinglists
Archive @ http://www.mail-archive.com/discussion%40acfug.org/
List hosted by http://www.fusionlink.com
-





[ACFUG Discuss] July ACFUG Meeting

2011-07-06 Thread John Mason

July 13 - Lightning Round Talks

This month we're doing lightning round talks. Each speaker will have 
5-10 minutes to present a simple topic to the group. This is similar to 
the Ignite or Pecha Kucha formats. We already have some speakers lined 
up. If you would like to present, please let me know.. Speakers 
presenting so far include Charlie Arehart,  Scott Talsma and John Mason


We are also in the process of moving things to Meetup.com. When you have 
a moment, please sign up to the new site so you can continue to get 
meeting announcements and updates. The url is..


http://www.meetup.com/AtlantaCFU

John
ma...@fusionlink.com




-
To unsubscribe from this list, manage your profile @ 
http://www.acfug.org?fa=login.edituserform


For more info, see http://www.acfug.org/mailinglists
Archive @ http://www.mail-archive.com/discussion%40acfug.org/
List hosted by http://www.fusionlink.com
-





[ACFUG Discuss] July Meeting

2011-06-28 Thread John Mason


Some group stuff, I need to go over.

The next ACFUG meeting will on July 13th and will be a Lighting Talk
session. So if you have any small topic you would like to talk about for
10-15 mins please let me know. This is a great chance to test out your
presentation  skills or simply to show off a project.

We are also in the process of moving the ACFUG site to Meetup.com. So
when you have a moment, please sign up for the group at
http://www.meetup.com/AtlantaCFUG/. We'll be posting the cflunches and
future meetings there from now on. The old site will stay up but under a
slightly different url - old.acfug.org for archival purposes.

thanks,
John
ma...@fusionlink.com










-
To unsubscribe from this list, manage your profile @ 
http://www.acfug.org?fa=login.edituserform


For more info, see http://www.acfug.org/mailinglists
Archive @ http://www.mail-archive.com/discussion%40acfug.org/
List hosted by http://www.fusionlink.com
-





[ACFUG Discuss] June ACFUG Meeting

2011-06-01 Thread John Mason


  
  

  June 2011 ACFUG Meeting 
  

  
Date

Wednesday, June 1, 2011
  
  





  
  
Dinner & Schmoozing
 
6:00 PM
  
  
Meeting Time
 
6:30 PM to 9:00 PM
  
  
Location
 
Vaco [Directions]
  
  
Dress
 
Anywhere from casual to business formal
  
  
Price
 
 FREE! 
  

  
  
  RSVP


  for this meeting! 
  Add


  to Outlook calendar. 
  Topics
  Small Business Ownership for Geeks
   Doing side projects? Contract work? Freelance? Should you be a
Sole Proprietor, LLC, or S Corp? How do you handle your
accounting? What about legal issues and contracts? Do you need a
business license? Should you be a W2 employee or 1099
contractor? What the heck is a 1099 anyway? If you are currently
a small business owner or thinking about becoming one, this
session will give you a crash course in the issues and pitfalls
you may face. Should you be a W2 employee or 1099 contractor?
What the heck is a 1099 anyway? If you are currently a small
business owner or thinking about becoming one, this session will
give you a crash course in the issues and pitfalls you may face.
  
  About The Speakers
  Cameron Childress
  Cameron is the owner of Sumo Consulting, a company focused on
building richer experiences for software in the enterprise.
Founder of the Atlanta CFUG, he has been a leader in the
technology community for more than 10 years. A self-proclaimed
foosball champion, make sure to challenge him to a game. Cameron
can be reached at camer...@sumoc.com.

  



[ACFUG Discuss] June ACFUG meeting is tomorrow

2011-05-31 Thread John Mason


  
  
June 2011 ACFUG Meeting 

  

  Date
  
  Wednesday, June 1, 2011


  
  
  
  
  


  Dinner & Schmoozing
   
  6:00 PM


  Meeting Time
   
  6:30 PM to 9:00 PM


  Location
   
  Vaco [Directions]


  Dress
   
  Anywhere from casual to business formal


  Price
   
   FREE! 

  


RSVP

for this meeting! 
Add

to Outlook calendar. 
Topics
Small Business Ownership for Geeks
 Doing side projects? Contract work? Freelance? Should you be a
  Sole Proprietor, LLC, or S Corp? How do you handle your
  accounting? What about legal issues and contracts? Do you need a
  business license? Should you be a W2 employee or 1099 contractor?
  What the heck is a 1099 anyway? If you are currently a small
  business owner or thinking about becoming one, this session will
  give you a crash course in the issues and pitfalls you may face.
  Should you be a W2 employee or 1099 contractor? What the heck is a
  1099 anyway? If you are currently a small business owner or
  thinking about becoming one, this session will give you a crash
  course in the issues and pitfalls you may face. 
About The Speakers
Cameron Childress
Cameron is the owner of Sumo Consulting, a company focused on
  building richer experiences for software in the enterprise.
  Founder of the Atlanta CFUG, he has been a leader in the
  technology community for more than 10 years. A self-proclaimed
  foosball champion, make sure to challenge him to a game. Cameron
  can be reached at camer...@sumoc.com.
  



[ACFUG Discuss] June ACFUG Meeting

2011-05-25 Thread John Mason


  
  

  

  
June 2011 ACFUG Meeting 
  

  


  

  Date
  
  Wednesday, June 1, 2011


  
  
  
  
  


  Dinner & Schmoozing
   
  6:00 PM


  Meeting Time
   
  6:30 PM to 9:00 PM


  Location
   
  Vaco [Directions]


  Dress
   
  Anywhere from casual to business formal


  Price
   
   FREE! 

  


RSVP
for this meeting! 
Add
to Outlook calendar. 
Topics
Small Business Ownership for Geeks
 Doing side projects? Contract work? Freelance? Should you be a
  Sole Proprietor, LLC, or S Corp? How do you handle your
  accounting? What about legal issues and contracts? Do you need a
  business license? Should you be a W2 employee or 1099 contractor?
  What the heck is a 1099 anyway? If you are currently a small
  business owner or thinking about becoming one, this session will
  give you a crash course in the issues and pitfalls you may face.
  Should you be a W2 employee or 1099 contractor? What the heck is a
  1099 anyway? If you are currently a small business owner or
  thinking about becoming one, this session will give you a crash
  course in the issues and pitfalls you may face. 
About The Speakers
Cameron Childress
Cameron is the owner of Sumo Consulting, a company focused on
  building richer experiences for software in the enterprise.
  Founder of the Atlanta CFUG, he has been a leader in the
  technology community for more than 10 years. A self-proclaimed
  foosball champion, make sure to challenge him to a game. Cameron
  can be reached at camer...@sumoc.com.
  



Re: [ACFUG Discuss] CF8 Preformance

2011-05-10 Thread John Mason
Service unavailable errors could actually be an IIS problem. Check to 
see if you are limiting the web site connections under IIS. If so, 
simply up the number a bit to see if that removes the problem. CF9 fixed 
a number of performance problems like the infamous createUUID() 
function, etc., but CF8 performs just fine under the right configuration 
and management. It's never a bad idea to use FusionReactor, Seefusion or 
the CF memory tracker to see what is happening in CF itself.


John
ma...@fusionlink.com




On 5/10/11 9:55 AM, Matthew Nicholson wrote:


Morning All!

I was curious of all of your thoughts of what might cause you to 
 experience a "HTTP Error 503. The service is unavailable."


I'm running CF8 and have standard edition, I spent a little time 
reviewing the groups previous discussion over CF9 performance issues 
(thank you for those write-ups & links Charlie!) and will be 
installing FusionReactor shortly to see where my application is 
hanging but this does have me a little confused.


Given the sporadic nature of these time outs I'd hazard to say it's 
something on the memory management side of the equation but I was 
curious if others have experienced similar time out or hanging after a 
8 to 12 hours of running their site.


As always, thank you all very much for your expertise!

/Matthew R. Nicholson/

/SolTech, Inc./

/Cell: 770-833-5326/

/www.soltech.net /

To find what you seek in the road of life, the best proverb of all is 
that which says: "Leave no stone unturned."

  ~Edward Bulwer Lytton


-
To unsubscribe from this list, manage your profile @
http://www.acfug.org?fa=login.edituserform

For more info, see http://www.acfug.org/mailinglists
Archive @ http://www.mail-archive.com/discussion%40acfug.org/
List hosted by FusionLink 
- 





-
To unsubscribe from this list, manage your profile @ 
http://www.acfug.org?fa=login.edituserform


For more info, see http://www.acfug.org/mailinglists
Archive @ http://www.mail-archive.com/discussion%40acfug.org/
List hosted by http://www.fusionlink.com
-



Re: [ACFUG Discuss] RE: Blank html page in Dreamweaver using IE8

2011-04-27 Thread John Mason


  
  
Don't remmeber getting that. You were in under your email
david.belle...@verizon.com

I just unsubscribed you to the lists.

John
ma...@fusionlink.com


On 4/27/11 2:32 PM, Bellevue, David M wrote:

  
  Yes, I read that. Problem is that my email  address has
changed several times over a series of mergers. I can't log in
to the web site to change anything. I emailed the president
directly, and never heard anything
  
  
  
From:  shawn
  gorrell 
  Reply-To:  "discussion@acfug.org"
  
  Date:  Wed, 27 Apr
  2011 14:20:08 -0400
  To:  "discussion@acfug.org"
  
  Subject:  Re: [ACFUG
  Discuss] RE: Blank html page in Dreamweaver using IE8




  
  

  -
  
  To unsubscribe from this list, manage your profile @ 
  http://www.acfug.org?fa=login.edituserform
  
  For more info, see http://www.acfug.org/mailinglists
  Archive @ http://www.mail-archive.com/discussion%40acfug.org/
  List hosted by FusionLink 
  -

  

  

From:
"Bellevue, David M" 
To: "discussion@acfug.org"

Sent:
Wed, April 27, 2011 2:14:43 PM
Subject:
Re: [ACFUG Discuss] RE: Blank html page in
Dreamweaver using IE8
  
  Dear God,
  
  
  Please remove me from the ACFUG distribution
list. 
  
  
  Thank you,
  Dave
  
  
  
From:
   "Martin, Donna M" 
  Reply-To: 
  "discussion@acfug.org"
  
  Date: 
  Wed, 27 Apr 2011 14:02:56 -0400
  To:  "'discussion@acfug.org'"
  
  Subject: 
  [ACFUG Discuss] RE: Blank html page in Dreamweaver
  using IE8




  
  

  Hi Troy,
    
  Thx for the quick
  response.  
    
  I haven’t tried another
  browser, but wonder if this is the issue
  since, I can literally change the
  extension from .html to .cfm, and it
  displays fine.  I also tried .htm with no
  success.  We talking a ‘slightly longer
  than a hello file’, so I don’t think code
  is the issue either.
    
  Any other ideas?
  D
    
    
    
  

  From: ad...@acfug.org
  [mailto:ad...@acfug.org]
  On Behalf Of Troy Jones
  Sent: Wednesday, April 27, 2011
  1:52 PM
  To: discussion@acfug.org
  Subject: [ACFUG Discuss] RE:
  Blank html page in Dreamweaver using
  IE8

  
    
  What is the extension
  of the filename that is causing issues?
  Can you test through DW using a different
  IE version or other browser?
    
  Assuming that the file
  that is causing issues is also a .htm
  extension, I’d be looking for a tag that
  isn’t close

Re: [ACFUG Discuss] hostmysite.com ... hosting.com

2011-04-19 Thread John Mason
FusionLink, an ACFUG sponsor for years, is a CF hosting provider and 
supports VPS. The only catch with our network is we don't allow terminal 
service connections in. Most everything can be handled via the control 
panel system. We put a high priority on security which is the reason for 
this. That and most developers really don't have the time to be 
full-time sys admins :)


Let me know if you need a quote.

John
ma...@fusionlink.com



On 4/19/11 2:35 PM, Dusty Hale wrote:
I've been using a CF+ VPS server at hostmysite for years now and all 
has been well. However just got an email yesterday that they are 
terminating VPS services with the option to stay on at only triple the 
price haha ...


So time to move on of course. Does anyone have thoughts on a good VPS 
or similar dedicated type solution for CF. I really need a Windows 
server (that's what I know), CF, and SQL Server, etc. I've never had 
to do a big migration like this so the only way I know how at the 
moment is to move all the sites and database over one by one. Ouch!!!


I've been looking into kickassvps.com . If 
anyone has any thought to share it would be much appreciated.


Thanks for listening :)

Dusty





-
To unsubscribe from this list, manage your profile @ 
http://www.acfug.org?fa=login.edituserform


For more info, see http://www.acfug.org/mailinglists
Archive @ http://www.mail-archive.com/discussion%40acfug.org/
List hosted by http://www.fusionlink.com
-



Re: [ACFUG Discuss] Question on multiple

2011-04-10 Thread John Mason
The first thing that comes to mind is normalizing your database. Sounds 
like you have a lot going on in one table. Breaking things out, makes 
operations like counting fairly simple. As far as counting groups within 
the table here is an example..


|SELECT customer_state As state, COUNT(customer_id) As total
FROM customers
WHERE customer_state IN('MA', 'CA')
GROUP BY customer_state |

The where clause can be whatever you like.

John
ma...@fusionlink.com






On 4/10/11 12:29 PM, Michael Brown wrote:

What would be the best way to get multiple counts from a table?
Want to have the ability to get a group count, and then within that
group get counts on fields within the group.  Hope this all makes
sense.

1. I have 5 different categories I want counts on
2. With each of the categories I want to know how many are in certain
sub-categories.

As usual thanks to the group.

Michael


-
To unsubscribe from this list, manage your profile @
http://www.acfug.org?fa=login.edituserform

For more info, see http://www.acfug.org/mailinglists
Archive @ http://www.mail-archive.com/discussion%40acfug.org/
List hosted by http://www.fusionlink.com
-









-
To unsubscribe from this list, manage your profile @ 
http://www.acfug.org?fa=login.edituserform


For more info, see http://www.acfug.org/mailinglists
Archive @ http://www.mail-archive.com/discussion%40acfug.org/
List hosted by http://www.fusionlink.com
-



[ACFUG Discuss] April ACFUG Meeting - Data Management with Hibernate

2011-03-31 Thread John Mason


  
  



  

  
April 2011 ACFUG Meeting 
  

  


  

  Date
  
  Wednesday, April 6, 2011


  Dinner & Schmoozing
   
  6:00 PM


  Meeting Time
   
  6:30 PM to 9:00 PM


  Location
   
  Vaco [Directions]


  Dress
   
  Anywhere from casual to business formal


  Price
   
   FREE! 

  


RSVP

for this meeting! 
Add

to Outlook calendar. 
Topics
Data management with Hibernate
 John Mason will show and explain the new data management
  features found in ColdFusion 9 and built upon the popular Java
  Hibernate library. We will cover what you need to know to get up
  and running using ColdFusion 9's ORM features in your next project
  or to move over from Transfer or Reactor. 
About The Speakers
John Mason
John works at Fusionlink and has
  developed web applications with ColdFusion since version 2, and
  has over 15 years of experience with web development since his
  undergraduate days at Auburn University. He has an MBA from
  Georgia Southern University and holds a ColdFusion Advance, MCSA
  and CCNA certifications. His blog is at www.codfusion.com
  



Re: [ACFUG Discuss] Best password hash practices

2011-03-22 Thread John Mason

Small correction..

On 3/22/11 2:50 PM, John Mason wrote:
this may not be the case given enough time. 




-
To unsubscribe from this list, manage your profile @ 
http://www.acfug.org?fa=login.edituserform


For more info, see http://www.acfug.org/mailinglists
Archive @ http://www.mail-archive.com/discussion%40acfug.org/
List hosted by http://www.fusionlink.com
-





Re: [ACFUG Discuss] Best password hash practices

2011-03-22 Thread John Mason

Some confusion here on hashing and salts.

Typically a salt is unique to each password being encrypted and can be 
stored unencrypted in the database. It should be at least 2bit or 
greater in size.


The salt is by design to prevent against a rainbow table attack and 
that's about it. If you just hash the passwords it's very easy to use a 
pre-compiled table of hashes to find the real passwords. With a salt you 
simply add complexity to the hash, enough so compiling a hash table 
isn't timely. Keep in mind if you never change your passwords, this may 
not be the cause given enough time.


So even with a complete dump of the hashed password and the salts for 
each record, the idea is you still can't get the real passwords.


Hope this clears this up.

John
ma...@fusionlink.com



On 3/22/11 11:00 AM, Frank Moorman wrote:

Guys,

Thanks for the input...

I agree with Cameron, storing the salt value negates its usefulness. I think
that using a formula in code to generate a salt is better... it requires that
the source code be stolen and analyzed in addition to the database in order to
determine a pattern with the salt.

I read the article and I have been thinking about it, I think I will be going
with my initial thought with one change... instead of salting the second hash
with the original password, I will salt it with UCase(***username***)  This will
be an improvement over the original for two reasons: It will eliminate the
problem of users with the same password having the same hash value; and one of
the flaws in my suggestions was that a Human looking at the second hash could
easily guess the password. This will still break the usefulness of the rainbow
tables as well.

So,   StoredHash =  Hash( Hash(***password***)&  UCase(***username***) )

By using UCase(), I can still allow case insensitivity on the username. Even if
the source code is compromised with the database, it still requires brute
forcing one hash before being able to use the rainbow tables.

Thanks,
Frank



On 03/20/2011 12:20 PM, Cameron Childress wrote:

On Sun, Mar 20, 2011 at 10:27 AM, Tom McNeer  wrote:

Here's a good article on the subject:
http://blog.mxunit.org/2009/06/look-ma-no-password-secure-hashing-in.html

I'll point out (and so did Peter Bell in the article comments) that
salting the hash is a good solution, but the specific implementation
recommended in the linked article does have flaws.  Storing the salt
with the hash somewhat negates the security added by the salt since
you are storing it IN PLAIN TEXT with the hash itself.

If someone steals that table, they get the hashed values and the
salts.  When this DOES DO is eliminate certain existing rainbow tables
being used against the hash since each hashed password would
effectively require it's own set of rainbow tables (essentially the
same as a brute force attack).  This doesn't make hashing any more
secure against brute force, but it does help eliminate the usefulness
of rainbow tables...

Compare this to the option of having a single site-wide "master salt"
that all passwords are hashed with.  If that salt is discovered, all
the supposed hacker needs to do is generate one set of rainbow tables
with the one salt and they can run all the passwords against it.
Given enough targets and this could totally be worth it.

-Cameron



-
To unsubscribe from this list, manage your profile @
http://www.acfug.org?fa=login.edituserform

For more info, see http://www.acfug.org/mailinglists
Archive @ http://www.mail-archive.com/discussion%40acfug.org/
List hosted by http://www.fusionlink.com
-








-
To unsubscribe from this list, manage your profile @ 
http://www.acfug.org?fa=login.edituserform


For more info, see http://www.acfug.org/mailinglists
Archive @ http://www.mail-archive.com/discussion%40acfug.org/
List hosted by http://www.fusionlink.com
-





[ACFUG Discuss] ACFUG Meeting is Tonight - What's New in ColdFusion Builder 2

2011-03-09 Thread John Mason


  
  




  

  
March 2011 ACFUG Meeting 
  

  


  

  Date
  
  Wednesday, March 9, 2011


  
  
  
  
  


  Dinner & Schmoozing
   
  6:00 PM


  Meeting Time
   
  6:30 PM to 9:00 PM


  Location
   
  Vaco [Directions]


  Dress
   
  Anywhere from casual to business formal


  Price
   
   FREE! 

  


RSVP

for this meeting! 
Add

to Outlook calendar. 
Topics
What's New in ColdFusion Builder 2
 Josh Adams of Adobe will be presenting many of the new and
  exciting features coming in the next version of ColdFusion
  Builder. This is a great time to start the new year and see what
  the latest ColdFusion IDE from Adobe can do to speed up your
  development work. 
Board Elections
It's that time of year again. We'll be doing ACFUG board
  nominations and elections for the 2011 year.
About The Speakers
Josh Adams
Josh Adams is a ColdFusion Systems Engineer at Adobe. He is a
  longtime member, past President, and current Director of the
  Atlanta ColdFusion User Group. Josh is a strong advocate of all
  CFML developer community endeavors and is particularly passionate
  about local ColdFusion User Groups. He has presented to CFUGs and
  conferences throughout North America. Josh moonlights as a mobile
  DJ so if you're looking for entertainment for your next event,
  give him a call!
  



[ACFUG Discuss] board elections

2011-03-08 Thread John Mason
Just fyi, we are doing ACFUG board elections for the 2011 year tomorrow 
at the meeting. Just let me know if you can't make the meeting but would 
like to server on the board.


thanks,
John
ma...@fusionlink.com



-
To unsubscribe from this list, manage your profile @ 
http://www.acfug.org?fa=login.edituserform


For more info, see http://www.acfug.org/mailinglists
Archive @ http://www.mail-archive.com/discussion%40acfug.org/
List hosted by http://www.fusionlink.com
-





[ACFUG Discuss] ACFUG Meeting - What's New in ColdFusion Builder 2

2011-03-07 Thread John Mason


  
  




  

  
March 2011 ACFUG Meeting 
  

  


  

  Date
  
  Wednesday, March 9, 2011


  
  
  
  
  


  Dinner & Schmoozing
   
  6:00 PM


  Meeting Time
   
  6:30 PM to 9:00 PM


  Location
   
  Vaco [Directions]


  Dress
   
  Anywhere from casual to business formal


  Price
   
   FREE! 

  


RSVP


for this meeting! 
Add


to Outlook calendar. 
Topics
What's New in ColdFusion Builder 2
  
 Josh Adams of Adobe will be presenting many of the new and
  exciting features coming in the next version of ColdFusion
  Builder. This is a great time to start the new year and see what
  the latest ColdFusion IDE from Adobe can do to speed up your
  development work. 
About The Speakers
Josh Adams
Josh Adams is a ColdFusion Systems Engineer at Adobe. He is a
  longtime member, past President, and current Director of the
  Atlanta ColdFusion User Group. Josh is a strong advocate of all
  CFML developer community endeavors and is particularly passionate
  about local ColdFusion User Groups. He has presented to CFUGs and
  conferences throughout North America. Josh moonlights as a mobile
  DJ so if you're looking for entertainment for your next event,
  give him a call!
  



Re: [ACFUG Discuss] Important Coldfusion news

2011-02-14 Thread John Mason

Certainly, but for many it wouldn't.

John



On 2/14/11 3:05 PM, Andrew Powell wrote:
A better question would be, if the sky fell today, would your skill 
set be agile enough to keep going?


ap


On Feb 14, 2011, at 2:53 PM, John Mason wrote:

For me, the point is by the time we know if the sky is falling, it 
will be too late.


John


On 2/14/11 2:43 PM, Andrew Powell wrote:
Be that as it may John, it's still a bit too early to jump to any 
conclusions. Stirring the pot, no matter who is doing it, is not 
going to help the community.  We don't even know if they sky is 
falling yet, so let's not say it "it might be".  Let's wait and see 
how the situation works itself out.


ap


On Feb 14, 2011, at 2:15 PM, John Mason wrote:


To be fair there's some history between you and Meloche :)

John


On 2/14/11 2:03 PM, Andrew Powell wrote:
All this does is to perpetuate the fear-mongering that folks like 
Meloche troll up.  Let's just ride it out and see where it goes.


ap

On Feb 14, 2011, at 2:00 PM, Steve Ross wrote:


fwiw:

http://webcache.googleusercontent.com/search?q=cache:3G9LdiSkodEJ:www.adrocknaphobia.com/post.cfm/the-modern-age-of-coldfusion+http://www.adrocknaphobia.com/post.cfm/the-modern-age-of-coldfusion&cd=1&hl=en&ct=clnk&gl=us&client=safari&source=www.google.com 
<http://webcache.googleusercontent.com/search?q=cache:3G9LdiSkodEJ:www.adrocknaphobia.com/post.cfm/the-modern-age-of-coldfusion+http://www.adrocknaphobia.com/post.cfm/the-modern-age-of-coldfusion&cd=1&hl=en&ct=clnk&gl=us&client=safari&source=www.google.com>


On Mon, Feb 14, 2011 at 1:56 PM, Derrick Peavy 
mailto:derr...@derrickpeavy.com>> wrote:


OK, that link to
http://www.adrocknaphobia.com/post.cfm/the-modern-age-of-coldfusion


DOES

NOT

work.

__
Derrick Peavy
derr...@derrickpeavy.com <mailto:derr...@derrickpeavy.com>
404-786-5036

“Innovation distinguishes between a leader and a follower.” -
Steve Jobs
"In economics, the majority is always wrong." - John Kenneth
Galbraith
_




On Feb 14, 2011, at 1:01 PM, John Mason wrote:


In case people don't know and many may not due to the way it
was announced, there is a debate going on with the recent
change in Adobe's management of coldfusion. Whether you
agree with my concerns or not, it's important that everyone
get a chance to voice their opinions on this.

Here a the blog posts to look at...

Adam's announcement
http://www.adrocknaphobia.com/post.cfm/the-modern-age-of-coldfusion

My reaction

http://www.codfusion.com/blog/post.cfm/so-there-s-this-story-about-a-frog-in-boiling-water
-there are comments that add additional problems to this move

Brian Meloche's reaction
http://www.brianmeloche.com/blog/index.cfm/2011/2/12/End-of-another-era

John
ma...@fusionlink.com <mailto:ma...@fusionlink.com>



-
To unsubscribe from this list, manage your profile @
http://www.acfug.org?fa=login.edituserform
<http://www.acfug.org/?fa=login.edituserform>

For more info, see http://www.acfug.org/mailinglists
Archive @ http://www.mail-archive.com/discussion%40acfug.org/
List hosted by http://www.fusionlink.com
<http://www.fusionlink.com/>
-








--
Steve Ross
web application & interface developer
http://blog.stevensross.com <http://blog.stevensross.com/>
[mobile] (912) 344-8113
[ AIM / Yahoo! : zeriumsteven ] [googleTalk : nowhiding ]





-
To unsubscribe from this list, manage your profile @
http://www.acfug.org?fa=login.edituserform 
<http://www.acfug.org/?fa=login.edituserform>


For more info, see http://www.acfug.org/mailinglists
Archive @ http://www.mail-archive.com/discussion%40acfug.org/
List hosted by FusionLink <http://www.fusionlink.com/>
- 





-
To unsubscribe from this list, manage your profile @
http://www.acfug.org?fa=login.edituserform 
<http://www.acfug.org/?fa=login.edituserform>


For more info, see http://www.acfug.org/mailinglists
Archive @ http://www.mail-archive.com/discussion%40acfug.org/
List hosted by FusionLink <http://www.fusionlink.com/>
- 







-
To unsubscribe from this list, manage your profile @ 
http://www.acfug.org?fa=login.edituserform


For more info, see http://www.acfug.org/mailinglists
Archive @ http://www.mail-archive.com/discussion%40acfug.org/
List hosted by http://www.fusionlink.com
-



Re: [ACFUG Discuss] Important Coldfusion news

2011-02-14 Thread John Mason
For me, the point is by the time we know if the sky is falling, it will 
be too late.


John


On 2/14/11 2:43 PM, Andrew Powell wrote:
Be that as it may John, it's still a bit too early to jump to any 
conclusions. Stirring the pot, no matter who is doing it, is not going 
to help the community.  We don't even know if they sky is falling yet, 
so let's not say it "it might be".  Let's wait and see how the 
situation works itself out.


ap


On Feb 14, 2011, at 2:15 PM, John Mason wrote:


To be fair there's some history between you and Meloche :)

John


On 2/14/11 2:03 PM, Andrew Powell wrote:
All this does is to perpetuate the fear-mongering that folks like 
Meloche troll up.  Let's just ride it out and see where it goes.


ap

On Feb 14, 2011, at 2:00 PM, Steve Ross wrote:


fwiw:

http://webcache.googleusercontent.com/search?q=cache:3G9LdiSkodEJ:www.adrocknaphobia.com/post.cfm/the-modern-age-of-coldfusion+http://www.adrocknaphobia.com/post.cfm/the-modern-age-of-coldfusion&cd=1&hl=en&ct=clnk&gl=us&client=safari&source=www.google.com 
<http://webcache.googleusercontent.com/search?q=cache:3G9LdiSkodEJ:www.adrocknaphobia.com/post.cfm/the-modern-age-of-coldfusion+http://www.adrocknaphobia.com/post.cfm/the-modern-age-of-coldfusion&cd=1&hl=en&ct=clnk&gl=us&client=safari&source=www.google.com>


On Mon, Feb 14, 2011 at 1:56 PM, Derrick Peavy 
mailto:derr...@derrickpeavy.com>> wrote:


OK, that link to
http://www.adrocknaphobia.com/post.cfm/the-modern-age-of-coldfusion


DOES

NOT

work.

__
Derrick Peavy
derr...@derrickpeavy.com <mailto:derr...@derrickpeavy.com>
404-786-5036

“Innovation distinguishes between a leader and a follower.” -
Steve Jobs
"In economics, the majority is always wrong." - John Kenneth
Galbraith
_




On Feb 14, 2011, at 1:01 PM, John Mason wrote:


In case people don't know and many may not due to the way it
was announced, there is a debate going on with the recent
change in Adobe's management of coldfusion. Whether you agree
with my concerns or not, it's important that everyone get a
chance to voice their opinions on this.

Here a the blog posts to look at...

Adam's announcement
http://www.adrocknaphobia.com/post.cfm/the-modern-age-of-coldfusion

My reaction

http://www.codfusion.com/blog/post.cfm/so-there-s-this-story-about-a-frog-in-boiling-water
-there are comments that add additional problems to this move

Brian Meloche's reaction
http://www.brianmeloche.com/blog/index.cfm/2011/2/12/End-of-another-era

John
ma...@fusionlink.com <mailto:ma...@fusionlink.com>



-
To unsubscribe from this list, manage your profile @
http://www.acfug.org?fa=login.edituserform
<http://www.acfug.org/?fa=login.edituserform>

For more info, see http://www.acfug.org/mailinglists
Archive @ http://www.mail-archive.com/discussion%40acfug.org/
List hosted by http://www.fusionlink.com
<http://www.fusionlink.com/>
-








--
Steve Ross
web application & interface developer
http://blog.stevensross.com <http://blog.stevensross.com/>
[mobile] (912) 344-8113
[ AIM / Yahoo! : zeriumsteven ] [googleTalk : nowhiding ]





-
To unsubscribe from this list, manage your profile @
http://www.acfug.org?fa=login.edituserform 
<http://www.acfug.org/?fa=login.edituserform>


For more info, see http://www.acfug.org/mailinglists
Archive @ http://www.mail-archive.com/discussion%40acfug.org/
List hosted by FusionLink <http://www.fusionlink.com/>
- 







-
To unsubscribe from this list, manage your profile @ 
http://www.acfug.org?fa=login.edituserform


For more info, see http://www.acfug.org/mailinglists
Archive @ http://www.mail-archive.com/discussion%40acfug.org/
List hosted by http://www.fusionlink.com
-



Re: [ACFUG Discuss] Important Coldfusion news

2011-02-14 Thread John Mason

To be fair there's some history between you and Meloche :)

John


On 2/14/11 2:03 PM, Andrew Powell wrote:
All this does is to perpetuate the fear-mongering that folks like 
Meloche troll up.  Let's just ride it out and see where it goes.


ap

On Feb 14, 2011, at 2:00 PM, Steve Ross wrote:


fwiw:

http://webcache.googleusercontent.com/search?q=cache:3G9LdiSkodEJ:www.adrocknaphobia.com/post.cfm/the-modern-age-of-coldfusion+http://www.adrocknaphobia.com/post.cfm/the-modern-age-of-coldfusion&cd=1&hl=en&ct=clnk&gl=us&client=safari&source=www.google.com 
<http://webcache.googleusercontent.com/search?q=cache:3G9LdiSkodEJ:www.adrocknaphobia.com/post.cfm/the-modern-age-of-coldfusion+http://www.adrocknaphobia.com/post.cfm/the-modern-age-of-coldfusion&cd=1&hl=en&ct=clnk&gl=us&client=safari&source=www.google.com>


On Mon, Feb 14, 2011 at 1:56 PM, Derrick Peavy 
mailto:derr...@derrickpeavy.com>> wrote:


OK, that link to
http://www.adrocknaphobia.com/post.cfm/the-modern-age-of-coldfusion

DOES

NOT

work.

__
Derrick Peavy
derr...@derrickpeavy.com <mailto:derr...@derrickpeavy.com>
404-786-5036

“Innovation distinguishes between a leader and a follower.” -
Steve Jobs
"In economics, the majority is always wrong." - John Kenneth
    Galbraith
_




On Feb 14, 2011, at 1:01 PM, John Mason wrote:


In case people don't know and many may not due to the way it was
announced, there is a debate going on with the recent change in
Adobe's management of coldfusion. Whether you agree with my
concerns or not, it's important that everyone get a chance to
voice their opinions on this.

Here a the blog posts to look at...

Adam's announcement
http://www.adrocknaphobia.com/post.cfm/the-modern-age-of-coldfusion

My reaction

http://www.codfusion.com/blog/post.cfm/so-there-s-this-story-about-a-frog-in-boiling-water
-there are comments that add additional problems to this move

Brian Meloche's reaction
http://www.brianmeloche.com/blog/index.cfm/2011/2/12/End-of-another-era

John
ma...@fusionlink.com <mailto:ma...@fusionlink.com>



-
To unsubscribe from this list, manage your profile @
http://www.acfug.org?fa=login.edituserform
<http://www.acfug.org/?fa=login.edituserform>

For more info, see http://www.acfug.org/mailinglists
Archive @ http://www.mail-archive.com/discussion%40acfug.org/
List hosted by http://www.fusionlink.com
<http://www.fusionlink.com/>
-








--
Steve Ross
web application & interface developer
http://blog.stevensross.com <http://blog.stevensross.com/>
[mobile] (912) 344-8113
[ AIM / Yahoo! : zeriumsteven ] [googleTalk : nowhiding ]







-
To unsubscribe from this list, manage your profile @ 
http://www.acfug.org?fa=login.edituserform


For more info, see http://www.acfug.org/mailinglists
Archive @ http://www.mail-archive.com/discussion%40acfug.org/
List hosted by http://www.fusionlink.com
-



[ACFUG Discuss] Important Coldfusion news

2011-02-14 Thread John Mason
In case people don't know and many may not due to the way it was 
announced, there is a debate going on with the recent change in Adobe's 
management of coldfusion. Whether you agree with my concerns or not, 
it's important that everyone get a chance to voice their opinions on this.


Here a the blog posts to look at...

Adam's announcement
http://www.adrocknaphobia.com/post.cfm/the-modern-age-of-coldfusion

My reaction
http://www.codfusion.com/blog/post.cfm/so-there-s-this-story-about-a-frog-in-boiling-water
-there are comments that add additional problems to this move

Brian Meloche's reaction
http://www.brianmeloche.com/blog/index.cfm/2011/2/12/End-of-another-era

John
ma...@fusionlink.com



-
To unsubscribe from this list, manage your profile @ 
http://www.acfug.org?fa=login.edituserform


For more info, see http://www.acfug.org/mailinglists
Archive @ http://www.mail-archive.com/discussion%40acfug.org/
List hosted by http://www.fusionlink.com
-





Re: [ACFUG Discuss] RE: Training Classes

2011-02-09 Thread John Mason
I also recommend Echo11. They have and continue to be sponsors of this 
user group and most everyone knows Scott.


John
ma...@fusionlink.com



On 2/9/11 8:52 AM, Mobley, Teri L wrote:


The Echo11 group does a great job -- great instructors that really 
know their stuff! I have taken two CF courses with them.


Stay away from Sterling Ledet. You'll get some guy reading to you out 
of a book.


Teri

*From:*ad...@acfug.org [mailto:ad...@acfug.org] *On Behalf Of *Wes Pomeroy
*Sent:* Wednesday, February 09, 2011 8:43 AM
*To:* discussion@acfug.org
*Subject:* EXTERNAL: [ACFUG Discuss] Training Classes

Can anyone recommend any ColdFusion training classes (preferably in 
person) in the Atlanta area?


Thanks,

*Wes Pomeroy*

Marketing Manager

The Banker's Exchange

4200 Highlands Pkwy -- Suite A

Smyrna GA, 30082

www.BankersX.com 

Toll Free: 888.749.6396 x 25


-
To unsubscribe from this list, manage your profile @
http://www.acfug.org?fa=login.edituserform

For more info, see http://www.acfug.org/mailinglists
Archive @ http://www.mail-archive.com/discussion%40acfug.org/
List hosted by FusionLink 
-


-
To unsubscribe from this list, manage your profile @
http://www.acfug.org?fa=login.edituserform

For more info, see http://www.acfug.org/mailinglists
Archive @ http://www.mail-archive.com/discussion%40acfug.org/
List hosted by FusionLink 
- 





-
To unsubscribe from this list, manage your profile @ 
http://www.acfug.org?fa=login.edituserform


For more info, see http://www.acfug.org/mailinglists
Archive @ http://www.mail-archive.com/discussion%40acfug.org/
List hosted by http://www.fusionlink.com
-



Re: [ACFUG Discuss] Manual Data Source Modification

2011-01-28 Thread John Mason
Not entirely a bad idea. You don't want to expose the cfadmin to the 
outside world. Typically you only expose the CFIDE/scripts directory 
(but make sure you're patched for the FCKeditor bug). I typically move 
and restrict access to everything else. Just make sure you leave notes 
for someone to find it :)


John
ma...@fusionlink.com

On 1/28/11 2:16 PM, Matthew Nicholson wrote:


Thank you all very much for the suggestions!

It took a little bit of arm twisting as well as digging.

Apparently, the reason the panel wasn't disabled entirely, the dev 
though to have his own special path to access it which I found after 
digging deeply into our documentation.


/Matthew R. Nicholson/

/SolTech, Inc./

/Cell: 770-833-5326/

/www.soltech.net <http://www.soltech.net/>/

To find what you seek in the road of life, the best proverb of all is 
that which says: "Leave no stone unturned."

  ~Edward Bulwer Lytton

*From:*ad...@acfug.org [mailto:ad...@acfug.org] *On Behalf Of *John Mason
*Sent:* Friday, January 28, 2011 12:54 PM
*To:* discussion@acfug.org
*Subject:* Re: [ACFUG Discuss] Manual Data Source Modification

If you have a fairly recent version (cf7+) the adminapi

John
ma...@fusionlink.com <mailto:ma...@fusionlink.com>


On 1/28/11 12:47 PM, Matthew Nicholson wrote:

Afternoon All!

Does anyone know of a manual way to modify the data sources presented 
in the administrative panel?


I have a server where the old developer decided to disabled access to 
the administrative panel and I can't for the life of me find a way to 
turn it back on. Now, I need to change the DB that this server is 
pointing to.


Thoughts?

Thank you!

/Matthew R. Nicholson/

/SolTech, Inc./

/Cell: 770-833-5326/

/www.soltech.net <http://www.soltech.net/>/

To find what you seek in the road of life, the best proverb of all is 
that which says: "Leave no stone unturned."

  ~Edward Bulwer Lytton


-
To unsubscribe from this list, manage your profile @
http://www.acfug.org?fa=login.edituserform

For more info, see http://www.acfug.org/mailinglists
Archive @ http://www.mail-archive.com/discussion%40acfug.org/
List hosted by FusionLink <http://www.fusionlink.com>
-


-
To unsubscribe from this list, manage your profile @
http://www.acfug.org?fa=login.edituserform

For more info, see http://www.acfug.org/mailinglists
Archive @ http://www.mail-archive.com/discussion%40acfug.org/
List hosted by FusionLink <http://www.fusionlink.com>
-


-
To unsubscribe from this list, manage your profile @
http://www.acfug.org?fa=login.edituserform

For more info, see http://www.acfug.org/mailinglists
Archive @ http://www.mail-archive.com/discussion%40acfug.org/
List hosted by FusionLink <http://www.fusionlink.com>
- 





-
To unsubscribe from this list, manage your profile @ 
http://www.acfug.org?fa=login.edituserform


For more info, see http://www.acfug.org/mailinglists
Archive @ http://www.mail-archive.com/discussion%40acfug.org/
List hosted by http://www.fusionlink.com
-



Re: [ACFUG Discuss] Manual Data Source Modification

2011-01-28 Thread John Mason
You should be able to change the neo-datasources.xml file which stores 
this stuff anyway. It's in your libs folder.


If the cfadmin is completely knocked out. I would actually advise just 
re-installing CF. You really need to know if everything is properly 
locked down (security wise) for the site. It'll need to happen at some 
point, at least you can plan out the down time.


John
ma...@fusionlink.com


On 1/28/11 1:02 PM, Matthew Nicholson wrote:


Charlie,

I'd love to change the password but that's part of the problem, I 
can't even access the panel so authentication isn't even an issue at 
this point. The locally running web site hosting the admin panel has 
been disabled in IIS.


I've tried re-enabling it to no avail and can't get the blasted thing up.

At this point, I just need to associate the box to a different sql db. :/

/Matthew R. Nicholson/

/SolTech, Inc./

/Cell: 770-833-5326/

/www.soltech.net /

To find what you seek in the road of life, the best proverb of all is 
that which says: "Leave no stone unturned."

  ~Edward Bulwer Lytton

*From:*ad...@acfug.org [mailto:ad...@acfug.org] *On Behalf Of *Charlie 
Arehart

*Sent:* Friday, January 28, 2011 12:53 PM
*To:* discussion@acfug.org
*Subject:* RE: [ACFUG Discuss] Manual Data Source Modification

Matthew, rather than tweak the DSNs, why not just tweak the 
requirement of a password to access the admin? :-)


Just google coldfusion lost admin password to find many documenting 
the solution. :-) It takes just moments, and you can restore use of 
the password to whatever you want. It's also not anything unethical. 
The solutions only work if you own/have direct access to the box on 
which CF is installed.


/charlie

*From:*ad...@acfug.org [mailto:ad...@acfug.org] *On Behalf Of *Matthew 
Nicholson

*Sent:* Friday, January 28, 2011 12:47 PM
*To:* discussion@acfug.org
*Subject:* [ACFUG Discuss] Manual Data Source Modification

Afternoon All!

Does anyone know of a manual way to modify the data sources presented 
in the administrative panel?


I have a server where the old developer decided to disabled access to 
the administrative panel and I can't for the life of me find a way to 
turn it back on. Now, I need to change the DB that this server is 
pointing to.


Thoughts?

Thank you!

/Matthew R. Nicholson/

/SolTech, Inc./

/Cell: 770-833-5326/

/www.soltech.net /

To find what you seek in the road of life, the best proverb of all is 
that which says: "Leave no stone unturned."

  ~Edward Bulwer Lytton


-
To unsubscribe from this list, manage your profile @
http://www.acfug.org?fa=login.edituserform

For more info, see http://www.acfug.org/mailinglists
Archive @ http://www.mail-archive.com/discussion%40acfug.org/
List hosted by FusionLink 
-


-
To unsubscribe from this list, manage your profile @
http://www.acfug.org?fa=login.edituserform

For more info, see http://www.acfug.org/mailinglists
Archive @ http://www.mail-archive.com/discussion%40acfug.org/
List hosted by FusionLink 
-


-
To unsubscribe from this list, manage your profile @
http://www.acfug.org?fa=login.edituserform

For more info, see http://www.acfug.org/mailinglists
Archive @ http://www.mail-archive.com/discussion%40acfug.org/
List hosted by FusionLink 
- 





-
To unsubscribe from this list, manage your profile @ 
http://www.acfug.org?fa=login.edituserform


For more info, see http://www.acfug.org/mailinglists
Archive @ http://www.mail-archive.com/discussion%40acfug.org/
List hosted by http://www.fusionlink.com
-



Re: [ACFUG Discuss] Manual Data Source Modification

2011-01-28 Thread John Mason

If you have a fairly recent version (cf7+) the adminapi

John
ma...@fusionlink.com


On 1/28/11 12:47 PM, Matthew Nicholson wrote:


Afternoon All!

Does anyone know of a manual way to modify the data sources presented 
in the administrative panel?


I have a server where the old developer decided to disabled access to 
the administrative panel and I can't for the life of me find a way to 
turn it back on. Now, I need to change the DB that this server is 
pointing to.


Thoughts?

Thank you!

/Matthew R. Nicholson/

/SolTech, Inc./

/Cell: 770-833-5326/

/www.soltech.net /

To find what you seek in the road of life, the best proverb of all is 
that which says: "Leave no stone unturned."

  ~Edward Bulwer Lytton


-
To unsubscribe from this list, manage your profile @
http://www.acfug.org?fa=login.edituserform

For more info, see http://www.acfug.org/mailinglists
Archive @ http://www.mail-archive.com/discussion%40acfug.org/
List hosted by FusionLink 
- 





-
To unsubscribe from this list, manage your profile @ 
http://www.acfug.org?fa=login.edituserform


For more info, see http://www.acfug.org/mailinglists
Archive @ http://www.mail-archive.com/discussion%40acfug.org/
List hosted by http://www.fusionlink.com
-



[ACFUG Discuss] ACFUG meeting

2011-01-03 Thread John Mason
Just fyi, we're not having a meeting this month. We'll start up again in 
Feb.


John
ma...@fusionlink.com




-
To unsubscribe from this list, manage your profile @ 
http://www.acfug.org?fa=login.edituserform


For more info, see http://www.acfug.org/mailinglists
Archive @ http://www.mail-archive.com/discussion%40acfug.org/
List hosted by http://www.fusionlink.com
-





[ACFUG Discuss] cfObjective topic/speaker proposals

2010-12-28 Thread John Mason
Just a friendly reminder that cfObjective is currently looking for 
topic/seaker proposals. This is a great way to get your name out in the 
CF world.


Here's some recent info I got from Bob Silverberg..

The deadline is January 9th.

I'll take the opportunity to remind everyone on this list: if you're
interested in speaking at cf.Objective() next year please submit your
proposals, using our app athttp://engage.cfobjective.com, by January
9th. Please note as well that you must submit a proposal via the
"Submit a Proposal" link - this is not the same as suggesting a topic.

If anyone has any questions at all please feel free to email me directly.

Cheers,
Bob

bob.silverb...@gmail.com




-
To unsubscribe from this list, manage your profile @ 
http://www.acfug.org?fa=login.edituserform


For more info, see http://www.acfug.org/mailinglists
Archive @ http://www.mail-archive.com/discussion%40acfug.org/
List hosted by http://www.fusionlink.com
-





Re: [ACFUG Discuss] Holiday Social pics

2010-12-03 Thread John Mason
Thanks, for adding comments. Yea, that was tricky. I took a lot of shots 
as you could probably tell. Only a small batch made the cut.


John


On 12/3/10 5:15 PM, Charlie Arehart wrote:

Great photos, John. I started adding some captions/comments to the first 
several, but
have to run and will finish more later (unless others may step in.)

/charlie



-Original Message-
From: ad...@acfug.org [mailto:ad...@acfug.org] On Behalf Of John Mason
Sent: Friday, December 03, 2010 2:17 AM
To: discussion@acfug.org; discuss...@affug.com
Subject: [ACFUG Discuss] Holiday Social pics

And here are the pictures I took..

http://www.flickr.com/photos/john_mason_ii/sets/72157625392789679/

John
ma...@fusionlink.com



-
To unsubscribe from this list, manage your profile @
http://www.acfug.org?fa=login.edituserform

For more info, see http://www.acfug.org/mailinglists
Archive @ http://www.mail-archive.com/discussion%40acfug.org/
List hosted by http://www.fusionlink.com
-






-
To unsubscribe from this list, manage your profile @
http://www.acfug.org?fa=login.edituserform

For more info, see http://www.acfug.org/mailinglists
Archive @ http://www.mail-archive.com/discussion%40acfug.org/
List hosted by http://www.fusionlink.com
-








-
To unsubscribe from this list, manage your profile @ 
http://www.acfug.org?fa=login.edituserform


For more info, see http://www.acfug.org/mailinglists
Archive @ http://www.mail-archive.com/discussion%40acfug.org/
List hosted by http://www.fusionlink.com
-





[ACFUG Discuss] ACFUG Meeting next week

2010-11-02 Thread John Mason


  
  

  

  
November 2010 ACFUG Meeting 
  

  


  

  Date
  
  Wednesday, November 10, 2010


  Dinner & Schmoozing
   
  7:00 PM


  Meeting Time
   
  7:00 PM to 9:00 PM


  Location
   
  Six Feet Under [Directions]


  Dress
   
  Anywhere from casual to business formal


  Price
   
   FREE! 

  


RSVP
for this meeting! 
Add
to Outlook calendar. 
Topics
ACFUG Social at Six Feet Under
 So we're going to have a social event this month at Six Feet
  Under on 11th Street. We'll start around 7pm and order food around
  7:30pm. 
  



[ACFUG Discuss] Meeting space

2010-10-20 Thread John Mason
As many of you know, ACFUG is not able to meet at the Echo11 offices at 
Piedmont Center anymore. The board members and I are looking for 
options. If you know of any meeting space that might be available, 
please feel free to contact me. We need a room that can hold between 
20-30 people for the first Wed of each month going from 6pm to 9pm. 
However, we may need to adjust our meeting day/time to make something 
happen.


best regards,
John Mason
ma...@fusionlink.com






-
To unsubscribe from this list, manage your profile @ 
http://www.acfug.org?fa=login.edituserform


For more info, see http://www.acfug.org/mailinglists
Archive @ http://www.mail-archive.com/discussion%40acfug.org/
List hosted by http://www.fusionlink.com
-





Re: [ACFUG Discuss] Adobe and Microsoft - Merger?

2010-10-07 Thread John Mason

 I just blogged my views on the recent developments with Adobe.
http://www.codfusion.com/blog/post.cfm/adobe-should-fire-shantanu-narayen

John
ma...@fusionlink.com

On 10/7/10 4:29 PM, Cameron Childress wrote:

Just a rumor right now, but a very very interesting one...

http://www.marketwatch.com/story/adobe-shares-jump-on-news-of-microsoft-meeting-2010-10-07

"SAN FRANCISCO (MarketWatch) -- Shares of Adobe Inc. jumped more than
8% late Thursday afternoon on a report of a secret meeting the company
held with executives of Microsoft Corp. Adobe shares were last up $2
at $27.73 -- coming off their lowest level in 15 months. The New York
Times reported on its Bits blog that Microsoft CEO Steve Ballmer and a
team met with Adobe CEO Shantanu Narayen at Adobe's offices in San
Francisco. The meeting lasted an hour and covered topics ranging from
Apple's control of the mobile phone market and the possibility that
Microsoft and Adobe could merge, according to the report, which cited
unnamed sources."


-
To unsubscribe from this list, manage your profile @
http://www.acfug.org?fa=login.edituserform

For more info, see http://www.acfug.org/mailinglists
Archive @ http://www.mail-archive.com/discussion%40acfug.org/
List hosted by http://www.fusionlink.com
-








-
To unsubscribe from this list, manage your profile @ 
http://www.acfug.org?fa=login.edituserform


For more info, see http://www.acfug.org/mailinglists
Archive @ http://www.mail-archive.com/discussion%40acfug.org/
List hosted by http://www.fusionlink.com
-





Re: [ACFUG Discuss] Change in behavior of HTTP web services on 9.01?

2010-09-16 Thread John Mason

 Weird, Yahoo must not like me :)

John


On 9/16/10 2:02 PM, shawn gorrell wrote:

@John, I keep trying to respond to your messages and get a crazy javascript
popup and the send fails:(





From: shawn gorrell
To: discussion@acfug.org
Sent: Thu, September 16, 2010 1:52:04 PM
Subject: Re: [ACFUG Discuss] Change in behavior of HTTP web services on 9.01?


Turns out that the error message was a red herring, but there still has to be
some sort of behavioral change related to the updater. The method uses a
variable that is intialized in application.cfm and apparently that isn't firing,
even though it did last week. When that condition is corrected, the syntax we've
been using works just like it did before. Ugh.





From: "axunderw...@ups.com"
To: discussion@acfug.org
Sent: Thu,  September 16, 2010 1:39:00 PM
Subject: RE: [ACFUG Discuss] Change in behavior of HTTP web services on 9.01?


Well that makes it difficult to change...I would say change  the method="POST"
and see if you get the same error except telling you that POST  doesn't exist..



  From: ad...@acfug.org [mailto:ad...@acfug.org] On Behalf Of shawn gorrell
Sent: Thursday, September 16, 2010  1:26 PM
To: discussion@acfug.org
Subject: Re: [ACFUG  Discuss] Change in behavior of HTTP web services on 9.01?


Have already tried that. It's an error as well. Method in a CFHTTP only
supports the list of HTTP verbs. If you omit it, it defaults to GET.





  From: "axunderw...@ups.com"
To: discussion@acfug.org
Sent: Thu,  September 16, 2010 1:11:22 PM
Subject: RE: [ACFUG Discuss] Change in  behavior of HTTP web services on 9.01?


Just a quick observation - I think in cfhttp method ="Get"  usually refers to
the query type (via url params or form params).  It LOOKS  like that method in
the cfhttp call is overriding the url param "method"...just  for the heck of it,
I would try and remove method="Get" and see what  happens...



  From: ad...@acfug.org [mailto:ad...@acfug.org] On Behalf Of shawn gorrell
Sent: Thursday, September 16, 2010  1:07 PM
To: discussion@acfug.org
Subject: [ACFUG Discuss]  Change in behavior of HTTP web services on 9.01?


We've got a piece of code that has worked for a very long time that
automagically quit working after the latest cumulative updater to CF9.


The code in question does a CFHTTP GET to hit a CF webservice on another
server.


http://myserver/apps/appname/remote/mycomponent.cfc?wsdl&method=GetUsersWS";

  method="Get" resolveurl="false" timeout="120"  
throwonerror="yes"/>

yada yada yada

Now when it runs it throws  an error:


Themethod GET was not found in component
D:\path\apps\appname\remote\mycomponent.cfc.

Obviously the CFC doesn't have a GET method,  but it never had one and always
worked.


Any ideas (other than wondering  why it isn't using CFINVOKE - don't  ask)?

Cheers,

S

-
To unsubscribe from this list, manage your profile @
http://www.acfug.org?fa=login.edituserform

For more info, see http://www.acfug.org/mailinglists
Archive @ http://www.mail-archive.com/discussion%40acfug.org/
List hosted by FusionLink
-
-
To  unsubscribe from this list, manage your profile @
http://www.acfug.org?fa=login.edituserform

For more  info, see http://www.acfug.org/mailinglists
Archive @ http://www.mail-archive.com/discussion%40acfug.org/
List  hosted by FusionLink
-
-
To unsubscribe from this list, manage your profile @
http://www.acfug.org?fa=login.edituserform

For more info, see http://www.acfug.org/mailinglists
Archive @ http://www.mail-archive.com/discussion%40acfug.org/
List hosted by FusionLink
-
-
To unsubscribe from this list, manage your profile @
http://www.acfug.org?fa=login.edituserform

For more info, see http://www.acfug.org/mailinglists
Archive @ http://www.mail-archive.com/discussion%40acfug.org/
List hosted by FusionLink
-
-
To unsubscribe from this list, manage your profile @
http://www.acfug.org?fa=login.edituserform

For more info, see http://www.acfug.org/mailinglists
Archive @ http://www.mail-archive.com/discussion%40acfug.org/
List hosted by FusionLink
-


-
To unsubscribe from this list, manage your profile @
http://www.acfug.org?fa=login.edituserform

For more info, s

  1   2   3   4   5   >