Re: Updated Broadband Stats

2007-06-15 Thread Mike Kear
whether you should or not depends on your audience. For some sites, the modem users are part of their target audience. For others they arent interested in those people. It's like everything else on the internet. The users of the internet arent a huge homogenous group of identical people -

Error Executing Database Query

2007-06-15 Thread alex poyaoan
need help for this message.. the object db.soc is existing below is my query and the error it throws: I'm using mssql server 2005 express edition cfquery name=all datasource=soc SELECT TOP (100) PERCENT SocID, Pr, FROM dbo.soc ORDER BY Pr Error Executing Database Query.

Re: CFGRID Format Flash, Adding a new row with a hidden record.

2007-06-15 Thread Peter Tilbrook
Use display=no to support a hidden field. Haven't tried the edit for CFGrid but here is an example I use to display a list and select a record: div align=center cfform name=CurrentReferrerList action=index.cfm?rr=REFERRER_CREATE#Trim(URLToken)# height=390 accessible=yes format=flash

Re: Error Executing Database Query

2007-06-15 Thread alex poyaoan
Got it functioning!!! The solution is to declare explicitly after the datasource= the dbnamedatabasename dbtype=ODBC is there a configuration that i should do on coldfusion or mssql inorder that this error won't go out.. thanks

Re: Updated Broadband Stats

2007-06-15 Thread Robertson-Ravo, Neil (RX)
Yeah but in all reality most peoples benchmark will be at least ISDN. This e-mail is from Reed Exhibitions (Gateway House, 28 The Quadrant, Richmond, Surrey, TW9 1DN, United Kingdom), a division of Reed Business, Registered in England, Number 678540. It contains information which is

Re: Memory leak in CF7-based app, still trying to track it down

2007-06-15 Thread Dave Ross
Post the code for how you are using OSCache. It looks like you are definitely ending up with too many references to internal CF classes on your CFCs. Remember - a CFC does not equate to a single Java object - thus caching concepts that work in the java world may not work exactly the same w/

Re: Error Executing Database Query

