Re: WebObjects Adaptor for Apache 2.4.3

2012-09-20 Thread Johann Werner
Hi Dennis, Am 19.09.2012 um 18:54 schrieb Gaastra Dennis - WO Lists webobjects_li...@webappz.com: Dear List, We would like to try compiling the WebObjects Adaptor for Apache 2.4.3. Our goal is to run the newest OpenSSL/1.0.1c with Apache httpd/2.4.3 on Mountain Lion 8.1 on our servers.

Re: Fwd: build in utf-8

2012-09-20 Thread Antoine Berry
Thank you, that worked great! I'll put that on the wiki. Antoine Le 19/09/12 15:33, Maik Musall a écrit : Hi, add encoding=utf-8 to your wocompile statement in build.xml. Possibly also to copy statements and other javac statements. Maik Am 19.09.2012 um 15:16 schrieb Antoine Berry

Re: Really weird Ajax update problem

2012-09-20 Thread Pascal Robert
I moved to stateless for the sub-component (by extending from ERXStatelessComponent) and it still calls the sub-component for all rows instead of the table row I'm updating. And the table is now all divs. Possible cause would be binding synchronisation. Try to disable automatic sync binding

Re: WOTable class does not exist in Wonder and WOlips?

2012-09-20 Thread Cretu Catalin
Hello JW, I tried again, but when I run the project I got this exception on browser: Application: TMA Error: java.lang.ClassNotFoundException exception Reason: java.lang.ClassNotFoundException: Cannot find class or component named WOTable in runtime or in a

Re: Really weird Ajax update problem

2012-09-20 Thread Amedeo Mantica
there is something weird, I tried yesterday a very similar stuff and no issues div id=cartView wo:AjaxPing targetContainerID=totalUpdateContainer cacheKey=$cacheKey frequency=1000 stop=false / h1Your cart/h1 div id = cart wo:form action = $updateCart

Re: Really weird Ajax update problem

2012-09-20 Thread Pascal Robert
You are not calling your own sub-component(s) in your example. Like I said, I don't have the problem if I simply call dynamic elements from WO/Wonder, I have the problem if I include my own sub-components, be them stateless or not. there is something weird, I tried yesterday a very similar

Re: Really weird Ajax update problem

2012-09-20 Thread Amedeo Mantica
wo:TestsPascal ? Sent from my iPhone On 20/set/2012, at 14:22, Pascal Robert prob...@macti.ca wrote: You are not calling your own sub-component(s) in your example. Like I said, I don't have the problem if I simply call dynamic elements from WO/Wonder, I have the problem if I include my own

Re: Really weird Ajax update problem

2012-09-20 Thread Pascal Robert
I added a test case on GitHub: https://github.com/pascalrobert/AjaxTestCase Pascal, could you post the code of this TestsPascal component ? Alex 2012/9/19 Pascal Robert prob...@macti.ca So I moved to divs and the problem still persist. Funny thing is that the update is really a

Re: WOTable class does not exist in Wonder and WOlips?

2012-09-20 Thread Johann Werner
Works for me. You do use Wonder? Am 20.09.2012 um 13:43 schrieb Cretu Catalin catacr...@yahoo.com: Hello JW, I tried again, but when I run the project I got this exception on browser: Application: TMA Error: java.lang.ClassNotFoundException exception Reason:

Re: WOTable class does not exist in Wonder and WOlips?

2012-09-20 Thread Cretu Catalin
I install WOLips, Wonder, and after that I made a manual import. There is a way to set up or to check if I use Wonder? Thank you, Catalin From: Johann Werner j...@oyosys.de To: Cretu Catalin catacr...@yahoo.com Cc: Webobjects-dev@lists.apple.com

Re: WOTable class does not exist in Wonder and WOlips?

2012-09-20 Thread Johann Werner
The component is inside the JavaWOExtensions project so if it is on your classpath WO should find it. You should create a new Wonder Application project from scratch and try to use the table component there. Then have a look at your project, check your classpath against the new project and

