ColdFusion 8 CFIDE being dropped

2007-09-06 Thread Justin T
I'm working on an application in a subdirectory of the main application.

wwwroot\mySubApp
wwwroot\cfide

So, I was playing around with the new layout tags. I had a menu working just 
fine and then I copied and pasted the cflayout example from the live docs into 
my layout. After that, the javascript would no longer work. My output only had 
basic html formatting.

So, I did an experiment in another subdirectly. It turns out the code works the 
first time the page is called, but subsequent calls cause it to fail. AFter 
that, even deleted and readding the code will not cause the javascript to work.

Over and over all I get is the javascript console error "coldfusion is 
undefined". 

~|
Create robust enterprise, web RIAs.
Upgrade to ColdFusion 8 and integrate with Adobe Flex
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJP

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:287950
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Error when defining var

2007-09-06 Thread James Holmes
What happens if, at the top of the function, you put



instead?

On 9/7/07, chad gray <[EMAIL PROTECTED]> wrote:
> I am getting this error and the error only occours if i put a  ZJFdao = ""> in the function.  Any ideas?
>
> Element ZJFDAO is undefined in a Java object of type class 
> [Ljava.lang.String; referenced as
>
> The error occurred in 
> D:\Web\bervalent_WC\com\careyweb\servalent\misc\ZJF.cfc: line 31
>
> 29 : CreateObject("component","com.careyweb.servalent.misc.ZJFdao")>
> 30 :
> 31 :
> 32 :

-- 
mxAjax / CFAjax docs and other useful articles:
http://www.bifrost.com.au/blog/

~|
Get the answers you are looking for on the ColdFusion Labs
Forum direct from active programmers and developers.
http://www.adobe.com/cfusion/webforums/forum/categories.cfm?forumid-72&catid=648

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:287954
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: How create results with an Outer Join using 2 different databases

2007-09-06 Thread Joy Holman
I was able to use some sample data to create a simple Left Join and got results 
using 2 different databases. 
Thank you. I learned something.

I need to learn more though. 

Here's kinda pseudo-code for what I need to end up with:
I need the results of my first query to get the data for the intermediate query 
and that resulting data to use in the last query from the other database. Then 
I need to fold the results of the last query into the data from the first 
query. That query result is then used in in existing code to build an array 
with structures. 

The input into the array depends on what the results need to be sorted on as 
well as populate the search results to display. It was fine to sort by document 
name, but after writing all the code and delivering it to the customer, he now 
wants to sort on Source Title, which is not fine since I need to join some data 
from the Sources table with its matches in the Facilities table to get the 
SourceTitle data for those Sources (The other Source records already have 
sourceTitle's from admin form entries that are not Facilities.) 
Ultimately, I need all the SourceTitle fields populated in the first query 
result. Then I can sort by SourceTitle.
The first query is what gave me all the rows I need.

(I didn't put the Facility sourceTitle names in the Sources table when the 
Source table is being populated by admin form entries b/c the Facility 
information may change so I always have to go to the Facilities table in the 
other database to get Facilities data.)

Maybe this is too much information?

I appreciate any light you can shed on this. Thanks much! 

~|
ColdFusion is delivering applications solutions at at top companies 
around the world in government.  Find out how and where now
http://www.adobe.com/cfusion/showcase/index.cfm?event=finder&productID=1522&loc=en_us

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:287949
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Dynamic named CFC and method

2007-09-06 Thread Andrew Grosset
I have a cfc in the application scope and I access it like so:



I would like to be able to pass in the cfc name (in this case "myImage") and 
the method/function ("adateIm") dynamically.

If I try this, I get an error: " A CFML variable name cannot end with a "." 
character"

   


I also tried this but then it fails again as updateIm calls another function 
within "aImage.cfc" and it can't see/access it:




This works but I'm not accessing the cfc in the application scope which rather 
defeats the purpose of writing it into the application scope.





Is there a way to access the cfc and method stored in the application scope and 
pass in the cfc name and method dynamically?

Andrew


~|
ColdFusion 8 - Build next generation apps
today, with easy PDF and Ajax features - download now
http://download.macromedia.com/pub/labs/coldfusion/cf8_beta_whatsnew_052907.pdf

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:287953
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


RE: ColdFusion 8 CFIDE being dropped

2007-09-06 Thread Andrew Scott
I am going to assume that the IIS / Apache website details has NO virtual
mapping to the /cfide directory.



Andrew Scott
Senior Coldfusion Developer
Aegeon Pty. Ltd.
www.aegeon.com.au
Phone: +613  8676 4223
Mobile: 0404 998 273



-Original Message-
From: Justin T [mailto:[EMAIL PROTECTED] 
Sent: Friday, 7 September 2007 3:23 AM
To: CF-Talk
Subject: ColdFusion 8 CFIDE being dropped

I'm working on an application in a subdirectory of the main application.

wwwroot\mySubApp
wwwroot\cfide

So, I was playing around with the new layout tags. I had a menu working just
fine and then I copied and pasted the cflayout example from the live docs
into my layout. After that, the javascript would no longer work. My output
only had basic html formatting.

So, I did an experiment in another subdirectly. It turns out the code works
the first time the page is called, but subsequent calls cause it to fail.
AFter that, even deleted and readding the code will not cause the javascript
to work.

Over and over all I get is the javascript console error "coldfusion is
undefined". 



~|
ColdFusion 8 - Build next generation apps
today, with easy PDF and Ajax features - download now
http://download.macromedia.com/pub/labs/coldfusion/cf8_beta_whatsnew_052907.pdf

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:287955
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: PHP or .Net?

2007-09-06 Thread Ali Majdzadeh
Thanks everybody. I read all your great replies and at the end I decided I 
choose JAVA as my next move. I will learn more about CSS or AJAX while they are 
usefull anyway but JAVA will be what I will focus as my server side tech. I 
started with VTC.com Java learning video series which looked to be the fastest 
way to learn about basics. 
I wait for your more replies on the refternces and some tutorials which help me 
to use my CF skills in JAVA.
Thanks
benign 

~|
Get involved in the latest ColdFusion discussions, product
development sharing, and articles on the Adobe Labs wiki.
http://labs/adobe.com/wiki/index.php/ColdFusion_8

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:287948
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: CF8 HTML CFGRID with checkbox possible with binding?

2007-09-06 Thread Eron Cohen
Ok, I solved my error issue--I just needed to remove the semicolon from the end 
of "onClick=form.submit();"--So now I have checkboxes that submit the form when 
checked inside of an HTML grid on CF8.

> I am working on the same thing right now.  I have success getting the 
> checkbox to show up. That much is no problem.  The way I am doing it 
> is by using QueryNew/QuerySetCell to create a query that I send back 
> to the CFGRID via binding to a CFC.  Here is how I am creating my 
> checkbox:
> 
>  type=checkbox name=install_complete_date value=#dateformat(now(),
> "mm/dd/")#  onClick=form.submit();>)>
> 
> I want to set it up so that when the checkbox is checked, the form is 
> submitted automatically.  Unfortunately, when the checkbox is checked, 
> the form does submit, but I am getting a mysterious Error: The 
> submitted cfgrid form field is corrupt (name: 
> __CFGRID__CFFORM_1__FIRSTGRID value: __CFGRID__COLUMN__=ROW; 
> __CFGRID__DATA__=5; ... I have no idea what this is about or why its 
> happening.  Anyone have any guesses? 
> 
> I think I have alot to learn about CFGRID.
> 
> Thank you.
> 
> >I did get the checkbox to showup, however, it initally shows a "true" 
> or 
> >"false" in the column rather than a checkbox.  Upon clicking the cell 
> 
> >three times, a checkbox finally appears, and can then be changed 
> using 
> >ajax/cfc.
> >
> >I ended up doing a flash grid...i think this may be a bug with HTML 
> >bound grids. 
> >
> >Chris Martin
> >
> >
> >
> >Shy Boy wrote:
> >> 


~|
ColdFusion is delivering applications solutions at at top companies 
around the world in government.  Find out how and where now
http://www.adobe.com/cfusion/showcase/index.cfm?event=finder&productID=1522&loc=en_us

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:287947
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


cfexecute and perl script CF8

2007-09-06 Thread Jaysheel Bhavsar
Hey guys,
  I am try to execute a perl scirpt within CF8 but I doesn't seem to work. I 
tired to execute it the same way before in the previous version of CF but even 
then I wasn't successful.
  
  Here is that my cf page looks like. (its a test page so has nothing else on 
it except for the cfexecute tag.)



This perl script does work.  If I run it on command line it create a temp.jpeg 
file which has the correct Image.  Right now its does nothing.  When this page 
is executed I get no errors, and no file is produced.  I have been working on 
this for 2 days now without any success please help.

Thank you 

~|
ColdFusion is delivering applications solutions at at top companies 
around the world in government.  Find out how and where now
http://www.adobe.com/cfusion/showcase/index.cfm?event=finder&productID=1522&loc=en_us

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:287946
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Application Pools getting disabled

2007-09-06 Thread Jim Easterly
This did not help.  It is still having problems at high traffic times. 

~|
ColdFusion 8 - Build next generation apps
today, with easy PDF and Ajax features - download now
http://download.macromedia.com/pub/labs/coldfusion/cf8_beta_whatsnew_052907.pdf

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:287952
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Error when defining var

2007-09-06 Thread chad gray
I am getting this error and the error only occours if i put a  in the function.  Any ideas?

Element ZJFDAO is undefined in a Java object of type class [Ljava.lang.String; 
referenced as  
  
The error occurred in D:\Web\bervalent_WC\com\careyweb\servalent\misc\ZJF.cfc: 
line 31
 
29 :
30 :
31 :
32 :

 




~|
Create robust enterprise, web RIAs.
Upgrade to ColdFusion 8 and integrate with Adobe Flex
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJP

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:287945
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


MS SQL 2005 vs CFMX 7.02Ent

2007-09-06 Thread Wil Genovese
Ok, we recently switched to running MS SQL 2005 servers in an Active/Passive 
cluster on Win2003 (64Bit).  While we were testing we had no issues with DB 
access. After migrating most of our databases to the SQL 2005 Cluster we are 
not getting the same error a few times a day that crashes our whole CFMX 
application (which is running behind a load balancer across three CFMX servers.

The error we see is this: (note: az_tar is a valid name of a DB)

Message: Error Executing Database Query.
Detail: [Macromedia][SQLServer JDBC Driver][SQLServer]Cannot open database 
"az_tar" requested by the login. The login failed.
Date: 09/05/2007
Time: 06:16:08

The login permissions are set right and have not changed from the previous 
server to this server cluster. Also, the logins work most of the day without an 
issue then all of a sudden for reasons unknown to us this error pops up across 
most or all the databases on this server.

We found a MS JDBC driver (Microsoft SQL Server 2005 JDBC Driver 1.1) that they 
state "In its continued commitment to interoperability, Microsoft provides a 
Java Database Connectivity (JDBC) driver for use with SQL Server 2005."  

My questions are:
Has anyone see this issue before?
And if so, what was the problem/solution?
Has anyone tried this MS JDBC Driver and what were your results?

Thank You,
Wil Genovese


~|
Get involved in the latest ColdFusion discussions, product
development sharing, and articles on the Adobe Labs wiki.
http://labs/adobe.com/wiki/index.php/ColdFusion_8

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:287951
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


RE: Model Glue and Reactor

2007-09-06 Thread Eric Roberts
Yeah...that is what fixed it.  It had an entry in there by default  that I assume would use the poperties set in
that bean...but I guess not :-D.  I ended up just putting the full path in.

Eric

-Original Message-
From: Dinner [mailto:[EMAIL PROTECTED] 
Sent: Thursday, September 06, 2007 8:26 PM
To: CF-Talk
Subject: Re: Model Glue and Reactor

Hey Eric, not sure if this is what you're after, but I've got this:




/corps/mysuperproject/config/reactor/Reactor.x
ml
mysuperproject
mysuperproject_dev
mysql
/corps/mysuperproject/model/data/reactor
production


In my main coldspring.xml file (along with all the other model-glue specific
settings).  Note the absolute path (cough) to the Reactor.xml-  that'll
avoid any strangeness that might come about via relative paths, just to
cut out that bit of uncertainty.

Assuming MG:U is loading up but just not loading your reactor config- not
sure
if that was your only problem or not.

Have fun folks, I'm off for a bit!

On 9/6/07, Eric Roberts <[EMAIL PROTECTED]> wrote:
>
> OK...I hard coded the pathToConfigXML value as the default in the argument
> in the function in reactor/reactorfactory.cfc and it worked fine.  So I am
> suspecting that it is not picking up the Coldspring.xml file properly or
>




~|
Download the latest ColdFusion 8 utilities including Report Builder,
plug-ins for Eclipse and Dreamweaver updates.
http;//www.adobe.com/cfusion/entitlement/index.cfm?e=labs%5adobecf8%5Fbeta

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:287944
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: BlogCFC

2007-09-06 Thread Eric Roberts
Thanks...I thought it did for some reason...

Eric

-Original Message-
From: Brian Kotek [mailto:[EMAIL PROTECTED] 
Sent: Thursday, September 06, 2007 7:53 PM
To: CF-Talk
Subject: Re: BlogCFC

It does not.

On 9/6/07, Eric Roberts <[EMAIL PROTECTED]> wrote:
>
> Got a question for you Ray...does BlogCFC make use of reactor?  I don't
> remeber if it did or not.
>
> Eric
>
>
> 



~|
ColdFusion 8 - Build next generation apps
today, with easy PDF and Ajax features - download now
http://download.macromedia.com/pub/labs/coldfusion/cf8_beta_whatsnew_052907.pdf

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:287943
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: How to move CFIDE in CF8?

2007-09-06 Thread Claude Schneegans
 >>I put everything back the way it was and went
into the Administrator and see that it CF has an unchangeable logical
directory mapping of /CFIDE pointing at the physical location.

Exact, I found the same problem and no work around.
The solution for me was to install the stand alone version, leave CFIDE 
where it is,
patch IIS to use CF for .cfm files, and use the Administrator under the 
CF server.

This way, I'm using CF under IIS for all sites, and CF stand alone only 
for the Administrator.

-- 
___
REUSE CODE! Use custom tags;
See http://www.contentbox.com/claude/customtags/tagstore.cfm
(Please send any spam to this address: [EMAIL PROTECTED])
Thanks.


~|
ColdFusion 8 - Build next generation apps
today, with easy PDF and Ajax features - download now
http://download.macromedia.com/pub/labs/coldfusion/cf8_beta_whatsnew_052907.pdf

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:287942
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


re: Model Glue and Reactor

2007-09-06 Thread Eric Roberts
Found the problem...the ormservice bean wasn't getting the pathToConfigXml
from the reactorConfiguration bean.  I added it as a construction-arg and it
works fine now...or at least it loads.  I haven't had the chance to try
using reactor to access a db yet...

Eric


~|
Get the answers you are looking for on the ColdFusion Labs
Forum direct from active programmers and developers.
http://www.adobe.com/cfusion/webforums/forum/categories.cfm?forumid-72&catid=648

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:287941
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Consume .NET web service with complex arguments

2007-09-06 Thread Kris Jones
> did you ever get this figured out? I am coming across the same thing

Hi Shane,

I did find an approach that works for my situation. Here are some
abbreviated notes I put together for our team:

Note, you'll need to access the WSDL file, and soap descriptions for
your webservice calls.

Cheers,
Kris

-
ColdFusion has the ability to consume (e.g., call) a webservice using
it's CFINVOKE and CFINVOKEARGUMENT tags:






You can also wrap the arguments up in the cfinvoke tag itself, like this:



Be aware that ColdFusion has, in it's CFInvoke tag, parameters called
username and password. If the web service you are calling has
attributes with these same names, your web service call will not work
if you are using the simple form of CFInvoke like this:



You must create a structure to hold your attributes, and pass that in
the attributeCollection parameter instead:








In general, when you are dealing with complex inputs to a webservice,
you are probably better off just constructing the soap packet
manually, and calling the webservice via cfhttp, rather than
attempting to use cfinvoke on a webservice object, for example:


http://schemas.xmlsoap.org/soap/envelope/";
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";
xmlns:xsd="http://www.w3.org/2001/XMLSchema";>


#variables.sessionkey#
ImpExpTestClient
xmlservices




#variables.xmlstring#
#request.integration_package_id#


















In the cfhttp call above, note the URL, Host, SOAPAction,
Content-Length, and BODY are dependent on your call. Everything else
can remain static as shown.

Also, when receiving complex structures back from a webservice call,
remember that CFDUMP is your friend. When using CFINVOKE, very often
the return value is inside an object returned by the web service. With
our webservices, usually, you'll need to call the get_any() function
on the object to get the actual return value. Which function is to be
called is dependent on the type of value being returned, and certainly
can be webservice method specific. The results from the get_any() (or
whatever) call, will usually be an array--but not always--so again,
CFDUMP is your friend.

Finally, here are decent articles on consuming web services from/to .Net:
http://coldfusion.sys-con.com/read/47199.htm

Long forum discussion on consuming complex web services that require
specific header and property attributes:
http://www.adobe.com/cfusion/webforums/forum/messageview.cfm?catid=7&threadid=781179

And finally, here is an article on the nitty-gritty behind how
ColdFusion utilizes Java to interface with most other web services,
specifically having to do with complex web services, and how we get
our type-less values to be typed correctly for the web-service being
called. It's not inherently necessary to read it, but it is good
information:

When having to pass complex structures into a .Net webservice, read
this excellent article, which you'll have to get from the WayBack
machine, because it's no longer available on the authors' website:
http://web.archive.org/web/20070309173903/http://hcc.musc.edu/research/shared_resources/xml_complex_types_to_cf_structure_notes.cfm

And, while this article gives some approaches for dealing with complex
calls, I still found that just writing the soap packet manually got me
the results (and more easily).
-

~|
Check out the new features and enhancements in the
latest product release - download the "What's New PDF" now
http://download.macromedia.com/pub/labs/coldfusion/cf8_beta_whatsnew_052907.pdf

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:287940
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Am I the only one who thinks Flex 2 isn't

2007-09-06 Thread Brian Kotek
I agree. Doing it with a CFC means you can supply REST data, SOAP data, AMF
data, JSON data, WDDX, and more, with a single component. Since you can
generate SOAP, AMF, JSON and WDDX automatically, the only extra work is
manually generating some XML output.

On 9/6/07, Dave Watts <[EMAIL PROTECTED]> wrote:
>
> > I tend more towards the REST type services so CFC's aren't
> > the best vehicle for me.  Since I'm doing that API, it
> > usually doesn't make sense for me to do another type of API
> > strictly for Flex interfaces.
>
> There's no reason why you can't generate REST output using CFCs. The
> amount
> of extra API work would then be trivially minimal.
>
> Dave Watts, CTO, Fig Leaf Software
> http://www.figleaf.com/
>
> Fig Leaf Software provides the highest caliber vendor-authorized
> instruction at our training centers in Washington DC, Atlanta,
> Chicago, Baltimore, Northern Virginia, or on-site at your location.
> Visit http://training.figleaf.com/ for more information!
>
>
> 

~|
ColdFusion is delivering applications solutions at at top companies 
around the world in government.  Find out how and where now
http://www.adobe.com/cfusion/showcase/index.cfm?event=finder&productID=1522&loc=en_us

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:287939
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Javascript problem only, but....

2007-09-06 Thread James Holmes
This summarises the situation:

http://www.quirksmode.org/js/doctypes.html

And this is the latest info:

http://www.quirksmode.org/viewport/compatibility.html

Scrolling offset (How much the page has scrolled)

var x,y;
if (self.pageYOffset) // all except Explorer
{
x = self.pageXOffset;
y = self.pageYOffset;
}
else if (document.documentElement && document.documentElement.scrollTop)
// Explorer 6 Strict
{
x = document.documentElement.scrollLeft;
y = document.documentElement.scrollTop;
}
else if (document.body) // all other Explorers
{
x = document.body.scrollLeft;
y = document.body.scrollTop;
}


Hope this helps.

On 9/7/07, Claude Schneegans <[EMAIL PROTECTED]> wrote:
> Hi,
>
> Is it a well known problem and is there any work around?
>
> The offsetTop value of an option in a select, and the scrollTop of the
> select are always returned as zero by IE,
> whatever the position of the scroll bar is.
> Mozilla shows correct values.



-- 
mxAjax / CFAjax docs and other useful articles:
http://www.bifrost.com.au/blog/

~|
Get the answers you are looking for on the ColdFusion Labs
Forum direct from active programmers and developers.
http://www.adobe.com/cfusion/webforums/forum/categories.cfm?forumid-72&catid=648

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:287938
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: webservice

2007-09-06 Thread Brian Kotek
You're missing the point. Don't just post to a forum saying nothing but "I'm
trying to do X and I get error Y." That's not even a question, not to
mention all of the relevant information that you have not provided.

http://catb.org/~esr/faqs/smart-questions.html

On 9/6/07, Chad Gray <[EMAIL PROTECTED]> wrote:
>
> So how do I make this complexType in java?  I don't understand the error.
>
>
>
> -Original Message-
> From: Brian Kotek [mailto:[EMAIL PROTECTED]
> Sent: Wednesday, September 05, 2007 4:19 PM
> To: CF-Talk
> Subject: Re: webservice
>
> Ok.
>
> On 9/5/07, Chad Gray <[EMAIL PROTECTED]> wrote:
> >
> > I am trying to work with a web service and I am getting this error in
> CF.
> >
> >
> > Error converting CFML arguments to Java classes for web service
> > invocation.
> > Unable to create web service argument class [
> > Lcom.canto.www._2005.cumulus.ws.types.Record;. Error:
> > java.lang.InstantiationException: [
> > Lcom.canto.www._2005.cumulus.ws.types.Record;. Often this is because the
> > web service defines an abstract complexType as an input to an operation.
> You
> > must create an actual instance of this type in Java.
> >
> >
> >
>
>
>
> 

~|
Enterprise web applications, build robust, secure 
scalable apps today - Try it now ColdFusion Today
ColdFusion 8 beta - Build next generation apps

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:287937
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Model Glue and Reactor

2007-09-06 Thread Dinner
Hey Eric, not sure if this is what you're after, but I've got this:




/corps/mysuperproject/config/reactor/Reactor.xml
mysuperproject
mysuperproject_dev
mysql
/corps/mysuperproject/model/data/reactor
production


In my main coldspring.xml file (along with all the other model-glue specific
settings).  Note the absolute path (cough) to the Reactor.xml-  that'll
avoid any strangeness that might come about via relative paths, just to
cut out that bit of uncertainty.

Assuming MG:U is loading up but just not loading your reactor config- not
sure
if that was your only problem or not.

Have fun folks, I'm off for a bit!

On 9/6/07, Eric Roberts <[EMAIL PROTECTED]> wrote:
>
> OK...I hard coded the pathToConfigXML value as the default in the argument
> in the function in reactor/reactorfactory.cfc and it worked fine.  So I am
> suspecting that it is not picking up the Coldspring.xml file properly or
>


~|
Enterprise web applications, build robust, secure 
scalable apps today - Try it now ColdFusion Today
ColdFusion 8 beta - Build next generation apps

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:287936
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: PHP or .Net?

2007-09-06 Thread John Paul Ashenfelter
On 9/6/07, Dinner <[EMAIL PROTECTED]> wrote:
> On 9/6/07, John Paul Ashenfelter wrote:...
>
> > I don't know -- that summer class in LOGO really has paid off for me :)
>
>
> forward 100!   That comment had me laughing inside, John.  Great stuff.

Did I mention I was 12 at the time :)

>
>
> 

~|
Enterprise web applications, build robust, secure 
scalable apps today - Try it now ColdFusion Today
ColdFusion 8 beta - Build next generation apps

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:287935
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: FCKEditor showing HTML content before fully loading in browser

2007-09-06 Thread Dinner
On 9/6/07, Dominic Watson <[EMAIL PROTECTED]> wrote:...

> Is there anyway we can force FCKEditor to suppress any output until it is
> loaded?


Hide the editor until the page loads?  I can provide example code if needed,
but not right now.  =P


~|
Enterprise web applications, build robust, secure 
scalable apps today - Try it now ColdFusion Today
ColdFusion 8 beta - Build next generation apps

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:287934
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


re: Model Glue and Reactor

2007-09-06 Thread Eric Roberts
OK...I hard coded the pathToConfigXML value as the default in the argument
in the function in reactor/reactorfactory.cfc and it worked fine.  So I am
suspecting that it is not picking up the Coldspring.xml file properly or
the finction call is not even trying to pass the pathToConfigXML argument at
all.  So if anyone knows offhand where the coldspring.xml file that has the
values that get passed to reactorfactory.cfc gets "loaded/read/whatever" and
save me some time (and headache) I would greatly appreciate it.  This is in
the translator app that is ued for learning MG...

Thanks in advance (GRRR!) hehehe

Eric


~|
ColdFusion 8 - Build next generation apps
today, with easy PDF and Ajax features - download now
http://download.macromedia.com/pub/labs/coldfusion/cf8_beta_whatsnew_052907.pdf

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:287933
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: PHP or .Net?

2007-09-06 Thread Dinner
On 9/6/07, John Paul Ashenfelter wrote:...

> I don't know -- that summer class in LOGO really has paid off for me :)


forward 100!   That comment had me laughing inside, John.  Great stuff.


~|
Check out the new features and enhancements in the
latest product release - download the "What's New PDF" now
http://download.macromedia.com/pub/labs/coldfusion/cf8_beta_whatsnew_052907.pdf

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:287932
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: BlogCFC

2007-09-06 Thread Brian Kotek
It does not.

On 9/6/07, Eric Roberts <[EMAIL PROTECTED]> wrote:
>
> Got a question for you Ray...does BlogCFC make use of reactor?  I don't
> remeber if it did or not.
>
> Eric
>
>
> 

~|
Get the answers you are looking for on the ColdFusion Labs
Forum direct from active programmers and developers.
http://www.adobe.com/cfusion/webforums/forum/categories.cfm?forumid-72&catid=648

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:287930
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Javascript problem only, but....

2007-09-06 Thread Claude Schneegans
Hi,

Is it a well known problem and is there any work around?

The offsetTop value of an option in a select, and the scrollTop of the 
select are always returned as zero by IE,
whatever the position of the scroll bar is.
Mozilla shows correct values.

See example at http://www.contentbox.com/claude/test/test.htm
Code =

Option 1
Option 2
Option 3
Option 4
Option 5
Option 6
Option 7
Option 8
Option 9


Re: CF8 Debugging

2007-09-06 Thread Eric Roberts
I would assume they did that since they added the individual logins to the
admin and assumed you would want a cfide directory for each "site".  They
probably had sites hosts in mind when they did that.  If it is real
important to have that graphic and you don;t want a cfide mapping in each
virtual directory, you could always dupe the directory structure and copy
the graphic to each virtual directory.

Eric


On 9/6/07, Dave Watts <[EMAIL PROTECTED]> wrote:
>
> > No. It's trivial. But it seems to imply that either the
> > developers of the server expected the CFIDE directory
> > mapping to exist for all virtual sites or else they were
> > oblivious to this happening. Why go to the trouble of
> > designing a nicely formatted debug output page and
> > then have it punctuated by a missing graphic?
>
> Since CF, by default, has many dependencies that rely on the existence of
> a
> /CFIDE URL, I submit that they expected you'd have that directory on a
> properly configured server. But putting that aside, where else could they
> put it? It has to go somewhere - can you suggest a better location?
>
> Dave Watts, CTO, Fig Leaf Software
> http://www.figleaf.com/
>
> Fig Leaf Software provides the highest caliber vendor-authorized
> instruction at our training centers in Washington DC, Atlanta,
> Chicago, Baltimore, Northern Virginia, or on-site at your location.
> Visit http://training.figleaf.com/ for more information!
>
>
> 

~|
Get the answers you are looking for on the ColdFusion Labs
Forum direct from active programmers and developers.
http://www.adobe.com/cfusion/webforums/forum/categories.cfm?forumid-72&catid=648

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:287929
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: (ADMIN) email problems?

2007-09-06 Thread Brian Kotek
I'm using email, but I've also been seeing lots of double/triple posts. Not
sure if it's related or not.

On 9/6/07, chad gray <[EMAIL PROTECTED]> wrote:
>
> Is email working on CFTalk?  I tried posting a message about an hour ago
> via email and it has not arrived to the list.  I also got a message from out
> mail server saying it was going to try sending again.
>
>
> 

~|
Create robust enterprise, web RIAs.
Upgrade to ColdFusion 8 and integrate with Adobe Flex
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJP

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:287928
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


RE: Am I the only one who thinks Flex 2 isn't

2007-09-06 Thread Dave Watts
> I tend more towards the REST type services so CFC's aren't 
> the best vehicle for me.  Since I'm doing that API, it 
> usually doesn't make sense for me to do another type of API 
> strictly for Flex interfaces.

There's no reason why you can't generate REST output using CFCs. The amount
of extra API work would then be trivially minimal.

Dave Watts, CTO, Fig Leaf Software
http://www.figleaf.com/

Fig Leaf Software provides the highest caliber vendor-authorized
instruction at our training centers in Washington DC, Atlanta,
Chicago, Baltimore, Northern Virginia, or on-site at your location.
Visit http://training.figleaf.com/ for more information!


~|
Download the latest ColdFusion 8 utilities including Report Builder,
plug-ins for Eclipse and Dreamweaver updates.
http;//www.adobe.com/cfusion/entitlement/index.cfm?e=labs%5adobecf8%5Fbeta

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:287927
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: virtual directory cf8 using built in webserver?

2007-09-06 Thread Dave Watts
> is it possible to have virtual directories using cf8 and its 
> internal webserver?

I don't think anything's changed since CF6, so yes:
http://www.adobe.com/support/coldfusion/adv_development/config_builtin_webse
rver/

Dave Watts, CTO, Fig Leaf Software
http://www.figleaf.com/

Fig Leaf Software provides the highest caliber vendor-authorized
instruction at our training centers in Washington DC, Atlanta,
Chicago, Baltimore, Northern Virginia, or on-site at your location.
Visit http://training.figleaf.com/ for more information!


~|
Download the latest ColdFusion 8 utilities including Report Builder,
plug-ins for Eclipse and Dreamweaver updates.
http;//www.adobe.com/cfusion/entitlement/index.cfm?e=labs%5adobecf8%5Fbeta

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:287926
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Homesite CFML7

2007-09-06 Thread Mallory Woods
Does anyone have a link to update Homesite+ for CFML7 not 8?
Thanks!


~|
ColdFusion 8 - Build next generation apps
today, with easy PDF and Ajax features - download now
http://download.macromedia.com/pub/labs/coldfusion/cf8_beta_whatsnew_052907.pdf

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:287925
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: CF8 Debugging

2007-09-06 Thread Jim McAtee
- Original Message - 
From: "Dave Watts" <[EMAIL PROTECTED]>
To: "CF-Talk" 
Sent: Thursday, September 06, 2007 5:03 AM
Subject: RE: CF8 Debugging


>> No. It's trivial. But it seems to imply that either the
>> developers of the server expected the CFIDE directory
>> mapping to exist for all virtual sites or else they were
>> oblivious to this happening. Why go to the trouble of
>> designing a nicely formatted debug output page and
>> then have it punctuated by a missing graphic?
>
> Since CF, by default, has many dependencies that rely on the existence 
> of a
> /CFIDE URL, I submit that they expected you'd have that directory on a
> properly configured server. But putting that aside, where else could 
> they
> put it? It has to go somewhere - can you suggest a better location?

The graphic?  Who knows.  I'm not worried about the graphic.

What other functionality relies on the CFIDE mapping?  It it necessary for 
things like CFFORM?

When I first set up the server I had several virtual IIS sites.  Then I 
deleted those sites and programmatically created all the necessary 
production sites by a script.  I notice in the wsconfig.log file that when 
CF was installed it created both the /CFIDE and /cfdocs virtual 
directories for every web site that was on the server at the time.  So I 
guess it's expected.

Which also begs the question - is there some functionality that relies on 
the /cfdocs mapping?  I always thought that from a security standpoint it 
was undesirable to have cfdocs installed, so having the installer create 
this mapping on _every_ site seems like an odd move.

The thing about needing /CFIDE that strikes me a odd is that it contains 
the CF Administrator application, so that the Administrator becomes 
accessible from every web site on the server.  Yes, it's up to the system 
administrator to make sure the CF Administrator is properly secured, but 
this still seems rather a lax approach.  The CF Administrator isn't be 
needed on every site.



~|
Enterprise web applications, build robust, secure 
scalable apps today - Try it now ColdFusion Today
ColdFusion 8 beta - Build next generation apps

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:287923
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: How to move CFIDE in CF8?

2007-09-06 Thread Jim McAtee
- Original Message - 
From: "Jim McAtee" <[EMAIL PROTECTED]>
To: "CF-Talk" 
Sent: Thursday, September 06, 2007 3:01 AM
Subject: How to move CFIDE in CF8?


> When I installed CF8, it placed the CFIDE folder under the source
> directory of the default web site and created a virtual directory in IIS
> pointing at the folder.  That's not a good location for our use, so I'd
> like to move it.  I tried, and changed the IIS virtual directory, but 
> the
> CF Administrator bombs.  I put everything back the way it was and went
> into the Administrator and see that it CF has an unchangeable logical
> directory mapping of /CFIDE pointing at the physical location.  I'm
> guessing that's the problem.
>
> How can I move the folder and change the mapping of /CFIDE?


I'm guessing now that this will require the editing of an XML 
configuration file.  Anyone know which one contains the CF mappings?  Does 
CF use the registry at all for configuration settings? 


~|
ColdFusion 8 - Build next generation apps
today, with easy PDF and Ajax features - download now
http://download.macromedia.com/pub/labs/coldfusion/cf8_beta_whatsnew_052907.pdf

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:287924
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


RE: webservice

2007-09-06 Thread Chad Gray
So how do I make this complexType in java?  I don't understand the error.



-Original Message-
From: Brian Kotek [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, September 05, 2007 4:19 PM
To: CF-Talk
Subject: Re: webservice

Ok.

On 9/5/07, Chad Gray <[EMAIL PROTECTED]> wrote:
>
> I am trying to work with a web service and I am getting this error in CF.
>
>
> Error converting CFML arguments to Java classes for web service
> invocation.
> Unable to create web service argument class [
> Lcom.canto.www._2005.cumulus.ws.types.Record;. Error:
> java.lang.InstantiationException: [
> Lcom.canto.www._2005.cumulus.ws.types.Record;. Often this is because the
> web service defines an abstract complexType as an input to an operation. You
> must create an actual instance of this type in Java.
>
>
> 



~|
ColdFusion 8 - Build next generation apps
today, with easy PDF and Ajax features - download now
http://download.macromedia.com/pub/labs/coldfusion/cf8_beta_whatsnew_052907.pdf

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:287921
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


RE: Implications of no JVM loaded

2007-09-06 Thread Howell, Craig H Civ WRALC/ITMS
Assuming the bare necessities are on the SDC (Flash Player, ActiveX and
Javascript enabled, cookies, etc) and the JVM is not, are there ANY
issues we need to be concerned about for our CF apps?
Thanks.


-Original Message-
From: Jaime Metcher [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, September 05, 2007 5:33 PM
To: CF-Talk
Subject: RE: Implications of no JVM loaded

+1.  I'd have a close look at that SDC, it may be more far-reaching than
you
think.  I've seen standard environments that exclude Flash, Java,
ActiveX
controls, Javascript (!), cookies, and external links to all but an
approved
list of sites.

Jaime Metcher

> -Original Message-
> From: Cutter (CFRelated) [mailto:[EMAIL PROTECTED]
> Sent: Thursday, 6 September 2007 4:07 AM
> To: CF-Talk
> Subject: Re: Implications of no JVM loaded
>
>
> I doubt it's a lack of a JVM. More likely it's a lack of a Flash
Player...
>
> Steve "Cutter" Blades
> Adobe Certified Professional
> Advanced Macromedia ColdFusion MX 7 Developer
> _
> http://blog.cutterscrossing.com
>
> Howell, Craig H Civ WRALC/ITMS wrote:
> > This is a simple question that may have far reaching implications
for
> > me.  The DoD pushes "Standard Desktop Configurations", SDC, to all
> > client machines so all the machines "look alike".  The newest SDC
that
> > will be released soon will not have the JVM loaded and will have IE
7..
> >
> >
> > I was wondering what the implications will be for our apps.  I know
the
> > CF code is converted to HTML before it reaches the desktop, but are
> > there other issues we need to be concerned with, especially in areas
> > like Flash Forms?
> > We have discovered that our Flash Forms don't appear to be working
in IE
> > 7, but is it IE or the lack of a JVM?
> >
> > Any inputs/responses would be greatly appreciated.
> >
> >
>
> 



~|
Get the answers you are looking for on the ColdFusion Labs
Forum direct from active programmers and developers.
http://www.adobe.com/cfusion/webforums/forum/categories.cfm?forumid-72&catid=648

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:287922
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: charting solution for using with CF

2007-09-06 Thread Jim Wright
On 9/6/07, Rob Parkhill <[EMAIL PROTECTED]> wrote:
> So how does one leverage the webcharts design app?  it is a cool tool which I 
> had no idea existed until yesterday.  I played around with it quite a bit and 
> designed a couple of charts (actually the gauges are going to get me in good 
> with the boss :)) I have tried using them as a JSP file etc. but keep getting 
> an error in the display.
>

I haven't tried using any of the chart types that aren't directly
supported by cfchart, although I don't see why you couldn't find a way
to do it.  The way I have used it is to access the style attributes
that aren't supported by the cfchart tags to fine-tune a charts
appearance...refer to this article...
http://livedocs.macromedia.com/coldfusion/7/htmldocs/1431.htm

~|
ColdFusion is delivering applications solutions at at top companies 
around the world in government.  Find out how and where now
http://www.adobe.com/cfusion/showcase/index.cfm?event=finder&productID=1522&loc=en_us

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:287920
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


BlogCFC

2007-09-06 Thread Eric Roberts
Got a question for you Ray...does BlogCFC make use of reactor?  I don't
remeber if it did or not.

Eric


~|
Download the latest ColdFusion 8 utilities including Report Builder,
plug-ins for Eclipse and Dreamweaver updates.
http;//www.adobe.com/cfusion/entitlement/index.cfm?e=labs%5adobecf8%5Fbeta

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:287919
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


MS SQL 2005 Vs. CFMX 7.02

2007-09-06 Thread Wil Genovese
Ok, we recently switched to running MS SQL 2005 servers in an 
Active/Passive cluster on Win2003 (64Bit) Server.  While we were testing 
we had no issues with DB access. After migrating most of our databases 
to the SQL 2005 Cluster we are now getting the same error a few times a 
day that crashes our whole CFMX application (which is running behind a 
load balancer across three CFMX servers.

The error we see is this: (note: az_tar is a valid name of a DB)

Message: Error Executing Database Query.
Detail: [Macromedia][SQLServer JDBC Driver][SQLServer]Cannot open 
database "az_tar" requested by the login. The login failed.
Date: 09/05/2007
Time: 06:16:08

The login permissions are set right and have not changed from the 
previous server to this server cluster. Also, the logins work most of 
the day without an issue then all of a sudden for reasons unknown to us 
this error pops up across most or all the databases on this server.

We found a MS JDBC driver (Microsoft SQL Server 2005 JDBC Driver 1.1) 
that they state "In its continued commitment to interoperability, 
Microsoft provides a Java Database Connectivity (JDBC) driver for use 
with SQL Server 2005." 

My questions are:
Has anyone see this issue before?
And if so, what was the problem/solution?
Has anyone tried this MS JDBC Driver and what were your results?

Thank You,

-- 
Wil Genovese
Sr. Web Application Developer
WolfNet Technologies
211 North First Street, Suite 455
Minneapolis MN 55401
Phone: 612-342-0088
Toll-free: 1-866-WOLFNET
Facsimile: 612-342-0087
[EMAIL PROTECTED] 
www.wolfnettech.com 


~|
Get involved in the latest ColdFusion discussions, product
development sharing, and articles on the Adobe Labs wiki.
http://labs/adobe.com/wiki/index.php/ColdFusion_8

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:287918
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: (ADMIN) email problems?

2007-09-06 Thread Eric Roberts
I just posted one as well and it didn't show up...

Eric


On 9/6/07, chad gray <[EMAIL PROTECTED]> wrote:
>
> Is email working on CFTalk?  I tried posting a message about an hour ago
> via email and it has not arrived to the list.  I also got a message from out
> mail server saying it was going to try sending again.
>
>
> 

~|
ColdFusion 8 - Build next generation apps
today, with easy PDF and Ajax features - download now
http://download.macromedia.com/pub/labs/coldfusion/cf8_beta_whatsnew_052907.pdf

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:287917
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


FCKEditor showing HTML content before fully loading in browser

2007-09-06 Thread Dominic Watson
We have a client complaining that, when they have a poor internet
connection, they can see HTML source while the FCKEditor is loading (the
source of the formatted content that is being loaded into the editor) and
this HTML is being displayed for some time.

Is there anyway we can force FCKEditor to suppress any output until it is
loaded?

Thanks in advance,

Dominic

-- 
Blog it up: http://blog.dominicwatson.co.uk


~|
ColdFusion is delivering applications solutions at at top companies 
around the world in government.  Find out how and where now
http://www.adobe.com/cfusion/showcase/index.cfm?event=finder&productID=1522&loc=en_us

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:287916
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


(ADMIN) email problems?

2007-09-06 Thread chad gray
Is email working on CFTalk?  I tried posting a message about an hour ago via 
email and it has not arrived to the list.  I also got a message from out mail 
server saying it was going to try sending again.


~|
Create robust enterprise, web RIAs.
Upgrade to ColdFusion 8 and integrate with Adobe Flex
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJP

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:287915
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: structKeyExists() - Ok, this is freakin me out....

2007-09-06 Thread Dinner
On 9/5/07, Joe Lakey wrote:
>
> I always include in my forms a hidden field named "form_submitted":
>
> 
> 
> 


I'll do something similar, but I only define the hidden fields if I want the
"save event" to fire.  So I can use the same code to add a phone number
by someone clicking on the "savePhone" button, or I can add the hidden
field when they don't get the option (like on the initial "add person"
screen,
which requires at least one phone number, but can have many).


~|
Download the latest ColdFusion 8 utilities including Report Builder,
plug-ins for Eclipse and Dreamweaver updates.
http;//www.adobe.com/cfusion/entitlement/index.cfm?e=labs%5adobecf8%5Fbeta

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:287914
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: How create results with an Outer Join using 2 different databases

2007-09-06 Thread Vince Collins
Hi Joy,

There may be a work around.

If they are both MS SQL Servers for example...

If the two datasources point to the same server and just different 
databases, you can do it inline with your SQL Statement assuming they 
share the same user credentials.  However, I'll assume this is not the case.

If the two data sources are pointing to two different MSSQL Servers, you 
can still join the two.  MS SQL Server allows you to add a "Linked 
Server".  Just add this through Enterprise Manager which acts as a 
pointer to the other database server.  Once you do this, with the 
correct login/authentication credentials, You can then access and join 
two databases on two separate MSSQL Servers using SQL.   You can even 
just create a view on the one that points to the table on the other and 
then join the table/s and the newly created view locally.

This would then allow you to do the join using just one or the other 
datasource.  Does that make sense?

If that's not an option and you are still running windows, you can even 
create a simple MS Access DB and then add the two databases using THAT 
"linked table" option which will get you the same result.

An aside:  I have even created a linked server from MSSQL Server to an 
Oracle database running on UNIX and was able to join the two in the past 
although I wouldn't do this in production due to possible performance 
issues.

My guess is that if you aren't using windows, there may be similar 
solutions for other databases.  Oracle uses something call heterogeneous 
connections or something which didn't work well in the past but that was 
4 years ago I think.

Best of luck!

Vince Collins
http://www.vincentcollins.com







Joy Holman wrote:
> ISSUE:
>
> I'm working with existing functionality, so I need to work this code in 
> somehow or rewrite a significant amount of code.
>
> I am using tables that come from different datasources.
> I can't use the outer join with QofQ, right? I need to use an outer join to 
> combine two result sets that don't have same 
> number of matches. 
>  
> GOAL:
>
> I want to end up with final results so that any record from qdocSourceSort 
> with a fac_ID value has its sourceTitle field 
> populated with the sourceTitle created in qqFacTitle.
> (qdocSourceSort already has the fac_id NULL value records populated with 
> SourceTitle values.)
>
> My main objective is to sort all these records by SourceTitle!
>
> CODE:
>
> The two tables I need to combine are qdocSourceSort and qqFacTitle below. 
> (qqSourceFacNo (below) is an intermediate step.)
>
> I want all these records:
> 
> select *
> from PEdocs, Sources
> WHERE deleted IS NULL
> and UPPER(docLetter) =  cfsqltype="CF_SQL_CHAR" maxlength="1">
> and fk_sourceID = sourceID
> 
>
> I want to combine the results above with the last query of the two below.
>
> 
> select sourceFacID
> from qdocSourceSort
> where sourceFacID IS NOT NULL 
> 
> 
>   
>   
> 
> select fac_ID, fac_Facility AS sourceTitle
> from IHSFacility
> where fac_ID IN (#ValueList(qqSourceFacNo.sourceFacID)#) 
>  
>
> qqFacTitle.fac_ID would match some of the qdocSourceSort.fac_ID values. The 
> rest of the qdocSourceSort.fac_ID values would be NULL.
>
> Also numerous qdocSourceSort.fac_ID values could be the same number, so each 
> result from qqFacTitle.fac_ID needs to be matched as many times as it is 
> referenced in qdocSourceSort.fac_ID values.
>
> qdocSourceSort has a column SourceTitle, so each result of 
> qqFacTitle.SourceTitle needs to be merged into the SourceTitle fields in a 
> qdocSourceSort record wherever
> qqFacTitle.fac_ID matches qdocSourceSort.fac_ID.
>
> Can anybody help me?!?!?
>
> Thanks. 
>
> 

~|
Check out the new features and enhancements in the
latest product release - download the "What's New PDF" now
http://download.macromedia.com/pub/labs/coldfusion/cf8_beta_whatsnew_052907.pdf

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:287913
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


RE: CF8 HTML CFGRID with checkbox possible with binding?

2007-09-06 Thread Eron Cohen
I am working on the same thing right now.  I have success getting the
checkbox to show up. That much is no problem.  The way I am doing it is by
using QueryNew/QuerySetCell to create a query that I send back to the CFGRID
via binding to a CFC.  Here is how I am creating my checkbox:

)>

I want to set it up so that when the checkbox is checked, the form is
submitted automatically.  Unfortunately, when the checkbox is checked, the
form does submit, but I am getting a mysterious Error: The submitted cfgrid
form field is corrupt (name: __CFGRID__CFFORM_1__FIRSTGRID value:
__CFGRID__COLUMN__=ROW; __CFGRID__DATA__=5; ... I have no idea what this is
about or why its happening.  Anyone have any guesses? 

I think I have alot to learn about CFGRID.

Thank you.

>I did get the checkbox to showup, however, it initally shows a "true" or 
>"false" in the column rather than a checkbox.  Upon clicking the cell 
>three times, a checkbox finally appears, and can then be changed using 
>ajax/cfc.
>
>I ended up doing a flash grid...i think this may be a bug with HTML 
>bound grids. 
>
>Chris Martin
>
>
>
>Shy Boy wrote:
>>


~|
ColdFusion is delivering applications solutions at at top companies 
around the world in government.  Find out how and where now
http://www.adobe.com/cfusion/showcase/index.cfm?event=finder&productID=1522&loc=en_us

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:287912
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: CF8 HTML CFGRID with checkbox possible with binding?

2007-09-06 Thread Eron Cohen
I am working on the same thing right now.  I have success getting the checkbox 
to show up. That much is no problem.  The way I am doing it is by using 
QueryNew/QuerySetCell to create a query that I send back to the CFGRID via 
binding to a CFC.  Here is how I am creating my checkbox:

)>

I want to set it up so that when the checkbox is checked, the form is submitted 
automatically.  Unfortunately, when the checkbox is checked, the form does 
submit, but I am getting a mysterious Error: The submitted cfgrid form field is 
corrupt (name: __CFGRID__CFFORM_1__FIRSTGRID value: __CFGRID__COLUMN__=ROW; 
__CFGRID__DATA__=5; ... I have no idea what this is about or why its happening. 
 Anyone have any guesses? 

I think I have alot to learn about CFGRID.

Thank you.

>I did get the checkbox to showup, however, it initally shows a "true" or 
>"false" in the column rather than a checkbox.  Upon clicking the cell 
>three times, a checkbox finally appears, and can then be changed using 
>ajax/cfc.
>
>I ended up doing a flash grid...i think this may be a bug with HTML 
>bound grids. 
>
>Chris Martin
>
>
>
>Shy Boy wrote:
>> 

~|
ColdFusion 8 - Build next generation apps
today, with easy PDF and Ajax features - download now
http://download.macromedia.com/pub/labs/coldfusion/cf8_beta_whatsnew_052907.pdf

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:287911
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Creating XML from RecordSet

2007-09-06 Thread C. Hatton Humphrey
> Flash doesn't do anything "server side", so I'm not sure what you're trying
> to say.

I was thinking that it did not but have had things like that "pop up".
 However I just implemented the idea and it works beautifully!  Thanks
for the idea!

Hatton

~|
Download the latest ColdFusion 8 utilities including Report Builder,
plug-ins for Eclipse and Dreamweaver updates.
http;//www.adobe.com/cfusion/entitlement/index.cfm?e=labs%5adobecf8%5Fbeta

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:287910
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: CF8 HTML CFGRID with checkbox possible with binding? +Error Message

2007-09-06 Thread [EMAIL PROTECTED] [EMAIL PROTECTED]
I am working on the same thing right now.  I have success getting the checkbox 
to show up. That much is no problem.  The way I am doing it is by using 
QueryNew/QuerySetCell to create a query that I send back to the CFGRID via 
binding to a CFC.  Here is how I am creating my checkbox:

)>

I want to set it up so that when the checkbox is checked, the form is submitted 
automatically.  Unfortunately, when the checkbox is checked, the form does 
submit, but I am getting a mysterious Error: The submitted cfgrid form field is 
corrupt (name: __CFGRID__CFFORM_1__FIRSTGRID value: __CFGRID__COLUMN__=ROW; 
__CFGRID__DATA__=5; ... I have no idea what this is about or why its happening. 
 Anyone have any guesses? 

I think I have alot to learn about CFGRID.

Thank you.

>I did get the checkbox to showup, however, it initally shows a "true" or 
>"false" in the column rather than a checkbox.  Upon clicking the cell 
>three times, a checkbox finally appears, and can then be changed using 
>ajax/cfc.
>
>I ended up doing a flash grid...i think this may be a bug with HTML 
>bound grids. 
>
>Chris Martin
>
>
>
>Shy Boy wrote:
>> 

~|
Enterprise web applications, build robust, secure 
scalable apps today - Try it now ColdFusion Today
ColdFusion 8 beta - Build next generation apps

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:287909
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


RE: CFGrid Ajax Results

2007-09-06 Thread Eron Cohen
Thank you for the answers.  I will look into this.  Complicated for me would
be defined not-so-easy.  So this might be beyond me. 

-Original Message-
From: Brian Kotek [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, September 04, 2007 7:40 PM
To: CF-Talk
Subject: Re: CFGrid Ajax Results

However you define "complicated", it's far more complicated than just using
what is built in to cfgrid. Furthermore, the custom renderer examples are
just changing the format of the displayed grid, and don't even touch on the
issue of building up your own data (based on a ColdFusion structure) in
JavaScript or XML and feeding that to the grid, which is an entirely
separate issue.


On 9/4/07, Andrew Scott <[EMAIL PROTECTED]> wrote:
>
> Actually it is not complicated.
>
> Ray has an example of rendering on his blog that will do the job nicely.
>
>




~|
ColdFusion 8 - Build next generation apps
today, with easy PDF and Ajax features - download now
http://download.macromedia.com/pub/labs/coldfusion/cf8_beta_whatsnew_052907.pdf

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:287908
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: CF8 HTML CFGRID with checkbox possible with binding? +Error Message

2007-09-06 Thread Eron Cohen
I am working on the same thing right now.  I have success getting the checkbox 
to show up. That much is no problem.  The way I am doing it is by using 
QueryNew/QuerySetCell to create a query that I send back to the CFGRID via 
binding to a CFC.  Here is how I am creating my checkbox:

)>

I want to set it up so that when the checkbox is checked, the form is submitted 
automatically.  Unfortunately, when the checkbox is checked, the form does 
submit, but I am getting a mysterious Error: The submitted cfgrid form field is 
corrupt (name: __CFGRID__CFFORM_1__FIRSTGRID value: __CFGRID__COLUMN__=ROW; 
__CFGRID__DATA__=5; ... I have no idea what this is about or why its happening. 
 Anyone have any guesses? 

I think I have alot to learn about CFGRID.

Thank you.

>I did get the checkbox to showup, however, it initally shows a "true" or 
>"false" in the column rather than a checkbox.  Upon clicking the cell 
>three times, a checkbox finally appears, and can then be changed using 
>ajax/cfc.
>
>I ended up doing a flash grid...i think this may be a bug with HTML 
>bound grids. 
>
>Chris Martin
>
>
>
>Shy Boy wrote:
>> 

~|
ColdFusion 8 - Build next generation apps
today, with easy PDF and Ajax features - download now
http://download.macromedia.com/pub/labs/coldfusion/cf8_beta_whatsnew_052907.pdf

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:287907
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Webservices Not found/Nested Complex Parameters

2007-09-06 Thread Shane Trahan
I am trying to connect to a webservice that has layered/nested complex 
parameters and am getting the dreaded web service not found error. When I 
comment out a required parameter the webservice tells me that "Non nillable 
element is null" so I do know that the service is returning something back..

My code looks as follows 






StructInsert(Auth,"UserCredential","x");
StructInsert(Clientstruct,"AccountNumber","45345");
StructInsert(Clientstruct,"MeterNumber","1234");

StructInsert(Package,"Value","45678");
StructInsert(Package,"Type","Tracking_Number_Or_Doortag");

StructInsert(Hope,"AuthenticationDetail",Auth);
StructInsert(Hope,"ClientDetail",Clientstruct);


 
 


>From other posts I see that i may have to "omit" other WSDL arguements where 
>the minOccurs=0 however they cannot be simply accessed by the CFINVOKEARGUMENT 
>since they are nested complex types.  I did try setting the values for these 
>other arguments to NULL in the structure but I still got the same error 
>message where the service could not be found..

How can I get past this error? How can I OMIT these other nested complex types 
if this is the problem?

Thank you



~|
ColdFusion is delivering applications solutions at at top companies 
around the world in government.  Find out how and where now
http://www.adobe.com/cfusion/showcase/index.cfm?event=finder&productID=1522&loc=en_us

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:287906
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: structKeyExists() - Ok, this is freakin me out....

2007-09-06 Thread Dominic Watson
>
> I always include in my forms a hidden field named "form_submitted":
> ...
> Then in Application.cfm or onRequest(), I set a default:
>
> 
>
> This also allows me to self-submit multiple forms on the same page:
>
> 
>   
>  
>   
>   
>  
>   
>   
> 
>

Nice method, like it.

-- 
Blog it up: http://blog.dominicwatson.co.uk


~|
Enterprise web applications, build robust, secure 
scalable apps today - Try it now ColdFusion Today
ColdFusion 8 beta - Build next generation apps

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:287905
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: PHP or .Net?

2007-09-06 Thread John Paul Ashenfelter
On 9/6/07, Sean Corfield <[EMAIL PROTECTED]> wrote:
> On 9/5/07, Michael E. Carluen <[EMAIL PROTECTED]> wrote:
> > Any thoughts on Ruby and Python?
>
> I keep trying Ruby but I just can't enjoy it - the syntax just annoys
> me (I don't like Perl or PHP either) - and Rails relies so heavily on
> conventions that I find it annoying as well. I can't get all the way
> through most of the tutorials without getting frustrated at how many
> times I have to keep switching between an editor and the command line
> and back because of all the script/generate and rake stuff.

Just an aside, since I saw Joe mention a similar frustration with the
command line and Rails at one point a while back... I hardly *ever*
have to switch between the editor and the command line unless I want
to use the console for debugging or quick edits/tweaks (ie hooking
into script/console) when I'm developing in Rails. TextMate and
RadRails/Aptana (for Eclipse) definitely handle all the typical
generation and rake tasks while ActiveSoftware's Komodo adds debugging
support. The downside is the tutorials generally focus on
lowest-common-denominator (text editor and command line) and it's hard
to invest the time in an unfamiliar GUI *and* an unfamiliar language.
But since there are so many CFEclipse users (many using Aptana,
right?) that it just makes sense to take a look at RadRails if you're
trying Rails.

Its all so
> incredibly clunky... Maybe it's because I really don't like code
> generation...

With Ruby all about "meta", code generation is hard to avoid. Your
dislike of code generation would make an interesting post :)

> I don't like Python much either. I can't really point at anything
> about the language that bothers me but it I just get bored working
> through any of the tutorials and the language just makes me yawn :(

I saw negative indexes for arrays and immediately thought duh! why
don't more languages have that. The Data Crunching book from the
PragProgrammers made me rethink Python for glue (and of course there
are a few smart folks at Google, including Guido, so figured there's
got to be a good reason for using it. But I'm still not doing Django.

> Programmers I respect seem to like Groovy and Grails so they're on my
> list to look at.

Definite +1 to Groovy/Grails. I started with Groovy first about 4
years ago, and then it got bogged down in JSR arguments for 2-3 years
as the two lead developers feuded. Argh. But since Groovy is
Java+scripting+syntax_sugar it's a great choice for CF developers
since, well, ColdFusion is
Java+scripting+completely_new_syntax_with_some_sugar.

Since Ruby is going to basically deploy to Java for many folks through
JRuby, the discussion with a client ends up with "it's a Java app" and
no one cares too much about JRuby, Groovy, or CF details.

>
> Partly I'm a bit jaded about languages... I learned a lot of different
> languages at university (I think I had just over a dozen languages
> under my belt by the time I graduated in 1983) and so most of the
> languages that have been created in the last ten years just don't
> excite me...

I don't know -- that summer class in LOGO really has paid off for me :)

> As for FORTRAN (Dinner!), I love the fact that spaces are irrelevant
> and you have to parse ahead an arbitrary amount to figure out what a
> statement means:
>
> do10i=1.3
> do10i=1,3

MAKE IT STOP! Too many numerical recipes from my grad work looked like
this. Nothing like learning Fortran77 for doing some quantum physics.
Argh.

-- 
John Paul Ashenfelter
CTO/Transitionpoint
(blog) http://www.ashenfelter.com
(email) [EMAIL PROTECTED]

~|
Create robust enterprise, web RIAs.
Upgrade to ColdFusion 8 and integrate with Adobe Flex
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJP

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:287904
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Consume .NET web service with complex arguments

2007-09-06 Thread Shane Trahan
did you ever get this figured out? I am coming across the same thing 

~|
Download the latest ColdFusion 8 utilities including Report Builder,
plug-ins for Eclipse and Dreamweaver updates.
http;//www.adobe.com/cfusion/entitlement/index.cfm?e=labs%5adobecf8%5Fbeta

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:287903
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: charting solution for using with CF

2007-09-06 Thread Rob Parkhill
>CFChart can be effective, especially if you use the webcharts app to create
>your own styles.  Look in /charting for the webcharts.bat
>file, which fires off the webcharts design app.

So how does one leverage the webcharts design app?  it is a cool tool which I 
had no idea existed until yesterday.  I played around with it quite a bit and 
designed a couple of charts (actually the gauges are going to get me in good 
with the boss :)) I have tried using them as a JSP file etc. but keep getting 
an error in the display. 

Any assistance would be appreciated. 

Thanks,

Rob 

~|
ColdFusion 8 - Build next generation apps
today, with easy PDF and Ajax features - download now
http://download.macromedia.com/pub/labs/coldfusion/cf8_beta_whatsnew_052907.pdf

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:287902
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


RE: Map .htm to ColdFusion

2007-09-06 Thread Dave Watts
> When I try to map the extension .htm to ColdFusion under 
> IIS6, I get the error shown below when requesting a .htm 
> file.  I'm pretty sure that with
> CF5 and IIS5 all that was necessary was this IIS extension 
> mapping.  What else is needed with CF8?

With CF 6 and higher, you must edit a CF configuration file:
http://kb.adobe.com/selfservice/viewContent.do?externalId=tn_18289&sliceId=2

Dave Watts, CTO, Fig Leaf Software
http://www.figleaf.com/

Fig Leaf Software provides the highest caliber vendor-authorized
instruction at our training centers in Washington DC, Atlanta,
Chicago, Baltimore, Northern Virginia, or on-site at your location.
Visit http://training.figleaf.com/ for more information!


~|
Enterprise web applications, build robust, secure 
scalable apps today - Try it now ColdFusion Today
ColdFusion 8 beta - Build next generation apps

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:287901
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: CF8 Debugging

2007-09-06 Thread Dave Watts
> No. It's trivial. But it seems to imply that either the 
> developers of the server expected the CFIDE directory 
> mapping to exist for all virtual sites or else they were 
> oblivious to this happening. Why go to the trouble of 
> designing a nicely formatted debug output page and 
> then have it punctuated by a missing graphic? 

Since CF, by default, has many dependencies that rely on the existence of a
/CFIDE URL, I submit that they expected you'd have that directory on a
properly configured server. But putting that aside, where else could they
put it? It has to go somewhere - can you suggest a better location?

Dave Watts, CTO, Fig Leaf Software
http://www.figleaf.com/

Fig Leaf Software provides the highest caliber vendor-authorized
instruction at our training centers in Washington DC, Atlanta,
Chicago, Baltimore, Northern Virginia, or on-site at your location.
Visit http://training.figleaf.com/ for more information!


~|
Enterprise web applications, build robust, secure 
scalable apps today - Try it now ColdFusion Today
ColdFusion 8 beta - Build next generation apps

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:287900
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: & ffmpeg

2007-09-06 Thread Mark Lewis
It seems to work when I run the execute twice sometimes??


- Original Message - 
From: "Mark Lewis" <[EMAIL PROTECTED]>
To: "CF-Talk" 
Sent: Thursday, September 06, 2007 9:48 AM
Subject: Re:  & ffmpeg


> When the conversion takes place, the flv file is created, but the flv file
> is 580kb and doesnt play. It should be 3567kb as it is when i run ffmpeg 
> on
> the same avi from the command line.
>
> When I restart the coldfusion server, all the flv's seem to complete the
> conversion (the file size goes up to 3567kb and play)...It is very
> perculiar, any advice would be welcome.
>
> Thanks
>
> Mark


~|
Get involved in the latest ColdFusion discussions, product
development sharing, and articles on the Adobe Labs wiki.
http://labs/adobe.com/wiki/index.php/ColdFusion_8

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:287899
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Map .htm to ColdFusion

2007-09-06 Thread Andy Allan
Yes, you need to modify the web.xml file by hand, and it is required
(in addition to the IIS change) to get ColdFusion to process .htm
files.

Restart CF once you've made the change.

Andy

On 06/09/07, Jim McAtee <[EMAIL PROTECTED]> wrote:
> - Original Message -
> From: "Andrew Scott" <[EMAIL PROTECTED]>
> To: "CF-Talk" 
> Sent: Thursday, September 06, 2007 3:36 AM
> Subject: Re: Map .htm to ColdFusion
>
>
> > Is this a standard install? Or multie server?
>
> Standard install.
>
> > There is new filter mappings in the web.xml that you might need to add
> > too
> > as well. Other than that it is an interesting question.
>
> So, I may have to edit this file by hand?  What's the procedure - stop CF,
> edit file, restart CF?
>
> Can anyone confirm whether this is necessary to process .htm files with
> CF8?
>
>
>
>
> > On 9/6/07, Jim McAtee <[EMAIL PROTECTED]> wrote:
> >>
> >> When I try to map the extension .htm to ColdFusion under IIS6, I get
> >> the
> >> error shown below when requesting a .htm file.  I'm pretty sure that
> >> with
> >> CF5 and IIS5 all that was necessary was this IIS extension mapping.
> >> What
> >> else is needed with CF8?
> >>
> >> Server Error
> >> 
> >> Either the Macromedia application server(s) are unreachable or none of
> >> them has a mapping to process this request.
>
>
> 

~|
Get the answers you are looking for on the ColdFusion Labs
Forum direct from active programmers and developers.
http://www.adobe.com/cfusion/webforums/forum/categories.cfm?forumid-72&catid=648

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:287897
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Map .htm to ColdFusion

2007-09-06 Thread David Low
Jim McAtee wrote:
> So, I may have to edit this file by hand?  What's the procedure - stop CF, 
> edit file, restart CF?

Yep, AFAIK.

> Can anyone confirm whether this is necessary to process .htm files with 
> CF8?

The application server won't be expecting to serve .htm files, so it 
will presumably throw a wobbler when asked to?

~|
Enterprise web applications, build robust, secure 
scalable apps today - Try it now ColdFusion Today
ColdFusion 8 beta - Build next generation apps

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:287898
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: CF8 Debugging

2007-09-06 Thread Tom Chiverton
On Thursday 06 Sep 2007, [EMAIL PROTECTED] wrote:
> > If you want it to show up, yes.
> > Do you really care if a graphic is missing in the debug output though ?
>
> No.  It's trivial.  But it seems to imply that either the developers of
> the server expected the CFIDE directory mapping to exist for all virtual
> sites 

They do, AFAIK. See also the Flash/AJAX form assets. That's how CF sets itself 
up.
As always, securing your server is extra work.

-- 
Tom Chiverton
Helping to ambassadorially harness frictionless channels
on: http://thefalken.livejournal.com



This email is sent for and on behalf of Halliwells LLP.

Halliwells LLP is a limited liability partnership registered in England and 
Wales under registered number OC307980 whose registered office address is at St 
James's Court Brown Street Manchester M2 2JF.  A list of members is available 
for inspection at the registered office. Any reference to a partner in relation 
to Halliwells LLP means a member of Halliwells LLP. Regulated by the Law 
Society.

CONFIDENTIALITY

This email is intended only for the use of the addressee named above and may be 
confidential or legally privileged.  If you are not the addressee you must not 
read it and must not use any information contained in nor copy it nor inform 
any person other than Halliwells LLP or the addressee of its existence or 
contents.  If you have received this email in error please delete it and notify 
Halliwells LLP IT Department on 0870 365 8008.

For more information about Halliwells LLP visit www.halliwells.com.


~|
Enterprise web applications, build robust, secure 
scalable apps today - Try it now ColdFusion Today
ColdFusion 8 beta - Build next generation apps

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:287896
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Map .htm to ColdFusion

2007-09-06 Thread Jim McAtee
- Original Message - 
From: "Andrew Scott" <[EMAIL PROTECTED]>
To: "CF-Talk" 
Sent: Thursday, September 06, 2007 3:36 AM
Subject: Re: Map .htm to ColdFusion


> Is this a standard install? Or multie server?

Standard install.

> There is new filter mappings in the web.xml that you might need to add 
> too
> as well. Other than that it is an interesting question.

So, I may have to edit this file by hand?  What's the procedure - stop CF, 
edit file, restart CF?

Can anyone confirm whether this is necessary to process .htm files with 
CF8?




> On 9/6/07, Jim McAtee <[EMAIL PROTECTED]> wrote:
>>
>> When I try to map the extension .htm to ColdFusion under IIS6, I get 
>> the
>> error shown below when requesting a .htm file.  I'm pretty sure that 
>> with
>> CF5 and IIS5 all that was necessary was this IIS extension mapping. 
>> What
>> else is needed with CF8?
>>
>> Server Error
>> 
>> Either the Macromedia application server(s) are unreachable or none of
>> them has a mapping to process this request.


~|
Get involved in the latest ColdFusion discussions, product
development sharing, and articles on the Adobe Labs wiki.
http://labs/adobe.com/wiki/index.php/ColdFusion_8

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:287895
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: CF8 Debugging

2007-09-06 Thread Jim McAtee
- Original Message - 
From: "Tom Chiverton" <[EMAIL PROTECTED]>
To: "CF-Talk" 
Sent: Thursday, September 06, 2007 3:23 AM
Subject: Re: CF8 Debugging


> On Thursday 06 Sep 2007, [EMAIL PROTECTED] wrote:
>> ­ In the debugging output there's a little missing 'topdoc.gif' image,
>> which is being referenced in a location within /CFIDE.  Surely CF8 
>> doesn't
>> expect you to map CFIDE as a virtual directory in the HTTP server for
>> _every_ virtual web site on the machine?
>
> If you want it to show up, yes.
> Do you really care if a graphic is missing in the debug output though ?


No.  It's trivial.  But it seems to imply that either the developers of 
the server expected the CFIDE directory mapping to exist for all virtual 
sites or else they were oblivious to this happening.  Why go to the 
trouble of designing a nicely formatted debug output page and then have it 
punctuated by a missing graphic? 


~|
ColdFusion is delivering applications solutions at at top companies 
around the world in government.  Find out how and where now
http://www.adobe.com/cfusion/showcase/index.cfm?event=finder&productID=1522&loc=en_us

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:287894
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Map .htm to ColdFusion

2007-09-06 Thread Andrew Scott
Is this a standard install? Or multie server?

There is new filter mappings in the web.xml that you might need to add too
as well. Other than that it is an interesting question.



On 9/6/07, Jim McAtee <[EMAIL PROTECTED]> wrote:
>
> When I try to map the extension .htm to ColdFusion under IIS6, I get the
> error shown below when requesting a .htm file.  I'm pretty sure that with
> CF5 and IIS5 all that was necessary was this IIS extension mapping.  What
> else is needed with CF8?
>
> Server Error
> 
> Either the Macromedia application server(s) are unreachable or none of
> them has a mapping to process this request.
>
>
>
> 

~|
Download the latest ColdFusion 8 utilities including Report Builder,
plug-ins for Eclipse and Dreamweaver updates.
http;//www.adobe.com/cfusion/entitlement/index.cfm?e=labs%5adobecf8%5Fbeta

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:287893
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: CF8 Debugging

2007-09-06 Thread Tom Chiverton
On Thursday 06 Sep 2007, [EMAIL PROTECTED] wrote:
> ­ In the debugging output there's a little missing 'topdoc.gif' image,
> which is being referenced in a location within /CFIDE.  Surely CF8 doesn't
> expect you to map CFIDE as a virtual directory in the HTTP server for
> _every_ virtual web site on the machine?

If you want it to show up, yes.
Do you really care if a graphic is missing in the debug output though ?

-- 
Tom Chiverton
Helping to continually conquer open-source architectures
on: http://thefalken.livejournal.com



This email is sent for and on behalf of Halliwells LLP.

Halliwells LLP is a limited liability partnership registered in England and 
Wales under registered number OC307980 whose registered office address is at St 
James's Court Brown Street Manchester M2 2JF.  A list of members is available 
for inspection at the registered office. Any reference to a partner in relation 
to Halliwells LLP means a member of Halliwells LLP. Regulated by the Law 
Society.

CONFIDENTIALITY

This email is intended only for the use of the addressee named above and may be 
confidential or legally privileged.  If you are not the addressee you must not 
read it and must not use any information contained in nor copy it nor inform 
any person other than Halliwells LLP or the addressee of its existence or 
contents.  If you have received this email in error please delete it and notify 
Halliwells LLP IT Department on 0870 365 8008.

For more information about Halliwells LLP visit www.halliwells.com.


~|
Check out the new features and enhancements in the
latest product release - download the "What's New PDF" now
http://download.macromedia.com/pub/labs/coldfusion/cf8_beta_whatsnew_052907.pdf

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:287892
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Map .htm to ColdFusion

2007-09-06 Thread Jim McAtee
When I try to map the extension .htm to ColdFusion under IIS6, I get the 
error shown below when requesting a .htm file.  I'm pretty sure that with 
CF5 and IIS5 all that was necessary was this IIS extension mapping.  What 
else is needed with CF8?

Server Error

Either the Macromedia application server(s) are unreachable or none of 
them has a mapping to process this request.



~|
Get involved in the latest ColdFusion discussions, product
development sharing, and articles on the Adobe Labs wiki.
http://labs/adobe.com/wiki/index.php/ColdFusion_8

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:287891
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


How to move CFIDE in CF8?

2007-09-06 Thread Jim McAtee
When I installed CF8, it placed the CFIDE folder under the source 
directory of the default web site and created a virtual directory in IIS 
pointing at the folder.  That's not a good location for our use, so I'd 
like to move it.  I tried, and changed the IIS virtual directory, but the 
CF Administrator bombs.  I put everything back the way it was and went 
into the Administrator and see that it CF has an unchangeable logical 
directory mapping of /CFIDE pointing at the physical location.  I'm 
guessing that's the problem.

How can I move the folder and change the mapping of /CFIDE? 


~|
Enterprise web applications, build robust, secure 
scalable apps today - Try it now ColdFusion Today
ColdFusion 8 beta - Build next generation apps

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:287890
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: & ffmpeg

2007-09-06 Thread Mark Lewis
When the conversion takes place, the flv file is created, but the flv file 
is 580kb and doesnt play. It should be 3567kb as it is when i run ffmpeg on 
the same avi from the command line.

When I restart the coldfusion server, all the flv's seem to complete the 
conversion (the file size goes up to 3567kb and play)...It is very 
perculiar, any advice would be welcome.

Thanks

Mark
- Original Message - 
From: "Michael E. Carluen" <[EMAIL PROTECTED]>
To: "CF-Talk" 
Sent: Wednesday, September 05, 2007 5:31 PM
Subject: RE:  & ffmpeg


> Hi Mark,
> I am curious as to what doesn't work. I pretty much do the same method as
> what you're doing.  In my experience however, I notice some latency
> associated with the ffmpeg processing in the background even after cffile
> and cfexecute completes. As an example, 10meg .avi can take a full minute
> until it can be viewed completely as a flv.
> Michael


~|
Create robust enterprise, web RIAs.
Upgrade to ColdFusion 8 and integrate with Adobe Flex
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJP

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:287889
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: UNIX/Apache .htaccess problem

2007-09-06 Thread Tom Chiverton
On Wednesday 05 Sep 2007, [EMAIL PROTECTED] wrote:
> into a file named .htaccess our webserver blows up and returns a 500
> internal error.

What's the log file say ?

-- 
Tom Chiverton
Helping to adaptively iterate dot-com environments
on: http://thefalken.livejournal.com



This email is sent for and on behalf of Halliwells LLP.

Halliwells LLP is a limited liability partnership registered in England and 
Wales under registered number OC307980 whose registered office address is at St 
James's Court Brown Street Manchester M2 2JF.  A list of members is available 
for inspection at the registered office. Any reference to a partner in relation 
to Halliwells LLP means a member of Halliwells LLP. Regulated by the Law 
Society.

CONFIDENTIALITY

This email is intended only for the use of the addressee named above and may be 
confidential or legally privileged.  If you are not the addressee you must not 
read it and must not use any information contained in nor copy it nor inform 
any person other than Halliwells LLP or the addressee of its existence or 
contents.  If you have received this email in error please delete it and notify 
Halliwells LLP IT Department on 0870 365 8008.

For more information about Halliwells LLP visit www.halliwells.com.


~|
ColdFusion is delivering applications solutions at at top companies 
around the world in government.  Find out how and where now
http://www.adobe.com/cfusion/showcase/index.cfm?event=finder&productID=1522&loc=en_us

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:287888
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: PHP or .Net?

2007-09-06 Thread Tom Chiverton
On Wednesday 05 Sep 2007, [EMAIL PROTECTED] wrote:
> I'd say go sideways. Hows your CSS skills? Javascript? XML? Ajax? These are
> all cross language skills that we should all have under our belts.

+1 that.
If you get yourself up to speed on these core transferable skills it'll help 
no matter what language you use to do it.

-- 
Tom Chiverton
Helping to globally create revolutionary information
on: http://thefalken.livejournal.com



This email is sent for and on behalf of Halliwells LLP.

Halliwells LLP is a limited liability partnership registered in England and 
Wales under registered number OC307980 whose registered office address is at St 
James's Court Brown Street Manchester M2 2JF.  A list of members is available 
for inspection at the registered office. Any reference to a partner in relation 
to Halliwells LLP means a member of Halliwells LLP. Regulated by the Law 
Society.

CONFIDENTIALITY

This email is intended only for the use of the addressee named above and may be 
confidential or legally privileged.  If you are not the addressee you must not 
read it and must not use any information contained in nor copy it nor inform 
any person other than Halliwells LLP or the addressee of its existence or 
contents.  If you have received this email in error please delete it and notify 
Halliwells LLP IT Department on 0870 365 8008.

For more information about Halliwells LLP visit www.halliwells.com.


~|
ColdFusion is delivering applications solutions at at top companies 
around the world in government.  Find out how and where now
http://www.adobe.com/cfusion/showcase/index.cfm?event=finder&productID=1522&loc=en_us

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:287887
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Can CF run if it's configuration files are not owned by root on UNIX?

2007-09-06 Thread Tom Chiverton
On Wednesday 05 Sep 2007, [EMAIL PROTECTED] wrote:
> Having someone delete your config files is a lot easier to recover
> from deleting the whole installation.  You just check them out of SVN
> again and you're done. 

Interesting you use an RCS for the server config files.
Do you do your checkins on staging, and only ever checkout to live ? Why 
didn't you use a CAR ?

-- 
Tom Chiverton
Helping to augmentatively reintermediate synergistic methodologies
on: http://thefalken.livejournal.com



This email is sent for and on behalf of Halliwells LLP.

Halliwells LLP is a limited liability partnership registered in England and 
Wales under registered number OC307980 whose registered office address is at St 
James's Court Brown Street Manchester M2 2JF.  A list of members is available 
for inspection at the registered office. Any reference to a partner in relation 
to Halliwells LLP means a member of Halliwells LLP. Regulated by the Law 
Society.

CONFIDENTIALITY

This email is intended only for the use of the addressee named above and may be 
confidential or legally privileged.  If you are not the addressee you must not 
read it and must not use any information contained in nor copy it nor inform 
any person other than Halliwells LLP or the addressee of its existence or 
contents.  If you have received this email in error please delete it and notify 
Halliwells LLP IT Department on 0870 365 8008.

For more information about Halliwells LLP visit www.halliwells.com.


~|
Get the answers you are looking for on the ColdFusion Labs
Forum direct from active programmers and developers.
http://www.adobe.com/cfusion/webforums/forum/categories.cfm?forumid-72&catid=648

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:287886
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


CF8 Debugging

2007-09-06 Thread Jim McAtee
Two questions:

- Is there any way to enable Robust Exception Information _only_ for 
debugging IP addresses?  It's a lot of useful information to have in the 
event of an error that isn't shown elsewhere in the debugging output, but 
it's too much information for outside visitors.

- In the debugging output there's a little missing 'topdoc.gif' image, 
which is being referenced in a location within /CFIDE.  Surely CF8 doesn't 
expect you to map CFIDE as a virtual directory in the HTTP server for 
_every_ virtual web site on the machine? 


~|
Check out the new features and enhancements in the
latest product release - download the "What's New PDF" now
http://download.macromedia.com/pub/labs/coldfusion/cf8_beta_whatsnew_052907.pdf

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:287885
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Am I the only one who thinks Flex 2 isn't

2007-09-06 Thread Joeri B
Yes, Openlaszlo looks very promising. I've played with it for some while, and 
it is easier to program than Flex 2 in my opionion. It's components are a bit 
quircky.
But the, build once, deploy, as DHTML :), FL 7, 8 is a serious plus.

There I think it's HTML + CSS + CFM + some Javascript (AJAX) still rules them 
all. 

~|
Download the latest ColdFusion 8 utilities including Report Builder,
plug-ins for Eclipse and Dreamweaver updates.
http;//www.adobe.com/cfusion/entitlement/index.cfm?e=labs%5adobecf8%5Fbeta

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:287884
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4