Re: flash platform

2005-06-06 Thread Kevin Aebig
As a Flash dev since version 3, this is actually a very, very, very tiny step. I'm personally scared about a few things, but I'll wait to see how they turn out before I get ahead of myself. Lets just hope they *finally* make it a self-updating plugin... If they want to really push Flash into a

RE: Web Based Mail Merge? (not email!)

2005-06-06 Thread Andy Mcshane
Unfortunately I am still looking for answers for this one. I am playing with a couple of suggestions using RTF XML but these both have way too much overhead in terms of maintenance for my site (potentially 1000's of documents that would all have to be manually edited!). The search continues.

RE: xmlHTTP

2005-06-06 Thread Micha Schopman
David, Are you sending the XML with the text/xml content type? Content types are key to valid XML detection. Micha Schopman Project Manager Modern Media, Databankweg 12 M, 3821 AL Amersfoort Tel 033-4535377, Fax 033-4535388 KvK Amersfoort 39081679, Rabo 39.48.05.380

RE: Get New Record ID in mySQL

2005-06-06 Thread Calvin Ward
How about using a UUID for the primary key and then you wouldn't have to do the select? - Calvin -Original Message- From: Jochem van Dieten [mailto:[EMAIL PROTECTED] Sent: Sunday, June 05, 2005 2:23 AM To: CF-Talk Subject: Re: Get New Record ID in mySQL Aaron Rouse wrote: I am not

Re: Trouble with Verisign's cfx_payflowpro tag

2005-06-06 Thread Peter Shaw
Does anyone have this CFX tag working with CFMX7 and Windows 2003 Web? My error is as follows: Error Occurred While Processing Request The system has attempted to use an undefined value, which usually indicates a programming error, either in your code or some system code. Null Pointers are

Re: cf7 debugging - solved - maybe

2005-06-06 Thread Bert Dawson
I think there's a bug in CFMX 7: when you delete a log file through CFadmin it locks the file in someway so the CF won't write anything to it. I think you'll need to stop CF and delete the files manually. The workaround is not to delete but use archive. Cheers Bert On 6/5/05, S. Isaac Dealey

ColdFusion MX 6.1 default path

2005-06-06 Thread simmyana a
Hi, Recently, I reinstalled ColdFusion MX 6.1 and now it is taking IIS as the default web server. it does not seems to respond to http://localhost:8500/;, if i specify http://127.0.0.1:8500/; it is taking the path, but fetching the files from C:\Inetpub, not from C:\CFusionMX folder. Kindly

RE: Get New Record ID in mySQL

2005-06-06 Thread James Holmes
If you don't mind supplying the DB with a key, that would work. This convo has prompetd me to realise that I'm still using a transaction with select max() in Oracle via the default transaction behaviour (i.e not serializable) and there is a small chance, as Jochem said, that this could give an

Re: Trouble with Verisign's cfx_payflowpro tag

2005-06-06 Thread Byron
Hi Peter, I've been using this system on MX7 with no issues. This is the code I use... Byron CFX_PAYFLOWPRO QUERY = PFResponse HOSTADDRESS= test-payflow.verisign.com HOSTPORT = 443 TIMEOUT= 30

Re: nevermind -- asynch cfml gateway - working example

2005-06-06 Thread Joe Rinehart
:) You may want to check out Sean Corfield's Concurrency library - works a lot like Java 5's Concurrency (Futures) - makes life a lot easier: http://www.corfield.org/blog/index.cfm?do=blog.entryentry=E292AEBB-ED0D-6BB0-A2C94BE91E238F93 -Joe On 6/5/05, S. Isaac Dealey [EMAIL PROTECTED] wrote:

Re: Get New Record ID in mySQL

2005-06-06 Thread Deanna Schneider
You can also switch the order of your queries in Oracle, so first you Select myseq.nextval as newid from dual Then you INSERT into mytable(myid) values(newid) On 6/6/05, James Holmes [EMAIL PROTECTED] wrote: If you don't mind supplying the DB with a key, that would work. This convo has

Re: Get New Record ID in mySQL

2005-06-06 Thread Jochem van Dieten
James Holmes wrote: This convo has prompetd me to realise that I'm still using a transaction with select max() in Oracle via the default transaction behaviour (i.e not serializable) and there is a small chance, as Jochem said, that this could give an erroneous result. Due to MVCC this is

