Re: Adobe "Bolt" anyone?

2009-01-23 Thread Judah McAuley
On Fri, Jan 23, 2009 at 6:48 PM, Gerald Guido wrote: >>>Poison dart flies in the window to Eric's house striking him in the nec > > Don't laugh... I violated the NDA *once*... I told my GF during pillow talk > that I was an alpha tester for ** (by accident, I swear) and the next > thing I saw

Re: How do I traverse XML using ColdFusion?

2009-01-23 Thread Ezra Parker
Hi Chris, I have been following this thread out of curiosity, and I think I might be able to help in pointing you in the right direction. The key bit here is the fact that the getIPAddress method has an input parameter, identified in the dump of the stub as: localhost.webservices.UsedCarWS.IPAdd

Re: Adobe "Bolt" anyone?

2009-01-23 Thread Gerald Guido
>>Poison dart flies in the window to Eric's house striking him in the nec Don't laugh... I violated the NDA *once*... I told my GF during pillow talk that I was an alpha tester for ** (by accident, I swear) and the next thing I saw was Adam Lehman pointing a fully loaded version of CS4 at me

Re: How do I traverse XML using ColdFusion?

2009-01-23 Thread Chris Jordan
Brad, I tried passing the authentication stuff via the addSOAPRequestHeader, but there's something else going on here. What I've learned in the last couple of hours is that when using CreateObject to call a web service you can pass it a portname. I know from looking at the wsdl itself, that there

Re: Adobe "Bolt" anyone?

2009-01-23 Thread Brad Wood
*Poison dart flies in the window to Eric's house striking him in the neck as he slumps lifelessly over his keyboard.* :) - Original Message - From: "Eric Roberts" To: "cf-talk" Sent: Friday, January 23, 2009 7:05 PM Subject: Re: Adobe "Bolt" anyone? > That is incorrect...I am on the

Re: How do I traverse XML using ColdFusion?

2009-01-23 Thread denstar
WSDL2Java is really quite nice. It would be pretty easy to do Tom's idea of WSDL2CF, I reckon. Someone should do that, someday. I'll say it again (I mentioned this last week already)-- using the java classes was pure joy compared to doing invoke and whatnot, on my last WS "journey". If you're c

Re: spry problem with IE

2009-01-23 Thread Mike Soultanian
go figure.. right after he sends me the email he figures it out :) Thanks for the reply!! Mike Milburn, Steve wrote: > Hi Mike > > I've used Spry extensively and have never had a problem with IE7. I have had > problems with certain versions of IE6 loading XML that I've posted to the > Spry fo

RE: spry problem with IE

2009-01-23 Thread Milburn, Steve
Hi Mike I've used Spry extensively and have never had a problem with IE7. I have had problems with certain versions of IE6 loading XML that I've posted to the Spry forums without any resolution. I'd be happy to look up that thread and post a link here, but the search functionality for the Spr

Re: Adobe "Bolt" anyone?

2009-01-23 Thread Eric Roberts
That is incorrect...I am on the CF9 alpha...there is nothing to stop one from admitting they are on the alpha or the beta. Eric Dawson, Michael wrote: > You may never know. If Bolt really does exist, and is in beta, the > participants are probably bound by an NDA. > > The first rule of Adobe P

Re: How do I traverse XML using ColdFusion?

2009-01-23 Thread Brad Wood
A web service is not like a CFC where you can cfdump it out and get all the methods. Those underlying methods you are seeing aren't going to help you at all. The actual methods you can call are documented in the WSDL itself. I glanced through it and holy cow it is long. Didn't the web servic

Re: Adobe "Bolt" anyone?

2009-01-23 Thread Eric Roberts
Nope...I don;t think it is out yet. Eric Rick Faircloth wrote: > Anyone seen the beta of "Bolt", yet? > > Rick > > > ~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date Get the Free Trial http:

spry problem with IE

2009-01-23 Thread Mike Soultanian
My friend had a question about spry and I didn't have the answer so I thought I'd query the list: Currently I am testing an application that uses spry to get data from a CFC which queries a database and convert the query to a XML variable. This application works fine with most current browsers,

Re: looping through varchar fields in a database