How do I tell EOF to use EROracleExpression instead of OracleExpression when building SQL?

2012-09-20 Thread Ricardo J. Parada
Hi, What is the trick to have my app use EROracleExpression to build the SQL instead of EOF's OracleExpression? I added the EROraclePlugIn framework to my app. However my app still seems to use EOF's OracleExpression instead of EROracleExpression to build SQL. Any ideas? Thanks, Ricardo

Re: How do I tell EOF to use EROracleExpression instead of OracleExpression when building SQL?

2012-09-20 Thread Ricardo J. Parada
Never mind, I figured it out. My application was setting its own plugin class as follows: JDBCPlugIn.setPlugInNameForSubprotocol(com.mpv.database.MPVOraclePlugIn, oracle); I changed my MPVOraclePlugIn to extend EROraclePlugIn and now it seems to get used by EOF. Thanks Ricardo

How do you do onMouseOver

2012-09-20 Thread Calven Eggert
I have a column heading on a page and I'd like to display help text when the user moves his/her mouse over the heading. Anyone have any ideas how to easily do this in WO? Calven ___ Do not post admin requests to the list. They will be ignored.

Re: Really weird Ajax update problem

2012-09-20 Thread amedeomantica
Hello, Verified, I'm investigating Logging... the appendToResponse in called only to the correct row set 20 19:44:19 Digitmovies[18965] INFO com.digitmovies.components.DMTestComponent - Awake. Row: 1 set 20 19:44:19 Digitmovies[18965] INFO com.digitmovies.components.DMTestComponent -

Re: WOTable class does not exist in Wonder and WOlips?

2012-09-20 Thread Patrick Robinson
Also be aware that there's a WOTable component in both the Apple and the Wonder versions of the JavaWOExtensions framework, so make sure you're referencing the right one in your project. - Patrick On Sep 20, 2012, at 9:32 AM, Johann Werner wrote: The component is inside the JavaWOExtensions

Migrations and dev cycle

2012-09-20 Thread Pascal Robert
Hi guys, I was wondering how do you deal with situations where your development branch is having migrations that are NOT part of trunk/current release but that you need to do a migration for a fix in trunk? Let's say trunk is at migration 2 (on the prod database), but the super new features

ERAttachment problem

2012-09-20 Thread Ângelo Andrade Cirino
Hi, I had this problem once and do not remember how I solved it, perhaps changing the libraries order. Another guy had the same problem and reported it to the list but no one presented a solution. Set 20 16:41:39 Visiontur1.0[60002] DEBUG NSLog Page: er.modern.look.pages.ERMODTabInspectPage -

Re: Really weird Ajax update problem

2012-09-20 Thread Johnny Miller
You need this in subcomponent: public void reset() { super.reset(); _aString = null; } Not really sure if I understand what you are trying to do with the repetition. If you just want to have a cell that you can update why not use AjaxInPlace? Aloha, Mr. Johnny Miller

Re: ERAttachment problem

2012-09-20 Thread David Holt
File permissions? On 2012-09-20, at 12:49 PM, Ângelo Andrade Cirino wrote: Hi, I had this problem once and do not remember how I solved it, perhaps changing the libraries order. Another guy had the same problem and reported it to the list but no one presented a solution. Set 20

Re: ERAttachment problem

2012-09-20 Thread Ângelo Andrade Cirino
Hi David, Not really. Just to be sure about it I changed the access to 777 and the error remains. And there are two other attachments that work fine. Angelo 2012/9/20 David Holt programming...@mac.com File permissions? On 2012-09-20, at 12:49 PM, Ângelo Andrade Cirino wrote: Hi, I had

Re: ERAttachment problem

2012-09-20 Thread Chuck Hill
Are they all in the same directory? On 2012-09-20, at 1:11 PM, Ângelo Andrade Cirino wrote: Hi David, Not really. Just to be sure about it I changed the access to 777 and the error remains. And there are two other attachments that work fine. Angelo 2012/9/20 David Holt

