Re: EOF and optimizing Oracle sequence generation

2015-08-04 Thread Petite Abeille
On Aug 4, 2015, at 9:47 PM, Ruggentaler, JR jr.ruggenta...@experian.com wrote: ALTER SEQUENCE TABLE_NAME_SEQ INCREMENT BY 10; Not directly related to EOF per se, but, in Oracle, ALTER … CACHE … is used to control preallocation:

Re: Detecting POST vs GET

2012-01-23 Thread Petite Abeille
On Jan 23, 2012, at 6:46 PM, Klaus Berkling wrote: How can you tell if a form's submit method was POST or GET? WORequest.method()? ___ Do not post admin requests to the list. They will be ignored. Webobjects-dev mailing list

Re: Best type of machine

2011-12-22 Thread Petite Abeille
On Dec 22, 2011, at 4:44 PM, Gino Pacitti wrote: What sort of machine would be best to buy to use for Linux Virtualization? Linode? http://www.linode.com/why.cfm ___ Do not post admin requests to the list. They will be ignored. Webobjects-dev

Re: no object DCH for MIME type application/pdf

2011-10-20 Thread Petite Abeille
On Oct 20, 2011, at 9:44 PM, John Baldwin wrote: I was wondering if anybody has run into a similar situation and has a solution. http://www.jguru.com/faq/view.jsp?EID=237257 ___ Do not post admin requests to the list. They will be ignored.

Re: Strange constraint violation

2011-09-30 Thread Petite Abeille
On Sep 30, 2011, at 6:44 AM, Jeff Schmitz wrote: Integrity constraint violation (FOREIGN KEY, t_pool.t_pool_id_id_FK(id=102)). as I don't know why it would be considered a foreign key since it's the ID of the row being added, Well, is your t_pool.pool_id pk used in any foreign key

Re: Apple Representation On WebObjects-Dev Mailing List?

2011-07-06 Thread Petite Abeille
On Jul 6, 2011, at 7:33 PM, Ken Anderson wrote: To me, just the fact that WebObjects has been around since 1996 (15 years!) means that it has more legs than any other tool I can think of. Rumor has it that COBOL is still going strong in some less travelled corner of Elbonia :))

Re: Apple Representation On WebObjects-Dev Mailing List?

2011-07-06 Thread Petite Abeille
On Jul 6, 2011, at 7:41 PM, Karl wrote: Hmm...well I first came across WO in about 89I think that EOF was called DBkit back then... DBKit?!? Oh, my... lets forget about that one... Circa 1992 no?... blast from the past...

Re: Apple Representation On WebObjects-Dev Mailing List?

2011-07-06 Thread Petite Abeille
On Jul 6, 2011, at 10:52 PM, Alan Ward wrote: And being able to pick up a card and read it by interpreting the hole punches in your head was the geek's equivalent of winning the Super Bowl Either that or being able to toggle in the boot sequence on a PDP11 without referring to any

Re: Apple Representation On WebObjects-Dev Mailing List?

2011-07-06 Thread Petite Abeille
On Jul 7, 2011, at 1:12 AM, Karl wrote: How old are you? Perhaps age doesn't quite convey the depth of the question... geologic time scale might be more appropriate... Cretaceous period? :P ___ Do not post admin requests to the list. They will be

Re: how different are these urls working?

2009-09-30 Thread Petite Abeille
On Sep 30, 2009, at 9:05 PM, Shravan Kumar. M wrote: I have a page with Delete links in a list to delete each row. Each row corresponds an EO. When we click on Delete link we have to confirm from user if (s)he is sure of doing that. Out of curiosity, that delete link, is that a GET or a

Re: Results from the 2008 surveys

2009-06-02 Thread Petite Abeille
On Jun 2, 2009, at 8:02 PM, Chuck Hill wrote: My name is Chuck and I am an addict. Computer games don't affect kids, I mean if Pac Man affected us as kids, we'd all run around in a darkened room munching pills and listening to repetitive music. -- PA. http://alt.textdrive.com/nanoki/

