(ot) Java-Hibernate-problem: Optimistic concurrency control problem, I need a second opinion !

2009-01-04 Thread cf-talk
Hi list, in our freshly build Java B2B-Shop-Customer-System (build from scratch, based on Hibernate. Spring etc.) we have four adresses in the MS-SQL-DB (MS-SQL-2000): contact_address, company_address, delivery_address, billing_address. In the end-customer's registration process the following

Creating Web Connector to QuickBooks

2009-01-04 Thread Andy
Updating my wife's business from Peachtree to QB. Have any of you written a Web Connector for QB? They use SOAP. Are they examples out there that I can use to short-cut the development? Andy ~| Adobe® ColdFusion® 8

Re: market rates

2009-01-04 Thread John M Bliss
FWIW, in my 13-year career in the US (most of it spent doing CFML and SQL Server), I've seen rates of about $40/hr for junior developers up to $200/hr for senior developers. (Granted: $200/hr for senior developers was in the middle of the dot-com-boom in Washington, DC, and it's gone down from

Re: (ot) Java-Hibernate-problem: Optimistic concurrency control problem, I need a second opinion !

2009-01-04 Thread Barney Boisvert
I'm not sure I understand your problem. You'll need to create four distinct Address objects, you can't reuse then for different fields, but as long as you're doing that, I don't see a problem. Here's some psuedo-code, assuming Address has a pair of constructors - one with individual arguments

Extending application.cfc

2009-01-04 Thread jonese
Hey all. I have been extending an Application.cfc from my root in a sub directory using mappings. I recently implemented THIS.mappings and it doesn't appear that the mapping for the extended Application.cfc is working. can anyone test this and confirm deny it? Thanks in advance!

Re: Extending application.cfc

2009-01-04 Thread s. isaac dealey
Hey all. I have been extending an Application.cfc from my root in a sub directory using mappings. I recently implemented THIS.mappings and it doesn't appear that the mapping for the extended Application.cfc is working. can anyone test this and confirm deny it? You can't. Mappings created

Re: iPhone Development

2009-01-04 Thread Les Schmidt
Web apps, you mean? Go grab the meta tag you need to lock the screen size, and the develop as normal. HTML, JS and CSS are virtually identical to the normal browser, mouse events are the biggest difference to deal with. cheers, barneyb Barney, Can you expand/explain further please on what

Re: iPhone Development

2009-01-04 Thread Ryan Stille
Bryan Hogan wrote: Can someone point me into the right direction to get started developing iPhone applications with CFML? I would like to develop on Windows if at all possible. You can't develop iPhone applications with CFML. You can build a *web application* thats targeted to mobile

Re: Extending application.cfc

2009-01-04 Thread s. isaac dealey
And then in your subdirectory/Application.cfc use extends=appcfcproxy.cfc Or rather extends=appcfcproxy... oops! -- s. isaac dealey ^ new epoch isn't it time for a change? ph: 781.769.0723 http://onTap.riaforge.org/blog

Re: [SOT] avg hourly rate for mid and adv cf programmer

2009-01-04 Thread Pete Ruckelshaus
Development only with a well-defined project spec? $60/hr. Otherwise, $75/hr. On Thu, Nov 3, 2005 at 10:38 AM, John Lucania john.luca...@gmail.com wrote: Morning, Gurus! What is the avg hourly rate for mid and adv cf programmer for gov/non-for-profit contract work in Wash DC area and

How do you guys deploy databases to shared servers?

2009-01-04 Thread Mike Kear
I'm heartily sick of the tedious way I have to spend half a day or more EACH WEEK uploading and downloading databases from my SQLServer2005 web sites. I'm going to have another go at learning the best way to do this . . Can someone please give me some help...IN the old days I used to have a

Re: [SOT] avg hourly rate for mid and adv cf programmer

2009-01-04 Thread Pete Ruckelshaus
Any elected representative of mine who votes for that sure as hell isn't getting my vote in the next election cycle. I have a handful of friends, really good developers, who are currently jobless, and the only reason I'm probably not jobless is because I've switched careers to teaching. Pete On

Re: How do you guys deploy databases to shared servers?

2009-01-04 Thread Toby Tremayne
check out sql litespeed for very quick and powerful backup and restore. Can be a handy way to move them about - although I must admit I'm out of date now as I tend to stick to postgresql and mysql which have very simple porting methods. Toby On 05/01/2009, at 11:30 AM, Mike Kear wrote:

Re: How do you guys deploy databases to shared servers?

2009-01-04 Thread Mike Kear
Thanks Toby.Does it allow you to back up and restore if you dont have administrator priveleges? That's the problem with shared hosting - Microsoft dont seem to have made any provision for database owners to do any of these tasks, only server administrators. Obviously, on a shared system

Re: How do you guys deploy databases to shared servers?

2009-01-04 Thread Toby Tremayne
actually that may be a problem - sql litespeed works via a number of stored procedures you install, but I'm afraid I can't remember the permission requirements either for install or use. There's a free demo though, so you can give it a try. Toby On 05/01/2009, at 11:48 AM, Mike Kear wrote:

Re: iPhone Development

2009-01-04 Thread Barney Boisvert
Just google it. Just a way of telling the phone about how your app wants to be displayed. Its not required, but you almost always want it. cheers, barneyb On 1/4/09, Les Schmidt les242...@casadiablo.net wrote: Web apps, you mean? Go grab the meta tag you need to lock the screen size, and the

