Re: Long running process - cflock & cfthread

2008-07-27 Thread Rich Kroll
You could use java to manage this, take a look at creating a "guarded block": http://java.sun.com/docs/books/tutorial/essential/concurrency/guardmeth.html HTH, Rich ~| Adobe® ColdFusion® 8 software 8 is the most imp

Re: writing protected CF with CFStoredProc

2008-07-22 Thread Rich Kroll
so creates a parameterized query which on SQL server creates a cached query execution plan, minimially increasing performance. HTH, Rich ~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date Ge

Re: Easy way to dump contents of a CFC?

2008-07-22 Thread Rich Kroll
'object' representation, unless you build a recursive getMemento method, and each child object would have to support that interface. HTH, Rich ~| Adobe® ColdFusion® 8 software 8 is the most important and dramati

Re: Why do I need getters/setters?

2008-06-23 Thread Rich Kroll
in exactly one place, and all your other code leverages that single place. This is one of a myrid of problems that OO attempts to solve. You gain flexibility and maintainability but at the cost of an increased learning curve and additional complexity.

Re: CFC confusion. please help!

2008-06-23 Thread Rich Kroll
uld be in java it is typical to create large object graphs (nested sets of objects), where in CF you must limit the depth of the graph as there are high object instantiation costs. Good luck! Rich Kroll ~| Adobe® ColdFusion® 8 so

RE: SMS Event Gateway - encoding problem?

2008-06-09 Thread Rich Kroll
> > Hi Rich, > > this is coz charactor map supported by carrier > > when i faced such issue wiht other charactor at that time i just ask them > about this only like what exatly charactor map they are supporting > > if they are supporting GSM default then you will nee

RE: Asynchronous Web Service Response

2008-06-09 Thread Rich Kroll
cation seems to be the best solution. HTH, Rich ~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date Get the Free Trial http://ad.doubleclick.net/clk;192386516;25150098;k Archive: http://www.

SMS Event Gateway - encoding problem?

2008-06-09 Thread Rich Kroll
. On some carriers the '$' is replace with '?', while on other carriers the message simply cuts off where the '$' was encountered. Is there a different way we need to encode the text to get

RE: MMS in ColdFusion?

2008-05-19 Thread Rich
ng the classpath and is not finding the class MessagingException, which is located in the mail.jar, which is not by default in your classpath. If you want to do this via the command line, you will need to use the -classpath arg of javac to add the /l

RE: MMS in ColdFusion?

2008-05-19 Thread Rich
then export a new jar file to see your changes. HTH, Rich Kroll ~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date Get the Free Trial http://ad.doubleclick.net/clk;192386516;25150098;k Archi

RE: MMS in ColdFusion?

2008-05-19 Thread Rich
>How can I add to the generated XML? there's not an option for it in >the send.bat file? You will need to modify the java source (MM7SenderAndReceiver.java) and add: request.setVasId(yourVasId); Then recompile, run it again, and you'll see it in the XML packet.

RE: JMS & ActiveMQ

2008-05-19 Thread Rich
to do this? This is exactly what I'm trying to determine how to accomplish. Rich ~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date Get the Free Trial http://ad.doubleclick.net/c

RE: MMS in ColdFusion?

2008-05-16 Thread Rich
Greg, I did a quick scan of the SDK source, and username / pass are required attributes. You can test and see if you can pass guest / dummy credentials and see if you can connect? I sent you a gtalk contact request, so ping me on IM if you need a hand Rich Kroll

RE: MMS in ColdFusion?

2008-05-16 Thread Rich
d a MMSC that offered a RESTful web service for delivery so you could use Roberts solution. HTH, Rich Kroll ~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date Get the Free Trial htt

RE: MMS in ColdFusion?

2008-05-16 Thread Rich
need to sign up with them is if you desire to use their MMSC (Multi media messaging service) to test your application. HTH, Rich Kroll ~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release t

RE: MMS in ColdFusion?

2008-05-16 Thread Rich
Robert, Were you doing a http post to the aggregator, or is there a way to send via MM7 that I completely missed? Rich ~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date Get the Free Trial

