Re: A problem with http request to a webobjects site

2012-04-26 Thread Paul D Yu
Why don't you update the WOCommunity site with a write up? Sent from my iPad On Apr 26, 2012, at 5:12 AM, User wrote: > Thank you all! I got it! > I'll describe with pleasure the solution of this problem on request. > ___ > Do not post admin requests

Re: App switching from https to http port 443 on logout

2012-02-08 Thread Paul D Yu
Jon 5.4 Wonder is where it's at Sent from my iPad On Feb 8, 2012, at 6:32 AM, Jon Kleiser wrote: > On 2/8/12 5:53 AM, Klaus Berkling wrote: >> >> >> On Feb 7, 2012, at 7:42 AM, Jon Kleiser wrote: >> >>> This is roughly how we handles the logout (simplified): >>> >>> public WOComponent logo

Re: D2W, EditingContext, WORequest

2012-01-30 Thread Paul D Yu
Component generation, XML generation are "UI" view things, they should NOT be down in your EOs!!! Have you looked at the PDF generation example in Wonder? Basically, you should create a component like any other, except the wrapper is what FOP wants. Paul Sent from my iPad On Jan 30, 2012, at

Re: apache RewriteEngine

2012-01-29 Thread Paul D Yu
Jesse I'd suggest you just pay Pascal to set this up for you. Sent from my iPad On Jan 29, 2012, at 9:20 PM, Jesse Tayler wrote: > > I noted that the WebObjects_module was indeed loading AFTER and indeed, there > are duplicate entries somewhere > > so, in my httpd.conf, I've simply moved th

Re: Eclipse "3.7.1" hangs a lot - Anyone else?

2012-01-26 Thread Paul D Yu
Daniel 3.7.1 is where everyone should be? The mixing of source and compiled wonder frameworks does throw some errors. Not sure why that is, but they are not "real". Did you check your memory setting? Paul Sent from my iPad On Jan 26, 2012, at 11:26 PM, Daniel Beatty wrote: > Greetings g

Re: Automatic name create

2012-01-19 Thread Paul D Yu
Gino If you use inline bindings, ognl?, then you don't need names. I actually dislike the auto increment names, leads to maintenance problems in the future. Sent from my iPad On Jan 19, 2012, at 4:09 AM, Gino Pacitti wrote: > Hi > > Very simple question about WOLips and Eclipse. > > Is the

Re: WO Apps mutually exclusive

2011-12-11 Thread Paul D Yu
Set your project to be fully embedded. Then all the frameworks will be copied into your project for deployment. Sent from my iPad On Dec 11, 2011, at 7:56 AM, Gino Pacitti wrote: > Hi there... > > Is there a way to completely bundle up an app with all Frameworks and not > have to rely on th

Re: NullPointerException

2011-12-04 Thread Paul D Yu
Kevin This is a java or may be even programming issue, NOT a WebObjects one. Because of the || or operator, the runtime has to evaluate the second portion of the condition. Since errorMessage is null, length() of errorMessage will throw the exception... Paul Sent from my iPad On Dec 4, 2011

Re: Best way to remove a component?

2011-12-03 Thread Paul D Yu
Dec 3, 2011, at 11:16 PM, Kevin Spake wrote: > I guess I'm going to have to really learn to use git. My brain hurts right > now. > > On Dec 3, 2011, at 7:57 PM, Paul D Yu wrote: > >> Kevin >> >> I was thinking about rename component when I replied previo

Re: Best way to remove a component?

2011-12-03 Thread Paul D Yu
that you would have to manually clean up the .java file of the component. Paul Sent from my iPad On Dec 3, 2011, at 10:17 PM, Kevin Spake wrote: > > > On Dec 3, 2011, at 12:42 AM, Paul D Yu wrote: > >> Select the Component, right click. > > Yes, that brings up th

Re: Best way to remove a component?

2011-12-03 Thread Paul D Yu
Select the Component, right click. Sent from my iPad On Dec 3, 2011, at 12:16 AM, Kevin Spake wrote: > I made an error when I created a new component, and I'd like to delete it. > However, I've noticed that "Delete" in eclipse rarely does the trick. It will > delete the chosen item,, but not

Re: Question on WebObjects, WOLips and Wonder Tutorial, part 2

2011-12-02 Thread Paul D Yu
Of course you need to import the User class into your component. The eomodel is a model not a java class. P Sent from my iPad On Dec 1, 2011, at 11:39 PM, Kevin Spake wrote: > The error I am getting is "User cannot be resolved to a type." It is > occurring in Main.WO, and also shows up mul

Re: Connection Dictionary for ERAttachment (go away!)

