Re: Ajax Update Link not working on one server

2013-03-03 Thread Bastian Triller
if the connect time takes long, check if you're ssh server tries to reverse dns your hostname. You can turn that off on OpenSSH with UseDNS no in /etc/ssh/sshd_config. Another long-connect issue I had is with CentOS/Redhat servers, which try Kerberos auth. To turn that off use $ ssh -o

More Embedded D2W Questions...

2013-03-03 Thread Johnny Miller
Hi, So I'm trying to create a component like the master detail page in the Custom and embedded d2w components presentation. My list page component subclasses ERD2WListPage and my inspect page subclasses ERD2WInspectPage. So, I can select an object from the list and the inspect page pulls up

Re: More Embedded D2W Questions...

2013-03-03 Thread Ramsey Gurley
On Mar 3, 2013, at 2:00 PM, Johnny Miller wrote: Hi, So I'm trying to create a component like the master detail page in the Custom and embedded d2w components presentation. My list page component subclasses ERD2WListPage and my inspect page subclasses ERD2WInspectPage. So, I can

EOF not setting the PK in INSERT statements

2013-03-03 Thread David Avendasora
Hey all, I have one entity (out of about 40) that refuses to insert data into my FrontBase database. It generates the SQL but is leaving out the PK. Here's the SQL: INSERT INTO KC_TYPE_MASTER(DISPLAY_NAME_OVERRIDE, TYPE_KC_TYPE_ELEMENT_ID, KC_TYPE_ENTITY_PROPERTY_ID) VALUES (NULL, 100,

Re: EOF not setting the PK in INSERT statements

2013-03-03 Thread Faizel Dakri
I don't see a column name for your id attribute in the plist file. Perhaps that is throwing EOF off. F On 2013-Mar-03, at 08:49 PM, David Avendasora webobje...@avendasora.com wrote: Hey all, I have one entity (out of about 40) that refuses to insert data into my FrontBase database. It

Re: EOF not setting the PK in INSERT statements

2013-03-03 Thread David Avendasora
Hi Faizel, Oddly, the id prototype removes any columnName I specify, but all the other entities that work have the same thing (no columnName). However I did try manually changing the .plist and running, but got the same error. Thanks for the try, though! Dave On Mar 4, 2013, at 11:45 AM,

Re: EOF not setting the PK in INSERT statements

2013-03-03 Thread Robert Hanviriyapunt
Reverse engineer just the one table in a new project. Test your insert. Copy the entity from one model to the other. Fix any missing relationships. And retest in the reintegrated app. Just a suggestion. On Mar 3, 2013, at 10:41 PM, David Avendasora webobje...@avendasora.com wrote: Hi