Any ideas for this mapping problem?

2010-05-20 Thread denstar
to think of it, I haven't updated my cf9 cfusion.war in a while, perhaps a hotfix made this magically work! Doubtful, be I. Anyone have any ideas? To make it a little easier, using the UrlRewriteFilter, I can call java classes on resources-- meaning, if someone knows of something like

Re: GetHTTPRequestdata().content is changing my data any ideas?

2009-10-15 Thread Leigh
if you read in a jpg using cffile read and then save it using cffile, you will get the same munged image If a read returns the same results, that does sound like the binary data is being treated as text. In a quick test with cfhttp, I had no problems saving the getHTTPRequestData().content.

Re: GetHTTPRequestdata().content is changing my data any ideas?

2009-10-14 Thread Fred Anderson
here is the header that is coming through with the data. === POST /cfCatch.cfm HTTP/1.1 Accept: */* Accept-Encoding: gzip, deflate User-Agent: Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; WOW64; Trident/4.0; FunWebProducts; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.5.21022;

Re: GetHTTPRequestdata().content is changing my data any ideas?

2009-10-14 Thread Judah McAuley
Out of curiosity, do you get the same behavior on Adobe CF that you are seeing on Railo? I'd talk to the guys on the Railo list. If you have a reproduceable issue, they seem quite keen to jump on these little bugs and get them fixed ASAP. Judah On Sun, Oct 11, 2009 at 3:56 PM, Fred Anderson

Re: GetHTTPRequestdata().content is changing my data any ideas?

2009-10-14 Thread Fred Anderson
Yes, I get them on CF8,CF9 and Railo, and presumably Blue Dragon from a test I had someone else run. Thanks, Fred On Wed, Oct 14, 2009 at 12:01 PM, Judah McAuley ju...@wiredotter.com wrote: Out of curiosity, do you get the same behavior on Adobe CF that you are seeing on Railo? I'd talk to

Re: GetHTTPRequestdata().content is changing my data any ideas?

2009-10-14 Thread Judah McAuley
Then it might be an issue with the underlying Java call. I'd check in over at the Railo list and see if Gert and his boys can help you figure things out. If you have a reproduceable situation with source files you can give them I'm sure they'll take a look. Cheers, Judah On Wed, Oct 14, 2009 at

Re: GetHTTPRequestdata().content is changing my data any ideas?

2009-10-12 Thread Fred Anderson
If anyone is interested in helping out, I was able to recreate this issue in the cffile portion of ColdFusion, if you read in a jpg using cffile read and then save it using cffile, you will get the same munged image, if you read it in using cffile readbinary and save it, it works perfectly.

Re: GetHTTPRequestdata().content is changing my data any ideas?

2009-10-12 Thread Leigh
I have a 3D app that will post a render in jpg format to the URL of my choice Exactly how is the image being posted to the url? ie What is the content-type, method, etcetera .. used. -Leigh ~| Want to reach

GetHTTPRequestdata().content is changing my data any ideas?

2009-10-11 Thread Fred Anderson
Here is the scenario. I have a 3D app that will post a render in jpg format to the URL of my choice, in this case I have setup a server (I have tested with CF9 and Railo) on my machine to test catching the JPG's and saving them to the hard drive. The problem is that the photos come through all

any ideas

2008-05-14 Thread Chad Gray
I would like to leave my Query open to take in any number of where statements. IE: cfset arguments.clause = JobID = 1 cfquery name=getJobs datasource=#application.dsn# SELECT * FROM Jobs WHERE 1=1 cfif len(arguments.clause)AND #arguments.clause#/cfif /cfquery Of course the problem with

RE: any ideas

2008-05-14 Thread Jacob
cfqueryparam the variables in the where statement ??? -Original Message- From: Chad Gray [mailto:[EMAIL PROTECTED] Sent: Wednesday, May 14, 2008 1:45 PM To: CF-Talk Subject: any ideas I would like to leave my Query open to take in any number of where statements. IE: cfset

RE: any ideas

2008-05-14 Thread Jacob
.) Use the created SQL server username for the datasource in ColdFusion Administrator. -Original Message- From: Chad Gray [mailto:[EMAIL PROTECTED] Sent: Wednesday, May 14, 2008 1:45 PM To: CF-Talk Subject: any ideas I would like to leave my Query open to take in any number of where statements

RE: any ideas

2008-05-14 Thread Dave Watts
(Technically, you should never delete a record. Just mark it no show or something of that nature.) That's not true. There are cases where you want to soft delete records, and (many other) cases where you want to actually delete the record. Dave Watts, CTO, Fig Leaf Software

Re: any ideas

2008-05-14 Thread Phillip Vector
You are effectively throwing open the door to any hacker, then asking how to stop them from coming in and stealing your stereo. :) Why do you want to do this? Perhaps there is a better way? On Wed, May 14, 2008 at 1:44 PM, Chad Gray [EMAIL PROTECTED] wrote: I would like to leave my Query open

RE: any ideas

2008-05-14 Thread Mark Kruger
Mark A. Kruger, CFG, MCSE (402) 408-3733 ext 105 www.cfwebtools.com www.coldfusionmuse.com www.necfug.com -Original Message- From: Phillip Vector [mailto:[EMAIL PROTECTED] Sent: Wednesday, May 14, 2008 4:15 PM To: CF-Talk Subject: Re: any ideas You are effectively throwing open

Re: any ideas

2008-05-14 Thread Mary Jo Sminkey
Anyone have a good way of doing this and keep safe from SQL injection? Do you have any information at all about the field types/columns being included? There are certainly ways to handle this if you just have something like a string of words you want to search on or known phrases, such that you

Re: any ideas

2008-05-14 Thread Loathe
Something like this maybe? cfscript dataObject[1][1] = myField; // field name dataObject[1][2] = myValue; // value dataObject[1][3] = myDataType // data type /cfscript cfloop from=1 to=#arrayLen(dataObject)# index=i and #dataObject[i][1]# = cfqueryparam

CreateObject - ALl of a sudden starts timing out - Any ideas why?

2008-04-03 Thread Nate Willard
Any ideas why the following code below would suddenly start timing out on the server? cfscript imgObj = CreateObject(java,java.awt.image.BufferedImage); imgRdr = CreateObject(java,javax.imageio.ImageIO); f

Windows/SQL Server error, anyone have any ideas?

2007-10-26 Thread Andy Matthews
One of our 4 servers all of a sudden started throwing CryptoAPI errors. Literally one second it was working, the next it wasn't. Our guys are looking into it, but I thought I might ask the list and see if anyone had any ideas. The exact error: [Macromedia][SQLServer JDBC Driver][SQLServer

RE: Windows/SQL Server error, anyone have any ideas?

2007-10-26 Thread Dave Watts
One of our 4 servers all of a sudden started throwing CryptoAPI errors. Literally one second it was working, the next it wasn't. Our guys are looking into it, but I thought I might ask the list and see if anyone had any ideas. The exact error: [Macromedia][SQLServer JDBC Driver

RE: Windows/SQL Server error, anyone have any ideas?

2007-10-26 Thread Andy Matthews
26, 2007 2:04 PM To: CF-Talk Subject: RE: Windows/SQL Server error, anyone have any ideas? One of our 4 servers all of a sudden started throwing CryptoAPI errors. Literally one second it was working, the next it wasn't. Our guys are looking into it, but I thought I might ask the list and see

RE: Windows/SQL Server error, anyone have any ideas?

2007-10-26 Thread Dave Watts
Supposedly using SQL Server Auth Login yes, but when we try to expand the node containing this specific database, it returns the same error. When you're expanding that node in Enterprise Manager, are you using the same login as CF? If not, can you try another login - ideally a Windows

RE: Windows/SQL Server error, anyone have any ideas?

2007-10-26 Thread Andy Matthews
I just got confirm that it's the SQL Server auth. Windows login works just fine. -Original Message- From: Dave Watts [mailto:[EMAIL PROTECTED] Sent: Friday, October 26, 2007 2:46 PM To: CF-Talk Subject: RE: Windows/SQL Server error, anyone have any ideas? Supposedly using SQL Server

RE: Windows/SQL Server error, anyone have any ideas?

2007-10-26 Thread Dave Watts
I just got confirm that it's the SQL Server auth. Windows login works just fine. This might be your problem: http://support.microsoft.com/kb/811886 Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ Fig Leaf Software provides the highest caliber vendor-authorized instruction at our

Re: Error,jrpp-3 - Any ideas?

2007-05-09 Thread Tom Chiverton
On Tuesday 08 May 2007, Jim H wrote: Which configs are you talking about? FusionReactor makes changes to, iirc, the JVM config file. -- Tom Chiverton Helping to revolutionarily accelerate dot-com interfaces on: http://thefalken.livejournal.com

Re: Error,jrpp-3 - Any ideas?

2007-05-09 Thread Jim H
Would a uninstall remove the changes? I am not sure where to find the changes. -JH On Tuesday 08 May 2007, Jim H wrote: Which configs are you talking about? FusionReactor makes changes to, iirc, the JVM config file. -- Tom Chiverton Helping to revolutionarily accelerate dot-com

Re: Error,jrpp-3 - Any ideas?

2007-05-09 Thread Tom Chiverton
On Wednesday 09 May 2007, Jim H wrote: Would a uninstall remove the changes? I am not sure where to find the changes. -JH Yeah, guess so. -- Tom Chiverton Helping to efficiently target one-to-one schemas on: http://thefalken.livejournal.com

Re: Error,jrpp-3 - Any ideas?

2007-05-09 Thread Jim H
Strangely enough, I added the timeout variable to all my cfquery tags and the problem seems to have subsided. Go figure using SQL2000 and IIS. I have no idea how to trouble shoot this error in our exception log. Any ideas? It is causing huge request back-ups and essentially shuts

Error,jrpp-3 - Any ideas?

2007-05-08 Thread Jim H
I have no idea how to trouble shoot this error in our exception log. Any ideas? It is causing huge request back-ups and essentially shuts down the cf server. 365 Error,jrpp-3,05/08/07,10:08:15,SchoolSites, The specific sequence of files included or processed is: C:\Inetpub\WebSites

Re: Error,jrpp-3 - Any ideas?

2007-05-08 Thread Tom Chiverton
On Tuesday 08 May 2007, Jim H wrote: I have no idea how to trouble shoot this error in our exception log. Any ideas? It is causing huge request back-ups and essentially shuts down the cf server. Remove the FusionReactor configs. -- Tom Chiverton Helping to apprehensively repurpose virtual

Re: Error,jrpp-3 - Any ideas?

2007-05-08 Thread Jim H
Which configs are you talking about? Thanks! JH On Tuesday 08 May 2007, Jim H wrote: I have no idea how to trouble shoot this error in our exception log. Any ideas? It is causing huge request back-ups and essentially shuts down the cf server. Remove the FusionReactor configs

Re: Error,jrpp-3 - Any ideas?

2007-05-08 Thread Jim H
Which configs are you referring to? Thanks, JH On Tuesday 08 May 2007, Jim H wrote: I have no idea how to trouble shoot this error in our exception log. Any ideas? It is causing huge request back-ups and essentially shuts down the cf server. Remove the FusionReactor configs

RE: Any ideas

2006-08-17 Thread Jake Churchill
-Talk Subject: RE: Any ideas -Original Message- From: Doug Brown [mailto:[EMAIL PROTECTED] Sent: Wednesday, August 16, 2006 11:37 PM To: CF-Talk Subject: Any ideas In my classifieds, I want to give the customer the ability to re-post their ad for free for another month if they do

RE: Any ideas

2006-08-17 Thread Jim Davis
-Original Message- From: Doug Brown [mailto:[EMAIL PROTECTED] Sent: Wednesday, August 16, 2006 11:37 PM To: CF-Talk Subject: Any ideas In my classifieds, I want to give the customer the ability to re-post their ad for free for another month if they do not sale the item. Can

Re: Any ideas

2006-08-17 Thread Doug Brown
As I posted earlier, I want to offer another month free if their item does not sale. Not only does this cause people to want to use the service, but it gives the site more product for people to look at when they browse. Any ideas other than mine? Regards, Doug - Original Message

RE: Any ideas

2006-08-17 Thread Ian Skinner
As I posted earlier, I want to offer another month free if their item does not sale. Not only does this cause people to want to use the service, but it gives the site more product for people to look at when they browse. Any ideas other than mine? I think that was the point. Don't worry about

RE: Any ideas

2006-08-17 Thread Bobby Hartsfield
-Original Message- From: Doug Brown [mailto:[EMAIL PROTECTED] Sent: Thursday, August 17, 2006 4:04 PM To: CF-Talk Subject: Re: Any ideas As I posted earlier, I want to offer another month free if their item does not sale. Not only does this cause people to want to use the service

Re: Any ideas

2006-08-17 Thread Jerry Johnson
And also suggest they update their text. If it didn't sell, it might be the ad, not the item. On 8/17/06, Kevin Aebig [EMAIL PROTECTED] wrote: If you're really set on having it automated, just do a mail-out at the end of the month reminding the sellers to either re-subscribe their ads or

Re: Any ideas

2006-08-16 Thread Paul Giesenhagen
QuillDesign 417-885-1375 http://www.quilldesign.com - Original Message - From: Doug Brown [EMAIL PROTECTED] To: CF-Talk cf-talk@houseoffusion.com Sent: Wednesday, August 16, 2006 10:37 PM Subject: Any ideas In my classifieds, I want to give the customer the ability to re-post

Re: How to deal with email based commands - Any ideas?

2006-08-09 Thread john mcdonald
Here is what happened. Lotus Notes is what we use for an email client. We're creating a lotus notes form that they'll fill out from their email. then we'll poke their answeres directly into my oracle database (just as if they had filled out my CF form) solves my problem. And I don't have to

How to deal with email based commands - Any ideas?

2006-08-08 Thread john mcdonald
into my program? Anybody got any ideas? Thanks in advance! John McDonald ~| Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting, up-to-date ColdFusion information by your peers, delivered to your door four

RE: How to deal with email based commands - Any ideas?

2006-08-08 Thread loathe
Use an html email with a form in it. Have the form submit to your application (which will open a browser). -Original Message- From: john mcdonald [mailto:[EMAIL PROTECTED] Sent: Tuesday, August 08, 2006 10:29 AM To: CF-Talk Subject: How to deal with email based commands - Any ideas

Re: How to deal with email based commands - Any ideas?

2006-08-08 Thread Jerry Johnson
and store them in the database - (basically parse their email response and weed out their answers and store them) I have no idea where to begin.. Do I need to build some kind of pop3 or smtp functionality into my program? Anybody got any ideas? Thanks in advance! John McDonald

Re: How to deal with email based commands - Any ideas?

2006-08-08 Thread Tom Chiverton
On Tuesday 08 August 2006 15:28, john mcdonald wrote: the system until today. My boss now wants them to be able to enter free form text response to questions. my program should pick up their comments and store them in the database - (basically parse their email response and weed out their

Hey, does anyone have any ideas regarding a top 40 voting system?

2006-08-01 Thread Jeff Small
I've been asked to help out a friend conceptually, but I'm not sure exactly how to proceed. He wants to have a top 40 voting system where they will put 40 song titles up on a web page, and people will vote on them. Sounds pretty simple, but I'm not sure about what would be the best way. He

RE: Hey, does anyone have any ideas regarding a top 40 voting system?

2006-08-01 Thread Snake
can then work out the mean average value based on the number of points voted for each title. -Original Message- From: Jeff Small [mailto:[EMAIL PROTECTED] Sent: 01 August 2006 21:26 To: CF-Talk Subject: Hey, does anyone have any ideas regarding a top 40 voting system? I've been asked

RE: Hey, does anyone have any ideas regarding a top 40 voting system?

2006-08-01 Thread Ken Ferguson
were doing it to try and avoid certain songs always being toward the top of the list. Thanks,   Ken Ferguson 214.636.6126 -Original Message- From: Jeff Small [mailto:[EMAIL PROTECTED] Sent: Tuesday, August 01, 2006 3:26 PM To: CF-Talk Subject: Hey, does anyone have any ideas regarding

RE: Hey, does anyone have any ideas regarding a top 40 voting system?

2006-08-01 Thread [EMAIL PROTECTED]
: Snake [EMAIL PROTECTED] Date: Tue, 1 Aug 2006 21:41:33 +0100 To: cf-talk@houseoffusion.com Subject: RE: Hey, does anyone have any ideas regarding a top 40 voting system? Well 40 items have to displayed in some order, so something is always gonna be at the bottom. So alphabetical seems as fair

Re: Hey, does anyone have any ideas regarding a top 40 voting system?

2006-08-01 Thread Greg Morphis
Have a main songs table with song info, and a scores table with song IDs and a number say 1-10 score. Query the scores table to get an average, arrange query by that average and either use SQL to get the top 40 rows or through the use of CFLOOP output the 40 top scores.. On 8/1/06, Jeff Small

Re: Hey, does anyone have any ideas regarding a top 40 voting system?

2006-08-01 Thread Jerry Johnson
, does anyone have any ideas regarding a top 40 voting system? I've been asked to help out a friend conceptually, but I'm not sure exactly how to proceed. He wants to have a top 40 voting system where they will put 40 song titles up on a web page, and people will vote on them. Sounds pretty

RE: Hey, does anyone have any ideas regarding a top 40 voting system?

2006-08-01 Thread Andy Matthews
[mailto:[EMAIL PROTECTED] Sent: Tuesday, August 01, 2006 3:57 PM To: CF-Talk Subject: RE: Hey, does anyone have any ideas regarding a top 40 voting system? I'd even break it down further Jeff. I'd have them only pick 1 or maybe up to 5 songs out of the list and follow your points-accumulation idea from

Re: Hey, does anyone have any ideas regarding a top 40 voting system?

2006-08-01 Thread Barney Boisvert
I'd go with displaying perhaps 5 songs, in a random order, and make them prioritize them somehow. Upon submit, give them your thank you message, but also display 5 more songs (no dupes) below it, in case they want to rate some more. For the somehow, you could do 5 columns of radio buttons that

Re: Hey, does anyone have any ideas regarding a top 40 voting system?

2006-08-01 Thread Jim Wright
Any suggestions, both from an interface standpoint, and the pure tabulations standpoint? One thought is to just have a simple interface that shows the song, with a yes or no button. When they click on a button, it records the vote and shows the next song. Display the songs in a random order

Re: Hey, does anyone have any ideas regarding a top 40 voting system?

2006-08-01 Thread Josh Nathanson
not getting votes won't be penalized. -- Josh - Original Message - From: Greg Morphis [EMAIL PROTECTED] To: CF-Talk cf-talk@houseoffusion.com Sent: Tuesday, August 01, 2006 1:51 PM Subject: Re: Hey, does anyone have any ideas regarding a top 40 voting system? Have a main songs table with song

Re: Hey, does anyone have any ideas regarding a top 40 voting system?

2006-08-01 Thread [EMAIL PROTECTED]
on an equal number of times (if that's important to you). Original Message: - From: Jim Wright [EMAIL PROTECTED] Date: Tue, 1 Aug 2006 17:11:51 -0400 To: cf-talk@houseoffusion.com Subject: Re: Hey, does anyone have any ideas regarding a top 40 voting system? Any suggestions, both from

Re: Hey, does anyone have any ideas regarding a top 40 voting system?

2006-08-01 Thread Mike Kear
-talk@houseoffusion.com Subject: Re: Hey, does anyone have any ideas regarding a top 40 voting system? Any suggestions, both from an interface standpoint, and the pure tabulations standpoint? One thought is to just have a simple interface that shows the song, with a yes or no button

JRun JAR Launcher Errors on XP - any ideas whats doing it?

2006-05-10 Thread Steve Kahn
Im running XP Sp2 with CF7 and I keep getting a JRun JAR error thats leading to a crash, Does anyone have insight to what might be causing this? thank you all Steve ~| Message:

Re: tmt_img java error, anyone have any ideas?

2005-10-20 Thread Massimo Foti
Massimo! You're beautiful! It works perfectly. Glad to hear this. Thanks for testing it out Just curious, what did you change? Well, first of all I have to give credit to Otoniel Rojas. He was using the CFC and facing the same problem with an headless server. He found the solution and send

Re: tmt_img java error, anyone have any ideas?

2005-10-20 Thread James Holmes
We just went through similar hassles with Other Java imaging packages on headless systems. While this CFC works ok, it's likely that other packages involving text won't if you ever try them (not without breaking CFCHART anyway). We solved the problem by using a virtual xserver on the machine and

Re: tmt_img java error, anyone have any ideas?

2005-10-19 Thread Massimo Foti
Massimo...Andyhave either of you looked into the JVM args I posted last week? Thanks Bryan. Unfortunately I don't have access to an headless system, so I have no way to test it out. Massimo Foti Tools for ColdFusion and Dreamweaver developers:

Re: tmt_img java error, anyone have any ideas?

2005-10-19 Thread Massimo Foti
Massimo... I saw your post about modifying the Java API. I downloaded the tmt_img zip file from your server again, but it looks like that still contains an older version of the CFC. When you get a few minutes, would you mind updating that ZIP file with the new CFC? I attached the zip to my

RE: tmt_img java error, anyone have any ideas?

2005-10-19 Thread Andy Matthews
error, anyone have any ideas? Massimo... I saw your post about modifying the Java API. I downloaded the tmt_img zip file from your server again, but it looks like that still contains an older version of the CFC. When you get a few minutes, would you mind updating that ZIP file with the new CFC

Re: tmt_img java error, anyone have any ideas?

2005-10-19 Thread Massimo, Tiziana e Federica
I attached the zip to my post but I forgot the server blocks attachments :-( Later today I will be back at home and will put the modified CFC on my server. Here it is: http://www.massimocorner.com/coldfusion/cfc/tmt_img_h.zip Again, it's just a shot in the dark. I don't have an headless

RE: tmt_img java error, anyone have any ideas?

2005-10-19 Thread Andy Matthews
PM To: CF-Talk Subject: Re: tmt_img java error, anyone have any ideas? I attached the zip to my post but I forgot the server blocks attachments :-( Later today I will be back at home and will put the modified CFC on my server. Here it is: http://www.massimocorner.com/coldfusion/cfc

RE: tmt_img java error, anyone have any ideas?

2005-10-19 Thread Andy Matthews
PROTECTED] Sent: Wednesday, October 19, 2005 4:07 PM To: CF-Talk Subject: Re: tmt_img java error, anyone have any ideas? I attached the zip to my post but I forgot the server blocks attachments :-( Later today I will be back at home and will put the modified CFC on my server. Here it is: http

Re: tmt_img java error, anyone have any ideas?

2005-10-19 Thread Bryan Stevenson
Just curious, what did you change? Ditto!! Bryan Stevenson B.Comm. VP Director of E-Commerce Development Electric Edge Systems Group Inc. phone: 250.480.0642 fax: 250.480.1264 cell: 250.920.8830 e-mail: [EMAIL PROTECTED] web: www.electricedgesystems.com

tmt_img java error, anyone have any ideas?

2005-10-18 Thread Andy Matthews
flawlessly on my local machine, which leads me to think that there's some difference in my server's Java configuration. My sys guy just told me that he installed upgraded Java to 1.4.1. This is the last thing I need solved before I can push this code to the client. Does anyone have any ideas? Anyone

RE: tmt_img java error, anyone have any ideas?

2005-10-18 Thread Andy Matthews
, 2005 9:39 AM To: CF-Talk Subject: tmt_img java error, anyone have any ideas? So I'm using Massimo's tmt_img.cfc file which works perfectly on my windows machine. I ran into problems though when porting the code to my web server, which runs headless. I finally got my sysadmin to configure the system

Re: tmt_img java error, anyone have any ideas?

2005-10-18 Thread Massimo Foti
So I'm using Massimo's tmt_img.cfc file which works perfectly on my windows machine. I ran into problems though when porting the code to my web server, which runs headless. I don't work on runs headless, so I can't help that much, at the bottom of the page below you will find more info about

RE: tmt_img java error, anyone have any ideas?

2005-10-18 Thread Andy Matthews
developer ICGLink, Inc. [EMAIL PROTECTED] 615.370.1530 x737 --//- -Original Message- From: Massimo Foti [mailto:[EMAIL PROTECTED] Sent: Tuesday, October 18, 2005 9:43 AM To: CF-Talk Subject: Re: tmt_img java error, anyone have any ideas? So I'm using Massimo's

Re: tmt_img java error, anyone have any ideas?

2005-10-18 Thread Bryan Stevenson
and don't forget Andy I already posted the JVM args that need to be in the jvm.config fileand it woeks on a Linux server because that's where my headless machine is as well ;-) Bryan Stevenson B.Comm. VP Director of E-Commerce Development Electric Edge Systems Group Inc. phone:

Re: tmt_img java error, anyone have any ideas?

2005-10-18 Thread Massimo, Tiziana e Federica
developers: http://www.massimocorner.com - Original Message - From: Andy Matthews [EMAIL PROTECTED] To: CF-Talk cf-talk@houseoffusion.com Sent: Tuesday, October 18, 2005 4:39 PM Subject: tmt_img java error, anyone have any ideas? So I'm using Massimo's tmt_img.cfc

Re: tmt_img java error, anyone have any ideas?

2005-10-18 Thread Bryan Stevenson
Massimo...Andyhave either of you looked into the JVM args I posted last week? As I said then...I had the same problem with my codethe JVM args posted solved the problem. For the love of..one of you please acknowledge me and tell me to buzz off if you already looked at my solution

RE: tmt_img java error, anyone have any ideas?

2005-10-18 Thread Andy Matthews
, Inc. [EMAIL PROTECTED] 615.370.1530 x737 --//- -Original Message- From: Bryan Stevenson [mailto:[EMAIL PROTECTED] Sent: Tuesday, October 18, 2005 1:12 PM To: CF-Talk Subject: Re: tmt_img java error, anyone have any ideas? Massimo...Andyhave either of you looked

Re: tmt_img java error, anyone have any ideas?

2005-10-18 Thread Bryan Stevenson
Bryan...simma down now. I had my sysadmin use those args and I'm still getting the same error. LOL...and a good MadTV ref to boot!! ;-) Just FYI...the jvm.config file is VERY sensitive. If memory serves I had to make sure to dload from server in binary mode (not ascii)...edit very

RE: tmt_img java error, anyone have any ideas?

2005-10-18 Thread Andy Matthews
have any ideas? Hi Andy, I don't have an headless system, so this is just a shot in the dark, but I did a small change to the Java API calls inside the CFC. Please test it out on your server and let me know if it works. Best Massimo Foti Tools for ColdFusion

cfmx stopped working after installing XP SP2 - any ideas?

2004-09-09 Thread Steve Kahn
I recently installed XP service pack 2, and now coldfusion doesnt seem to work anymore. Any ideas how to fix this? Thanks Steve [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings] [Donations and Support]

Re: cfmx stopped working after installing XP SP2 - any ideas?

2004-09-09 Thread Asim Manzur
Un-installed will fix this for sure. I recently installed XP service pack 2, and now coldfusion doesnt seem to work anymore. Any ideas how to fix this? Thanks Steve [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings] [Donations and Support]

RE: cfmx stopped working after installing XP SP2 - any ideas?

2004-09-09 Thread Dave Watts
I recently installed XP service pack 2, and now coldfusion doesnt seem to work anymore. Any ideas how to fix this? If you're using the built-in JRun web server, the SP2 firewall may be blocking access to it. http://www.bpurcell.org/blog/index.cfm?mode=entryentry=1038 Dave Watts, CTO, Fig

RE: cfmx stopped working after installing XP SP2 - any ideas?

2004-09-09 Thread Kevin Webb
provides no help either. Kevin -Original Message- From: Steve Kahn [mailto:[EMAIL PROTECTED] Sent: Thursday, September 09, 2004 7:05 PM To: CF-Talk Subject: cfmx stopped working after installing XP SP2 - any ideas? I recently installed XP service pack 2, and now coldfusion doesnt seem to work

Re: cfmx stopped working after installing XP SP2 - any ideas?

2004-09-09 Thread Matt Woodward
I recently installed XP service pack 2, and now coldfusion doesnt seem to work anymore. Any ideas how to fix this? Thanks Steve Did you try this? http://www.macromedia.com/support/coldfusion/ts/documents/windowsspxp2.htm [Todays Threads] [This Message] [Subscription] [Fast

Invalid Context During Role Validation error in flex-event.log -- Anyone have any ideas?

2004-04-10 Thread Abraham Vionas
I get the error... invalid context during role validation in the flex-event.log ..everytime I attempt to load a mxml file into my browser. The error page that gets displayed in the browser says... HTTP Status Code: 500 Exception Type: class java.lang.NullPointerException I've been going back

anyone have any ideas why I have 10-30 second Flex load times?

2004-04-08 Thread Abraham Vionas
It *is* the first run of the application, but it doesn't seem to get any better - and we're talking about the sample applications. In fact, they run quicker off the Macromedia site then they do locally on my comp. Any ideas? _ avast! Antivirus http://www.avast.com : Outbound message clean

Any ideas??

2004-02-02 Thread [EMAIL PROTECTED]
are using CFMX on SQL Server 2K on Win2K Anyone have any ideas? Neil [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]

RE: Any ideas??

2004-02-02 Thread Jim Davis
:37 AM To: CF-Talk Subject: Any ideas?? I keep getting the error: 8170f80c-8436-483b-84b5-ee351daffc0f must be interprettable as a valid number in the current locale. Without getting into too much detail ,all I am doing in the code is a QoQ on a query containing a few int and varchar columns

Re: Any ideas??

2004-02-02 Thread peter . tilbrook
Are you using ColdFusion's own CreateUUID() functions? These are not valid MSSQL UUID's. You need something like the MSSQLCreateUUID() UDF at http://www.cflib.org/udf.cfm?ID=512. Peter Tilbrook Transitional Services - Enterprise eSolutions Centrelink (http://www.centrelink.gov.au) 2 Faulding

RE: ColdFusion workshop - any ideas?

2003-11-05 Thread Jim Davis
Just my comments on your list - sorry for no indenting, but quoting on the HTML version of the list is a pain. Some example topics I intend to cover include (in no particular order): INTRODUCTION AND WELCOME I definitely think this should come first.;^) ABOUT/HISTORY OF COLDFUSION You didn't

RE: ColdFusion workshop - any ideas?

2003-11-05 Thread Peter Tilbrook
Thank you very much for the input I have received so far. Despite using CF myself for so long (8 years) and being close to 35 years of age - CF and it's history alone still keeps me more than occupied. Special thanks (at this early stage) to Mr Jim Davis for some great feedback - all duly noted.

ColdFusion workshop - any ideas?

2003-11-04 Thread peter . tillbrook
G'day, I've been given the un-enviable task of bringing non ColdFusion programmers and total newbies up to speed with ColdFusion - only version 5 at this stage but MX will be plugged. I work for an Australian government department called Centrelink. They are in the top 100 hundred Australian

RE: ColdFusion workshop - any ideas?

2003-11-04 Thread Angel Stewart
Ben Forta's CF WACK would be a good reference guide! www.easycfm.com is a site with a lot of tutorials from beginner to expert that could be used to give examples of code in action. cftipsplus.com also has useful articles that would tie into a variety of those topics listed below. Of

RE: ColdFusion workshop - any ideas?

2003-11-04 Thread Mike Kear
you'llhit a lot of resistance. Just my thoughts. Cheers, Michael Kear Windsor, NSW, Australia AFP Webworks. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Wednesday, 5 November 2003 2:32 PM To: CF-Talk Subject: ColdFusion workshop - any ideas? G'day

Re: ColdFusion workshop - any ideas?

2003-11-04 Thread Adam Churvis
Of course, you can just invite Sandy Clark, Adam Churvis or some other CF ceWebrity to do all the hard stuff for you ^_^ -Gel That's sweet of you, Gel! :) Actually, we'd love to do some basic and intermediate CF DB training some time.If anyone out there would like us to come in and train

Re: ColdFusion workshop - any ideas?

2003-11-04 Thread peter . tillbrook
Funny you should say that Adam, I have a copy of the CFMX Bible by you right next to me :) Of course, you can just invite Sandy Clark, Adam Churvis or some other CF ceWebrity to do all the hard stuff for you ^_^ -Gel That's sweet of you, Gel! :) Actually, we'd love to do some basic and

RE: Session vars not being retained. Any ideas why?

2003-09-02 Thread Peter Tilbrook
. Any ideas why? Here's another thought. ... when I first talked to my sysadmin he said he didn't have session vars enabled in the CF administrator. Then when I asked again a short while later to confirm, he said they were definitely enabled. (I got him to tell me the settings he had

Re: Session vars not being retained. Any ideas why?

2003-09-02 Thread Oliver Tupman
Mike Kear wrote: Can someone else have a look at these pages for me too please make sure it's nothing to do with my browser settings? Took a look and the auth structure was present in all three pages. Tested in both IE 6 and Mozilla 1.5b. I've had an interestingly similiar on a intranet box

FIXED: Session vars not being retained. Any ideas why?

2003-09-02 Thread Mike Kear
retained. Any ideas why? Mike Kear wrote: Can someone else have a look at these pages for me too please make sure it's nothing to do with my browser settings? Took a look and the auth structure was present in all three pages. Tested in both IE 6 and Mozilla 1.5b. I've had an interestingly similiar

Session vars not being retained. Any ideas why?

2003-09-01 Thread Mike Kear
My site is forgetting the session variables between pages, and I'm not sure why. It retains the login info when I use the CFID/CFTOKEN in the URL, but if not, the new page comes up and I'm logged out again. (sigh!) So far, I've explored the possibility that I've got the cfapplication tag wrong

RE: Session vars not being retained. Any ideas why?

2003-09-01 Thread Craig Dudley
Try adding clientmanagement=Yes And possibly the following deleteing as applicable clientstorage=cookie/dsn/registry -Original Message- From: Mike Kear [mailto:[EMAIL PROTECTED] Sent: 01 September 2003 15:21 To: CF-Talk Subject: Session vars not being retained. Any ideas why? My

RE: Session vars not being retained. Any ideas why?

2003-09-01 Thread Mike Kear
Dudley [mailto:[EMAIL PROTECTED] Sent: Tuesday, 2 September 2003 12:24 AM To: CF-Talk Subject: RE: Session vars not being retained. Any ideas why? Try adding clientmanagement=Yes And possibly the following deleteing as applicable clientstorage=cookie/dsn/registry -Original Message- From

RE: Session vars not being retained. Any ideas why?

2003-09-01 Thread Adrian Lynch
For session vars to work you need to link the id and token to your browser, client vars will do this. -Original Message- From: Mike Kear [mailto:[EMAIL PROTECTED] Sent: 01 September 2003 15:33 To: CF-Talk Subject: RE: Session vars not being retained. Any ideas why? Craig, you think

  1   2   3   >