RE: Custom cfheader/cfcontent issues

2004-02-12 Thread Pascal Peters
Have you tried: cfheader name=content-disposition value=inline; filename=#fullDisplayName# Pascal -Original Message- From: Kevin Marino [mailto:[EMAIL PROTECTED] Sent: woensdag 11 februari 2004 18:58 To: CF-Talk Subject: Custom cfheader/cfcontent issues Hola, I am running

the oracle, the stored procedure and the cfstoredproc

2004-02-12 Thread Thomas Chiverton
I know I should be able to work this out, but it's wall butting time. I have a procedure in Oracle 9i, declared: TYPE ref_cursor IS REF CURSOR; ... PROCEDURE get_available_reports(user_name_in IN VARCHAR2, available_reports_out OUT ref_cursor); and

Multilingual

2004-02-12 Thread Thariq Ibrahim
Hi , I am working on the initial stage development of a multilingual site in cold fusion.I'd like to know if someone had experience designing a multilingual web site in coldfusion? Can anyone tell me how we could go ahead with cold fusion for multi lingual operation where web pages are loaded

Re: Multilingual

2004-02-12 Thread Paul Hastings
I am working on the initial stage development of a multilingual site in cold fusion.I'd like to know if someone had experience designing a multilingual web site in coldfusion? Can anyone tell me how we could go ahead with cold fusion for multi lingual first off you should be using mx (6.1). next

Re:Multilingual

2004-02-12 Thread Thariq Ibrahim
I am working on the initial stage development of a multilingual site in cold fusion.I'd like to know if someone had experience designing a multilingual web site in coldfusion? Can anyone tell me how we could go ahead with cold fusion for multi lingual first off you should be using mx (6.1). next

RE: Multilingual

