Search the web
Sign In
New User? Sign Up
CFTalk · ColdFusion Talk (CFTalk) List archives
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Want to share photos of your group with the world? Add a group photo to Flickr.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 95162 - 95191 of 154428   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
95162
Where is the WSDL? You should need to be messing around with the SOAP if it's web server. "This e-mail is from Reed Exhibitions (Gateway House, 28 The...
archive@...
mdinowit
Offline Send Email
Feb 1, 2007
8:55 am
95163
This is expected, as I can no doubt say that the web service you are calling is .NET and that the return variable is not of type "string". If the result is XML...
archive@...
mdinowit
Offline Send Email
Feb 1, 2007
9:00 am
95164
We already have a deployment process which works within our LAN environment, which uses an ANT script to extract code from CVS and rsync this with the target...
archive@...
mdinowit
Offline Send Email
Feb 1, 2007
9:49 am
95165
Not sure there are any docs but it is in CF at the following location: it is being used by cfdocument (possibly other things) ...
archive@...
mdinowit
Offline Send Email
Feb 1, 2007
10:50 am
95166
... Maybe you could consider setting up SSH private key authentication without password at all? I know it's not ideal from security point of view but it could...
archive@...
mdinowit
Offline Send Email
Feb 1, 2007
11:38 am
95167
hmm.. I dont know.. try it :) Actually, I have briefly tested it and it seems fine... let me know if you find any bugs... MD ... ...
archive@...
mdinowit
Offline Send Email
Feb 1, 2007
11:59 am
95168
Dreamweaver is a generic web editor, CFEclipse is aimed as an integrated development environment for ColdFusion There are differences here I understand but I...
archive@...
mdinowit
Offline Send Email
Feb 1, 2007
12:02 pm
95169
Did you ever resolve this?whenever i am trying to insert some data in sqlserver database the data is duplicating from fornt end. It will create duplicates...
archive@...
mdinowit
Offline Send Email
Feb 1, 2007
12:24 pm
95170
If I create a component (potentially long-running) and instantiate it into the application scope (so all pages can access it), how thread-safe will it be?...
archive@...
mdinowit
Offline Send Email
Feb 1, 2007
12:31 pm
95171
thanks for all your replies. I think your right i will have to use hidden fields and form posts as much as possible. and when i need to use the URL then i will...
archive@...
mdinowit
Offline Send Email
Feb 1, 2007
1:02 pm
95172
I am having a hard time fitting Subversion into my general coding procedures. I have been a 1-man coder at a company that has nothing to do with programming...
archive@...
mdinowit
Offline Send Email
Feb 1, 2007
1:21 pm
95173
Thankds Tero, actually that is the line we are investigating currently in consultation with our security experts. ... ...
archive@...
mdinowit
Offline Send Email
Feb 1, 2007
1:22 pm
95174
Yes, the separate calls could get inconsistent data. This is what the CFLOCK tag is for. ... -- CFAJAX docs and other useful articles: ...
archive@...
mdinowit
Offline Send Email
Feb 1, 2007
1:26 pm
95175
We have three developers working on various parts of a single site. We each have our own development branch; I only commit to mine occasionally. My branch...
archive@...
mdinowit
Offline Send Email
Feb 1, 2007
1:34 pm
95176
You said that you thought of putting the entire web root under source control. Is the web root one project, or do you have multiple applications running under...
archive@...
mdinowit
Offline Send Email
Feb 1, 2007
2:23 pm
95177
... This is true only if the method is calling / using instance data. Rich Kroll ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~| Upgrade...
archive@...
mdinowit
Offline Send Email
Feb 1, 2007
2:30 pm
95178
There is the possibility for race conditions, so it depends what your component is doing. If your component has the following method: <cffunction...
archive@...
mdinowit
Offline Send Email
Feb 1, 2007
2:32 pm
95179
Can anyone explain what applicationToken actually does in <cflogin>? I've got two applications on the same server, and, though I have this attribute,...
archive@...
mdinowit
Offline Send Email
Feb 1, 2007
3:17 pm
95180
... I was under the impression that CFQUERYPARAM just validates and typecasts the value as you specify... so you would get something like (not sure of exact...
archive@...
mdinowit
Offline Send Email
Feb 1, 2007
3:22 pm
95181
Sounds like you need to start by first creating a dynamic gif with your coordinates and the shading and then create dynamically create the coresponding image...
archive@...
mdinowit
Offline Send Email
Feb 1, 2007
3:43 pm
95182
That is extremely helpful. It won't help me get it done, but near as I could figure, it wasn't my programming. I hate the idea of submitting the xml manually,...
archive@...
mdinowit
Offline Send Email
Feb 1, 2007
3:48 pm
95183
Chris, You should probably ask for some help on the svn-users list. The version number thing comes up there all the time, and svn has a single revision number...
archive@...
mdinowit
Offline Send Email
Feb 1, 2007
4:20 pm
95184
Ok, I know it's been months since I started this thread, but I had to put this project on hold for quite awhile, and also wait for my IT guy to install the...
archive@...
mdinowit
Offline Send Email
Feb 1, 2007
4:36 pm
95185
I using #DateFormat(Now(),"dd")-1# to get a previous date. However, using it today it gives me the previous date of 0 as opposed to 31. How do I get it to...
archive@...
mdinowit
Offline Send Email
Feb 1, 2007
4:45 pm
95186
Use DateAdd ... ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~| Upgrade to Adobe ColdFusion MX7 Experience Flex 2 & MX7 integration &...
archive@...
mdinowit
Offline Send Email
Feb 1, 2007
4:49 pm
95187
Typically you would have something like this in your cfcs: <cffunction name="action" returntype="Any"> <cfset var local = StructNew()> [actual implementation] ...
archive@...
mdinowit
Offline Send Email
Feb 1, 2007
4:49 pm
95188
#DateFormat(DateAdd("d",-1,Now()),"dd")# ... From: Orlini, Robert [mailto:rorlini@...] Sent: Thursday, February 01, 2007 10:45 AM To: CF-Talk Subject:...
archive@...
mdinowit
Offline Send Email
Feb 1, 2007
4:49 pm
95189
... #DateFormat(Now()-1,"dd")# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~| Upgrade to Adobe ColdFusion MX7 Experience Flex 2 & MX7...
archive@...
mdinowit
Offline Send Email
Feb 1, 2007
4:51 pm
95190
You want #DateFormat(Now()-1, "dd")# ... From: Orlini, Robert [mailto:rorlini@...] Sent: Thursday, February 01, 2007 11:45 AM To: CF-Talk Subject:...
archive@...
mdinowit
Offline Send Email
Feb 1, 2007
4:52 pm
95191
dateAdd('d', -1, now()) day(dateAdd('d', -1, now())) ... ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~| Upgrade to Adobe ColdFusion MX7...
archive@...
mdinowit
Offline Send Email
Feb 1, 2007
4:52 pm
Messages 95162 - 95191 of 154428   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help