Re: moving data from sub-window into a form

2010-11-24 Thread Azadi Saryev

edit ray's example code and:

- change useridfk input field to type=text
- remove the ownerspan span element
- remove document.getElementById('ownerspan').innerHTML = label; line 
from selectUser js function

Azadi

On 24/11/2010 10:26 , Rick Colman wrote:
 To answer my own question, I did find this link for using Ajax in CF8:

 http://www.coldfusionjedi.com/index.cfm/2008/12/25/Using-CF8-Ajax-features-to-solve-the-pick-one-of-thousands-issue

 however, I need to be able to EITHER select from a sub-window OR type in
 some data directly into the form field.

 On 11/23/2010 5:41 PM, Rick Colman wrote:
 Here is what I am trying to do:

 a) open a form - several form fields will have an IMPORT button

 b) IMPORT button opens a sub-window (cfwindow) which runs a query and
 displays the query results in a table

 c) select one of the rows in the sub-window with another button. Take
 the data from the sub-window row and punch it into the correct form
 field in the main window. close the sub-window

 d) maybe do this several times for different form fields.

 e) submit the main form

 WHEW!

 I have a) and b) working OK with CFWindow. c) d) and e) are a little
 mysterious.

 Can someone point out a resource that might provide some insights?

 TNX.

 Rick


 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:339493
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


(OT) IIS 7 Wonkiness with BlogCFC and cgi.path_info

2010-11-24 Thread Eric Cobb

I just moved my blog over to a new server (Winders 2008).  So far all of 
it seems to be working correctly, except for one page, and I can't 
figure out what IIS is doing.  I'm hoping someone here has run across 
this or has enough experience with IIS 7 to tell me where to look. 

For whatever reason, IIS seems to be ignoring the cgi.path_info for my 
about page and process it as a directory.  So, for 
http://www.cfgears.com/page.cfm/About it's trying to find an About 
directory and throwing a 404 instead processing page.cfm with About as 
a cgi.path_info.  The funny thing is, all of the other pages on the site 
use this exact same url format without any problems.  For example, 
http://www.cfgears.com/index.cfm/CFML works correctly. 

The only difference in the 2 urls is that one calls index.cfm and the 
other calls page.cfm.  All index.cfm calls work, and all page.cfm calls 
break.  I know that page.cfm is there, I put in a Hey!abort at the top 
of it and you can pull it up in the url 
(http://www.cfgears.com/page.cfm), but 
http://www.cfgears.com/page.cfm/About still throws a 404. 

So, what gives?  What is it about this page that IIS doesn't want to 
process cgi.path_info correctly? 

-- 

Thanks,

Eric Cobb
ECAR Technologies, LLC
http://www.ecartech.com
http://www.cfgears.com



~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:339494
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: (OT) IIS 7 Wonkiness with BlogCFC and cgi.path_info

2010-11-24 Thread Scott Stewart

I think the way that BlogCFC handles seo friendly URls involves /index.cfm/..

You'd have to ask Ray about the details

On Wed, Nov 24, 2010 at 8:56 AM, Eric Cobb cft...@ecartech.com wrote:

 I just moved my blog over to a new server (Winders 2008).  So far all of
 it seems to be working correctly, except for one page, and I can't
 figure out what IIS is doing.  I'm hoping someone here has run across
 this or has enough experience with IIS 7 to tell me where to look.

 For whatever reason, IIS seems to be ignoring the cgi.path_info for my
 about page and process it as a directory.  So, for
 http://www.cfgears.com/page.cfm/About it's trying to find an About
 directory and throwing a 404 instead processing page.cfm with About as
 a cgi.path_info.  The funny thing is, all of the other pages on the site
 use this exact same url format without any problems.  For example,
 http://www.cfgears.com/index.cfm/CFML works correctly.

 The only difference in the 2 urls is that one calls index.cfm and the
 other calls page.cfm.  All index.cfm calls work, and all page.cfm calls
 break.  I know that page.cfm is there, I put in a Hey!abort at the top
 of it and you can pull it up in the url
 (http://www.cfgears.com/page.cfm), but
 http://www.cfgears.com/page.cfm/About still throws a 404.

 So, what gives?  What is it about this page that IIS doesn't want to
 process cgi.path_info correctly?

 --

 Thanks,

 Eric Cobb
 ECAR Technologies, LLC
 http://www.ecartech.com
 http://www.cfgears.com



 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:339495
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Using isDefined/StructKeyExists against a ,Net com object

2010-11-24 Thread Pete Jordan

Joanne Corless wrote:

 I'm doing some .Net integration and the values of the .Net object returned 
 need to be inspected and then displayed if they are defined

 I've found that the conversion process brings everything back as 
 rootObject.Get_ObjectName().Get_Value() which blows up if the object is empty 
 throwing an undefined error - However if I try and use 
 isDefined(rootObject.Get_ObjectName) or 
 StructKeyExists(rootObject,Get_ObjectName) - it just doesn't work - If I add 
 in the () at the end - it blows up Coldfusion

 I can't just display everything because there may be elements that are empty 
 - Has anyone else had this problem  have a solution? 
   

An alternative to wrapping in a cftry block is cfparam, something like:

 cfparam name=rootObject.Get_ObjectName default=undefined!/

 cfif isSimpleValue(rootObject.Get_ObjectName)
   !--- it's undefined! ---
 cfelse
  cfset theValue=rootObject.Get_ObjectName().Get_Value()/
 /cfif

I use a similar mechanism to cope with accessing elements in sparse
arrays (though I default to #server.undefined#, which is a Java object I
create for just this sort of purpose); it should work for your problem too.

-- 
Regards,

Pete Jordan
Horus Web Engineering Ltd
http://www.webhorus.net/
phone: +44 1482 446471
mobile: +44 7973 725120


~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:339496
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Upgrade CF 9 - Now getting Unknown SMTP host

2010-11-24 Thread Dawn Sekel

We didn't change anything in our mail servers
Just upgraded from CF 7 to CF 9.
When I use CF Admin to verify Mail connection
it reports Success.
However, all mail is being marked undeliverable 
and the error message I'm getting is 
Unknown SMTP host: our mail server name
Anyone know how to resolve this?

Thank you in advance.  :-) Dawn 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:339497
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


RE: Upgrade CF 9 - Now getting Unknown SMTP host

2010-11-24 Thread Russ Michaels

Make sure you can still connect to the SMTP server from the web server (not
via CF).

You can test this with telnet

Open command prompt and type

telnet yourServerName  25

if you get a response back from the server then it works, if not, then there
is a problem connecting to the server, not a CF problem.

Russ

-Original Message-
From: Dawn Sekel [mailto:dawnt...@yahoo.com] 
Sent: 24 November 2010 14:28
To: cf-talk
Subject: Upgrade CF 9 - Now getting Unknown SMTP host


We didn't change anything in our mail servers Just upgraded from CF 7 to CF
9.
When I use CF Admin to verify Mail connection it reports Success.
However, all mail is being marked undeliverable and the error message I'm
getting is Unknown SMTP host: our mail server name
Anyone know how to resolve this?

Thank you in advance.  :-) Dawn 