RE: MMS in ColdFusion?

2008-05-16 Thread Rich
I can provide some of the problems / solutions to save you a few steps if you chose to take this road. Rich Kroll ~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date Get the Free Trial

JMS & ActiveMQ

2008-05-15 Thread Rich
easy way to get a clean classpath, or to manage these dependency conflicts? Rich ~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date Get the Free Trial http://ad.doubleclick.net

RE: Avoid multiple form submits.

2008-05-09 Thread Rich
l ensure the form is only submitted once. HTH, Rich Kroll Senior Software Engineer NextWeb Media ~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date Get the Free Trial http://ad.doubleclick.net

RE: Bulk SMS out.

2008-03-21 Thread Rich
ted. I know that we have negotiated lower rates due to our volume, but I do not know the exactly cost per SMS / MMS message. Good luck! Rich Kroll ~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to dat

RE: Bulk SMS out.

2008-03-20 Thread Rich
offer connectivity via SMPP, which you can utilize the CF Event gateway. HTH, Rich Kroll ~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date Get the Free Trial http://ad.doubleclick.net/clk;160

RE: CF 8 Performance Problems?

2008-03-20 Thread Rich
> Trusted cache is ON > Save class files is OFF > Cache web server paths is OFF If you are testing this as a production machine, I would suggest that you turn "Save class files" to ON. ~| Adobe® ColdFusion® 8 software 8 is the m

RE: CF 8 Performance Problems?

2008-03-19 Thread Rich
=270 http://forum.java.sun.com/thread.jspa?threadID=5218663 If you choose to switch to the 1.5 JVM it is a rather simple procedure: http://kb.adobe.com/selfservice/viewContent.do?externalId=2d547983 Good luck! HTH, Rich K

OT: Spry validation

