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...
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...
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...
... 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...
Dreamweaver is a generic web editor, CFEclipse is aimed as an integrated development environment for ColdFusion There are differences here I understand but I...
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...
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?...
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...
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...
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...
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...
... This is true only if the method is calling / using instance data. Rich Kroll ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~| Upgrade...
Can anyone explain what applicationToken actually does in <cflogin>? I've got two applications on the same server, and, though I have this attribute,...
... 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...
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...
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,...
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...
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...
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...
Typically you would have something like this in your cfcs: <cffunction name="action" returntype="Any"> <cfset var local = StructNew()> [actual implementation] ...
#DateFormat(DateAdd("d",-1,Now()),"dd")# ... From: Orlini, Robert [mailto:rorlini@...] Sent: Thursday, February 01, 2007 10:45 AM To: CF-Talk Subject:...