2009-01-23 Thread Ben Conner
Hi Justin, Much appreciated. This will give me a head-start. I have extensive security on the front end of this site, but it is written in ASP and I know very little other than how to spell it. :( Thanks! --Ben Justin Scott wrote: > Ben Conner wrote: > >> I need to inspect all varchar fields

Re: How do I traverse XML using ColdFusion?

2009-01-23 Thread Chris Jordan
Yeah, I saw that the other day. I didn't understand a word. :o( I'll give it another look see, but I'm still lost. Have you ever consumed a SOAP web service with CF using CreateObject? Did you have to authenticate? How did you do that? On Fri, Jan 23, 2009 at 5:48 PM, Dave Watts wrote: > You mi

Re: How do I traverse XML using ColdFusion?

2009-01-23 Thread Dave Watts
You might find this useful: Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ Fig Leaf Software provides the highest caliber vendor-authorized instruction at our training

Re: How do I traverse XML using ColdFusion?

2009-01-23 Thread Chris Jordan
John, The stub methods I'm referring to are part of apache Axis which are part of some parent class that get's created when I do: ws = CreateObject("webservice", " https://www.blackbookws.com/UsedCarWS.asmx?WSDL";, "UsedCarWS"); I'm passing the portname "UsedCarWS" now whereas I wasn't before an

Re: How do I traverse XML using ColdFusion?

2009-01-23 Thread Chris Jordan
Brad, The problem is that the methods made available by the web service ( https://www.blackbookws.com/UsedCarWS.asmx?WSDL) are not what I get back when I do: ws = CreateObject("webservice"," https://www.blackbookws.com/UsedCarWS.asmx?WSDL";); so instead of getting functions like: getAllProvinces

Re: New line

2009-01-23 Thread Judah McAuley
In the interest of bizarre completeness, you need to use both cr and lf when you are working with email. The SMTP RFC requires both and bare line feeds (just lf) can cause problems with some mailers. http://cr.yp.to/docs/smtplf.html Judah On Fri, Jan 23, 2009 at 2:40 PM, Wil Genovese wrote: > T

Re: New line

2009-01-23 Thread Wil Genovese
True, Homesite/CFStudio has the option to use Windows, Unix or Mac style end of line characters. Wil Genovese One man with courage makes a majority. -Andrew Jackson A fine is a tax for doing wrong. A tax is a fine for doing well. On Jan 23, 2009, at 3:36 PM, Peter Boughton wrote: >> some OS

RE: looping through varchar fields in a database

2009-01-23 Thread brad
Is that SQLi I smell? :) Yeah, based on your DBMS the information schema or sys tables can easily let you build some dynamic SQL. Here's something I wrote the other day to rid some tables of all null values by replacing them with their columns null value (please don't ask why) This runs on SQL

Re: looping through varchar fields in a database

2009-01-23 Thread Justin Scott
Ben Conner wrote: > I need to inspect all varchar fields in all tables in a MS SQL server > database and update rows that have a bogus value in them. This looks > like a LOT of work and wondered if anyone has an elegant framework > solution for something like this. Based on one of the recent SQL

RE: How do I traverse XML using ColdFusion?

2009-01-23 Thread brad
What method of the web service do you wish to call? It should just be: myWS = CreateObject("webservice","https://blah.com/blah.aspx?wsdl";); results = myWS.yourDesiredMethod(); Also, if I recall, I was thinking your post to the user group list last week mentioned this was a special type of web se

Re: How do I traverse XML using ColdFusion?

2009-01-23 Thread Chris Jordan
John, I'll try that when I get through with lunch here. I hadn't thought of dumping the stubs. On Jan 23, 2009 3:58 PM, "John M Bliss" wrote: > all I get back are a bunch of stub methods that I don't know how to use What happens when you cfdump those "stub" methods? Something like In my exper

looping through varchar fields in a database

2009-01-23 Thread Ben Conner
Hi, I need to inspect all varchar fields in all tables in a MS SQL server database and update rows that have a bogus value in them. This looks like a LOT of work and wondered if anyone has an elegant framework solution for something like this. Thanks! --Ben -- Ben Connerb...@webwor

Re: help with using CFCProxy.

2009-01-23 Thread Mark Mandel
Yeah, you need enterprise to use CFCProxy. I thought they were meant to fix this in 8, under the whole 'Standard is the same as Enterprise, just with limitations' spiel... but it looks like it never happens. Kinda annoys me actually. Mark On Sat, Jan 24, 2009 at 4:41 AM, Charlie Griefer wrote:

Re: How do I traverse XML using ColdFusion?

2009-01-23 Thread Dave Watts
> Also, I'm not too pleased that it seems so damned difficult to do it "the > easy way" by letting CF do all the soap stuff for me with > CreateObject("webservice", > "https://blah.com/blah.aspx?wsdl";). It seems like that should work, but all > I get back are a bunch of stub methods that I don't k

