Re: com.reportmill.base.RMException: Probable fatal error:No fonts found.

2011-06-01 Thread David Avendasora
Hi Shravan, It appears to be having a problem finding the com.reportmill.text.RMFont class. Where do you have the ReportMillxx.jar installed? I see by some of ReportMill's documentation that they suggest installing it in the Local/Library/WebObjects/Extensions directory. Don't put it there.

Re: com.reportmill.base.RMException: Probable fatal error:No fonts found.

2011-06-01 Thread Shravan Kumar. M
just adding WO mailing list!! From: Shravan Kumar. M mshravan_...@yahoo.com To: David Avendasora webobje...@avendasora.com Cc: kamalsha...@gmail.com kamalsha...@gmail.com Sent: Wednesday, June 1, 2011 2:40 PM Subject: Re: com.reportmill.base.RMException:

Re: It's alive!

2011-06-01 Thread Miguel Arroz
Hey, On 2011/06/01, at 03:57, John Huss wrote: They have country music in Canada??? I was thinking exactly that... and NOT in a good way! Regards, Miguel Arroz ___ Do not post admin requests to the list. They will be ignored. Webobjects-dev

Re: com.reportmill.base.RMException: Probable fatal error:No fonts found.

2011-06-01 Thread Mike Schrag
If it's using AWT to access those fonts you might need to run with -Djava.awt.headless=true. This might be a bogus error from a root awt exception. Sent from my iPhone On Jun 1, 2011, at 5:12 AM, Shravan Kumar. M mshravan_...@yahoo.com wrote: just adding WO mailing list!! From: Shravan

Preventing an EOEditing context from being disposed

2011-06-01 Thread Frédéric JECKER
Hi list, My app uses a singleton object to manage communication with third party app. In order to save some database queries, this singleton statically caches some simple EO's within an NSArray. This works pretty well except that sometimes I encounter such messages :

Re: Preventing an EOEditing context from being disposed

2011-06-01 Thread Mike Schrag
EO's have a strong reference to their EC, so if you have a strong reference to an EO, you implicitly have a strong reference to its EC, which means it won't be GC'd ... you sure you didn't actually dispose the EC that fetched those objects? On Jun 1, 2011, at 8:11 AM, Frédéric JECKER wrote:

Re: Preventing an EOEditing context from being disposed

2011-06-01 Thread David Avendasora
Hi Fred, That's odd... I've been reading the EOF docs (yeah, I'm a crazy man) and I came across this nugget just yesterday: EOEditingContexts use weak references to the EOEnterpriseObjects registered with them. EOEnterpriseObjects hold a strong reference to the EOEditingContext in which they

Re: Preventing an EOEditing context from being disposed

2011-06-01 Thread Mike Schrag
The EOF documentation () gives this tip to create strong references from the EC to the EO, but I don't think that's going to change things, but I don't think it could hurt either in this situation: You can force an EOEditingContext to hold strong references to all of its

Re: CSS resources using url(...) syntax under Direct Connect

2011-06-01 Thread Paul Dunkler
Dude, this is very nice! Working perfectly with just this one setting :) Thanks! Am 01.06.2011 um 00:48 schrieb Chuck Hill: Hi Paul, I confess to only half reading this thread... :-) On May 31, 2011, at 3:41 PM, Paul Hoadley wrote: Not quite sure what you're suggesting there, but

Re: It's alive!

2011-06-01 Thread Louis Demers
On 2011-06-01, at 05:44 , Miguel Arroz wrote: Hey, On 2011/06/01, at 03:57, John Huss wrote: They have country music in Canada??? I was thinking exactly that... and NOT in a good way! Pascal, the next survey should add Calgary Alberta to the list of candidate cities for WOWODC,

Re: It's alive!

2011-06-01 Thread Pascal Robert
Le 2011-06-01 à 09:45, Louis Demers a écrit : On 2011-06-01, at 05:44 , Miguel Arroz wrote: Hey, On 2011/06/01, at 03:57, John Huss wrote: They have country music in Canada??? I was thinking exactly that... and NOT in a good way! Pascal, the next survey should add Calgary

Limiting apache virtual host to only one WO application

2011-06-01 Thread Atli Páll Hafsteinsson
Hi We have a WO setup with multiple application and a subdomain for each application configured via apache virtualhosts. How can I limit application access to only one application (using mod_rewrite ? ) so that http://awesome.xx.is would only allow access to

Re: Preventing an EOEditing context from being disposed

2011-06-01 Thread Frédéric JECKER
I first thought that the EO's where fetched using a dedicated EOEditingContext but digging the code led me to a special case where those could be Fetched using a disposable context. I changed the code so that those EO's are fetched using a dedicated EOEditingContext on which a reference is kept

Re: Limiting apache virtual host to only one WO application

2011-06-01 Thread Johann Werner
Hi Atli, in your global virtual_host config add: Location /cgi-bin/WebObjects/ Order Deny,Allow Deny from all /Location to deny every access to any WO app on any virtual host. Change the location URI to the one you are using for your WO installation. Then add to a specific

Re: Limiting apache virtual host to only one WO application

2011-06-01 Thread Jon Nolan
Atli, This might have an error or two but it should get you started. You'll need conditions like the first one for static resource directories, etc. RewriteEngine On RewriteCond $1 !^/Apps/WebObjects/Awesome.woa RewriteCond

Re: Limiting apache virtual host to only one WO application

2011-06-01 Thread Atli Páll Hafsteinsson
Thanx guys, will give this a try on friday. Atli Páll Hafsteinsson atlip...@gmail.com On Wed, Jun 1, 2011 at 4:07 PM, Jon Nolan li...@lochgarman.com wrote: Atli, This might have an error or two but it should get you started.  You'll need conditions like the first one for static resource

Re: action binding of an AjaxObserveField to return a WOComponent?

2011-06-01 Thread Theodore Petrosky
this works: public void returnTable() { MainTable nextPage = pageWithName(MainTable.class); nextPage.setShowAllIOs(showAllIOs); AjaxUtils.redirectTo(nextPage); } ShowAllCheckBox : WOCheckBox { checked = showAllIOs; id = showAllIOsID; }