Re: Maven Archetypes Problem

2013-12-20 Thread gsbrown
Hi Ron, This is wrong: wonder.core:ERExtensions:jar:wo54:6.1 I think it is caused by you having a value for wonder.classifierwo54/wonder.classifier Remove the value (edit the pom.xml) . Also, you are using an erxapplication-servlet-archetype, correct? Then you are trying to use that

Re: Maven Archetypes Problem

2013-12-18 Thread gsbrown
. Webobjects-dev mailing list (Webobjects-dev@lists.apple.com) Help/Unsubscribe/Update your Subscription: [4]https://lists.apple.com/mailman/options/webobjects-dev/gsbrown%40umi ch.edu This email sent to [5]gsbr...@umich.edu -- gsbr...@umich.edu References 1. http://maven.wocommunity.org

Re: Broken Javamonitor and wotaskd apps and builds.

2013-07-02 Thread gsbrown
HI, I went to [1]http://jenkins.wocommunity.org Look under Wonder; those work fine. Next Wonder ( 7 ) may reguire java 7, but we are not there yet. On Jul 1, 2013, at 5:25 PM, Elizabeth Lynch wrote: Hi Are you able to make your working JavaMonitor and wotaskd available? I would like

Re: Creating a WO Maven project

2013-04-09 Thread gsbrown
/Unsubscribe/Update your Subscription: https://lists.apple.com/mailman/options/webobjects-dev/gsbrown%40umich. edu This email sent to gsbr...@umich.edu Greg Brown gsbr...@umich.edu -- gsbr...@umich.edu ___ Do not post admin requests to the list

Entity Modeler, String rtrim not trimming?

2012-10-24 Thread gsbrown
HI, I have an eomodel which uses a Frontbase varchar and the string rtrim variety to put strings into the db. I thought the default rtrim would/should trim spaces at the end of a string, but I have strings with NAME , i.e. a single space after some non whitespace characters. Should the rtrim type

Re: Entity Modeler, String rtrim not trimming?

2012-10-24 Thread gsbrown
. They will be ignored. Webobjects-dev mailing list (Webobjects-dev@lists.apple.com) Help/Unsubscribe/Update your Subscription: https://lists.apple.com/mailman/options/webobjects-dev/gsbrown%40umich. edu This email sent to gsbr...@umich.edu Greg Brown gsbr...@umich.edu References 1. mailto:gsbr

Re: Wonder_5_0_0_Legacy does not build with maven: Fixed

2012-05-01 Thread gsbrown
@lists.apple.com) Help/Unsubscribe/Update your Subscription: https://lists.apple.com/mailman/options/webobjects-dev/gsbrown%40 umich.edu This email sent to gsbr...@umich.edu Greg Brown gsbr...@umich.edu -- gsbr...@umich.edu ___ Do not post

Re: JavaMonitor wotask SSD Problem.

2012-03-01 Thread gsbrown
I recall modifying the app.woa/app startup script at the end. Basically, wotaskd should start first (it will start your app), then after it is running javamonitor should start. The tail end of my wotaskd.woa/wotaskd is like: # # Launch the application. # # gsb 6/9/2010 # wait untill things boot

Re: What wonder branch is what?

2011-12-14 Thread gsbrown
Let me re-phrase my question: 1 What is the difference between master and Wonder_5_0_0_WebObjects_5_4_Branch ? 2. Wonder_5_0_0_Legacy and Wonder_5_0_0_WebObjects_5_3_Branch ? 3. Is Wonder_5_0_0_Legacy the frozen svn repository last state? A guide would be useful. Thanks, --

Re: Re: Installing the tools: The One True

2011-05-09 Thread gsbrown
I just tried golipse. I think it needs to be updated, as the wolips stuff does not come from the hudson builds, and it fails. I think it is important to have things survive in spite of all the changes that happen. The Wolips url: * WOLips plugin URL: * Eclipse 3.6 (Stable):

Re: [OT] Restoring a FrontBase DB

2010-09-28 Thread gsbrown
I think you must dump in ascii, then restore. WRITE ALL OUTPUT(DIR='$2/$1', CONTENT=TRUE); Attached are 2 scripts, which may get you close. One dumps a DB, the other will restore from the dump. -- gsbr...@umich.edu backupDBviadump.sh Description: Binary data #!/usr/bin/perl -w #!+

