Serving up an image w/ cf11?

2014-07-07 Thread Justin Hansen

The following code worked great in CF9/10, now it doesn't work in CF11. All 
we're trying to do here is serve up an email tracking image, after logging the 
it. Before, it would render in the email/browser as the image file. Now, it 
looks like a missing image link. Any ideas?

cfscript
// log the email view
// ... redacted ...

// read the image
imgBytes = fileReadBinary( expandPath( 'img.jpg' ) );

// get the http response
response = getPageContext().getFusionContext().getResponse();

// set the appropriate mime type
response.setHeader( 'Content-Type', 'image/jpg' );

// replace the output stream contents with the binary
response.getOutputStream().writeThrough( imgBytes );

// stop to ensure no whitespace is added
abort;

/cfscript


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


RE: Serving up an image w/ cf11?

2014-07-07 Thread Justin Hansen

Wait, never mind... That was too easy. Just remove all the fun stuff!
Solution: location( url=/email/img.jpg, addToken=false );

-Original Message-
From: Justin Hansen [mailto:jhan...@uhlig.com] 
Sent: Monday, July 07, 2014 11:16 AM
To: cf-talk
Subject: Serving up an image w/ cf11?


The following code worked great in CF9/10, now it doesn't work in CF11. All 
we're trying to do here is serve up an email tracking image, after logging the 
it. Before, it would render in the email/browser as the image file. Now, it 
looks like a missing image link. Any ideas?

cfscript
// log the email view
// ... redacted ...

// read the image
imgBytes = fileReadBinary( expandPath( 'img.jpg' ) );

// get the http response
response = getPageContext().getFusionContext().getResponse();

// set the appropriate mime type
response.setHeader( 'Content-Type', 'image/jpg' );

// replace the output stream contents with the binary 
response.getOutputStream().writeThrough( imgBytes );

// stop to ensure no whitespace is added abort;

/cfscript




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


postSizeLimit and postParameterLimit

2013-03-28 Thread Justin Hansen

There is a bit of a debate going on, I was hoping the community could chime 
in...

What is a reasonable limit for the postSizeLimit and postParameterLimit 
settings (aka maximum number of form fields)?
100, 1,000, 10,000?

On the one hand, we have a dynamic form with LOTS of fields. This is/was a 
business requirement, it grew over time, it hit the limit, again. Of course we 
could spend days/hours rewriting the code, or we can just up the limit and move 
on. (Yes, eventually it should get re-written, but that's not the point of this 
inquiry.) 

On the other hand, we have security. The security camp says, the lower the 
better. Is raising the limit from say 5,000 to 6,000 really going to hurt us 
from a security point of view? How? Why?

I have looked around and seen many a blog post about the settings. However, I 
haven't see any information on what a good rule of thumb should be. Just where 
should we draw the line? How high is too high and why?

Ready? Fight...

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


CF9/OpenOffice for Word to PDF

2012-05-04 Thread Justin Hansen

Is anyone using the CF9/OpenOffice to convert Word/Excel documents to PDF? How 
well is it working? What sort of issues did you run into? How did you get 
around them?

Trying to evaluate this option before diving in...

Thanks,
Justin

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


RE: CF9/OpenOffice for Word to PDF

2012-05-04 Thread Justin Hansen

Excellent! I will go ahead and give it a shot. Thanks for the input Dave!

-Original Message-
From: Dave Watts [mailto:dwa...@figleaf.com] 
Sent: Friday, May 04, 2012 9:27 AM
To: cf-talk
Subject: Re: CF9/OpenOffice for Word to PDF


 Is anyone using the CF9/OpenOffice to convert Word/Excel documents to PDF? 
 How well is it working?
 What sort of issues did you run into? How did you get around them?

 Trying to evaluate this option before diving in...

We're using it, and haven't run into any significant issues, except for one - 
the process itself is fairly slow, and you wouldn't want to be doing a whole 
lot of these concurrently. But you can program around that via queuing, 
threads, etc.

If you have questions about how it would handle specific documents, it's very 
easy to set up a test environment and just try it out with those documents.

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

Fig Leaf Software is a Veteran-Owned Small Business (VOSB) on GSA Schedule, and 
provides the highest caliber vendor-authorized instruction at our training 
centers, online, or onsite.



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


How big is your CF JVM?

2012-05-01 Thread Justin Hansen

Quick poll... How much memory have you allocated to CF on your production 
servers?

We are running Win 2008 R2, CF 9.0.1x Enterprise, w/ 3GB of RAM allocated to 
the CF/JVM

How say you?

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


VM Resources

2012-04-15 Thread Justin Hansen

For those of you using virtual servers, how much CPU/RAM are you allocating to 
run your CF applications?

The IT department says we don't need more power because, statistically 
(according to the VM tools), we don't need it. However, it is my believe the 
apps will run much faster and CF/Java will be able do a better job of 
maintaining memory used by the JVM. Overall, our applications are running quite 
well with our current config (2 CPUs  5 GB of RAM), but the occasional long 
running report, or heavy lifting scheduled page will consume too much of the 
available memory bringing a server to its knees. 

Of course, we can always go back and optimize code, but at some point you reach 
a point of diminishing returns. Focusing our programming resources on less than 
0.1% of the code... wouldn't it just be less expensive to throw some (virtually 
free) additional processing power at the problem. How can that possibly hurt 
the situation?

We have searched around and haven't found any VM/CF related articles or blogs 
to support our case.

Any ideas, advise, or experience out there? Thanks!


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


RE: VM Resources

2012-04-15 Thread Justin Hansen

 That is too general a question to get a useful answer.

I know... just introducing the issue at hand. It depends, right?  :)

 Are you running 32- or 64-bit OSs? If 64-bit, are you also running a 64-bit 
 version of CF?

Yes: 64-bit Windows 2008 R2, and 64-bit CF.

 It sounds like you have some specific things (long running reports, heavy 
 lifting scheduled pages) which might be candidates for (a) handling outside 
 of CF, or (b) optimization. As for whether it's less expensive, only you and 
 your server admins can answer that with certainty. Nothing is ever free - 
 presumably, your admins are rationing resources in order to share among all 
 the servers.

Point taken, been there, done that too. So, I have to build a better mouse trap 
and stay in my box? What if it is already been optimized? Is it really too much 
to ask for more CPU? I know, only my IT department can answer that. Guess I'm 
just fishing for a rational argument for more resources...

I just don't understand why we have to keep putting along in our nice new 
Virtual Ford Focus, when the Virtual Boss 302 Mustang is just a few clicks 
away. Yeah, it's going to use more gas, but it will be more responsive and 
every user/application will benefit from it.


-Original Message-
From: Dave Watts [mailto:dwa...@figleaf.com] 
Sent: Sunday, April 15, 2012 12:30 PM
To: cf-talk
Subject: Re: VM Resources


 For those of you using virtual servers, how much CPU/RAM are you allocating 
 to run your CF applications?

That is too general a question to get a useful answer.

 The IT department says we don't need more power because, statistically 
 (according to the VM tools), we don't need it.
 However, it is my believe the apps will run much faster and CF/Java 
 will be able do a better job of maintaining memory used by the JVM. 
 Overall, our applications are running quite well with our current 
 config (2 CPUs  5 GB of RAM), but the occasional long running report, or 
 heavy lifting scheduled page will consume too much of the available memory 
 bringing a server to its knees.

Are you running 32- or 64-bit OSs? If 64-bit, are you also running a 64-bit 
version of CF?

 Of course, we can always go back and optimize code, but at some point 
 you reach a point of diminishing returns. Focusing our programming 
 resources on less than 0.1% of the code... wouldn't it just be less expensive 
 to throw some (virtually free) additional processing power at the problem. 
 How can that possibly hurt the situation?

It sounds like you have some specific things (long running reports, heavy 
lifting scheduled pages) which might be candidates for (a) handling outside of 
CF, or (b) optimization. As for whether it's less expensive, only you and your 
server admins can answer that with certainty. Nothing is ever free - 
presumably, your admins are rationing resources in order to share among all the 
servers.

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

Fig Leaf Software is a Veteran-Owned Small Business (VOSB) on GSA Schedule, and 
provides the highest caliber vendor-authorized instruction at our training 
centers, online, or onsite.



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


CFBuilder 2 Search

2011-08-04 Thread Justin Hansen

In CFBuilder 1, when you searched you used to be able to expand an click on the 
actual line # with the match on it. This is no longer the case in CFB2? WTF? 
I've looked around for a setting, can't find anything

Any ideas? Explanations? Fixes? I got half a mind to switch back to CFB1!

Thanks,
Justin



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


RE: CFBuilder 2 Search

2011-08-04 Thread Justin Hansen

Ahhh Thank you that's much much better! This has been bugging me 
for weeks! Thank you! Thank you! Thank you!

Justin

-Original Message-
From: Wil Genovese [mailto:jugg...@trunkful.com] 
Sent: Thursday, August 04, 2011 3:47 PM
To: cf-talk
Subject: Re: CFBuilder 2  Search


read this.

http://orangexception.com/post/8085089387/file-search-in-coldfusion-builder-open-search-dialog

It's there.

Wil Genovese
Sr. Web Application Developer/
Systems Administrator
CF Webtools
www.cfwebtools.com

wilg...@trunkful.com
www.trunkful.com

On Aug 4, 2011, at 3:42 PM, Justin Hansen wrote:

 
 In CFBuilder 1, when you searched you used to be able to expand an click on 
 the actual line # with the match on it. This is no longer the case in CFB2? 
 WTF? I've looked around for a setting, can't find anything
 
 Any ideas? Explanations? Fixes? I got half a mind to switch back to CFB1!
 
 Thanks,
 Justin
 
 
 
 



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


RE: CFImage at 300dpi

2011-02-04 Thread Justin Hansen

Terry,

Actually, this is just a math problem. We've been printing full color images on 
digital presses for years using efflare to process uploaded images (JPG) to the 
optimal size/resolution/quality for our presses. However, if you are dealing 
with logos w/ text, EPS is the way to go and processing those with CF is not 
really an option. So... the solution is to make big images @ 72dpi and then 
compress them down to the size you want when you create your print file. Does 
that make sense?

For example: A 100px wide @ 300dpi image would actually be a 416px wide 72dpi 
image. It's the same thing. The only trick is making sure whatever tech you're 
using to make print files doesn't optimize the image for the web when 
generating the PDF or whatever...

Fun stuff... good times... good luck!
Justin


-Original Message-
From: Terry Troxel [mailto:terry.tro...@gmail.com] 
Sent: Thursday, February 03, 2011 2:57 PM
To: cf-talk
Subject: RE: CFImage at 300dpi


I agree I cannot find dpi either in CFIMAGE, but what about PIXEL SIZE, it
is listed in IMAGEINFO.
Is that related in any way?
I am going to dig into Adobe acrobat and all of the CFPDF tags as Ben Forta
suggested. From reading between the lines
In the replies I could be wrong but this just might be something we all
could benefit from as we all work mainly with
Screen, browser output and there is a whole world out there for print media
and 72 dpi doesn't cut it, and making
Online applications for print media is a real big challenge.

Terry

-Original Message-
From: Jason Fisher [mailto:ja...@wanax.com] 
Sent: Thursday, February 03, 2011 12:26 PM
To: cf-talk
Subject: Re: CFImage at 300dpi


Pretty sure that DPI is not an accessible via CFIMAGE.



From: Claude Schnéegans schneeg...@internetique.com
Sent: Thursday, February 03, 2011 3:22 PM
To: cf-talk cf-talk@houseoffusion.com
Subject: Re: CFImage at 300dpi

But all that still leaves us with the question
of how to create a downloadable image file with CF

You're right. If CFimage does not do it, I have no solution.







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


RE: Is Coldfusion losing it biggest asset?

2011-01-17 Thread Justin Hansen

I'll chime in for the Midwest. I'm looking to hire 4 CF developers in the 
Kansas City (Overland Park, KS) area. Send your resumes to care...@uhlig.com

Thanks,

Justin Hansen
Senior Vice President - Software 
Uhlig LLC

-Original Message-
From: Mark A. Kruger [mailto:mkru...@cfwebtools.com] 
Sent: Wednesday, January 12, 2011 9:03 AM
To: cf-talk
Subject: RE: Is Coldfusion losing it biggest asset?


Mike,

Companies in Omaha have been searching for multiple CF developers for months
(our unemployment rate in NE - 5.5%). The Midwest has plenty of CF jobs. We
are hiring for one.

-Mark

Mark A. Kruger, MCSE, CFG
(402) 408-3733 ext 105
Skype: markakruger
www.cfwebtools.com
www.coldfusionmuse.com
www.necfug.com



-Original Message-
From: Michael Grant [mailto:mgr...@modus.bz] 
Sent: Wednesday, January 12, 2011 8:03 AM
To: cf-talk
Subject: Re: Is Coldfusion losing it biggest asset?



  wouldn't it make far more sense to move into something more popular
 like  PHP, .Net, etc. right away?


In a word. Yes. Unless you live in California, which seems to be the only
place where CF jobs seem to be these days.


 Second and final question: what's really wrong with a procedural approach
 when dealing with medium or small web sites


Absolutely nothing. Good code is good code.






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


RE: JVM Tuning and Garbage Collection 1.5.0_14 1.6.0_11 1.6.0_12

2009-02-07 Thread Justin Hansen

Cutter,

Regarding CF8 and the JVM  1.5.0_14 vs. 1.6.0_11. We have been testing 
1.6.0_11 for quite a while now and just switched to it in production last week, 
on 4 of our servers. A) It works. B) We have gained a noticeable speed 
increase. I'll call it a save and affective upgrade.

Is anyone using 1.6.0_12 yet? Any reasons to or not to switch from 11 to 12?

Justin


-Original Message-
From: Cutter (CFRelated) [mailto:cold.fus...@cutterscrossing.com] 
Sent: Thursday, February 05, 2009 9:00 AM
To: cf-talk
Subject: Re: JVM Tuning and Garbage Collection


Rick,

We run very similar traffic. We found GC to be much better, for our app, 
when using the 1.5.0_14 JVM, over the default CF8 JVM. We hired Mike 
Brunt to come in and consult with us (some of the best money we ever 
spent). This may be better with the 1.6.0_11 JVM, but we haven't tested 
that yet.

