Re: No template found for component Main at jar:file

2006-01-23 Thread Baiss Eric Magnusson
Thanks, Mike. I'm still unable to get the program to execute correctly, the build file <.woa> seems fine in every way as I go through your suggestions. On Jan 21, 2006, at 12:28 PM, Mike Schrag wrote: I don't know that the person who had this problem back in Sep ever responded with the fina

Re: EOModel Xcode plug-in status in 5.3.1

2006-01-23 Thread Robert Walker
I still find it to be pretty worthless. I see no improvements from 5.3.0. I still use EOModeler exclusively in 5.3.1. -- Robert Walker [EMAIL PROTECTED] There are 10 types of people in the world, those who count in binary, and those who don't. On Jan 23, 2006, at 7:49 PM, Clark Mueller w

Re: How to programmatically send a form (Dev WO)

2006-01-23 Thread wojingo
Dev WO wrote: I think I can use a regular WOForm and use James' method to redirect to the bank url public WOComponent sendToVerisign() { WORedirect nextPage; nextPage = new WORedirect(context()); nextPage.setUrl (yourTargetUrlAsString()); <-- use your banks method here ret

EOModel Xcode plug-in status in 5.3.1

2006-01-23 Thread Clark Mueller
Hi everyone, Just wondering if anyone has been using the Xcode data modeling plugin since 5.3.1's release... If so, what has been your general assessment? Is it stable? Are you finding it to be fully featured, and an aid in development? Or a hindrance, compared to EOModeler? It seems like

Re: How to programmatically send a form (Dev WO)

2006-01-23 Thread Dev WO
I think I can use a regular WOForm and use James' method to redirect to the bank urlpublic WOComponent sendToVerisign() { WORedirect nextPage; nextPage = new WORedirect(context()); nextPage.setUrl (yourTargetUrlAsString());  <-- use your banks method here return nextPage;}but even if this work, I d

Re: WebObjects: Consuming web services

2006-01-23 Thread Robert Walker
See if you have this directory on you hard drive: /Developer/Documentation/WebObjects/Web_Services/projects/ if not then you can find the projects here: http://homepage.mac.com/robertwalker1/.Public/ Calculator_Web_Service_Example.zip On Jan 23, 2006, at 4:10 PM, Randy Wigginton wrote: Hel

Re: PostgreSQL and Wonder

2006-01-23 Thread Guido Neitzer
On 23.01.2006, at 21:39 Uhr, Leo Lutz wrote: This seems to be the only place postgres and wonder project have been mentioned even remotely recent. Is wonder still being actively used in 5.3.1? Where do I get the files for a good connection to postgres? I know wonder released 2.0, but it doesn't

WebObjects: Consuming web services

2006-01-23 Thread Randy Wigginton
Hello, I've been out of programming webobjects for a couple of years, but finally have a great chance to switch back to using WO. I hope this is the right mailing list... In the reference library, there is an article on programming webservices with webobjects. ("WebObjects Web Services P

Re: PostgreSQL and Wonder

2006-01-23 Thread David LeBer
On 23-Jan-06, at 3:39 PM, Leo Lutz wrote: Hi, This seems to be the only place postgres and wonder project have been mentioned even remotely recent. Is wonder still being actively used in 5.3.1? Where do I get the files for a good connection to postgres? I know wonder released 2.0, but it doesn'

PostgreSQL and Wonder

2006-01-23 Thread Leo Lutz
Hi, This seems to be the only place postgres and wonder project have been mentioned even remotely recent. Is wonder still being actively used in 5.3.1? Where do I get the files for a good connection to postgres? I know wonder released 2.0, but it doesn't seem to have their jdbc driver and eomodele

Re: How to programmatically send a form (Dev WO)

2006-01-23 Thread Dev WO
Hi James and Joseph, I'm actually trying to finish this "sending a form", but when using the string generated by the method provided by the bank in the example you James provided, I got some sort of a loop and finally a: " The web server closed the connection without sending any response " No

Re: Common library, how to

2006-01-23 Thread apl
Hello Xavier; I'd like to share some code between different applications, so I was thinking about creating "something" that would... I have a project that builds a library for some material that I need to share between J2SE projects and WebObjects projects. The build product for this lib

Re: File upload as longresponse page

