I concur. I often get the same delays, but it does seem to be a gmail thing.
mxAjax / CFAjax docs and other useful articles:
http://www.bifrost.com.au/blog/
2009/11/5 Dave Watts:
>
>> Is your account on the list set to send the mail directly to gmail or
>> to another location before going to g
Hi Everyone,
I am running ColdFusion 8 with SQL Server 2005. I recently decided to take a
direct query against the database and simply move it into a stored procedure
instead. So before I was doing a I am now doing a
instead. After I made the change, I logged onto my website and requested
What does the target webservice accept as arguments for the runXS method?
mxAjax / CFAjax docs and other useful articles:
http://www.bifrost.com.au/blog/
2009/11/5 Alex :
>
> I'm having a heck of a time trying to figure this out.
>
> The code below works great when I use createObject, but it d
I was perusing a thread from 2008 about this, but we are looking for an open
source LMS solution that is written in CF. Anyone have any ideas? Thanks!
Eric
~|
Want to reach the ColdFusion community with something they want? L
> Is your account on the list set to send the mail directly to gmail or
> to another location before going to gmail? I ask because I've never
> heard of a delay with gmail users. I'd be very concerned if there was
> a reoccurring delay for mail sent to gmail users.
I love Gmail in an almost unnat
It must be &.
>>
>> Plug in to our blog: A&W Unplugged
>> http://www.austin-williams.com/unplugged
>>
>>
>>
>> __ Information from ESET Smart Security, version of virus signature
>> database 4573 (20091104) __
>>
>> The mes
either/or. It must be &.
>
> Plug in to our blog: A&W Unplugged
> http://www.austin-williams.com/unplugged
>
>
>
> __ Information from ESET Smart Security, version of virus signature
> databas
The custom tag isn't rendering the content again, YOU are rendering
the content again. If you create an empty custom tag and invoke it,
you'll get a single copy of the output. If you then add emitting of
the generated content in the custom tag, you'll get two copies. So
building up from the "no
Maureen Barger wrote:
> Who are you when you run this?
The system admin that gets to do this runs it as root.
~|
Want to reach the ColdFusion community with something they want? Let them know
on the House of Fusion mailing li
Who are you when you run this?
On Wed, Nov 4, 2009 at 16:46, Ian Skinner wrote:
>
> According to this technote: Workaround for ColdFusion Startup with
> System Startup on Solaris (ColdFusion 8 and 8.0.1)
> http://kb2.adobe.com/cps/403/kb403351.html, we should be able to run
> these scripts and i
I didn't test it, but try something like:
#trim(thisTag.generatedContent)#
--
Brad Roberts
AgentBlaze, LLC
Office: (865) 681-8390
Fax: (866) 583-9334
b...@agentblaze.com
ht
Barney,
Well, as I said, in this case the prinicple of least surprise would have
effused a behavior wherein the page calling the custom tag would not have
rendered the content, leaving that responsibility to the tag itself. In _my_
mind, anyway. I mean, if the tag is supposed to receive the co
t; http://www.austin-williams.com
>
> Great advertising can't be either/or. It must be &.
>
> Plug in to our blog: A&W Unplugged
> http://www.austin-williams.com/unplugged
>
>
>
> __ Information from ESET Smart Security, version of virus signatu
I'm having a heck of a time trying to figure this out.
The code below works great when I use createObject, but it doesn't when I
use cfinvoke. The reason I want to use cfinvoke is that it takes a while
for it to return the data, and I can set a timeout on the cfinvoke (and I
can't when I use cre
Thanks for all the feedback guys.
We're already doing the easy stuff (cfsilent, etc) to suppress whitespace. I'm
leaning towards the caching and converting to 1 line for standard html stuff.
we'll be careful with the js
thanks!
~~~
According to this technote: Workaround for ColdFusion Startup with
System Startup on Solaris (ColdFusion 8 and 8.0.1)
http://kb2.adobe.com/cps/403/kb403351.html, we should be able to run
these scripts and it will create the start up and kill scripts that will
automatically start ColdFusion whe
You can't do a redirect .. or any client output... in onsessionend() ...
because that runs when the session is over.
Maybe something like this:
What I do in that instance is check their cookie. I keep my session lengths
short to preserve memory, but if they have a valid cookie that ha
On Wed, Nov 4, 2009 at 1:26 PM, Jeff Gladnick wrote:
>
> We have a VERY high traffic website, and we're trying to speed up the
> pageload times a bit. One of the things we're considering is going through
> some of the cfm files that are loaded on every request and trying to strip
> them down:
>
There is a way to suppress that and I can't recall how (been a long
time).
I see in my head something to do with...
and
HTH...at least you know it is possiblenow go forth and Google ;-)
Cheers
-
Bryan Stevenson B.Comm.
VP & Director of E-Commerce Development
Electric Edge Systems G
just do in the end tag?
CF has to do one or the other (render the output or suppress the
output), and then provide a means to accomplish the other. At least
from the perspective of the principle of least surprise, rendering the
output seems like the correct default choice.
cheers,
barneyb
On
On Thu, 2009-11-05 at 04:11 +0800, Azadi Saryev wrote:
> before you go into minimizing whitespace, you should really remove all
> those tags from around code that does not have any cf
> variables in it. that will speed up the page somewhat since cf will not
> have to parse your html looking for n
Oh, and if you haven't already, install the YSlow and Pagespeed addons for
Firefox to analyze your pages. Their feedback can get you to the heart of
any client side problems very quickly.
Server side, I wouldn't be so concerned by the whitespace and more concerned
by slow running queries and cod
Hmm having never made a custom tag with an open and close pair, I didn't
realize that the contained content will display twice.
http://www.mail-archive.com/cf-talk@houseoffusion.com/msg29687.html
No way around this? It seems pretty stupid that CF wouldn't suppress the
initial output, leav
Yes, that makes plenty of sense. However, all that regex processing *could*
be a bit of a fruitless drain so, if you can, cache the page content (using
CF and compressed using the method you describe). Caching the output could
really speed things up but, of course, can be a problem if there's
sess
Oh, I meant to add that if you are using application.cfc instead of .cfm,
then you would put your code to redirect in the OnSessionEnd function.
Dave
-Original Message-
From: DURETTE, STEVEN J (ATTASIAIT) [mailto:sd1...@att.com]
Sent: Wednesday, November 04, 2009 1:02 PM
To: cf-talk
Sub
before you go into minimizing whitespace, you should really remove all
those tags from around code that does not have any cf
variables in it. that will speed up the page somewhat since cf will not
have to parse your html looking for non-existent cfml in it...
wrapping all your code in will help
Steve,
There are a number of ways (probably more than I'm listing here):
1. If you're using Application.cfm, sdd code to it so that if of your
session (say, session.logged_in) is undefined, then it will redirect the
user to a login page. This way, the 'processing' page for your form never
even
A couple tags that are realy useful for stripping whitespace are the
block and the .
You can also make use of the and the setting in the ColdFusion administrator
that has a similar affect.
~|
Want to reach the ColdFusion c
Oops!
Or rather, SELECTED (not "checked"... I was thinking of checkboxes and radio
buttons, which have the same problem as multiple selects... they don't exist in
the form post unless something is checked/selected).
Mik
At 02:27 PM 11/4/2009, Mik Muller wrote:
>You should probably also add
Oops!
Or rather, SELECTED (not "checked"... I was thinking of checkboxes and radio
buttons, which have the same problem as multiple selects... they don't exist in
the form post unless something is checked/selected).
Mik
At 02:27 PM 11/4/2009, Mik Muller wrote:
>You should probably also add
You should probably also add a CHECKED to one of the options, as a default. It
can be unselected, but it gives you a better chance of getting real user input.
Mik
At 01:16 PM 11/4/2009, Andy Matthews wrote:
>With radio buttons, checkboxes, and multiple select dropdowns it doesn't
>matter if
You should probably also add a CHECKED to one of the options, as a default. It
can be unselected, but it gives you a better chance of getting real user input.
Mik
At 01:16 PM 11/4/2009, Andy Matthews wrote:
>With radio buttons, checkboxes, and multiple select dropdowns it doesn't
>matter if
We have a VERY high traffic website, and we're trying to speed up the pageload
times a bit. One of the things we're considering is going through some of the
cfm files that are loaded on every request and trying to strip them down:
So for example, on the page that builds the tag @ the top, we
All,
Ok, this is a little pet peeve of mine. We have session timeout set and
we tell users that they have to do something within so much time.
Problem is the users ignore that. They open a page with a form, leave
it open for an hour, then when they submit the form Session is invalid
erro
On Wed, Nov 4, 2009 at 12:39 PM, Ian Skinner wrote:
>
> Robert Harrison wrote:
> > Turn off the remember password features in your Firefox options!
> >
> > Oh, I mean... As the programmer of the site, how do I keep the fields
> clear
> > for users who are on Firefox?
> >
>
> I guess you then use
Quick and dirty fix...
In the processing page, add this to the top:
Steve
-Original Message-
From: Andy Matthews [mailto:li...@commadelimited.com]
Sent: Wednesday, November 04, 2009 1:16 PM
To: cf-talk
Subject: RE: Form Insanity
With radio buttons, checkboxes, and multiple select d
the question that is buggin me now is: why have a Select Unit (if applicable) option in a mutli-select???
Azadi Saryev
Sabai-dee.com
http://www.sabai-dee.com/
On 05/11/2009 02:37, Azadi Saryev wrote:
> i stand corrected - missed that it was a multiple select... :(
>
> Azadi Saryev
> Sabai-dee.c
i stand corrected - missed that it was a multiple select... :(
Azadi Saryev
Sabai-dee.com
http://www.sabai-dee.com/
On 05/11/2009 02:36, Azadi Saryev wrote:
> if there's no selected option, the first one is considered selected by
> pretty much all current browsers.
>
> Azadi Saryev
> Sabai-dee.
if there's no selected option, the first one is considered selected by
pretty much all current browsers.
Azadi Saryev
Sabai-dee.com
http://www.sabai-dee.com/
On 05/11/2009 02:14, Ian Skinner wrote:
> As there is no default option, IIRC if no option is selected, then the
> browser will not send
see if adding closing tags helps.
Azadi Saryev
Sabai-dee.com
http://www.sabai-dee.com/
On 05/11/2009 01:59, Timothy Laureska wrote:
> Hello:
>
> Can somebody tell me why this from select box form and processing template
> produce the message that "Element UNIT_ID_OTHER" is undefined in for
Hey all
I'm trying to make a custom tag for cfmail so I can create a standard From,
Subject, and HTML layout inside the email that is sent.
I have created the tag and am using the open / close method, but the content of
the email winds up being displayed on the page, as well as being emailed.
lliams
> 125 Kennedy Drive, Suite 100
> Hauppauge NY 11788
> P : 631.231.6600 Ext. 119
> F : 631.434.7022
> http://www.austin-williams.com
>
> Great advertising can't be either/or. It must be &.
>
> Plug in to our blog: A&W Unplugged
> http://www.austin-williams
With radio buttons, checkboxes, and multiple select dropdowns it doesn't
matter if the form is there on the view page. If no one selects one of the
options in those input fields, the key doesn't exist in the form.
Use cfparam, or StructKeyExists(FORM,'key') to make sure it's there before
using it
As there is no default option, IIRC if no option is selected, then the
browser will not send that form field with the request.
~|
Want to reach the ColdFusion community with something they want? Let them know
on the House of
I've always had an idea of randomizing a form element's name and passing
that random name to the following page to force the browser to not
autocomplete the information (it can't pre-populate if it's never seen the
form name before).
I've never actually worked out how to do this mainly because I'
Robert Harrison wrote:
> It's a security issue.
Fine, just realize that it is only an *illusion* of security.
/Anything/ you do on the server can be overridden by the client. And
the sort of users who you really want to protect from, are the sort of
users who are going to know how to circumv
DURETTE, STEVEN J (ATTASIAIT) wrote:
> One reason could be Corporate policy.
>
> I know one company for sure that will not be named that has a policy
> that states that user id and password fields will be blank.
>
> Even though they lock down the browser not to auto populate, some people
> could s
Hello:
Can somebody tell me why this from select box form and processing template
produce the message that "Element UNIT_ID_OTHER" is undefined in form"
Select Unit (if applicable)
--
#unit_name#
processing template
SELECT * FROM dhmh_units
where u
irus signature
database 4573 (20091104) __
The message was checked by ESET Smart Security.
http://www.eset.com
~|
Want to reach the ColdFusion community with something they want? Let them know
on the House of Fusio
from ESET Smart Security, version of virus signature
database 4573 (20091104) __
The message was checked by ESET Smart Security.
http://www.eset.com
~|
Want to reach the ColdFusion community with something they want? Let t
One reason could be Corporate policy.
I know one company for sure that will not be named that has a policy
that states that user id and password fields will be blank.
Even though they lock down the browser not to auto populate, some people
could still get past it. Then for some reason, the powe
> How would you go about formatting text pasted from a word document into
> a coldfusion web form?
This is what I do. But it requires some jar files to work to the best of its
capabilities.
1. Install the jTidy jars. And register cfx_markdown as a java CFX tag.
2. Check to see if the posted data
Robert Harrison wrote:
> Turn off the remember password features in your Firefox options!
>
> Oh, I mean... As the programmer of the site, how do I keep the fields clear
> for users who are on Firefox?
>
I guess you then use one of the techniques mentioned elsewhere but
why do you, as the
Turn off the remember password features in your Firefox options!
Oh, I mean... As the programmer of the site, how do I keep the fields clear
for users who are on Firefox?
Robert B. Harrison
Director of Interactive Services
Austin & Williams
125 Kennedy Drive, Suite 100
Hauppauge NY 11788
P : 6
there's a function on cflib called demoronize() that's supposed to "clean"
text pasted from Word. but i've heard it's not quite bullet-proof.
As far as formatting the data... when it goes into the database. Then you
only do it once, as opposed to doing it every time you display.
On Wed, Nov 4,
How would you go about formatting text pasted from a word document into a
coldfusion web form?
Also should you format the data before it is inputed into the database or would
you format the data when it is displayed?
Any thoughts would be appreciated.
Keith
ms.com
Great advertising can't be either/or. It must be &.
Plug in to our blog: A&W Unplugged
http://www.austin-williams.com/unplugged
__ Information from ESET Smart Security, version of virus signature
database 4573 (20091104) __
The message was checked by ESET Smart Sec
Unfortunately on Linux (at least RHEL) it doesn't install a service init
script for the admin instance. There is a simple start script in
/opt/jrun4/bin/adminstart.sh that does basically what Marie is doing.
./jrun -config admin_jvm.config -start admin
Note: you have to be cd'd into the jrun4/b
How would you go about formatting text pasted from a word document into a
coldfusion web form?
Also should you format the data before it is inputed into the database or would
you format the data when it is displayed?
Any thoughts would be appreciated.
Keith
~~
How would you go about formatting text pasted from a word document into a
coldfusion web form?
Also should you format the data before it is inputed into the database or would
you format the data when it is displayed?
Any thoughts would be appreciated.
Keith
~~
27;t be either/or. It must be &.
>
> Plug in to our blog: A&W Unplugged
> http://www.austin-williams.com/unplugged
>
>
>
>
>
> __ Information from ESET Smart Security, version of virus signature
> database 4573 (20091104) __
>
> The messa
Robert Harrison wrote:
> How do I override Firefox and clear the form fields?
Turn off the remember password features in your Firefox options!
~|
Want to reach the ColdFusion community with something they want? Let them know
-williams.com
Great advertising can't be either/or. It must be &.
Plug in to our blog: A&W Unplugged
http://www.austin-williams.com/unplugged
__ Information from ESET Smart Security, version of virus signature
database 4573 (20091104) __
The message was
> As an additional note to the above, the "LIVE" server restarts every
> day at approx 0700, and this problem only ever seems to occur at some
> point past 1900-2100 and then seems to continue sporadically until
> server restart at 0700.
Further information. I have kept an eye on this issue
Hauppauge NY 11788
P : 631.231.6600 Ext. 119
F : 631.434.7022
http://www.austin-williams.com
Great advertising can't be either/or. It must be &.
Plug in to our blog: A&W Unplugged
http://www.austin-williams.com/unplugged
__ Information from ESET Smart Security, version of
>> Hi Paul
>
>After much head scratching, that is what I figured, unfortunately, I have no
>control over the wsdl as it is generated by Taleo on their servers so unless
>they fix their wsdl generation it would appear that I'm screwed if I want
>use CF to consume the web service :-(
>
>To verify th
austin-williams.com
Great advertising can't be either/or. It must be &.
Plug in to our blog: A&W Unplugged
http://www.austin-williams.com/unplugged
__ Information from ESET Smart Security, version of virus signature
database 4573 (20091104) __
The message was
You could try an IFRAME inside the CFWINDOW, with the TinyMCE inside the
iFRAME. The Ext.Window that CFWINDOW is based on doesn't play very nice with
tiny or fck in my experience..
Brook
-Original Message-
From: Azadi Saryev [mailto:az...@sabai-dee.com]
Sent: November-03-09 9:48 PM
To:
> I tried going to localhost:8000, but nothing is listening there. Do I need
> to start a separate JRun server/service? I thought it would
> already be running along with ColdFusion?? The only port listening in the
> 8000 range is 8300 (CF web trial server).
You'll need to run the JRun Admin
I just figured out that Eclipse WPT does not validate wsdl documents when it
consumes them whereas CF does.
You can force Eclipse WPT to validate a local copy of a wsdl file and when I
do that on the Taleo API wsdl file it fails with multiple errors.
So my problem with consuming the Taleo API we
> Hi Paul
>
> My guess is a namespace issue on the type EmployeeBean
>
> In one message it is referenced from namespace imp1, in another message
> it's referenced from xsd, so I'm guessing that if you correct whichever
> is incorrect it will work fine (probably the xsd:EmployeeBean needs
> chang
Hi Paul
My guess is a namespace issue on the type EmployeeBean
In one message it is referenced from namespace imp1, in another message it's
referenced from xsd, so I'm guessing that if you correct whichever is incorrect
it will work fine (probably the xsd:EmployeeBean needs changing to
imp1:E
As an additional note to the above, the "LIVE" server restarts every day at
approx 0700, and this problem only ever seems to occur at some point past
1900-2100 and then seems to continue sporadically until server restart at 0700.
Hi,
I currently have a web service "MYSERVICE". This service is on 3 physically
seperate web servers, "DEV", "TEST", "LIVE".
"DEV" is accessed by developers only
"TEST" is accessed by developers and clients only
"LIVE" is public
Coldfusion version for all servers is 8.0.1. Axis version is
74 matches
Mail list logo