~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:339498
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


RE: (OT) IIS 7 Wonkiness with BlogCFC and cgi.path_info

2010-11-24 Thread Russ Michaels

Sounds like you have a similar problem to this
http://russ.michaels.me.uk/index.cfm?mode=search

The same solution may fix your CF problem as well.

Russ

-Original Message-
From: Scott Stewart [mailto:webmas...@sstwebworks.com] 
Sent: 24 November 2010 14:04
To: cf-talk
Subject: Re: (OT) IIS 7 Wonkiness with BlogCFC and cgi.path_info


I think the way that BlogCFC handles seo friendly URls involves
/index.cfm/..

You'd have to ask Ray about the details

On Wed, Nov 24, 2010 at 8:56 AM, Eric Cobb cft...@ecartech.com wrote:

 I just moved my blog over to a new server (Winders 2008).  So far all 
 of it seems to be working correctly, except for one page, and I can't 
 figure out what IIS is doing.  I'm hoping someone here has run across 
 this or has enough experience with IIS 7 to tell me where to look.

 For whatever reason, IIS seems to be ignoring the cgi.path_info for my 
 about page and process it as a directory.  So, for 
 http://www.cfgears.com/page.cfm/About it's trying to find an About 
 directory and throwing a 404 instead processing page.cfm with About 
 as a cgi.path_info.  The funny thing is, all of the other pages on the 
 site use this exact same url format without any problems.  For 
 example, http://www.cfgears.com/index.cfm/CFML works correctly.

 The only difference in the 2 urls is that one calls index.cfm and the 
 other calls page.cfm.  All index.cfm calls work, and all page.cfm 
 calls break.  I know that page.cfm is there, I put in a Hey!abort at 
 the top of it and you can pull it up in the url 
 (http://www.cfgears.com/page.cfm), but 
 http://www.cfgears.com/page.cfm/About still throws a 404.

 So, what gives?  What is it about this page that IIS doesn't want to 
 process cgi.path_info correctly?

 --

 Thanks,

 Eric Cobb
 ECAR Technologies, LLC
 http://www.ecartech.com
 http://www.cfgears.com



 



~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:339499
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: (OT) IIS 7 Wonkiness with BlogCFC and cgi.path_info

2010-11-24 Thread Raymond Camden

Hmm. Both make use of cgi.path_info - although they do slightly
different things with the data after.

Question - if you make page.cfm a home page (like index.cfm and
default.cfm etc) does it react differently?


On Wed, Nov 24, 2010 at 7:56 AM, Eric Cobb cft...@ecartech.com wrote:

 I just moved my blog over to a new server (Winders 2008).  So far all of
 it seems to be working correctly, except for one page, and I can't
 figure out what IIS is doing.  I'm hoping someone here has run across
 this or has enough experience with IIS 7 to tell me where to look.

 For whatever reason, IIS seems to be ignoring the cgi.path_info for my
 about page and process it as a directory.  So, for
 http://www.cfgears.com/page.cfm/About it's trying to find an About
 directory and throwing a 404 instead processing page.cfm with About as
 a cgi.path_info.  The funny thing is, all of the other pages on the site
 use this exact same url format without any problems.  For example,
 http://www.cfgears.com/index.cfm/CFML works correctly.

 The only difference in the 2 urls is that one calls index.cfm and the
 other calls page.cfm.  All index.cfm calls work, and all page.cfm calls
 break.  I know that page.cfm is there, I put in a Hey!abort at the top
 of it and you can pull it up in the url
 (http://www.cfgears.com/page.cfm), but
 http://www.cfgears.com/page.cfm/About still throws a 404.

 So, what gives?  What is it about this page that IIS doesn't want to
 process cgi.path_info correctly?

 --

 Thanks,

 Eric Cobb
 ECAR Technologies, LLC
 http://www.ecartech.com
 http://www.cfgears.com



 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:339500
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: (OT) IIS 7 Wonkiness with BlogCFC and cgi.path_info

2010-11-24 Thread Eric Cobb

Wow.  Thanks Russ.  That wasn't exactly what was wrong, but you put the 
solution right in front of me.  :)

(I guess now would be a good time to mention that this is actually a 
Railo/Tomcat/IIS install?  Oops...forgot that in my original post.)
In the Tomcat web.xml file there was a section for servlet mappings.  
Among the entries there, I found this:

servlet-mapping
servlet-nameGlobalCFMLServlet/servlet-name
url-pattern/index.cfm/*/url-pattern
/servlet-mapping

So, I said to myself, Hey, that looks like it wants to process a 
cgi.path_info variable.  I wonder what happens if I add an entry like 
that for page.cfm?  Once I did that and bounced Tomcat, it all worked 
correctly.  So, thank you for helping me find the answer.  I didn't 
realize this was a Tomcat issue, I would have sworn up and down that the 
error I was getting was from IIS.  Oh well, seems like I've got some 
Tomcat/IIS issues to figure out.  I'll pester the Railo list of that.  :)

Thanks,

Eric Cobb
ECAR Technologies, LLC
http://www.ecartech.com
http://www.cfgears.com



Russ Michaels wrote:
 Sounds like you have a similar problem to this
 http://russ.michaels.me.uk/index.cfm?mode=search

 The same solution may fix your CF problem as well.

 Russ

 -Original Message-
 From: Scott Stewart [mailto:webmas...@sstwebworks.com] 
 Sent: 24 November 2010 14:04
 To: cf-talk
 Subject: Re: (OT) IIS 7 Wonkiness with BlogCFC and cgi.path_info


 I think the way that BlogCFC handles seo friendly URls involves
 /index.cfm/..

 You'd have to ask Ray about the details

 On Wed, Nov 24, 2010 at 8:56 AM, Eric Cobb cft...@ecartech.com wrote:
   
 I just moved my blog over to a new server (Winders 2008).  So far all 
 of it seems to be working correctly, except for one page, and I can't 
 figure out what IIS is doing.  I'm hoping someone here has run across 
 this or has enough experience with IIS 7 to tell me where to look.

 For whatever reason, IIS seems to be ignoring the cgi.path_info for my 
 about page and process it as a directory.  So, for 
 http://www.cfgears.com/page.cfm/About it's trying to find an About 
 directory and throwing a 404 instead processing page.cfm with About 
 as a cgi.path_info.  The funny thing is, all of the other pages on the 
 site use this exact same url format without any problems.  For 
 example, http://www.cfgears.com/index.cfm/CFML works correctly.

 The only difference in the 2 urls is that one calls index.cfm and the 
 other calls page.cfm.  All index.cfm calls work, and all page.cfm 
 calls break.  I know that page.cfm is there, I put in a Hey!abort at 
 the top of it and you can pull it up in the url 
 (http://www.cfgears.com/page.cfm), but 
 http://www.cfgears.com/page.cfm/About still throws a 404.

 So, what gives?  What is it about this page that IIS doesn't want to 
 process cgi.path_info correctly?

 --

 Thanks,

 Eric Cobb
 ECAR Technologies, LLC
 http://www.ecartech.com
 http://www.cfgears.com




 



 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:339501
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Upgrade CF 9 - Now getting Unknown SMTP host

2010-11-24 Thread Dawn Sekel

Hi Russ:  
Thanks for your answer.  

I get a response back through Telnet from the mail server with the version 
number and that it is ready at today's date and time.  Do I need to take the  
credentials out of CFAdmin and how to I test the email delivery to see if the 
settings are correct.

Thanks!  Dawn

I went into IIS and choose SMTP e-mail (IIS 6) and put in my SMTP server 
information.   
Make sure you can still connect to the SMTP server from the web server (not
via CF).

You can test this with telnet

Open command prompt and type

telnet yourServerName  25

if you get a response back from the server then it works, if not, then there
is a problem connecting to the server, not a CF problem.

Russ

We didn't change anything in our mail servers Just upgraded from CF 7 to CF
9.
When I use CF Admin to verify Mail connection it reports Success.
However, all mail is being marked undeliverable and the error message I'm
getting is Unknown SMTP host: our mail server name
Anyone know how to resolve this?

Thank you in advance.  :-) Dawn 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:339502
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


RE: Upgrade CF 9 - Now getting Unknown SMTP host

2010-11-24 Thread Russ Michaels

Has there been any dns changes for your SMTP server, i.e. has its ip address
changed. CF caches DNS, so restarting CF would resolve that.
Or are they on the same machine ?

Russ

-Original Message-
From: Dawn Sekel [mailto:dawnt...@yahoo.com] 
Sent: 24 November 2010 16:28
To: cf-talk
Subject: Re: Upgrade CF 9 - Now getting Unknown SMTP host


Hi Russ:  
Thanks for your answer.  

I get a response back through Telnet from the mail server with the version
number and that it is ready at today's date and time.  Do I need to take the
credentials out of CFAdmin and how to I test the email delivery to see if
the settings are correct.

Thanks!  Dawn

I went into IIS and choose SMTP e-mail (IIS 6) and put in my SMTP server
information.   
Make sure you can still connect to the SMTP server from the web server 
(not via CF).

You can test this with telnet

Open command prompt and type

telnet yourServerName  25

if you get a response back from the server then it works, if not, then 
there is a problem connecting to the server, not a CF problem.

Russ

We didn't change anything in our mail servers Just upgraded from CF 7 
to CF 9.
When I use CF Admin to verify Mail connection it reports Success.
However, all mail is being marked undeliverable and the error message 
I'm getting is Unknown SMTP host: our mail server name
Anyone know how to resolve this?

Thank you in advance.  :-) Dawn



~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:339503
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


RE: (OT) IIS 7 Wonkiness with BlogCFC and cgi.path_info

2010-11-24 Thread Russ Michaels

Glad you solved it, it will nearly always be tomcat as IIS just passes over
the request.
You will find a recent  post RE a  Railo/ tomcat fix for default documents
on my blog too which might help in case u come across the same issue.

Russ

-Original Message-
From: Eric Cobb [mailto:cft...@ecartech.com] 
Sent: 24 November 2010 15:16
To: cf-talk
Subject: Re: (OT) IIS 7 Wonkiness with BlogCFC and cgi.path_info


Wow.  Thanks Russ.  That wasn't exactly what was wrong, but you put the
solution right in front of me.  :)

(I guess now would be a good time to mention that this is actually a
Railo/Tomcat/IIS install?  Oops...forgot that in my original post.) In the
Tomcat web.xml file there was a section for servlet mappings.  
Among the entries there, I found this:

servlet-mapping
servlet-nameGlobalCFMLServlet/servlet-name
url-pattern/index.cfm/*/url-pattern
/servlet-mapping

So, I said to myself, Hey, that looks like it wants to process a
cgi.path_info variable.  I wonder what happens if I add an entry like that
for page.cfm?  Once I did that and bounced Tomcat, it all worked correctly.
So, thank you for helping me find the answer.  I didn't realize this was a
Tomcat issue, I would have sworn up and down that the error I was getting
was from IIS.  Oh well, seems like I've got some Tomcat/IIS issues to figure
out.  I'll pester the Railo list of that.  :)

Thanks,

Eric Cobb
ECAR Technologies, LLC
http://www.ecartech.com
http://www.cfgears.com



Russ Michaels wrote:
 Sounds like you have a similar problem to this 
 http://russ.michaels.me.uk/index.cfm?mode=search

 The same solution may fix your CF problem as well.

 Russ

 -Original Message-
 From: Scott Stewart [mailto:webmas...@sstwebworks.com]
 Sent: 24 November 2010 14:04
 To: cf-talk
 Subject: Re: (OT) IIS 7 Wonkiness with BlogCFC and cgi.path_info


 I think the way that BlogCFC handles seo friendly URls involves 
 /index.cfm/..

 You'd have to ask Ray about the details

 On Wed, Nov 24, 2010 at 8:56 AM, Eric Cobb cft...@ecartech.com wrote:
   
 I just moved my blog over to a new server (Winders 2008).  So far all 
 of it seems to be working correctly, except for one page, and I can't 
 figure out what IIS is doing.  I'm hoping someone here has run across 
 this or has enough experience with IIS 7 to tell me where to look.

 For whatever reason, IIS seems to be ignoring the cgi.path_info for 
 my about page and process it as a directory.  So, for 
 http://www.cfgears.com/page.cfm/About it's trying to find an About 
 directory and throwing a 404 instead processing page.cfm with About
 as a cgi.path_info.  The funny thing is, all of the other pages on 
 the site use this exact same url format without any problems.  For 
 example, http://www.cfgears.com/index.cfm/CFML works correctly.

 The only difference in the 2 urls is that one calls index.cfm and the 
 other calls page.cfm.  All index.cfm calls work, and all page.cfm 
 calls break.  I know that page.cfm is there, I put in a Hey!abort 
 at the top of it and you can pull it up in the url 
 (http://www.cfgears.com/page.cfm), but 
 http://www.cfgears.com/page.cfm/About still throws a 404.

 So, what gives?  What is it about this page that IIS doesn't want to 
 process cgi.path_info correctly?

 --

 Thanks,

 Eric Cobb
 ECAR Technologies, LLC
 http://www.ecartech.com
 http://www.cfgears.com




 



 



~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:339504
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Upgrade CF 9 - Now getting Unknown SMTP host

2010-11-24 Thread Dawn Sekel

No nothing has changed.  I have another box running CF7 with the same Mail 
settings and it works fine.  And the mail service was working before upgrading 
to CF9.  That was the only thing I changed.   If I put in a bad password or 
user in CF9 administrator I get unsuccessful connection.  If I change the 
password and username to correct ones and test, I get successful connection 
(when choosing Mail in Coldfusion administrator)

But in my mail logs -- I keep getting that the mail is undeliverable.

Dawn
Has there been any dns changes for your SMTP server, i.e. has its ip address
changed. CF caches DNS, so restarting CF would resolve that.
Or are they on the same machine ?

Russ

Hi Russ:  
Thanks for your answer.  

I get a response back through Telnet from the mail server with the version
number and that it is ready at today's date and time.  Do I need to take the
credentials out of CFAdmin and how to I test the email delivery to see if
the settings are correct.

Thanks!  Dawn

I went into IIS and choose SMTP e-mail (IIS 6) and put in my SMTP server
information. 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:339505
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


RE: Upgrade CF 9 - Now getting Unknown SMTP host

2010-11-24 Thread Russ Michaels

Open up one of the failed mails and check the headers, is the server name
correct ?

-Original Message-
From: Dawn Sekel [mailto:dawnt...@yahoo.com] 
Sent: 24 November 2010 17:04
To: cf-talk
Subject: Re: Upgrade CF 9 - Now getting Unknown SMTP host


No nothing has changed.  I have another box running CF7 with the same Mail
settings and it works fine.  And the mail service was working before
upgrading to CF9.  That was the only thing I changed.   If I put in a bad
password or user in CF9 administrator I get unsuccessful connection.  If I
change the password and username to correct ones and test, I get successful
connection (when choosing Mail in Coldfusion administrator)

But in my mail logs -- I keep getting that the mail is undeliverable.

Dawn
Has there been any dns changes for your SMTP server, i.e. has its ip 
address changed. CF caches DNS, so restarting CF would resolve that.
Or are they on the same machine ?

Russ

Hi Russ:  
Thanks for your answer.  

I get a response back through Telnet from the mail server with the 
version number and that it is ready at today's date and time.  Do I 
need to take the credentials out of CFAdmin and how to I test the email 
delivery to see if the settings are correct.

Thanks!  Dawn

I went into IIS and choose SMTP e-mail (IIS 6) and put in my SMTP 
server information.



~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:339506
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: CFDocument and Images

2010-11-24 Thread Russ Michaels

Don't really know what else to suggest, it does sound rather like a bug and
that cfdocument is using the wrong image references.
You could try cleaning out all ColdFusions cache and temp folders I suppose
and se eif that helps,

Russ

On Tue, Nov 23, 2010 at 9:36 AM, JediHomer jediho...@gmail.com wrote:


 Hi,

 Unfortunately this doesn't seem to cure the problem either.  Calling
 iText directly with Image.getInstance() and document.add() doesn't
 show the problem, but due to the complexity of the reports, it's
 something I'd rather only do as a 'no other option' scenario.


 Kind regards

 Jedi

 On 22 November 2010 18:35, Jochem van Dieten joch...@gmail.com wrote:
 
  On Mon, Nov 22, 2010 at 5:18 PM, JediHomer wrote:
  I've tried toggleing the localURL with the img src set to
  ./image1.png and using ExpandPath to get the full path to the file
  so that the img src is set to the full physical path to the file.  I'm
  on linux, so the path then becomes /home/jedi/blah... but the
  problem is still the same...
 
  Try a file:///home/jedi/... path.
 
  Jochem
 
  --
  Jochem van Dieten
  http://jochem.vandieten.net/
 
 

 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:339507
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Upgrade CF 9 - Now getting Unknown SMTP host

2010-11-24 Thread Dawn Sekel

Yes -- it is the fully qualified external mail server name and is the same mail 
server name that is in my other headers.  


Open up one of the failed mails and check the headers, is the server name
correct ?

No nothing has changed.  I have another box running CF7 with the same Mail
settings and it works fine.  And the mail service was working before
upgrading to CF9.  That was the only thing I changed.   If I put in a bad
password or user in CF9 administrator I get unsuccessful connection.  If I
change the password and username to correct ones and test, I get successful
connection (when choosing Mail in Coldfusion administrator)

But in my mail logs -- I keep getting that the mail is undeliverable.

Dawn 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:339508
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Upgrade CF 9 - Now getting Unknown SMTP host

2010-11-24 Thread Scott Stewart

Yes -- it is the fully qualified external mail server name and is the
same mail server name that is in my other headers.

Can you verify that relay is still enabled on this server?
Secondly, did IP addresses (not necessarily names) change? Relay can
be set based on IP address.

HTH

On Wed, Nov 24, 2010 at 12:21 PM, Dawn Sekel dawnt...@yahoo.com wrote:

 Yes -- it is the fully qualified external mail server name and is the same 
 mail server name that is in my other headers.


Open up one of the failed mails and check the headers, is the server name
correct ?

No nothing has changed.  I have another box running CF7 with the same Mail
settings and it works fine.  And the mail service was working before
upgrading to CF9.  That was the only thing I changed.   If I put in a bad
password or user in CF9 administrator I get unsuccessful connection.  If I
change the password and username to correct ones and test, I get successful
connection (when choosing Mail in Coldfusion administrator)

But in my mail logs -- I keep getting that the mail is undeliverable.

Dawn

 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:339509
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


RE: Upgrade CF 9 - Now getting Unknown SMTP host

2010-11-24 Thread Russ Michaels

Ok next step is to check the smtp  server logs and see if CF actually
connected and tried to relay the mail, and if so, what error did the smtp
server give.


Russ

-Original Message-
From: Dawn Sekel [mailto:dawnt...@yahoo.com] 
Sent: 24 November 2010 17:22
To: cf-talk
Subject: Re: Upgrade CF 9 - Now getting Unknown SMTP host


Yes -- it is the fully qualified external mail server name and is the same
mail server name that is in my other headers.  


Open up one of the failed mails and check the headers, is the server 
name correct ?

No nothing has changed.  I have another box running CF7 with the same 
Mail settings and it works fine.  And the mail service was working before
upgrading to CF9.  That was the only thing I changed.   If I put in a bad
password or user in CF9 administrator I get unsuccessful connection.  
If I change the password and username to correct ones and test, I get 
successful connection (when choosing Mail in Coldfusion administrator)

But in my mail logs -- I keep getting that the mail is undeliverable.

Dawn



~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:339510
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Free ColdFusion Hosting

2010-11-24 Thread Matthew Lowrey

Hello Fellow HoFer's:

Because of the economy and me being out of work until this year for almost 2 
years I had to let my personal website hosted by GoDaddy go the way of the 
buffalo.  I was basically using it to work on a home project of building a 
family tree program.  I was doing it for fun and for using new skills I have 
learned at work and school.  Plus, it would give me a chance to take all my 
family's (and wife's family's) information on the web to share with family 
members and our kids when they get old enough to be interested in.

I was hopping to find a place where I could host my ColdFusion code while 
building this project (basically from scratch) for free.  I know this is almost 
impossible but it couldn't hurt to ask and google.

I found one place: http://www.cfmldeveloper.com/ but it's out of country (USA) 
which, I don't have a problem with, but at the same time I'm hesitant to just 
go anywhere with the way the world is today.  Do any of you have any 
recommendations?  Even if they aren't for free, I'm curious your thoughts on 
this subject.

GoDaddy.com has been a great service and very reasonable, I just can't afford 
to go back right now. 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:339511
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Free ColdFusion Hosting

2010-11-24 Thread Charlie Griefer

If this is just a project that you're working on for the sake of honing your
skills, and it doesn't have to be publicly accessible, there's no reason you
couldn't continue to work on it locally using the developer edition of CF.

Free CF hosting is going to be hard to come by.  Outside of the resource you
mentioned, I can't think of any.  There was one that Pablo Varando was
running, but I'm not sure if it's still around.  Even if it is, it was
marketed as being for development only, in which case... well, yeah... the
developer edition of CF running locally works a treat.


On Wed, Nov 24, 2010 at 11:03 AM, Matthew Lowrey rid...@gmail.com wrote:


 Hello Fellow HoFer's:

 Because of the economy and me being out of work until this year for almost
 2 years I had to let my personal website hosted by GoDaddy go the way of the
 buffalo.  I was basically using it to work on a home project of building a
 family tree program.  I was doing it for fun and for using new skills I have
 learned at work and school.  Plus, it would give me a chance to take all my
 family's (and wife's family's) information on the web to share with family
 members and our kids when they get old enough to be interested in.

 I was hopping to find a place where I could host my ColdFusion code while
 building this project (basically from scratch) for free.  I know this is
 almost impossible but it couldn't hurt to ask and google.

 I found one place: http://www.cfmldeveloper.com/ but it's out of country
 (USA) which, I don't have a problem with, but at the same time I'm hesitant
 to just go anywhere with the way the world is today.  Do any of you have any
 recommendations?  Even if they aren't for free, I'm curious your thoughts on
 this subject.

 GoDaddy.com has been a great service and very reasonable, I just can't
 afford to go back right now.

 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:339512
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Free ColdFusion Hosting

2010-11-24 Thread Gerald Guido

IIRC Russ Michaels has something going to that effect on cfmldeveloper.com

HTH
G!

On Wed, Nov 24, 2010 at 1:16 PM, Charlie Griefer
charlie.grie...@gmail.comwrote:


 If this is just a project that you're working on for the sake of honing
 your
 skills, and it doesn't have to be publicly accessible, there's no reason
 you
 couldn't continue to work on it locally using the developer edition of CF.

 Free CF hosting is going to be hard to come by.  Outside of the resource
 you
 mentioned, I can't think of any.  There was one that Pablo Varando was
 running, but I'm not sure if it's still around.  Even if it is, it was
 marketed as being for development only, in which case... well, yeah...
 the
 developer edition of CF running locally works a treat.


 On Wed, Nov 24, 2010 at 11:03 AM, Matthew Lowrey rid...@gmail.com wrote:

 
  Hello Fellow HoFer's:
 
  Because of the economy and me being out of work until this year for
 almost
  2 years I had to let my personal website hosted by GoDaddy go the way of
 the
  buffalo.  I was basically using it to work on a home project of building
 a
  family tree program.  I was doing it for fun and for using new skills I
 have
  learned at work and school.  Plus, it would give me a chance to take all
 my
  family's (and wife's family's) information on the web to share with
 family
  members and our kids when they get old enough to be interested in.
 
  I was hopping to find a place where I could host my ColdFusion code while
  building this project (basically from scratch) for free.  I know this is
  almost impossible but it couldn't hurt to ask and google.
 
  I found one place: http://www.cfmldeveloper.com/ but it's out of country
  (USA) which, I don't have a problem with, but at the same time I'm
 hesitant
  to just go anywhere with the way the world is today.  Do any of you have
 any
  recommendations?  Even if they aren't for free, I'm curious your thoughts
 on
  this subject.
 
  GoDaddy.com has been a great service and very reasonable, I just can't
  afford to go back right now.
 
 

 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:339513
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


COMODO Wiper - Currupt Files - Anybody Know How To Get Them Back?

2010-11-24 Thread Matthew Lowrey

Hello Fellow HoFers:

I have a very big problem and I'm hoping to find a solution.  I've searched and 
searched for over 2 weeks now for a solution and have come up dry including the 
COMODO forums.  For those of you who are not familiar with the title, COMODO () 
is basically an all-in-one place to find your home/office security needs.

About a month ago I was cleaning out my computer and it was still running slow, 
so I decided to use this new program I had never used before called Wiper.  
After briefly reading the help file it basically said you could go through your 
hard drive and not only erase for good but write over your files completely 
(0's I think).  I went ahead and chose to go through everything and wipe clean 
the recycled files, temporary files, etc.

Well, either I messed up or I didn't understand the process and it went through 
and wiped everything... the files still show up, I see them, but if I try and 
open them I get basically that they're corrupt.

So, the programs I have tried are mostly file recovery programs... when I bring 
up the file to preview or try and recover them, they get recovered, but they're 
still unable to be viewed/opened.  Here's some background information and steps 
I did take so far:

Programs I've downloaded and tried with no success:
 - Recuva (http://www.piriform.com/recuva)
 - act...@file
 - RecoverMyFiles.com
Info On What is Wiper:
Ref: 
https://forums.comodo.com/help-csc/winduhs-xp-intermittent-shut-down-after-system-cleaner-run-t44831.0.html;prev_next=prev
Ref: 
http://search.atomz.com/search/?sp_a=sp10042e7csp_q=wipersp_p=allsp_f=ISO-8859-1

COMODO Forums about this issue and others having this issue:
Ref: http://forums.comodo.com/help-csc/lost-files-through-wiper-t50577.0.html
Ref: 
http://forums.comodo.com/faq-csc/wiper-how-to-avoid-erasing-important-files-t54436.0.html;msg383712#msg383712
 (wish I saw this BEFORE I used the program)
Ref: https://forums.comodo.com/help-csc/comodo-lost-my-all-data-t47146.0.html 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:339514
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Webservice error after CF 8.01 update

2010-11-24 Thread Brook Davies

Hello,

 

We recently updated to CF 8.01. Now we're getting this intermittent error on
a webservice call that seems to be related to the custom return type:

 

?xml version=1.0 encoding=UTF-8?soapenv:Envelope
xmlns:soapenv=http://schemas.xmlsoap.org/soap/envelope/;
xmlns:xsd=http://www.w3.org/2001/XMLSchema;
xmlns:xsi=http://www.w3.org/2001/XMLSchema-instance;

 soapenv:Body

  soapenv:Fault

   faultcodesoapenv:Server.userException/faultcode

   faultstringcoldfusion.xml.rpc.CFCInvocationException:
[java.lang.ClassNotFoundException :
components.bridge.Cp_startup][java.lang.LinkageError : loader (instance of
coldfusion/xml/rpc/SkeletonClassLoader): attempted  duplicate class
definition for name: quot;components/bridge/Cp_startupquot;]/faultstring

   detail

ns1:hostname
xmlns:ns1=http://xml.apache.org/axis/;YOURMAMA/ns1:hostname

   /detail

  /soapenv:Fault

 /soapenv:Body

/soapenv:Envelope

 

 

The problem is described in good detail here:

http://blog.coldfusionpowered.com/?p=28

 

Clearing the cfc skeletons worked once, but does not work anymore. All
referenced to custom return types use the same case. 

 

Has anyone else seen this? Google turned up nothing...




~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:339515
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


RE: Free ColdFusion Hosting

2010-11-24 Thread Paul Alkema

That link looks familiar. ; )

I found one place: http://www.cfmldeveloper.com/ but it's out of country
(USA) which, I don't have a problem with, but at the same time I'm hesitant
to just go anywhere with the way the world is today.



-Original Message-
From: Gerald Guido [mailto:gerald.gu...@gmail.com] 
Sent: Wednesday, November 24, 2010 1:41 PM
To: cf-talk
Subject: Re: Free ColdFusion Hosting


IIRC Russ Michaels has something going to that effect on cfmldeveloper.com

HTH
G!




~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:339516
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Free ColdFusion Hosting

2010-11-24 Thread Gerald Guido

Thanx Paul... I am going to blame it on my cold. :)

G!

On Wed, Nov 24, 2010 at 3:14 PM, Paul Alkema paulalkemadesi...@gmail.comwrote:


 That link looks familiar. ; )

 I found one place: http://www.cfmldeveloper.com/ but it's out of country
 (USA) which, I don't have a problem with, but at the same time I'm hesitant
 to just go anywhere with the way the world is today.



 -Original Message-
 From: Gerald Guido [mailto:gerald.gu...@gmail.com]
 Sent: Wednesday, November 24, 2010 1:41 PM
 To: cf-talk
 Subject: Re: Free ColdFusion Hosting


 IIRC Russ Michaels has something going to that effect on cfmldeveloper.com

 HTH
 G!




 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:339517
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


RE: Free ColdFusion Hosting

2010-11-24 Thread Paul Alkema

Matthew,
If it was me, I wouldn't poo-poo it just because it's hosted out of the
country. If it's free, I wouldn't expect GREAT honest but it's free right!?
I would think as long as your not looking to put anything that you want to
keep secure on it IE; credit card data, SSN's, other people's passwords ect,
that you'd be fine.

If it was me I would just sign up, pay the £1.00 setup fee (don't know if
you saw that or not) and if they charge you more than £1.00 than it's credit
card fraud, file a dispute with your cc company which is really easy and you
get your money back.

If you do, do it, make sure you share your experience with everyone so we
can see how it worked out for you. ;)