2006-01-23 Thread David Holt
Hi Wolfram, Check out the non-blocking file upload on WOCode. I find that it works pretty well and looks to do what you are asking for. http://wocode.com/cgi-bin/WebObjects/WOCode.woa/1/wa/ShareCodeItem?itemId=306 David -- Men are afraid to rock the boat in which they hope to drift safely throu

Re: Common library, how to

2006-01-23 Thread Dev WO
Thanks for your tips and answers, at least there are a couple images I'm using a lot, so going for a WebObjects Framework seems really good. I did a couple test and at least it compiles;) Thanks Xavier Hi, Xavier, On Jan 23, 2006, at 6:08 AM, Dev WO wrote: Hi list, this is really a begin

Re: Managing EOF caching

2006-01-23 Thread Ken Anderson
Jerry,I understand the confusion - particularly since WO is doing these updates with a primary key in the where clause, and therefore, the DB should use that first, right?Unfortunately, most SQL databases are not tuned this way.  If there are many more attributes in the where clause than meet a fin

Re: Implementing an ordered tree

2006-01-23 Thread YL
validateForSave() is where i would put the logic for re-ordering. the idea: implement methods (1) checkChildrenOrder() that returns false if children array has order problem (2) resetChildrenOrder() that loop over its children array and set each one's order attribute to its index in the array. in

Re: Implementing an ordered tree

2006-01-23 Thread Arturo Perez
Karoly Szantai wrote: Hello, I have a Category entity. Each Category has zero or more subcategories, which are ordered. There is a root Category (called main category) which has no parent. There's a guy named Joe Celko who has a bunch of suggestions on how to do trees in relational databases.

problems with savings in wo 5.2

2006-01-23 Thread Morten Erlandsen
I am trying to go from webobjets 5.1 to 5.2 but i am in big trouble. Every time I try to save an object with EOEditingcontext saveChanges the program goes in to a loop. I have tried with objects that are completely free (no relations to others) but everything makes this recursive loop.

Re: Problem with form values, using WOConditional with action within it

2006-01-23 Thread Jerry W. Walker
Hi, Peter, On Jan 23, 2006, at 6:54 AM, Peteris Krisjanis wrote: I have rather interesting situation here. I have one simple form with couple of text fields, popup fields, etc. Everything was so far so good - I click submit, every value binds properly. So, nothing wrong here. Next level w

Re: Managing EOF caching

2006-01-23 Thread Michael Halliday
Hi Kieran, Yes, I am currently using the EOStateTransition stuff from Chuck's book ... i was just curious as to what the actual side affects are to updated values in validateForSave(). When I used to update values such as dateLastModified etc, in the validate method I never had any probl

Re: Common library, how to

2006-01-23 Thread Jerry W. Walker
Hi, Xavier, On Jan 23, 2006, at 6:08 AM, Dev WO wrote: Hi list, this is really a beginner question...most probably because I'm still a beginner;) I'd like to share some code between different applications, so I was thinking about creating "something" that would holds my shared code. So h

Re: Managing EOF caching

2006-01-23 Thread Kieran Kelleher
Not sure if this has been mentioned already, but instead of updating values in validateForSave, then ERXGenericRecord (in Project Wonder) subclasses can implement a willInsert, willUpdate, etc. methods which will be called automatically before validateForSave and in those ERXGenericRecord m

Problem with form values, using WOConditional with action within it

2006-01-23 Thread Peteris Krisjanis
I have rather interesting situation here. I have one simple form with couple of text fields, popup fields, etc. Everything was so far so good - I click submit, every value binds properly. So, nothing wrong here. Next level was that I create optional fields for user to fill, but first user

Implementing an ordered tree

2006-01-23 Thread Karoly Szantai
Hello, I have a Category entity. Each Category has zero or more subcategories, which are ordered. There is a root Category (called main category) which has no parent. I have created this EO model: oid oidParentCategory name ordinalNumber parentCategory (oidParentCategory --> oid) subcategori

Common library, how to

2006-01-23 Thread Dev WO
Hi list, this is really a beginner question...most probably because I'm still a beginner;) I'd like to share some code between different applications, so I was thinking about creating "something" that would holds my shared code. So here's a few question if someone can point me to the correct