Stored Procedure throwing error in CF but ran successfully

2010-01-13 Thread Ali Awan
I have run into a unique situation, the first time in my 10 years of using CF. I have a pseudo-fusebox app, and I have an act page we'll call it: act_process.cfm it calls 2 qry files that in turn call one stored proc each. When the act page runs, I have checked the database and all the procs

Re: Stored Procedure throwing error in CF but ran successfully

2010-01-13 Thread Ali Awan
Mike, Thanks for responding. Another thing I forgot to mention is that when I run the procedure in SQL Server directly it runs without error. Also, and this is sporadic. When I run the stored proc in coldfusion by itself, by doing an Exec statment in a CFQuery. Sometimes it runs without

Re: Stored Procedure throwing error in CF but ran successfully

2010-01-13 Thread Ali Awan
The best way to troubleshoot this issue if it is reproducible is to start a SQL Server Profiler trace to observe exactly what the database is doing. -Mike Chabot Mike, I am trying this at work and do not have the admin privileges to run the SQL Server Profiler. Another interesting thing is

Re: Stored Procedure throwing error in CF but ran successfully

2010-01-13 Thread Ali Awan
Brad, Thanks for the helpful suggestions. In terms of numbers of inserts, well it's an insert statement within a cursor loop. There's 305 records being added so it loops 305 times and does an insert. As I mentioned in my last post. When I take my execution page out of the pseudo-fusebox app

Coldfusion 8 and Win 2003 problems

2008-02-25 Thread Ali Awan
I have an application running fine on ColdFusion 8 and Windows 2003 Server with SP2. Then I migrated the application to a production server also running ColdFusion 8 and Windows 2003, but this one does NOT have SP2. Both are on IIS 6. The CF application has been running fine up until now. Now

Re: Coldfusion 8 and Win 2003 problems

2008-02-25 Thread Ali Awan
a guess. As a sidebar, why are you not running SP2 on your production machine? --Ben Doom Ali Awan wrote: ~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date Get the Free Trial http

Re: Coldfusion 8 Not Working

2007-12-26 Thread Ali Awan
own JRE... you souldn't need any java installed. On Dec 21, 2007 3:40 PM, Ali Awan [EMAIL PROTECTED] wrote: ~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date Get the Free Trial http

Coldfusion 8 Not Working

2007-12-21 Thread Ali Awan
I have a server running Windows 2003 Enterprise Server SP2. IIS 6.0 I installed Coldfusion 8, with the server configuration. No errors during installation. However I cannot access the coldfusion administrator, I get a 404 bad request error. I checked the IIS settings, and the CFIDE

Re: Coldfusion 8 Not Working

2007-12-21 Thread Ali Awan
I have a server running Windows 2003 Enterprise Server SP2. IIS 6.0 I installed Coldfusion 8, with the server configuration. No errors during installation. However I cannot access the coldfusion administrator, I get a 404 bad request error. I checked the IIS settings, and the

Re: Coldfusion 8 Not Working

2007-12-21 Thread Ali Awan
It turns out that, the server did not have any version of the Java JRE installed. So I downloaded and installed JRE 1.5 (java 5), since after some googling, I read about some problems with Java 6 (JRE 1.6). Once I downloaded that to the server, I was able to run the CF Administrator. I have

Re: Coldfusion MX J2EE Configuration on Apache in Windows

2007-08-29 Thread Ali Awan
You know what's funny. After I went through this whole rigmarole. Turns out they're going to be using MX 7 after all :) Hey, at least I can setup MX6.1 with Apache now, if a client ever needs it. Thanks again, Ali On Monday 20 Aug 2007, [EMAIL PROTECTED] wrote: Thanks for pointing out

Re: Coldfusion MX J2EE Configuration on Apache in Windows

2007-08-20 Thread Ali Awan
James, Many Bothans died, when I couldn't get Apache 2.2 to work.. :P Thanks for pointing out that Apache 2.2 doesn't work with MX 6.1 This saved me a lot of further aggravation and hair pulling. Although I was very tempted to do as other suggested and load MX7 or 8, the J2ee version and

Re: Coldfusion MX J2EE Configuration on Apache in Windows