Paul Alkema
http://paulalkema.com/


~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:339518
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: COMODO Wiper - Currupt Files - Anybody Know How To Get Them Back?

2010-11-24 Thread Mike Chabot

Comodo is a large for-profit company. They have a phone number that
you can call to get help with their products.

-Mike Chabot

On Wed, Nov 24, 2010 at 1:55 PM, Matthew Lowrey rid...@gmail.com wrote:

 Hello Fellow HoFers:

 I have a very big problem and I'm hoping to find a solution.  I've searched 
 and searched for over 2 weeks now for a solution and have come up dry 
 including the COMODO forums.  For those of you who are not familiar with the 
 title, COMODO () is basically an all-in-one place to find your home/office 
 security need

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:339519
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Dealing with tree node sorting

2010-11-24 Thread Tony Bentley

I had this awesome tree that now needs a different sort order. This has a table 
of parents and sub parents and then children. I have it working in this order:

P
 C //this is 
 P
  C
  C
  C
  C
 P
  C
P
 C
 C
 C

The parent and child tables have a sort column

Now I need the following sort order:

P
 P
  C
  C
  C
  C
 P
  C
 C //this is last now instead of first
P
 C
 C
 C

I'm stumped on how to get this sort order and then build it in an XML tree. I 
know this can be a complex process to show the code so if you could describe 
just the table schema? In my function, I loop the parents, then loop the 
children but this requires looping the parents, then looping the sub parents 
and keeping into account that there may be a child in between parents.


