Re: The SOAP Challenge - SF says we can't do it!

2004-02-26 Thread Nelson Winters
Don't know if this will help at all, but after much frustration, this was how I was finally able to interact with a SOAP web service.I didn't have to worry about maintaining session state across multiple requests though. -Nelson cfset soapMethod = GetInfo cfset soapAction =

Re: Using complex data with web services

2003-11-10 Thread Nelson Winters
Yes, an article would be a good idea... for all the talk that Macromedia has done to say that CFMX integrates well with .NET via web services, they sure don't bother to giving any good example of how to accomplish this (or I haven't found any yet). Anyways, I believe you've got me going the right

Re: Attempts at banking fraud

2003-11-10 Thread Nelson Winters
You can try finding out who owns the domain (if it is a domain).If so, forward the email and contact info to the police department where you the person lives and let them look into it.They'll pass it to the feds if appropriate. I just went through this last week.I was called the next day by the

Using complex data with web services

2003-11-07 Thread Nelson Winters
I'm trying to use a .Net based web service.I was able to get the following simple web service working. cfinvoke method=getWords webservice=http://www28.brinkster.com/hegdes/NumberToWords.asmx?WSDL returnVariable=Test cfinvokeargument name=myNumber value=5892.25 /cfinvoke However, the web

Re: Using complex data with web services

2003-11-07 Thread Nelson Winters
Thanks Matt, Unfortunately, I don't think I made myself clear.I'm trying to invoke a webservice that is set up this way. This is the latest approach I've tried (unsuccessfully): cfscript oRequest = structNew(); oRequest.oCredentials = structNew(); oRequest.oCredentials.sCompanyName = ABC;

cfdirectory = slow

2003-10-21 Thread Nelson Winters
Where do I report issues with CFMX to Macromedia?I know I'm not the first to discover this, but cfdirectory is extremely inefficient when dealing with large directories.I don't know if this is a problem with J2EE platform that CFMX runs on top of or what, but it shouldn't take several seconds to

Re: cfdirectory = slow

2003-10-21 Thread Nelson Winters
at all? You already know the filename, so you can just use fileExists() to check if it's there, and CFFILE to read it in if you need the contents. -Original Message- From: Nelson Winters [mailto:[EMAIL PROTECTED] Sent: Tuesday, October 21, 2003 10:24 AM To: CF-Talk Subject: cfdirectory

Re: cfdirectory = slow

2003-10-21 Thread Nelson Winters
:13 PM Subject: RE: cfdirectory = slow why not use java ? CFOUTPUT #CreateObject(java, java.io.File).init(FileNameAndPathHere).lastModified()# /CFOUTPUT HTH -Original Message- From: Nelson Winters [mailto:[EMAIL PROTECTED] Sent: Tuesday, October 21, 2003 19:02 To: CF-Talk Subject: Re

CFMX and SMTP

2002-11-07 Thread Nelson Winters
We've recently migrated one of our servers to MX and everything's been running really well. However, we've just come across the following issue: CFMX appears to be holding a lock on our mail server's SMTP process when sending mail. The mail server will eventually lock up and when trying to

Re: nrotbko: sql server big int

2002-11-07 Thread Nelson Winters
I think FF = 1 Byte = 8 Bits AND = 8 Bytes = 64 Bits 18446744073709551615 = 2^64 However to account for negative numbers, 1 bit is used to determine if the number is positive or negative. So, if I'm correct, the upper limit would be 2^64 or ~ 9.22337 * 10^18 (I can't calculate

Possible insight into JDBC probs in CFMX

2002-10-08 Thread Nelson Winters
I've seen a lot of posting regarding JDBC instability in CFMX. The issue I've run across (using CFMX with SQL Server) is where a query passes a blank where a number is expected. I get the following error: For example, if #Field2# is an empty string then cfquery sp_UpdTable '#Field1#',

Re: Categories

2002-07-17 Thread Nelson Winters
Isaac, Just for clarification the categories don't need a delimeter because it's broken into fixed-width character groupings. So in Ken's original example, the grouping with is 5 characters. This means that if your using a 255 character field to store this info, then you could store 9,999

Re: CFMX beta volunteers needed

