Re: Database choices

2007-10-30 Thread Shehryar Khan
If you're going to use MySQL with WebObjects in a production environment, make sure to do the following: - create all your tables with InnoDB engine support - the default MyISAM support is non-transactional - make sure to create all your tables with the right charset and collation

Re: Chat integration

2006-08-31 Thread Shehryar Khan
Just recently integrated http://www.instantservice.com/ live chat solution into a WebObjects application. Clicking on a live chat button in the header opens a chat frame at the bottom of the window where contact information (first name, last name) is auto-populated based on the the user

Re: XCode 2.4: EOModeler EOModeler Plugin deprecated?

2006-08-09 Thread Shehryar Khan
As someone that has Xcode 2.3 currently installed on my machine, does anyone know if upgrading to Xcode 2.4 will actually delete the applications that have been deprecated in Xcode 2.4? On the same note, does deprecated imply that a machine with a clean install of Tiger and Xcode 2.4

Re: WWDC WO Meet

2006-07-10 Thread Shehryar Khan
There will be an Übermind contingent there. +3 -shehryar On Jul 9, 2006, at 3:42 AM, WODev wrote: You can add 2 French to the list;) we'll be there too and love to spend some time with the WO crew;) We'd rather like monday too. Nice to hear you might come Chuck:) Xavier It was in some

Re: generating response in different thread

2006-05-26 Thread Shehryar Khan
Christian, How about having the long response thread generate an http request (curl?) to a direct action in your app to generate a response which it then passes up to the main thread for display. It ain't pretty but it will work. -shehryar On May 25, 2006, at 8:47 AM, Christian Pekeler