~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:339520
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Free ColdFusion Hosting

2010-11-24 Thread Mike Kear

I'm not sure what your problem is with hosting in another country.
Specially not if the other country is the USA.  It's not going
anywhere.   I've been hosting sites in the USA since 1996 and never
once had a problem related to the physical location.

At first i expected to have performance problems because of the
distance between the server and the users, but those fears proved to
be groundless.   There is plenty of bandwidth carrying data around the
world, and quite frankly i dont think it matters where your server is
located,  unless you have pretty significant amounts of traffic.

There ARE issues you need to think about with any hosting company, but
geographic location isn't one of them, if the company is located in
one of the G20 countries.

Incidentally,   as a sidebar,  I received a UCE last month from a
Russian web host, offering to host any project I might wish to host,
including  (and i was astonished to see this spelled out):

credit card fraud,  (yes, they used the word fraud!)
personal details collection (meaning phishing I assume)
music file sharing
adult files
porn movies
child pornography  (yes!  They actually invited me to host child porn! )

I was flabbergasted that they were so open and blatant about it.
Needless to say I wasnt interested in what they have to offer,  and I
referred their offer to the Australian Federal Police.



Cheers
Mike Kear
Windsor, NSW, Australia
Adobe Certified Advanced ColdFusion Developer
AFP Webworks
http://afpwebworks.com
ColdFusion 9 Enterprise, PHP, ASP, ASP.NET hosting from AUD$15/month