2011-11-24 Thread Paul D Yu
Speaking of could we make these parameters default in build.properties? Sent from my iPad On Nov 24, 2011, at 9:03 PM, Paul Yu wrote: > So it sounds like you are not embedding the frameworks in your deployment woa. > > You should change your build properties to include the following: > > embe

Re: Direct To WebService support in WOLips

2011-09-18 Thread Paul D Yu
Let's drop this and do your direct to ERRest Paul Sent from my iPad On Sep 18, 2011, at 10:41 PM, Pascal Robert wrote: > Does anyone use Direct To WebService projects in WOLips? My guess is no, > because it's still using the old project structure ("src" instead of > "Source", etc.). Would it

Re: EOModel to Core Data?

2011-09-14 Thread Paul D Yu
gt; > > > On Sep 13, 2011, at 3:57 PM, Pascal Robert wrote: > >> Le 2011-09-13 à 16:53, James Cicenia a écrit : >> >>> That would bring a lot of attention to WO! >> >> Bah, nobody cares. >> >>> >>> On Sep 13, 2011, at 2:38

Re: EOModel to Core Data?

2011-09-13 Thread Paul D Yu
I was thinking an extension to EOModel like that of (dare I say it Dave?) JavaClient, where EO's and Attributes can be marked as CoreData/ERRest. Then generate an CoreData Model that will easily support the Synchronization work that was presented at WOWODC? Paul On Sep 13, 2011, at 3:00 PM, Je

Re: one-to-many relationship question

2011-09-08 Thread Paul D Yu
This is what I know. Owns destination on a toOne relationship means every time a master record is created, a "child" record will also be created. The primary key of the child will be set to the primary key of the master. Cascade delete means when you delete the master record, the child record(

Re: New WebObjects Site released.

2011-09-01 Thread Paul D Yu
Did you not see the you must be 18 to enter this site? Do we get free passes? WOWOW for the WIN!!! Paul On Sep 1, 2011, at 11:21 AM, Miguel Arroz wrote: > I don't know Japanese, so I have absolutely no idea of what is going on. But > after a few clicks, I saw, huh, boobs. What the heck is that

Re: Time Picker component for NSTimestamp

2011-08-03 Thread Paul D Yu
1-08-03, at 12:15 PM, Paul D Yu wrote: > >> Being a little lazy here, but has anyone created a date + time setting >> component? >> >> I thought I just saw a commit in the last month or so??? >> >> Thanks. >> >> Paul >> ___

Time Picker component for NSTimestamp

2011-08-03 Thread Paul D Yu
Being a little lazy here, but has anyone created a date + time setting component? I thought I just saw a commit in the last month or so??? Thanks. Paul ___ Do not post admin requests to the list. They will be ignored. Webobjects-dev mailing list

Re: Lion and WO

2011-07-20 Thread Paul D Yu
I've upgraded my primary client development machine and it works just fine. Upgrading the second one now. SSD makes the process go really fast. Spinning disk? not so much... Paul On Jul 20, 2011, at 1:06 PM, Simon wrote: > what about upgrading a dev machine - anyone braved it yet ? > > On 20

Re: properties files

2011-07-15 Thread Paul D Yu
I think it was one of Kieran's video. My minds was blown by it. But I did get the Properties in the /etc/WebObjects/InstanceName/ rule. Paul On Jul 15, 2011, at 11:13 AM, Michael Gargano wrote: > I thought I recalled something about the properties files getting reprocessed > like 3 times over

Re: Occasional hang loading a particular large page

2011-07-13 Thread Paul D Yu
Have you tried using ERXBatchFetching stuff? I use ERXBatchingDisplayGroup for large pages and it has worked well. Paul On Jul 13, 2011, at 6:21 PM, Kevin wrote: > I have an app that tends to lock up when a particular page is loaded. This > page fetches and accesses over 1500 records from a Fro

Re: Apple Representation On WebObjects-Dev Mailing List?

2011-07-07 Thread Paul D Yu
When I was in High School, my "computer" friends use to program on a TickerTape terminal. When I was at University, I programmed on a PDP11, my friends were still using punch cards. Alas, I never had that pleasure. My earliest Apple exposure was a Apple II 6502 assembler class. Paul On Jul

Re: WOWODC 2011 recordings

2011-07-05 Thread Paul D Yu
Of course. Always "Clean" and in a separate room... ;) Paul On Jul 5, 2011, at 11:14 AM, Hugi Thordarson wrote: >>> In short, we think that the first step to move forward is to stop using the >>> WebObjects "brand" on WOCommunity.org and elsewhere, and move to either to >>> the "Project Wonde

Re: WOWODC 2011 recordings