RE: Get New Record ID in mySQL

2005-06-06 Thread James Holmes
That's what I thought, but I got different behaviour in my testing (the behaviour I saw is supported by the docs, which I'll quote in a bit). I started two separate transactions (read committed, the default) (call them 1 and 2); inserted in 1, inserted in 2, select max in both, each returns the

RE: Web Based Mail Merge? (not email!)

2005-06-06 Thread Doug Allan
Unfortunately I am still looking for answers for this one. From: Doug Allan [mailto:[EMAIL PROTECTED] Sent: Fri 03/06/2005 21:15 To: CF-Talk Subject: Web Based Mail Merge? (not email!) This is a response to the original post by Andy McShane

RE: Get New Record ID in mySQL

2005-06-06 Thread James Holmes
Yes, I was considering that myself. I rather like having the trigger, because it enforces the correct sequence for the correct table (I can just see myself selecting from the wrong sequence and wondering why my PK was violated). -Original Message- From: Deanna Schneider [mailto:[EMAIL

Re: Get New Record ID in mySQL

2005-06-06 Thread Jochem van Dieten
James Holmes wrote: That's what I thought, but I got different behaviour in my testing (the behaviour I saw is supported by the docs, which I'll quote in a bit). I started two separate transactions (read committed, the default) (call them 1 and 2); inserted in 1, inserted in 2, select max in

Re: Get New Record ID in mySQL

2005-06-06 Thread Jochem van Dieten
James Holmes wrote: Yes, I was considering that myself. I rather like having the trigger, because it enforces the correct sequence for the correct table (I can just see myself selecting from the wrong sequence and wondering why my PK was violated). If you use just one sequence for all tables

Document root element is missing.

2005-06-06 Thread Elena Aminova
I am getting the Document root element is missing. error when i am trying to parse an xml file on this line: cfset kitFile = XmlParse(xmlfile) This problem only occurs on the live server, and NOT on the development server. I have tried debugging and its not the permissions issue, because i

Re: nevermind -- asynch cfml gateway - working example

2005-06-06 Thread S . Isaac Dealey
Thanks Joe, Frustratingly the readme is virtually illegible under Windows... :-/ but I'll have to look at this later as I'm late for work now... :) You may want to check out Sean Corfield's Concurrency library - works a lot like Java 5's Concurrency (Futures) - makes life a lot easier:

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!

RE: Get New Record ID in mySQL

2005-06-06 Thread James Holmes
LOL, good point. I could also use an Oracle GUID as yet another option for a PK. -Original Message- From: Jochem van Dieten [mailto:[EMAIL PROTECTED] Sent: Monday, 6 June 2005 9:21 To: CF-Talk Subject: Re: Get New Record ID in mySQL James Holmes wrote: Yes, I was considering that

RE: Get New Record ID in mySQL

2005-06-06 Thread James Holmes
Yes, Oracle is pretty slick. We always have the option of SERIALIZABLE if we want that behaviour. -Original Message- From: Jochem van Dieten [mailto:[EMAIL PROTECTED] Sent: Monday, 6 June 2005 9:07 To: CF-Talk Subject: Re: Get New Record ID in mySQL James Holmes wrote: That's what I

Re: nevermind -- asynch cfml gateway - working example

2005-06-06 Thread Joe Rinehart
Frustratingly the readme is virtually illegible under Windows... :-/ Use Wordpad instead of Notepad ;) -Joe -- Get Glued! The Model-Glue ColdFusion Framework http://www.model-glue.com ~| Logware (www.logware.us): a new and

RE: flash platform

2005-06-06 Thread Micha Schopman
I expected it, but honestly don't see a clear role for Flash in this part of the market. Why would one choose Flash if other (and mature) options provide better tooling, performance, architecture and end result. It would be if it brought something really new, but why would one choose Flash for

Re: CF 5 and XML

2005-06-06 Thread Claude Schneegans
I thought that rather than messing around with an old XML parser I would parse the data myself. For any parsing application, see CF_REextract here: http://www.contentbox.com/claude/customtags/REextract/testREextract.cfm?p=hf -- ___ REUSE CODE! Use custom

Coldfusion Command to test ODBC Connection Status

2005-06-06 Thread Ashbaugh, Gary D.
Is there a coldfusion command that I can use to test an ODBC connection? I know I can do it through the Coldfusion Administrator, but I want to test an ODBC connection before generating a query using that connection. I am trying to trap an error caused by an ODBC issue (i.e.. database down) and

should be an easy CF issue, yet i am puzzled, please help

2005-06-06 Thread Elena Aminova
I am getting the Document root element is missing. error when i am trying to parse an xml file on this line: cfset kitFile = XmlParse(xmlfile) This problem only occurs on the live server, and NOT on the development server. I have tried debugging and its not the permissions issue, because i can

RE: Document root element is missing.

2005-06-06 Thread David Manriquez
The XMl isn't well formed David Manriquez Desarrollador [EMAIL PROTECTED] (+56-2) 43 00 155 -Mensaje original- De: Elena Aminova [mailto:[EMAIL PROTECTED] Enviado el: Lunes, 06 de Junio de 2005 9:23 Para: CF-Talk Asunto: Document root element is missing. I am

Re: should be an easy CF issue, yet i am puzzled, please help

2005-06-06 Thread JediHomer
Does the file contain the correct XML? On 6/6/05, Elena Aminova [EMAIL PROTECTED] wrote: I am getting the Document root element is missing. error when i am trying to parse an xml file on this line: cfset kitFile = XmlParse(xmlfile) This problem only occurs on the live server, and NOT on

RE: Document root element is missing.

2005-06-06 Thread Aminova, Elena
That couldnt be true, because when i do the same thing on an another server, it works flawlessly, without any bumps on the road. I don't know what could be causing this. I have cleaned up the XML file to the simplest XML for testing purposes, and any well-formed XML file throws this error.

Re: Coldfusion Command to test ODBC Connection Status

2005-06-06 Thread Claude Schneegans
I want to test an ODBC connection before generating a query using that connection. See CFTRY / CFCATCH -- ___ REUSE CODE! Use custom tags; See http://www.contentbox.com/claude/customtags/tagstore.cfm (Please send any spam to this address: [EMAIL PROTECTED])

RE: should be an easy CF issue, yet i am puzzled, please help

2005-06-06 Thread Aminova, Elena
Yes, the file contains the correct XML, if it was the XML issue, the it wouldn't work on other servers, but it does. -Original Message- From: JediHomer [mailto:[EMAIL PROTECTED] Sent: Monday, June 06, 2005 9:46 AM To: CF-Talk Subject: Re: should be an easy CF issue, yet i am puzzled,

RE: Document root element is missing.

2005-06-06 Thread COLLIE David
Outside shot, try wrapping in cfoutput (anywhere you can, especially if using cfxml)... Caught me a few times when enablecfoutputonly is set to yes so you end up trying to parse an empty string -- dc ~| Logware

RE: Coldfusion Command to test ODBC Connection Status

2005-06-06 Thread James Holmes
You can also use the service factory on CFMX if you have access to createobject. -Original Message- From: Claude Schneegans [mailto:[EMAIL PROTECTED] Sent: Monday, 6 June 2005 9:47 To: CF-Talk Subject: Re: Coldfusion Command to test ODBC Connection Status I want to test an ODBC

Re: Document root element is missing.

2005-06-06 Thread Adam Haskell
you are using MX 7? Adam H On 6/6/05, Elena Aminova [EMAIL PROTECTED] wrote: I am getting the Document root element is missing. error when i am trying to parse an xml file on this line: cfset kitFile = XmlParse(xmlfile) This problem only occurs on the live server, and NOT on the

RE: Document root element is missing.

2005-06-06 Thread Aminova, Elena
Well, I am using CFMX on the server that throws an error and CF7 on the one that doesn't throw an error. Can that cause this error? Why would it? -Original Message- From: Adam Haskell [mailto:[EMAIL PROTECTED] Sent: Monday, June 06, 2005 9:59 AM To: CF-Talk Subject: Re: Document root

Calendar

2005-06-06 Thread CFDEV
Hi all, I'm sure it's been asked already but I'm looking for a calendar of events... with an admin panel and pop up (or div over) for events that have a long description... I would also like recurrence and multi-language but it's not priority. Any ideas? Thanks Patrick

RE: Document root element is missing.

2005-06-06 Thread Emmet McGovern
Is the XML doc coming from you or another source? If it's a UTF-8 doc with a byte order marker (BOM) in front of the xml declaration it will fail. I'm not sure about CFMX7 but I'm assuming it was a bug in xmlparse 6 6.1 since technically a BOM can exist and should still validate. Open the xml

Re: Document root element is missing.

2005-06-06 Thread Adam Haskell
MX 7 can take a file name as an arguement MX 6 can not. So yes that would be the issue :) Adam H On 6/6/05, Aminova, Elena [EMAIL PROTECTED] wrote: Well, I am using CFMX on the server that throws an error and CF7 on the one that doesn't throw an error. Can that cause this error? Why would

Calendar

2005-06-06 Thread Larry Lyons
Hi all, I'm sure it's been asked already but I'm looking for a calendar of events... with an admin panel and pop up (or div over) for events that have a long description... I would also like recurrence and multi-language but it's not priority. Any ideas? Thanks Patrick Patrick, I have

Re: CF 5 and XML

2005-06-06 Thread Lee
On Mon, 06 Jun 2005 09:33:25 -0400 Claude Schneegans [EMAIL PROTECTED] wrote: I thought that rather than messing around with an old XML parser I would parse the data myself. For any parsing application, see CF_REextract here:

cybersource COM object

2005-06-06 Thread Cary Mayo
I need help getting the cybersource COM object working in CF 5. I have some code from a gentleman that works in 6.1, but I am getting the following error in CF5 Arguments expected by object does not match arguments specified in the tag here is the code cfscript oRequest =

RE: Document root element is missing.

2005-06-06 Thread Aminova, Elena
Is there a way to fix this without upgarding that server to CF7? If that is the issue... -Original Message- From: Adam Haskell [mailto:[EMAIL PROTECTED] Sent: Monday, June 06, 2005 10:36 AM To: CF-Talk Subject: Re: Document root element is missing. MX 7 can take a file name as an

RE: flash platform

2005-06-06 Thread Kevin Aebig
Not unless they make it easier to implement and publish Flash content to accomodate all different player version. My guess is that with 3 years, you'll be able to publish an swf that'll play on Mobile to Web to Desktop easily and with full functionality between them. Cheers, Kevin -Original

asynch cfml gateway - working example

2005-06-06 Thread dcooper
Here's a quick example of using the Asynchronous CFML Gateway that is setup to demonstrate a 100X performance improvement (from a user's perspective) vs synchronous CFML execution for long-running tasks that can be run in parallel. Hope that helps (watch the URL wrap):

Re: CF 5 and XML

2005-06-06 Thread Claude Schneegans
You would have saved me a couple hours if you would have posted this Friday. Sorry about that, I took the day off ;-) -- ___ REUSE CODE! Use custom tags; See http://www.contentbox.com/claude/customtags/tagstore.cfm (Please send any spam to this address:

RE: Document root element is missing.

2005-06-06 Thread S . Isaac Dealey
Read the file with cffile then pass the variable returned to XMLParse. Is there a way to fix this without upgarding that server to CF7? If that is the issue... -Original Message- From: Adam Haskell [mailto:[EMAIL PROTECTED] Sent: Monday, June 06, 2005 10:36 AM To: CF-Talk

Finding all matching strings in a text dump

2005-06-06 Thread Damien McKenna
I'm doing some processing via cfhttp and the return code is a little messy. I have to check for occurences of ERROR(.[0-9]) and then get the string that comes after them. An example string is: input type=hidden name=ERROR5 value=Incorrect credit card number The question is, how do I extract

Run different thread/process than the Jrun one?

2005-06-06 Thread George Abraham
Hi all, I am a little new to the java/cf integration stuff. This is all occuring on a Windows 2000 test server with CFMX 7 and IIS. I am rewriting a java cfx tag (thanks Aaron Johnson!) for indexing a database using Lucene. Everything works with the cfx tag. But I noticed that for longer indexing

RE: Document root element is missing.

2005-06-06 Thread Mark A Kruger
Check to see if there is debugging on. If you are retrieving the file through cfhttp and debugging is ON for the 127.0.0.1 address you will end up with malformed xml. Add cfsetting showdebugoutput=NO above your output and see. -Original Message- From: Aminova, Elena [mailto:[EMAIL

RE: Calendar

2005-06-06 Thread Kelly Keith
Can you send this to me as well Kelly -Original Message- From: Larry Lyons [mailto:[EMAIL PROTECTED] Sent: Monday, June 06, 2005 8:39 AM To: CF-Talk Subject: Calendar Hi all, I'm sure it's been asked already but I'm looking for a calendar of events... with an admin panel and

RE: Shared CF Host security

2005-06-06 Thread Jamie Price
At the moment, if you use GetPageContext().include() on a JSP on my SmarterLinux server you get a null pointer exception. Regardless, 2 is the case and the code will run in the CF security context of the calling page. The CF sandboxing takes over in this case. Anyone can verify this on their own

RE: Document root element is missing.

2005-06-06 Thread Emmet McGovern
Did you open the file in hexedit like I suggested. I can almost guarantee the presence of a BOM. If you don't have a hex editor you can use a simple executable from http://www-physics.mps.ohio-state.edu/~prewett/hexedit/ to confirm the BOM is in the file. If that's the case, your only options

Re: Finding all matching strings in a text dump

2005-06-06 Thread S . Isaac Dealey
I'm doing some processing via cfhttp and the return code is a little messy. I have to check for occurences of ERROR(.[0-9]) and then get the string that comes after them. An example string is: input type=hidden name=ERROR5 value=Incorrect credit card number The question is, how do I

Macromedia aligns with Eclipse

2005-06-06 Thread Rebecca Wells
Macromedia aligns with Eclipse http://news.com.com/Macromedia+aligns+with+Eclipse/2100-1032_3-5730781.html ~| Logware (www.logware.us): a new and convenient web-based time tracking application. Start tracking and documenting

Re: Document root element is missing.

2005-06-06 Thread Adam Haskell
Sorry I was busy with a new report so my response was not very helpful :( Like Issac said though just use cffile and parse the contents. In MX 6 XMLparse only parsed a string (which it assumed was a well formed XML document, if it wasn't it would spot an error back at you). In MX 7 they added

RE: CF 5 and XML

2005-06-06 Thread James Holmes
You mean you don't just sit around waiting to give free consulting to anyone who needs it at any time of the day? How self-centred is that! -Original Message- From: Claude Schneegans [mailto:[EMAIL PROTECTED] Sent: Monday, 6 June 2005 10:56 To: CF-Talk Subject: Re: CF 5 and XML You

RE: Document root element is missing.

2005-06-06 Thread Aminova, Elena
I have 100s of XML files, if not more to go through, it would be impossible to go through each one of them and strip off everything before the root element... When I do the cffile action=read file=#filename# variable=myxml, it reads the file, but I need it parsed. Any other suggestions?

RE: Calendar

2005-06-06 Thread Trevor Holm-Laursen
I'd be interested as well. Trevor Holm-Laursen eBusiness Developer, FCS FCS (Fundy Computer Services Ltd.) Phone: (902)463-5953 Tel: 877-993-8636 Fax: 902-484-5887 [EMAIL PROTECTED] http://www.fcs.ca The information transmitted is intended only for the person or entity to which it is

Re: Finding all matching strings in a text dump

2005-06-06 Thread Claude Schneegans
This is a perfect job for CF_REextract. See http://www.contentbox.com/claude/customtags/REextract/testingREextract.cfm enter RE1 = ERROR[0-9]* * value= RE2 = * SAMPLETEXT = input type=hidden name=ERROR5 value=Incorrect credit card number and se the result. See the docs about the tag here:

RE: Document root element is missing.

2005-06-06 Thread James Holmes
cffile action=read file=#filename# variable=myxml cfset MyXMLOBJECT = XMLParse(myxml) -Original Message- From: Aminova, Elena [mailto:[EMAIL PROTECTED] Sent: Tuesday, 7 June 2005 12:12 To: CF-Talk Subject: RE: Document root element is missing. I have 100s of XML files, if not more to

Re: Document root element is missing.

2005-06-06 Thread Adam Haskell
after cffile do cfset myXML=xmlParse(myxml) Thats all Adam H On 6/6/05, Aminova, Elena [EMAIL PROTECTED] wrote: I have 100s of XML files, if not more to go through, it would be impossible to go through each one of them and strip off everything before the root element... When I do the

Re: CF 5 and XML

2005-06-06 Thread Lee
On Tue, 7 Jun 2005 00:08:57 +0800 James Holmes [EMAIL PROTECTED] wrote: You mean you don't just sit around waiting to give free consulting to anyone who needs it at any time of the day? How self-centred is that! Hey hey hey. I paid $15 to save about 4 hours of really fun parsing work. It

Re: CF 5 and XML

2005-06-06 Thread Claude Schneegans
How self-centred is that! Right. If I can only sell more of my tags, I'll get myself a WiFi connection and I'll give support from my swiming pool ;-) -- ___ REUSE CODE! Use custom tags; See http://www.contentbox.com/claude/customtags/tagstore.cfm (Please

Re: xmlHTTP

2005-06-06 Thread Rob
On 6/6/05, Micha Schopman [EMAIL PROTECTED] wrote: David, Are you sending the XML with the text/xml content type? Content types are key to valid XML detection. In every browser except IE - so if it's not working in firefox or safari, but is in IE... -- ~Blog~ http://www.robrohan.com ~The

RE: Document root element is missing.

2005-06-06 Thread S . Isaac Dealey
If you know what the root element is, you can write a CF script to strip everything else using a regular expression reasonably easily... maybe even without knowing what the root element is... cfloop query=getFile cffile action=read file=#getFile.path# variable=xml cfset xml =

RE: Document root element is missing.

2005-06-06 Thread Emmet McGovern
So are you saying even after reading with cffile you cant just xmlparse(myxml)? Emmet -Original Message- From: Aminova, Elena [mailto:[EMAIL PROTECTED] Sent: Monday, June 06, 2005 12:12 PM To: CF-Talk Subject: RE: Document root element is missing. I have 100s of XML files, if not more

Re: ThreeSelectRelated Distinct value

2005-06-06 Thread Asim Manzur
I know this is just a matter to write the query. Can someone help me to sort this out? -- Regards, Hi I am using the three select related select box. I have one table, which has, State | City | Name fields. The CustomTag works fine, except there are multiple states are showing in the

RE: CF 5 and XML

2005-06-06 Thread Emmet McGovern
Your swimming pool must be pretty small if you're still waiting for the cash to get WiFi. ;) You must have the same one I do. By the time I'm done blowing it up I need a nap more than a swim. -e -Original Message- From: Claude Schneegans [mailto:[EMAIL PROTECTED] Sent: Monday, June

RE: ThreeSelectRelated Distinct value

2005-06-06 Thread Aminova, Elena
CFQUERY DATASOURCE=#DSN# NAME=TestQuery Select distinct state, city, name from list /CFQUERY Or try the select distinct * from list Elena -Original Message- From: Asim Manzur [mailto:[EMAIL PROTECTED] Sent: Monday, June 06, 2005 12:19 PM To: CF-Talk Subject: Re: ThreeSelectRelated

Re: Trouble with Verisign's cfx_payflowpro tag

2005-06-06 Thread Peter Shaw
Hi Peter, I've been using this system on MX7 with no issues. This is the code I use... Thanks Byron, That doesn't work for me. Instead I have to include an empty PARMLIST = argument in the tag call. Verisign indicated that this was necessary for all editions of MX. Peter

Re: Calendar

2005-06-06 Thread mac jordan
On 6/6/05, Larry Lyons [EMAIL PROTECTED] wrote: I have one I've released under a creative commons license. If interested send me an email and I'll send you a copy. I'd love to see a copy of that if possible -- mac jordan home: www.kestrel.org http://www.kestrel.org work:

Re: asynch cfml gateway - working example

2005-06-06 Thread Douglas Knudsen
I have not been able to play with this stuff yet, but D. Cooper's blog entry had this Imagine spawning off long running DB queries in parallel, for example. Page response times for most existing CF applications, in fact, would probably have some place that could make use of such a capability to

RE: Document root element is missing... Another issue rises

2005-06-06 Thread Aminova, Elena
I have added the cffile and it gets rid of the Document root element is missing. finally, but it doesn't make sense to me a little, why first reading the file and then parsing it would solve this issue. But thank you so much everyone for your help and input! Another issue rises though, on some

RE: Get New Record ID in ORACLE

2005-06-06 Thread RADEMAKERS Tanguy
You don't need to use triggers at all if you use stored procedures: --setup.sql--- CREATE TABLE t ( IDINTEGER NOT NULL, NAME VARCHAR2(50) ); CREATE SEQUENCE s; CREATE OR REPLACE PROCEDURE t_insert (newname IN VARCHAR2, newid OUT

RE: Calendar

2005-06-06 Thread Aminova, Elena
Me too, please send it to me as well, Thanks Elena -Original Message- From: Trevor Holm-Laursen [mailto:[EMAIL PROTECTED] Sent: Monday, June 06, 2005 12:09 PM To: CF-Talk Subject: RE: Calendar I'd be interested as well. Trevor Holm-Laursen eBusiness Developer, FCS FCS (Fundy Computer

RE: Document root element is missing... Another issue rises

2005-06-06 Thread Emmet McGovern
Code? -e -Original Message- From: Aminova, Elena [mailto:[EMAIL PROTECTED] Sent: Monday, June 06, 2005 1:09 PM To: CF-Talk Subject: RE: Document root element is missing... Another issue rises I have added the cffile and it gets rid of the Document root element is missing. finally, but

RE: ThreeSelectRelated Distinct value

2005-06-06 Thread Asim Manzur
Thanks Elena, I tried it in this way, and the result was same, it didn't work. any otherway to run the query, which give me the distinct value, i.e. QoQ? Thanks CFQUERY DATASOURCE=#DSN# NAME=TestQuery Select distinct state, city, name from list /CFQUERY Or try the select distinct * from

equal to null

2005-06-06 Thread Daniel Kessler
I need to make a variable null, because it's tested for with structKeyExists(session,'myVar') and I need that to fail in certain conditions. Sorry for the simple question but I went to Reserved Words and null is in there but it doesn't seem to work in my code: cfset session.session.return_url

Re: equal to null

2005-06-06 Thread Barney Boisvert
use structDelete(session, myVar) to delete the variable. Null (if it even exists) would still cause structKeyExists to return true, so that's not what you want, even if it were possible. cheers, barneyb On 6/6/05, Daniel Kessler [EMAIL PROTECTED] wrote: I need to make a variable null, because

Re: Zipping or Rar Large Files with Coldfusion

2005-06-06 Thread Qasim Rasheed
Massimo, Your donload link is actually downloading the file_io cfc instead of zip cfc. AM I missing something? Thanks Qasim On 6/6/05, Massimo, Tiziana e Federica [EMAIL PROTECTED] wrote: I also wrote a CFC for zip: http://www.olimpo.ch/tmt/cfc/tmt_zip/ But I guess for such large

Re: equal to null

2005-06-06 Thread Deanna Schneider
CF doesn't really deal with nulls well - in fact, there's really no such thing as a null in CF. If you want your test to work, you can get rid of the session key entirely. Just use structDelete(session, myVar) to eliminate it. On 6/6/05, Daniel Kessler [EMAIL PROTECTED] wrote: I need to make a

RE: equal to null

2005-06-06 Thread Russ
Try structDelete(session.session, return_url) -Original Message- From: Daniel Kessler [mailto:[EMAIL PROTECTED] Sent: Monday, June 06, 2005 2:42 PM To: CF-Talk Subject: equal to null I need to make a variable null, because it's tested for with structKeyExists(session,'myVar') and I

Re: equal to null

2005-06-06 Thread daniel kessler
ah great. No wonder my searches turned up little. Thanks all. I think this is what I needed. use structDelete(session, myVar) to delete the variable. Null (if it even exists) would still cause structKeyExists to return true, so that's not what you want, even if it were possible. cheers,

Re: Zipping or Rar Large Files with Coldfusion

2005-06-06 Thread Massimo, Tiziana e Federica
Massimo, Your donload link is actually downloading the file_io cfc instead of zip cfc. AM I missing something? Oppps! I moved all the zip files to massimocorner.com a few days ago, looks like I messed things a bit in the process :-( Thanks for the pointer. The direct link is:

RE: submit a form to two servers...

2005-06-06 Thread Kevin Penny
A web Service Might also work well in this situation (one server to another) Kevin Penny www.Hotgigs.com -Original Message- From: Victor Moore [mailto:[EMAIL PROTECTED] Sent: Sunday, June 05, 2005 8:30 AM To: CF-Talk Subject: Re: submit a form to two servers... Thanks Mike, The funny

FW: calendar

2005-06-06 Thread CFDEV
A nyone has a copye of thie calendar.. the link is dead on the site. http://www.infusiontechnology.com/web http://www.infusiontechnology.com/web Pat ~| Logware (www.logware.us): a new and convenient web-based time

CFMX interacting with JSP/JAVA examples

2005-06-06 Thread Ciliotta, Mario
Hi, I was wondering if anyone might have an samples or any links to sites that show CFMX interacting with Java or JSP pages. I am new Java and I am just looking for some examples to look at and learn from. Thanks Mario

CRM products

2005-06-06 Thread Russ
We're looking for a CRM package to integrate with our current offering. Can anyone recommend any (preferably open-source, preferably CF) packages that are out there? Russ ~| Discover CFTicket - The leading ColdFusion

Re: FW: calendar

2005-06-06 Thread Mark Madras
You can find it on Macromedia's Cold Fusion Developer Exchange Forum. -Mark On 6/6/05, CFDEV [EMAIL PROTECTED] wrote: A nyone has a copye of thie calendar.. the link is dead on the site. http://www.infusiontechnology.com/web http://www.infusiontechnology.com/web Pat

Actionscript equiv to decimalFormat()

2005-06-06 Thread Ken Ferguson
Is there one? I know that all numbers in AS are floating point numbers, but I'm returning a value from a function like this: (simplified code...) y = Number(itemValue) * Number(quantity); subTotalValue.text = y; When the value is something like 29, I'd like it to show as 29.00 instead. It's

CFMX interacting with JSP/JAVA examples

2005-06-06 Thread Michael Dinowitz
Interacting in what way? I've seen a number of UDFs that make use of one or more lines of Java code to do their work. These are small and are probably not what your looking for. For example, this code: var thread = createObject(java, java.lang.Thread); thread.sleep(ms); calls the

Re: CRM products

2005-06-06 Thread Matthew Blatchley
Russ, if your looking for an in-expensive package with the same type of functionality as the more expensive salesforce, netsuite etc, take a look at www.bridgeleafsoftware.com and www.bridgedexchange.com I've been developing them for over three years now on my own and you may find it suits

RE: Actionscript equiv to decimalFormat()

2005-06-06 Thread Kevin Aebig
Hey Ken, Theres not really a nice way to do this actually.Heres a prototype... it should do the trick. Number.prototype.addCents = function() { var a = ((Math.round(this*100)/100)+).split(.); a[1] = (a[1]+00).substr(0, 2); return a.join(.); }; // Usage var price = 123.4; var discount = 56.8;

RE: CRM products

2005-06-06 Thread Kevin Aebig
We maintain a CRM package that we've built over the last 6 years for Financial Advisors and Security Dealers. What kind of functionality are you looking for? Kevin -Original Message- From: Russ [mailto:[EMAIL PROTECTED] Sent: Monday, June 06, 2005 2:28 PM To: CF-Talk Subject: CRM

RE: Calendar

2005-06-06 Thread Brad Roberts
Is it available online? Trying to avoid the me, too snowball. Brad Roberts -Original Message- From: Larry Lyons [mailto:[EMAIL PROTECTED] Sent: Monday, June 06, 2005 10:39 AM To: CF-Talk Subject: Calendar Hi all, I'm sure it's been asked already but I'm looking for a calendar of

RE: Document root element is missing... Another issue rises

2005-06-06 Thread S . Isaac Dealey
-Original Message- From: Aminova, Elena [mailto:[EMAIL PROTECTED] Sent: Monday, June 06, 2005 1:09 PM To: CF-Talk Subject: RE: Document root element is missing... Another issue rises I have added the cffile and it gets rid of the Document root element is missing. finally, but it

Re: asynch cfml gateway - working example

2005-06-06 Thread S . Isaac Dealey
I have not been able to play with this stuff yet, but D. Cooper's blog entry had this Imagine spawning off long running DB queries in parallel, for example. Page response times for most existing CF applications, in fact, would probably have some place that could make use of such a

Re: CRM products

2005-06-06 Thread Jeremy Adams
Check out sugar CRM. http://www.sugarcrm.com -- it's written in php and is open source. Has it all. On 6/6/05, Kevin Aebig [EMAIL PROTECTED] wrote: We maintain a CRM package that we've built over the last 6 years for Financial Advisors and Security Dealers. What kind of functionality are you

CF equivalent to php's mysql_insert_id() function?

2005-06-06 Thread Bob Flynn
This function returns the last inserted ID in MySQL. I have read the threads about getting it from MS SQL, but that is done in the SQL. Is there a way to do it for MySQL with CFML? Thanks, Bob ~| Logware (www.logware.us): a

  1   2   >