RE: cf & jquery mobile

2011-03-15 Thread andy matthews
jQuery is built in part on jQuery UI. This should mean that jQuery UI plugins work within jQuery Mobile. http://www.erichynds.com/examples/jquery-related-selects/ Try that one. It came up in a search for jQuery UI related select. Honestly though, related selects are easy to code with jQuery. Yo

Re: Flex and CF Sessions (sort of)

2011-03-15 Thread Jeffrey Battershall
The way I've done this in the past was to store the credentials on the flex client and re-authenticate the user with these using the CFLOGIN framework. This way the responsibility for continuing the session is on the flex side of things. This works with the RemoteObject.setRemoteCredentials().

Flex and CF Sessions (sort of)

2011-03-15 Thread Mary Jo Sminkey
Okay, so we have a flex application running on top of ColdFusion. Basically going through CFCs as web services for whatever it needs. But I'm having a hard time coming up with the best way to handle sessions. I don't really store much in the session, other than just the user ID and whether they

RE: Old School CFX (TextCrypt) and RSA Encryption

2011-03-15 Thread Brook Davies
Thanks for looking into it Leigh. It looks like I need to get in touch with the Author? If I can get in touch with them, what should I ask? Just how they are encoding the keys I guess? Brook -Original Message- From: Leigh [mailto:cfsearch...@yahoo.com] Sent: March-15-11 11:41 AM To: cf

RE: cf & jquery mobile

2011-03-15 Thread Tim Do
Point taken, I was simply trying to convert a page over to mobile. I'm trying to use JQM and JQ now but finding it difficult to use jquery plugins on the mobile device. Ex: I'm trying to do a simple related select dropdowns and tried a couple of plugins, it works on my pc browser, but when I

RE: Old School CFX (TextCrypt) and RSA Encryption

2011-03-15 Thread Leigh
That makes sense. The problem is I cannot quite see how to successfully decode their values from base64. I can see the first part looks like the exponent and the second the modulus. exponent: ++11Ik modulus: kyC6iOY9TyHww-HX-EhLTlpnb3R6Z4Zdu0VwUWsPJMfFQNlyEzKcxck1ZyxyebtGiLVZRByKE9YKhr91OrTqR

re: Do people still name their UPDATE, INSERT & DELETE queries?

2011-03-15 Thread Jason Fisher
I do not and never have. Not against it, but just never saw the need. From: "Dain Anderson" Sent: Tuesday, March 15, 2011 10:27 AM To: "cf-talk" Subject: Do people still name their UPDATE, INSERT & DELETE queries? I may have missed conversation of thi

Re: CFDocument as a task

2011-03-15 Thread Michael Grant
4.0 for me too. I still prefer the hand and the lightning bolt. In fact I was just going through a box of books the other day and found my v4 manuals. And I'm generally a fan of "if it ain't broke" but cfthread literally changed the way I use CF. It's one of the most powerful changes CF ever made

Re: Errors calling a asmx web service

2011-03-15 Thread Dave Watts
> I ran the http://domain/EyeTest_ws.asmx url path from my pc and from the > server where CF is installed > but could not test it as it says the form is only available for requests from > the local machine. You should be testing the WSDL URL from the server: http://domain/EyeTest_ws.asmx?wsdl

RE: CFDocument as a task

2011-03-15 Thread Robert Harrison
> That would be a good solution if it's CF7 or below. Sorry, been CF'ing since version 4. Guess I still have some old methods in my recycle code, but if they ain't broke Robert B. Harrison Director of Interactive Services Austin & Williams 125 Kennedy Drive, Suite 100 Hauppauge NY 11788

Re: CFDocument as a task

2011-03-15 Thread Michael Grant
Assuming you are CF8 or better... You wrap your processing code in the cfthread tag and then you have to pass in whatever variables the code inside the cfthread uses. It's kind of like how you use cfinvoke in a sense. I generally stick all vars and content into a structure (here I've called it "

Re: CFDocument as a task

2011-03-15 Thread Michael Grant
True. That would be a good solution if it's CF7 or below. On Tue, Mar 15, 2011 at 1:16 PM, Robert Harrison wrote: > > Or you could put the page content at the top, use CFFLUSH to push out the > page and let the PDF generator/email continue to run in the background. That > should also work. > >

RE: CFDocument as a task

2011-03-15 Thread Robert Harrison
Or you could put the page content at the top, use CFFLUSH to push out the page and let the PDF generator/email continue to run in the background. That should also work. Robert B. Harrison Director of Interactive Services Austin & Williams 125 Kennedy Drive, Suite 100 Hauppauge NY 11788 P : 63