2011-07-05 Thread Paul D Yu
+1 Lets Fork... Maybe the Marketing compan(y/ies) among can chime in here? Issue of course is Branding and gaining momentum for the group. Paul On Jul 5, 2011, at 10:56 AM, Chuck Hill wrote: > > Whistler. ___ Do not post admin requests to the

Re: How to create plist from ERXGenericRecord ?

2011-06-25 Thread Paul D Yu
Fred ERXRest framework is your friend. Look at the WOnder example for send plist, bplist in both directions. Paul On Jun 25, 2011, at 8:06 AM, Fred Opims wrote: > Hi! > I have an iPhone application that talks with a webOject application using > Entreprise Object. > From iPhone application to t

Re: WOPopUpButton - Refresh another WOPopUpButton onChange

2011-06-24 Thread Paul D Yu
t list = periode.niveaux ) > > Ray > > ======== > > Message du : 24/06/2011 > De : "Paul D Yu " > A : "naneon.raym...@neuf.fr" > Copie à : webobjects-dev@lists.apple.com > Sujet : Re: WOPopUpButton -

Re: WOPopUpButton - Refresh another WOPopUpButton onChange

2011-06-24 Thread Paul D Yu
You can use ajaxUpateContainer and an AjaxObserveField? Paul Sent from my iPad On Jun 24, 2011, at 5:51 AM, naneon.raym...@neuf.fr wrote: > -- SORRY THERE SOMES ERRORS - > > Hi, > > I have a little problem on my apps. When I want to search something, I do > selection of parameters by WOPupU

Re: Advice please about WO

2011-06-12 Thread Paul D Yu
On Jun 12, 2011, at 3:18 PM, P Teeson wrote: > My situation is this: MacOS X 10.6.7 Xcode 3.2.6 MacPro dual 2.66Ghz > "Nehalem" quads, developing on Mac since 1984. > > But I've never had to do anything in WO, although I looked into it a few > years ago out of curiosity. > I'm now being asked

Re: WOGWT adaptor

2011-05-20 Thread Paul D Yu
Chuck, US? or used??? Your client should send you and some newbs to WOWODC, Mike. Paul On May 20, 2011, at 12:46 PM, Chuck Hill wrote: > > On May 19, 2011, at 9:07 PM, Michael DeMan wrote: > >> Hi John, >> >> Thanks for the follow up. >> >> The bottom line is that for the current contract

Re: Installing the tools: The One True Way?

2011-05-09 Thread Paul D Yu
I think the migration to the "one way" is absolutely the right thing to do. This is the basis from Crossing the Chasm. We have to simplify and make things consistent for the general new developers. Paul On May 9, 2011, at 11:34 AM, Pascal Robert wrote: > > Le 2011-05-09 à 10:18, John Huss a é

Re: What do you use for building the web interface?

2011-05-06 Thread Paul D Yu
Kevin We use WOLips. Although you can have your UI people create the HTML and all the CSS outside of WOLips and then replace the objects, e.g. Tables, textfields, etc. With WO versions. Inside of WOLips. Paul Sent from my iPad On May 6, 2011, at 5:40 PM, Kevin Spake wrote: > What do you us

Re: InOverMyHead {"obviously"};

2011-05-06 Thread Paul D Yu
I think we should at least mark it as Old/DO NOT USE, otherwise delete it. Paul On May 6, 2011, at 7:23 AM, Pascal Robert wrote: > > Le 2011-05-06 à 00:47, Kevin Spake a écrit : > >> Subject says it all. >> >> I took a java programming class years ago. I did not continue with it. Since >> th

Re: resRouteURLForActionNamed?

2011-04-29 Thread Paul D Yu
ERRest FTW!!! On Apr 29, 2011, at 2:35 PM, Pascal Robert wrote: > ERXRouteLink and ERXRouteUrlUtils are doing the job quite well. > >> Just saw that (and ERXRouteURL). Will take a look at those. >> >>> probably not exactly what you want, but there's ERXRouteUrlUtils ... it's >>> making a bunch

Re: PHP Customer Request

2011-04-07 Thread Paul D Yu
I'd build him the PHP system, then take his money again when he wants to upgrade the system. Paul On Apr 7, 2011, at 12:38 PM, Dov Rosenberg wrote: > It is a lot cheaper to host a php site - the cheapest GoDaddy hosting plan > for $5/mon includes PHP and mysql. > > Dov > > > On 4/7/11 8:55 AM

Re: Newbie question

2011-04-06 Thread Paul D Yu
Based on the column/attribute in your DB/EOModel that would make your consider the record/EO to be duplicate of another, you should implement a method that would check for those values in the existing set. I don't think there is a one line solution to what you are seeking. Paul On Apr 6, 2011,

Re: Migrations not executed at startup problem