2004-02-12 Thread Nando
Which languages are you aiming for Thari? And yes, which version of CF would you be using? -Original Message- From: Thariq Ibrahim [mailto:[EMAIL PROTECTED] Sent: Thursday, February 12, 2004 11:02 AM To: CF-Talk Subject: Multilingual Hi , I am working on the initial stage development of

Re:Multilingual

2004-02-12 Thread Thariq Ibrahim
I am working on macromedia cold fusion 5 and oracle 8i as backend for the development. [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]

RE: Multilingual

2004-02-12 Thread Nando
Which languages? On CF5 we've done a few hebrew - english sites and lots of mixed european language / english sites. I think you can also do Arabic on CF5, but not 100% For chinese, you'll need CFMX tho' and a utf-8 compatible DB driver. Our latest project uses chinese. Non supported locales you

Re: Re:Problems talking with Oracle...

2004-02-12 Thread Deanna Schneider
It doesn't look to me like that's telling you anything about a username. It looks like it's just opening a connection and running a pretty standard query. Are you sure you're looking at the right piece of code? -Deanna - Original Message - From: Brian Yager [EMAIL PROTECTED] To: CF-Talk

RE: Which is quicker

2004-02-12 Thread Bill Grover
The one place I've found that I really like the IIF is to use it in areas like the following code sample: input type=checkbox name=#REQUEST.cReorderFormArtPrefix##ReorderJob.ljob# value=Yes #IIF(laReorderJobs[lnLoop][REQUEST.cReorderFormArtPrefix] NEQ , DE(CHECKED), DE())# I found using it

CF Application Security

2004-02-12 Thread Tangorre, Michael
What is a better approach to protecting and validating URL parameters? Encrypt URL parameter values then decrypt them when the need to use them arises? OR Check to make sure the variable and its value are legitimate for a user by querying the data store or cross checking? OR Both [Todays

RE: Which is quicker

2004-02-12 Thread David Ashworth
you wouldn't have to code it twice using CFIF just have the CFIF around the checked parameter input type=checkbox name=cbox value=yes cfif x=ychecked/cfif -Original Message- From: Bill Grover [mailto:[EMAIL PROTECTED] Sent: 12 February 2004 12:47 To: CF-Talk Subject: RE: Which is

RE: Custom cfheader/cfcontent issues

2004-02-12 Thread Kevin Marino
Yeah I have. -Kevin Marino -- Webmaster - HealthObjects [EMAIL PROTECTED] 410 895 0377 ** This e-mail and any attachments may contain information which is confidential, proprietary, privileged or otherwise

RE: Which is quicker

2004-02-12 Thread Bill Grover
Interesting, thanks.I thought I had done that before and received an error about not being able to nest the CFIF tag inside another tag.But it is very possible I was using a CFINPUT instead of a regular INPUT.I was probably on v4.01 at the time as well.

RE: Which is quicker

2004-02-12 Thread Philip Arnold
The one place I've found that I really like the IIF is to use it in areas like the following code sample: input type=checkbox name=#REQUEST.cReorderFormArtPrefix##ReorderJob.ljob# value=Yes #IIF(laReorderJobs[lnLoop][REQUEST.cReorderFormArtPrefix] NEQ , DE(CHECKED), DE())# I found

RE: Custom tag for data validation - tell me if I'm crazy

2004-02-12 Thread Qasim Rasheed
I would recommend you to take a look at qform API. http://www.pengoworks.com/qforms/docs/ Qasim -Original Message- From: Austin Govella [mailto:[EMAIL PROTECTED] Sent: Wednesday, February 11, 2004 9:06 PM To: CF-Talk Subject: Custom tag for data validation - tell me if I'm crazy

RE: Which is quicker

2004-02-12 Thread Philip Arnold
Interesting, thanks.I thought I had done that before and received an error about not being able to nest the CFIF tag inside another tag.But it is very possible I was using a CFINPUT instead of a regular INPUT.I was probably on v4.01 at the time as well. It's only CF tags that you can't

RE: Which is quicker

2004-02-12 Thread Nando
or outside the tag: cfif x=y isChecked = checked else isChecked = checked /cfif input type=checkbox name=cbox value=yes #isChecked# -Original Message- From: Bill Grover [mailto:[EMAIL PROTECTED] Sent: Thursday, February 12, 2004 3:03 PM To: CF-Talk Subject: RE: Which is quicker

RE: Which is quicker

2004-02-12 Thread Philip Arnold
or outside the tag: cfif x=y isChecked = checked else isChecked = checked /cfif input type=checkbox name=cbox value=yes #isChecked# Only if you want it to always be checked g Oh, and to break since you can't do cfif x=y it'd have to be cfif x eq y [Todays Threads] [This Message]

RE: Which is quicker

2004-02-12 Thread David Ashworth
doh still in the transitional phase from ASP to ColdFusion but you catch my drift -Original Message- From: Philip Arnold [mailto:[EMAIL PROTECTED] Sent: 12 February 2004 14:26 To: CF-Talk Subject: RE: Which is quicker or outside the tag: cfif x=y isChecked = checked else

RE: CF Application Security

2004-02-12 Thread Raymond Camden
Only the second is absolutely the safest as it's possible someone could crack your encryption. However, you can use both. There is nothing wrong with a being a bit anal. [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]

Re: CF Application Security

2004-02-12 Thread Thomas Chiverton
On Thursday 12 February 2004 13:54 pm, Tangorre, Michael wrote: What is a better approach to protecting and validating URL parameters? Don't use them. Store what you need server side (session scope for instance). -- Tom Chiverton Advanced ColdFusion Programmer Tel: +44(0)1749 834997 email:

RE: Which is quicker

2004-02-12 Thread Nando
sorry, you're right! ... too quick! -Original Message- From: Philip Arnold [mailto:[EMAIL PROTECTED] Sent: Thursday, February 12, 2004 3:26 PM To: CF-Talk Subject: RE: Which is quicker or outside the tag: cfif x=y isChecked = checked else isChecked = checked /cfif input

Re:Problems talking with Oracle...

2004-02-12 Thread Brian Yager
This is the piece of code that I am having a hard time writing in CF.Basically, I am wanting to create the object so I can use it and it's methods...There is a lot more code then what I have listed...This is just the code that creates it. Thanks, Brian It doesn't look to me like that's telling

Re: the oracle, the stored procedure and the cfstoredproc

2004-02-12 Thread Thomas Chiverton
On Thursday 12 February 2004 09:45 am, Thomas Chiverton wrote: Anyone fancy pointing out the early morning obvious ? And it all works if I log in directly as the CF user and do: declare type ref_curr is REF CURSOR; ret_curr ref_curr; begin bf_report.client_facade_pkg.get_available_reports

cfhttp tag failed

2004-02-12 Thread Don
Hello, I'm using CFHTTP calling eBay sandbox.The EXACT code works fine with another developer's box, he's on CF6.1 for Windows while I'm using CF6.0 for Windows as well. I do not want to upgrade to 6.01 at this point. Is that a bug in CF6.0 or ?Any one with eBay experience please advise. TIA

Re: Re:Problems talking with Oracle...

2004-02-12 Thread Deanna Schneider
You don't have to make connections to oracle in CF, though. All you have to is use the cfquery tag. It seems like this would do what you're wanting: cfset username = dadada cfset password = a ConnectString = DEV UID= Username / Password These should be set in your CF Datasource, then

RE: cfhttp tag failed

2004-02-12 Thread Mosh Teitelbaum
In what way did the CFHTTP fail?What was the error message, what does the code look like, and what are you trying to have it do? -- Mosh Teitelbaum evoch, LLC Tel: (301) 942-5378 Fax: (301) 933-3651 Email: [EMAIL PROTECTED] WWW: http://www.evoch.com/ -Original Message- From: Chunshen

Re:cfhttp tag failed

2004-02-12 Thread Don
Thanks, Mosh, here's code (objective, testing connection to eBay API box) code start -- cfset CompatibilityLevel = 311 cfset DeveloperName = W9LA6MJ48O3GIDCE1N1JE3K15BY795 cfset ApplicationName = DLC354PZ946F5GBKTIR4OA18U9CB3J cfset CertificateName = M59JS1K9Y61$E7XG26E92-872ZCEFK cfset

RE: cfhttp tag failed

2004-02-12 Thread Hagan, Ryan Mr (Contractor ACI)
Have you tried connecting to other HTTPS sites using cfhttp as a test? For instance: cfhttp url= "" https://www.verisign.com/ cfdump var=#cfhttp# Older versions of CFMX (ie 6.0) have had problems with the HTTPS protocal using cfhttp. -Original Message- From: Chunshen Li

cf app: inventory and software mgt tool

2004-02-12 Thread Won Lee
Hello, Looked through the exchange at macromedia.com but couldn't find anything. I'm looking for a free hardware and inventory management system. Our IT manager wants to be able to see at a glance what server, workstation, and software we currently have and the associated licenses for the

Re: Multilingual

2004-02-12 Thread Paul Hastings
Which languages? On CF5 we've done a few hebrew - english sites and lots of mixed european language / english sites. I think you can also do Arabic on CF5, but not 100% it's really not a good idea to attempt a g11n app with cf5. not at all. Non supported locales you can get around in CF5, you

Re: Re:Multilingual

2004-02-12 Thread Paul Hastings
Thanks a lot for the information Paul.Could you please tell me what you meant by resourceBundles? And how to go about with the logical part for the transalation.I would appreciate if anyone could provide some documents with this regard. if you're going to attempt this under cf5, its really not

Homesite namespaced custom tags

2004-02-12 Thread Rich Ziade
I'm a big fan of Homesite and I like to use the CFIMPORT tag to reference custom tag libraries. I know Homesite has VTML support so you can create code hints for custom tags, but I can't get it to work with namespaced custom tags. For example, if I have a custom tag called cache, I can create

RE: CF Application Security

2004-02-12 Thread Matt Robertson
if you can cross-check stored data at all don't pass it in the first place, assuming I'm properly understanding what you're saying. When I have to use url vars, I encrypt when I feel the need.cf_cryp is pretty handy for that, partly at least because its free.

RE: cfhttp tag failed

2004-02-12 Thread Mosh Teitelbaum
So, it looks like the problem has to do with one of your CFHTTPPARAM tags. First, try CFDUMPing the CFCATCH scope from within you CFCATCH block.That might give you some more information. Another option to consider is that you might have to explicitly specify the port.Most HTTPS connections come

Help me avoid Evaluate (*ahem* Ray)

2004-02-12 Thread G
Fairly new to working with structures in Cold Fusion. I have the name of the structure stored in a variable, along with the name of the field within the structure that i need to display. What's the correct syntax to display the actual value saved in structure_name.field_name? Thanks, Brian

RE: Help me avoid Evaluate (*ahem* Ray)

2004-02-12 Thread Raymond Camden
Well, if just the field is dynamic... cfoutput#theStruct[theField]#/cfoutput Don't forget that the value must be simple of course. Another example: cfset myValue = theStruct[theField] If the -struct- name itself is dynamic, in MX you can do: cfoutput#variables[theStruct][theField]#/cfoutput

Re: Help me avoid Evaluate (*ahem* Ray)

2004-02-12 Thread Jochem van Dieten
G wrote: What's the correct syntax to display the actual value saved in structure_name.field_name? variables[structure_name][filed_name] Jochem -- I don't get it immigrants don't work and steal our jobs - Loesje [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe]

Re:cfhttp tag failed

2004-02-12 Thread Don
I tried your techniques, same err. So, it looks like the problem has to do with one of your CFHTTPPARAM tags. First, try CFDUMPing the CFCATCH scope from within you CFCATCH block.That might give you some more information. Another option to consider is that you might have to explicitly specify

RE: Multilingual

2004-02-12 Thread Nando
isn't worth the effort to do this w/cf5. Well, the guy i was working for only had cf5 on his server ... and he got paid and he paid me, and the client(s) were happy. So it was worth it for us. There are lots of multilingual sites and foreign (to the US) language sites running on CF5. Chinese is

convert evaluate to [] notation.

2004-02-12 Thread DURETTE, STEVEN J (AIT)
Hi all, Alright this one has me stumped (because of lack of sleep I think). I currently have this: cfset Variables.employee_name = evaluate(#Variables.myQueryName#.employee_name) and I want to get rid of the evaluate.Problem is that the Variables.myQueryName is the scope. Anyone

Re:cfhttp tag failed

2004-02-12 Thread Don
Older versions of CFMX (ie 6.0) have had problems with the HTTPS protocal using cfhttp. This could be it.I switch https protocol to http (suppose the web server on ebay's sandbox machine would support that too, shouldn't it? unless they disabled it),same err. Older versions of CFMX (ie 6.0),

Re: convert evaluate to [] notation.

2004-02-12 Thread Jochem van Dieten
DURETTE, STEVEN J (AIT) wrote: I currently have this: cfset Variables.employee_name = evaluate(#Variables.myQueryName#.employee_name) and I want to get rid of the evaluate.Problem is that the Variables.myQueryName is the scope. variables[myQueryName][employee_name] Jochem -- I don't

RE: Multilingual

2004-02-12 Thread Matt Robertson
Paul is the resident guru on this subject, and I'm just a beginner, but I'll try and take a stab at your question, with regard to a very basic type of resource bundle.I'm sure there's much more to this but here's how my CMPro cms handles it: First of all, all text that a user sees in the site has

Re:Problems talking with Oracle (oracle object and methods)...

2004-02-12 Thread Brian Yager
I am wanting to use the oracle object so I can use the oracle methods.This way, I can change oracle passwords and such through my application. Brian You don't have to make connections to oracle in CF, though. All you have to is use the cfquery tag. It seems like this would do what you're

RE: convert evaluate to [] notation.

2004-02-12 Thread Raymond Camden
Don't forget when you use bracket notation with queries you MUST specify a row num, so just add [1] to the end (for one row queries, [x] for row X of course). [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]

RE: convert evaluate to [] notation.

2004-02-12 Thread DURETTE, STEVEN J (AIT)
Thanks. cfloop from=1 to=100 index=Variables.dummy cf_beatHeadOnDesk /cfloop Steve -Original Message- From: Jochem van Dieten [mailto:[EMAIL PROTECTED] Sent: Thursday, February 12, 2004 11:06 AM To: CF-Talk Subject: Re: convert evaluate to [] notation. DURETTE, STEVEN J (AIT)

Re: Problems talking with Oracle (oracle object and methods)...

2004-02-12 Thread Jochem van Dieten
Brian Yager wrote: I am wanting to use the oracle object so I can use the oracle methods.This way, I can change oracle passwords and such through my application. ISTM that the Oracle object is nothing but a wrapper for SQL-ish statements. You should be able to do everything through for

Re: Multilingual

2004-02-12 Thread Paul Hastings
Well, the guy i was working for only had cf5 on his server ... and he got paid and he paid me, and the client(s) were happy. So it was worth it for us. There are lots of multilingual sites and foreign (to the US) language sites running on CF5. good for you and in the long run too bad for the

Re:cfhttp tag failed

2004-02-12 Thread Don
Tried cfhttp url= "" https://www.verisign.com/ Connection Failure. Have you tried connecting to other HTTPS sites using cfhttp as a test? For instance: cfhttp url= "" https://www.verisign.com/ cfdump var=#cfhttp# Older versions of CFMX (ie 6.0) have had problems with the HTTPS protocal

RE: Multilingual

2004-02-12 Thread Nando
OK Paul, i'll never try it again ... i promise. :) But the guy who asked the question said he's running CF5: I am working on macromedia cold fusion 5 and oracle 8i as backend for the development. And depending on which languages you're aiming for, using CF5 isn't necessarily difficult, so i

Contribution: Capturing Standard Error for use with CFEXECUTE

2004-02-12 Thread David Adams
Have you ever needed to capture output from Standard Error so that you can put it into cfexecute outputfile= or cfexecute variable= on a UNIX system? For example if you run: cfexecute arguments=-z name=/bin/ls variable=result timeout=60/cfexecute cfoutput#result#/cfoutput, this will result in no

Importing CSV into Database

2004-02-12 Thread Jillian Carroll
Good morning, I am having a heck of a time with this little import script.When it runs, all I receive are the messages that 'An error occurred while updating the database.' (as I indicated it should do if the query fails) Can anybody point me in the right direction? Thanks!! -- Jillian ***

Re:Contribution: Capturing Standard Error for use with CFEXECUTE

2004-02-12 Thread David Adams
Oops, I guess CFTALK does not allow PERL script to be displayed because I cut-n-paste the script into my message. Well, if anyone wants it, just email me. Dave Adams ([EMAIL PROTECTED]) [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]

RE: Homesite namespaced custom tags

2004-02-12 Thread Raymond Camden
Rich, I spoke w/ two members of the HS team, Farah Gron and Darin Cayon, shared the following with me: In the user's example, if cache.vtm is in \Extensions\TagDefs\UTIL folder then util:cache will work for tag insight, tag inspector, and tag editing.They may even get a list of all the tags

Re: Importing CSV into Database

2004-02-12 Thread Phillip B
I don't know what the data you are trying to insert is but I would make sure of a few things. Make sure that the only commas in the file are the delimiters. Check to make sure your not putting a string into an int field. Also, you have a comma at the end of your SQL statement. '#ListGetAt(l,

Re: the oracle, the stored procedure and the cfstoredproc

2004-02-12 Thread Thomas Chiverton
so it must be CF screwing up somewhere - argh ! And if I use the CF ORacle drivers (rather than a WebLogic JDBC pool), and the code which should work according to the docs: cfstoredproc dataSource=#request.dsn# procedure=bf_report.client_facade_pkg.get_available_reports debug=Yes cfprocparam

RE: the oracle, the stored procedure and the cfstoredproc

2004-02-12 Thread Kevin Marino
have you checked to see if procparam are in same order they are in stored procedure. MM JDBC driver does not support named parameters only positional, meaning the order you set them in cfstoredproc must be same as order in Oracle Proc. :( -Kevin Marino -- Webmaster -

OT: got post rejection-hehe

2004-02-12 Thread Kevin Marino
eManager Notification * The following message was blocked because it contains sensitive content. Source mailbox: [EMAIL PROTECTED] Destination mailbox(es): [EMAIL PROTECTED] Rule/Policy: Profanity Action: Quarantine to

IE 6 CFCookie

2004-02-12 Thread Dowdell, Jason G
Hi All, I have an application that sets 3 cookies using cfcookie using the following syntax cfcookie name=UserID expires=NEVER value=#Request.CookieInfo# The syntax is the same for all 3 cookies except for the fact that they have different names. I'm using _javascript_ to redirect the user to

Re: the oracle, the stored procedure and the cfstoredproc

2004-02-12 Thread Thomas Chiverton
On Thursday 12 February 2004 17:20 pm, Kevin Marino wrote: have you checked to see if procparam are in same order they are in stored procedure. Yup. I posted the spec of the procedure earlier. I got a message about profanty or some such nonsense too, but my post also showed up - are you

RE: got post rejection-hehe

2004-02-12 Thread [EMAIL PROTECTED]
Hmmm,guess that would be our content filter then. You probably said one of those words that one person thins might be offensive but, which nobody else would care about. -Darren -Original Message- From: Kevin Marino [mailto:[EMAIL PROTECTED] Sent: 12 February 2004 17:27 To: CF-Talk

Re: Multilingual

2004-02-12 Thread Paul Hastings
But the guy who asked the question said he's running CF5: and that should be that for a multilingual app. unless by multilingual he meant us english vs uk english ;-) [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]

RE: the oracle, the stored procedure and the cfstoredproc

2004-02-12 Thread Plunkett, Matt
What version of CF are you using? -Original Message- From: Thomas Chiverton [mailto:[EMAIL PROTECTED] Sent: Thursday, February 12, 2004 4:46 AM To: CF-Talk Subject: the oracle, the stored procedure and the cfstoredproc I know I should be able to work this out, but it's wall butting

Re: Contribution: Capturing Standard Error for use with CFEXECUTE

2004-02-12 Thread Rob Rohan
You can redirect stderr to stdout by doing [EMAIL PROTECTED] rob]$ ls 21 the 21 says take stderr (2) and put it where stdout (1) goes. On Thu, 2004-02-12 at 07:55, David Adams wrote: Have you ever needed to capture output from Standard Error so that you can put it into cfexecute outputfile=

RE: Importing CSV into Database - Update

2004-02-12 Thread Jillian Carroll
I've played with this a little more.The error I am now getting (after removing the cftry so I could see) is this: *** *** *** Error Diagnostic Information An error occurred while evaluating the _expression_: #ListGetAt(l, 2)# Error near line 56, column 8. In function ListGetAt(list, index [,

Re: the oracle, the stored procedure and the cfstoredproc

2004-02-12 Thread Nick Han
hey, assuming your stored proc is working when you tested in sql plus. you're missing a cfprocparam declaration for ref cursor. add this to your calling code, below your userId param. cfprocparam type=out cfsqltype=CF_SQL_REFCURSOR variable=AnyVarNamemaxrows=-1 Nick Han [EMAIL PROTECTED]

Re: Contribution: Capturing Standard Error for use with CFEXECUTE

2004-02-12 Thread Rob Rohan
On Thu, 2004-02-12 at 10:03, Rob Rohan wrote: You can redirect stderr to stdout by doing [EMAIL PROTECTED] rob]$ ls 21 the 21 says take stderr (2) and put it where stdout (1) goes. (depending on your shell of course - thats for bash and sh) -- Vale, Rob Luxuria immodica insaniam creat.

OT: CF Odyssey 2001

2004-02-12 Thread Emmet McGovern
I know this is a far fetch, but does anyone remember the recommended hotel from CF Odyssey 2001?I think it was something red or something like that.I know the hotel was wired and had playstations in the room. Hip and cool. -emmet [Todays Threads] [This Message] [Subscription] [Fast

Re: Multilingual

2004-02-12 Thread Paul Hastings
Paul is the resident guru on this subject, and I'm just a beginner, but thanks matt but i'm more of a student of i18n. and what i meant by resourceBundles (rb) was more java style--the java world has been at this at lot longer than any of us, so maybe we should take a cue from them.with most

RE: CF Odyssey 2001

2004-02-12 Thread Cameron Childress
I know this is a far fetch, but does anyone remember the recommended hotel from CF Odyssey 2001? http://www.cfconf.org/2001cf_odyssey/ -Cameron (the google proxy) - Cameron Childress Sumo Consulting Inc --- land:858.509.3098 cell:678.637.5072 aim:cameroncf email: [EMAIL

RE: the oracle, the stored procedure and the cfstoredproc

2004-02-12 Thread Kevin Marino
We are running CF MX 6.1 . This problem happens with both versions of JDBC MM recommends. Oh Windows 2000 and 2003 servers -Kevin Marino -- Webmaster - HealthObjects [EMAIL PROTECTED] 410 895 0377 ** This e-mail

RE: Multilingual

2004-02-12 Thread Matt Robertson
Totally awesome blog, Paul.I've heard about it before but haven't had the chance to stop by. Something I need to take some serious time to get into, as it looks like there's buckets of opportunity in the Far East right now.Getting more and more work from over there.CFMX is an absolute Godsend

CFHTTP AND SSL

2004-02-12 Thread Brook Davies
have been trying to get SSL to work over CFHTTP within CFMX 6.1 for some time with no success. I searched the archives and found this hack: http://mxc.blogspot.com/2002_12_15_mxc_archive.html And implemented it on our CFMX server, when I run C:\CFusionMX\runtime\jre\libkeytool -list -storepass

Print to PDF

2004-02-12 Thread Jones, Becky
Does anyone know of any shareware or freeware plug in where i can print my pages to pdf? * This e-mail, including any attachments, is intended for the receipt and use by the intended addressee(s), and may contain confidential and privileged

Re: Print to PDF

2004-02-12 Thread Bryan Stevenson
if on Windows...hands down custom tag HTML2PDF3 (requires the install of HTMLDoc.exe) Works GREAT!! If you need something really fancy, there are a couple of us on list right now heavy into the iText.jar approach (very low level control of PDF layout and properties) HTH Cheers Bryan Stevenson

RE: CFHTTP AND SSL

2004-02-12 Thread Smith, Matthew P -CONT(CSC)
did you import to the proper jvm?I had to do this for navy issued certs, and it worked fine.I do not know if there are different keystores for each jvm you might have on there, or if you would have to be sure that you are importing the CA to the proper JVM if the latter is true. If you find a

Re:Contribution: Capturing Standard Error for use with CFEXECUTE

2004-02-12 Thread David Adams
Rob, Thanks for the feedback. I am running the Bash shell and I ran the following and it failed: cfexecute name=/bin/ls arguments=-z 21 variable=result timeout=60/cfexecute cfoutput#result#/cfoutput Also, I deliberately made and error with ls arguement by putting a -z, which is an invalid

RE: Print to PDF

2004-02-12 Thread Marlon Moyer
Are you talking about client side or server side?If client side, pdfcreator on sourceforge.net works great for me. -- marlon And Bobby you are right, I am being selfish, but the last time I checked, we don't have a whole lot of songs that feature the cowbell! -Original Message-

RE: CFHTTP AND SSL

2004-02-12 Thread Brook Davies
Okay, I'll check that... thanks... At 11:24 AM 2/12/2004, you wrote: did you import to the proper jvm?I had to do this for navy issued certs, and it worked fine.I do not know if there are different keystores for each jvm you might have on there, or if you would have to be sure that you are

Re: Re:Problems talking with Oracle (oracle object and methods)...

2004-02-12 Thread Deanna Schneider
Hm...we change passwords here, but I didn't write the code. I'd be willing to bet it's nothing fancy, though. It could be a stored procedure. Sorry. - Original Message - From: Brian Yager [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Thursday, February 12, 2004 9:22 AM Subject:

Re: Re:Contribution: Capturing Standard Error for use with CFEXECUTE

2004-02-12 Thread Rob Rohan
On Thu, 2004-02-12 at 10:43, David Adams wrote: I am running the Bash shell and I ran the following and it failed: cfexecute name=/bin/ls arguments=-z 21 variable=result timeout=60/cfexecute cfoutput#result#/cfoutput Interesting... Try double checking that it will work from cf by doing

Re: Re:Contribution: Capturing Standard Error for use with CFEXECUTE

2004-02-12 Thread Rob Rohan
+- wrapper.sh --+ #/bin/sh `$*` 21 +- wrapper.sh --+ by the way those are back quotes (grave accents) not ' but the key that has the ~ on it without the shift. -- Vale, Rob Luxuria immodica insaniam creat. Sanam formam viatae conservate! http://www.rohanclan.com

Re: Print to PDF

2004-02-12 Thread Paul Hastings
If you need something really fancy, there are a couple of us on list right now heavy into the iText.jar approach (very low level control of PDF layout and properties) i'd recommend iText over HTML2PDF3 (i had problems with earlier releases non-english data). iText is the bee's knees ;-)

Re: Multilingual

2004-02-12 Thread Paul Hastings
Something I need to take some serious time to get into, as it looks like there's buckets of opportunity in the Far East right now.Getting more and more work from over there.CFMX is an absolute Godsend in this regard. well there seems to be more growth in arabic locales (or those interested in

RE: the oracle, the stored procedure and the cfstoredproc

2004-02-12 Thread Plunkett, Matt
Unless it changed from 6.1 to 6.0, you do not have to have a cfprocparam for the ref cursor as someone else suggested. We put our Oracle stored procedures in this format: cfstoredproc procedure=bf_report.client_facade_pkg.get_available_reports datasource=#request.dsn# returncode=No

Re: Re:Contribution: Capturing Standard Error for use with CFEXECUTE

2004-02-12 Thread Rob Rohan
On Thu, 2004-02-12 at 12:11, Rob Rohan wrote: +- wrapper.sh --+ #/bin/sh `$*` 21 +- wrapper.sh --+ by the way those are back quotes (grave accents) not ' but the key that has the ~ on it without the shift. jezz man I am batting 1000 today. leave off the `s and add !

Re: Re:Contribution: Capturing Standard Error for use with CFEXECUTE

2004-02-12 Thread Rob Rohan
Finally, then I'll shut up I found this talking about Runtime.getRuntime().exec(/bin/ls -aFl); which again I bet MM based their stuff off of: snip Shell built-in commands will not work here. A prime example of this is the DOS dir command. This is a built-in and will not execute. You would need to

RE: Help me avoid Evaluate (*ahem* Ray)

2004-02-12 Thread Taco Fleur
#structure.fieldName# Taco Fleur Bloghttp://www.tacofleur.com/index/blog/ http://www.tacofleur.com/index/blog/ Methodology http://www.tacofleur.com/index/methodology/ Tell me and I will forget Show me and I will remember Teach me and I will learn -Original Message- From: G

RE: Help me avoid Evaluate (*ahem* Ray)

2004-02-12 Thread Brook Davies
#variables[structure_name][field_name]# At 01:05 PM 2/12/2004, you wrote: #structure.fieldName# Taco Fleur Bloghttp://www.tacofleur.com/index/blog/ http://www.tacofleur.com/index/blog/ Methodology http://www.tacofleur.com/index/methodology/http://www.tacofleur.com/index/methodology/ Tell me

Re: Print to PDF

2004-02-12 Thread Doug White
http://www.acrosoftware.com/Products/CutePDF/Printer.asp == Stop spam on your domain, Anti-spam solutions http://www.clickdoug.com/mailfilter.cfm For hosting solutions http://www.clickdoug.com == Aspire to Inspire before you

RE: Help me avoid Evaluate (*ahem* Ray)

2004-02-12 Thread Suyer, Ed
structure = foo fieldname = bar #structFindValue(structure, fieldname)# -Original Message- From: G [mailto:[EMAIL PROTECTED] Sent: Friday, 13 February 2004 1:56 AM To: CF-Talk Subject: Help me avoid Evaluate (*ahem* Ray) Fairly new to working with structures in Cold Fusion. I have the

RE: CFHTTP AND SSL

2004-02-12 Thread Douglas.Knudsen
check out this article http://www.houseoffusion.com/cf_lists/index.cfm/method=messages http://www.houseoffusion.com/cf_lists/index.cfm/method=messagesthreadid=13865forumid=4 threadid=13865forumid=4 make use of this tool http://homepage.ntlworld.com/wayne_grant/keytool.html it rawks.I set this

RE: CFHTTP AND SSL

2004-02-12 Thread Douglas.Knudsen
check out this article http://www.houseoffusion.com/cf_lists/index.cfm/method=messages http://www.houseoffusion.com/cf_lists/index.cfm/method=messagesthreadid=13865forumid=4 threadid=13865forumid=4 make use of this tool http://homepage.ntlworld.com/wayne_grant/keytool.html it rawks.I set this

iText (calling Paul Hastings)

2004-02-12 Thread Bryan Stevenson
Does anybody using iText to produce PDFs have an example of a complex header/footer?? I'm trying to make a header that requires a table/grid layoutblue rectangle box in top left with section name on ithorizontal line under the whole header.some more text in the bottom right corner of

RE: Help me avoid Evaluate (*ahem* Ray)

2004-02-12 Thread Barney Boisvert
Assuming the struct is in the variables scope do this: #Variables[structName][fieldName]# If it's not in the variables scope, just substitute the appropriate scope (session, application, request, etc.) Cheers, barneyb -Original Message- From: Suyer, Ed [mailto:[EMAIL PROTECTED]

Site Compiler that will handle CF

2004-02-12 Thread Parker, Kevin
Does any one know of a web site compiler that will handle ASP and CFM files as well as the usual HTML. We need to load our site to someone laptop that doe a lot of country demos and presentations where the connectivity is not so good i.e. he'd have to dial in on his mobile (if he can get range).

RE: Site Compiler that will handle CF

2004-02-12 Thread Jim Davis
You'll lose the functionality (of course) which is why I generally prefer installing the server application (remember that the fully function development version of CF is free) on the laptop - however I've had good luck with WebReaper in the past for capturing whole sites. Jim Davis _

RE: Site Compiler that will handle CF

2004-02-12 Thread Heald, Tim
You can run cf off of iis just fine on a decent lap top.I do. If your using IIS then you can do ASP. The database is where you will usually run into problems, but I have SQL 2000 running fine on mine, or you can just demo off of access.Hell we have Oracle 8 and 9i running on laptops with CF

  1   2   >