Re: CFDocument as a task

2011-03-15 Thread Michael Grant
Use cfthread and spawn a new thread to handle the pdf creation and emailing. On Tue, Mar 15, 2011 at 12:46 PM, Terry Troxel wrote: > > I have a page that dynamically generates images and then displays the > formatted output in a CFDocument that creates a 4 up pdf. > > This page takes some time

CFDocument as a task

2011-03-15 Thread Terry Troxel
I have a page that dynamically generates images and then displays the formatted output in a CFDocument that creates a 4 up pdf. This page takes some time to generate and I am wondering if there is any way I can call this when the user hits SUBMIT to a task That does this in the background and le

Re: Errors calling a asmx web service

2011-03-15 Thread Russ Michaels
Ian, Use this tool to test the webservice, it will generate valid SOAP requests to help you diagnose any issues. http://www.soapui.org/ This article may also help you if you are having trouble consuming a SOAP service from CF. http://russ.michaels.me.uk/index.cfm/2007/5/18/ColdFusion-Web-Servic

RE: Errors calling a asmx web service

2011-03-15 Thread Ian Vaughan
Hi Dave I ran the http://domain/EyeTest_ws.asmx url path from my pc and from the server where CF is installed but could not test it as it says the form is only available for requests from the local machine. The service description looks fine though -Original Message- From: Dave Watts

RE: Old School CFX (TextCrypt) and RSA Encryption

2011-03-15 Thread Brook Davies
Hi Leigh, The CFX internally used a Delphi Component TRSA (aecRSA) from TSM Inc. (which is now out f business..). I've read the help file and it doesn't say much about how the strings are encoded. I found the following information in the help manual, not sure if there are any clues in here, I co

Re: Website for Health Care Center

2011-03-15 Thread Al Musella, DPM
I would set them up with a small server, locked in a closet in their private office. The HIPAA rules weren't meant to stop you from doing these things, just to make you implement some security. A laptop is just too easy to steal. >Assuming this client is in the US, it would be smarter to find

Re: Do people still name their UPDATE, INSERT & DELETE queries?

2011-03-15 Thread Dave Watts
> I may have missed conversation of this over the years, so I figured I would > ask. > > What's the current "take" on this (old?) practice? If I have a CFC function > that deletes a record, and that CFC contains a single query, do you find it > necessary to scope that query with a name? It's neit

Re: Do people still name their UPDATE, INSERT & DELETE queries?

2011-03-15 Thread Dave Watts
> I would even go so far as to recommend you delete it. Less code means less > bugs. The converse of this is, fewer changes to existing code means fewer bugs. There's no reason to waste time making trivial changes to existing code. Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ http

Re: Errors calling a asmx web service

2011-03-15 Thread Dave Watts
> Yes the .asmx file looks fine, could it be a user authentication issue? Probably not. Does a visit to the asmx file in your browser require authentication? > If so how do you register the web service?  Is it done in CF Admin - and > how does this change path that is called?  At the moment it l

Re: Do people still name their UPDATE, INSERT & DELETE queries? [spamtrap heur]

2011-03-15 Thread Paul Hastings
On 3/15/2011 9:34 PM, Raymond Camden wrote: > I don't bother. Is it worthwhile to go through code and change it - > not imho. (Unless of course you forgot to varscope it.) but builder complains though. and we must do what builder says, right ;-) ~~

Re: Do people still name their UPDATE, INSERT & DELETE queries?

2011-03-15 Thread Dain Anderson
Agreed, we do this as well. I'm more or less concerned with a more "in general," as a concept. It sounds like it's unnecessary and safe to remove. Thanks for everyone's help. -Dain On Tue, Mar 15, 2011 at 10:40 AM, Phillip Duba wrote: > > I do purely for debugging purposes. This way I can du

Re: Do people still name their UPDATE, INSERT & DELETE queries?

2011-03-15 Thread Phillip Duba
I do purely for debugging purposes. This way I can dump the resultset, with the new features in 8 and 9, and see exactly what is going on with the query in the form of parameters, generated SQL, etc., Phil On Tue, Mar 15, 2011 at 10:26 AM, Dain Anderson wrote: > > I may have missed conversation

Re: Do people still name their UPDATE, INSERT & DELETE queries?

2011-03-15 Thread Casey Dougall
On Tue, Mar 15, 2011 at 10:26 AM, Dain Anderson wrote: > > I may have missed conversation of this over the years, so I figured I would > ask. > > What's the current "take" on this (old?) practice? If I have a CFC function > that deletes a record, and that CFC contains a single query, do you find