Re: ERAttachment problem

2012-09-20 Thread Ângelo Andrade Cirino
Hi Chuck, I am using ERDatabaseAttachment. The three attachments were modeled the same way, a one-sided, to-one relationship to ERDatabaseAttachment. Angelo 2012/9/20 Chuck Hill ch...@global-village.net Are they all in the same directory? On 2012-09-20, at 1:11 PM, Ângelo Andrade Cirino

Re: Migrations and dev cycle

2012-09-20 Thread Maik Musall
Am 20.09.2012 um 21:22 schrieb Pascal Robert prob...@macti.ca: Hi guys, I was wondering how do you deal with situations where your development branch is having migrations that are NOT part of trunk/current release but that you need to do a migration for a fix in trunk? Let's say

Re: Migrations and dev cycle

2012-09-20 Thread David Holt
Also, can you use dependencies to mitigate the risk of doing something incorrectly? Can you always do migrations in trunk regardless of where the necessity for them is being created? On 2012-09-20, at 1:32 PM, Maik Musall wrote: Am 20.09.2012 um 21:22 schrieb Pascal Robert

Re: Migrations and dev cycle

2012-09-20 Thread Pascal Robert
Le 2012-09-20 à 16:42, David Holt programming...@mac.com a écrit : Also, can you use dependencies to mitigate the risk of doing something incorrectly? Can you always do migrations in trunk regardless of where the necessity for them is being created? The problem is that if the migration

Re: Migrations and dev cycle

2012-09-20 Thread Paul Hoadley
Hi Pascal, On 21/09/2012, at 4:52 AM, Pascal Robert wrote: I was wondering how do you deal with situations where your development branch is having migrations that are NOT part of trunk/current release but that you need to do a migration for a fix in trunk? Let's say trunk is at

Re: ERAttachment problem feedback

2012-09-20 Thread Ângelo Andrade Cirino
Some feedback. The issue doesn't seem to be with ERAttachment, but rather with AjaxFileUpload. To try to figure out what was happening, I changed the specific ERAttachment from database to file attachment with the same results. After changing the model back to database attachment, making a backup

Re: Migrations and dev cycle

2012-09-20 Thread Theodore Petrosky
--- On Thu, 9/20/12, Pascal Robert prob...@macti.ca wrote: From: Pascal Robert prob...@macti.ca Subject: Re: Migrations and dev cycle To: David Holt programming...@mac.com Cc: WebObjects Development webobjects-dev@lists.apple.com Date: Thursday, September 20, 2012, 4:45 PM Le 2012-09-20

Re: ERXPartials review and Example application

2012-09-20 Thread Chuck Hill
It is probably time to remove this from the package docs: * PARTIAL ENTITIES SHOULD BE CONSIDERED EXPERIMENTAL * This is some awesome coolness from Mike Schrag. People should be using this. Chuck On 2012-09-20, at 7:36 PM, David Aspinall wrote: Hi All, I was recently sponsored in a

Re: Migrations and dev cycle

2012-09-20 Thread John Huss
On Thursday, September 20, 2012, Paul Hoadley wrote: Hi Pascal, On 21/09/2012, at 4:52 AM, Pascal Robert wrote: I was wondering how do you deal with situations where your development branch is having migrations that are NOT part of trunk/current release but that you need to do a migration

Re: ERXPartials review and Example application

2012-09-20 Thread Johnny Miller
It would be cool, if like erprototypes, there was a framework that had a set of partial entities that you could use as a baseline for your models. Johnny Miller Kahalawai Media Co. On Sep 20, 2012, at 4:56 PM, Chuck Hill ch...@global-village.net wrote: It is probably time to remove this from

Re: ERXPartials review and Example application

2012-09-20 Thread Chuck Hill
I am not sure how practical that is. The goal of this is to allow things that are not known in advance to be connected. I think you are thinking of composing objects from pieces of other objects. As a general practice in designing EOs, I think that would have negative performance impacts. And