Re: [transfer-dev] Coldfusion 10 and Transfer ORM?

2014-07-11 Thread Mark Mandel
Brian, Want to take on ownership of Transfer? Seems like you're going to end up doing it anyway :) mark On Sat, Jul 12, 2014 at 9:15 AM, Brian G brian-goo...@vfive.com wrote: This is a long running thread but I came across some recent updates on why Transfer (under load like on init) may

Re: [transfer-dev] Coldfusion 10 and Transfer ORM?

2014-04-01 Thread Janise Daylin
Brian - thanks for the response. I really appreciate it. I wish I could split the costs for a facade for CF ORM but my company is cheap and they would rather I waste hours beating my head against the wall than fork over meager dollars to make my life easier. (Sorry bitter today) I don't have

Re: [transfer-dev] Coldfusion 10 and Transfer ORM?

2014-03-31 Thread Janise Daylin
I am a year late - but running into a similar issue. Went from CF8 with Transfer to CF10 with Transfer until I can get time to redesign. Getting requested object could not be found in the config file (when it exists) or unable to process the result of the XMLSearch. If I refresh the page

Re: [transfer-dev] Coldfusion 10 and Transfer ORM?

2014-03-31 Thread Brian G
Janise, are you on Java 7 or Java 6? I found Java 6 made my issues far less problematic but it still happens at least 50% of the time when I start up my app. I just made some changes to this recently actually, here's what I have right now: cffunction name=search hint=Searches the xml via

Re: Be careful of Java 7 upgrades, was Re: [transfer-dev] Coldfusion 10 and Transfer ORM?

2013-04-17 Thread Mark Mandel
Interesting! Mark On Thu, Apr 18, 2013 at 3:40 AM, Brian G brian-goo...@vfive.com wrote: Just a note to all - the errors I have been experiencing have all been on Java 7 with CF10. I downgraded to Java 6 on a hunch and for the last week I have not had a single error. My issues were

Re: [transfer-dev] Coldfusion 10 and Transfer ORM?

2013-04-03 Thread Brian G
On Tuesday, April 2, 2013 8:47:51 PM UTC-7, Mark Mandel wrote: Try/catch inside the XMLFileReader - if it overflows, then load up the path again. It knows where the XML file is, so it can always try it again. http://www.2ddu.com/ That did it... on my wedged future production server, first

Re: [transfer-dev] Coldfusion 10 and Transfer ORM?

2013-04-03 Thread Mark Mandel
Why not do the try catch in here: http://transfer.riaforge.org/index.cfm?event=page.svnviewpath=%2Ftransfer%2Ftrunk%2Fcom%2Fiofile=XMLFileReader%2Ecfc LIne 42 of the search? Rather than outside? Mark On Thu, Apr 4, 2013 at 3:30 AM, Brian G brian-goo...@vfive.com wrote: On Tuesday, April 2,

Re: [transfer-dev] Coldfusion 10 and Transfer ORM?