2011-04-06 Thread Paul D Yu
never called. >> >> I think I should mistyped something. I am checking now. >> >> >> On Apr 6, 2011, at 12:16 PM, Paul D Yu wrote: >> >>> Miguel >>> >>> You will need to call the external sql script from inside of your

Re: Migrations not executed at startup problem

2011-04-06 Thread Paul D Yu
Miguel You will need to call the external sql script from inside of your Migration.java file. @Override public void upgrade(EOEditingContext editingContext, ERXMigrationDatabase database) throws Throwable { ERXJDBCUtilities.executeUpdateScriptFromResourceNamed(database.adaptorC

Re: model connections to multiple DBs

2011-04-04 Thread Paul D Yu
Yeah, that's the way to go. Reverse engineer each database into it's own EOModel, then build the relationships between the models. Be mindful that EO's can NOT have the same names across your models. So you may have to put prefixes on the EO's after you reverse engineer the DB tables. Paul On

Re: Scheduled Actions

2011-03-28 Thread Paul D Yu
You should be able to build a headless application and have cron call that app to do what you need. Sent from my iPad On Mar 28, 2011, at 10:32 PM, Ken - Watermark Studios wrote: > How would I handle scheduled actions with WebObjects. Cron or some other > approach? I'd like to have my applic

ERAttachmentViewer and iPad Safari

2011-03-28 Thread Paul D Yu
Greetings Anyone has any success with getting ERAttachmentViewer to play back QuickTime content in iPad Safari? Paul ___ Do not post admin requests to the list. They will be ignored. Webobjects-dev mailing list (Webobjects-dev@lists.apple.com) He

Re: Split large application into smaller ones

2011-03-18 Thread Paul D Yu
Yes breaking you monolithic application into smaller apps is a good idea. However there are some consideration that you should give to inter application communications, such as changes created by the admin app may not be known to the customer app. The first thing you should do is the refactor

Re: Am I using ec properly?

2011-03-12 Thread Paul D Yu
Drew I think you will need to check the objects in memory as well. Paul On Mar 12, 2011, at 9:14 PM, Drew Thoeni wrote: > I am writing objects to a database in this fashion: > > 1) reading a text file with companies in it. > > 2) fetching a company object based on a unique attribute (domain na

Re: not to start something but:

2011-03-12 Thread Paul D Yu
The Dave's should jump in here with a Direct to DoJo or Direct to Cappuccino application with ERRest. Paul On Mar 12, 2011, at 4:15 PM, Pascal Robert wrote: > > Le 2011-03-12 à 16:05, Theodore Petrosky a écrit : > >> I tend to use the Ajax Frameworks in everything. I really like how easy it >

Re: ERCalendar usage

2011-03-08 Thread Paul D Yu
I've tried using it, and would be happy to upgrade! Sent from my iPhone On Mar 8, 2011, at 1:12 PM, Pascal Robert wrote: > Anyone using the ERCalendar framework from Wonder? That framework should at > least use ical4j to create the event object, it would make it easier and more > solid that's

Re: Reverse Engineer?

2011-03-08 Thread Paul D Yu
I think the current thinking is to not have anything there. I think the embedded deploys would bundle the jar into the woa, so it would not run into the /Jave/Extensions folder. Paul On Mar 8, 2011, at 12:18 PM, Farrukh Ijaz wrote: > Shouldn't the mysql jar be placed in Java/ext folder? > > F

Re: D2W Question

2011-03-02 Thread Paul D Yu
Markus Dave Leber provided a very simple way to generating Excel files. See his blog here. http://davidleber.net/?p=369 Paul On Mar 2, 2011, at 6:53 AM, Markus Ruggiero wrote: > Hi WO Developers, I need help with D2W, > > I want to provide a "Download as Excel" link on each list page. What is

Re: WOWODC 2011: call for presenters

2011-03-01 Thread Paul D Yu
Dave's of a feather... ;) On Mar 1, 2011, at 1:17 PM, Pascal Robert wrote: > We should do a "Night with the Davids" session :-P > >> + there WILL be a lot of Davids there. >> >> :-) >> >> On 2011-03-01, at 8:34 AM, David LeBer wrote: >> >>> >>> On 2011-03-01, at 11:21 AM, Pascal Robert wro

Re: Using Fetch Limits with MySQL

2011-02-25 Thread Paul D Yu
WO stuff like EOFetchSpecification > and EOUtilities. > > Should I take a look at ERBathingDisplayGroup? > > Thanks again, > > > > > On Feb 25, 2011, at 3:02 PM, Paul D Yu wrote: > >> ERBatchingDisplayGroup > > John

Re: Using Fetch Limits with MySQL

2011-02-25 Thread Paul D Yu
John Are you using ERBatchingDisplayGroup? Paul On Feb 25, 2011, at 7:59 PM, Johnny Miller wrote: > Hi, > > I have a database with a single table with a lot of rows (millions). I need > to query the database and only return the first few rows. Unfortunately, > using a FetchSpecification wit

Re: Amazon EC2 Image

2011-02-23 Thread Paul D Yu
Kevin Try to do a sudo passwd on the root account. Paul On Feb 23, 2011, at 9:45 AM, Kevin Hinkson wrote: > Hi, > I setup an Amazon EC2 instance using the WOlastic image listed here > (ami-0be80962):http://wiki.objectstyle.org/confluence/display/WO/Deploying+on+Amazon+EC2 > However, I have not

Re: Linux deployment advice

2011-02-22 Thread Paul D Yu
John Welcome back. first thing is to use Eclipse + WOLips and Project Wonder. Then set the project to embed all frameworks. Then I would recommend using Project Wonder's wotaskd and JavaMonitor instead of Tomcat. Paul On Feb 22, 2011, at 3:48 PM, John Baldwin wrote: > I'm finally coming ba

AjaxFlexibleFileUpload and ERAttachmentFlexibleUpload

2011-02-16 Thread Paul D Yu
Dear List This is just documentation for a problem that we encountered after upgrading to the latest Wonder. We had an upload component inside of and AMD and AjaxUpdateContainer, like this This use to work, but did not after the upgrade. After working wit

Re: Informix Adaptor

2011-02-14 Thread Paul D Yu
We did one at Apple for the CHCS II Project. I don't know where that is now, but Ubermind helped us build one. Paul On Feb 14, 2011, at 8:00 PM, Andrew Lindesay wrote: > Hello; > > Has anybody had a go at creating an Informix JDBC plugin for EOF? > > cheers. > > -- > Andrew Lindesay > www.s

Re: Flattened many-to-many with WOBrowser

2011-02-05 Thread Paul D Yu
Are they in the same editingContext? Paul On Feb 5, 2011, at 5:27 PM, James Cicenia wrote: > Here is the error: > > A valid global ID could not be obtained for entity named > PortfolioProjectPortfolioProject, relationship named childProjects, primary > key dictionary {childProjectRowId = 69063

Re: inner join query help

2011-02-05 Thread Paul D Yu
Ted What do you see in the SQL that gets generated when you access the relationship. If there are no other qualifiers you query should bring all the rows back, yes? So what is qualifying the "deleted" rows? Paul On Feb 5, 2011, at 1:35 PM, David Avendasora wrote: > I also agree with Alex, that

Re: Happy WO-xmas!

2010-12-24 Thread Paul D Yu
Merry Christmas to all as well. Here's to a WOnder-ful New Year. Paul On Dec 24, 2010, at 4:30 PM, Timo Hoepfner wrote: > Merry Christmas for all of you. > > Spend a few nice days with your families! > > Timo > > > Am 22.12.2010 um 19:04 schrieb ISHIMOTO Ken: > >> I wish everyone here a nic

Re: Models confused?

2010-12-22 Thread Paul D Yu
Jesse I believe foreignKeys do not work on MySQL with EOF. Paul On Dec 22, 2010, at 12:53 PM, Jesse Tayler wrote: > I've had ERAttachment tests working once or twice, now I think maybe I've > gotten models confused somewhere perhaps. > > I have a poster relationship from user which eogen's a

Re: MySQL 5.5 goes GA Release

2010-12-16 Thread Paul D Yu
Is there a best practice for upgrading MySQL servers? I've killed my previous databases the last few times I've upgraded. Paul On Dec 16, 2010, at 9:44 AM, Kieran Kelleher wrote: > For all MySQL users (that excludes you Chuck ;-) ) > > http://dev.mysql.com/doc/refman/5.5/en/mysql-nutshell.h

Re: Properties for ERJavaMail - Unknown SMTP host: smtp;

2010-12-15 Thread Paul D Yu
That needs to be the url of the smtp server. typically, smtp.domain.com. sometimes mail.domain.com Paul On Dec 15, 2010, at 3:18 PM, Jesse Tayler wrote: > I'm setting up ERJavaMail and set this line in the properties for my app > > # ERJavaMail > er.javamail.smtpHost=oeinc.com >

Re: Cannot delete object that has not been fetched from the database

2010-12-09 Thread Paul D Yu
It's not like he wrote a book on the subject or something. :) Paul On Dec 9, 2010, at 8:17 AM, David Avendasora wrote: > > On Dec 8, 2010, at 12:23 AM, Ricardo J. Parada wrote: > >> Thanks for all the responses. I followed Chuck's advise. > > Oh great. Now people are going to start thinking

Re: Ajax framework's future

2010-11-22 Thread Paul D Yu
Paole If you use Eclipse with latest WOLips, and select create Project Wonder Framework, and then Application, WOLips will create the proper framework dependencies for you. http://wiki.objectstyle.org/confluence/display/WONDER/ERRest+Framework Also install the Ken Ishimoto Safari plugin which w

Re: WebObjects scalability question - WOSession?

2010-11-16 Thread Paul D Yu
WebObjects has been where it is since Apple's acquisition of NeXT. NeXT was banking on WebObjects as its future, just like BEA WebLogic, SliverStream, blah blah. WebObjects was $50K per CPU. NeXT had a large enterprise sales force for WebObjects and there was a large consulting business aroun

Re: [OT] rumor - oracle plans java version with costs

2010-11-08 Thread Paul D Yu
Here' the article in the Register. http://www.theregister.co.uk/2010/11/06/oracle_dueling_jvms/ Paul On Nov 8, 2010, at 6:22 AM, Stefan Klein wrote: > Hi, > > i read some interesting news in german magazine. > > http://www.heise.de/developer/meldung/Oracle-will-auch-kostenpflichtige-Java-Virtu

Re: [OT] Localizing copyright declarations

2010-11-08 Thread Paul D Yu
Sounds like a good reusable component here. Sent from my iPad On Nov 8, 2010, at 1:52 AM, Stefan Klein wrote: > In Germany it's in the most cases: > > © [YEAR(S)] [HOLDER] - Alle Rechte vorbehalten > > Stefan > > Am 08.11.10 04:34, schrieb Paul Hoadley: >> On 05/11/2010, at 4:52 PM, Paul Hoa

Re: MySQL + InnoDB no longer free?

2010-11-04 Thread Paul D Yu
WOW. that sucks! Guess the Oracle machine is working! May be time to switch to Frontbase or Postgres. On Nov 4, 2010, at 9:34 AM, David LeBer wrote: > > > ;david > > -- > David LeBer > Codeferous Software > 'co-def-er-ous' adj. Literally 'code-bearing' > sit

Re: WebObjects Community ideas on Google Moderator

2010-10-22 Thread Paul D Yu
Would something like this help us? http://wiki.eclipse.org/DocumentationGuidelines/CrowdSourcingExample Paul On Oct 21, 2010, at 4:13 PM, ISHIMOTO Ken wrote: > That's fine. > > But Google Translate won't work very well with Japanese <-> English. > > Maybe German or other Languages are OK. > >

Re: OS X Java Deprecation & JVM Source Code

2010-10-21 Thread Paul D Yu
Long live WOnder!!! :-) Paul On Oct 21, 2010, at 4:30 PM, Chuck Hill wrote: > > On Oct 21, 2010, at 1:26 PM, Stefan Klein wrote: > >> OK OK, horror is not the correct word (sorry, I'm not a native speaker) but >> the last 20 years there were a lot of discussions about that. >> I missed to not

Re: Now it won't find application or session in wods?

2010-10-19 Thread Paul D Yu
>>> ??? >>>> >>>> help. >>>> James >>>> >>>> >>>> >>>> >>>> >>>> >>>> >>>> On Oct 19, 2010, at 2:13 PM, James Cicenia wrote: >>>> >>&g

Re: looking for webobjects sample code

2010-10-19 Thread Paul D Yu
Have you looked at the Wonder examples? Paul On Oct 19, 2010, at 4:52 PM, Ray Sanders wrote: > I'm relatively new to WebObjects (at least on eclipse). I have what I believe > is the current version of eclipse (3.6.1 with the custom install script that > includes WOLips). I also have the 5.3.3 a

Re: Main is not a WOComponent ? another clue?

2010-10-19 Thread Paul D Yu
IIRC. The version number thing sounds like JVM version difference between those three frameworks and the running app? MS had me look inside my frameworks/class wrapper to see what version those were. I don't remember exactly how to do that, sorry. Paul On Oct 19, 2010, at 2:05 PM, James Cice

Re: re-post text encoding in a WOText area?

2010-10-18 Thread Paul D Yu
I have the same issue just different. I use YUITextEditor for my text editing. The copy and paste for Word is a HUGE problem. The latest YUI 2.8.1 code has a switch that will deal with weird formatting and characters issue a little bit better. But still not great. Part of my research found a

Re: ERRest and Binary PLIST

2010-10-12 Thread Paul D Yu
I don't think so in the specifics. I think it will be come trunk in the future. Paul On Oct 12, 2010, at 8:55 AM, Farrukh Ijaz wrote: > On 2010-10-12, at 3:54 PM, David LeBer wrote: > >> >> On 2010-10-12, at 8:30 AM, Farrukh Ijaz wrote: >> >>> Hi David, >>> >>> It's trunk: >>> >>> https://w

Re: Deployment setup on a OS X box

2010-10-09 Thread Paul D Yu
Great idea! +1 Sent from my iPad On Oct 10, 2010, at 2:01 AM, Pascal Robert wrote: > I'm setting up a Mac Mini Server, and it's the first time since 2008 that I'm > setting up a OS X box just for deployment. I installed WO with > woinstaller.jar, but I did forget that it won't install it in

Re: TurnKey Installer Components

2010-10-07 Thread Paul D Yu
Just for my education, now. So when I setup my clean machine from Apple, I should not use the default user and be create a separate user? not not give the new user admin rights? Paul On Oct 7, 2010, at 11:50 AM, John Huss wrote: > 3) Thou shalt not run as an admin user > ___