Re: Tip: Your next XRaid may be an SSD

2008-12-15 Thread Petite Abeille
On Dec 15, 2008, at 9:52 PM, Pierce T.Wetter III wrote: Single HDDXRaid SSD Sequential 4K Write 17.3 MB/s 192 MB/s 214 MB/s Sequential 4K Read41 MB/s 126 MB/s 197 MB/s Random 4K Write1

Re: application intercomunication, a question

2008-12-05 Thread Petite Abeille
On Dec 5, 2008, at 7:50 PM, Amedeo Mantica wrote: Why SOAP is so ugly ? The S stands for Simple -- Pete Lacey, 2006 http://wanderingbarque.com/nonintersecting/2006/11/15/the-s-stands-for-simple/ Cheers, -- PA. XML, noun A magic elixir of legend, claiming to solve all problems while

Re: Criticism of Java Persistence Frameworks Blog Post

2008-12-05 Thread Petite Abeille
On Dec 5, 2008, at 11:16 PM, Chuck Hill wrote: It thought it might be interesting to look at this this from a WO in 2008 with Wonder perspective and see how many of his grumbles are still valid (if they ever were). Chuck, out of curiosity, during all those long years laboring with EOF/

Re: Criticism of Java Persistence Frameworks Blog Post

2008-12-05 Thread Petite Abeille
On Dec 5, 2008, at 11:40 PM, Chuck Hill wrote: On Dec 5, 2008, at 2:34 PM, Petite Abeille wrote: On Dec 5, 2008, at 11:16 PM, Chuck Hill wrote: It thought it might be interesting to look at this this from a WO in 2008 with Wonder perspective and see how many of his grumbles are still

Re: captcha ???

2008-12-03 Thread Petite Abeille
On Dec 3, 2008, at 1:04 AM, Owen McKerrow wrote: Does anyone have a suggestion regarding a free captcha generator, Alternatively... Stopping spambots with hashes and honeypots -- Ned Batchelder, 2007 http://nedbatchelder.com/text/stopbots.html Cheers, -- PA.

Re: Obtain primary key early?

2008-10-05 Thread Petite Abeille
On Oct 5, 2008, at 3:33 PM, Ken Anderson wrote: I have a situation where I want to grab a number from the Oracle sequence early so that I can assign it to the EO myself. Perhaps something like: select sequence.nextval from dual http://www.psoug.org/reference/sequences.html Cheers, --

Re: Question about search performance

2008-09-17 Thread Petite Abeille
On Sep 16, 2008, at 7:35 PM, Joshua Dubey wrote: SELECT bunch of attributes, from ORDERS T0 WHERE UPPER(T0.EMAIL_ADDRESS) LIKE UPPER('[EMAIL PROTECTED]') ESCAPE '\; In general... 'like' predicates are tricky to optimize from a SQL engine point of view... In Oracle... for simple case

Re: Question about search performance

2008-09-17 Thread Petite Abeille
On Sep 17, 2008, at 8:58 PM, Joshua Dubey wrote: I will look into Ken's suggestion below, that might do the trick. From a database perspective... not using bind variables is, hmmm, suicidal. Just my 2¢. Cheers, -- PA. http://alt.textdrive.com/nanoki/

Re: Detect SSL

2008-05-02 Thread Petite Abeille
On May 2, 2008, at 4:01 AM, Don Lindsay wrote: I want to identify if an application is being served via SSL. How can I do this? I have looked at all the headers available through the request. Not to beat a dead horse, but... there is no way in plain HTTP to tell if your connection is

Re: Detect SSL

2008-05-02 Thread Petite Abeille
On May 2, 2008, at 10:23 PM, Simon McLean wrote: I don't think it is a guess because i don't think apache can't server SSL and non-SSL on the same port. It could... GET http://example.bank.com/ HTTP/1.1 Host: example.bank.com Upgrade: TLS/1.0 Connection: Upgrade Upgrading to TLS Within