Re: [SOT] avg hourly rate for mid and adv cf programmer

2009-01-04 Thread Gerald Guido
Most of the independents that I know get between $40 to $130/hr. Those numbers vary by the nature of the work and overhead. Basically if the client gives you a predefined scope of work, i.e sub contracting for another shop (B2B), where you don't have to deal directly with the client, the rates

Re: [SOT] avg hourly rate for mid and adv cf programmer

2009-01-04 Thread Aaron Rouse
That seems to be the going rate down here in this neck of the woods for self employed developers working 1099. I'd thought up in DC people would get more since the cost of living I am told is much higher up there than down here. Although it also does not surprise me because the few times I have

Re: How do you guys deploy databases to shared servers?

2009-01-04 Thread Will Tomlinson
I'm heartily sick of the tedious way I have to spend half a day or more EACH WEEK uploading and downloading databases from my SQLServer2005 web sites. Not that it helps you any, but this is exactly the reason I've moved most of my websites to MySQL. Navicat makes this kinda thing completely

Re: How do you guys deploy databases to shared servers?

2009-01-04 Thread Toby Tremayne
I'll second that on navicat - worth the very small fee for the pro version even. The ability to just select a source and destination db and copy al structure and or data automatically is wonderful. Doesn't matter whether the source or destination are local or remote or both. Toby On

Best performace/practice for storing temp data

2009-01-04 Thread j s
Working on shopping cart app and stuck between storing shipping info in a db shipTable or in client scope. I'm hesitant to store shipping info into the db because some users might not complete the transaction and take up rows in the db. On the other hand if I store shipping info in the client

Re: How do you guys deploy databases to shared servers?

2009-01-04 Thread Dave Watts
Can someone please give me some help...IN the old days I used to have a DTS task running overnight automatically, copying databases to and from my dev environment to the production web sites. Have you tried this?

Re: How do you guys deploy databases to shared servers?

2009-01-04 Thread Mike Kear
No I havent, Dave, and I'm surprised that in all the whinging I've done to Microsoft in the last 3 years, no one there has mentioned it. I'ave gone at them over this issue so many times, i have had to ease off in the last few months lest i be classed as a vexatious support caller and get myself

Re: How do you guys deploy databases to shared servers?

2009-01-04 Thread Paul Kukiel
We recently got Red gates toolbelt SQL tools. Like you upgrading/ moving databases was time consuming and difficult. Now its just so much easier. http://www.red-gate.com/products/ SQL_Professional_Toolbelt/index.htm Paul Kukiel On 04/01/2009, at 7:30 PM, Mike Kear wrote: I'm heartily

RE: iPhone Development

2009-01-04 Thread Bryan Hogan
Of course it can't be built with CFML. ;) I understand that, what I'm looking to do is get started building applications for the iPhone. The first of which is simple enough as Barney explained, just create the application to fit within a certain size and add the meta tag telling the iPhone

Re: How do you guys deploy databases to shared servers?

2009-01-04 Thread Mike Kear
What a big disappointment, Dave. It wont connect to a remote database to update, only to a web service. Who the hell inserts 40,000 records into a database using a web service??? So instead i have to have the tool create a big SQLscript. I have to run a 85MB SQLscript. by cutting and pasting

Re: iPhone Development

2009-01-04 Thread Barney Boisvert
If you just go grab Safari for Windows and use JS to resize it to the right viewport you can get a pretty close approximation. Not perfect, particularly for mouse interaction, but it's reasonable. If you're serious about developing iPhone apps, you're gonna want an iPhone/iTouch. For native

Re: How do you guys deploy databases to shared servers?

2009-01-04 Thread Mike Kear
Thanks Paul. I see those Red gates packages are a series of $395 applications. My tiny company isn't going to afford $5000 worth of tools, or even the bundle price around $1000. Which of them do you use to copy/duplicate/synchronise databases between two servers? Cheers Mike Kear Windsor,

RE: iPhone Development

2009-01-04 Thread Bryan Hogan
That's what I was looking for. Thanks Barney Bryan F. Hogan Product Manager eDonor(r) - Recruit, Retain, Repeat A Global Med Technologies(r) Company P 602.489.7844 F 602.489.7801 www.edonor.com The information contained in this electronic mail message, including all attachments hereto, is

Re: How do you guys deploy databases to shared servers?

2009-01-04 Thread Mike Kear
How long does it take to publish a database using that database publishing wizard?? I have had the 85MB SQL script running now for 28 minutes (and counting), giving my users database errors all that time. Cheers Mike Kear Windsor, NSW, Australia Adobe Certified Advanced ColdFusion Developer

Re: How do you guys deploy databases to shared servers?

2009-01-04 Thread John M Bliss
I can't live without Red-Gate... Which of them do you use to copy/duplicate/synchronise http://www.red-gate.com/products/SQL_Compare/ for DB structure. http://www.red-gate.com/products/SQL_Data_Compare/ for DB contents. On Sun, Jan 4, 2009 at 10:55 PM, Mike Kear afpwebwo...@gmail.com wrote:

Re: How do you guys deploy databases to shared servers?

2009-01-04 Thread Mike Kear
huh? the COMPARE product is the one that copies data and structure between two servers??? Really?? Cheers MIke Kear On Mon, Jan 5, 2009 at 4:28 PM, John M Bliss bliss.j...@gmail.com wrote: I can't live without Red-Gate... Which of them do you use to copy/duplicate/synchronise