2008-03-18 Thread Rich Kroll
te validation offered by Spry, but to add additional logic for each specific use case. I would like to add something like: if ( endDate.validate() ) { // use spry to test validation first return false; }

RE: Duh question of the day...

2008-03-11 Thread Rich
his is the reason so many of us on this list preach var scoping. HTH, Rich Kroll ~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date Get the Free Trial http://ad.doubleclick.net/clk;160198600;

RE: Database not found - error message

2008-03-11 Thread Rich
less they have given you access to the CF administrator to configure your own databases (which I highly doubt). If they give you the DSN name, replace "spaceexpressions" with the name they provide, or if they change the DSN, just reloa

RE: Database not found - error message

2008-03-11 Thread Rich
ute. This is the value that tells CF which previously configured database connection to use. You will need to ensure that goDaddy has configured your database with that name, or else change your code to match the name goDaddy has configured. Hopefully that clears things up. Good luck! HTH,

RE: Database not found - error message

2008-03-10 Thread Rich
Daniel, You need to place the DSN string (Datasource name as defined in the CF administrator by godaddy) in the CFQUERY tag (that you did not show in your code sample). Ex: SELECT * FROM FOO HTH, Rich ~| Adobe®

RE: What are the Necessary Code Changes for Migrating from 6.1 to 8?

2008-03-10 Thread Rich
Sorry if this was mentioned already, but what about the Code Analyzer in the CFAdmin? Rich ~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date Get the Free Trial http://ad.doubleclick.net/clk

RE: CFC Best practices question

2008-03-05 Thread Rich
he application scope. 2. Injection Using either constructor or setter injection, pass the object in as a variable. HTH, Rich Kroll ~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date

RE: Find/Replace for Eclipse

2008-03-05 Thread Rich
> Cool, I didn't even know 3.4 was out. Is that europa-winter? > > Are all the plugins working ok with it? CFEclipse/Subclipse, etc? > > Russ It's europa, not sure if it was a part of the winter maintenance though. I've been using Java / J2EE / CFE / Subclipse a

RE: Find/Replace for Eclipse

2008-03-05 Thread Rich
ctly what you are requesting. For example, if it found 5 matches within fileA.cfm, I have the ability to expand the matches and jump directly to the 3rd match. HTH, Rich Kroll ~| Adobe® ColdFusion® 8 software 8 is the most impor

RE: Find/Replace for Eclipse

2008-03-05 Thread Rich
ill allow you to search (and/or replace) by workspace, project, or even just selected files. The search results pane allows you to drill into the found results and by double clicking an entry, you are taken directly to the line where the

RE: Find/Replace for Eclipse

2008-03-05 Thread Rich
> Nothing. I just don't like it. I prefer CFS's search. Mostly for the *.bak > feature. What exactly is the *.bak feature? ~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date Get the Free Trial

Java Dependencies - CF7 to CF8

2008-02-14 Thread Rich Kroll
Quartz yet not change the CF install? Is a way to put these classes / libs into a different classloader and still expose them to CF? Rich Kroll ~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date

Java Dependencies - CF7 to CF8

2008-02-14 Thread Rich Kroll
anyone recommend an approach to how we can make these libs available to Quartz yet not change the CF install? Is a way to put these classes / libs into a different classloader and still expose them to CF? Rich Kroll ~| Adobe®

RE: Using JavaLoader with UJAC creates memory leak

2008-02-11 Thread Rich
you open so they (and any associated objects) can be properly GC'd. Rich Kroll ~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date Get the Free Trial http://ad.doubleclick.net/clk;1601

RE: Using JavaLoader with UJAC creates memory leak

2008-02-08 Thread Rich
> documentProperties=createObject('java','java.util.HashMap').init(); > templateStream=createObject('java','java.io.FileInputStream').init(generat > edTemplate); > documentPrinter=variables.loader.create('org.ujac.print.DocumentPrinter'). > init(templateStream,documentProperties); > resourceLoader=

RE: Array Read / Output Help

2008-01-08 Thread Rich
> I'm creating an array. It's a list of record numbers to be looked up > later. Is the order of the items important? Rich Kroll ~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release

RE: Testing a web service signature?

2008-01-08 Thread Rich
et to the information you need. http://ws.apache.org/wsif/ HTH, Rich Kroll ~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date Get the Free Trial http://ad.doubleclick.net/clk;160198600;22374

RE: Adobe ColdFusion IDE survey

2008-01-08 Thread Rich
> I am not sure why they would build an IDE on eclipse when we already have > one. My reasoning would be to start from a clean code base designed from the ground up to be interoperable with existing applications, instead of being tied to the legacy code. Rich

RE: Adobe ColdFusion IDE survey

2008-01-08 Thread Rich
uch better off IMHO. Rich Kroll ~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date Get the Free Trial http://ad.doubleclick.net/clk;160198600;22374440;w Archive: http://www.houseoffusion.com

RE: JREE Servers (was Session Management - sticky sessions)

2007-12-20 Thread Rich
+1 for Mutli-Instance on JRun ~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date Get the Free Trial http://ad.doubleclick.net/clk;160198600;22374440;w Archive: http://www.houseoffusion.com/g

RE: CFMX 7 - Java class reloading

2007-12-06 Thread Rich
restart the instance. See Mark Mandel's excellent JavaLoader (http://www.compoundtheory.com/?action=javaloader.index). HTH, Rich Kroll ~| ColdFusion 8 - Build next generation apps today, with easy PDF and Ajax fe

RE: Globalization Question

2007-11-19 Thread Rich
column that would have to be inserted into every table that contained rb's). A second reason (IMO) is the dependency that is needlessly created between the code and the DB server. Rich Kroll ~| Enterprise web applications, b

Re: CF7 Verity Issues. Any help/comments would be appreciated

2007-11-16 Thread Rich Sloan
) The error occurred in F:\wwwroot\cxprod\COM\search.cfc: line 75 73 :Hi Rich/Jenny, > >Can you post the full stackstrace here? that will be more helpful to >investigate it. > >Thanks & Regards, >Jayesh Viradiya >Adobe CF Team > >Hi Rich, > >I'

RE: Adding Properties to an Object at Runtime