2007-08-19 Thread Ali Awan
I just wanted to thank everyone for their suggestions. I think I will just try uninstalling apache, and reinstalling the version that MX 6.1 works with. I've never used the multiserver configurations for MX7 or 8 yet, so I wouldn't know what I would be doing, by trying to add a new instance

Coldfusion MX J2EE Configuration on Apache in Windows

2007-08-17 Thread Ali Awan
I am wondering if anybody has any good and reliable links which show a step-by-step process on how to Install and configure ColdFusion MX 6 or 7 on a Windows Machine running an Apache webserver. I tried installing MX J2EE version. I was able to launch JRUN and see the cfusion service running,

Re: Coldfusion MX J2EE Configuration on Apache in Windows

2007-08-17 Thread Ali Awan
I should have specified, that I have to load mx 6.1 since that is what I'll be using at my current work. It's been 3 hours, and there's very little on the net, or google, related to the problem(s) I am having. Sure I can install 7 or 8 and it will probably install smoothly, but I want to

Re: Using CFLock around a query

2007-05-09 Thread Ali Awan
Yes and no. In one case, I found concurrent queries and I also found 2 sessions hitting the same table. Did you find any concurrent queries? For a deadlock you need at least two SQL sessions hitting the same object. It is not unlikely this can deadlock, but to be certain we need to see the

Using CFLock around a query

2007-05-08 Thread Ali Awan
Every once in a while on my intranet application I get Database errors. MS SQL Server will throw an error that the transaction was deadlocked. It happens around a piece of code in which I have 2 queries, an Update and a Delete which are nested inside a CFTransaction. It also happens on

Re: Using CFLock around a query

2007-05-08 Thread Ali Awan
Ben, I'm doing an exclusive lock. What kind of lock are you doing? Scope/name/exclusive? . Ben Nadel Certified Advanced ColdFusion MX7 Developer www.bennadel.com ~| Deploy Web Applications Quickly across

Server Down?

2007-04-10 Thread Ali Awan
I haven't been able to access the House of Fusion website all day (Tuesday 4/10). Anybody out there? Ali ~| Upgrade to Adobe ColdFusion MX7 Experience Flex 2 MX7 integration create powerful cross-platform RIAs

Re: Need help with grouped query and inner cfoutput

2007-04-09 Thread Ali Awan
The 3rd and 4th clauses seem to be identical in your Where Clause AND tblquestionsanswers_x.answersetid = tblanswersets.answersetid AND tblanswersets.answersetid = tblanswersetsanswers_x.answersetid That may be why you are getting a Cartesian Product. Another thing to consider is the order that

Re: Random session drops?

2006-11-22 Thread Ali Awan
Sorry for the double post. I forgot to mention that I was running on CF5, and thought that it was a CF5 only issue. I also hoped that once we upgrade to MX 7 or Scorpio, that it will go away. What version of CF are you running? If it's 7 or above, then looks like the problem won't go away,

Re: Random session drops?

2006-11-22 Thread Ali Awan
Neil, I have had that problem too. I don't count myself as a newbie developer, as I've been coding in CF for almost 10 years. It's only in my current job that I have seen it happen. And it happens like once every blue moon. Not frequently, but when it does, there's no explanation for it.

Re: Cool things about cf

2006-11-14 Thread Ali Awan
Everyone has already responded to you with all the things I would have added. But it's the simple things that make CF cool in my opinion. Working with PHP, or .Net or Java, simple things like File Uploads and CFQuery are what make CF cool. One thing I would add is CFMail. I've been through

How can I leverage the Benefits of CFForm in MX7?

2006-10-19 Thread Ali Awan
At my current workplace, we are still using CF 5, but have been evaluating MX 7 for a while now. When time and budget permit we will make the leap into MX 7. In my spare-time I try and think of new apps or projects for the company that would leverage the benefits and new features of MX 7.

Re: How can I leverage the Benefits of CFForm in MX7?

2006-10-19 Thread Ali Awan
it compelling to hack through. Teddy On 10/19/06, Ali Awan [EMAIL PROTECTED] wrote: ~| Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting, up-to-date ColdFusion information by your peers, delivered

Re: How can I leverage the Benefits of CFForm in MX7?

