Re: Subclassing EOEditingContext

2007-07-02 Thread Lachlan Deck
On 03/07/2007, at 7:50 AM, Ricardo Strausz wrote: public class BAEditingContext extends EOEditingContext { public BAEditingContext(){ super(); } public int test(int n){ return n; } } Nothing wrong there. But... and I a

Re: WebObjects documentation site

2007-07-02 Thread Ian Joyner
I appreciate the effort to provide a better level of documentation at the objectstyle confluence site. However, I'd have to say, I like the look of the wikibook a lot better (even though it wastes space on the LHS). Is it possible to give a confluence site a better look, or is this locked i

Re: Batch faulting

2007-07-02 Thread Peter Vandoros
Thanks for your responses. I already knew about the query size limit Julius mentioned and the possibly unneeded faulting of objects that might not be used causing my app to use more memory than needed. I just wanted to see if there were any corner case type issues that i wasn't aware of. Tha

Re: Subclassing EOEditingContext

2007-07-02 Thread Ricardo Strausz
Something is wrong... my class looks like: public class BAEditingContext extends EOEditingContext { public BAEditingContext(){ super(); } public int test(int n){ return n; } } and I am publishing it trough public Applica

Re: WebObjects documentation site

2007-07-02 Thread Mike Schrag
You can dump the entire wikibook to an xml file and write an importer from the xml to confluence from that. ms On Jul 2, 2007, at 5:30 PM, Pascal Robert wrote: I used it to migrate from MediaWiki to Confluence, it works great. BUT, you need : - Access to the API (XML-RPC) of Confluence t

Re: WebObjects documentation site

2007-07-02 Thread Pascal Robert
I used it to migrate from MediaWiki to Confluence, it works great. BUT, you need : - Access to the API (XML-RPC) of Confluence to upload the converted files - Access to the database of the wiki source (MediaWiki or other) Wonder if this tool can help (Wikibooks is still MediaWiki, right)

Re: Subclassing EOEditingContext

2007-07-02 Thread Ricardo Strausz
Cool... I'll give it a try, and let you all know. Gracias, Dino On Jul 2, 2007, at 4:09 PM, Kieran Kelleher wrote: Call super with matching args in your constructors when subclassing anything. For example: public class MyEditingContext extends ERXEC { public MyEditingContext(EO

Re: Subclassing EOEditingContext