Re: TurnKey Installer Components

2010-10-07 Thread Paul D Yu
I have not shared MY development machine(s) with other people for as long as I can remember, so I've installed Eclipse in /Applications. Not that I'm advocating for this... Do you guys actually share your machines with other developers? Paul On Oct 7, 2010, at 8:36 AM, Timo Hoepfner wrote: >

Re: Current Status of WO

2010-09-29 Thread Paul D Yu
And for you app, you may want to look at ERRest framework. Paul On Sep 29, 2010, at 2:31 PM, Chuck Hill wrote: > > On Sep 29, 2010, at 11:28 AM, Alexander Spohr wrote: > >> Hi list, >> >> I am planning a new project with heavy load. No HTML output, just plists. >> Lots of users, small data fo

Re: database concept help

2010-09-29 Thread Paul D Yu
Ted Conceptually, if the association entity (PeopleJob) is just that an association between the two EO's and no other attributes are on the the association then Flatten is good. However, if you have another attribute such as isPrimary on the PeopleJob or startDate then flatten would not be the

Re: webex and D2W

2010-09-26 Thread Paul D Yu
Ted Here's what I have. Requirement: Person table needing an Avatar Add ERAttachment framework to my eclipse build path. Add idERAttachment INT to my table Add relationship Person.avatar from Person.idERAttachment column to ERAttachment.model.ERAttachment in EntityModeler In Properties of m