On Thu, Nov 25, 2010 at 7:23 AM, Paul Alkema
paulalkemadesi...@gmail.com wrote:

 Matthew,
 If it was me, I wouldn't poo-poo it just because it's hosted out of the
 country. If it's free, I wouldn't expect GREAT honest but it's free right!?
 I would think as long as your not looking to put anything that you want to
 keep secure on it IE; credit card data, SSN's, other people's passwords ect,
 that you'd be fine.

 If it was me I would just sign up, pay the £1.00 setup fee (don't know if
 you saw that or not) and if they charge you more than £1.00 than it's credit
 card fraud, file a dispute with your cc company which is really easy and you
 get your money back.

 If you do, do it, make sure you share your experience with everyone so we
 can see how it worked out for you. ;)

 Paul Alkema
 http://paulalkema.co

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:339521
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


RE: Webservice error after CF 8.01 update

2010-11-24 Thread Brook Davies

Just an update on this. Clearing the generated class files and the
cfcskeletons classes did not resolve the issue. Restarting the server did. 

However, I don't trust it will continue working since it has been
intermittent. Fingers crossed it was a left over class file prior to
upgrading to 8.01 (although I thought I had cleared all class files during
the upgrade.

Brook

-Original Message-
From: Brook Davies [mailto:cft...@logiforms.com] 
Sent: November-24-10 11:57 AM
To: cf-talk
Subject: Webservice error after CF 8.01 update


Hello,

 

We recently updated to CF 8.01. Now we're getting this intermittent error on
a webservice call that seems to be related to the custom return type:

 

?xml version=1.0 encoding=UTF-8?soapenv:Envelope
xmlns:soapenv=http://schemas.xmlsoap.org/soap/envelope/;
xmlns:xsd=http://www.w3.org/2001/XMLSchema;
xmlns:xsi=http://www.w3.org/2001/XMLSchema-instance;

 soapenv:Body

  soapenv:Fault

   faultcodesoapenv:Server.userException/faultcode

   faultstringcoldfusion.xml.rpc.CFCInvocationException:
[java.lang.ClassNotFoundException :
components.bridge.Cp_startup][java.lang.LinkageError : loader (instance of
coldfusion/xml/rpc/SkeletonClassLoader): attempted  duplicate class
definition for name: quot;components/bridge/Cp_startupquot;]/faultstring

   detail

ns1:hostname
xmlns:ns1=http://xml.apache.org/axis/;YOURMAMA/ns1:hostname

   /detail

  /soapenv:Fault

 /soapenv:Body

/soapenv:Envelope

 

 

The problem is described in good detail here:

http://blog.coldfusionpowered.com/?p=28

 

Clearing the cfc skeletons worked once, but does not work anymore. All
referenced to custom return types use the same case. 

 

Has anyone else seen this? Google turned up nothing...






~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:339522
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Free ColdFusion Hosting

2010-11-24 Thread Arsalan Tariq Keen

cfmldeveloper.com is a great resource



Regards,
Arsalan

--
From: Mike Kear afpwebwo...@gmail.com
Sent: Thursday, November 25, 2010 4:08 AM
To: cf-talk cf-talk@houseoffusion.com
Subject: Re: Free ColdFusion Hosting


 I'm not sure what your problem is with hosting in another country.
 Specially not if the other country is the USA.  It's not going
 anywhere.   I've been hosting sites in the USA since 1996 and never
 once had a problem related to the physical location.

 At first i expected to have performance problems because of the
 distance between the server and the users, but those fears proved to
 be groundless.   There is plenty of bandwidth carrying data around the
 world, and quite frankly i dont think it matters where your server is
 located,  unless you have pretty significant amounts of traffic.

 There ARE issues you need to think about with any hosting company, but
 geographic location isn't one of them, if the company is located in
 one of the G20 countries.

 Incidentally,   as a sidebar,  I received a UCE last month from a
 Russian web host, offering to host any project I might wish to host,
 including  (and i was astonished to see this spelled out):

 credit card fraud,  (yes, they used the word fraud!)
 personal details collection (meaning phishing I assume)
 music file sharing
 adult files
 porn movies
 child pornography  (yes!  They actually invited me to host child porn! )

 I was flabbergasted that they were so open and blatant about it.
 Needless to say I wasnt interested in what they have to offer,  and I
 referred their offer to the Australian Federal Police.



 Cheers
 Mike Kear
 Windsor, NSW, Australia
 Adobe Certified Advanced ColdFusion Developer
 AFP Webworks
 http://afpwebworks.com
 ColdFusion 9 Enterprise, PHP, ASP, ASP.NET hosting from AUD$15/month



 On Thu, Nov 25, 2010 at 7:23 AM, Paul Alkema
 paulalkemadesi...@gmail.com wrote:

 Matthew,
 If it was me, I wouldn't poo-poo it just because it's hosted out of the
 country. If it's free, I wouldn't expect GREAT honest but it's free 
 right!?
 I would think as long as your not looking to put anything that you want 
 to
 keep secure on it IE; credit card data, SSN's, other people's passwords 
 ect,
 that you'd be fine.

 If it was me I would just sign up, pay the £1.00 setup fee (don't know if
 you saw that or not) and if they charge you more than £1.00 than it's 
 credit
 card fraud, file a dispute with your cc company which is really easy and 
 you
 get your money back.

 If you do, do it, make sure you share your experience with everyone so we
 can see how it worked out for you. ;)

 Paul Alkema
 http://paulalkema.co

 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:339523
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Free ColdFusion Hosting