2013-04-03 Thread Mark Mandel
Ah cool! Hope it works for you! MArk On Thu, Apr 4, 2013 at 12:05 PM, Brian G brian-goo...@vfive.com wrote: That is where I'm doing it - but I wanted to test in prod that reloading the XML did indeed fix the problem, and it did. Here's what I wound up with in XMLFileReader.cfc: try {

Re: [transfer-dev] Coldfusion 10 and Transfer ORM?

2013-04-01 Thread Mark Mandel
What's the actual error you get from Transfer when trying to create the object? Seems like the error from the XML dump may be a red herring. Mark On Tue, Apr 2, 2013 at 8:15 AM, Brian G brian-goo...@vfive.com wrote: Ok, so I let the app run for a few days and now I'm getting errors while

Re: [transfer-dev] Coldfusion 10 and Transfer ORM?

2013-04-01 Thread Brian G
That could be - but since the stack trace just loops infinitely, I can't see where the error is occurring. I'm not getting any errors in exception or coldfusion-out.log either. I get a single line in application.log that says: Error,ajp-bio-8016-exec-10,03/31/13,20:48:26,, FWIW, the error

Re: [transfer-dev] Coldfusion 10 and Transfer ORM?

2013-04-01 Thread Mark Mandel
In the stack overflow - is there any CF code being processed? Mark On Tue, Apr 2, 2013 at 12:18 PM, Brian G brian-goo...@vfive.com wrote: That could be - but since the stack trace just loops infinitely, I can't see where the error is occurring. I'm not getting any errors in exception or

Re: [transfer-dev] Coldfusion 10 and Transfer ORM?

2013-04-01 Thread Brian G
On Monday, April 1, 2013 6:38:18 PM UTC-7, Mark Mandel wrote: In the stack overflow - is there any CF code being processed? Mark Stack trace is just filled with the repetitive XML processing error. It never shows any CFML templates/codes/lines/etc. Makes it pretty hard to diagnose??

Re: [transfer-dev] Coldfusion 10 and Transfer ORM?

2013-04-01 Thread Mark Mandel
Yeah, this sounds like a bizarre issue with the XML parser. JRuby is very nice though ;) Mark On Tue, Apr 2, 2013 at 3:11 PM, Brian G brian-goo...@vfive.com wrote: On Monday, April 1, 2013 6:38:18 PM UTC-7, Mark Mandel wrote: In the stack overflow - is there any CF code being processed?

Re: [transfer-dev] Coldfusion 10 and Transfer ORM?

2013-03-27 Thread Mark Mandel
There have been some posts on list of people who have done exactly that. Pretty sure some people wrote some generators to handle it too, although I'm not sure if anyone published them. Mark On Thu, Mar 28, 2013 at 7:41 AM, Brian G brian-goo...@vfive.com wrote: On Tuesday, March 26, 2013

Re: [transfer-dev] Coldfusion 10 and Transfer ORM?

2013-03-27 Thread Brian G
In my searching I have uncovered people planning to do it or saying they did it but no real specifics other than to use abstract classes. On Wednesday, March 27, 2013 3:25:24 PM UTC-7, Mark Mandel wrote: There have been some posts on list of people who have done exactly that. Pretty sure

Re: [transfer-dev] Coldfusion 10 and Transfer ORM?

2013-03-27 Thread Mark Mandel
See! Easy solution! ;) Use abstract classses :) * ducks and hides * Sorry, couldn't resist. Mark On Thu, Mar 28, 2013 at 11:31 AM, Brian G brian-goo...@vfive.com wrote: In my searching I have uncovered people planning to do it or saying they did it but no real specifics other than to use

Re: [transfer-dev] Coldfusion 10 and Transfer ORM?

2013-03-26 Thread Brian G
Ok, let me throw out an oddity... and see if anyone can help me think through where to log to understand what is happening: I have an object, event.event, it has a property, uidRegistrar. I'm trying to create an event object and the decorate has a configure() that sets it null:

Re: [transfer-dev] Coldfusion 10 and Transfer ORM?

2013-03-26 Thread Mark Mandel
That is odd. You can get at it through the ObjectManager: http://docs.transfer-orm.com/html/transferapi//transfer/com/Transfer.html#getObjectManager() Mark On Wed, Mar 27, 2013 at 6:21 AM, Brian G brian-goo...@vfive.com wrote: Ok, let me throw out an oddity... and see if anyone can help me

Re: [transfer-dev] Coldfusion 10 and Transfer ORM?

2013-03-20 Thread Mark Mandel
Oooh yeah. I'd forgotten about that. Mark On Thu, Mar 21, 2013 at 11:32 AM, Jeremy Firsenbaum jfirsenb...@gmail.comwrote: Brian - I've had Transfer running on CF10 in production for close to a year now. If I recall correctly the only change I had to make to the newer ehcache-based version