2007-11-12 Thread Rich
Jeff, Have a look at the apache commons BeanUtils for inspiration (http://commons.apache.org/beanutils/commons-beanutils-1.7.0/docs/api/). I would suggest looking at the DynaBean, DynaClass, and MutableDynaClass interfaces. HTH, Rich Kroll

RE: Image Management

2007-11-08 Thread Rich
atabase capable of reading details > in that format, > then you better store the image in your database. Well I must say that it's good to know that my gut was 'generally' correct, and also to know a case when it would be appropriate to leverage the database for binary data st

RE: Image Management

2007-11-06 Thread Rich
affic, etc. What are your thoughts? I would really like to hear everyone's thoughts on best practice in relation to disk storage vs. db storage for digital assets. Rich Kroll ~| Get the answers you are looking for on the

RE: CFC Not acting like I expect

2007-11-06 Thread Rich
In the code you provided, you set propID as "foo", perform the SP call, and return propID unchanged. You can add an out parameter to the SP call, something similar to the following: ~| Create robust enterprise, web RIAs. Upgra

Re: CF7 Verity Issues. Any help/comments would be appreciated

2007-11-05 Thread Rich Sloan
Jayesh, Here is the stacktrace when we get the error. What I have found that somewhat works though is to change the language to englishx from english. That seems to keep the collection from failing while indexing. "Error","jrpp-279","10/24/07","06:46:05","cxContent","There was a problem execut

RE: MX 6.1 and Sending SMS Messages

2007-11-02 Thread Rich
ogica.com/CommonPart/Download/javatest_1_1/smpptest_full.zi p that you can look at for reference to what you need to do to utilize it. I have not worked directly with the OpenSMPP API so I can't help to much there, but if I can get some time over the weekend I'll see if I can translate

RE: MX 6.1 and Sending SMS Messages

2007-11-01 Thread Rich
(subscriber_password); // SMSC password sms.setDestinationAddr("+#destAddress#"); // user phone number sms.setSourceAddr(SMS.ADDR_TYPE_NETWORK, sourceAddress); // phone number / shortcode sms.setMsgText('Sending you a message!');

RE: Copying a CFC Persisted in Session Scope

2007-10-29 Thread Rich
r object is stored independent of any other data in > session scope (because that other data is encapsulated elsewhere) and > nothing in your application needs to change. I could not agree more. - Rich Kroll ~| Check o

RE: Copying a CFC Persisted in Session Scope

2007-10-29 Thread Rich
AdminObject() { Return session.adminObject } HTH, Rich Kroll ~| ColdFusion 8 - Build next generation apps today, with easy PDF and Ajax features - download now http://download.macromedia.com/pub/labs/coldfusion/cf8_beta_whats

CF7 Verity Issues. Any help/comments would be appreciated

2007-10-26 Thread Rich Sloan
oing a manual index. I am pulling out what hair I have left trying to figure out what this issue is and how to correct it. Anyone else have any similar issues/advice. Thanks, Rich Sloan E-Business Development Specialist The TriZett

RE: 2007 Web Design Survey

2007-10-18 Thread Rich
ntion inflation. In regards to engineers, I believe that we are in a great position (both in terms of need and compensation) as most software engagements are utilizing the web to a large degree. Rich Kroll ~| Get the answers y

RE: Rollback db changes in CFCUnit/CFUnit tests

2007-10-15 Thread Rich
if i remember correctly) as it is currently using MSSQL_CLEAN_INSERT in addition to updating the constraint code. I hope this helps you with what you are working on. Good luck! HTH, Rich Kroll *** Properties file (db-build.proper

RE: CFC Composition and/or Extention

2007-10-10 Thread Rich
Exactly what I meant, but put much more elegantly! Rich Kroll > -Original Message- > From: Brian Kotek [mailto:[EMAIL PROTECTED] > Sent: Wednesday, October 10, 2007 11:53 AM > To: CF-Talk > Subject: Re: CFC Composition and/or Extention > > I would do something si

RE: Splitting UI and Data

2007-10-10 Thread Rich
mework will be so steep as to be almost impossible. Also remember that there is a large amount of community support, which translates into a large support system for the inevitable questions that will come up. HTH, Rich Kroll ~| G

RE: CFC Composition and/or Extention

2007-10-10 Thread Rich
the end of SUPER.create( ARGUMENTS.SubObject ) you can have the parent DAO call ARGUMENTS.SubObject.setID( newlyCreatedId ) which will make it available in the child. Make sure you make this a transaction so you don't end up having orphaned IDs in the pa

RE: XML Parse

2007-10-09 Thread Rich
ta></wddxPacket> > > my question is how can i parse the above so that I get an XML object > in coldfusion. > I tried using XMLParse on this string, but that caused an error. It appears to be a WDDX packet that i

RE: Scary fun with variables scopes.

2007-10-05 Thread Rich
URL scope. You can test this behavior by running the code below: If you place these in a file (test.cfm) and browse them with the following urls: Test.cfm Test.cfm?tester.test=1 You will see that the exact same phenomenon occurs; when the struct already exists, CF cannot i

RE: two select lists next to each other

2007-10-05 Thread Rich
'document.YourFormName.YourFieldName' where... well, > you know. :P > That's from the same package I directed him to, except that you did not include the hasOptions(obj) function to make this useable. Rich Kroll ~~

RE: two select lists next to each other

2007-10-05 Thread Rich
> I'm wondering if anyone has any links and/or javascript for working with > two list boxes on a screen. http://www.mattkruse.com/javascript/selectbox/ check out the selectAllOptions() method in the source. HTH,

RE: Rollback db changes in CFCUnit/CFUnit tests

2007-10-05 Thread Rich
> Rich, > > That would be great. Thanks. > > Janet No problem. It should be on its way. Let me know if I can be of any more help. Rich Kroll ~| Get involved in the latest ColdFusion discussions, prod

RE: Scary fun with variables scopes.

2007-10-05 Thread Rich
m/blog/957-Code-Assertively.htm). HTH, Rich Kroll ~| Download the latest ColdFusion 8 utilities including Report Builder, plug-ins for Eclipse and Dreamweaver updates. http;//www.adobe.com/cfusion/entitlement/index.cfm?e=labs

RE: Rollback db changes in CFCUnit/CFUnit tests

2007-10-05 Thread Rich
> Thanks Rich. That is helpful. Off to download and review DBUnit. > > Thanks, > Janet Janet, If you would like, I have a (work in progress) ant build file that uses dbunit's ant task to export / reset my database. I would be happy to email it to you offlist if you think i

RE: Rollback db changes in CFCUnit/CFUnit tests

2007-10-04 Thread Rich
pt that includes a DBUnit reset. Step 6: goto step 2 and repeat. HTH, Rich Kroll ~| Create robust enterprise, web RIAs. Upgrade to ColdFusion 8 and integrate with Adobe Flex http://www.adobe.com/products/coldfusion/f

RE: Rollback db changes in CFCUnit/CFUnit tests

2007-10-04 Thread Rich
> Does anyone know of an article(s) explaining how to work rollbacks into > unit testing? I want to test a series of DAO's, but am not sure how to > incorporate this into my tests. > > Janet > You can incorporate a tool like DBUnit into your workflow (http://dbunit.source

RE: Instantiating all objects within Application.cfm

2007-09-20 Thread Rich
y? > You are correct. The design that he provided showed a method of caching the results in the CFC's internal memory and a way to refresh that data when changes were made. Rich ~| Create robust enterprise, web RIAs. Upgrade

RE: Instantiating all objects within Application.cfm

2007-09-20 Thread Rich
: If this CFC was placed into the application scope, you would run into race conditions. This sequence could happen if this CFC was placed in a shared scope: User A calls setName("Rich"), User B calls setName("Vince"), User A calls getNa

RE: SMS portal

2007-09-18 Thread Rich
simply email alerts to their mobile. HTH, Rich ~| Get involved in the latest ColdFusion discussions, product development sharing, and articles on the Adobe Labs wiki. http://labs/adobe.com/wiki/index.php/ColdFusion_8 Archiv

RE: SMS portal

2007-09-18 Thread Rich
> > SO YOUR THE ONE! That keeps spamming my phone! ;-) > > -- > Wil Genovese Shhh, I'm trying to keep it all on the "DL" ;) Rich ~| Download the latest ColdFusion 8 utilities including Report