2010-11-24 Thread AJ Mercer

Do you have broadband at home?

I run my free OS website from home
Ubuntu/Railo/Tomcat/mySQL/mangoBlog

On 25 November 2010 02:03, Matthew Lowrey rid...@gmail.com wrote:


 Hello Fellow HoFer's:

 Because of the economy and me being out of work until this year for almost
 2 years I had to let my personal website hosted by GoDaddy go the way of the
 buffalo.  I was basically using it to work on a home project of building a
 family tree program.  I was doing it for fun and for using new skills I have
 learned at work and school.  Plus, it would give me a chance to take all my
 family's (and wife's family's) information on the web to share with family
 members and our kids when they get old enough to be interested in.

 I was hopping to find a place where I could host my ColdFusion code while
 building this project (basically from scratch) for free.  I know this is
 almost impossible but it couldn't hurt to ask and google.

 I found one place: http://www.cfmldeveloper.com/ but it's out of country
 (USA) which, I don't have a problem with, but at the same time I'm hesitant
 to just go anywhere with the way the world is today.  Do any of you have any
 recommendations?  Even if they aren't for free, I'm curious your thoughts on
 this subject.

 GoDaddy.com has been a great service and very reasonable, I just can't
 afford to go back right now.

 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:339524
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Free ColdFusion Hosting