Re: How do I traverse XML using ColdFusion?

2009-01-23 Thread John M Bliss
> all I get back are a bunch of stub methods that I don't know how to use What happens when you cfdump those "stub" methods? Something like In my experience, as long as the webservice is developed by a sane person, you'll be able to figure out how to use it by cfdumping those "stub" methods and

Re: New line

2009-01-23 Thread Peter Boughton
> some OSes (would love to know which > and whether this is true or an old wives tale) > don't produce 13 & 10. It's a bit of both. The OS only really determines the "default" newline marker (see Will's reply), but software is not restricted by the newline setup of the OS. These days, every a

Re: How do I traverse XML using ColdFusion?

2009-01-23 Thread Chris Jordan
I've kind of solved my problem with the following xPath selector in my xPathString: This allows me to reference YearNodes[i].XmlText which contains the actual string of data that I want. This seems kinda hokey to me though. I'd like to just get back an array of years (2010,2009,2008,... etc.) A

Re: Dreamweaver CRASHES!!!

2009-01-23 Thread Casey Dougall
On Fri, Jan 23, 2009 at 3:44 PM, Joel Polsky wrote: > Help. > I have this recently recurring problem and don't know what to do. I use > Dreamweaver CS3 for my IDE. When I'm viewing a page in the "Design Mode" (I > usually only do this to locate an element in a large page, so please don't > go co

Re: Dreamweaver CRASHES!!!

2009-01-23 Thread Massimo Foti
> What's causing the crash? Do you have plenty of includes? Massimo Foti, web-programmer for hire Tools for ColdFusion, JavaScript and Dreamweaver: http://www.massimocorner.com

Re: view protected pdf

2009-01-23 Thread Raymond Camden
Yeah, I'm a bit confused now too. On another listserver I've got a request out to Adobe to help clarify this. Who knew PDFs could be so exciting?? On Fri, Jan 23, 2009 at 2:38 PM, Jochem van Dieten wrote: > On Fri, Jan 23, 2009 at 6:00 PM, Raymond Camden wrote: >> Yep, that definitely works, but

Dreamweaver CRASHES!!!

2009-01-23 Thread Joel Polsky
Help. I have this recently recurring problem and don't know what to do. I use Dreamweaver CS3 for my IDE. When I'm viewing a page in the "Design Mode" (I usually only do this to locate an element in a large page, so please don't go code-only-postal on me!) When I click on the element, say a dr

Re: view protected pdf

2009-01-23 Thread Jochem van Dieten
On Fri, Jan 23, 2009 at 6:00 PM, Raymond Camden wrote: > Yep, that definitely works, but, I'd still say it is a bug, or lack of > a feature, that you can't handle PDFs with JUST a userpassword. I would say it is a bug that DDX allows you to anything but open the PDF with just the user password sin

Re: How do I traverse XML using ColdFusion?

2009-01-23 Thread Chris Jordan
Though, if folks could see their way to helping me, I'd rather do this stuff via CreateObject and have to only deal with native CF structures and arrays and such. :o/ Thanks! Chris On Fri, Jan 23, 2009 at 1:59 PM, Raymond Camden wrote: > I would think so. Again, if you can post the XML itself,

Re: How do I traverse XML using ColdFusion?

2009-01-23 Thread Raymond Camden
I would think so. Again, if you can post the XML itself, we can try it ourselves, right? :) On Fri, Jan 23, 2009 at 1:22 PM, Chris Jordan wrote: > Okay, so I've been messing around with my SOAP response and I've gotten a > little further, but not much. The response I get back looks like this: >

Re: Adobe "Bolt" anyone?

2009-01-23 Thread Jochem van Dieten
On Fri, Jan 23, 2009 at 6:49 PM, John M Bliss wrote: > Nope...but wasn't the rumor, "if one is in the beta program, one is not > allowed to admit it?" That rumor exists indeed. The actual text of Adobe NDA's for other products is more like it forbids you to disclose any information about the beta

Re: How do I traverse XML using ColdFusion?

2009-01-23 Thread Raymond Camden
Well,l noticed your SOAP request had some hidden/secret info in it. Can you post the result XML to the list? Then we can play with it. On Fri, Jan 23, 2009 at 1:28 PM, Chris Jordan wrote: > Yeah, just replied to Ray on that same theme... Tried that all day on > Wednesday with no success. I wrote

Re: How do I traverse XML using ColdFusion?

2009-01-23 Thread Chris Jordan
Okay, so I've been messing around with my SOAP response and I've gotten a little further, but not much. The response I get back looks like this: soap:Envelope XmlText XmlAttributes struct soap:Header XmlText UserCredentials XmlText XmlAtt

Re: How do I traverse XML using ColdFusion?

2009-01-23 Thread Chris Jordan
Yeah, just replied to Ray on that same theme... Tried that all day on Wednesday with no success. I wrote this group looking for help and between then and today, I've gotten no responses. :o( Chris On Fri, Jan 23, 2009 at 1:19 PM, wrote: > You may have a really good reason for using cfhttp to co

Re: How do I traverse XML using ColdFusion?

2009-01-23 Thread Chris Jordan
I was having trouble doing that Ray, and asked the list about it yesterday, but go no response. So, I'm building it by hand because at least then I'm getting somewhere. Though, I am stuck again. :o( See my thread entitled Need Help with SOAP request. I hit my CFUG up for help with this one too, an

RE: How do I traverse XML using ColdFusion?

2009-01-23 Thread brad
You may have a really good reason for using cfhttp to consume the web service, but just to make sure-- did you know that cfinvoke or createobect will let you consume SOAP web services really easy and you don't have to mess wtih any of the messy XML. You just get back the data in a native CF forma

Re: How do I traverse XML using ColdFusion?

2009-01-23 Thread Raymond Camden
Kind of OT, but why are you making/parsing SOAP when CF can do that for you with cfinvoke? On Fri, Jan 23, 2009 at 12:31 PM, Chris Jordan wrote: > I've got a SOAP response in xml format, and I need to know how to traverse > it. I found that I should be able to use XmlSearch(xmlDoc, xPathString) t

Re: Adobe "Bolt" anyone?

2009-01-23 Thread Gerald Guido
Nope I signed up bleams ago. The more I use Eclipse, Aptana and NetBeans the more I anticipate Bolt. From what I have read (and speculate based on using the above tools) I see bolt as an answer to my personal IDE wish list. I also see the potential for the ORM auto-configuration and code genera

Re: Firefox outputting different variable then IE

2009-01-23 Thread Sin Tec
Wow that was easy. I had my Button name as search t. Thank you so much. Dumbie me. >When you get "value1,value2" for a given form variable, it usually means you >have two form fields with the same name. Check the form for dupes. > >Adrian ~

Re: Image Gallery/Scroller from Recordset

2009-01-23 Thread Tony Bentley
Try this: function reload() { ColdFusion.navigate('ad.cfm','ad'); } function setup() { setInterval(reload,2000); } Now on the post page you can setup your image stuff. Grab the first image, set the id in session and the grab the next every time the div refreshes. Try it!

How do I traverse XML using ColdFusion?

2009-01-23 Thread Chris Jordan
I've got a SOAP response in xml format, and I need to know how to traverse it. I found that I should be able to use XmlSearch(xmlDoc, xPathString) to return an array of nodes, but this just isn't working for me. http://schemas.xmlsoap.org/soap/envelope/"; xmlns:used="http://localhost/webservices/

Search result problem

2009-01-23 Thread Orlini, Robert
I'm using CF MX and IIS 6.0. Some results of a search display as blank lines and when I click on them it points to IIS's "/_vti_cnf/" directory which is not valid and I don't want. Part of my search.cfm page is listed below. How can I exclude the indexing of these directories in collections? T

RE: Firefox outputting different variable then IE

2009-01-23 Thread Adrian Lynch
When you get "value1,value2" for a given form variable, it usually means you have two form fields with the same name. Check the form for dupes. Adrian > -Original Message- > From: Sin Tec [mailto:tooles...@gmail.com] > Sent: 23 January 2009 18:11 > To: cf-talk > Subject: Firefox outputtin

Firefox outputting different variable then IE

2009-01-23 Thread Sin Tec
I am having trouble with my search function in Firefox. Works in IE but not in Firefox. I am doing a cfdump for form.search and when I do a search and for lets say "Title" it works fine in IE but then in Firefox i get "Title,search" which doesnt pull anything. Any Ideas? Thank You I have

RE: Tiered Dot Notation in where clause query of Queries (QoQ)

2009-01-23 Thread Adrian Lynch
It thinks a is a table reference. I get this whenever I do QoQs in a function where I var scope LOCAL: FROM LOCAL.myQuery I do what you do, assign to another var first. Would like to hear of a better solution like escaping: FROM [LOCAL.myQuery] Adrian > -Original Message- > From: Jus

Re: Adobe "Bolt" anyone?

2009-01-23 Thread Michael Dinowitz
Information about Bolt can be found here: http://labs.adobe.com/wiki/index.php/Bolt There is a link to apply for the beta program when it is available. Other than that, the NDA on Adobe alpha/beta programs restrict speaking about the program. On Fri, Jan 23, 2009 at 12:46 PM, Rick Faircloth wrote:

Re: Adobe "Bolt" anyone?

2009-01-23 Thread John M Bliss
Nope...but wasn't the rumor, "if one is in the beta program, one is not allowed to admit it?" On Fri, Jan 23, 2009 at 11:46 AM, Rick Faircloth wrote: > Anyone seen the beta of "Bolt", yet? > > Rick > > > ~| Adobe® ColdFusion® 8

RE: Adobe "Bolt" anyone?

2009-01-23 Thread Dawson, Michael
You may never know. If Bolt really does exist, and is in beta, the participants are probably bound by an NDA. The first rule of Adobe Prerelease is that you don't talk about Adobe Prerelease. mike -Original Message- From: Rick Faircloth [mailto:r...@whitestonemedia.com] Sent: Friday,

Adobe "Bolt" anyone?

2009-01-23 Thread Rick Faircloth
Anyone seen the beta of "Bolt", yet? Rick ~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date Get the Free Trial http://ad.doubleclick.net/clk;207172674;29440083;f Archive: http://www.houseof

Tiered Dot Notation in where clause query of Queries (QoQ)

2009-01-23 Thread Justin T
Hi, I was just wondering what the reason is behind the error I get when I use dot notation with QoQ in the where clause. This will throw an error: select * from a.qry where a.qry.fkPOCId = 1 This won't: select * from goodQry where goodQry.fkPOCId = 1 It seems that anything beyond a s

Re: help with using CFCProxy.

2009-01-23 Thread Charlie Griefer
http://www.forta.com/blog/index.cfm?mode=e&entry=1756 see comments. On Fri, Jan 23, 2009 at 8:15 AM, cf coder wrote: > Do I need the enterprise edition of ColdFusion to use CFCProxy? I'm getting > the following error when I instantiate the CFCProxy object: > > java.lang.NoClassDefFoundError: > co

Re: view protected pdf

2009-01-23 Thread Raymond Camden
Yep, that definitely works, but, I'd still say it is a bug, or lack of a feature, that you can't handle PDFs with JUST a userpassword. I'm still going to update pdfUtils for this. If you have control over how the PDF is generated then its easy enough to fix, but if you don't, you are still screwed.

Re: view protected pdf

2009-01-23 Thread Jochem van Dieten
On Fri, Jan 23, 2009 at 4:40 PM, Raymond Camden wrote: > http://www.coldfusionjedi.com/index.cfm/2009/1/23/How-to-remove-a-password-from-a-PDF-using-ColdFusion PDFs have 2 passwords, a user password and an owner password. If you use the owner password instead of the user password in combination wi

Re: New line

2009-01-23 Thread Wil Genovese
Windows produces the CR LF combo. carriage return (13) + line feed (10). Linux only uses the LF for end of lines. Mac used to only use CR. But I believe this has changed to LF since OSX is a UNIX based OS. The brief history is that these commands were used to control the old line printer

Re: view protected pdf

2009-01-23 Thread Raymond Camden
Sorry if it wasn't clear - but yes, I tried like heck to solve it w/o using DDX and was unable to. As my blog entry clearly states, I may be wrong in how I used it, but DDX was the only way I could fix the problem. Of course, once I wrap it up in pdfUtils it will be trivial. On Fri, Jan 23, 2009

Re: New line

2009-01-23 Thread Jason Fisher
True. I believe that chr(13) is the 'safe' line end, but I've just never had 13&10 give me trouble, so I stick with it :-) ~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date Get the Free Tria

RE: New line

2009-01-23 Thread Adrian Lynch
Be careful with doing the replace on 13 & 10, you might want to reduce them down to one thing before replacing with the , some OSes (would love to know which and whether this is true or an old wives tale) don't produce 13 & 10. Adrian > -Original Message- > From: Jason Fisher [mailto:ja..

RE: view protected pdf

2009-01-23 Thread Kenny J. Willis
Ray, if DDX is so picky about the "none" to "None" did you check this issue with the encrypt portion of cfpdf? Thanks for the work around. I will be checking this out later. -Original Message- From: Raymond Camden [mailto:rcam...@gmail.com] Sent: Friday, January 23, 2009 7:41 AM To: cf-

Re: help with using CFCProxy.

2009-01-23 Thread cf coder
Do I need the enterprise edition of ColdFusion to use CFCProxy? I'm getting the following error when I instantiate the CFCProxy object: java.lang.NoClassDefFoundError: coldfusion/license/LicenseManager$LicenseIllegalAccessException This is where the error occurs CFCProxy myCFC = new CFCProxy(

Re: New line

2009-01-23 Thread Jason Fisher
And, if you are pulling that data from a database and if that data got in there from a textarea, you can do a replace to get where you need it: #replace(str1, crlf, "", "all")# ~| Adobe® ColdFusion® 8 software 8 is the mos

RE: New line

2009-01-23 Thread Dawson, Michael
Yep, is what you need. Look at your source code and I bet you see all kinds of line breaks. ;^) -Original Message- From: Dave Watts [mailto:dwa...@figleaf.com] Sent: Friday, January 23, 2009 9:55 AM To: cf-talk Subject: Re: New line > I am creating a string that will be output to a we

Re: New line

2009-01-23 Thread Dave Watts
> I am creating a string that will be output to a web page. I cannot seem to > get a new line to print. > > str1 = "This is part 1." > > str2 = str1 & "\n" > > str3 = str2 & "This is part 2" > > Later > > #str3# > > This outputs - > This is part1.\n This is part2. > > I have tried other things like

New line

2009-01-23 Thread Nupur Gupta
I am creating a string that will be output to a web page. I cannot seem to get a new line to print. str1 = "This is part 1." str2 = str1 & "\n" str3 = str2 & "This is part 2" Later #str3# This outputs - This is part1.\n This is part2. I have tried other things like str2= str1 & Chr(10) & Ch

Re: view protected pdf

2009-01-23 Thread Raymond Camden
Kenny, and all, please see: http://www.coldfusionjedi.com/index.cfm/2009/1/23/How-to-remove-a-password-from-a-PDF-using-ColdFusion As I say in the blog entry, I'll be rewriting the code to be generic so it's easier to use. On Fri, Jan 23, 2009 at 9:10 AM, Kenny J. Willis wrote: > I ran into th

RE: view protected pdf

2009-01-23 Thread Kenny J. Willis
This is what I have been trying to point out in this long discussion that this tag (cfpdf) seems to be a one way trip. Glad you have a work around/fix. Looking forward to it. -Original Message- From: Raymond Camden [mailto:rcam...@gmail.com] Sent: Friday, January 23, 2009 7:13 AM To: cf

Re: view protected pdf

2009-01-23 Thread Raymond Camden
Heh, Kenny, you missed my mail. ;) I ran into a problem with that - and I finally solved it. I'll have a blog post on it in about 30 minutes. Unfortunately it is NON-trivial, but I hope to make it trivial for folks. On Fri, Jan 23, 2009 at 9:07 AM, Kenny J. Willis wrote: > One last question. W

RE: view protected pdf

2009-01-23 Thread Kenny J. Willis
Agreed, still have to take the steps for compliance reasons. -Original Message- From: Jochem van Dieten [mailto:joch...@gmail.com] Sent: Friday, January 23, 2009 5:23 AM To: cf-talk Subject: Re: view protected pdf On Thu, Jan 22, 2009 at 11:31 PM, Kenny J. Willis wrote: > I do believe th

RE: view protected pdf

2009-01-23 Thread Kenny J. Willis
Ouch. Neat app but not quite monetarily feasible at this time. Thanks, will keep that in mind going forward. -Original Message- From: Jochem van Dieten [mailto:joch...@gmail.com] Sent: Friday, January 23, 2009 3:04 AM To: cf-talk Subject: Re: view protected pdf On Thu, Jan 22, 2009 at

RE: view protected pdf

2009-01-23 Thread Kenny J. Willis
I ran into the same issue. That's why I asked for the syntax previously. ken -Original Message- From: Raymond Camden [mailto:rcam...@gmail.com] Sent: Friday, January 23, 2009 5:06 AM To: cf-talk Subject: Re: view protected pdf Kenny, I ran into some trouble using cfpdf to remove the pa

RE: view protected pdf

2009-01-23 Thread Kenny J. Willis
One last question. What is syntax for the second cfpdf call to strip the password? -Original Message- From: Raymond Camden [mailto:rcam...@gmail.com] Sent: Thursday, January 22, 2009 6:05 PM To: cf-talk Subject: Re: view protected pdf No, one tag to read it in, then a second cfpdf call

Cf and Number Format

2009-01-23 Thread Kristen Winsor
Hello All, Paul suggested trying here on CFTalk to shed some light on the below issue... for addtl' info, included his findings as well. Wondering why the following would happen, when hard coding a value, the numberFormat() rounds the number as expected however, when outputting the same value der

Re: Application.cfc error

2009-01-23 Thread cf coder
Hi Laura, I'm getting this same error. Did you manage to fix this error? Do you remember what the problem was and if so can you kindly share it with me? Regards, John > I'm getting an odd error when I try to use Application.cfc instead of > Application.cfm. I get the following error: > > 500

Re: cf server for education

2009-01-23 Thread Gerald Guido
Here is the DL page. It has the terms of usage there: https://freeriatools.adobe.com/coldfusion/ On Fri, Jan 23, 2009 at 2:42 AM, John Barrett wrote: > Hi, > I don't know where the best place to ask this on cf talk, so I try here. > Has anybody used the free education server from adobe? > I am w

Re: GetTimeZoneInfo() Schedules in local timezone based on UTC

2009-01-23 Thread Casey Dougall
OK guys, thank you for the follow ups. I won't be able to try this stuff out for another 8 hours. Dam that 9-5 work stuff, but I'll check in later if I have any issues. regards, Casey On Fri, Jan 23, 2009 at 8:59 AM, John M Bliss wrote: > I see. Good point. > > On Fri, Jan 23, 2009 at 7:42 A

Re: GetTimeZoneInfo() Schedules in local timezone based on UTC

2009-01-23 Thread John M Bliss
I see. Good point. On Fri, Jan 23, 2009 at 7:42 AM, Paul Hastings wrote: > John M Bliss wrote: > > Concur. datetimes in the DB should all be in the same TZ and then > converted > > to local TZ, as needed, for output. > > not quite. the problem is that cf sees all datetimes as being in the serve

Re: GetTimeZoneInfo() Schedules in local timezone based on UTC

2009-01-23 Thread Jochem van Dieten
On Fri, Jan 23, 2009 at 2:26 PM, Paul Hastings wrote: > Jochem van Dieten wrote: >> Do you have database requirements /constraints yet? If not, do >> yourself a favor and make sure you use a database that supports > > ...and by that jochem means postgres :-) Or Oracle or Mimer. And I think Informi