2007-06-15 Thread Robertson-Ravo, Neil (RX)
I am sure DBTYPE has been deprecated in MX as all connections are JDBC. What connection type did you set up? An ODBC or normal SQL one? You also do not need to prefix the table with dbo in your case. This e-mail is from Reed Exhibitions (Gateway House, 28 The Quadrant, Richmond, Surrey, TW9

Re: Dynamically populate a select box within a PDF form.

2007-06-15 Thread Jason Congerton
I'm not sure if this is possible, and have been looking for examples without luck. One of my clients have requested the ability to post products to their website via a PDF form. My question is, can I dynamically populate a select box on the PDF form from the websites database. Would this

Re: Memory leak in CF7-based app, still trying to track it down

2007-06-15 Thread Hemant Khandelwal
We have recently fix a similar issue. I am checking with EET if the hotfix is made available. Thanks, Hemant Adobe ColdFusion Team ~| Upgrade to Adobe ColdFusion MX7 The most significant release in over 10 years. Upgrade see

RE: Invalid Parser Construct

2007-06-15 Thread Adrian Lynch
It wouldn't have been the quotes that caused the error but having an expression in between the #. #someVar + someOtherVar# will fail on CF5 but not on CF6+. Give it a try, I don't have CF5 here at the moment but I think that I'm right. Adrian -Original Message- From: Martin Carroll

Re: Error Executing Database Query

2007-06-15 Thread alex poyaoan
I am sure DBTYPE has been deprecated in MX as all connections are JDBC. What connection type did you set up? An ODBC or normal SQL one? You also do not need to prefix the table with dbo in your case. the connection is ODBC is it better if i set up SQL to avoid this? This e-mail is from

Re: Error Executing Database Query

2007-06-15 Thread alex poyaoan
I am sure DBTYPE has been deprecated in MX as all connections are JDBC. What connection type did you set up? An ODBC or normal SQL one? You also do not need to prefix the table with dbo in your case. THE CONNECTION IS ODBC IS IT BETTER IF I SET UP SQL TO AVOID THAT AND NOT DECLARING IT

RE: Error converting data type varchar to int.

2007-06-15 Thread Robert Rawlins - Think Blue
Right you are Jochem! Here is the stored proc code: CREATE PROCEDURE Sp_Credential_Create @User_IDINTEGER, @Username VARCHAR(128), @Password VARCHAR(128) AS SET NOCOUNT ON INSERT INTO Credential (User_ID, Username, Password) VALUES (@User_ID,

Re: Memory leak in CF7-based app, still trying to track it down

2007-06-15 Thread Dov Katz
Thanks. Please keep the list (and me) updated. Just to confirm: The behavior i'm seeing was already after I installed HF# 645535 (strangely labeled as a cffile memory leak). Thanks again Dov We have recently fix a similar issue. I am checking with EET if the hotfix is made available.

Re: CFPRESENTATION color and mouse problems - Scorpio - General Discussions - Scorpio Discussions

2007-06-15 Thread Tom Chiverton
Has anyone experienced problems setting glowColor and primaryColor in the CF8 beta's CFPRESENTATION tag ? When I try, for instance cfpresentation title=ColdFusion 8 Presentation Demo backgroundColor=##FF00FF glowColor=##FF I get just black glows around the controls. This is all native

Re: Memory leak in CF7-based app, still trying to track it down

2007-06-15 Thread Dov Katz
For a classloader, I use an instance of JavaLoader.cfc from Mark Mandel, with the oscache-2.3.2.jar added to it. I have a convenience method to get create a cache: Cffunction name=createCacheAdministrator output=false access=public Cfreturn

Re: ColdFusion MX 7.0.2 and MySQL 4.1.12

2007-06-15 Thread [Sunshine Tech Solutions] Ravi Gehlot
James, I turned it off but no chance so far... Ravi. James Holmes wrote: Turn off the Windows firewall and try again... On 6/15/07, [Sunshine Tech Solutions] Ravi Gehlot [EMAIL PROTECTED] wrote: I ran telnet localhost 3360 and got connection failed. Ravi. Jochem van Dieten wrote:

Re: CFC Typeof()

2007-06-15 Thread Rupesh Kumar
Enter CF8 and we have added IsInstanceOf(object, Type) to do the same. It checks whether the given object is of given type where the type is a component or interface. Regarding MetaData for components, we have also added a new Method GetComponentMetaData(componentOrInterface). As opposed to

Re: CFC Typeof()

2007-06-15 Thread Rupesh Kumar
Enter CF8 and we have added IsInstanceOf(object, Type) to do the same. It checks whether the given object is of given type where the type is a component or interface. Regarding MetaData for components, we have also added a new Method GetComponentMetaData(componentOrInterface). As opposed to

Re: Updated Broadband Stats

2007-06-15 Thread Mike Kear
No, i dont accept that at all. As i said, Neil, it depends on your site's audience. For another example - if your site is directed at Australian rural community then you are pushing it to expect even 56kb users. there are huge areas where they simply dont get even that speed. There will be

Re: CFC Typeof()

2007-06-15 Thread Gert Franz
Hi Rupesh, is IsValid() supported as well? Meaning somethin like: isValid(object/interface, value) Greetings / Grüsse Gert Franz Customer Care Railo Technologies GmbH [EMAIL PROTECTED] www.railo.ch Join our Mailing List / Treten Sie unserer Mailingliste bei: deutsch:

Re: Memory leak in CF7-based app, still trying to track it down

2007-06-15 Thread Hemant Khandelwal
There is another one which matches the same description. CFC - PageCOntext - Variables I have already sent a mail to EET to check if backported fix on 7 is available. This issue is already fixed in Scorpio (CF8). Thanks, Hemant Adobe ColdFusion Team Thanks. Please keep the list (and me)

Trac Project

2007-06-15 Thread [Sunshine Tech Solutions] Ravi Gehlot
Does anyone know if the Trac Project works fine with MySQL? Ravi. -- --- Ravi Gehlot. Sr. Management Sunshine Technology Solutions, LLC http://www.sunshinetechsolutions.com/ [EMAIL PROTECTED] Cell Phone: (407) 860-3775 Business Line: (407) 745-1433

Re: Trac Project

2007-06-15 Thread J.J. Merrick
If I remember correctly it uses SQLlite with Python... but it has been almost a year since I have played around with it. J.J. On 6/15/07, [Sunshine Tech Solutions] Ravi Gehlot [EMAIL PROTECTED] wrote: Does anyone know if the Trac Project works fine with MySQL? Ravi. --

Re: Trac Project

2007-06-15 Thread [Sunshine Tech Solutions] Ravi Gehlot
Yep. QuestionI got MySQL running..if I install SQLite it won't conflict with MySQL, correct? As far as I know they run in different ports, right? Ravi. J.J. Merrick wrote: If I remember correctly it uses SQLlite with Python... but it has been almost a year since I have played around with

Re: Trac Project

2007-06-15 Thread [Sunshine Tech Solutions] Ravi Gehlot
Alright then. Thanks. Ravi. J.J. Merrick wrote: I am going to say yes since I installed it on the same machine as a MySql database was running on in development and don't remember any conflicts. J.J. On 6/15/07, [Sunshine Tech Solutions] Ravi Gehlot [EMAIL PROTECTED] wrote: Yep.

Re: Trac Project

2007-06-15 Thread Tom Chiverton
On Friday 15 Jun 2007, [Sunshine Tech Solutions] Ravi Gehlot wrote: Yep. QuestionI got MySQL running..if I install SQLite it won't conflict with MySQL, correct? As far as I know they run in different ports, right? SQLite is file based isn't it ? Doesn't even have a server, hence Gears and

Using a CFCHART in a CFPRESENTATION

2007-06-15 Thread Tom Chiverton
The following: cfpresentationslide presenter=Tom Chiverton cfchart title=A Title Here cfchartseries type=area cfchartdata item=foo value=4 cfchartdata item=bar value=10 cfchartdata

Re: Error converting data type varchar to int.

2007-06-15 Thread Dean Lawrence
On 6/15/07, Robert Rawlins - Think Blue [EMAIL PROTECTED] wrote: cfset VARIABLES.DAO.create(1, 'TestUser, 'TestPassword') / Rob, I don't know if this was just your typing into the email, but in the above statement you did not place a closing quote after the second value. So instead it should

Re: Trac Project

2007-06-15 Thread J.J. Merrick
I am going to say yes since I installed it on the same machine as a MySql database was running on in development and don't remember any conflicts. J.J. On 6/15/07, [Sunshine Tech Solutions] Ravi Gehlot [EMAIL PROTECTED] wrote: Yep. QuestionI got MySQL running..if I install SQLite it won't

Re: CFPRESENTATION color and mouse problems - Scorpio - General Discussions - Scorpio Discussions

2007-06-15 Thread Tom Chiverton
On Friday 15 Jun 2007, Tom Chiverton wrote: Has anyone experienced problems setting glowColor and primaryColor in the CF8 beta's CFPRESENTATION tag ? When I try, for instance cfpresentation title=ColdFusion 8 Presentation Demo backgroundColor=##FF00FF glowColor=##FF I get just

RE: Trac Project

2007-06-15 Thread Damien McKenna
-Original Message- From: [Sunshine Tech Solutions] Ravi Gehlot Sent: Friday, June 15, 2007 8:18 AM Subject: Trac Project Does anyone know if the Trac Project works fine with MySQL? http://trac.edgewall.org/wiki/TracInstall either SQLite, PostgreSQL, or MySQL works Mind if I ask

Re: Trac Project

2007-06-15 Thread Andy Allan
Trac is easy to install and manage. At least, I think so. Andy On 15/06/07, Damien McKenna [EMAIL PROTECTED] wrote: -Original Message- From: [Sunshine Tech Solutions] Ravi Gehlot Sent: Friday, June 15, 2007 8:18 AM Subject: Trac Project Does anyone know if the Trac Project

Re: Trac Project

2007-06-15 Thread [Sunshine Tech Solutions] Ravi Gehlot
Hey Andy, How is that milestone managed? Any clues? How do you delete stuff from the timeline? Ravi. Andy Allan wrote: Trac is easy to install and manage. At least, I think so. Andy On 15/06/07, Damien McKenna [EMAIL PROTECTED] wrote: -Original Message- From: [Sunshine

Re: Trac Project

2007-06-15 Thread [Sunshine Tech Solutions] Ravi Gehlot
Will try it now. Ravi. Damien McKenna wrote: -Original Message- From: [Sunshine Tech Solutions] Ravi Gehlot Sent: Friday, June 15, 2007 8:18 AM Subject: Trac Project Does anyone know if the Trac Project works fine with MySQL? http://trac.edgewall.org/wiki/TracInstall

SPRY and Dreamweaver

2007-06-15 Thread Greg Johnson
I have the sprydataset.cfm tag thats floating around to draw directly fom SQL to a SPRY dataset. Thing is, dreamweaver doesn't recognize it as a dataset, so I can't use the built in tools for setting up regions etc. Anything out there that can make this work

Re: Trac Project

2007-06-15 Thread [Sunshine Tech Solutions] Ravi Gehlot
You are right. It is file based and by the way when you create a trac project it creates the sqlite db file. So all you need to do is install sqlite and it does not conflict with mysql. Trac works fine. I am a bit confused though. How does it know when a milestone has been reached? Also, how

Re: Trac Project

2007-06-15 Thread Andy Allan
You manage everything via trac-admin (command line based) http://trac.edgewall.org/wiki/TracAdmin Or you can install the WebAdmin plugin http://trac.edgewall.org/wiki/WebAdmin Andy On 15/06/07, [Sunshine Tech Solutions] Ravi Gehlot [EMAIL PROTECTED] wrote: Hey Andy, How is that milestone

Re: Trac Project

2007-06-15 Thread [Sunshine Tech Solutions] Ravi Gehlot
ok Thanks, Ravi Andy Allan wrote: You manage everything via trac-admin (command line based) http://trac.edgewall.org/wiki/TracAdmin Or you can install the WebAdmin plugin http://trac.edgewall.org/wiki/WebAdmin Andy On 15/06/07, [Sunshine Tech Solutions] Ravi Gehlot [EMAIL PROTECTED]

CF test tracking

2007-06-15 Thread Tom Chiverton
Before I go off and write a new wheel, does anyone know of a CF/Flex-y solution that will allow users to enter a series of tests, then print out / email those tests (and any sub steps etc.) to give to someone else to perform and sign off ? -- Tom Chiverton Helping to elementarily engineer

Re: Using sessions with Flash Remoting

2007-06-15 Thread John Robinson
I tactually had a logout button in place and working for a while, but I figure nobody will actually use it... A logout button... why would I use that? I'll just close the window and save myself the hassle. I also thought about updating a timestamp every time they do something. I have a

RE: Trac Project

2007-06-15 Thread Russ
The latest version I believe supports MySQL. I haven't set it up that way yet, as our trac database is fairly small (and it works fine using SQLlite), but if you really want to, you can make it use a MySQL db. Russ -Original Message- From: [Sunshine Tech Solutions] Ravi Gehlot

Re: Using sessions with Flash Remoting

2007-06-15 Thread John Robinson
Kevin - The chat comm. goes through CF as well. The process is pretty simple so far. When you join, you get added to a table and everyone else in that table gets a new row in a separate table that signifies an event (USER_ADDED in this case). Each client then calls a cfc function once per

RE: setting xml encoding

2007-06-15 Thread Dave Watts
Using cfsavecontent is a possibility but I want to use the variable on the CF side to do some xmlsearches on and I need it in the form of an XML object. It seemed to make more sense to generate the xml object first and then tostring it when I was finished. I guess it is 6 of one half a

RE: Using sessions with Flash Remoting

2007-06-15 Thread Dave Watts
I tactually had a logout button in place and working for a while, but I figure nobody will actually use it... A logout button... why would I use that? I'll just close the window and save myself the hassle. Maybe you could use the JavaScript onUnload event to capture logout information?

Re: Trac Project

2007-06-15 Thread [Sunshine Tech Solutions] Ravi Gehlot
Hey Russ, SQLite works just fine for Trac. I tried MySQL but I was getting weird errors and didn't really want to dig deep to find what the problem was. After I installed SQLite it worked flawlessly. Ravi. Russ wrote: The latest version I believe supports MySQL. I haven't set it up that

RE: Trac Project

2007-06-15 Thread Damien McKenna
-Original Message- From: [Sunshine Tech Solutions] Ravi Gehlot Sent: Friday, June 15, 2007 11:06 AM Subject: Re: Trac Project Damien, I like TRAC way better. OK, I'll let you ;-) Damien McKenna Web Developer The LIMU Company

Re: Trac Project

2007-06-15 Thread Andy Allan
Trac supports multiple projects just fine. Andy On 15/06/07, Damien McKenna [EMAIL PROTECTED] wrote: -Original Message- From: Andy Allan [mailto:[EMAIL PROTECTED] Sent: Friday, June 15, 2007 9:19 AM Subject: Re: Trac Project Mind if I ask why you don't use something that

Re: Trac Project

2007-06-15 Thread [Sunshine Tech Solutions] Ravi Gehlot
Just gotta figure how to install webadmin Ravi. Damien McKenna wrote: -Original Message- From: [Sunshine Tech Solutions] Ravi Gehlot Sent: Friday, June 15, 2007 11:06 AM Subject: Re: Trac Project Damien, I like TRAC way better. OK, I'll let you ;-) Damien McKenna

Re: Trac Project

2007-06-15 Thread [Sunshine Tech Solutions] Ravi Gehlot
YEP. Ravi. Andy Allan wrote: Trac supports multiple projects just fine. Andy On 15/06/07, Damien McKenna [EMAIL PROTECTED] wrote: -Original Message- From: Andy Allan [mailto:[EMAIL PROTECTED] Sent: Friday, June 15, 2007 9:19 AM Subject: Re: Trac Project Mind if I

CFEclipse Mapped Drives Projects

2007-06-15 Thread Dan Vega
I know this may be a cfeclipse only question but I figured I would start here. I have installed the Eclipse Plugins from Adobe that allow for RDS fileview and dataview. The plugins work great. I setup my rds servers, connecting is simple as pie and editing files using my favorite editor is a

Re: Trac Project

2007-06-15 Thread [Sunshine Tech Solutions] Ravi Gehlot
Damien, I like TRAC way better. Ravi. Damien McKenna wrote: -Original Message- From: Andy Allan [mailto:[EMAIL PROTECTED] Sent: Friday, June 15, 2007 9:19 AM Subject: Re: Trac Project Mind if I ask why you don't use something that would be easier to install manage,

RE: Trac Project

2007-06-15 Thread Damien McKenna
-Original Message- From: Andy Allan [mailto:[EMAIL PROTECTED] Sent: Friday, June 15, 2007 9:19 AM Subject: Re: Trac Project Mind if I ask why you don't use something that would be easier to install manage, like Project Tracker (CFML based http://projecttracker.riaforge.org/)

Re: CFEclipse Mapped Drives Projects

2007-06-15 Thread Barney Boisvert
It's probably a time sync issue. Make sure both machines have a reliable source of time sync data so their clocks match exactly. If there is a discrepancy, you can end up with the error you describe. Any *nix has time sync built in, Windows machines on a domain should get it from their domain

RE: Error converting data type varchar to int.

2007-06-15 Thread Robert Rawlins - Think Blue
Thanks Dean, That was just a typo on my part, the actual code I've been testing with has the quote after it. Looking at the SQL code in the error message those strings seem to encrypt fine as well. Thanks for any further ideas guys, Rob -Original Message- From: Dean Lawrence

Re: Trac Project

2007-06-15 Thread Barney Boisvert
Yeah. Do your authentication with Apache, set up a shared user store in your database, and get (download/write) a plugin that'll build a project list. Depending on how you set it up, the last can be as simple as just dropping an xi:include inside your global template to grab a listing and stick

Re: CFEclipse Mapped Drives Projects

2007-06-15 Thread Tom Chiverton
On Friday 15 Jun 2007, Barney Boisvert wrote: get it from their domain controller while non-domained machines have to do it manually. Or at least install a (free) NTP client. -- Tom Chiverton Helping to conveniently empower fourth-generation niches on: http://thefalken.livejournal.com

accessing a URL variabled

2007-06-15 Thread Matthew Friedman
I have a page that I want to access the url variable, but I am not naming the variabled when I pass it to the url. ie. the url is www..com/url/90193|164 I have the website pointed to a default page, so I can see the url variables when I do a cfdump but how do I access the variable to use.

RE: Trac Project

2007-06-15 Thread Damien McKenna
-Original Message- From: Barney Boisvert [mailto:[EMAIL PROTECTED] Sent: Friday, June 15, 2007 11:45 AM Subject: Re: Trac Project Trac supports multiple projects just fine. From the same install with a single hostname, single sign-on and a way to easily navigate between them?

RE: Trac Project

2007-06-15 Thread Damien McKenna
-Original Message- From: Andy Allan [mailto:[EMAIL PROTECTED] Sent: Friday, June 15, 2007 11:12 AM Subject: Re: Trac Project Trac supports multiple projects just fine. From the same install with a single hostname, single sign-on and a way to easily navigate between them? AFAIK

Re: CFEclipse Mapped Drives Projects

2007-06-15 Thread Tom Chiverton
On Friday 15 Jun 2007, Dan Vega wrote: Save Could Not Be Completed Reason: Has been changed on the file system. Does your virus checker scan files on mapped drives ? -- Tom Chiverton Helping to simultaneously disseminate high-end synergies on: http://thefalken.livejournal.com

CF 6.1 Std to CF8 upgrade path

2007-06-15 Thread Matt Robertson
Sorry if I missed it earlier but has Adobe announced whether or not folks with CF 6.1 will be eligible for upgrade pricing to CF8? -- [EMAIL PROTECTED] Janitor, The Robertson Team mysecretbase.com ~| Create Web Applications

Re: accessing a URL variabled

2007-06-15 Thread Cutter (CFRelated)
Typical URL variables are name value pairs, and the URL variables are accessed via their scope (URL.varName) Steve Cutter Blades Adobe Certified Professional Advanced Macromedia ColdFusion MX 7 Developer _ http://blog.cutterscrossing.com Matthew Friedman wrote: I

Re: Trac Project

2007-06-15 Thread Barney Boisvert
That sounds like a lot more work than this: create_project.sh Project Display Name project_system_name Not to mention the fact that you probably also have to configure the Subversion repository, Apache to serve it, do LDAP for authentication, etc. ;) cheers, barneyb On 6/15/07, Damien McKenna

RE: setting xml encoding

2007-06-15 Thread Brad Wood
XML is designed to be used in practically any environment. In some environments, whitespace has significance. In others, it doesn't. Should a haiku be written on one line? I'm not necessarily saying you're wrong, but show me one example where the white space between tags of an xml document

RE: CFEclipse Mapped Drives Projects

2007-06-15 Thread Dave Watts
get it from their domain controller while non-domained machines have to do it manually. Or at least install a (free) NTP client. Windows has NTP functionality built in: http://www.microsoft.com/resources/documentation/windows/xp/all/proddocs/en- us/net_time.mspx?mfr=true Dave Watts, CTO,

Re: CFEclipse Mapped Drives Projects

2007-06-15 Thread Barney Boisvert
Yeah, that's what I meant. You have to manually install a client, and configure it to run however often to keep things synced. AboutTime (www.arachnoid.com/abouttime/) is somewhat old, but I've used it with great success when I've had Windows machines about. cheers, barneyb On 6/15/07, Tom

FMS2 - CF8 and MySQL on the same Server?

2007-06-15 Thread Jason Manaigre
Hi everyone, I'm planning on purchasing FMS2, but need to know if we have the server capacity, in ballpark terms what are we talking here? We've got: Server: Dual Xeon Quad Core 1.6 Ghz (Clovertown E5310) Ram: 4 GB ECC DDR2 SDRAM Hard Disk: 3 x 160 GB 7.2K SATA RE RAID 5 (Adaptec Controller)

RE: converting a string to a date - most efficient way?

2007-06-15 Thread Adkins, Randy
May not be the most efficient way but: CreateDate(MID(myString,5,2), MID(myString,3,2), MID(myString,1,2)) -Original Message- From: Ray Champagne [mailto:[EMAIL PROTECTED] Sent: Friday, June 15, 2007 12:05 PM To: CF-Talk Subject: converting a string to a date - most efficient way? So,

RE: setting xml encoding

2007-06-15 Thread Dave Watts
I'm not necessarily saying you're wrong, but show me one example where the white space between tags of an xml document would be as significant as any brother node and would need to be used by an application. I mean, XML presents data in the form of nested tags which contain appropriately

RE: Trac Project

2007-06-15 Thread Damien McKenna
-Original Message- From: Barney Boisvert [mailto:[EMAIL PROTECTED] Sent: Friday, June 15, 2007 12:01 PM To: CF-Talk Subject: Re: Trac Project Redmine: Admin menu - Projects - New Project Tracker: main dashboard - Add a new project That sounds like a lot more work than this:

Re: accessing a URL variabled

2007-06-15 Thread Matthew Friedman
I understant that and normally I use value pair but for this client, we have decided not to do for the application requirements. how do I access the url name from the url variable. I know tha in a form posting I can access the list of form fields with fieldname, is this feature in a url

Re: converting a string to a date - most efficient way?

2007-06-15 Thread Claude Schneegans
I've got a few ideas, but they all basically suck. Any takers? You can try this free custom tag: www.contentbox.com/claude/customtags/convertDate/viewConvertDate.cfm And test it online here: www.contentbox.com/claude/customtags/convertDate/testConvertDate.cfm (need no output mask) --

Re: converting a string to a date - most efficient way?

2007-06-15 Thread Crow T. Robot
Yea, my first attempt was something similar: CreateDate(Left(pubDate,2),Mid(pubDate,3,2),Right(pubDate,2)) but it throws errors (unspecified ones at that) So does this, weirdly enough: cfset FileName = 01-122906WASH-CIRC.txt cfset pubDate = Mid(FileName,4,6) cfset month = Left(pubDate,2)

converting a string to a date - most efficient way?

2007-06-15 Thread Ray Champagne
So, I have a file that I am uploading that contains a string that represents the date, and I need to extract the date from the filename. I have the extraction down to a string that looks like MMDDYY (ex: 120507) and I need to turn that into an ODBC date in the most efficient way possible.

Re: converting a string to a date - most efficient way?

2007-06-15 Thread Greg Morphis
CreateDate is year,month,day.. CreateDate(year,month,day) Thats why it's throwing an error On 6/15/07, Claude Schneegans [EMAIL PROTECTED] wrote: I've got a few ideas, but they all basically suck. Any takers? You can try this free custom tag:

Re: converting a string to a date - most efficient way?

2007-06-15 Thread Josh Nathanson
You can do this: cfset pubDate = Mid(FileName,4,6) returns '122906' cfset temp1 = insert('-',pubdate,2) cfset temp2 = insert('-',temp1,5) This will give you '12-29-06' Then cfset mydateobj = parsedatetime(temp2) -- Josh - Original Message - From: Crow T. Robot [EMAIL PROTECTED] To:

RE: Error converting data type varchar to int.

2007-06-15 Thread Robert Rawlins - Think Blue
Hi Dean, These are a few snippets from the error dump. {call Sp_Profile_Create( (param 1) , (param 2) , (param 3) )} And (param 1) = [type='IN', class='java.lang.Integer', value='1', sqltype='cf_sql_integer'] , (param 2) = [type='IN', class='java.lang.String',

Re: Translation WebService

2007-06-15 Thread Eric Haskins
http://googlified.com/2006unofficial-google-translate-api/ I just used this example for a Trouble Ticket System for our customer support. This could be done in the same fashion using cfhttp I do agree with Paul this should only be used sparingly or in my case on a closed Trouble Ticket system

Re: converting a string to a date - most efficient way?

2007-06-15 Thread Robertson-Ravo, Neil (RX)
I am assuming ParseDateTime() cannot be used here. This e-mail is from Reed Exhibitions (Gateway House, 28 The Quadrant, Richmond, Surrey, TW9 1DN, United Kingdom), a division of Reed Business, Registered in England, Number 678540. It contains information which is confidential and may also

Re: CFEclipse Mapped Drives Projects

2007-06-15 Thread Dan Vega
I would have to check with the network admin here but i just logged into that server and my clock is dead on with the clock of the server I am working on. Dan ~| ColdFusion 8 beta – Build next generation applications today.

Re: setting xml encoding

2007-06-15 Thread Dinner
Given the following examples: rootbook title=testauthor name=bob //book/root root book title=test author name=bob / /book /root Have I changed the actual data being transferred one iota? Yes. The second example has two text nodes within root,

RE: Translation WebService

2007-06-15 Thread Michael Eger
Thanks I will take a look at the API. I really agree with both Paul and you about the accuracy of the free services. We use professional translation services for our products, but I am doing a proof of concept with some languages we currently do not support, so we can understand what

RE: setting xml encoding

2007-06-15 Thread Adrian Lynch
So are you saying that the following is wrong? root Some text a-tag/ Maybe some more text another-tag/ /root Because it's more or less the same as the following surely? root a-tag/ another-tag/ /root Adrian -Original Message- From:

Re: setting xml encoding

2007-06-15 Thread Robertson-Ravo, Neil (RX)
It certainly doesn't look right as Some Text and maybe some more text are split within the root node by other nodes. I mean what you get by referencing myObj.root? Would expect both text text values? This e-mail is from Reed Exhibitions (Gateway House, 28 The Quadrant, Richmond, Surrey, TW9

RE: setting xml encoding

2007-06-15 Thread Brad Wood
Have I changed the actual data being transferred one iota? Yes. The second example has two text nodes within root, and two text nodes within book. I'm not talking about a technical standpoint, I'm talking about from a practical standpoint. I still maintain that there is no practical reason to

Re: Error converting data type varchar to int.

2007-06-15 Thread Dean Lawrence
On 6/15/07, Robert Rawlins - Think Blue [EMAIL PROTECTED] wrote: Thanks Dean, That was just a typo on my part, the actual code I've been testing with has the quote after it. Looking at the SQL code in the error message those strings seem to encrypt fine as well. Yea, I figured it probably

RE: setting xml encoding

2007-06-15 Thread Dave Watts
It certainly doesn't look right as Some Text and maybe some more text are split within the root node by other nodes. I mean what you get by referencing myObj.root? Would expect both text text values? That depends on how you reference myObj.root. There are various DOM API methods that will

RE: setting xml encoding

2007-06-15 Thread Dave Watts
A haiku is not XML. You did not give me an example of an XML string with white space between the tags in which an application would need it to handle the data. (Note, I am not talking about white space between a corresponding start and end tag as that would actually make sense since it

Re: converting a string to a date - most efficient way?

2007-06-15 Thread Crow T. Robot
well, there you go. thanks for catching that, Greg. On 6/15/07, Greg Morphis [EMAIL PROTECTED] wrote: CreateDate is year,month,day.. CreateDate(year,month,day) Thats why it's throwing an error On 6/15/07, Claude Schneegans [EMAIL PROTECTED] wrote: I've got a few ideas, but they all

Re: Using sessions with Flash Remoting

2007-06-15 Thread John Robinson
On Jun 15, 2007, at 11:01 AM, Dave Watts wrote: I tactually had a logout button in place and working for a while, but I figure nobody will actually use it... A logout button... why would I use that? I'll just close the window and save myself the hassle. Maybe you could use the JavaScript

RE: accessing a URL variabled

2007-06-15 Thread Bobby Hartsfield
Check #cgi.query_string# ..:.:.:.:.:.:.:.:.:.:.:.:.:.:.:.:.:. Bobby Hartsfield http://acoderslife.com -Original Message- From: Matthew Friedman [mailto:[EMAIL PROTECTED] Sent: Friday, June 15, 2007 11:46 AM To: CF-Talk Subject: accessing a URL variabled I have a page that I want to

Re: Dynamically populate a select box within a PDF form.

2007-06-15 Thread Jason Congerton
Hi All Still got a few problems with dynmaically populating the select box, I have connected the PDF form to the web service, which is now available from within the form. My qestion is how do i bind to the drop down list? My web service code is below for perusal. I have outputed the query

CFGRID Format Flash, Adding a new row with a hidden record.

2007-06-15 Thread Michael Grove
Basically I am trying to figure out how you can have default data populate one of the columns when you add a new row to a CFGRID Flash format. -Original Message- From: cf-talk [mailto:[EMAIL PROTECTED] Sent: Friday, June 15, 2007 6:00 AM To: cf-talk Subject: ColdFusion Talk (CF-Talk):

RE: Using sessions with Flash Remoting

2007-06-15 Thread Dave Watts
I could do that, but the stumbling point is not really where to store the data, but how/where to have CF monitor these values and do something with them, without that CF activity being tied to any or all users. You could store the session tokens and timestamps in the Application scope,

RE: Using sessions with Flash Remoting

2007-06-15 Thread Andy Matthews
I believe that Flash has a built in method of handling this type of thing. It's called a shared object and it allows you to read and write sessions I believe. I personally haven't used it, but several Flash programmers I've worked with have suggested it to me. andy -Original

RE: Using sessions with Flash Remoting

2007-06-15 Thread Kevin Aebig
Shared Objects are basically like Cookies in Flash. You can store serialized data in a small local file that can be reused down the road. The bonus is that they aren't deleted with regular cookies. You could potential implement something yourself using them, but the main issue is because you're

Coldfusion Developer Exam - 2 different ones?

2007-06-15 Thread Peterson, Chris
Does anyone know the difference between the 2 exams I see on pearsonvue.com? 9A0-701 Exam DetailsColdFusion MX Developer And 9A0-702 Exam DetailsCertified Macromedia ColdFusion MX 7 Developer Exam The details don't show much for them, which one should I take to attempt

RE: Coldfusion Developer Exam - 2 different ones?

2007-06-15 Thread Peterson, Chris
*sigh* I'm retarded, I didn't even think about one being for CF MX 6, and one for 7. Sorry to both you guys =) Chris -Original Message- From: Peterson, Chris [mailto:[EMAIL PROTECTED] Sent: Friday, June 15, 2007 3:31 PM To: CF-Talk Subject: Coldfusion Developer Exam - 2 different

RE: Translation WebService

2007-06-15 Thread Michael Eger
I tested a cfhttp approach to retrieve the text, but am getting a 403 error saying I do not have permission. I do not want to implement a PHP solution for this, so I need to find another solution. Any other ideas? -Original Message- From: Eric Haskins [mailto:[EMAIL PROTECTED] Sent:

  1   2   >