2002-07-17 Thread Nelson Winters
Actually, your grammar is fine, it's your spelling that's questionable. ;-) - Original Message - From: John Cummings [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Wednesday, July 17, 2002 11:37 AM Subject: RE: CFMX beta volunteers needed BTW, that should be accept, not except

Re: Categories

2002-07-17 Thread Nelson Winters
Since you asked... How do you get all the parent categories for a given subcategory? SELECT * FROM tblCategories WHERE treepath = Left(thisTreePath, Len(treepath)) AND LEN(treepath) Len(thisTreePath) Moving a category with subcategories must be a bitch too... -- error check to not

Respool mail on CFMX

2002-07-16 Thread Nelson Winters
Anyone know how to respool mail in CFMX? Care to share? I tried removing the Undelievered_ prefix from the filename and place back in the spool directory with no luck. Thanks, Nelson __ Structure your ColdFusion code with

Categories

2002-07-16 Thread Nelson Winters
Ken, I agree, this is a great way to handle categories. I used this method a long time ago on a app I created with CF2 and it worked really well. I've always been surprised that this method doesn't get used more. Do you know of anywhere that has a standard set of queries/stored procedures for

CFMX JDBC database issue

2002-07-12 Thread Nelson Winters
Has anyone experienced JDBC instability using CFMX? I have an app that runs fine and then, for no apparent reason (no changes to the CF code, stored procedure or to any settings on the server), I start getting database errors and no queries work until I stop and start ColdFusion. Here's the

Re: SQL question...

2002-07-10 Thread Nelson Winters
Here's one way to do it using the group parameter of cfoutput. cfoutput query=thelist group=parttype !--- loop for every change in ParType --- cfset Total = 0 cfoutput !--- loop for every record --- tr td#PartType#/td td#PartName#/td

Re: SQL question...

2002-07-10 Thread Nelson Winters
Oops I forgot the / on the cfoutput: cfset Total = Total + InStock /cfoutput - Original Message - From: Nelson Winters [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Wednesday, July 10, 2002 10:56 PM Subject: Re: SQL question... Here's one way to do it using

Installation issues...

2002-07-05 Thread Nelson Winters
I'm trying to reinstall the preview version of MX and it is not installing the \1 directory under \cfusionmx\runtime\lib\wsconfig. It's a Win2000 server running IIS5. If anyone has any ideas, I'd be very grateful. I've gone through the install about 5 times now trying different things, but

Re: Installation issues...

2002-07-05 Thread Nelson Winters
Thanks for the information Dave! I meant to say the Trial version. It looks like I finally got it working. Nelson - Original Message - From: Dave Watts [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Friday, July 05, 2002 12:56 PM Subject: RE: Installation issues... I'm

Re: CF MX Service Pack Timeline?

2002-07-05 Thread Nelson Winters
I had heard that the inability to do a server-side redirect using getPageContext().forward() on a form action page (having form variables) would be fixed in an upcoming service pack. Can anyone confirm/deny this? Nelson - Original Message - From: Rizal Firmansyah [EMAIL PROTECTED] To:

Allaire Forums

2002-02-04 Thread Nelson Winters
Does anyone know where I can get a copy of the old Allaire Forums? I know that at one point they made it an open source project at www.forumspot.org, but apparently that site is no longer live. Thanks, Nelson __ Why Share?

Re: Random Records

2001-11-04 Thread Nelson Winters
If you're using SQL Server, you can try: SELECT*, NewID() FROM tblWhatever ORDER BYNewID() -Nelson - Original Message - From: Keen [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Saturday, November 03, 2001 8:28 PM Subject: Random Records I need to run a query

Dreamweaver and Ultradev?

2001-10-26 Thread Nelson Winters
Can anyone explain the difference between Dreamweaver and Ultradev? Also on a separate note, how hard would it be for Macromedia to have an option in Dreamweaver/Ultradev to break up the screen like Homesite/CF Studio? The ideal solution would be for the Design tab in HS/CFS which is pretty

Re: ColumnList

2001-10-25 Thread Nelson Winters
Excellent find, David! I never noticed that before. Seems like it would be easier for them to return ColumnList in the proper order and then we could just use ListSort() if we want it sorted. Nelson - Original Message - From: David Shadovitz [EMAIL PROTECTED] To: CF-Talk [EMAIL

Re: How do I pipe the results of running CFML.EXE to a file?

2001-10-21 Thread Nelson Winters
I don't know if or how you could do this directly. However, if it's not possible, the following might provide a suitable solution. In your cf template (harness_tag_disqualify_user_field.cfm), embed your code in the cfsavecontent/cfsavecontent tags (Use cf_bodycontent custom tag if you're not

Re: CF_Query as an array

2001-10-21 Thread Nelson Winters
I may be mistaken, but from your error message, it looks like you haven't put Apartment_ID in a GROUP BY clause. It would be helpful if you actually post your query. With regards to the query really being an array, that's almost true. It's really a structure of arrays. This means that you can

Re: XML-XSL-CF_SOXML

2001-09-26 Thread Nelson Winters
Timur, You should try posting your question on SiteObjects' forum? Brett is usually very helpful. Nelson - Original Message - From: Timur Catakli [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Wednesday, September 26, 2001 1:56 PM Subject: XML-XSL-CF_SOXML Hi everybody, my

Re: Listcontains question

2001-09-20 Thread Nelson Winters
Carlo, ListContains works correctly as described in the Language reference. For what you want, check out ListFind and ListFindNoCase. Nelson - Original Message - From: van Wyk, Carlo [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Wednesday, September 19, 2001 5:27 AM Subject:

Re: Microsoft Word Coldfusion

2001-09-20 Thread Nelson Winters
Check out www.cfcomet.com -Nelson - Original Message - From: [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Wednesday, September 19, 2001 9:19 AM Subject: Microsoft Word Coldfusion Hi I wish to integrate a ms word document within an existing html page using CF. I would like

Re: XML Parser for CF

2001-09-18 Thread Nelson Winters
Check out cf_soxml at www.siteobjects.com. If you have any questions, Brett is very helpful on their support forums. Nelson - Original Message - From: Critter [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Tuesday, September 18, 2001 12:59 PM Subject: XML Parser for CF Hello

Re: Disabling back button

2001-09-07 Thread Nelson Winters
Try putting the following javascript on your page... may do what you need. script window.history.go(1); /script -Nelson - Original Message - From: Mak Wing Lok [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Thursday, September 06, 2001 3:35 AM Subject: Re: Disabling back

Re: Dynamic Fieldnames database update

2001-08-29 Thread Nelson Winters
Erica, This should do what you want: UPDATE interview SET ivr_key = '#Evaluate(form.fieldname counter)#' WHERE ... Nelson - Original Message - From: [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Wednesday, August 29, 2001 6:44 PM Subject: Dynamic Fieldnames

Re: loop question

2001-08-27 Thread Nelson Winters
Tony, I agree! Once you get used to using lists, you start using them all over the place. Attached is an example of some code I wrote last week to output a non-formatted xml packet (one without any spaces between the tags like you see when you output a wddx packet) into the nested format that