Re: GetTimeZoneInfo() Schedules in local timezone based on UTC

2009-01-23 Thread Paul Hastings
John M Bliss wrote: > Concur. datetimes in the DB should all be in the same TZ and then converted > to local TZ, as needed, for output. not quite. the problem is that cf sees all datetimes as being in the server tz. if the server's tz has DST then dates from any user tz that's not the same as t

Re: GetTimeZoneInfo() Schedules in local timezone based on UTC

2009-01-23 Thread John M Bliss
Concur. datetimes in the DB should all be in the same TZ and then converted to local TZ, as needed, for output. On Fri, Jan 23, 2009 at 7:30 AM, Paul Hastings wrote: > John M Bliss wrote: > > Maybe this'll help...? http://recurrence.riaforge.org > > > > For a given schedule, you'll store start

Re: GetTimeZoneInfo() Schedules in local timezone based on UTC

2009-01-23 Thread Paul Hastings
John M Bliss wrote: > Maybe this'll help...? http://recurrence.riaforge.org > > For a given schedule, you'll store start datetime. If that's all you store, > you can use that value to figure out *all* weekly start datetimes. not across tz (unless the server is in UTC). if a DJ's shift crosses D

Re: GetTimeZoneInfo() Schedules in local timezone based on UTC

2009-01-23 Thread Paul Hastings
Jochem van Dieten wrote: > Do you have database requirements /constraints yet? If not, do > yourself a favor and make sure you use a database that supports ...and by that jochem means postgres :-) ~| Adobe® ColdFusion® 8 softwar