Re: Portal suggestions?

2008-05-02 Thread Petite Abeille
On May 2, 2008, at 11:04 PM, Andrew R. Kinnie wrote: They also want to support collaboration (e.g. forums), calendar sharing and management of and access to documents for various teams within the institution. OK, ok, so all that sounds like consultant-speak. Bottom line is, I came into

Re: Portal suggestions?

2008-05-02 Thread Petite Abeille
On May 2, 2008, at 11:34 PM, Mike Schrag wrote: If you're looking for an enterprise-level wiki, Leopard Server's ain't it ... It's very bare bones. As in: http://stuffthathappens.com/blog/2008/03/05/simplicity/ In general, being simple is better than being clever. -- Rob Landley, Design

Re: Portal suggestions?

2008-05-02 Thread Petite Abeille
On May 3, 2008, at 12:14 AM, Mike Schrag wrote: http://stuffthathappens.com/blog/2008/03/05/simplicity/ No, I would say iPhoto fits this diagram really well ... For Teams, picture this diagram with an empty square ... and also that square sort of sucks. The calendar solution from Apple is

Re: Mark your calendar: WOWODC is coming

2008-03-18 Thread Petite Abeille
On Mar 18, 2008, at 12:33 AM, Anjo Krank wrote: Expensive? If the dollar continues to do what it does, you can *buy* the hotel when you get there! Anjo, if you have D-Marks, err, Euros to burn, try this one: http://www.huntingtonhotel.com/ Just off Union Square. -- PA.

Re: WWDC 08

2008-03-15 Thread Petite Abeille
On Mar 15, 2008, at 2:19 AM, Asa Hardcastle wrote: WO/EO is not hard “I am so clever that sometimes I don’t understand a single word of what I am saying.” - Oscar Wilde -- PA. http://alt.textdrive.com/nanoki/ ___ Do not post admin requests to

Re: Creating Database Reports with EOF

2008-03-14 Thread Petite Abeille
On Mar 14, 2008, at 8:15 PM, Sennikov, Dimitri wrote: How would I be able to do that in WO with EOF? Is there an easier way than to get qualifiers for each month and create new FetchSpecifications for each of the months? Wouldn't this method create too much overhead (ie 12 queries just for

Re: WWDC 08

2008-03-13 Thread Petite Abeille
On Mar 13, 2008, at 10:14 PM, Chuck Hill wrote: WO is hard. PHP is easy. People expect Apple to equate with easy. Sure, you make unmaintainable crap with PHP, but it is easy to make unmaintainable crap. Come on, Chuck... don't be so condescending... I understand that a large part of

Re: WWDC 08

2008-03-13 Thread Petite Abeille
On Mar 13, 2008, at 10:40 PM, Simon McLean wrote: No, no, no!! Come on, Chuck, please be condescending. I laughed my socks off at the last quote. If Java had true garbage collection, most programs would delete themselves upon execution -- Robert Sewell

Re: WWDC 08

2008-03-13 Thread Petite Abeille
On Mar 13, 2008, at 10:46 PM, Chuck Hill wrote: Perl: an abomination upon software development. Java is the most distressing thing to happen to computing since MS-DOS -- Alan Kay ___ Do not post admin requests to the list. They will be ignored.

[OT] HTTP headers status diagram

2008-03-11 Thread Petite Abeille
To paraphrase Woody Allen: Everything you always wanted to know about HTTP headers status, but were afraid to ask Alternatively: An activity diagram to describe the resolution of HTTP response status codes, given various headers. http://thoughtpad.net/alan-dean/http-headers-status.html

[OT][ANN] Nanoki

2008-02-13 Thread Petite Abeille
[Not even remotely related to WebObjects, EOF, Java, Apple or anything] Nanoki, a sweet little wiki engine implemented in Lua [1]. http://alt.textdrive.com/nanoki/ Online demo: http://svr225.stepx.com:3388/nanoki Kind regards, PA. [1] http://www.lua.org/about.html