RE: One more database question - sorry!

2007-09-18 Thread Rich
filesize should not be a problem. HTH, Rich ~| Get involved in the latest ColdFusion discussions, product development sharing, and articles on the Adobe Labs wiki. http://labs/adobe.com/wiki/index.php/ColdFusion_8 Archive: http

RE: SMS portal

2007-09-18 Thread Rich
gt; Cheers! > Michael David We are doing some heavy SMS work, and currently utilize Openmarket (formerly known as Simplewire), which is a SMS aggregator. We are using their JAVA SDK and are rather happy with the results. HTH, Rich

RE: Server hanging. Wierd problems. HELP!

2007-09-18 Thread Rich
! > I never did find out what version of CF did this though Rich, so I was > hoping you could tell me. > > Thanks. > > ~Brad We experienced the problem on 7 & 7.0.2 Rich ~| Download the latest ColdF

RE: what's the magic version combination: eclipse/cfeclipse/cfunit

2007-09-18 Thread Rich
> I installed eclipse 3.3, downloaded CFEclipse 1.3.1.5 and it works great. > I just had to tweak my shortcut target so eclipse used jre 1.5 (not 1.4.2) > > eclipse -vm C:\jre1.5.0_11\bin\javaw.exe > > Thanks again Rich Glad you got it working! Welcome to CFE, prepare to be