Re: custom file input form element

2010-09-22 Thread Paul D Yu
Lets not go down that rabbit hole again. WebObjects lives. Wonder is where it is at. Paul On Sep 22, 2010, at 8:16 AM, Pelaia II, Tom wrote: > Hi Chuck, > > Would it be worthwhile for me to file a bug report with Apple, or has > WebObjects come to the end of its support? It seems that WebObj

Re: More thoughts to rile MS

2010-09-11 Thread Paul D Yu
That's actually a very good point about the "Legacy". If Apple could change that term on their website that would be a help for new people wanting to adopt WO as a platform. Paul On Sep 11, 2010, at 4:14 PM, Farrukh Ijaz wrote: > >>> All new additions to the community comes from single peopl

Re: More thoughts to rile MS

2010-09-10 Thread Paul D Yu
Ken There are many new small companies going to market with WO + Wonder, some even with D2W with Wonder. Personally, I've got one in production now and trying to build a second as we speak. In addition, I'm consulting on another. K12 has MANY WO apps in production serving their entire studen

Re: WOWODC 2011 coming to your city

2010-09-08 Thread Paul D Yu
The only reason from my perspective to move out of Montreal would be to try to get more Apple participation. But if they're not going to be coming and sharing because of legal restrictions, but we should stay in Montreal. It was a great WOWODC 2010. Paul On Sep 8, 2010, at 12:29 PM, Ken - Wat