Re: Do people still name their UPDATE, INSERT & DELETE queries?

2011-03-15 Thread Nathan Strutz
If you aren't using any kind of returned data from a query, don't worry about giving the cfquery tag a name attribute. It's a few extra bytes you can save on your fingers. I would even go so far as to recommend you delete it. Less code means less bugs. nathan strutz [http://www.dopefly.com/] [htt

Re: Do people still name their UPDATE, INSERT & DELETE queries?

2011-03-15 Thread Raymond Camden
I don't bother. Is it worthwhile to go through code and change it - not imho. (Unless of course you forgot to varscope it.) On Tue, Mar 15, 2011 at 9:26 AM, Dain Anderson wrote: > > I may have missed conversation of this over the years, so I figured I would > ask. > > What's the current "take"

Do people still name their UPDATE, INSERT & DELETE queries?

2011-03-15 Thread Dain Anderson
I may have missed conversation of this over the years, so I figured I would ask. What's the current "take" on this (old?) practice? If I have a CFC function that deletes a record, and that CFC contains a single query, do you find it necessary to scope that query with a name? d

RE: Errors calling a asmx web service

2011-03-15 Thread Ian Vaughan
Hi Yes the .asmx file looks fine, could it be a user authentication issue? If so how do you register the web service? Is it done in CF Admin - and how does this change path that is called? At the moment it looks like this? http://domain/EyeTest_ws.asmx?wsdl";> ... etc -Original Message--

Re: Data Truncation on TEXT field

2011-03-15 Thread Russ Michaels
yes certainly something you need to remember. Every argument you have on a list gets Googled and will show up in search results :-) Even twitter posts get Googled. On Mon, Mar 14, 2011 at 10:58 PM, Bobby Hartsfield wrote: > > Even the ones** > > > .:.:.:.:.:.:.:.:.:.:.:.:.:. > Bobby Hartsfield

Re: same content different result CFFile vs CFContent

2011-03-15 Thread Mack
First, make sure that cfsavecontent doesn't introduce any spaces: #myFile# Second, I would include the file name in quotes in the Content-Disposition header: http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion Archive: http://www.houseoffusion.com/groups/cf-talk/mes

Re: Errors calling a asmx web service

2011-03-15 Thread Dave Watts
> Any ideas why I am getting the following error when calling a .asmx > webservice in CF7?? Is it permissions or does it have to be WSDL?? > > ERROR- > > Could not generate stub objects for web service invocation. > Name: http://edrmservices/edrmsWeb/EyeTest_ws.asmx. WSDL: > http://DOMAIN/

Re: Old School CFX (TextCrypt) and RSA Encryption

2011-03-15 Thread Leigh
> and the binary keys > themselves are base64 encoded. Also, are they using the same base64 encoding as in CF? I believe there are a few variants. ~| Order the Adobe Coldfusion Anthology now! http://www.amazon.com/Adob

Re: Errors calling a asmx web service

2011-03-15 Thread Michael Grant
In fact here's another few threads about the same error: http://www.houseoffusion.com/groups/cf-talk/thread.cfm/threadid:59495 http://www.houseoffusion.com/groups/cf-talk/thread.cfm/threadid:48784 Just from a simple read I suspect you are getting an error message because the response returned is

Re: Errors calling a asmx web service

2011-03-15 Thread Michael Grant
This looks to be your problem: The element type "META" must be terminated by the matching end-tag. On Tue, Mar 15, 2011 at 7:04 AM, Ian Vaughan < i.vaug...@neath-porttalbot.gov.uk> wrote: > > Hi > > Any ideas why I am getting the following error when calling a .asmx > webservice in CF7?? Is i

Errors calling a asmx web service

2011-03-15 Thread Ian Vaughan
Hi Any ideas why I am getting the following error when calling a .asmx webservice in CF7?? Is it permissions or does it have to be WSDL?? ERROR- Could not generate stub objects for web service invocation. Name: http://edrmservices/edrmsWeb/EyeTest_ws.asmx. WSDL: http://DOMAIN/EyeTest_

Re: Old School CFX (TextCrypt) and RSA Encryption

2011-03-15 Thread Leigh
> There may be some other jiggery pokery going on however, ... > so I would imagine that you may have to pad the start or > end with null characters to > get the full 512 bits. I could be wrong, but it seems like there is more going on than just a simple split, pad with nulls, then base64 decod