| Thread | Last Post | Replies |
|
| Axis Error after updater for 6.1 | 10 Nov 2004 18:38 GMT | 1 |
I'm getting this axis error after installing the updater. It worked prior to the install. I searched the acrhive and found some info here http://www.mail-archive.com/dev@lists.cfdeveloper.co.uk/msg16409.html , but it says to add a mapping to correct the problem but this did ...
|
| my webservice stop working! | 10 Nov 2004 18:12 GMT | 1 |
Webservice stop working after I run the CF MX updater 6.1 My problem is that it failed to download the webservice's WSDL file, provided that the URL is valided, it worked fine before I run the updater 6.1. I also set the DISABLE_CFWS_ADAPTERS to false in the web.xml file, but ...
|
| Should I IF before a FOR loop? | 10 Nov 2004 18:11 GMT | 4 |
Here's a tidbit I discovered. It may be obvious to some, but I have always wondered this and thought I'd do a test to find out. If I do a CFQUERY that I plan to loop through, should I first test to see if the record count is positive or let the loop take care of that.
|
| Passing cfc variables with cfscript | 10 Nov 2004 17:30 GMT | 1 |
Using cfscript how do I pass a variable? I want to pass a field to the addStudent method. <cfscript> oStudents = CreateObject('component', 'asseweb.CFC.International'); addStudent = oStudents.addStudent(); </cfscript>
|
| <cfdirectory> file browser | 10 Nov 2004 12:52 GMT | 4 |
Hi, I want to make a file browser that can browse the server's file system. But I can't find a way where I dynamicly can get all the allocated drives on the system. Does any one know how to get the local drives? (a:\, c:\, d:\ etc.) Thanks Morten
|
| Randomizer not randomizing | 10 Nov 2004 00:55 GMT | 1 |
I am running a CFSCRIPT as follows' <CFSCRIPT> Randomize(Now()); </CFSCRIPT> And testing it with this script: <CFSET Number = Randomize(Now())> <CFOUTPUT>#Number#</CFOUTPUT> This results in the return of the same number everytime. Which is 0.105518052394. Any Ideas what's ...
|
| variable in a variable | 10 Nov 2004 00:00 GMT | 3 |
Hello, everyone! Some time ago I tried to create a 'variable variable'. Is there such thing in ColdFusion? For example: <cfset str = structnew()> <cfset a='123'> <cfset str.123 = 'foo'> <cfoutput> #str.#a## </cfoutput> THe above should print 'foo' but it's giving me an error. ...
|
| max(dateAdded) | 09 Nov 2004 22:09 GMT | 5 |
Hi, Can anyone see the problem with this query: <cfquery name='getDateTrack' datasource='#theDatabase#'> SELECT DateAdded FROM TPSTracking WHERE active = '1' AND searchID = '#searchID#' AND clientID = '#ClientAuthenticate.clientID#' AND dateAdded = (SELECT ...
|
| Javascript & CFIF trouble | 09 Nov 2004 21:18 GMT | 3 |
I am having a problem setting a variable that will be used to call a Javascript function. The Scenario: In the BODY tag, I am using the 'onLoad' attribute. The onload value is a CF variable creatively called onLoadVar. I am setting this variable based on some options set on a ...
|
| Hiding a table till submit button is pressed? | 09 Nov 2004 20:42 GMT | 1 |
hello I've built a page that runs a search on a database everything is working fine however i was wondering if there is a way to hide the table till the user hits the submit button? once they would hit the submit button then the table would appear with the proper info! can ...
|
| sort columns dynamic table | 09 Nov 2004 20:35 GMT | 3 |
I am wanting to setup some sorting on a dynamic table. This table lists the names of teams, wins, losses, ties, forfeits, goals for, goals against, etc. The displayed result totals are not stored in the db as they display, they are calculated within the page, otherwise I think I ...
|
| ArrayDeleteAt against QoQ | 09 Nov 2004 20:16 GMT | 6 |
I've created a query of several rows then select the first one. NOTE: SELECT TOP 1... does not seem to work against a QoQ. In the sample function below I am trying to remove a row in the QoQ using ArrayDeleteAt() but am getting the error::
|
| CFSCRIPT vs CFML performance test | 09 Nov 2004 19:02 GMT | 1 |
I've done some extensive tests with a for loop within cfscript compared to a cfloop. In CF5 CFSCRIPT code was considered much faster, but I have discovered that MX is the great equalizer and there's not much incentive to write
|
| Image map as alternative to check box? | 09 Nov 2004 17:44 GMT | 3 |
I'm enhancing a site for job searches. The user currently chooses from a list of check box items to select which parts of the metro area to search for jobs -- e.g. north suburbs, east suburbs, outstate, downtown, etc. This is just one of the selection criteria for searching ...
|
| Is it possible to copy an XmlElement that is in one XmlDocument to another XmlDocument? | 09 Nov 2004 16:25 GMT | 2 |
I tried the following and it didn't work, anyone have an idea? <cfscript> //clone xmldoc 1 element clone = Duplicate(XmlDoc1.elem1); // assign to different xmldoc XmlDoc2.parentElem1.XmlChildren[1] = clone; // delete in old?? StructDelete(XmlDoc1, 'elem1'); </cfscript> Ca
|