Re: Weird mysql problem

2010-09-05 Thread Paul D Yu
What is the case insensitivity on MySQL set to? Paul On Sep 5, 2010, at 9:21 AM, Mark Woollard wrote: > I am trying to take a backup of a mysql database used by WO app from a live > server and restoring onto my laptop so I can test the migration code in the > new version with a live data set. I

Re: AjaxDatePicker Revisited

2010-08-29 Thread Paul D Yu
Ah, the date format has to be %m/%d/%Y 4-digit year. Paul On Aug 29, 2010, at 4:58 PM, Klaus Berkling wrote: > I got AjaxDatePicker to work quite easily, so I though. > > I have not found out where to set the date selected in the calendar. > > I pre-populate the field with a value but when c

Re: Eclipse setup

2010-08-16 Thread Paul D Yu
t I'm just wondering if something > has changed and I missed it. > > Thanks, > > Johnny > > > On Aug 16, 2010, at 1:30 AM, Paul D Yu wrote: > >> I'm on Eclipse 3.6 and WOLips 3.6.6122. Works great. This is where all the >> performance and

Re: Eclipse setup

2010-08-16 Thread Paul D Yu
I'm on Eclipse 3.6 and WOLips 3.6.6122. Works great. This is where all the performance and other fixes is happening. Paul On Aug 16, 2010, at 7:25 AM, r...@synapticstorm.com wrote: > Hi list, > > I absolutely love WebObjects but I find Eclipse rather slow and erratic. Are > there any links o