Re: GetTimeZoneInfo() Schedules in local timezone based on UTC

2009-01-23 Thread Paul Hastings
Casey Dougall wrote: > If I use UTC it gets a bit messed up because in the DJ world we all live > late hours, many shows are going to go between UTC early morning hours on > the following day but should still show up on the correct day on the > schedule based on the user time zone. if your server

Re: view protected pdf

2009-01-23 Thread Jochem van Dieten
On Thu, Jan 22, 2009 at 11:31 PM, Kenny J. Willis wrote: > I do believe this is probably my solution until a better one comes > along. I agree about the hacker problem, but I am also wary about my > own users (I have no reason. I just am thinking ahead). Most breaches > are from the inside and t

Re: GetTimeZoneInfo() Schedules in local timezone based on UTC

2009-01-23 Thread Paul Hastings
John M Bliss wrote: > And, yes, you should be storing that data as datetime in the database. > That'll give you the most flexibility. actually using an epoch offset would give you the most flexibility. timezone hell usually starts with a datetime.

Re: GetTimeZoneInfo() Schedules in local timezone based on UTC

2009-01-23 Thread Jochem van Dieten
On Fri, Jan 23, 2009 at 12:11 PM, Casey Dougall wrote: > This is basically a schedule application for DJ time slots, but I don't know > the best way to organize this content and display to end user. > Maybe I need to store this as a date time field instead of one column for > day of week and separ