Steve Cutter Blades
Adobe Certified Professional
Advanced Macromedia ColdFusion MX 7 Developer

Co-Author of Learning Ext JS
http://www.packtpub.com/learning-ext-js/book
_
http://blog.cutterscrossing.com

Rick Root wrote:
 Dear cf-talk,
 
 I'm working on a site that averages about 10 requests per second over
 the course of a 24 hour period... of course it's considerably more
 active during peak time periods (actually about 9am-midnight, with
 peak activity between 8 and 10pm.
 
 We spread this across 3 instances with 1gb of memory each.
 
 Time between major GCs right now is about 14 minutes.  However during
 the peak time, major GCs run about every 6 minutes.
 
 These garbage collections cause a temporary pause in the processing of
 requets while memory is cleaned up, and when you're getting 8 requests
 per second, they pile up quite rapidly.
 
 Right now I have Fusion Reactor configured to only allow 15 requests
 into CF at a time and queue the rest.. but during these 15-20 seconds
 of slow processing (every 6 minutes on each of the 3 instances),
 unusual things happen like lock timeouts in the application.cfm.
 
 Now.. after a major garbage collection, memory usage drops from 1GB to 400MB.
 
 We're running windows server 2003 with 2 Xeon 3ghz CPUs and 4GB of RAM
 .. coldfusion 8,0,1,195765, JVM 1.6.0_04
 
 my JVM arguments:
 
 java.args=-server -Xmx1024m -Xms768m -Dmail.host=www.classcreator.com
 -Dsun.io.useCanonCaches=false -XX:MaxPermSize=192m -XX:+UseParallelGC
 -Dcoldfusion.rootDir={application.home}/
 
 Here are my settings from the Request Tuning part of the CF Administrator:
 
 Maximum number of simultaneous Template requests  25
 Maximum number of simultaneous Flash Remoting requests  3
 Maximum number of simultaneous Web Service requests  3
 Maximum number of simultaneous CFC function requests 3
 Maximum number of running JRun threads   40
 Maximum number of queued JRun Threads  1000
 
 And as I said... Fusion Reactor is configured to queue requests beyond
 15and there are three instances (all with the same settings)
 
 so.. how can I reduce the negative effects of garbage collection on
 the application?
 
 Any suggestions?
 




~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:319018
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: After migrating from CFMX 6.1 to CF8 server grinds to halt within a minute

2008-10-23 Thread Justin Hansen
Try down grading your JVM to 1.5.x.

http://www.mkville.com/blog/index.cfm/2008/2/4/ColdFusion-8-Random-Slowness-Downgrade-the-JVM

Justin

-Original Message-
From: Markus Wollny [mailto:[EMAIL PROTECTED]
Sent: Wednesday, October 22, 2008 1:24 PM
To: cf-talk
Subject: After migrating from CFMX 6.1 to CF8 server grinds to halt within a 
minute

Hi!

We're currently in the process of migrating our ColdFusion MX 6.1 (32-bit) 
servers to ColdFusion 8 (64-bit). When testing our websites without load on the 
server, everything is working fine. As soon as we switch to production mode and 
let the users surf the sites, the proxy service denies requests and users get 
an ugly 500 server error message. The jrun logs however do not show any 
problems. We used a standalone-server configuration with CFMX 6.1 and switched 
to multiserver with two instances. Immediately after starting Apache, I always 
get a few pages delivered, but after roundabout 40-60 seconds, the apache error 
logs spawn lots and lots of the following messages:

[Wed Oct 22 18:53:55 2008] [notice] jrApache[22743: 45316]  127.0.0.1:51000 
connect failed[122]: 110 110 Connection timed out
[Wed Oct 22 18:53:55 2008] [notice] jrApache[22743: 45316]  Couldn't initialize 
from remote server, JRun server(s) probably down.

Testing was done by simply changing the Apache port from 80/443 to something 
that's not accessible from the internet; nothing else has been touched. The 
machine is the very same that used to run CFMX 6.1 without any such trouble 
before, though we used the standalone server configuration.

OS is Debian Etch, with libc6 2.7-14 from Debian Lenny (along with the 
dependencies). I tried the JRE that came with CF8, as well as jdk1.6.0_10 and 
jdk1.5.0_16, neither resolved the issue at hand. Kernel is 2.6.18-6-amd64 SMP, 
the machine has currently got 4GB RAM and two AMD Opteron 275 totalling four 
cores.

This is my current jvm.config:

java.home=/opt/jrun4/jdk1.5.0_16
java.args=-server -Xmx1024m -Dsun.io.useCanonCaches=false -XX:MaxPermSize=192m 
-XX:+UseParallelGC -Xbatch -Djava.awt.headless=true 
-Dcoldfusion.rootDir={application.home}/ 
-Djava.security.policy={application.home}/servers/cfusion/cfusion-ear/cfusion-war/WEB-INF/cfusion/lib/coldfusion.policy
 
-Djava.security.auth.policy={application.home}/servers/cfusion/cfusion-ear/cfusion-war/WEB-INF/cfusion/lib/neo_jaas.policy
 -Duser.timezone=Europe/Berlin
java.ext.dirs={jre.home}/lib/ext
java.library.path={application.home}/servers/cfusion/cfusion-ear/cfusion-war/WEB-INF/cfusion/lib
system.path.first=false
java.user.dir={application.home}/../lib
java.class.path={application.home}/servers/lib,{application.home}/lib,{application.home}/servers/cfusion/cfusion-ear/cfusion-war/WEB-INF/lib

Apache is version 2.2.3-4+etch5; here's the general config for ColdFusion:

# JRun Settings
LoadModule jrun_module /opt/jrun4/lib/wsconfig/1/mod_jrun22.so
IfModule mod_jrun22.c
JRunConfig Verbose false
JRunConfig Apialloc false
JRunConfig Ssl false
JRunConfig Ignoresuffixmap false
JRunConfig ProxyRetryInterval 600
JRunConfig ConnectTimeout 5
AddHandler jrun-handler .jsp .jws .cfm .cfml .cfc .cfr .cfswf
/IfModule

This is my include for the virtual hosts of the first instance WEB-01-CYNAMITE:
IfModule mod_jrun22.c
JRunConfig Verbose false
JRunConfig Serverstore /opt/jrun4/lib/wsconfig/cynamite/jrunserver.store
JRunConfig Bootstrap 127.0.0.1:51002
Alias /CFIDE 
/opt/jrun4/servers/WEB-01-CYNAMITE/cfusion.ear/cfusion.war/CFIDE
Directory 
/opt/jrun4/servers/WEB-01-CYNAMITE/cfusion.ear/cfusion.war/CFIDE
AllowOverride All
Order allow,deny
Allow from all
/Directory

This is my include for the virtual host of the second instance named WEB-01-CIA:

IfModule mod_jrun22.c
JRunConfig Verbose false
JRunConfig Serverstore /opt/jrun4/lib/wsconfig/cia/jrunserver.store
JRunConfig Bootstrap 127.0.0.1:51000
Alias /CFIDE /opt/jrun4/servers/WEB-01-CIA/cfusion.ear/cfusion.war/CFIDE
Directory /opt/jrun4/servers/WEB-01-CIA/cfusion.ear/cfusion.war/CFIDE
AllowOverride All
Order allow,deny
Allow from all
/Directory
/IfModule

The non-instance server has got the following include:
IfModule mod_jrun22.c
JRunConfig Serverstore /opt/jrun4/lib/wsconfig/1/jrunserver.store
JRunConfig Bootstrap 127.0.0.1:51020
/IfModule

I made sure that the jrunserver.store-files are present and accessible; the 
ports are correct too (otherwise the whole lot wouldn't be working in the test 
scenario). The Proxy-Services are started alright according to the CF-logs.

I edited the ./servers/[instancename]/SERVER-INF/jrun.xml files; this is the 
section concerning the ProxyService:

service class=jrun.servlet.jrpp.JRunProxyService name=ProxyService
attribute name=activeHandlerThreads80/attribute
attribute name=backlog500/attribute
attribute name=deactivatedfalse/attribute
attribute 

RE: Negative Page Load Times?

2007-05-16 Thread Justin Hansen
Jochem,

WOW! Thanks for shedding light on the situation. There is a lot of
activity in the Event Logs for w32time. We are going to try the JVM
workaround from the tech note and figure out why w32time is throwing
warnings all the time.

Thanks again!

Justin

-Original Message-
From: Jochem van Dieten [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, May 15, 2007 5:49 PM
To: CF-Talk
Subject: Re: Negative Page Load Times?

Justin Hansen wrote:
 Today I have observed some very odd behavior (via FusionReactor and
MMC
 
 What's happening is CFMX will hang (not respond) for 30+ seconds, the
#
 of running and queued requests will not change. In FusionReactor, I
can
 see a request with a negative number page load time! Once the negative
 request is complete (counts up to zero or beyond), the running and
 queued request max out, then CFMX fulfills the requests and the server
 gets caught backup with out issue.
 
 While it's nice that it caches up and all but why is it hanging up?
 Has anyone seen or heard of this? Anyone? Bueller? Bueller?

Check your Event Log for indications that the NTP client (w32time) has 
adjusted the time of your machine backwards. Whenever that happens, 
CreateUUID() will hang until you are back in the future (file a bug for 
that, if more people report it fixing it might eventually become a 
priority).

Time running to fast on your server may be caused by the CreateUUID() 
function in which case Adobe has a technote about that. If it isn't you 
are out of luck.

Jochem



~|
ColdFusion MX7 and Flex 2 
Build sales  marketing dashboard RIA’s for your business. Upgrade now
http://www.adobe.com/products/coldfusion/flex2?sdid=RVJT

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


Negative Page Load Times?

2007-05-15 Thread Justin Hansen
Today I have observed some very odd behavior (via FusionReactor and MMC
PerfMon).

What's happening is CFMX will hang (not respond) for 30+ seconds, the #
of running and queued requests will not change. In FusionReactor, I can
see a request with a negative number page load time! Once the negative
request is complete (counts up to zero or beyond), the running and
queued request max out, then CFMX fulfills the requests and the server
gets caught backup with out issue.

While it's nice that it caches up and all but why is it hanging up?
Has anyone seen or heard of this? Anyone? Bueller? Bueller?

We are running:
CFMX Standard 7,0,2,142559  
Windows 2003 (5.2)
Java 1.4.2_11


Justin

~|
Create Web Applications With ColdFusion MX7  Flex 2. 
Build powerful, scalable RIAs. Free Trial
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJS 

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


RE: Image processing - correction

2006-06-29 Thread Justin Hansen
 if you give it the wrong combo of attributes you can take down cf
Correction the issue was not yours. I forgot what really happend.
In a cfc if you try to 'var' the imagecr struct with a structNew(), it will 
crash cf. 
The developer, using imageCR for the first time, var'ed it and thought it was 
the attribute combos. 

Don't this the wrong way. ImageCR is a great product and I rely on it. 
I will email you samples of my issues late next week. (I'm at cfunited this 
week).
 
Thanks for you support.

-Original Message- 
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] 
Sent: Mon 6/26/2006 7:31 PM 
To: CF-Talk 
Cc: 
Subject: Re: Image processing



I would just like to say we officially disagree with this assessment.

We process over 50 thousand images daily with ImageCR and stand
behind our products 100%, as we have for years. We will address
any possible issues by mail: support-imagecr at efflare.com.

We are considering a Java wrapper, but it should be remembered
Java itself wraps non-Java libraries for similar functionality.

--
 Magnus

 Luis,

  why you will going to change to the Alagad Image Component

 I'd like to switch to Alagad mostly due it's CFC'ness and the fact 
that
 it's all native java within cf. Also, the 500 image limitation we ran
 into w/ imagecr3. Other than that, I have no real reasons.

 I plan to do the prudent testing and research against both options the
 next time this topic comes up. Right now, I just don't have the time.

 ImageCR3 is very good. Pros: fast, flexible, reliable. Cons: 500 batch
 limit, if you give it the wrong combo of attributes you can take down 
cf
 :(
 but that's stuff you work out in the development phases of your
 projects.

 If you are still trying to decide, download the eval editions of both
 and run some tests on the exact functions you need to perform. I'd be
 interested in the results.

 Justin Hansen
 Project Manager
 Uhlig LLC

 -Original Message-
 From: Luis Rueda [mailto:[EMAIL PROTECTED]
 Sent: Sunday, June 25, 2006 3:56 PM
 To: CF-Talk
 Subject: Re: Image processing

 Hello Justin, i am interested in your experience, why you will going 
to
 change to the Alagad Image Component, at the time we will have the
 necessity to do some image manipulation and want to start with a good
 solution principally in terms of CPU usage and image manipulation 
speed,
 thanks for your comments.

 Luis Rueda

 Bizglo.com

 [EMAIL PROTECTED]









~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:245096
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: Image processing

2006-06-22 Thread Justin Hansen
I have been processing images w/ CFXM for a long time. I've used every
tag out there. We currently use cfx_imagecr3 http://www.efflare.com/. It
works great unless you are batching over 500 images, then it tanks. I
tested them all about 1.5-2 years ago and found imagecr3 to be faster
than the early JAI cfc's that came out. 

The next time I have to do new or upgrade my existing image processing
code I plan to try out the Alagad Image Component. It's a full featured
cfc that uses the JAI. http://www.alagad.com/ 

Hope this helps...

Justin Hansen
Project Manager
Uhlig LLC

-Original Message-
From: Jim Wright [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, June 21, 2006 4:31 PM
To: CF-Talk
Subject: Re: Image processing

 something that takes almost every known image format, converts it to
 web-friendly jpegs

If that part is really important, you might want to take a look at
ImageMagick.  I don't know of a current custom tag or CFC that wraps
it (there have been some in the past, but I'm not sure of their
current state), but it is pretty easy to cfexecute.  It supports
around a hundred different formats (including PSD).

-- 
Jim Wright
Wright Business Solutions
[EMAIL PROTECTED]
919-417-2257



~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:244525
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


CFMX 7 - Web Service Issues

2006-03-28 Thread Justin Hansen
We are having some evil issues with cfmx web services (cfc) lately. 
(See error detail below.)

So, far we think that it's getting hit too quickly? Our current theory
is CF is checking the sub-code to see if the cfc has changed on every
hit. If you make a call while it's in the middle of that, it chokes.
Also, to make matters worse, if I hit the web service directly via the
URL and hit refresh a few times, it completely hangs the server.

Anyone out there seen similar issues?

cfErrorDetail
Detail: Here is the fault returned when invoking the web service
operation:br preAxisFault faultCode:
{http://xml.apache.org/axis/}HTTP faultSubcode: faultString:
(500)Internal Server Error faultActor: faultNode: faultDetail: {}:return
code: 500 {http://xml.apache.org/axis/}HttpErrorCode:500 /pre

Message: Could not perform web service invocation requestJobByGUID.  

StackTrace: coldfusion.xml.rpc.ServiceProxy$ServiceInvocationException:
Could not perform web service invocation requestJobByGUID. at
coldfusion.xml.rpc.ServiceProxy.invokeImpl(ServiceProxy.java:230) at
coldfusion.xml.rpc.ServiceProxy.invoke(ServiceProxy.java:153) at
coldfusion.runtime.CfJspPage._invoke(CfJspPage.java:1634) at
cfJobRequest2ecfc848481392$funcCOMMIT._ ... exedra ...
/cfErrorDetail

Justin Hansen


~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:236315
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


OT: 2 Dreamweaver Instances ? - Trying to switch

2005-12-22 Thread Justin Hansen
I'm trying to switch to Dreamweaver 8, from HS 5.5, and I've got 2
monitors. I had Homesite opening multiple instances so I can have one on
each screen. How do I do this same thing with Dreamweaver 8?

Before you ask, yes, I have been playing with cfEclipse too.

Justin 


~|
Find out how CFTicket can increase your company's customer support 
efficiency by 100%
http://www.houseoffusion.com/banners/view.cfm?bannerid=49

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:227523
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Invalid method signature: e/Variable;)Ljava/lang/Object;

2005-10-05 Thread Justin Hansen
Every once and a while my production servers will say:
Invalid method signature: e/Variable;)Ljava/lang/Object;

On code that has worked and not been modified for over a year. It seems
to happen at random. Never the same page and never at the same times. 

At this point I'm assuming it has something to do with java memory?
Anyone ever seen this? Anyone? Buller? 

Justin


~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:220130
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: Jrun Update and cflocation

2005-09-19 Thread Justin Hansen
So, are you saying JRun4 Updater 6, fixed your 'cflocation/302 blank
response' issues? 

We have been seeing it too. It seems to pop up randomly on different
sites. 
We're running CFMX 6.1 and are moving to 7 in production next month.

Justin

-Original Message-
From: Adrocknaphobia [mailto:[EMAIL PROTECTED] 
Sent: Friday, September 16, 2005 11:05 AM
To: CF-Talk
Subject: Re: Jrun Update and cflocation

I've applied the JRun4 Updater 6 patch and sucessfully tested the
issue on CFMX 6.1 and 7.

-Adam

On 9/16/05, Hugo Ahlenius [EMAIL PROTECTED] wrote:
 Markus,
 
 Inspect the http header (302), to see what it says, using your
favorite
 tool for that (firefox plugin, wget, lynx, curl or whatever).
Personally
 I use:
 curl -i http://url | less
 for that.
 
 A quick googling even found a web-service for that (by DJ Delorie, of
 dos fame):
 http://www.delorie.com/web/headers.html
 
 /Hugo
 
 
 --
 Hugo Ahlenius
 
 -
 Hugo Ahlenius  E-Mail: [EMAIL PROTECTED]
 Project OfficerPhone:  +46 8 412 1427
 UNEP GRID-Arendal  Fax:+46 8 723 0348
 Stockholm Office   Mobile: +46 733 467111
   WWW:   http://www.grida.no
   Skype:callto:fraxxinus
  PLEASE NOTE: NEW PHONE AND FAX NUMBERS FROM SEPT 1ST 2005
 -
 
 
 
 
 
 
 
 
 
 | -Original Message-
 | From: Markus Lindemann [mailto:[EMAIL PROTECTED]
 | Sent: Friday, September 16, 2005 13:07
 | To: CF-Talk
 | Subject: Re: Jrun Update and cflocation
 |
 | Just a follow up post - I've deployed the application on an
 | MX7 cluster on the same JRun installation and it's giving the same
 | results.
 |
 |
 
 



~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:218603
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


GUID returned as binary in a query?

2005-06-06 Thread Justin Hansen
Short version: 
On a hosted server, when I run a query the GUIDs are returned in as binary when 
it should be a string.
This does not happen on my local test box or at the office.

How is this possible? Where do I go from here?

Example: This should be a GUID!
-61879846-93-127-1078-106-23-5869-88-92-12724


Long version:
I have written an app (free, project for a friend) with CFMX 6 / MSSQL 2000, 
uploaded it to my friends hosting company. They have CFMX and SQL but they 
don't provide any type of database upload. All I get to work with is a web 
interface, some asp MSSQL Web manager. I’m not about to sit here and recreate 
the entire db. So, I created a SQL Script and placed it in a cfquery block to 
create the table structure and that worked. Next I wrote a quick page to dump 
all the local data that I have to the screen in the form of an insert 
statement, one for every record in my local db. Copied that output and put it 
in a cfquery block, upload, run. It seemed to work just fine. I login to the 
hosting account, view the data via the MSSQL SQL Web management screen, the 
tables are there, the data is there, sweet, should be good to go.

This is where it gets wonkie. I launch the site on the host. Error. It appears 
to be a GUID issue. That’s weird, the data was there. So, I do a cfdump on 
the query. Normally every record in the query is represented as a string, 
right? Yeah, normally. This time the GUID is returned as binary data inside the 
cfquery dump. 

How is this possible? Where do I go from here?

Example: This should be a GUID!
-61879846-93-127-1078-106-23-5869-88-92-12724 



~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:208663
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: Homesite 5.5 vs. Dual Monitors

2005-03-02 Thread Justin Hansen
Thank you Bert! This is much nicer. 

I had switch to using Windows Exploder to open all my files but I guess
I can live w/ the Homesite file browser, expecailly if I can see to
pages of code at once.

Thanks again 

Justin Hansen
Project Manager
Uhlig Communications

-Original Message-
From: Bert Dawson [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, March 02, 2005 8:10 AM
To: CF-Talk
Subject: Re: Homesite 5.5 vs. Dual Monitors

To get more than one HS+ running, open regedit, go to
HKCU\Software\Macromedia\Homesite+ and add a new string value:
AllowMultipleInstances = -1

AFAIR the only annoying thing is that clicking on a .cfm template
means a new instance of studio opens, and i haven't used since about 4
years ago, but it seems to still work with HS+

Cheers
Bert


On Tue, 1 Mar 2005 15:31:13 -0600, Justin Hansen [EMAIL PROTECTED]
wrote:
 I have dual 19's and I REALLY want to be able to view to different
files
 at the same time, one on each monitor, in Homesite. Homesite will not
 let me have more than one window open at a time.
 
 Does DW support multi windows? I know eclipse does, but I can't get
 passed the over complicated snipit keys. I may have to try DW again.
 
 Argh... Anyone?
 
 Justin Hansen
 Project Manager
 Uhlig Communications
 
 



~|
Find out how CFTicket can increase your company's customer support 
efficiency by 100%
http://www.houseoffusion.com/banners/view.cfm?bannerid=49

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:197177
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Homesite 5.5 vs. Dual Monitors

2005-03-01 Thread Justin Hansen
I have dual 19's and I REALLY want to be able to view to different files
at the same time, one on each monitor, in Homesite. Homesite will not
let me have more than one window open at a time.

Does DW support multi windows? I know eclipse does, but I can't get
passed the over complicated snipit keys. I may have to try DW again.

Argh... Anyone?

Justin Hansen
Project Manager
Uhlig Communications


~|
Find out how CFTicket can increase your company's customer support 
efficiency by 100%
http://www.houseoffusion.com/banners/view.cfm?bannerid=49

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:197014
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


cfc rrs reader

2005-01-21 Thread Justin Hansen
Has anyone seen or created a cfc based rss news reader?
I'd rather not reinvent the wheel if I don't have to.

Thanks,

Justin


~|
Logware: a new and convenient web-based time tracking application. Start 
tracking and documenting hours spent on a project or with a client with Logware 
today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:191364
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: cfc rrs reader

2005-01-21 Thread Justin Hansen
Thanks guys,

I just downloaded Rays but thanks for the offer Mike.

I also just found this on MM Exchange:

 GetNewsFeed is a CFC that downloads RSS or RDF news feeds using a
CFHTTP connection and will parse the XML into a easily useable Query. An
example using Macromedia's newsfeed is included in the download.

http://www.macromedia.com/cfusion/exchange/index.cfm#loc=en_usview=sn10
6viewName=Exchange%20Search%20Detailsauthorid=35248577page=0scrollPo
s=0subcatid=0snid=sn106itemnumber=0extid=1003852catid=0

I'm trying to figure out if I can create a geo located, by zip, local
events calendar via rss. 

Now that I have a few reader options, now I just need to find the exact
feeds. 

Justin

-Original Message-
From: Michael Dinowitz [mailto:[EMAIL PROTECTED] 
Sent: Friday, January 21, 2005 10:10 AM
To: CF-Talk
Subject: Re: cfc rrs reader

I've got a script on HoF that reads in fullasagoog and stores it into a
DB. It's written for CF 5 but I can pull it up and rewrite it if you
want.

Has anyone seen or created a cfc based rss news reader?
I'd rather not reinvent the wheel if I don't have to.

Thanks,

Justin



~|
Logware: a new and convenient web-based time tracking application. Start 
tracking and documenting hours spent on a project or with a client with Logware 
today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:191371
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


fckeditor - cf image browser/upload connector

2004-12-18 Thread Justin Hansen
I have been playing around with the fckeditor for a little CMS site control 
yadda

Has anyone built a cf version of the image browser/upload connector? It comes 
with the following:

connectors/asp/connector.asp
connectors/aspx/connector.aspx
connectors/php/connector.php

Don't want to re-write the wheel if I don't have too. If I do, I roll it over 
to the fck people.

FCKeditor is cool! Check it out at http://www.fckeditor.net

Justin



~|
Special thanks to the CF Community Suite Silver Sponsor - RUWebby
http://www.ruwebby.com

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:188140
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: fckeditor - cf image browser/upload connector - answer

2004-12-18 Thread Justin Hansen
To answer my own question...
http://cfopen.org/projects/cffm/
This is perfect! Excellent job! Props out to Rick Root.
Now if there were only a open source cf spellchecker for fckeditor...
 

-Original Message- 
From: Justin Hansen 
Sent: Sat 12/18/2004 9:22 AM 
To: CF-Talk 
Cc: 
Subject: fckeditor - cf image browser/upload connector



I have been playing around with the fckeditor for a little CMS site 
control yadda

Has anyone built a cf version of the image browser/upload connector? It 
comes with the following:

connectors/asp/connector.asp
connectors/aspx/connector.aspx
connectors/php/connector.php

Don't want to re-write the wheel if I don't have too. If I do, I roll 
it over to the fck people.

FCKeditor is cool! Check it out at http://www.fckeditor.net

Justin





~|
Special thanks to the CF Community Suite Gold Sponsor - CFHosting.net
http://www.cfhosting.net

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:188152
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


CFUN-GMAIL

2004-08-23 Thread Justin Hansen
What ever happened to the GMAIL accounts for all the folks that attended
CFUN?

Justin Hansen
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]
 [Donations and Support]




RE: Latest version of HomeSite+?

2004-08-23 Thread Justin Hansen
I believe the current version is 5.5, it comes with Dreamweaver and you
can supposedly buy it as a individual product on macromedia.com

Justin Hansen

Project Manager

Uhlig LLC

_

From: Jim McAtee [mailto:[EMAIL PROTECTED] 
Sent: Monday, August 23, 2004 2:01 PM
To: CF-Talk
Subject: Latest version of HomeSite+?

What's the latest version that Macromedia sells/gives 
away/includes/whatever these days?

_
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]
 [Donations and Support]




CFMX 6.1 randomly not finding cfc/cfm files that exist

2004-06-03 Thread Justin Hansen
We have been having a very random problem resently. The production
server says it can't find a file. The files exist, have not been updated
for a long time, and are hit every hundreds, if not thousands of times a
day. Also, it's never the same file.

The first few instances have been files included in the Application.cfm.
The last instance occurred while trying to createObject on a cfc.

To fix it all I have to do is open the file and save it. Then CF will
think something chagned and rebuild the class file.

This is totally unacceptable in a production envroment. Is anyone else
having a similar problem? Solution? Anything

Justin Hansen

Project Manager

Uhlig Communications

[EMAIL PROTECTED]

PH.913.754.4273

FX.913.754.4219
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




Postal Address Validation CFMX

2004-03-15 Thread Justin Hansen
Does anyone do any Postal Address validation with CF?

What are you using? Webservices? XML? USPS?

I need to jump into this ASAP... 

Justin
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




RE: Filemaker and Coldfusion.. Urgent...

2004-02-24 Thread Justin Hansen
I just spend the last 2 years creating an intranet that replaces a
FileMaker system. We finally cut the cord a few months ago. I will let
my FM proficient co-worker know about your problem. He provided data as
tab delimited text files for a one way import. I think he still has one
legacy CF/FM app running. I think it exports data at night as text files
that are assimilated by CF via a scheduled page. 

Try talking them back the other way. 

Why FileMaker? The can be on the MAC w/o FileMaker. 

Look into other MAC database apps.

Good luck!

Justin Hansen

Project Manager

Uhlig Communications

_

From: Sangeeta Karmokar [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, February 24, 2004 5:11 PM
To: CF-Talk
Subject: Filemaker and Coldfusion..Urgent...

Hello,

I was using Access and coldfusion earlier but now my company decided to
use Mac. So we are using Filemaker and coldfusion on Mac. To connect
Filemaker to Coldfusion I cannot findfmpjdbc12.jar driver in Filemaker
anywhere.

I think the SQL queries for filemaker will also differ from access. In
Access database we write :
cfquery
insert into table name bla...bla..
/cfquery
But what how to write it in Dreamweaver when using FIlemaker as a
dataabse??

Please I need urgent help.

Sangeeta

_
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




RE: Question about CFQUERYPARAM and GUIDs

2004-02-23 Thread Justin Hansen
I use CF_SQL_VARCHAR for GUIDs. It works just fine.

Justin Hansen

Project Manager

Uhlig Communications

_

From: Lola Lee [mailto:[EMAIL PROTECTED] 
Sent: Monday, February 23, 2004 11:06 AM
To: CF-Talk
Subject: Question about CFQUERYPARAM and GUIDs

At work we use SQL Server, and for the project we're using GUIDs for the
id columns in several tables.Is there a CFSQLTYPE available for use
with CFQUERYPARAM?Looking at the online documentation does not seem to
indicate as cuh.What about CF_SQL_IDSTAMP? 

-- 

Lola - mailto:[EMAIL PROTECTED]
http://www.lolajl.net | Blog at http://www.lolajl.net/blog/
Check out this blog:http://www.denbeste.nu
I'm in Bowie, MD, USA, halfway between DC and Annapolis.

_
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




Cold Fusion Web Developer/Programmer Position - Kansas City Area

2004-01-07 Thread Justin Hansen
Cold Fusion Web Developer/Programmer Position - Kansas City Area

Uhlig Communications, Inc., is an advanced-technology publishing company
specializing in variable-data printing.

We are offering an outstanding career opportunity for a Web
Developer/Programmer with exceptional Programming and Application
Development experience. As a Developer, you will take part in the
design, programming, testing and implementation of highly innovative,
new publishing concepts. 

Qualified individuals will have 3+ years experience developing
ColdFusionMX applications. Necessary skills include: CFCs, SQL 2k, XML 
OOP. Additional knowledge of FlashMX, FireworksMX, design skills a plus.


Excellent organizational, communication, and interpersonal skills. Must
be team player, able to work independently (manage own work effectively,
show initiative, able to focus and prioritize) but seek assistance
readily when needed. A strong record of delivering projects on schedule
is key.

We offer competitive compensation and benefits including 401(k) with
matching and a culture that fosters business and professional growth. We
work in a modern, high-technology office environment, and offer generous
opportunities for continuing work-related education and career
advancement. EOE

Qualified individuals please email resume to [EMAIL PROTECTED]
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




RE: Cold Fusion Web Developer/Programmer Position - Kansas City Area

2004-01-07 Thread Justin Hansen
No, but you get the idea. I'm looking for CFC experienced developers.

LOL: I got the same response form the local user group. Give a guy a
break.

Justin Hansen

Project Manager

Uhlig Communications

_

From: Jochem van Dieten [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, January 07, 2004 9:28 AM
To: CF-Talk
Subject: Re: Cold Fusion Web Developer/Programmer Position - Kansas City
Area

Justin Hansen said:
 Qualified individuals will have 3+ years experience developing
 ColdFusionMX applications.

Has it even been that long?

Jochem

_
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




RE: cfmail pre-formatting

2003-12-05 Thread Justin Hansen
What I like to do is use chr(10) and format the entire email as in one string. Then just output the string inside the cfmail tags. This way you get total control of the output and your cf tags/logic do not add to the white space in the text you are trying to email.

Justin Hansen
Project Manager
Uhlig Communications

[EMAIL PROTECTED]

-Original Message-
From: MILAN MUSHRAN [mailto:[EMAIL PROTECTED]
Sent: Friday, December 05, 2003 8:38 AM
To: CF-Talk
Subject: Re:cfmail pre-formatting

Use ASCII code #Chr(13)#  #Chr(10)# (which is equivalent to BR).Use 
#Chr(13)#  #Chr(10)# for a new line in text email and use BR (as you 
already have) for HTML emails.

From: cf coder [EMAIL PROTECTED]
Reply-To: [EMAIL PROTECTED]
To: CF-Talk [EMAIL PROTECTED]
Subject: Re:cfmail pre-formatting
Date: Fri, 05 Dec 2003 09:26:33 -0400

so what are you saying?

This code is fine for HTML supported email servers, but not when it is text
 supported only.
 
 
 From: cf coder [EMAIL PROTECTED]
 Reply-To: [EMAIL PROTECTED]
 To: CF-Talk [EMAIL PROTECTED]
 Subject: Re:cfmail pre-formatting
 Date: Fri, 05 Dec 2003 09:05:53 -0400
 
 thank you all for your suggestions. This code does the job.
 
 cfmail to=[EMAIL PROTECTED]
 from=#frommail#
 subject=Order
 server=someserver
 port=25
 type=HTML
 
 Any Comments=#AnyComments# br
 cfif shoppingBasket neq 0Shopping Basket=#shoppingBasket# br/cfif
 cfif username neq 0User Name=#username#br/cfif
 
 /cfmail
 

 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




RE: Making JavaScript Wait.

2003-12-05 Thread Justin Hansen
to js wait setTimeout(functionCall(),1000);

-Original Message-
From: Ian Skinner [mailto:[EMAIL PROTECTED]
Sent: Friday, December 05, 2003 8:47 AM
To: CF-Talk
Subject: OT: Making _javascript_ Wait.

I have a page that has upwards of 200 links on it that each will open a
detail screen in a new window with a _javascript_ function.This is a
calendar display showing all the events in a month with the ability to get
further details in a popup window by clicking on the event's name.

The problem, is that apparently the _javascript_ throws an object expected
error, if a link is clicked before the entire calendar page is rendered.It
is large enough, the this can take a full second or three to complete.

Is it possible to prevent this error?A better way to implement the code so
that it doesn't matter if the main window if fully rendered? Something to
cause the function to gracefully fail (no error message displayed) or not
run or wait if it's not ready to run correctly?Something else?

Thanks for any help.

function Popup(file,width,height)
{

var topX = (screen.width - width)/2;
var topY = (screen.height - height)/2;

popup = window.open(file, Popup, fullscreen=no, toolbar=no,
status=no, menubar=no, scrollbars=yes, resizable=yes, directories=no,
location=no, width=+width+, height=+height+, left=+topX+, top=+topY)
popup.focus();

return false;
}

--
Ian Skinner
Web Programmer
BloodSource
www.BloodSource.org
Sacramento, CA

Confidentiality Notice:This message including any
attachments is for the sole use of the intended
recipient(s) and may contain confidential and privileged
information. Any unauthorized review, use, disclosure or
distribution is prohibited. If you are not the
intended recipient, please contact the sender and
delete any copies of this message. 
_
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




RE: SOT: SSL Load Balanced CF

2003-09-17 Thread Justin Hansen
Thanks Howard! You have helped me out a bunch. Now, I feel comfortable enough to buy 
the keys ($1600), and put these theories to the test. I have been having all kinds of 
trouble trying to get an answer from VeriSign.

-Original Message-
From: Howard Fore [mailto:[EMAIL PROTECTED]
Sent: Tuesday, September 16, 2003 5:52 PM
To: CF-Talk
Subject: Re: SOT: SSL  Load Balanced CF


On Tuesday, Sep 16, 2003, at 15:29 US/Eastern, Justin Hansen wrote:
 I'm starting a new project that will require SSL and I have a few 
 questions...
 If a user is on Server(A) and has and SSL session going what happens 
 if Server(A) goes down?
 When Server(B) picks up the user will the SSL be broken?
I haven't tried this (but will Real Soon Now), but given that HTTP and 
HTTPS are not persistent connection protocols, I think the SSL 
browser-server handshake has to happen each time a HTTPS connection is 
requested. So the important part would be that each server that could 
answer the request has a valid certificate.

 Both servers have to have different keys right?
Yes. You have different certs for the same domain on different boxes.

 Wouldn't that break the users session? What would happen user?
I don't think (though I could be wrong) that the browser compares the 
SSL certificate from one connection to the next. The only things the 
browser cares about is that the certificate is from an accepted CA and 
that the domain name on the cert matches the domain in the request.

Sessions as far as CF cares about don't have anything to do with SSL.

--
Howard Fore, [EMAIL PROTECTED]
I hope you believe you understand what you think I said, but I'm not 
sure you understand that what you've heard is not what I meant. 
President Richard Nixon


~|
Archives: http://www.houseoffusion.com/lists.cfm?link=t:4
Subscription: http://www.houseoffusion.com/lists.cfm?link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

Get the mailserver that powers this list at 
http://www.coolfusion.com


SSL / Flash Remoting / CFMX

2003-09-17 Thread Justin Hansen
Any issues here? Has anyone done this yet?
~|
Message: http://www.houseoffusion.com/lists.cfm?link=i:4:137345
Archives: http://www.houseoffusion.com/lists.cfm?link=t:4
Subscription: http://www.houseoffusion.com/lists.cfm?link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.
http://www.cfhosting.com


SOT: SSL Load Balanced CF

2003-09-16 Thread Justin Hansen
I'm starting a new project that will require SSL and I have a few questions...
If a user is on Server(A) and has and SSL session going what happens if Server(A) goes 
down?
When Server(B) picks up the user will the SSL be broken?
Both servers have to have different keys right? Wouldn't that break the users session?
What would happen user?

Thanks, Justin
~|
Archives: http://www.houseoffusion.com/lists.cfm?link=t:4
Subscription: http://www.houseoffusion.com/lists.cfm?link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

Get the mailserver that powers this list at 
http://www.coolfusion.com


RE: SSL Load Balanced CF

2003-09-16 Thread Justin Hansen
That's interesting We are currently using a WebMux. I'm told (by our admin) that 
the WebMux doesn't handle SSL. What type fo balancers are you using?

-Original Message-
From: Howie Hamlin [mailto:[EMAIL PROTECTED]
Sent: Tuesday, September 16, 2003 4:20 PM
To: CF-Talk
Subject: Re: SSL  Load Balanced CF


We're going to be setting up a redundant load balancers that do the SSL.  The client 
communicatess to the load balancer in encrypted mode and the communucation from the 
load balancer to the web servers is unencrypted.

Works great and you could probably pick up a box like this on ebay.

HTH,

--
Howie Hamlin - inFusion Project Manager
On-Line Data Solutions, Inc. - www.CoolFusion.com
inFusion Mail Server (iMS) - The Award-winning, Intelligent Mail Server
((())) PrismAV is Coming ((()))
 Please vote for iMS here: 
 http://www.sys-con.com/coldfusion/readerschoice2003/index.cfm 
 Find out how iMS Stacks up to the competition: 
 http://www.coolfusion.com/imssecomparison.cfm


 
 -Original Message-
 From: Justin Hansen [mailto:[EMAIL PROTECTED] 
 Sent: September 16, 2003 3:30 PM
 To: CF-Talk
 Subject: SOT: SSL  Load Balanced CF
 
 I'm starting a new project that will require SSL and I have a few
 questions...
 If a user is on Server(A) and has and SSL session going what happens if
 Server(A) goes down?
 When Server(B) picks up the user will the SSL be broken?
 Both servers have to have different keys right? Wouldn't that break the
 users session?
 What would happen user?
 
 Thanks, Justin
 
 

~|
Archives: http://www.houseoffusion.com/lists.cfm?link=t:4
Subscription: http://www.houseoffusion.com/lists.cfm?link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

Get the mailserver that powers this list at 
http://www.coolfusion.com


RE: 6.1 problem

2003-08-20 Thread Justin Hansen
From the Release notes.

52851 Under some circumstances, if Microsoft SQL Server closes a connection 
unexpectedly while processing a long-running query, the DataDirect 3.2 JDBC database 
driver provided in ColdFusion MX 6.1 may respond inappropriately, continuing to wait 
for a DB server response while unnecessarily consuming CPU resources. When this 
occurs, a Java stack trace shows a thread stuck at a function called empty():

jrpp-10 prio=5 tid=0x6403b958 nid=0x554 runnable 
[6938e000..6938fdb8] at macromedia.jdbc.sqlserver.
SQLServerByteOrderedDataReader.empty (Unknown Source). 

This issue does not exist in ColdFusion MX versions through Updater 3.

An updated version of the 3.2 driver for ColdFusion MX 6.1 that responds correctly to 
this condition is available at the Macromedia website.
 
http://www.macromedia.com/support/coldfusion/ts/documents/cfmx61_sqlserver_cpu.htm

My question is, can 6.1 still be downloaded today with the bad drivers
enclosed?

i would say yes

Justin

-Original Message-
From: Alan Ford [mailto:[EMAIL PROTECTED]
Sent: Wednesday, August 20, 2003 7:00 AM
To: CF-Talk
Subject: 6.1 problem


We downloaded the 6.1 upgrade last week, applied it, tested it on a dev
server then went live with it. We hit the 100% cpu problem with the SQL
driver and had to upgrade the drivers (after a day of problems while I
isolated the cause).

My question is, can 6.1 still be downloaded today with the bad drivers
enclosed?

Regards,

Alan Ford



~|
Archives: http://www.houseoffusion.com/lists.cfm?link=t:4
Subscription: http://www.houseoffusion.com/lists.cfm?link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. 
http://www.fusionauthority.com/ads.cfm


RE: Doing Forms in Series - Custom Tag

2003-07-29 Thread Justin Hansen
I have a custom tag I built just to avoid having to deal with this issue altogether. 
It takes every form var, puts it into the session.YOUNAMEIT scope then converts 
everything in the session.YOUNAMEIT back into the form scope. That way you can go from 
Form A to Form B to Form C and back to Form A then to Form C and every form var you 
collected along the way is still available in the form scope. It works great and saves 
a lot of time when coding multi form wizard type data collection. Here is the code 
enjoy.

 Justin Hansen
~~
 Uhlig Communications
 Systems Engineer
~~
 [EMAIL PROTECTED]
 913-754-4273 Office
 913-568-7961 Mobile
~~

!--- START TAG CODE --- ---
!-- cf_form2struct --
cfsetting enablecfoutputonly=Yes
!--- 
form2struct.cfm (custom tag) by Justin Hansen - [EMAIL PROTECTED]
required attribute = StructName

I convert any passed from vars into a session struct named 
'session.#attribute.StructName#'
and then convert them all back to form vars for use in the calling page.

cf_form2struct StructName=hello
 ---

!--- make sure it exists ---
cflock type=READONLY scope=SESSION timeout=10
cfset locStructDefined = isDefined(session.sg.tag.#attributes.StructName#)
/cflock

!--- create sturct if it does not exist ---
cfif locStructDefined eq 0
cflock type=EXCLUSIVE scope=SESSION timeout=10
cfscript
session.sg.tag.#attributes.StructName# = StructNew();
session.sg.tag.#attributes.StructName#.form2sturctStartStamp 
= Now();
/cfscript
/cflock
/cfif

!--- make sute we have form vars first else skip it ---
cfif isDefined(form)
!--- convert form.vars to session.StructName.vars ---
cflock type=EXCLUSIVE scope=SESSION timeout=10
!--- New Stuff -- ---
cfloop collection=#form# item=i
cfif i neq FIELDNAMES and i neq X and i neq Y
cfset session.sg.tag.#attributes.StructName#.#i# = 
trim(form['#i#'])
/cfif
/cfloop
/cflock

/cfif 

!--- convert session.StructName.vars to form.vars ---
cfscript
locTempStruct = StructNew();
/cfscript

cfloop collection=#session.sg.tag['#attributes.StructName#']# item=i
cfset form.#i# = session.sg.tag['#attributes.StructName#']['#i#']
/cfloop

cfsetting enablecfoutputonly=no
!--- END TAG CODE --- ---




-Original Message-
From: Jim McAtee [mailto:[EMAIL PROTECTED]
Sent: Tuesday, July 29, 2003 12:15 PM
To: CF-Talk
Subject: Re: Doing Forms in Series


 I don't really want to stash the data in a temporary table, since this web
 site
 currently isn't data-driven and has no data source available.  Also, I don't
 want to user session variables.

 When the second form is being built, just create hidden form variables
 holding the values from the first form. When you submit the second form,
 both groups of vars get passed. Essentially you're transferring the first
 batch of data twice, but unless you've got a ton of data, it shouldn't be
 an issue.

No problems there.  I already use hidden form fields within the second form.
The quesion is how to get from the template that displays FormA to the template
doing FormB by doing a POST.  I commonly do this with a CFLOCATION and URL
variables when there's not much data to be passed.  It's not as simple to do a
POST.

Maybe the answer is to use a single template and then CFINCLUDE the individual
forms from that template (or they could be entirely contained in one template
if I want to manage one gigantic source file).

Jim


~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq

Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. 
http://www.fusionauthority.com/ads.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



SOT: Load balanced code replication

2003-07-16 Thread Justin Hansen
We have a CFMX farm now, and the Microsoft replication isn't working out to well right 
now. What type of code replication software/strategies are you using right now?

I think we need something that would watch a folder on a file server and move the code 
up to the cf farm every few minutes. What do/would you use?

justin
cf programmer
not an admin 
:)
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq

Get the mailserver that powers this list at 
http://www.coolfusion.com

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



Merging TIFFs

2003-07-15 Thread Justin Hansen
I need to take a logo with a clipping path and place it on a background image, both 
tiffs, to create a new tiff. I have tried CFX_IMAGE, ImageJ CFC, ImageFlare. 
ImageFlare was working the best, but I can't get transparent backgrounds from the logo.

Any suggestions would be greatly appreciated.

 Justin Hansen
~~
 Uhlig Communications
 Systems Engineer
~~
 [EMAIL PROTECTED]
 913-754-4273 Office
 913-568-7961 Mobile
~~
 
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq

This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.
http://www.cfhosting.com

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



CF MAS90

2003-07-02 Thread Justin Hansen
Has anyone integrated a CF App with MAS90 (accounting software)? I'm about to get 
started on this. Are there any tricks, tags, experience out there that may be helpful? 
Don't want to reinvent the wheel if I don't have to.

Thanks!

 Justin Hansen
~~
 Uhlig Communications
 Systems Engineer
~~
 [EMAIL PROTECTED]
 913-754-4273 Office
 913-568-7961 Mobile
~~
 
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq

Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. 
http://www.fusionauthority.com/ads.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



RE: CFUN 2k3 Rollcall

2003-06-18 Thread Justin Hansen
I will be in the bar.
I'll be the guy in the It must be user error t-shirt.

 Justin Hansen
~~
 Uhlig Communications
 Systems Engineer
~~
 [EMAIL PROTECTED]
 913-754-4273 Office
 913-568-7961 Mobile
~~
 

-Original Message-
From: Ciliotta, Mario [mailto:[EMAIL PROTECTED]
Sent: Wednesday, June 18, 2003 2:07 PM
To: CF-Talk
Subject: RE: CFUN 2k3 Rollcall


I'll be there also..

-Original Message-
From: Steven Erat [mailto:[EMAIL PROTECTED]
Sent: Wednesday, June 18, 2003 2:58 PM
To: CF-Talk
Subject: RE: CFUN 2k3 Rollcall


 So is anyone from the list planning to attend CFUN? (Or will I be the only one in 
 the hotel bar?)

Yep.  Will be there Friday thru Sunday.

-Steven Erat
ColdFusion Support
Macromedia


~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq

Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. 
http://www.fusionauthority.com/ads.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



RE: Index 55, size 33

2003-06-04 Thread Justin Hansen
yup, you will have to delete the class file in your 
CFusionMX\wwwroot\WEB-INF\cfclasses dir to get it to work again.
i usually search for the name and wack it.

justin

-Original Message-
From: Barney Boisvert [mailto:[EMAIL PROTECTED]
Sent: Tuesday, June 03, 2003 3:48 PM
To: CF-Talk
Subject: RE: Index 55, size 33


it's something weird that happens with CFMX when you change the page.
refresh the browser and it goes away.  I've noticed it much less (perhaps
not at all) since updater 3, but I haven't really payed an enormous amount
of attention to it.

---
Barney Boisvert, Senior Development Engineer
AudienceCentral (formerly PIER System, Inc.)
[EMAIL PROTECTED]
voice : 360.756.8080 x12
fax   : 360.647.5351

www.audiencecentral.com

 -Original Message-
 From: Richard Crawford [mailto:[EMAIL PROTECTED]
 Sent: Tuesday, June 03, 2003 1:39 PM
 To: CF-Talk
 Subject: Index 55, size 33


 I received this error when browsing to a .cfm page that had previously
 worked (I had made one slight change to the page).  Now I receive the
 Index 55, Size 33 error when I browse to that page.

 What does this error mean?  How can I address it?

 

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq

This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.
http://www.cfhosting.com

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



RE: Index 55, size 33

2003-06-04 Thread Justin Hansen
yes, and no. ;)

I have noticed if you delete part of a cfc, ie FILENAME$funcFUNCTIONNAME, it will 
break the cfc and will not recompile what's missing. in which case...
if you are having that weird index error with foo.cfc, you need to delete all of foo's 
classes.

so, search for foo in your classes dir, and delete them all, all should be well again.

if you are working with a .cfm one deleting its class should be enough.

have fun! -- justin

-Original Message-
From: Richard Crawford [mailto:[EMAIL PROTECTED]
Sent: Tuesday, June 03, 2003 3:59 PM
To: CF-Talk
Subject: RE: Index 55, size 33


Hm, that makes me wonder if I can just bulk delete a bunch of the classes 
in that directory without destroying anything?

At 03:53 PM 6/3/2003 -0500, you wrote:
yup, you will have to delete the class file in your 
CFusionMX\wwwroot\WEB-INF\cfclasses dir to get it to work again.
i usually search for the name and wack it.

justin


~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq

Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. 
http://www.fusionauthority.com/signup.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



RE: What on earth? I don't even know where to begin Troubleshooting this error...

2003-03-20 Thread Justin Hansen
just delete those class files so it can recompile.
i would delete any class files that have index in the name.

 Justin Hansen
~~
 Uhlig Communications
 Systems Engineer
~~
 [EMAIL PROTECTED]
 913-754-4273 Office
 816-695-4045 Mobile
~~
 

-Original Message-
From: Jeff [mailto:[EMAIL PROTECTED]
Sent: Thursday, March 20, 2003 10:47 AM
To: CF-Talk
Subject: What on earth? I don't even know where to begin Troubleshooting
this error...


---begin paste error---
Errors reported by Java compiler: Found 1 semantic error compiling
C:/Program
Files/CFusionMX/wwwroot/WEB-INF/cfclasses/cfIndex2ecfm159748201.java: 1.
public
final class cfIndex2ecfm159748201 extends coldfusion.runtime.CFPage{
--- *** Error: Cannot write class file
cfIndex2ecfm159748201.class because that name conflicts with the name of
the class file cfindex2ecfm159748201.class in directory cfclasses. This
is illegal because file names are case-insensitive in this system. .
---end paste error---

What on earth? Is there a reference or any clue here as to what might be
causing this error? It's local on my machine, and I've restarted twice.


~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



RE: What on earth? I don't even know where to begin Troubleshooting this error...

2003-03-20 Thread Justin Hansen
I have noticed weird errors like this when moving files. But not every time. Or for 
some odd reason, a error when saving the file? Maybe it thought it was the same file. 
I haven't been able to put my finger on it but, found that deleting the class files 
usually corrects the issue.

-Original Message-
From: Jeff [mailto:[EMAIL PROTECTED]
Sent: Thursday, March 20, 2003 11:27 AM
To: CF-Talk
Subject: Re: What on earth? I don't even know where to begin
Troubleshooting this error...


on 3/20/03 12:15 PM, Justin Hansen at [EMAIL PROTECTED] wrote:

 just delete those class files so it can recompile.
 i would delete any class files that have index in the name.

Could this be occurring because the file that's generating the error was
once another index.cfm file that I simply opened and saved to another
directory with the same name? I opened up index.cfm in the root, and saved
it as index.cfm in the /foo directory to use the same interface elements.


~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. http://www.fusionauthority.com/signup.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



RE: What on earth? I don't even know where to begin Troubleshooting this error...

2003-03-20 Thread Justin Hansen
When faced with the errors you described, I would 1st tweak the copy of index.cfm so 
it has a different modify date, 2nd search for the class files that contain index 
and just delete those. This will forcing any index.cfm's to recompile. 

If you delete all class files, it will have to recompile everything. You only need it 
to recompile the index files so it doesn't think it's the same file.

Justin

-Original Message-
From: Jeff [mailto:[EMAIL PROTECTED]
Sent: Thursday, March 20, 2003 12:06 PM
To: CF-Talk
Subject: Re: What on earth? I don't even know where to begin
Troubleshooting this error...


on 3/20/03 12:43 PM, Justin Hansen at [EMAIL PROTECTED] wrote:

 I have noticed weird errors like this when moving files. But not every time.
 Or for some odd reason, a error when saving the file? Maybe it thought it was
 the same file. I haven't been able to put my finger on it but, found that
 deleting the class files usually corrects the issue.

Can I just delete all the files in that directory? It's a lot, and I imagine
all that will happen is that those class files will just have to be
recompiled, right?


~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. http://www.fusionauthority.com/signup.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



RE: CF and PhotoShop

2003-03-13 Thread Justin Hansen
http://efflare.com/products/

These guys have very nice CFX Image maniplation tags.
I use ImageFlare, it works great!

 Justin Hansen
~~
 Uhlig Communications
 Systems Engineer
~~
 [EMAIL PROTECTED]
 913-754-4273 Office
 816-695-4045 Mobile
~~
 

-Original Message-
From: Owens, Howard [mailto:[EMAIL PROTECTED]
Sent: Wednesday, March 12, 2003 3:35 PM
To: CF-Talk
Subject: CF and PhotoShop


Any of you ever scripted CF to run tasks in PhotoShop?  Can it be done?
CFExecute and all that.  On Win2K?

Any pointers on how to do it?

H.


~~
Howard Owens
Internet Operations Coordinator
InsideVC.com/Ventura County Star
[EMAIL PROTECTED]
AIM: GoCatGo1956
~~


~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



CF, Mas 90 ODBC

2003-02-26 Thread Justin Hansen
I'm also embarking on a CFMX / Mas 90 project. Have anyone gotten CF to talk to Mas 90 
via ODBC? If so how. Where do I start?

Justin Hansen
--
Uhlig Communications
Systems Engineer
--
[EMAIL PROTECTED]
913-754-4273 Office
816-695-4045 Mobile
--
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. http://www.fusionauthority.com/signup.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



CFMX Zip Tag

2003-02-17 Thread Justin Hansen
Does anybody have a zip tag that works with CFMX?

I have not been able to get the following to work:
Ben's CFX_Zip eval
JCompress 
freezip

thanks 
Justin
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4




RE: Form.Fieldnames and MX

2003-02-13 Thread Justin Hansen
I had a similar problem trying to put the form scope in wddx packet. For me, it keep 
dropping fields at random. I would be nice to know why this issue exists. Any MX Gods 
out there care to explain why the form struct keeps dropping vars when you try to wddx 
it? 

This is how I got around it.. 

cfset locExcludeList = FIELDNAMES !--- you could stick others here to keep them 
out of the packet ---
cfloop collection=#form# item=i
cfif not listFind(locExcludeList,i)
cfset locForm.#i# = form[i]
/cfif
/cfloop

cfwddx action=cfml2wddx input=#locForm# output=locFormPacket

Justin Hansen
--
Uhlig Communications
Systems Engineer
--
[EMAIL PROTECTED]
913-754-4273 Office
816-695-4045 Mobile
--


-Original Message-
From: Cutter (CF_Talk) [mailto:[EMAIL PROTECTED]]
Sent: Thursday, February 13, 2003 9:26 AM
To: CF-Talk
Subject: Re: Form.Fieldnames and MX


Though Form is selected for Display, nothing for Form is coming up on 
the action page in the debugging info. (Maybe because no data is being 
passed?)

Cutter

Andy Ousterhout wrote:

Turn on Display Variables in CF Admin and see what is getting passed

-Original Message-
From: Cutter (CF_Talk) [mailto:[EMAIL PROTECTED]]
Sent: Thursday, February 13, 2003 8:29 AM
To: CF-Talk
Subject: Form.Fieldnames and MX


Ok, what happened? I used to be able to loop through form.fieldnames to
create a list of all of the fields and then I could write my processor
script. CFMX, on the other hand, gives me the following:

Element FIELDNAMES is undefined in FORM.

Anybody have any ideas?

Cutter




~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4




DWMX Questions...

2003-02-12 Thread Justin Hansen
I know this issue is kind of tired but here I go anyways
I've gone from Studio 4.5 to DWMX and ending up going back to Studio 
4.5...
Now, I'm working with cfs's a lot more. So, I'm going to try switching 
back to DWMX, again.

1) Is there any want to set a snippet to a short cut key?
2) How can I get ## back for Ctrl+3 instead of h3/h3?

These things are killing me here!
Any help from the troops?

Justin Hansen
--
Uhlig Communications
Systems Engineer
--
[EMAIL PROTECTED]
--
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4




CFMX Log Viewer

2003-01-27 Thread Justin Hansen
Has anyone written a appliation.log viewer for MX and would be willing to share?
Other wise I will have to write one. 
Those of us with Professional don't get it built in any more. 

Thanks,
Justin Hansen
--
Uhlig Communications
Systems Engineer
--
[EMAIL PROTECTED]
913-754-4273 Office
816-695-4045 Mobile
--
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4




RE: CFMX Log Viewer

2003-01-27 Thread Justin Hansen
thanks, i didn't catch that.

-Original Message-
From: Debbie Dickerson [mailto:[EMAIL PROTECTED]]
Sent: Monday, January 27, 2003 10:00 AM
To: CF-Talk
Subject: RE: CFMX Log Viewer


It's added back in with Updater 2. Install that and you should be all set.

Debbie

-Original Message-
From: Justin Hansen [mailto:[EMAIL PROTECTED]]
Sent: Monday, January 27, 2003 11:00 AM
To: CF-Talk
Subject: CFMX Log Viewer


Has anyone written a appliation.log viewer for MX and would be willing to share?
Other wise I will have to write one. 
Those of us with Professional don't get it built in any more. 

Thanks,
Justin Hansen
--
Uhlig Communications
Systems Engineer
--
[EMAIL PROTECTED]
913-754-4273 Office
816-695-4045 Mobile
--


~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. http://www.fusionauthority.com/signup.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4




RE: Updating two fields

2002-12-09 Thread Justin Hansen
cfquery name=Update datasource=db dbtype=ODBC
UPDATE tblField
SET data1='Yes', data2='no'
WHERE strUsername='test'
/cfquery

-Original Message-
From: FlashGuy [mailto:[EMAIL PROTECTED]]
Sent: Monday, December 09, 2002 8:22 AM
To: CF-Talk
Subject: Updating two fields


Hi,

I need to update two fields in my database. For example, I have two fields called 
data1 and data2. THe below code updates only data1 field.
Whats the correct syntax to also update data2 field at the same time?


 cfquery name=Update datasource=db dbtype=ODBC
UPDATE tblField
SET data1='Yes'
WHERE strUsername='test'
 /cfquery




---
Colonel Nathan R. Jessop
Commanding Officer
Marine Ground Forces
Guatanamo Bay, Cuba
---




~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.



DWMX/MX/RDS/DB Won't Connect!

2002-11-21 Thread Justin Hansen
I can't get DWMX to connect to my dev server to display the DB. In CF Studio 4.5.2, it 
will connect but it takes a few minutes to do so. In HS+  DWMX I get a timeout error 
message.

Has anyone else had this problem? Any clues or tips?

Justin
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. http://www.fusionauthority.com/signup.cfm



RE: Dump a SQL table into an Excel spreadsheet

2002-11-05 Thread Justin Hansen
Here are a couple of UDF's should help.

QueryToCsv
http://www.cflib.org/udf.cfm?ID=556

CSVFormat
http://www.cflib.org/udf.cfm?ID=404


Enjoy!

Justin Hansen
--
Uhlig Communications
Systems Engineer
--
[EMAIL PROTECTED]
913-754-4273 Office
816-695-4045 Mobile
--


-Original Message-
From: Jochem van Dieten [mailto:jochemd;oli.tudelft.nl]
Sent: Tuesday, November 05, 2002 8:09 AM
To: CF-Talk
Subject: Re: Dump a SQL table into an Excel spreadsheet


Bosky, Dave wrote:

 What would be the best method for dumping a SQL table into an Excel
 spreadsheet and allowing the user to download it?

The easiest way is to dump it into a .csv and then have the user 
download that using cfcontent.

Jochem


~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Get the mailserver that powers this list at http://www.coolfusion.com



RE: how to show/hide a table using javascript...

2002-10-28 Thread Justin Hansen
you should be able to find your answer here:
www.dynamicdrive.com

Justin

-Original Message-
From: Kola Oyedeji [mailto:kola.oyedeji;iclployalty.com]
Sent: Monday, October 28, 2002 10:47 AM
To: CF-Talk
Subject: OT: how to show/hide a table using javascript...


Hi

Can anyone explain to me how to hide/show a table and its contents using
javascript which will work in ie and NS?


Although I'm familiar with DHTML for ie I'm not sure
How it can be done cross browser.

Thanks in advance


Kola



~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm



RE: Does there exist...

2002-10-07 Thread Justin Hansen

http://groups.google.com/groups?hl=enlr=ie=UTF-8group=mailing.database.sql-general

this would be your best bet.

Justin Hansen
--
Uhlig Communications
Systems Engineer
--
[EMAIL PROTECTED]
913-754-4273
--

-Original Message-
From: Randell B Adkins [mailto:[EMAIL PROTECTED]]
Sent: Monday, October 07, 2002 9:31 AM
To: CF-Talk
Subject: Re: Does there exist...


If I am not mistaken There is a SQL list here at House of Fusion.

 [EMAIL PROTECTED] 10/07/02 10:19AM 
Does there exist...a forum like CF-Talk or CFDList
with regards to Microsoft SQL Server?

I need to brush up on Maintaing SQL Server, DTS,
stored procedures and T-SQL. Any all encompassing
lists would be great!

TIA - ChT



~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. http://www.fusionauthority.com/signup.cfm



RE: CFMX and CFFORM

2002-09-30 Thread Justin Hansen

I got around this by adding a 'CFIDE' folder to my project/site folder. Then created 
virtual directories inside of that to the actual 'scripts'  'debug' directories. If 
you just add a virtual directory to the 'CFIDE' you are opening the CF Admin pages to 
your website.

It may not be pretty but CFForm works fine now.

Justin Hansen
--
Uhlig Communications
Systems Engineer
--
[EMAIL PROTECTED]
913-754-4273
--

-Original Message-
From: Bud [mailto:[EMAIL PROTECTED]]
Sent: Monday, September 30, 2002 4:35 PM
To: CF-Talk
Subject: CFMX and CFFORM


Hi all. I've searched the archives and the MACR KB, so if this has 
been covered, my apologies.

I'm trying to set up a site on someone's CFMX server. Pages with 
CFFORM are generating this line of code in the header:

SCRIPT LANGUAGE=JavaScript TYPE=text/javascript 
SRC=/CFIDE/scripts/cfform.js/SCRIPT

Under that, the regular CF generated javascript is there as normal, 
but since CFMX is installed at the web root and the domain I'm 
working on is a virtual domain, obviously /CFIDE/SCRIPTS is 
inaccessible.

This is causing a 404 in Netscape and the missing .js file is causing 
the actual javascript to be ignored in IE, causing CFFORM to not work 
at all.

What's the deal? Is there a setting in CFMX admin to turn off the 
reference to the missing .js file?
-- 

Bud Schneehagen - Tropical Web Creations

_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/
ColdFusion Solutions / eCommerce Development
[EMAIL PROTECTED]
http://www.twcreations.com/
954.721.3452

__
Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. http://www.fusionauthority.com/signup.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: CF 5 Pro vs Enterprise

2002-09-20 Thread Justin Hansen

http://www.macromedia.com/software/coldfusion/whitepapers/pdf/ColdFusionMXFeatureGrid_03.pdf

This should answer your question.

Justin Hansen
--
Uhlig Communications
Systems Engineer
--
[EMAIL PROTECTED]
913-754-4273
--

-Original Message-
From: Everett, Al [mailto:[EMAIL PROTECTED]]
Sent: Friday, September 20, 2002 4:17 PM
To: CF-Talk
Subject: CF 5 Pro vs Enterprise


What does CF5 Enterprise have that Pro doesn't?


-- 
Al Everett
Allied Office Products
www.askallied.com
mailto:[EMAIL PROTECTED]
v: 973-594-3209
f: 973-594-3626

__
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



calling custom tags with cfscript in mx?

2002-08-13 Thread Justin Hansen

Can you call a custom tag from cfscript in MX if you use cfimport?
I need an example

Justin Hansen
--
Uhlig Communications
Systems Engineer
--
[EMAIL PROTECTED]
913-754-4273
--
__
Get the mailserver that powers this list at http://www.coolfusion.com
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



CFMX ODBC Sockets Error!!!

2002-08-02 Thread Justin Hansen

Yo, anybody hit this yet? 
I got this error after attempting to create an ODBC connection in the CFMX Admin.

snip
Variable THISDATASOURCE is undefined.  

The Error Occurred in C:\WWW\CFIDE\administrator\datasources\odbcsocket.cfm: line 522
Called from C:\WWW\CFIDE\administrator\datasources\odbcsocket.cfm: line 446
Called from C:\WWW\CFIDE\administrator\datasources\odbcsocket.cfm: line 760
---
Please Try The Following:
Check the CFML Reference Manual to verify that you are using the correct syntax.
Search the Knowledge Base to find a solution to your problem.
 
Browser   Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; Q312461; .NET CLR 
1.0.3705) 
Remote Address   127.0.0.1 
Referer   http://localhost:8500/CFIDE/administrator/datasources/index.cfm 
Date/Time   02-Aug-02 01:38 PM 
 
Stack Trace (click to expand) 

/snip

What to do now? Please advise.
I have searched MM site... nothing.

Justin Hansen
--
Uhlig Communications
Systems Engineer
--
[EMAIL PROTECTED]
913-754-4273
--
__
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



3 column output

2002-07-25 Thread Justin Hansen

Ok, here is a good one for ya. I have a database of stories and they want to display 
it in the browser as a 3 column, newspaper style display. How does the all mighty 
group think this could be accomplished. How could one get a story to wrap from Column 
1 to 2 and 3 with HTML Tables? Is this type of linked tables available in Flash MX? 

Anyone... Anyone

Justin Hansen
--
Uhlig Communications
Systems Engineer
--
[EMAIL PROTECTED]
913-754-4273
--
__
Get the mailserver that powers this list at http://www.coolfusion.com
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: 3 column output

2002-07-25 Thread Justin Hansen

Matthieu,

Sounds like a starting point. The columns don't have to be equal in depth but will 
have a defined height. I was afraid it was going to be about word/char counting. Time 
for some major sting manipulation. :) 

BTW, yes, it is one var sting. 
Thanks for the time and Brain Cycles!

Justin

-Original Message-
From: Cornillon, Matthieu [mailto:[EMAIL PROTECTED]]
Sent: Thursday, July 25, 2002 2:35 PM
To: CF-Talk
Subject: RE: 3 column output


Justin,

I did something _sort of like_ this.  I have a page that asks users to check
from a list of items.  The number of items varies based on a value selected
on a previous page.  I do a query for the items.  I count the number, divide
by three, and then have start and stop values for the first, second, and
third third of the list.  Then I create a single-row, three-column table,
inside each cell of which appears a table with a CFQUERY-wrapped table row.
Because I did the math in advance, it all works out.

Your question adds a wrinkle to the problem: how do you deal with the issue
of wrapping?  Hmmm.  I'll be honest that it's a tough one.  I can think of
really nasty ways to loop through the text you have, breaking it into lines
as you go based on number of spaces, counting those lines, etc., but that's
going to be rotten even if it works at all.  Hmmm.  Hmmm.  Hmm.

Yeah.  It's awfully ugly.  But here goes:  You pull the whole long text into
one variable (I don't even know if there is a variable in which such long
text will fit.  You do an outer loop that goes from character 1 to character
n (the last character in the string), stepping by the length of characters
you want to allow in a line of text within a column.  You probably will have
to use a fixed-width font, or make the length of chars for a row small
enough to handle the widest chars.  An inner loop then goes backward from
that point until it finds a space character, and replaces the character with
some list separator.  Let's say | for now.  Then you have a delimited list
of lines.  You count the number of list items, divide by three, use the
above-described table structure, and loop through the list for output.

Like I said, ugly.  But maybe it will give you an idea for a better
solution?  I hope so.

Matthieu

-Original Message-
From: Justin Hansen [mailto:[EMAIL PROTECTED]]
Sent: Thursday, July 25, 2002 3:21 PM
To: CF-Talk
Subject: 3 column output


Ok, here is a good one for ya. I have a database of stories and they want to
display it in the browser as a 3 column, newspaper style display. How does
the all mighty group think this could be accomplished. How could one get a
story to wrap from Column 1 to 2 and 3 with HTML Tables? Is this type of
linked tables available in Flash MX? 

Anyone... Anyone

Justin Hansen
--
Uhlig Communications
Systems Engineer
--
[EMAIL PROTECTED]
913-754-4273
--


__
This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: WAY Way OT: Typist Bold Font

2002-07-22 Thread Justin Hansen

ask the design firm for it

-Original Message-
From: Kris Pilles [mailto:[EMAIL PROTECTED]]
Sent: Monday, July 22, 2002 11:23 AM
To: CF-Talk
Subject: WAY Way OT: Typist Bold Font


Hopefully somebody out there can help.

Prior to my existence here, we had a design firm build some templates
and they used Typist Bold as one of their fonts I have been able to
find every other font except this one

Does anyone know where I can get this font from???

Please help

KP

-Original Message-
From: Brockman, Chuck [mailto:[EMAIL PROTECTED]] 
Sent: Monday, July 22, 2002 10:18 AM
To: CF-Community
Subject: College Savings


I don't know if anybody knows about this, but for those of you with
kids, it seems to be a pretty good deal.

http://www.upromise.com/

A percentage of you credit/debit card charges are put away for college.




__
Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. http://www.fusionauthority.com/signup.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Cf vs AOL help needed....

2002-07-17 Thread Justin Hansen

While I haven't had this problem myself (I soon will), I have heard this CF  vs. AOL 
tid bit. 

An AOL users IP address may (and do) change during a session, when it does, CF thinks 
they are a new user and the user is no longer associated with their session. The only 
way around this is to add CFID and CFTOKEN to every url in the site.

Can anybody confirm or deny this?

Justin Hansen
--
Uhlig Communications
Systems Engineer
--
[EMAIL PROTECTED]
913-754-4273
--

-Original Message-
From: Tilbrook, Peter [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, July 16, 2002 5:46 PM
To: CF-Talk
Subject: RE: Cf vs AOL help needed


I can't see why. Client variables are, by default, stored in YOUR server's
registry.

All the same it is better to setup a separate database and use that instead.

-Original Message-
From: Eric [mailto:[EMAIL PROTECTED]] 
Sent: Tuesday, 16 July 2002 11:08 PM
To: CF-Talk
Subject: Cf vs AOL help needed


  I have something I've been struggling with for a little while now, and 
while after exhaustive research I think I'm on the right path I'm not sure 
I understand quite what the actual solution is.

  I have a members only website. I use session variables to allow users to 
move around within the site once they have logged in.

  It has come to light that AOL users get a much slower response time than 
people using normal ISP's (no offense intended to AOL users!)

  In all the reading I've now done, my thinking is that the progressive 
proxy servers they use at AOL may be hindering my client variables... am I 
on the right track here?

  has anyone run into this and found a solution for this? 


__
This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Cf vs AOL help needed....

2002-07-17 Thread Justin Hansen

This is good to hear! Don't know if it helps answer the original question...
If the user is not accepting cookies and they are on AOL you have to use the URL 
method.

Justin Hansen
--
Uhlig Communications
Systems Engineer
--
[EMAIL PROTECTED]
913-754-4273
--

-Original Message-
From: Jochem van Dieten [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, July 17, 2002 8:55 AM
To: CF-Talk
Subject: Re: Cf vs AOL help needed


Justin Hansen wrote:
 While I haven't had this problem myself (I soon will), I have heard this CF  vs. 
AOL tid bit. 
 
 An AOL users IP address may (and do) change during a session, when it does, CF 
thinks they are a new user and the user is no longer associated with their session. 
The only way around this is to add CFID and CFTOKEN to every url in the site.
 
 Can anybody confirm or deny this?

Put up my vote for the deny :)

Sessions are not based on IP addresses, they are based on the 
CFID/CFToken combination (or the jsessionid).

Jochem


__
This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Issue: How to Create a CSV file from a CF QUERY

2002-07-15 Thread Justin Hansen

There is a User Defined Function on cflib.org that will to the trick too...

http://www.cflib.org/udf.cfm?ID=404

CSVFormat, it works like a charm. Check it out!


Justin Hansen
--
Uhlig Communications
Web Developer / Programmer
--
[EMAIL PROTECTED]
913-754-4273
--

-Original Message-
From: James Blaha [mailto:[EMAIL PROTECTED]]
Sent: Saturday, July 13, 2002 4:54 AM
To: CF-Talk
Subject: Issue: How to Create a CSV file from a CF QUERY


Hello All:

Could someone please send me some example code or a custom tag for 
creating a CSV file from a CF QUERY? I need to be able to have a user be 
able to download or email information to him or her on a request. I need 
to have a page that will allow a user to extract information from a SQL7 
table in CSV format and they should either be able to download this live 
data when they click a link or be able to enter there email address and 
the cfm will query the live information in the table produce a csv file 
and then email the user the information as an attachment. That latter 
would be preferred.

Thanks in advance,
James Blaha



FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists
__
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



activedit vs. em dash vs. unicode vs.CFMX vs. me

2002-07-03 Thread Justin Hansen

EM dashs (among other special chars) are very important to my company.

Activedit allows me to use an em dash, I can see the em dash in the database, but when 
CFMX queries it out, it will only display the Unicode box and not the em dash 
character. ARGH!

Has anyone else battled this yet?

I think it as something to do with the new UNICODE support under MX. All I want is my 
em dash!!!

Justin
__
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



EPS 2 Gif?

2002-06-04 Thread Justin Hansen

Anyone have a custom tag that can take and EPS to GIF or JPG? 
CFX_Image doesn't do eps files. :(

Justin Hansen
--
Uhlig Communications
Web Developer / Programmer
--
[EMAIL PROTECTED]
913-754-4273
--

__
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



How to get MX to process .html files???

2002-06-03 Thread Justin Hansen

I have a lot of cf code in .html files and have been doing so since version
CF 4.0, by pointing the .html extension to the iscf.dll in IIS. How can I
get MX to do the same thing? Or do I have to rename all my files?

Justin Hansen
--
Uhlig Communications
Web Developer / Programmer
--
[EMAIL PROTECTED]
913-754-4273
--

__
Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. http://www.fusionauthority.com/signup.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Check for table existence??

2002-05-22 Thread Justin Hansen

This query will return a list of tables in your datasource.

cfquery name=qryTables datasource=#locDatasource#
SELECT TABLE_NAME
FROM INFORMATION_SCHEMA.TABLES
WHERE TABLE_TYPE = 'BASE TABLE'
AND TABLE_Name  'dtproperties'
/cfquery

Justin Hansen
--
Uhlig Communications
Web Developer / Programmer
--
[EMAIL PROTECTED]
913-754-4273
--


-Original Message-
From: Jason Congerton - Mcaonline
[mailto:[EMAIL PROTECTED]]
Sent: Wednesday, May 22, 2002 7:52 AM
To: CF-Talk
Subject: Check for table existence??


Dear ALL


A bit new to all this..

Can you check to see if a table exists within a database with cold fusion?
If so can someone tell me how please.

The reason for this, is one part of my database copies a table into another
which is name uniquley by a the users id, however this table needs to be
deleted once the user has logged off, problem being if the user does not log
off correctly the table will still be there, so I need to be check for
existence and delete at the logon stage.

Regards


Jason


This e-mail and any files transmitted with it are confidential and
intended solely for the use of the individual or entity to whom they
are addressed. If you have received this email in error please notify
[EMAIL PROTECTED]

Whilst every endeavour is taken to ensure that e-mails are free from
viruses, no liability can be accepted and the recipient is requested
to use their own virus checking software.



__
Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. http://www.fusionauthority.com/signup.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



MX, WebService, and XML - Help

2002-05-16 Thread Justin Hansen

Hi group,

I'm trying to get a webservice to work with MX and it just won't behave. All
I can get back is net.alethea.www.ArrayOfString@1283bf. IsXmlDoc returns
NO. It should be, right? Below is the code and reference information needed
to perform this action. Gez, Ben made it sound so easy. What is wrong with
this picture? Thanks in advance.

Xmethods service page:
http://www.xmethods.net/ve2/ViewListing.po;jsessionid=QEWc8ECNga-JV_ZfW2JioH
_c(QhxieSRM)?serviceid=7534

View the packet that should get returned:
http://www.alethea.net/webservices/ZipCode.asmx/ZipCodeToAreaCode?ZipCode=64
114

The Code:
cfinvoke
 webservice=http://www.alethea.net/webservices/ZipCode.asmx?WSDL;
 method=zipCodeToAreaCode
 returnvariable=AreaCodePacket
cfinvokeargument name=zipCode value=64114/
/cfinvoke

cfoutput
AreaCodePacket : #AreaCodePacket#br
isXmlDoc(AreaCodePacket) : #isXmlDoc(AreaCodePacket)#br
/cfoutput



Justin Hansen
--
Uhlig Communications
Web Developer / Programmer
--
[EMAIL PROTECTED]
913-754-4273
--


__
This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Yo Macromedia: CFMX and UUID Issue!

2002-05-15 Thread Justin Hansen

Queries that return UUIDs from SQL are coming back in Lowercase in CFMX.
They didn't do that in CF5 or earlier. They are Uppercase in the database.

This is creating issues for where I have had to hard code some UUIDs in
JavaScript.

Anybody else notice this? What gives? Is it too late to fix it before CFMX
comes out?

Justin Hansen
--
Uhlig Communications
Web Developer / Programmer
--
[EMAIL PROTECTED]
913-754-4273
--

__
Get the mailserver that powers this list at http://www.coolfusion.com
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



CFMX = No more Locking!

2002-05-07 Thread Justin Hansen

I saw Ben Forta last night at the new MX product slideshow. He said we don't
have to CFLOCK our Application, Session or Client vars any more in CFMX.
w00t! w00t!

Though that might make a few of ya happy

Justin Hansen
--
Uhlig Communications
Web Developer / Programmer
--
[EMAIL PROTECTED]
913-754-4273
--

__
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Radio Checkbox CSS

2002-05-02 Thread Justin Hansen

Has anyone figured out how to change the border colors on a Radio or
Checkbox?

Thanks, Justin

__
Get the mailserver that powers this list at http://www.coolfusion.com
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Dreamweaver MX Functionality?? (was: CFMX etc etc)

2002-04-29 Thread Justin Hansen

I have tried it, I can't even open a few of my core pages. When I do, it
closes DWMX! Anybody else seen this yet. I wonder if my security schema is
getting in the way. I use a custom tag that checks for a session var, if you
don't have it redirects the user.

Other that that, I really like the dockers and content menus. Gonna take a
while to get used to it and find all the good stuff.

Where is extend search and replace?

Justin Hansen
--
Uhlig Communications
Web Developer / Programmer
--
[EMAIL PROTECTED]
913-754-4273
--

__
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



CF Mas 90

2002-04-26 Thread Justin Hansen

Has anybody integrated a CF app with the Mas 90 Accounting package?
How did it go?

Justin Hansen
--
Uhlig Communications
Web Developer / Programmer
--
[EMAIL PROTECTED]
913-498-0123 ext 284
--
__
This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: NumberFormat UGH

2002-04-19 Thread Justin Hansen

Place curser on your NumberFormat and push the F1 key.
All answers shall be revealed. :)

-Original Message-
From: Paul Giesenhagen [mailto:[EMAIL PROTECTED]]
Sent: Friday, April 19, 2002 2:37 PM
To: CF-Talk
Subject: NumberFormat UGH


I have searched hi and low for some explination, but am at a loss.

I have a column in the db: weight, it is a float

Values can range beyond 123445.23223  and .03322323

Is there a way to use numberformat so you can show these as they are... when
I stick .03322323 into the database, it comes out

3.32232299E-2

Can't use decimalformat, need the multiple decimals ... numberformat either
padds too many spaces or doesn't give me enough..

Anyone have any good recommendations for formating variable sized numbers
with decimals?

Thank

Paul Giesenhagen
QuillDesign
http://www.quilldesign.com
SiteDirector v2.0 - Commerce Builder




__
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: NumberFormat UGH

2002-04-19 Thread Justin Hansen

Just kidding I'm at a loss. There may be a UDF at http://www.cflib.org
that can help.

-Original Message-
From: Justin Hansen [mailto:[EMAIL PROTECTED]]
Sent: Friday, April 19, 2002 2:48 PM
To: CF-Talk
Subject: RE: NumberFormat UGH


Place curser on your NumberFormat and push the F1 key.
All answers shall be revealed. :)

-Original Message-
From: Paul Giesenhagen [mailto:[EMAIL PROTECTED]]
Sent: Friday, April 19, 2002 2:37 PM
To: CF-Talk
Subject: NumberFormat UGH


I have searched hi and low for some explination, but am at a loss.

I have a column in the db: weight, it is a float

Values can range beyond 123445.23223  and .03322323

Is there a way to use numberformat so you can show these as they are... when
I stick .03322323 into the database, it comes out

3.32232299E-2

Can't use decimalformat, need the multiple decimals ... numberformat either
padds too many spaces or doesn't give me enough..

Anyone have any good recommendations for formating variable sized numbers
with decimals?

Thank

Paul Giesenhagen
QuillDesign
http://www.quilldesign.com
SiteDirector v2.0 - Commerce Builder





__
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: cfoutput - was RE: cfset vs using cfscript - Answer: NEO

2002-04-15 Thread Justin Hansen

Ah, but the real question that will end the debate.

Will it make a difference in NEO? 

I don't think it will if after your code is compiled.

This leaves us with, will it compile faster?
Most likely, but everything is compiled on the first hit, who cares, right?

To me, this boils it down to style.

What do we think on the Neo Question?


Justin Hansen
--
Uhlig Communications
Web Developer / Programmer
--
[EMAIL PROTECTED]
913-498-0123 ext 284
--
__
Get the mailserver that powers this list at http://www.coolfusion.com
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Wrapping Text

2002-04-11 Thread Justin Hansen

This will take a sting and wrap it @ 90. Just replace or set 'locString' to
the var that contains your data. Is your report text or html? If it's not
html, replace the br with #chr(10)##chr(13)#.

cfif trim(locString) neq 
cfset locSpace = 0
cfloop condition=len(locString) gte 90
cfset locSpace = refindnocase( ,locString,90)
cfif locSpace eq 0
cfbreak
/cfif
cfoutput#mid(locString,1,locSpace)#br/cfoutput
cfset locString = mid(locString,locSpace,len(locString))
/cfloop
cfoutput#locString#/cfoutput
/cfif

Have fun,

Justin Hansen
--
Uhlig Communications
Web Developer / Programmer
--
[EMAIL PROTECTED]
913-498-0123 ext 284
--

-Original Message-
From: Greg [mailto:[EMAIL PROTECTED]]
Sent: Thursday, April 11, 2002 1:05 PM
To: CF-Talk
Subject: Wrapping Text


I'm trying to get a long text string to wrap properly in a printable
report. Anyone have a graceful way of finding the last space before a
certain character, say 90? Also, I could use fixedsys font to be sure
that 90 is always a good wrapping point. Is that the best option?


__
Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. http://www.fusionauthority.com/signup.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Converting a CF Structured Array to a JS Structured Array ?

2002-04-02 Thread Justin Hansen

Does anyone have code that could convert a CF Structured Array to a JS
Structured Array? And then convert it back?

Justin Hansen
--
Uhlig Communications
Web Developer / Programmer
--
[EMAIL PROTECTED]
913-498-0123 ext 284
--

__
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Converting a CF Structured Array to a JS Structured Array ?

2002-04-02 Thread Justin Hansen

Sweet! That worked great for CF to JS. Any tips for going back? JS to CF. I
was thinking about a JS that would pump the changed data into a hidden form
field. Then looping through that to update the db.

Any other ideas?

-Original Message-
From: Raymond Camden [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, April 02, 2002 10:40 AM
To: CF-Talk
Subject: RE: Converting a CF Structured Array to a JS Structured Array ?


CFWDDX :)


cfset a = arrayNew(1)
cfset a[1] = q
cfset a[2] = d

script
cfwddx action=CFML2JS input=#a# toplevelvariable=foo
/script

===
Raymond Camden, Principal Spectra Compliance Engineer for Macromedia

Email: [EMAIL PROTECTED]
Yahoo IM : morpheus

My ally is the Force, and a powerful ally it is. - Yoda

 -Original Message-
 From: Justin Hansen [mailto:[EMAIL PROTECTED]]
 Sent: Tuesday, April 02, 2002 11:38 AM
 To: CF-Talk
 Subject: Converting a CF Structured Array to a JS Structured Array ?


 Does anyone have code that could convert a CF Structured Array to a JS
 Structured Array? And then convert it back?

 Justin Hansen
 --
 Uhlig Communications
 Web Developer / Programmer
 --
 [EMAIL PROTECTED]
 913-498-0123 ext 284
 --



__
This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: HTML comments and tag completion

2002-03-29 Thread Justin Hansen

Create your own short cut keys for CF  HTML comments. That way auto
complete won't get in the way and you don't have to type them.

Justin

-Original Message-
From: Jeff Brown [mailto:[EMAIL PROTECTED]]
Sent: Friday, March 29, 2002 8:31 AM
To: CF-Talk
Subject: HTML comments and tag completion



All,

Can anyone tell me how to disable the CF Studio tag completion for HTML
comments?  !--

Every time I try to type in a CF comment ( !--- ) it closes it with a --
before I enter the third -.  And although Studio color codes the comment as
if it had been closed correctly, CF Server treats the rest of the page like
a CF comment.  When I check out the Tag Completion section of the Settings
in Studio, !-- and !--- are not listed.  Any ideas anyone?  I don't want
to turn off tag completion entirely, just disable it for the !--- and !--
tags.

Please CC: [EMAIL PROTECTED] in your response, as I am subscribed to the
digest version of this list.  Thanks in advance!


v/r, Jeff Brown
http://www.secret-plans.com/

FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists

__
Get the mailserver that powers this list at http://www.coolfusion.com
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: DHTML Layers + Flash!

2002-03-29 Thread Justin Hansen

This is not possible with regular DHTML layers but, I have come up with a
solution, but I don't have an example for you. Try putting a flash movie in
the layer. It will go over the form fields. It will even (in IE) allow
transparency. You can even see the webpage behind/through the menu. Now, to
do it right, you'll need a full dhtml/flash/cf solution for menus. I haven't
seen one yet. Currently, I'm waiting on my new employer to buy Flash MX.
When I get, it I plan on developing one. If anyone has beat me to this, let
me know. I would like to see what you came up with.

Justin Hansen
--
Uhlig Communications
Web Developer / Programmer
--
[EMAIL PROTECTED]
913-498-0123 ext 284
--

-Original Message-
From: Rick Walters [mailto:[EMAIL PROTECTED]]
Sent: Friday, March 29, 2002 9:45 AM
To: CF-Talk
Subject: DHTML Layers


Hi Everyone,

While this is not a Cold Fusion question, someone out there might have
run into this problem before.

I am creating dynamic javascript to control a set of drop down menus.
My problem arises when I have a page with form input fields.  Whenever
there are form input fields on the page the layers containing the
menuitems display behind the form input elements.  Naturally I want the
drop down layers to appear above the form elements but I don't really
know how.  Any ideas?



Good Fortune,
Richard Walters,
Webmaster, Davita Laboratory Services
[EMAIL PROTECTED]
(800) 604-5227 x 3525

DaVita Inc.

__
Get the mailserver that powers this list at http://www.coolfusion.com
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: DHTML Layers + Flash!

2002-03-29 Thread Justin Hansen

http://www.jhansen.net/demo/dhtmlflash.html

Here is a very crude demo. It shows a flash movie in a layer over a select
box. The real challenge is how to make the movie size dynamic. Which you
can't do. If you made one dynamic movie for each menu item, you could stack
them up and not have to worry about the canvas size. So, let's say you loop
over a flash menu object/custom tag, pass it text=link text and
link=file.html or showmenulayer(name), and you have yourself one killer
menu system.

I have had this idea for a while, just haven't taken the time to develop it
yet.

Justin Hansen
--
Uhlig Communications
Web Developer / Programmer
--
[EMAIL PROTECTED]
913-498-0123 ext 284
--

-Original Message-
From: Rick Walters [mailto:[EMAIL PROTECTED]]
Sent: Friday, March 29, 2002 10:17 AM
To: CF-Talk
Subject: RE: DHTML Layers + Flash!


I would love to do the dynamic menus in flash.  I never thought to put
the flash into a layer.  Interesting idea.  See though drop down menus
could create some very cool effects, especially since you can animate of
the menu.

Good Fortune,
Richard Walters,
Webmaster, Davita Laboratory Services
[EMAIL PROTECTED]
(800) 604-5227 x 3525

 [EMAIL PROTECTED] 03/29/02 11:07AM 
This is not possible with regular DHTML layers but, I have come up with
a
solution, but I don't have an example for you. Try putting a flash
movie in
the layer. It will go over the form fields. It will even (in IE) allow
transparency. You can even see the webpage behind/through the menu.
Now, to
do it right, you'll need a full dhtml/flash/cf solution for menus. I
haven't
seen one yet. Currently, I'm waiting on my new employer to buy Flash
MX.
When I get, it I plan on developing one. If anyone has beat me to this,
let
me know. I would like to see what you came up with.

Justin Hansen
--
Uhlig Communications
Web Developer / Programmer
--
[EMAIL PROTECTED]
913-498-0123 ext 284
--

-Original Message-
From: Rick Walters [mailto:[EMAIL PROTECTED]]
Sent: Friday, March 29, 2002 9:45 AM
To: CF-Talk
Subject: DHTML Layers


Hi Everyone,

While this is not a Cold Fusion question, someone out there might have
run into this problem before.

I am creating dynamic javascript to control a set of drop down menus.
My problem arises when I have a page with form input fields.  Whenever
there are form input fields on the page the layers containing the
menuitems display behind the form input elements.  Naturally I want
the
drop down layers to appear above the form elements but I don't really
know how.  Any ideas?



Good Fortune,
Richard Walters,
Webmaster, Davita Laboratory Services
[EMAIL PROTECTED]
(800) 604-5227 x 3525

DaVita Inc.



__
This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: cfparam vs. cfif/isDefined/cfset

2002-03-26 Thread Justin Hansen

Yeah, the request rounte it the way to go. I also have a Settings table in
my apps for application/request vars used in a particular application. Take
a look at this snip from my application.cfm

cfscript
request.dsSQL = whatever;
request.RootURL = http://whatever.com;;
request.RootPath = x:\whatever\whatever.com;
request.zeroGUID = ----;

/cfscript


!--- create application.setting.Struct and request.setting.Struct ---
cflock type=READONLY scope=APPLICATION timeout=10
cfset locAppDefined = isDefined(application.setting)
/cflock

cfif locAppDefined eq 0 or isDefined(url.resetapp)
cfquery name=qrySettings datasource=#request.dsSQL#
SELECT SettingName, SettingValue
FROM Settings
/cfquery

cflock type=EXCLUSIVE scope=APPLICATION timeout=10
cfscript
structDelete(application, setting);
application.setting = StructNew();
for (i=1; i lte qrySettings.recordCount; i=i+1) {
application.setting.#qrySettings.SettingName[i]# =
qrySettings.SettingValue[i];
}
/cfscript
/cflock
/cfif

cflock type=READONLY scope=APPLICATION timeout=10
cfscript
request.setting = StructNew();
request.setting = Duplicate(application.setting);
/cfscript
/cflock


Justin Hansen
--
Uhlig Communications
Web Developer / Programmer
--
[EMAIL PROTECTED]
913-498-0123 ext 284
--

-Original Message-
From: Sharon DiOrio [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, March 26, 2002 11:10 AM
To: CF-Talk
Subject: Re: cfparam vs. cfif/isDefined/cfset


I tend to set all the commonly used defaults as Request scope variables.  No
locking, no cfparam, available anywhere.

cfscript
REQUEST.dsn = myDSN;
REQUEST.dbType = dbtype;
REQUEST.webRoot = C:/inetpub/wwwroot/;
etc...
/cfscript

PS, Good to know that UDFs are faster.  Are there any exceptions to the
rule?

Sharon
- Original Message -
From: Michael Dinowitz [EMAIL PROTECTED]
To: CF-Talk [EMAIL PROTECTED]
Sent: Tuesday, March 26, 2002 11:35 AM
Subject: Re: cfparam vs. cfif/isDefined/cfset


 1. You should lock the entire group with a CFLOCK and a scope of
application.
 2. An IsDefined() with a set is actually slightly faster than a
CFAPPLICATION. There's even a UDF that does just this and its still faster
even with the small UDF overhead. Note that this is limited to the
isdefined() then default. When you start doing the other things that a
CFPARAM is useful for then the balance changes.

 At 11:21 AM 3/26/02, you wrote:
 Here is my application.cfm file:
 
 cfapplication name=appname applicationtimeout=#CreateTimeSpan(2, 0, 0,
 0)#
 
 cfparam name=application.appnameroot default=/appname
 cfparam name=application.includesDir default=/appname/includes
 cfparam name=application.imagesDir default=/appname/images
 cfparam name=application.menusDir default=/appname/menus
 cfparam name=application.templatesDir default=/appname/templates
 cfparam name=application.smapDir default=/appname/smap
 
 Should I be locking these cfparam tags? Should I wrap them all in one
lock
 or should I lock each one individually?
 
 What is the difference between using cfparam tags as I have above and
using
 cfif with isDefined and cfset to accomplish the same thing? Is one method
a
 better practice than the other?
 
 Thanks!
 
 George
 [EMAIL PROTECTED]
 


__
This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Flash MX and CF5

2002-03-19 Thread Justin Hansen

Does that work? You could put the list in a text file any time you
add/update a 'mfg', update the text file.

I'm also jumping in to this journey (in my spare time).

OT: Geez, this is really going to cut into my new obsession, Motor City
Online. Any other CFers playing MCO?

Justin Hansen
--
Uhlig Communications
Web Developer / Programmer
--
[EMAIL PROTECTED]
913-498-0123 ext 284
--

-Original Message-
From: Douglas Brown [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, March 19, 2002 11:20 AM
To: CF-Talk
Subject: Flash MX and CF5


 We prob need a CF-flashTalk list, but in the meantime I am just now
beginning my journey into dynamic content in flash, and was wondering if
someone had an idea of how to populate a combo box from a query...


I have this so far, please help.

Query

CFQUERY DATASOURCE=carnivore NAME=mfg_list
SELECT  *
FROM  mfg
/CFQUERY
CFSET myList = ValueList(mfg_list.mfgid,,)
CFOUTPUTmfg=#myList#/CFOUTPUT


Flash


Button action
on (release) {
 loadVariablesNum(http://www.carnivorepc.com/console/qry/qry_mfg_list.cfm;,
0, GET);
 mfgList.addItem(mfg);
}





Success is a journey, not a destination!!



Doug Brown


__
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: alternating rows

2002-03-18 Thread Justin Hansen

This is what I use...

trcfif qryName.currentrow mod 2 EQ 0 class=altRow/cfif

Justin Hansen
--
Uhlig Communications
Web Developer / Programmer
--
[EMAIL PROTECTED]
913-498-0123 ext 284
--

-Original Message-
From: Tangorre, Michael T. [mailto:[EMAIL PROTECTED]]
Sent: Monday, March 18, 2002 12:31 PM
To: CF-Talk
Subject: alternating rows


Does anyone remember the quick way to alternate row colors when using MOD on
a recorcount?

Mike

__
Get the mailserver that powers this list at http://www.coolfusion.com
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



id.innerText = 'how to escape quotes and ticks?'

2002-03-12 Thread Justin Hansen

I am trying to replace a whole table in side a div tag with a new table. The
new contents of the div contain quotes () and ticks ('). How can I escape
them with JavaScript so the 'innerText' will work?

Justin Hansen
--
Uhlig Communications
Web Developer / Programmer
--
[EMAIL PROTECTED]
913-498-0123 ext 284
--

__
Get Your Own Dedicated Windows 2000 Server
  PIII 800 / 256 MB RAM / 40 GB HD / 20 GB MO/XFER
  Instant Activation · $99/Month · Free Setup
  http://www.pennyhost.com/redirect.cfm?adcode=coldfusionb
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Session Timing out too fast

2002-03-07 Thread Justin Hansen

I know this is kinda vague but...

My session is not lasting 4 hours. More like 20 minutes. What am I missing?

cfapplication name=work_damn_it
   sessionmanagement=Yes
   setclientcookies=Yes
   sessiontimeout=#CreateTimeSpan(0,4,0,0)#
   applicationtimeout=#CreateTimeSpan(0,24,0,0)#



Justin Hansen
--
Ulgih Communications
Web Developer / Programmer
--
[EMAIL PROTECTED]
913-498-0123 ext 284
--


__
Get Your Own Dedicated Windows 2000 Server
  PIII 800 / 256 MB RAM / 40 GB HD / 20 GB MO/XFER
  Instant Activation · $99/Month · Free Setup
  http://www.pennyhost.com/redirect.cfm?adcode=coldfusionb
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



  1   2   >