2010-11-24 Thread Gerald Guido

Do you have broadband at home?

Yeah, what AJ said.

If you have a spare box with a gig of ram you can easily run an Open Source
CFML stack. I have hosted sites from home during dire straits.

Another freebie is Amazon's free tier. If you are handy with Linux you can
get a micro instance up and running for free (for one year at least).

http://aws.amazon.com/free/

ACF is a tight squeeze but Railo or OBD would have no problem running on a
micro instance. I have a biotch/dev box running right now and it is plenty
happy with the 613  megs of ram.

HTH
G!



On Wed, Nov 24, 2010 at 9:37 PM, AJ Mercer ajmer...@gmail.com wrote:


 Do you have broadband at home?

 I run my free OS website from home
 Ubuntu/Railo/Tomcat/mySQL/mangoBlog

 On 25 November 2010 02:03, Matthew Lowrey rid...@gmail.com wrote:

 
  Hello Fellow HoFer's:
 
  Because of the economy and me being out of work until this year for
 almost
  2 years I had to let my personal website hosted by GoDaddy go the way of
 the
  buffalo.  I was basically using it to work on a home project of building
 a
  family tree program.  I was doing it for fun and for using new skills I
 have
  learned at work and school.  Plus, it would give me a chance to take all
 my
  family's (and wife's family's) information on the web to share with
 family
  members and our kids when they get old enough to be interested in.
 
  I was hopping to find a place where I could host my ColdFusion code while
  building this project (basically from scratch) for free.  I know this is
  almost impossible but it couldn't hurt to ask and google.
 
  I found one place: http://www.cfmldeveloper.com/ but it's out of country
  (USA) which, I don't have a problem with, but at the same time I'm
 hesitant
  to just go anywhere with the way the world is today.  Do any of you have
 any
  recommendations?  Even if they aren't for free, I'm curious your thoughts
 on
  this subject.
 
  GoDaddy.com has been a great service and very reasonable, I just can't
  afford to go back right now.
 
 

 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:339525
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Moving to DC, need advice

2010-11-24 Thread ram d

Jason, you can expect $80 - $90 per hour easily if you don't have layers in
between..

On Thu, Nov 4, 2010 at 4:18 PM, Jason Birch birchma...@yahoo.com wrote:


 I am a Senior ColdFusion Developer that is moving out to the Washington,
 DC.
 Obviously housing is a premium in the DC area. I would like to buy or rent
 a
 house in one of the suburbs, so that we can have a fenced in yard for my
 dogs.
 What suburbs are the safest and most affordable in DC that have single
 family
 homes (not townhomes/apartments)? Which area is lower in taxes? Commuting
 by
 train/light rail would be ideal. Also, what is a typical salary range for
 Senior
 CF Developers in the DC area? Thanks!

 - Jason




 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-jobs-talk/message.cfm/messageid:4391
Subscription: http://www.houseoffusion.com/groups/cf-jobs-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-jobs-talk/unsubscribe.cfm