2006-10-19 Thread Ali Awan
Teddy, One of them is an embedded form, the other is a grid. Thanks, Ali Well, What is in the IFrame? Is ita grid? Another embeded form? Teddy On 10/19/06, Ali Awan [EMAIL PROTECTED] wrote: ~| Introducing the Fusion

Re: How can I leverage the Benefits of CFForm in MX7?

2006-10-19 Thread Ali Awan
On 10/19/06, Ali Awan [EMAIL PROTECTED] wrote: ~| Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting, up-to-date ColdFusion information by your peers, delivered to your door four times a year. http

Re: CF 8 Upgrade Cycle: What''s yours?

2006-10-04 Thread Ali Awan
We are only now talking about upgrading to MX7 from CF 5. Once our codebase is stable and the necessary conversions have been implemented after the upgrade, we will have to determine how cost-effective the upgrade to CF 8 will be. Basically, I have to be able to sell CF 8 to my bosses. If the

Re: CFIF statement in query

2006-10-04 Thread Ali Awan
I would recommend Jim's suggestion, with a slight modification. Since he wanted ucDescription contains Graduate Certificate, I think in SQL Server that would be LIKE Anyway try this. cfquery datasource=computedColumnTest name=testquery SELECT ucDescription, ucTitle, CASE WHEN ucDescription LIKE

Re: Top 100 ColdFusion Programmers

2006-08-25 Thread Ali Awan
I second that. In terms of SQL prowess being an indication of a developer's skills, some of the reporting I have done, requires an intense knowledge of SQL Server complex queries and Stored Procedures. Something that your average HTML guru who just picked up teach yourself Coldfusion in 10

Re: CF Ajax and passing a ####

2006-07-26 Thread Ali Awan
I tried posting this message through the houseoffusion website, but got an error, so I'll post it again. I apologize if this appears twice. If you are passing the value within Javascript, you can apply the escape() function. I had the same problem when I was doing an ajax call from within

Re: OT: Javascript Menu that Displays Over IFrames

2006-07-18 Thread Ali Awan
. Fast, explained well, validates through w3c. Mingo. Ali Awan wrote: Thanks for all the fish Actually I kind of figured this out. I found some free CSS menus, which via-css convert an Unordered List to an invisible Iframe, so now the drop-downs display over the select boxes

Re: OT: Javascript Menu that Displays Over IFrames

2006-07-17 Thread Ali Awan
boxes in IE. The trick is to put an relatively positioned empty iframe behind each one of your drop down menu. On 7/14/06, Ali Awan [EMAIL PROTECTED] wrote: ~| Introducing the Fusion Authority Quarterly Update. 80 pages of hard

OT: Javascript Menu that Displays Over IFrames

2006-07-14 Thread Ali Awan
I know this is not a CF question, but since this list has a lot more activity than the Javascript one, I never get any questions answered there, I figured there are many more people on here that are more well-versed in javascript than I. I am looking for a free DHTML/Javascript Drop-Down

Re: Announcing ColdPDF

2006-06-15 Thread Ali Awan
Cool, so will this be like a replacement to ActivePDF? I did some research on iText, and found something I've been trying to do with CF and PDF's for a while now, which is generate 2D(pdf417) barcodes inside a pdf, dynamically from form data passed in. So if I'm able to access that iText

Re: CFFile Sharing Violation

2006-05-02 Thread Ali Awan
Dave, The joys of working on Legacy CF 5 code. I figured that was the solution, but I just needed some suppporting arguments. cheers, Why not do all your file writing after the fact, instead of within your loop, etc? Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/

how to send a null response header in http