Re: GetTimeZoneInfo() Schedules in local timezone based on UTC

2009-01-23 Thread John M Bliss
Maybe this'll help...? http://recurrence.riaforge.org For a given schedule, you'll store start datetime. If that's all you store, you can use that value to figure out *all* weekly start datetimes. Then you could add an end datetime for the schedule and use that to figure out *all* weekly end da

Re: view protected pdf

2009-01-23 Thread Raymond Camden
Kenny, I ran into some trouble using cfpdf to remove the password. So much trouble that I think I must be an idiot and missing something. I'm going to do a blog post on in a bit later, so please watch www.coldfusionjedi.com today in case I forget to post back on this thread. On Thu, Jan 22, 2009

Re: GetTimeZoneInfo() Schedules in local timezone based on UTC

2009-01-23 Thread Casey Dougall
On Fri, Jan 23, 2009 at 7:41 AM, John M Bliss wrote: > And, yes, you should be storing that data as datetime in the database. > That'll give you the most flexibility. > > What should I use as the default date? Just the first date they are added to the schedule for their particular day of week.

Re: GetTimeZoneInfo() Schedules in local timezone based on UTC

2009-01-23 Thread John M Bliss
And, yes, you should be storing that data as datetime in the database. That'll give you the most flexibility. On Fri, Jan 23, 2009 at 6:00 AM, AJ Mercer wrote: > Paul Hastings has an excellent CFC that handles timezones and DLT. > > http://www.sustainablegis.com/blog/cfg11n/ > Look for timezone