RE: what's the magic version combination: eclipse/cfeclipse/cfunit

2007-09-17 Thread Rich
I am currently running eclipse 3.3 with CFE 1.3.1.5. I installed 3.3 and then used the internal update tools (help > software updates > find & install) to install CFE. I'm using the CFUnit view to run unit tests successfully.

RE: Server hanging. Wierd problems. HELP!

2007-09-17 Thread Rich
> Rich, was WebApper by chance the consultant you used? > > ~Brad It was quite a long time, but I do believe it was. Was that just a good guess or do you have special powers? Rich ~| Create robust enterprise,

RE: Server hanging. Wierd problems. HELP!

2007-09-17 Thread Rich
quot;jrpp-", these are the currently processing threads and they will contain the underlying java as well as the CF that were being executed at the time of the dump. HTH, Rich ~| Check out the new features and enhancements in the

RE: Getting error message on one page only

2007-09-14 Thread Rich
o arguments, one of which that is not required? You cannot overload methods in CF, and will encounter an error that you cannot define a method with the same name twice if you attempt it. Rich ~| Enterprise web applications, build robu

RE: CFQuery wrapper tag to help with poor connections to sql..

2007-09-12 Thread Rich
FROM users HTH, Rich ~| ColdFusion is delivering applications solutions at at top companies around the world in government. Find out how and where now http://www.adobe.com/cfusion/showcase/inde

RE: CFCs - no need for mappings

2007-08-24 Thread Rich
>Do you create a COM mapping the same way as any other, i.e. in Coldfusion >administrator? We use hosting and never have access to these things. Sorry, I meant to create one mapping to the com folder, and package your other components under it. >We do also 'package' the components by creating su

RE: CFCs - no need for mappings

2007-08-24 Thread Rich
Java style packaging can solves this. Simply map COM and then you can have component paths similar to: com.mysite.util.StringUtil com.mysite.commerce.CommerceUtil com.shared.util.StringUtil com.myOtherSite.commerce.SomeOtherComponent HTH, Rich

RE: Report Builder vs. JasperReports/iReport

2007-08-23 Thread Rich
application running on? Rich Kroll ~| Check out the new features and enhancements in the latest product release - download the "What's New PDF" now http://download.macromedia.com/pub/labs/coldfusion/cf8_beta_what

RE: Unit Testing & Code Coverage

2007-08-21 Thread Rich
It looks as though I am going to have to develop a solution for our needs, but I will see if my company will allow me to release our efforts into the public domain. ~| ColdFusion 8 - Build next generation apps today, with easy PD

RE: Unit Testing & Code Coverage