2006-05-01 Thread Ali Awan
I am having an issue with a client, who is posting an XML file to me. They post an XML file (I don't know how, through java somehow) And I have a CF file that parses the gethttprequestdata(). Then it does some stuff, and writes some files and calls a storedproc. That part isn't important. The

Re: how to send a null response header in http

2006-05-01 Thread Ali Awan
Jochem, Thanks! That worked like a charm! All I needed to do was add that snippet sending back a 204 Response Header. Take care, Ali They will always get a HTTP response back, there is no way around that because that is how HTTP is defined: The best thing to do is using cfheader to send a

Re: how to send a null response header in http

2006-05-01 Thread Ali Awan
Thanks Chris, But I think Jochem has the correct solution. I too thought about cfsilent, but that won't work, since I'm taking their post and writing it out to a variable and then writing that to a file. I think cfsilent would block that output. However, I appreciate your help, and thanks for

CFFile Sharing Violation

2006-05-01 Thread Ali Awan
I am running into an issue where I am creating a comma delimited file based on a query result. So I have a CFFile Append inside a Query Loop. I am trying to Lock the File Access so this is the hierarchy of my code in pseudo-code cftry cflock name=myFileLock loop query file

Re: MX7 won't run after uninstalling Flex

2006-04-13 Thread Ali Awan
Dave, Thanks for taking the time to answer my question. However, I already wiped my MX7 installation and just re-installed it. Luckily this was NOT on a production server, and everything is good now. I wish I would have seen your post, before I did that. Just so I could try that

MX7 won't run after uninstalling Flex

2006-04-12 Thread Ali Awan
Hi all, I tried following the instructions on the MM/Adobe Labs website to uninstall the flex connectors. However, now when I restarted the CF service, I get the dreaded Page Cannot be Displayed when trying to run the CF Administrator. I'm running MX7 on Windows XP Pro. I think the

Re: CF Code Crashing

2006-04-03 Thread Ali Awan
This is the problem: I have 22000 records in a table. The data is as follows: AgentName, ClientID, ContractNo, TransactionType, NetPayable The way the relationships work is that for each Client, there is at least one Agent, and at most 2. In the cases that there are 2 agents per Client, the

CF Code Crashing

2006-03-31 Thread Ali Awan
I am trying to fix a problem I am having with my code which runs a large report. By the way, I am running CF 5.0, on a Windows 2k Server, and SQL Server 2000. So, no CFC's or anything else MX specific The code works fine on my dev box. I don't think it's a problem with my queries,

Re: Can I see line feed vs. carriage return?

2006-03-29 Thread Ali Awan
Jon, Neither MSWord nor Homesite offer what you are looking for. I have found myself in the same predicament many times, you want to see the carriage return character separately as well as the Line Feed character, am I correct? I found a great little editor Notepad 2. Here's the link:

Converting a Query to Stored Procedure

2006-03-17 Thread Ali Awan
I have a query that I want to convert to a stored procedure. The problem I am having is that the query has lists in it and I don't know how to pass those through in the stored procedure. My query looks like this: [cfquery name=getOver4 datasource=mydsn] SELECT DealerID,

Re: Converting a Query to Stored Procedure

2006-03-17 Thread Ali Awan
this might help you Ali http://vyaskn.tripod.com/passing_arrays_to_stored_procedures.htm Qasim On 3/17/06, Ali Awan [EMAIL PROTECTED] wrote: Thanks Qasim, that almost helps, but my ID's are 6 character varchars. So what I'm passing, is all delimited by single quotes. My first problem

Re: Converting a Query to Stored Procedure

2006-03-17 Thread Ali Awan
Thanks to everyone who posted suggestions. Qasim, the article showed several examples using an integer list. I am looking for an example using a character list. I ended up searching some SQL sites and came up with something on my own. Using preservesinglequotes in ColdFusion, did not help, it

XML, SOAP and WDDX and CF5

2006-01-23 Thread Ali Awan
I am in the processing of writing a CF application in CF5. The client I am working with will be sending me an XML packet via an HTTP POST. So I assume it's a SOAP packet. Is it possible to use WDDX to grab that packet and manipulate it as needed? Is it possible to parse that packet as

Re: XML, SOAP and WDDX and CF5

2006-01-23 Thread Ali Awan
Thanks for the input Alan. However this is an app for the client, and CF5 is what we are stuck with. Eventually, we will upgrade to MX7, we all agree, but until then we have to use what we got to pay the bills and keep everyone's mouths fed. :-) If you have any say in the matter I would try

Re: XML, SOAP and WDDX and CF5

2006-01-23 Thread Ali Awan
Thanks for the tips Dave, I'll check those out before continuing on. You should first confirm exactly what XML you're receiving. Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ Fig Leaf Software provides the highest caliber vendor-authorized instruction at our training centers in

Re: Smallest, coolest function I ever wrote: Struct()

2006-01-05 Thread Ali Awan
I've been using cf since version 3, and I always remember it being there. I've always used, helped me immensely. It reminds me of ValueList(). I'm not sure how long that's been available in CF (seems like it's new to CF6 or CF7), but I've heard people say That was something I always had to

Re: Smallest, coolest function I ever wrote: Struct()

2006-01-05 Thread Ali Awan
it = valuelist() I've been using cf since version 3, and I always remember it being there. I've always used, helped me immensely. Visit http://training.figleaf.com/ for more information! ~| Message:

Re: A Contractor or Two

2005-12-29 Thread Ali Awan
I loved reading Bryan’s post, about the grocery store analogy. I’ve tried to dip my foot in the pool of freelancing, and I’ve turned down a lot for the same reasons. Oh we just want to give this a try for a couple of months (without pay), and if it works out….. Yeah, hopefully the

Re: A Contractor or Two

2005-12-28 Thread Ali Awan
Matt, I've been asking a similar question to no avail. I'm glad someone started this thread over here. As it seems from your post that you have quite some experience doing this on your own. I just wanted to ask some advice of you. Do you suggest having a set hourly rate, set in stone? Like

Re: CF Hosting

2005-11-17 Thread Ali Awan
That's true of course, as you said. But that's why I look out for the one or 2 bad reviews. If they're just one liners I ignore them. But if the one bad review covers almost a page, then I pay attention and if there are like 50 1-liner good reviews after that saying this hosting site rocks,

Re: Sending Faxes through Cold Fusion

2005-11-17 Thread Ali Awan
Where i work, we have a faxserver. To send faxes, we create either RTF or PDF attachments and then do CFFILE write, to the faxserver. Basically we write to the faxservers control file. It takes certain parameters, such as the Destination Fax Number, and Attachment. The attachment is the RTF

Re: CF Hosting

2005-11-16 Thread Ali Awan
Thanks Jacob, Do you know if they disable any CF MX 7 features? Like certain tags, or other features? Otherwise, this sounds like a great affordable way to get my site going. Thanks, Ali I use Xtreme Hosting (Linux), and I have been happy so far. There are a couple of quirks here and

Re: CF Hosting

2005-11-16 Thread Ali Awan
Once again, thanks Jason. That link really answers my question(s). I didn't expect access to the CF Admin either. I just wanted to make sure that there was access to all of the CFTags and functions. Cheers, Ali For one, you don't have access to the CF Admin, but I didn't expect that. Also,

Re: CF Hosting

2005-11-16 Thread Ali Awan
Mike, Viux was also one of the hosting companies I was researching. They seem to have a good pricing plan too. A reason that Xtreme hosting sounded good to me was the unlimited SQL Server Databases. Thanks for the info though. I'd rather get my own server and play around with it, but then I

Re: CF Hosting

2005-11-16 Thread Ali Awan
Why on earth would I do that, when I can just ask here? :P Seriously though, yeah thanks for the tip. His initial link to CF ISP's though, returns a broken link. After that, he has a pretty extensive list of over 600 companies, I don't know how up to date it is. A couple of the companies

Re: CF Hosting

2005-11-16 Thread Ali Awan
I remember your lists from when I first started programming in CF. They are a great resource, and it's wonderful that you still keep them, it even serves as somewhat of a historical archive for CF in a way. It's great how you provide user reviews and feedback, that way we can know some of the

CF Hosting

2005-11-15 Thread Ali Awan
After reading a couple of posts lately on CF Hosting, I thought I'd pose a question to the list. I've been trying to find a good, affordable CF Hosting company, and I came across this site: http://www.xtreme-host.com/heavy-lite-win.html Has anyone on this list ever used their services? Any

Re: Problems with sessions in CF 5

2005-11-01 Thread Ali Awan
That sounds about right. So what would be a good alternative? Setting a session or cookie on every page to something like the cgi.script_name, and then checking for the existence and value of it? Something like session.this_page=#cgi.script_name#? Thanks, Ali Adam H wrote Software

Problems with sessions in CF 5

2005-10-31 Thread Ali Awan
I am trying to track down an error I receive in an app written in CF 5. This is an error that happens very rarely. In addition a user may only ever receive the error once, but then never again. Meaning, the same use will not encounter the error again. What is happening is that I have a

Re: Problems with sessions in CF 5

2005-10-31 Thread Ali Awan
Sorry for the double-post. However, there is something even more strange. I'm checking for the http_referer before I set session variables. Now in this rare instance, the http_referer does not exist. Does anybody know how this could happen? The user gets to the page from a form submit,

Re: Problems with sessions in CF 5

2005-10-31 Thread Ali Awan
. Anyway, I have no clue, then, why in this case all of a sudden the form fields don't exist in the final step of the form submission. Ali _ From: Ali Awan Sent: Monday, October 31, 2005 4:01 PM To: 'cf-talk@houseoffusion.com' Subject: Re: Problems with sessions in CF 5 This is even more

Re: Problems with sessions in CF 5

2005-10-31 Thread Ali Awan
This is even more confusing then. Because I do javascript locations on other pages, except this one. The only way people get to this page is via form submits. Thanks for responding though, Nick. Ali, the http_referer does not exist. One of the reasons could be in Internet

Re: MX7 J2EE (Was MX7 and Flex recommendations)

2005-10-27 Thread Ali Awan
Thanks, Dave, Doug, Adrock I've been afraid of the J2EE version, but now I'm really excited. Thanks for clearing everything up and getting me pointed in the right direction. I'm looking forward to playing with it this weekend. Cheers, Ali No, setting multiple instances up with IIS is

Re: ColdFusion MX7 and Flex Recommendations

2005-10-27 Thread Ali Awan
on the subject. On 10/25/05, Ali Awan [EMAIL PROTECTED] wrote: I was thinking that to use CF and Flex together there was some sort of Flex server component that could be added to CF server. The Enterprise Data Services component of Flex 2 is/will be a server component but Flex Builder 2 can create

Re: ColdFusion MX7 and Flex Recommendations

2005-10-25 Thread Ali Awan
On 10/24/05, Ali Awan [EMAIL PROTECTED] wrote: I am thinking of installing the dev edition of MX 7 and then installing the Flex 2 plugin. The Flex 2 plugin? Not sure what you mean here. There is a Flex Builder 2 Eclipse plugin (that you install on top of Eclipse) or there is a Flex

Re: MX7 J2EE (Was MX7 and Flex recommendations)

2005-10-25 Thread Ali Awan
This leads me to the question, what are some of the benefits/reasons to do a J2EE install? The caveat to this question being, if I don't already develop Enterprise Java Applications. Supposing I have the time to learn and play with JRUN, and want to expand my programming knowledge.

Re: MX7 J2EE (Was MX7 and Flex recommendations)

2005-10-25 Thread Ali Awan
Douglas, Thanks for replying to my question. Ah, so basically it's for multiple instances. Do you know if this plays well with IIS? Or is that where the many hours spent on the in-and-outs of JRUN/J2EE come in? ;) Thanks, Ali you get some more control over your CF instances. Note

ColdFusion MX7 and Flex Recommendations

2005-10-24 Thread Ali Awan
I am thinking of installing the dev edition of MX 7 and then installing the Flex 2 plugin. I was wondering if anyone else on here has done that successfully and if they could offer some advice as the best way to go. I would be installing it on a Windows XP Pro SP2 box. Do I need to

Re: Error Handling for Apps

2005-08-11 Thread Ali Awan
hosting acct at hostmysite to do all of that. Cheers, -- --mattRobertson-- Janitor, MSB Web Systems mysecretbase.com http://mysecretbase.com On 8/10/05, Ali Awan [EMAIL PROTECTED] wrote: ~| Discover CFTicket - The leading

Error Handling for Apps

2005-08-10 Thread Ali Awan
I know this is a topic that has been discussed before so I apologize. I went through the archives on here and got some ideas, but just wanted to validate/invalidate my assumptions before I started down a path. Basically what I'm looking for is somewhere to just bounce my ideas off of, and get

Re: Error Handling for Apps

2005-08-10 Thread Ali Awan
Thanks Barney, I forgot to mention that this is for a server running CF5. I'm testing out CFError by deliberately putting an error in one of my pages by not closing the CFSET tag Example: cfset t But it's still displaying the Coldfusion generated error in plain view. It does not seem to be

Re: Error Handling for Apps

2005-08-10 Thread Ali Awan
Thanks again Barney. That makes sense. Do you know if the catch-all type of Exception also handles form submission errors? Or would I need to include a second CFERROR tag in my application to handle those? Thanks for taking the time to answer all my questions by the way. Cheers, Ali original

Re: Error Handling for Apps

2005-08-10 Thread Ali Awan
Dave, That's basically what I was looking for. Meaning that I wondered what the VALIDATION attribute really did within CFERROR. Thank you Dave and Barney for your advice, I have enough to go on now to build my own site-wide custom error-handling. Cheers, Ali

Delivery barcode

2005-07-14 Thread Ali Awan
Does anyone know how to develop delivery barcodes using coldfusion. Thanks. As someone already mentioned, if you are just trying to develop standard vertical line barcodes, then fusionzone is the way to go. However if you are trying to develop barcodes such as the ones used by UPS, let me

RE: Sessions dropping in CF5

2005-05-23 Thread Ali Awan
Ryan, Here's the CFApplication tag from my application cfm. After that I just set some application vars. CFAPPLICATION NAME=Portal clientmanagement=Yes sessionmanagement=Yes setclientcookies=Yes sessiontimeout=#CreateTimespan(0,0,220,0)# clientstorage=CFvariables

Sessions Dropping in CF5

2005-05-20 Thread Ali Awan
I was wondering if anyone had any experience with sessions dropping unexpectedly on CF5. I have an application that runs fine when I test it from several different browsers, but once in a while when a client tries the app throws an error that it can't find a specific session variable. This

RE: CF 4.5 SOAP

2005-05-11 Thread Ali Awan
I think this is what you are looking for. CFSOXML from the Macromedia CF Developer Exchange. Beware of the wrapping URL. http://www.macromedia.com/cfusion/exchange/index.cfm?view=sn131extID=100361 8#loc=en_usview=sn131extID=1003618viewName=ColdFusion%20Extensionavm=1 In a previous

Re: CF Database Question add.

2005-04-27 Thread Ali Awan
Isn't it though? In an ideal world, I would have all DB access via Stored Procs, to begin with. I'm just working with what I got. Having to do workarounds like this is kinda scary, eh? Laterz! J On 4/20/05, Ali Awan [EMAIL PROTECTED] wrote: Thanks to everyone who responded

Re: CF Database Question

2005-04-20 Thread Ali Awan
a CFTRANSACTION with a high isolation level, like read_committed or even serializable. I'm gonna take a stab at this and guess you're using Access? Keep us posted! J On 4/19/05, Ali Awan [EMAIL PROTECTED] wrote: -- --- - Buy SQLSurveyor! http

Re: CF Database Question add.

2005-04-20 Thread Ali Awan
I'm not sure but I believe that you can't cflock cfquery's. Ali At 07:45 PM 19/04/2005, Ali Awan wrote: I forgot to add that App1 and App2 are inserting to the same table. I ended up with 2 records with the same ID. Couldn't you use cflock to lock the table until the first app is done? T

Re: CF Database Question add.

2005-04-20 Thread Ali Awan
How are you generating the ID? cfquery name=getNewID Select Max(ID) as myNewID From TableA /cfquery cfset queryname.myNewID = myNewID + 1 cfquery name=AddTableID Insert Into TableA (tableAID) Values (#myNewID#) /cfquery !--- some cf processing --- cfquery name=AddNewRecord Insert Into TableB

RE: CF Database Question add.

2005-04-20 Thread Ali Awan
good practice. -Original Message- From: Ali Awan [mailto:[EMAIL PROTECTED] Sent: 20 April 2005 16:25 To: CF-Talk Subject: Re: CF Database Question add. I'm not sure but I believe that you can't cflock cfquery's. Ali

Re: CF Database Question add.

2005-04-20 Thread Ali Awan
Thanks to everyone who responded to this thread. Especially Jared and Jochem, I will try out the cftransaction with a serializable isolation level. I think that will solve the problem. Thanks again, Ali Ali Awan wrote: If you do all this in a serializable transaction, you should be fine

CF Database Question

2005-04-19 Thread Ali Awan
I have a question regarding ColdFusion and database requests. I have 2 applications on different servers, Server A and Server B and they both access a database on Server C. The problem is that recently that App1 on Server A and App2 on Server B ended up hitting the database at the same time.

CF Database Question add.

2005-04-19 Thread Ali Awan
I forgot to add that App1 and App2 are inserting to the same table. I ended up with 2 records with the same ID. ~| Logware (www.logware.us): a new and convenient web-based time tracking application. Start tracking and

CF Database Question add.

2005-04-19 Thread Ali Awan
I forgot to add that App1 and App2 are inserting to the same table. I ended up with 2 records with the same ID. This field is not an Identity Field in the DB because it is alphanumeric. Thanks, Ali ~| Discover CFTicket - The

Re: CFMX and Java

2005-04-14 Thread Ali Awan
running. http://java.sun.com/reference/api/index.html The stuff you'll want is in the java.math package, and maybe some support from stuff in java.lang. In particular, java.math.BigInteger. cheers, barneyb On 4/13/05, Ali Awan [EMAIL PROTECTED] wrote: -- Barney Boisvert [EMAIL PROTECTED

CFMX and Java

2005-04-13 Thread Ali Awan
I'm trying to do some calculations in CF which are resulting in huge numbers, so MX is throwing an error that my result will not fit into an integer. I figured a possible solution is to import the Java libraries into my CF page and then use some Java functions to work with double integers or

RE: Generating BarCodes in CF

2005-04-06 Thread Ali Awan
. On Apr 5, 2005 1:52 PM, Ali Awan [EMAIL PROTECTED] wrote: John, Oh well. Thanks for the tip though, I'll look into that. Ali -Original Message- From: Burns, John D [mailto:[EMAIL PROTECTED] Sent: Tuesday, April 05, 2005 10:57 AM To: CF-Talk Subject: RE: Generating

RE: Generating BarCodes in CF

2005-04-05 Thread Ali Awan
[mailto:[EMAIL PROTECTED] Sent: Monday, April 04, 2005 4:58 PM To: CF-Talk Subject: RE: Generating BarCodes in CF http://www.fusionzone.com/ http://www.infosoftglobal.com/PoS4TallyPro/index1.html -Original Message- From: Ali Awan [mailto:[EMAIL PROTECTED] Sent: April 4, 2005 18:48 To: CF

RE: Generating BarCodes in CF

2005-04-05 Thread Ali Awan
ColdFusion MX Developer Wyle Laboratories, Inc. | Web Developer -Original Message- From: Ali Awan [mailto:[EMAIL PROTECTED] Sent: Tuesday, April 05, 2005 11:07 AM To: CF-Talk Subject: RE: Generating BarCodes in CF Thanks for the links, but as I mentioned in my email

RE: Generating BarCodes in CF

2005-04-05 Thread Ali Awan
John, Yes, it is available in a font. The font is called PDF417, I believe. This sounds like the direction I may want to go in. Can you elaborate on how I could do that? We have ActivePDF installed on our server, could I do it using that? However, we can't just take plain text and

RE: Generating BarCodes in CF

2005-04-05 Thread Ali Awan
and tell ActivePDf to use that font (which must be installed on the server to work correctly). John Burns Certified Advanced ColdFusion MX Developer Wyle Laboratories, Inc. | Web Developer -Original Message- From: Ali Awan [mailto:[EMAIL PROTECTED] Sent: Tuesday, April 05, 2005 12:08 PM

RE: Generating BarCodes in CF

2005-04-05 Thread Ali Awan
Reserved http://www.fusionzone.com DO NOT REMOVE THIS NOTICE Works like a charm. Andy -Original Message- From: Ali Awan [mailto:[EMAIL PROTECTED] Sent: Tuesday, April 05, 2005 11:31 AM To: CF-Talk Subject: RE: Generating BarCodes in CF John, Yes, it is available in a font

  1   2   >