Re: GetTimeZoneInfo() Schedules in local timezone based on UTC

2009-01-23 Thread AJ Mercer
Paul Hastings has an excellent CFC that handles timezones and DLT. http://www.sustainablegis.com/blog/cfg11n/ Look for timezone spatial locator which has a link to here http://www.sustainablegis.com/projects/tz/testTZCFC.cfm with a link to download the CFC Make sure your JVM is up to date - i

GetTimeZoneInfo() Schedules in local timezone based on UTC

2009-01-23 Thread Casey Dougall
I'm not really handling this correctly and have no clue where to go at the moment. This is basically a schedule application for DJ time slots, but I don't know the best way to organize this content and display to end user. If I use UTC it gets a bit messed up because in the DJ world we all live l

Re: view protected pdf

2009-01-23 Thread Jochem van Dieten
On Thu, Jan 22, 2009 at 3:15 AM, Ken Willis wrote: > I have used cfpdf to protect pdfs on my server. now i need to be able to > show those protected pdfs to the user upon request. Does anyone have a > solution to this? I just wrote a proof of concept 'self destructing PDF' solution for a clien

Re: Image Gallery/Scroller from Recordset

2009-01-23 Thread Anthony Doherty
Thats exatly what im looking Azadi! all my images will be 315px in width but the height could differ depending on the images uploaded by the client. im using the slideshow to display pictures of a car. can you explain how to positioned your slideshow as well so that its always in the same plac

Re: Image Gallery/Scroller from Recordset

2009-01-23 Thread Azadi Saryev
i am not Adryan, but... do you have correct css rules defined for you #carshow div? based on your code, you should have something like this in your css: #carshow {width:315px;height:315px;overflow:hidden;} having fixed size of the div is important - you should define both width AND height. 'widt

Re: Image Gallery/Scroller from Recordset

2009-01-23 Thread Anthony Doherty
Adrian, did u have a look at the code?? ~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date Get the Free Trial http://ad.doubleclick.net/clk;207172674;29440083;f Archive: http://www.houseoffu

  1   2   >