Re: Suggestions for best deployment?

2010-07-31 Thread Paul D Yu
Ken I host at SliceHost (subsidiary of Rackspace). The VM's that I get both Ubuntu and CentOS both are full OS's and they also have iptables. Paul On Jul 31, 2010, at 9:14 AM, Ken Anderson wrote: > OK - at least at Rackspace, there's a tool called iptables that allows you to > set firewall ru

RE: My first Eclipse D2W

2009-07-28 Thread Paul D Yu
Dino You should also take a look at Dave LeBer's screen cast...http://davidleber.net/?p=388 Paul ___ Do not post admin requests to the list. They will be ignored. Webobjects-dev mailing list (Webobjects-dev@lists.apple.com) Help/Unsubscribe/U

WOCheckBoxList

2009-07-10 Thread Paul D Yu
Greetings I'm using WOCheckBoxList component for the first time. When I use this, without type="checkbox" "$dertItem.displayCode" selections = "$recommendations" / > I get normal input fields in the browser, which is not what I want. So I have to add the type="checkbox" to the declaration. "$

OT: Capistrano setting sudo password on deployment server

2009-06-15 Thread Paul D Yu
This is a follow up to the WOWODC Capistrano deployment session. I'm trying to write a simple capfile to learn capistrano. I got the tail -f on the logs to work, but how do I do a task of run "sudo some- command" which requires a password? How do I set the sudo password once? Thanks in a

Re: Webobjects-dev Digest, Vol 6, Issue 335

2009-04-05 Thread Paul D Yu
This is actually a commercial product from Jiva Software, ClearSpace. Paul On Apr 5, 2009, at 9:17 AM, webobjects-dev-requ...@lists.apple.com wrote: Send Webobjects-dev mailing list submissions to webobjects-dev@lists.apple.com To subscribe or unsubscribe via the World Wide Web, vi

Re: Cannot update WOLips

2009-03-16 Thread Paul D Yu
? We're getting the message because we can't update. So, maybe you could clarify how you updated after getting the errors. Tim On Mar 16, 2009, at 11:14 AM, Paul D Yu wrote: I just did an upgrade this morning after reading the message, and did not have a problem. But I was com

Re: Cannot update WOLips

2009-03-16 Thread Paul D Yu
I just did an upgrade this morning after reading the message, and did not have a problem. But I was coming from an older version. Paul On Mar 16, 2009, at 2:07 PM, TW wrote: Anders I'm having the same problem as well - probably for a couple weeks now. The last time this happened I had to

WebObjects Developer Position Available Northern VA, USA

2006-11-02 Thread Paul D. Yu
Greetings We are looking for a Java/WebObjects developer in the Northern VA area. We are a rapidly growing company; great pay and benefits; great team. If you are interested please send me an e-mail with resume attached and we can go from there. Thanks. Paul ___

Re: Eclipse Tomcat distribution

2006-10-17 Thread Paul D Yu
In my previous projects (that work) LICENSE is just the WebObjects license agreement.  Is that was this is talking about??  I'd imagine that it's looking for the deployment license key, but . . . Thanks again,JohnOn Oct 17, 2006, at 8:34 AM, Paul D Yu wrote:John I have build a private versio

Re: Eclipse Tomcat distribution

2006-10-17 Thread Paul D Yu
John I have build a private version of the WOLips plugin that will basically build the a WebObjects Application for SSDD/WAR deployment. The changes I have made are in the files associated with the bug http://objectstyle.org/jira/browse/WOL-221 Some of the write up may be helpful for y

OT Question: Google ADs and WebObjects Apps

2006-09-14 Thread Paul D Yu
Greetings Sorry for the OT question, but I've seen this in two WebObjects sites with Google ADs and was wondering if someone had an answer. In my website, www.superdiem.com, when you first land on it, the Main.wo, google seems to present appropriate ADs for the site, GSA, Travel Related.

Re: Finding nearest location, calculating distance - best way to store and sort info?

2006-05-03 Thread Paul D Yu
MattI've implemented something like this at www.superdiem.com, where you can find the nearest airports to a zipcode location.I wrote a query that modeled the suggested Great Circle (based on lat-long) calculation in EOQualifiers, load them into a fetchSpecification and do ec.objectsWithFetchSpecifi

  1   2   >