2007-08-21 Thread Rich
re was a preexisting solution. I know that test coverage reports can be misleading as even with 100% coverage, the quality of the tests are (generally) a more important metric. That said, we are interested in analyzing the increase in unit tests in relation to developer productivity (ease of refactor

Unit Testing & Code Coverage

2007-08-20 Thread Rich
Is anyone aware of a code coverage tool for CF unit tests? If not, how are the rest of you handling unit test coverage (if at all)? - Rich Kroll ~| ColdFusion 8 - Build next generation apps today, with easy PDF and Ajax

RE: delay sending email

2007-08-20 Thread Rich
leveraging Quartz (a java scheduling engine). HTH, Rich Kroll -Original Message- From: Mik Muller [mailto:[EMAIL PROTECTED] Sent: Monday, August 20, 2007 3:48 PM To: CF-Talk Subject: delay sending email Hey all, I've been wondering about delayed sending of email. What would the b

Anyone else seen this

2007-07-27 Thread Rich Sloan
We are running CF 7.0.2 on a Windows 2003 server and we are having issues with the mail spooler. When sending a large amount of mail the spooler will stop running and it throws this error. java.lang.OutOfMemoryError: unable to create new native thread at java.lang.Thread.start(Native Meth

Client Lock Issue

2007-01-31 Thread Rich Sloan
Anyone know why we would be getting this issue in CFMX7? Could not unlock the named lock 761328825CLIENTSCOPESERVICE because no lock is known by that name. ~| Upgrade to Adobe ColdFusion MX7 Experience Flex 2 & MX7 integration

Re: Verity Issue

2007-01-23 Thread Rich Sloan
Hi dave the code is listed below. This is the only thing in the template. I have tried deleting and recreating the collection and I get the same error. http://cxdev2.trizetto.com"; extensions=".txt, .html, .doc, .xls, .pdf, .ppt" recurse="Yes"> > Rich, >

Verity Issue

2007-01-22 Thread Rich Sloan
Has anyone else seen this error when trying to index a collection. We are on CFMX 7.0.2. General failure. (-2) The specific sequence of files included or processed is: \mx7verity.cfm, line: 5. The only thing on line 5 is the url path. I can't find any help on Adobe's site for t

Re: Could not unlock the named lock

2007-01-19 Thread Rich Sloan
Was this HotFix ever released? We are having this same issue and are current with all updaters and hotfixes. > This hot fix will hopefully be available in the next 2 - 4 weeks. The > fix is being built for 7.02. Plans for a 7.01 hot fix are not clear > at this point. You can check the curren

Re: Verity Hanging issue

2006-12-20 Thread Rich Sloan
Just so there is a record. I believe I solved this. At the end of both of my cfindex calls I did a cfdump of the records. Well, I removed this dump and everything worked. I also had our IS dept, turn off all Virus scanning of the CFusionMX7 directory. So it was one of those two things.

Re: Verity Hanging issue

2006-12-19 Thread Rich Sloan
I should clarify I run one at 4pm the docs and the custom db collection runs at 1am. They are seperate files ~| Create robust enterprise, web RIAs. Upgrade & integrate Adobe Coldfusion MX7 with Flex 2 http://ad.doubleclick.net/cl

Re: cfprocparam cfsqltype XML ?

2006-05-25 Thread Rich Tretola
you have to use the XML data type as an output parameter, you must first convert the XML data type to a VARCHAR or LONGVARCHAR in the stored procedure before it can be read. For more information about the XML data type, see "xml Data Type" in SQL Server Books Onli

cfprocparam cfsqltype XML ?

2006-05-22 Thread Rich Tretola
else run into this yet? Rich ~| Message: http://www.houseoffusion.com/lists.cfm/link=i:4:241118 Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4 Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4 Unsubscribe

RE: In totally over my head with OOP and extends (OT?)

2006-05-10 Thread Rich Kroll
you some ideas that will help you move forward. If anyone else has any input on this type of an architecture, I'd be glad to hear about it! Rich Kroll Application Developer -Original Message- From: Joelle Tegwen [mailto:[EMAIL PROTECTED] Sent: Wednesday, May 10, 2006 10:

  1   2   3   4   5   6   >