2007-07-02 Thread Kieran Kelleher
Call super with matching args in your constructors when subclassing anything. For example: public class MyEditingContext extends ERXEC { public MyEditingContext(EOObjectStore anObjectStore) { super(anObjectStore); } public MyEditingContext() { supe

Re: Subclassing EOEditingContext

2007-07-02 Thread Kieran Kelleher
MyEditingContext extends EOEditingContext EOEditingContext ec = new MyEditingContext(); if you are using Wonder, you need to examine the ERXEC factory and make your own factory to return your subclass of ERXEC. Specify the custom factory in Properties somewhere .. just poke around

Re: Subclassing EOEditingContext

2007-07-02 Thread Ricardo Strausz
And how do you manage it? simply calling to super? can you please give me an example? On Jul 2, 2007, at 3:33 PM, Simon McLean wrote: We have a subclass to enable us to limit what the default editing context can and can't do and haven't had any problems. Simon On 2 Jul 2007, at 21:17, Ricar

Re: WebObjects documentation site

2007-07-02 Thread Andrus Adamchik
Wonder if this tool can help (Wikibooks is still MediaWiki, right) http://intient.com/wiki/index.php/Mediawiki_to_Confluence_Translator Andrus On Jul 2, 2007, at 11:18 PM, Andrew Lindesay wrote: Hello Mark; It would be good if there is an intention to extract and re-import the material at

Re: Subclassing EOEditingContext

2007-07-02 Thread Simon McLean
We have a subclass to enable us to limit what the default editing context can and can't do and haven't had any problems. Simon On 2 Jul 2007, at 21:17, Ricardo Strausz wrote: Hola! What is the best practice to subclass the EOEditingContext (besides not subclassing at all)? Some experien

Re: WebObjects documentation site

2007-07-02 Thread Andrew Lindesay
Hello Mark; It would be good if there is an intention to extract and re-import the material at some point. I keep some of my own general WO notes in there -- like this sort of content; http://en.wikibooks.org/wiki/Programming:WebObjects/Web_Services/ Controlling_WSDL_Service_Location I

Subclassing EOEditingContext

2007-07-02 Thread Ricardo Strausz
Hola! What is the best practice to subclass the EOEditingContext (besides not subclassing at all)? Some experience on that? Dino ___ Do not post admin requests to the list. They will be ignored. Webobjects-dev mailing list (Webobjects-dev@lis

Re: WebObjects documentation site

2007-07-02 Thread Steven Mark McCraw
Andrew, I am sympathetic to your concerns. There has been some thought given to migrating the pages over, but there was also a large volume of concern expressed that the content be reorganized, so a straight programmatic migration doesn't seem to be what everyone wants. We expect most o

[OT] Entity Modeler: SQL Generation issue

2007-07-02 Thread WO Dev
Hi, still trying to get used to Eclipse:) I'm editing an eomodel with a prototype. Everything is working as expected as far as editing the model. But when I try to generate the SQL for the model I got: -- Error java.lang.Integer java.lang.ClassCastException: java.lang.Integer at com.

RE: WebObjects documentation site

2007-07-02 Thread Andrew Lindesay
Hello; Gee; that really is a shame because I've loaded quite a few pages into the Wikipedia books site. Can it be migrated over somehow? Given the volume of stuff there it may be worth just staying on the Wikipedia books site? cheers. . and should content be out here instead of wi

Re: template parsing/generation inserts extra spaces

2007-07-02 Thread Lachlan Deck
Hi there, On 03/07/2007, at 4:00 AM, Patrick Robinson wrote: And HasMultipleDisplayedObjects is just a plain ol' WOConditional? Doh! That was it... one of mine. Ugh, too obvious to consider ;-) with regards, -- Lachlan Deck ___ Do not post admi

Re: template parsing/generation inserts extra spaces

2007-07-02 Thread Patrick Robinson
And HasMultipleDisplayedObjects is just a plain ol' WOConditional? Out of curiosity, I just tried it, and I get 'SomeTypes'. In my test, the WOConditional's condition was specified as true (or false), but that shouldn't matter. And my ResultType is a WOString whose value is bound to a jav

Re: [Wonder-disc] WebObjects documentation site

2007-07-02 Thread Steven Mark McCraw
Hi Kieran, Starting at the top (aka root, "dashboard") are these the final categories of info? http://wiki.objectstyle.org/confluence/dashboard.action Really, these are more of a starting point. At the moment, we're kind of directing our efforts towards the WebObjects space (which shoul

Re: HTML comments and WebObjects

2007-07-02 Thread Guido Neitzer
On 02.07.2007, at 11:24, Alex Johnson wrote: My general solution to the hide-in-comment issue in a WO template is to use a WOConditional named "Hidden." But that doesn't help with WebObjects 5.3 mangling comments and if you want to SEE the actual comment you have to call a setIncludeComme

Re: HTML comments and WebObjects

2007-07-02 Thread Alex Johnson
My general solution to the hide-in-comment issue in a WO template is to use a WOConditional named "Hidden." HTML: Do not render this WOD: Hidden: WOConditional { condition = false; } Alex Johnson ⠁⠇⠑⠭ ⠚⠕⠓⠝⠎⠕⠝ [EMAIL PROTE

Re: [Wonder-disc] WebObjects documentation site

2007-07-02 Thread Kieran Kelleher
Starting at the top (aka root, "dashboard") are these the final categories of info? http://wiki.objectstyle.org/confluence/dashboard.action and do we need some little elaboration as to what goes where, especially with Wonder/WebObjects since both are involved in many of technology topi

Re: WebObjects documentation site

2007-07-02 Thread Kieran Kelleher
Steven, there is an example of this approach shown here where one of the links has no page yet... http://wiki.objectstyle.org/confluence/display/WONDER/Tutorials On Jul 2, 2007, at 10:45 AM, Andrus Adamchik wrote: So maybe mark up the non-existent content in a Wiki way - by creating a link t

Re: Batch faulting

2007-07-02 Thread Chuck Hill
I have used at least a 1000 at times! Chuck On Jul 2, 2007, at 1:52 AM, Julius Spencer wrote: Hi Peter, I could be wrong about this, but I believe 100 is the default and you can set this the Advanced Relationship Inspector or the Advanced Entity Inspector (in the Entity). I am pretty m

Re: template parsing/generation inserts extra spaces

2007-07-02 Thread Lachlan Deck
On 03/07/2007, at 1:05 AM, Patrick Robinson wrote: I probably shouldn't even suggest this, but... you're sure the string bound to ResultType doesn't have a space at the end? :-) No, because... _Tname="HasMultipleDisplayedObjects">_S results in: 'SomeType_T _S' So something else is up...

Re: Webservices - Newbie

2007-07-02 Thread Ricardo Strausz
Hola Tan! On Jul 2, 2007, at 3:16 AM, [EMAIL PROTECTED] wrote: Message: 10 Date: Mon, 2 Jul 2007 01:02:05 -0700 From: "Tanmoy Roy" <[EMAIL PROTECTED]> Subject: Webservices - Newbie To: "WebObjects Dev" Message-ID: <[EMAIL PROTECTED]> Content-Type: text/plain; charset="iso-8859-1" H

Re: [OT] moving to Eclipse... still some issue

2007-07-02 Thread WO Dev
Perfect, thanks Lachlan:) On 02/07/2007, at 6:56 PM, WO Dev wrote: I was talking about how to make the ant file correct the permission on build, not which file to change the permission. For example an sample ant file that change the permission:)... until it is fixed in WOLips;) Ahh, oka