Re: Does the ERXStaticResourceRequestHandler work with those compressed jarred resources?

2010-07-23 Thread gsbrown
The reason we don't do it ourself is that a lot of that stuff calls into erxfileutils and that uses path names. Fixing it would be a lot of work and make code more complicated without a lot of real gain (at least from when I last looked at it). So unless any of the committers actually need to use

Re: Does the ERXStaticResourceRequestHandler work with those compressed jarred resources?

2010-07-21 Thread gsbrown
Hmmm I changed the maven properties to build webobjects.version = 5.3.3 and the wonder.classifier = wo53 in the D2W application and in the dependent frameworks as well. Maven acted friendly ;) and built 5.3.3 versions of everything. (I cut and pasted Wonder's top pom's dependency management

Re: OT: mailing list web display text wrapping

2010-06-14 Thread gsbrown
I sometimes access this mailing list via: feed://rss.lists.apple.com/webobjects-dev.rss For an example post: http://lists.apple.com/archives/webobjects-dev/2010/Jun/msg00226. html These pop up in my browser, with long lines not wrapped. Seems like the posts should wrap in a html window. On

Re: Reboot server, webapp can't launch! SOLVED!

2010-06-10 Thread gsbrown
For the record, this has been solved. How? 1. I added a -WOHost parameter to the application, even though there is only one active ip interface (if we don't include: localhost on lo0, gif0.) The below Google info, i.e. changing /System/Library/WebObjects/Adaptors/Apache/apache.conf by changing

Reboot server, webapp can't launch!

2010-06-08 Thread gsbrown
Hi, When I reboot a 10.4.11 server, wotaskd and monitor? start, but wotaskd can't start my webapp. The symptoms are it seems like it is trying to start, and womonitor shows that it is trying. The app's log file showed it loaded once, and then the log ends. Of course, it does not start, and I

Re: Best way to run period task?

2010-01-08 Thread gsbrown
Hi, What's the recommended way to run a periodic task from within a WO application? In this case its infrequently (hourly) and independent of any web requests. Thanks Mark I use a java.util.TimerTask. The task runs in a separate execution thread. It is pretty simple, and built into Java.

No WOOgnl for me : (

2009-12-29 Thread gsbrown
Hi, I have a 5.3.3 + Wonder app. ognl seems dead; I can't get it to work. I have the following properties: # OGNL ognl.active = true ognl.helperFunctions=true ognl.inlineBindings=true But still no ognl. Component bindings like wo:str value=$lrlabel /wo:str render as nothing. It is more

Re: No WOOgnl for me : (

2009-12-29 Thread gsbrown
Doh! Yes, linking to the WOOgnl framework helps a lot ! Thanks, On Tue, 29 Dec 2009 10:10 -0500, Mike Schrag msch...@mdimension.com wrote: are you actually linking to the WOOgnl framework? and btw, you can save some typing and just do wo:str value=$lrlable/ ms On Dec 29, 2009, at 10:07

Re: D2W: Does it work with one sided relationships ?

2009-11-25 Thread gsbrown
Wow, fast response! Before I make it to work, you guys have the answer! Thanks. I had some old Wonder mixed with new wonder; I guess that was the problem. I cleared out the old, cleaned everything, and presto...it works! So D2W does work with one sided relationships. I thought it was something

Where to put D2W Rules FAQ ?

2009-09-11 Thread gsbrown
Hi, Would a D2W rules FAQ/Reference page be a good idea for the wiki? With content like: 1, How to turn on editing. 2. How to edit relationships. 3. How to change what attributes get displayed. 4. How to change what entities get displayed. etc. If so, where to put it? How about off of:

Re: ERXEC and locking

2009-08-19 Thread gsbrown
I am making a Wonder app, and I Wonder: I still should maybe lock the ec before using it? You still have to lock the EC before using it. ERXEC just prevents leaving locked EC afters the RR loop. However, you can also set the autoLock stuff to on

Re: WebObjects apps in war; maven; where is ERXServletAdaptor; etc.

2009-07-23 Thread gsbrown
Hi, Avoiding the erxservletadaptor and wonder initialization, I just made a project with the 2.0.17 archetype, for wo 5.3.3, no wonder, true war support. wolips 3.4.5747 . It seems some parameters are not defined. If I mvn clean jetty:run-war I get : 2009-07-23 08:48:45.981::INFO: No