Re: template parsing/generation inserts extra spaces

2007-07-02 Thread Patrick Robinson
I probably shouldn't even suggest this, but... you're sure the string bound to ResultType doesn't have a space at the end? :-) - Patrick On Jul 2, 2007, at 12:14 AM, Lachlan Deck wrote: Hi there, If I have: name="HasMultipleDisplayedObjects">s The component is generated as: 'SomeType s'

Re: [OT] moving to Eclipse... still some issue

2007-07-02 Thread Lachlan Deck
On 02/07/2007, at 6:56 PM, WO Dev wrote: I was talking about how to make the ant file correct the permission on build, not which file to change the permission. For example an sample ant file that change the permission:)... until it is fixed in WOLips;) Ahh, okay - simple...

Re: WebObjects documentation site

2007-07-02 Thread Andrus Adamchik
On Jul 2, 2007, at 5:34 PM, Steven Mark McCraw wrote: When you have chosen a topic that you want to write on, edit the entry for that topic and change the '**' on the end to '(under construction)'. As soon as you have your article in place, you can just remove the '(under construction)' f

Re: Webservices - Newbie

2007-07-02 Thread Lachlan Deck
Hi Tanmoy, On 02/07/2007, at 6:02 PM, Tanmoy Roy wrote: I am a total newbie to WebSevices world. so kindly pardon my ignorance. I have been developing WebObjects based application for quite some time now. So I will be very comfortable if I can develop a WebServices application in WebObjec

Re: Batch faulting

2007-07-02 Thread Julius Spencer
Hi Peter, I could be wrong about this, but I believe 100 is the default and you can set this the Advanced Relationship Inspector or the Advanced Entity Inspector (in the Entity). I am pretty much pulling this directly from a book I have here on my desk (Practical WebObjects) as I've read

WebObjects documentation site

2007-07-02 Thread Steven Mark McCraw
Hi all, A small group of people have begun to look into the problem of lack of good, easy to use documentation for WebObjects and wonder, and based on feedback from the developer lists, we have created spaces at http://wiki.objectstyle.org/confluence/display/WO/Home for the documentation.

Re: Batch faulting

2007-07-02 Thread Ken Anderson
On Jul 2, 2007, at 4:15 AM, Peter Vandoros wrote: Hi list, We are in the "optimize" process with one of our apps and i have a few questions regarding batch faulting/fetching objects: Is there any reason why the limit batch size for batch faulting is 100 (well at least this is what we hav

Re: [OT] moving to Eclipse... still some issue

2007-07-02 Thread WO Dev
Helo Lachlan:) But it seems there's 2 different problems, the first one for me is Monitor isn't able to start the instance for the updated apps. Which is a serious issue because all schedule instances won't be able to restart! Anyone has an idea why it only happens with applications build w

Batch faulting

2007-07-02 Thread Peter Vandoros
Hi list, We are in the "optimize" process with one of our apps and i have a few questions regarding batch faulting/fetching objects: Is there any reason why the limit batch size for batch faulting is 100 (well at least this is what we have found)? Why isn't batch faulting enabled by default i

Re: Pretty printing?

2007-07-02 Thread Denis Frolov
On Jul 2, 2007, at 1:38 AM, Lachlan Deck wrote: On 01/07/2007, at 2:46 AM, Guido Neitzer wrote: On 30.06.2007, at 04:50, Lachlan Deck wrote: Sure, that's one option (and a good one) but I was actually more motivated by the presentation for our web-designer's eye. i.e., the component's to

Webservices - Newbie

2007-07-02 Thread Tanmoy Roy
Hi all, I am a total newbie to WebSevices world. so kindly pardon my ignorance. I have been developing WebObjects based application for quite some time now. So I will be very comfortable if I can develop a WebServices application in WebObjects. Here is my requirement, there will be a Webpage (no

Re: [Wonder-disc] log4j version update?

2007-07-02 Thread Cornelius Jaeger
Hi All I'm sorry, i rarely get personal on these lists but could we please not vent our frustrations about apple and eof on the wonder people, because that is exactly the wrong place to siphon off energy. They need constructive feedback and inspiration. If you doubt this, try ruby on rail