Get keyPath of a WO Object

2009-03-12 Thread Rukmal Dias

hi, how to get a keyPath of wo object ?

Thx

 ___
Do not post admin requests to the list. They will be ignored.
Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com)
Help/Unsubscribe/Update your Subscription:
http://lists.apple.com/mailman/options/webobjects-dev/archive%40mail-archive.com

This email sent to arch...@mail-archive.com

Getting a page content

2009-03-12 Thread Atli Páll Hafsteinsson
Hi

Is there a way to get the current page content in a component beiing
rendered within that page?

Calling context().page().context().response().contentString(); or
context().response().contentString(); only gives me the content from the top
of the page down to the current component, which kinda makes sense. Is there
any way to get the rest of the content even though it is below the current
component?

Atli
a...@us.is



Fyrirvari á tölvupósti / e-mail disclaimer
http://us.is/Apps/WebObjects/US.woa/wa/dp?id=3776

 ___
Do not post admin requests to the list. They will be ignored.
Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com)
Help/Unsubscribe/Update your Subscription:
http://lists.apple.com/mailman/options/webobjects-dev/archive%40mail-archive.com

This email sent to arch...@mail-archive.com

Re: Get keyPath of a WO Object

2009-03-12 Thread Andrew Lindesay

Hello Rukmal;

Can you elaborate on what you are wanting to achieve?

Regards;


hi, how to get a keyPath of wo object ?


___
Andrew Lindesay
www.lindesay.co.nz

___
Do not post admin requests to the list. They will be ignored.
Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com)
Help/Unsubscribe/Update your Subscription:
http://lists.apple.com/mailman/options/webobjects-dev/archive%40mail-archive.com

This email sent to arch...@mail-archive.com


Re: Getting a page content

2009-03-12 Thread Andrew Lindesay

Hello Atli;

I don't think that makes sense because if you are in the  
appendToResponse phase then the rest of the page still has to be  
drawn.


From memory (Mike to correct me) PW does two appendToResponse phases  
for its AJAX system.  So maybe you could do something like this and  
write the second time into a dummy response or something?  I'm not too  
sure if this would work for what you want.


Maybe elaborate on what you are trying to achieve?

cheers.


Is there a way to get the current page content in a component beiing
rendered within that page?

Calling context().page().context().response().contentString(); or
context().response().contentString(); only gives me the content from  
the top
of the page down to the current component, which kinda makes sense.  
Is there
any way to get the rest of the content even though it is below the  
current

component?


___
Andrew Lindesay
www.lindesay.co.nz

___
Do not post admin requests to the list. They will be ignored.
Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com)
Help/Unsubscribe/Update your Subscription:
http://lists.apple.com/mailman/options/webobjects-dev/archive%40mail-archive.com

This email sent to arch...@mail-archive.com


Re: Jad?

2009-03-12 Thread Hugi Thordarson
No. No WO. No coding. One who attempts to run a compiler will be  
kicked off the island.



Gotcha. Interpreted languages only.

- hugi
___
Do not post admin requests to the list. They will be ignored.
Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com)
Help/Unsubscribe/Update your Subscription:
http://lists.apple.com/mailman/options/webobjects-dev/archive%40mail-archive.com

This email sent to arch...@mail-archive.com


Re: EOFetchSpecification prefetching and Multiple EOModels

2009-03-12 Thread David Avendasora

Hi Travis,

On Mar 11, 2009, at 2:43 PM, Travis Britt wrote:



On Mar 11, 2009, at 1:37 PM, David Avendasora wrote:

Am I the first to ever prefetch a cross-model relationship?


Nope! I also confirmed this behavior about a year ago between two  
Oracle databases. If you don't prefetch on those keypaths the EOs do  
get faulted in properly, albeit one at a time. I was able to work  
around it at the time by doing a 2nd explicit fetch for the  
relationship.


Yep. My experience, exactly.

I got as far as hooking up a EODatabaseContext subclass so I could  
monitor what happens in EODatabaseContext.batchFetchRelationship(),  
but  by the time that is called it appeared that EOF believes the  
fault had already been fired and is empty.


Did you happen to file a bug with Apple? I'd like to add it to mine so  
that it might have a better chance of getting fixed.


Dave


___
Do not post admin requests to the list. They will be ignored.
Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com)
Help/Unsubscribe/Update your Subscription:
http://lists.apple.com/mailman/options/webobjects-dev/archive%40mail-archive.com

This email sent to arch...@mail-archive.com


Re: Getting a page content

2009-03-12 Thread Mike Schrag
From memory (Mike to correct me) PW does two appendToResponse phases  
for its AJAX system.  So maybe you could do something like this and  
write the second time into a dummy response or something?  I'm not  
too sure if this would work for what you want.
actually, two invokeActions, one appendToResponse, but your point is  
still valid .. .you'd have to do something kind of funky with setting  
a flag to prevent an infinite loop ... I'm not sure what it means to  
have a component in the middle of the page that itself returns the  
entire page.  I would give that request a hearty what are you  
actually trying to do, because it sounds wrong :)


ms

___
Do not post admin requests to the list. They will be ignored.
Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com)
Help/Unsubscribe/Update your Subscription:
http://lists.apple.com/mailman/options/webobjects-dev/archive%40mail-archive.com

This email sent to arch...@mail-archive.com


Re: Getting a page content

2009-03-12 Thread Atli Páll Hafsteinsson
Hi guys

I decided on a different aproach since this all sounds funky :)

Using ajax instead.

But thanx for the response.

Atli


On 3/12/09 12:12 PM, Mike Schrag msch...@mdimension.com wrote:

 From memory (Mike to correct me) PW does two appendToResponse phases
 for its AJAX system.  So maybe you could do something like this and
 write the second time into a dummy response or something?  I'm not
 too sure if this would work for what you want.
 actually, two invokeActions, one appendToResponse, but your point is
 still valid .. .you'd have to do something kind of funky with setting
 a flag to prevent an infinite loop ... I'm not sure what it means to
 have a component in the middle of the page that itself returns the
 entire page.  I would give that request a hearty what are you
 actually trying to do, because it sounds wrong :)
 
 ms
 


Fyrirvari á tölvupósti / e-mail disclaimer
http://us.is/Apps/WebObjects/US.woa/wa/dp?id=3776

 ___
Do not post admin requests to the list. They will be ignored.
Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com)
Help/Unsubscribe/Update your Subscription:
http://lists.apple.com/mailman/options/webobjects-dev/archive%40mail-archive.com

This email sent to arch...@mail-archive.com

Re: Delay when posting a notification to NSNotificationCentre

2009-03-12 Thread Simon McLean
Thanks for the tips chaps. I've popped everything into an executor
pool now and the notifications now behave how as i want them to. But
now i've run back into an issue (bug?) with
ERXFetchSpecificationBatchIterator which throws a wobbly when running
in a thread :-(

http://lists.apple.com/archives/webobjects-dev/2009/Mar/msg00029.html

Simon


2009/3/10 Mike Schrag msch...@mdimension.com

 Is that normal behavior ? The java docs don't talk about the sequence of 
 events, but I presumed that the notifier would just makes it's notification 
 then get on with whatever it has to do next and not care about what the 
 listeners are doing, or how long it takes them to do it.

 this is normal ... receipt of notifications happens in-thread with the event 
 dispatch, which is actually required in some cases, since WO/EOF use 
 notifications in several cases for synchronous events (when a new eoadaptor 
 channel is needed, for instance).

 Do i just need to stick the listeners job into a thread to get it to run in 
 the background ?

 I would personally recommend using a Java 1.5 ExecutorPool rather than doing 
 anything with your own threads (you don't want to kill your app because 
 you're spawning tons of threads by accident).

 ms

 ___
 Do not post admin requests to the list. They will be ignored.
 Webobjects-dev mailing list      (Webobjects-dev@lists.apple.com)
 Help/Unsubscribe/Update your Subscription:
 http://lists.apple.com/mailman/options/webobjects-dev/simon%40potwells.co.uk

 This email sent to si...@potwells.co.uk
 ___
Do not post admin requests to the list. They will be ignored.
Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com)
Help/Unsubscribe/Update your Subscription:
http://lists.apple.com/mailman/options/webobjects-dev/archive%40mail-archive.com

This email sent to arch...@mail-archive.com


Re: EOFetchSpecification prefetching and Multiple EOModels

2009-03-12 Thread Travis Britt


On Mar 12, 2009, at 6:39 AM, David Avendasora wrote:
I got as far as hooking up a EODatabaseContext subclass so I could  
monitor what happens in EODatabaseContext.batchFetchRelationship(),  
but  by the time that is called it appeared that EOF believes the  
fault had already been fired and is empty.


Did you happen to file a bug with Apple? I'd like to add it to mine  
so that it might have a better chance of getting fixed.


I can't remember, it does not appear that I did so I just opened  
another one: 6674703.


tb
___
Do not post admin requests to the list. They will be ignored.
Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com)
Help/Unsubscribe/Update your Subscription:
http://lists.apple.com/mailman/options/webobjects-dev/archive%40mail-archive.com

This email sent to arch...@mail-archive.com


Eclipse Crashes but WOApp Keeps Running

2009-03-12 Thread David Avendasora

Hey all,

I have just discovered something that I didn't realize before. If you  
have you have a WO app running inside of Eclipse and Eclipse crashes  
the WO app keeps running.


This can cause all sorts of problems. I ended up with three separate  
apps running (Eclipse crashed twice) and they were all running the  
same scheduled task (via Quartz) so not only was it s...l...o...w   
with lots of unexplained DB activity, I was also getting DB errors on  
unique-constraints because all three had their own cache of objects  
and were each creating the same object.


I had to manually go in and quit the Java process in Activity Monitor.

Talk about spending way too much time looking in my code for a bug. I  
did, however, end up making my app much more resilient to unexpected  
DB changes.


Dave
___
Do not post admin requests to the list. They will be ignored.
Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com)
Help/Unsubscribe/Update your Subscription:
http://lists.apple.com/mailman/options/webobjects-dev/archive%40mail-archive.com

This email sent to arch...@mail-archive.com


Re: Eclipse Crashes but WOApp Keeps Running

2009-03-12 Thread Atli Páll Hafsteinsson
If you set wolips to always run you app on the same port then you will
notice this right away since the app will refuse to run because another app
is bound to the port.

:)

Atli


On 3/12/09 3:45 PM, David Avendasora webobje...@avendasora.com wrote:

 Hey all,
 
 I have just discovered something that I didn't realize before. If you
 have you have a WO app running inside of Eclipse and Eclipse crashes
 the WO app keeps running.
 
 This can cause all sorts of problems. I ended up with three separate
 apps running (Eclipse crashed twice) and they were all running the
 same scheduled task (via Quartz) so not only was it s...l...o...w
 with lots of unexplained DB activity, I was also getting DB errors on
 unique-constraints because all three had their own cache of objects
 and were each creating the same object.
 
 I had to manually go in and quit the Java process in Activity Monitor.
 
 Talk about spending way too much time looking in my code for a bug. I
 did, however, end up making my app much more resilient to unexpected
 DB changes.
 
 Dave
  ___
 Do not post admin requests to the list. They will be ignored.
 Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com)
 Help/Unsubscribe/Update your Subscription:
 http://lists.apple.com/mailman/options/webobjects-dev/atlip%40us.is
 
 This email sent to at...@us.is


Fyrirvari á tölvupósti / e-mail disclaimer
http://us.is/Apps/WebObjects/US.woa/wa/dp?id=3776

 ___
Do not post admin requests to the list. They will be ignored.
Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com)
Help/Unsubscribe/Update your Subscription:
http://lists.apple.com/mailman/options/webobjects-dev/archive%40mail-archive.com

This email sent to arch...@mail-archive.com

Re: Eclipse Crashes but WOApp Keeps Running

2009-03-12 Thread Stamenkovic Florijan


On Mar 12, 2009, at 11:45, David Avendasora wrote:

I have just discovered something that I didn't realize before. If  
you have you have a WO app running inside of Eclipse and Eclipse  
crashes the WO app keeps running.


Huh, that's good to know. Thinking about it, this could be both a bug  
and a feature, from Eclipse's point of view...


This can cause all sorts of problems. I ended up with three separate  
apps running (Eclipse crashed twice) and they were all running the  
same scheduled task (via Quartz) so not only was it s...l...o...w   
with lots of unexplained DB activity, I was also getting DB errors  
on unique-constraints because all three had their own cache of  
objects and were each creating the same object.


I had to manually go in and quit the Java process in Activity  
Monitor.


However, if you define the port on which the app runs, you can only  
have one instance running. Other instances can't start up as the port  
is taken. This is useful also in other situations. For example, I  
normally run my builds from the cmd line before deploying, because an  
app can behave differently if you run it from Eclipse (which I do  
during dev). So, if one version is already running, the other will  
crash on startup. Thereby, I am 100% sure which app I am connecting to.


Talk about spending way too much time looking in my code for a bug.  
I did, however, end up making my app much more resilient to  
unexpected DB changes.


:D

F
___
Do not post admin requests to the list. They will be ignored.
Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com)
Help/Unsubscribe/Update your Subscription:
http://lists.apple.com/mailman/options/webobjects-dev/archive%40mail-archive.com

This email sent to arch...@mail-archive.com


Re: Eclipse Crashes but WOApp Keeps Running

2009-03-12 Thread Kieran Kelleher

Hi David,

Use a fixed WOPort in your run/debug configuration to avoid this   
and you get bookmarkable URLs as a bonus too ;-)


Kieran

On Mar 12, 2009, at 11:45 AM, David Avendasora wrote:


Hey all,

I have just discovered something that I didn't realize before. If  
you have you have a WO app running inside of Eclipse and Eclipse  
crashes the WO app keeps running.


This can cause all sorts of problems. I ended up with three separate  
apps running (Eclipse crashed twice) and they were all running the  
same scheduled task (via Quartz) so not only was it s...l...o...w   
with lots of unexplained DB activity, I was also getting DB errors  
on unique-constraints because all three had their own cache of  
objects and were each creating the same object.


I had to manually go in and quit the Java process in Activity  
Monitor.


Talk about spending way too much time looking in my code for a bug.  
I did, however, end up making my app much more resilient to  
unexpected DB changes.


Dave
___
Do not post admin requests to the list. They will be ignored.
Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com)
Help/Unsubscribe/Update your Subscription:
http://lists.apple.com/mailman/options/webobjects-dev/kieran_lists%40mac.com

This email sent to kieran_li...@mac.com


___
Do not post admin requests to the list. They will be ignored.
Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com)
Help/Unsubscribe/Update your Subscription:
http://lists.apple.com/mailman/options/webobjects-dev/archive%40mail-archive.com

This email sent to arch...@mail-archive.com


Re: AJAX without Wonder?

2009-03-12 Thread Gennady Kushnir
Thanks everybody for replies. I shall think it over.
I believe that sometimes it may be better to reinvent some little
wheel that would fit perfectly my specific road instead of adopting
some ultimate wheel that can drive any unnecessary road.
And it is uncertain what would take more time.
 ___
Do not post admin requests to the list. They will be ignored.
Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com)
Help/Unsubscribe/Update your Subscription:
http://lists.apple.com/mailman/options/webobjects-dev/archive%40mail-archive.com

This email sent to arch...@mail-archive.com


Re: Jad?

2009-03-12 Thread Chuck Hill


On Mar 12, 2009, at 2:58 AM, Hugi Thordarson wrote:

No. No WO. No coding. One who attempts to run a compiler will be  
kicked off the island.



Gotcha. Interpreted languages only.



No!  No loop holes either!  Codez bad, goatez good.  Sheep too if they  
can stand the heat.



Chuck

--
Chuck Hill Senior Consultant / VP Development

Practical WebObjects - for developers who want to increase their  
overall knowledge of WebObjects or who are trying to solve specific  
problems.

http://www.global-village.net/products/practical_webobjects






___
Do not post admin requests to the list. They will be ignored.
Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com)
Help/Unsubscribe/Update your Subscription:
http://lists.apple.com/mailman/options/webobjects-dev/archive%40mail-archive.com

This email sent to arch...@mail-archive.com


Re: Jad?

2009-03-12 Thread Stamenkovic Florijan

On Mar 12, 2009, at 14:03, Chuck Hill wrote:

No!  No loop holes either!  Codez bad, goatez good.  Sheep too if  
they can stand the heat.


Can we at least do manual quicksorting? Y'know, to keep the animals in  
order... Hey, we could have the annual sheep-sorting competition! And  
sheep-puzzlers... God, to imagine all the things deprived programmers  
could think of, I am not so sure anymore that this would be a pleasant  
place to live in.


:D

F
___
Do not post admin requests to the list. They will be ignored.
Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com)
Help/Unsubscribe/Update your Subscription:
http://lists.apple.com/mailman/options/webobjects-dev/archive%40mail-archive.com

This email sent to arch...@mail-archive.com


storing arrays in Database

2009-03-12 Thread Amedeo Mantica

Hello,

I have seen that there is the prototype mutableArray in the EOModeler


I'm using FrontBase, this prototype by default set external type BLOB  
and use methods fromBlob e toBlob


My entity is called CFNewsLetter, here the piece on _CFNewsLetter

  public ERXMutableArray staticArticles() {
return (ERXMutableArray) storedValueForKey(staticArticles);
  }

  public void setStaticArticles(ERXMutableArray value) {
if (_CFNewsLetter.LOG.isDebugEnabled()) {
	_CFNewsLetter.LOG.debug( updating staticArticles from  +  
staticArticles() +  to  + value);

}
takeStoredValueForKey(value, staticArticles);
  }

now, static aticle is an object that have whit his serializable  
methods, the class is called CFNewsLetterItem, here the relevant piece  
of code:



public class CFNewsLetterItem implements Serializable {

/**
 *
 */
private static final long serialVersionUID = 782612934512287294L;
protected String title;
protected String link;
protected String area;
protected String categoria;

	private void writeObject(java.io.ObjectOutputStream stream) throws  
java.io.IOException {

stream.writeObject(title);
stream.writeObject(link);
stream.writeObject(area);
stream.writeObject(categoria);
}

private void readObject(java.io.ObjectInputStream in) throws  
java.io.IOException, java.lang.ClassNotFoundException {

title = (String) in.readObject();
link = (String) in.readObject();
area = (String) in.readObject();
categoria = (String) in.readObject();
}




Now, storing is working fine, but when I try to read object I have  
this cast error


Sure I'm missing something, but I don't know where, this is the rist  
time I store array is database.


Can you help me?
Regards
Amedeo



Mar 12 18:16:56 ConfindustriaNet[22500] INFO   
er.transaction.adaptor.Exceptions  - Database Exception occured:  
java.lang.ClassCastException: er.extensions.foundation.ERXMutableArray
Mar 12 18:16:56 ConfindustriaNet[22500] WARN  NSLog  -  
com.webobjects.appserver._private.WOComponentRequestHandler:  
Exception occurred while handling request:

java.lang.ClassCastException: er.extensions.foundation.ERXMutableArray
[2009-3-12 18:16:56 CET] WorkerThread0 java.lang.ClassCastException:  
er.extensions.foundation.ERXMutableArray
	at  
com 
.webobjects.jdbcadaptor.JDBCColumn._fetchCorrectObject(JDBCColumn.java: 
273)
	at com.webobjects.jdbcadaptor.JDBCColumn._fetchValue(JDBCColumn.java: 
384)
	at com.webobjects.jdbcadaptor.JDBCColumn.fetchValue(JDBCColumn.java: 
372)
	at com.webobjects.jdbcadaptor.JDBCChannel.fetchRow(JDBCChannel.java: 
1462)
	at  
com 
.webobjects 
.eoaccess.EODatabaseChannel._fetchObject(EODatabaseChannel.java:321)
	at  
com 
.webobjects 
.eoaccess 
.EODatabaseContext 
._objectsWithFetchSpecificationEditingContext(EODatabaseContext.java: 
3071)
	at  
com 
.webobjects 
.eoaccess 
.EODatabaseContext 
.objectsWithFetchSpecification(EODatabaseContext.java:3195)
	at  
com 
.webobjects 
.eocontrol 
.EOObjectStoreCoordinator 
.objectsWithFetchSpecification(EOObjectStoreCoordinator.java:488)
	at  
com 
.webobjects 
.eocontrol 
.EOEditingContext.objectsWithFetchSpecification(EOEditingContext.java: 
4069)
	at er.extensions.eof.ERXEC.objectsWithFetchSpecification(ERXEC.java: 
1114)
	at  
com 
.webobjects 
.eocontrol 
.EOEditingContext.objectsWithFetchSpecification(EOEditingContext.java: 
)
	at  
it 
.chieti 
.confindustria 
.components 
.CFPGNewsLetterList.appendToResponse(CFPGNewsLetterList.java:29)
	at com.webobjects.appserver.WOSession.appendToResponse(WOSession.java: 
1385)
	at  
er.extensions.appserver.ERXSession.appendToResponse(ERXSession.java:540)
	at  
com 
.webobjects 
.appserver.WOApplication.appendToResponse(WOApplication.java:1794)
	at  
er 
.extensions 
.appserver.ERXApplication.appendToResponse(ERXApplication.java:1639)
	at  
com 
.webobjects 
.appserver 
._private 
.WOComponentRequestHandler 
._dispatchWithPreparedPage(WOComponentRequestHandler.java:242)
	at  
com 
.webobjects 
.appserver 
._private 
.WOComponentRequestHandler 
._dispatchWithPreparedSession(WOComponentRequestHandler.java:298)
	at  
com 
.webobjects 
.appserver 
._private 
.WOComponentRequestHandler 
._dispatchWithPreparedApplication(WOComponentRequestHandler.java:332)
	at  
com 
.webobjects 
.appserver 
._private 
.WOComponentRequestHandler 
._handleRequest(WOComponentRequestHandler.java:369)
	at  
com 
.webobjects 
.appserver 
._private 
.WOComponentRequestHandler 
.handleRequest(WOComponentRequestHandler.java:442)
	at  
com 
.webobjects.appserver.WOApplication.dispatchRequest(WOApplication.java: 
1687)
	at  
er 
.extensions 
.appserver 
.ERXApplication.dispatchRequestImmediately(ERXApplication.java:1737)
	at  
er 
.extensions 
.appserver.ERXApplication.dispatchRequest(ERXApplication.java:1702)
	at  
com 
.webobjects 

Re: Delay when posting a notification to NSNotificationCentre

2009-03-12 Thread Chuck Hill


On Mar 12, 2009, at 5:43 AM, Simon McLean wrote:


Thanks for the tips chaps. I've popped everything into an executor
pool now and the notifications now behave how as i want them to. But
now i've run back into an issue (bug?) with
ERXFetchSpecificationBatchIterator which throws a wobbly when running
in a thread :-(

http://lists.apple.com/archives/webobjects-dev/2009/Mar/msg00029.html


Can you build Wonder?  Try changing the constructor from

if (qualifier != null) {
 
this 
.fetchSpecification 
.setQualifier(entity.schemaBasedQualifier(qualifier));

}

to

ec.rootObjectStore().lock();
try {
if (qualifier != null) {
 
this 
.fetchSpecification 
.setQualifier(entity.schemaBasedQualifier(qualifier));

}
} finally {
ec.rootObjectStore().unlock();
}


Chuck



2009/3/10 Mike Schrag msch...@mdimension.com


Is that normal behavior ? The java docs don't talk about the  
sequence of events, but I presumed that the notifier would just  
makes it's notification then get on with whatever it has to do  
next and not care about what the listeners are doing, or how long  
it takes them to do it.


this is normal ... receipt of notifications happens in-thread with  
the event dispatch, which is actually required in some cases, since  
WO/EOF use notifications in several cases for synchronous events  
(when a new eoadaptor channel is needed, for instance).


Do i just need to stick the listeners job into a thread to get it  
to run in the background ?


I would personally recommend using a Java 1.5 ExecutorPool rather  
than doing anything with your own threads (you don't want to kill  
your app because you're spawning tons of threads by accident).


ms

___
Do not post admin requests to the list. They will be ignored.
Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com)
Help/Unsubscribe/Update your Subscription:
http://lists.apple.com/mailman/options/webobjects-dev/simon%40potwells.co.uk

This email sent to si...@potwells.co.uk




--
Chuck Hill Senior Consultant / VP Development

Practical WebObjects - for developers who want to increase their  
overall knowledge of WebObjects or who are trying to solve specific  
problems.

http://www.global-village.net/products/practical_webobjects






___
Do not post admin requests to the list. They will be ignored.
Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com)
Help/Unsubscribe/Update your Subscription:
http://lists.apple.com/mailman/options/webobjects-dev/archive%40mail-archive.com

This email sent to arch...@mail-archive.com


Re: Jad?

2009-03-12 Thread Chuck Hill


On Mar 12, 2009, at 11:26 AM, Stamenkovic Florijan wrote:


On Mar 12, 2009, at 14:03, Chuck Hill wrote:

No!  No loop holes either!  Codez bad, goatez good.  Sheep too if  
they can stand the heat.


Can we at least do manual quicksorting? Y'know, to keep the animals  
in order... Hey, we could have the annual sheep-sorting competition!  
And sheep-puzzlers... God, to imagine all the things deprived  
programmers could think of, I am not so sure anymore that this would  
be a pleasant place to live in.



Try that and there will be no beer ration for you!


--
Chuck Hill Senior Consultant / VP Development

Practical WebObjects - for developers who want to increase their  
overall knowledge of WebObjects or who are trying to solve specific  
problems.

http://www.global-village.net/products/practical_webobjects






___
Do not post admin requests to the list. They will be ignored.
Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com)
Help/Unsubscribe/Update your Subscription:
http://lists.apple.com/mailman/options/webobjects-dev/archive%40mail-archive.com

This email sent to arch...@mail-archive.com


Re: Jad?

2009-03-12 Thread David Avendasora


On Mar 12, 2009, at 2:45 PM, Chuck Hill wrote:


beer ration


Wait a minute here Chuck.  Those are two words that should **never**  
be used together. What kind of utopia are we talking about if beer  
must be rationed.


You know, Goat Best Practices does sound like an interesting session  
though...


Dave
___
Do not post admin requests to the list. They will be ignored.
Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com)
Help/Unsubscribe/Update your Subscription:
http://lists.apple.com/mailman/options/webobjects-dev/archive%40mail-archive.com

This email sent to arch...@mail-archive.com


Re: Jad?

2009-03-12 Thread Don Lindsay

Boolean sort.

Don

On Mar 12, 2009, at 2:26 PM, Stamenkovic Florijan wrote:


On Mar 12, 2009, at 14:03, Chuck Hill wrote:

No!  No loop holes either!  Codez bad, goatez good.  Sheep too if  
they can stand the heat.


Can we at least do manual quicksorting? Y'know, to keep the animals  
in order... Hey, we could have the annual sheep-sorting competition!  
And sheep-puzzlers... God, to imagine all the things deprived  
programmers could think of, I am not so sure anymore that this would  
be a pleasant place to live in.


:D

F
___
Do not post admin requests to the list. They will be ignored.
Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com)
Help/Unsubscribe/Update your Subscription:
http://lists.apple.com/mailman/options/webobjects-dev/pccdonl 
%40mac.com


This email sent to pccd...@mac.com


___
Do not post admin requests to the list. They will be ignored.
Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com)
Help/Unsubscribe/Update your Subscription:
http://lists.apple.com/mailman/options/webobjects-dev/archive%40mail-archive.com

This email sent to arch...@mail-archive.com


Re: Jad?

2009-03-12 Thread Chuck Hill


On Mar 12, 2009, at 12:05 PM, David Avendasora wrote:



On Mar 12, 2009, at 2:45 PM, Chuck Hill wrote:


beer ration


Wait a minute here Chuck.  Those are two words that should **never**  
be used together. What kind of utopia are we talking about if beer  
must be rationed.


Mine.  :-P  The plan is that I control the beer supply and ration it  
out.  Anything left at the end is mine, mine, all mine!  And you just  
lost a years ration for questioning me!  Next!



You know, Goat Best Practices does sound like an interesting session  
though...



1. Don't stand in front
2. Don't stand too close behind
3. Don't swallow


Chuck

--
Chuck Hill Senior Consultant / VP Development

Practical WebObjects - for developers who want to increase their  
overall knowledge of WebObjects or who are trying to solve specific  
problems.

http://www.global-village.net/products/practical_webobjects






___
Do not post admin requests to the list. They will be ignored.
Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com)
Help/Unsubscribe/Update your Subscription:
http://lists.apple.com/mailman/options/webobjects-dev/archive%40mail-archive.com

This email sent to arch...@mail-archive.com


Re: Jad?

2009-03-12 Thread Stamenkovic Florijan


On Mar 12, 2009, at 15:14, Chuck Hill wrote:

Mine.  :-P  The plan is that I control the beer supply and ration it  
out.  Anything left at the end is mine, mine, all mine!  And you  
just lost a years ration for questioning me!  Next!


I think I see a revolution on the horizon...

F
___
Do not post admin requests to the list. They will be ignored.
Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com)
Help/Unsubscribe/Update your Subscription:
http://lists.apple.com/mailman/options/webobjects-dev/archive%40mail-archive.com

This email sent to arch...@mail-archive.com


Re: Delay when posting a notification to NSNotificationCentre

2009-03-12 Thread Chuck Hill


On Mar 12, 2009, at 1:09 PM, Simon McLean wrote:


Hi Chuck -

I'm going to have to get you a cape with the words Wonder Chuck on
the back :-)


:-P



That's fixed it! I still don't see why though ?


The entity.schemaBasedQualifier is inside of EOAccess and touches  
things in EOF that should only be touched when the OSC is locked.   
Normally this method is only called after the OSC has been locked.  By  
not locking it, two threads were messing  about inside of EOF at the  
same time.




I've stuck a bug report  patch on jira too:

http://issues.objectstyle.org/jira/browse/WONDER-245


Patched, committed, and closed.

Chuck



2009/3/12 Chuck Hill ch...@global-village.net:


On Mar 12, 2009, at 5:43 AM, Simon McLean wrote:


Thanks for the tips chaps. I've popped everything into an executor
pool now and the notifications now behave how as i want them to. But
now i've run back into an issue (bug?) with
ERXFetchSpecificationBatchIterator which throws a wobbly when  
running

in a thread :-(

http://lists.apple.com/archives/webobjects-dev/2009/Mar/ 
msg00029.html


Can you build Wonder?  Try changing the constructor from

   if (qualifier != null) {

  
this 
.fetchSpecification 
.setQualifier(entity.schemaBasedQualifier(qualifier));

   }

to

ec.rootObjectStore().lock();
try {
   if (qualifier != null) {

  
this 
.fetchSpecification 
.setQualifier(entity.schemaBasedQualifier(qualifier));

   }
} finally {
   ec.rootObjectStore().unlock();
}


Chuck



2009/3/10 Mike Schrag msch...@mdimension.com


Is that normal behavior ? The java docs don't talk about the  
sequence of
events, but I presumed that the notifier would just makes it's  
notification
then get on with whatever it has to do next and not care about  
what the

listeners are doing, or how long it takes them to do it.


this is normal ... receipt of notifications happens in-thread  
with the
event dispatch, which is actually required in some cases, since  
WO/EOF use
notifications in several cases for synchronous events (when a new  
eoadaptor

channel is needed, for instance).

Do i just need to stick the listeners job into a thread to get  
it to run

in the background ?


I would personally recommend using a Java 1.5 ExecutorPool rather  
than
doing anything with your own threads (you don't want to kill your  
app

because you're spawning tons of threads by accident).

ms

___
Do not post admin requests to the list. They will be ignored.
Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com)
Help/Unsubscribe/Update your Subscription:

http://lists.apple.com/mailman/options/webobjects-dev/simon%40potwells.co.uk

This email sent to si...@potwells.co.uk




--
Chuck Hill Senior Consultant / VP Development

Practical WebObjects - for developers who want to increase their  
overall

knowledge of WebObjects or who are trying to solve specific problems.
http://www.global-village.net/products/practical_webobjects











--
Chuck Hill Senior Consultant / VP Development

Practical WebObjects - for developers who want to increase their  
overall knowledge of WebObjects or who are trying to solve specific  
problems.

http://www.global-village.net/products/practical_webobjects






___
Do not post admin requests to the list. They will be ignored.
Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com)
Help/Unsubscribe/Update your Subscription:
http://lists.apple.com/mailman/options/webobjects-dev/archive%40mail-archive.com

This email sent to arch...@mail-archive.com


Re: Delay when posting a notification to NSNotificationCentre

2009-03-12 Thread Simon McLean
Hi Chuck -

I'm going to have to get you a cape with the words Wonder Chuck on
the back :-)

That's fixed it! I still don't see why though ?

I've stuck a bug report  patch on jira too:

http://issues.objectstyle.org/jira/browse/WONDER-245

Many thanks! Simon


2009/3/12 Chuck Hill ch...@global-village.net:

 On Mar 12, 2009, at 5:43 AM, Simon McLean wrote:

 Thanks for the tips chaps. I've popped everything into an executor
 pool now and the notifications now behave how as i want them to. But
 now i've run back into an issue (bug?) with
 ERXFetchSpecificationBatchIterator which throws a wobbly when running
 in a thread :-(

 http://lists.apple.com/archives/webobjects-dev/2009/Mar/msg00029.html

 Can you build Wonder?  Try changing the constructor from

        if (qualifier != null) {

  this.fetchSpecification.setQualifier(entity.schemaBasedQualifier(qualifier));
        }

 to

 ec.rootObjectStore().lock();
 try {
        if (qualifier != null) {

  this.fetchSpecification.setQualifier(entity.schemaBasedQualifier(qualifier));
        }
 } finally {
        ec.rootObjectStore().unlock();
 }


 Chuck


 2009/3/10 Mike Schrag msch...@mdimension.com

 Is that normal behavior ? The java docs don't talk about the sequence of
 events, but I presumed that the notifier would just makes it's notification
 then get on with whatever it has to do next and not care about what the
 listeners are doing, or how long it takes them to do it.

 this is normal ... receipt of notifications happens in-thread with the
 event dispatch, which is actually required in some cases, since WO/EOF use
 notifications in several cases for synchronous events (when a new eoadaptor
 channel is needed, for instance).

 Do i just need to stick the listeners job into a thread to get it to run
 in the background ?

 I would personally recommend using a Java 1.5 ExecutorPool rather than
 doing anything with your own threads (you don't want to kill your app
 because you're spawning tons of threads by accident).

 ms

 ___
 Do not post admin requests to the list. They will be ignored.
 Webobjects-dev mailing list      (Webobjects-dev@lists.apple.com)
 Help/Unsubscribe/Update your Subscription:

 http://lists.apple.com/mailman/options/webobjects-dev/simon%40potwells.co.uk

 This email sent to si...@potwells.co.uk


 --
 Chuck Hill             Senior Consultant / VP Development

 Practical WebObjects - for developers who want to increase their overall
 knowledge of WebObjects or who are trying to solve specific problems.
 http://www.global-village.net/products/practical_webobjects







 ___
Do not post admin requests to the list. They will be ignored.
Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com)
Help/Unsubscribe/Update your Subscription:
http://lists.apple.com/mailman/options/webobjects-dev/archive%40mail-archive.com

This email sent to arch...@mail-archive.com


Re: Get keyPath of a WO Object

2009-03-12 Thread Joe Moreno

Rukmal,

Have you tried this?
http://developer.apple.com/documentation/InternetWeb/Reference/WO542Reference/com/webobjects/directtoweb/Assignment.html#keyPath()

- Joe



On Mar 12, 2009, at 01:00:14, Rukmal Dias wrote:


hi, how to get a keyPath of wo object ?

Thx

___
Do not post admin requests to the list. They will be ignored.
Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com)
Help/Unsubscribe/Update your Subscription:
http://lists.apple.com/mailman/options/webobjects-dev/joemoreno%40mac.com

This email sent to joemor...@mac.com


 ___
Do not post admin requests to the list. They will be ignored.
Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com)
Help/Unsubscribe/Update your Subscription:
http://lists.apple.com/mailman/options/webobjects-dev/archive%40mail-archive.com

This email sent to arch...@mail-archive.com

Re: Jad?

2009-03-12 Thread Don Lindsay

I take it no boolean searches for goatz?
On Mar 12, 2009, at 2:45 PM, Chuck Hill wrote:



On Mar 12, 2009, at 11:26 AM, Stamenkovic Florijan wrote:


On Mar 12, 2009, at 14:03, Chuck Hill wrote:

No!  No loop holes either!  Codez bad, goatez good.  Sheep too if  
they can stand the heat.


Can we at least do manual quicksorting? Y'know, to keep the animals  
in order... Hey, we could have the annual sheep-sorting  
competition! And sheep-puzzlers... God, to imagine all the things  
deprived programmers could think of, I am not so sure anymore that  
this would be a pleasant place to live in.



Try that and there will be no beer ration for you!


--
Chuck Hill Senior Consultant / VP Development

Practical WebObjects - for developers who want to increase their  
overall knowledge of WebObjects or who are trying to solve specific  
problems.

http://www.global-village.net/products/practical_webobjects






___
Do not post admin requests to the list. They will be ignored.
Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com)
Help/Unsubscribe/Update your Subscription:
http://lists.apple.com/mailman/options/webobjects-dev/pccdonl 
%40mac.com


This email sent to pccd...@mac.com


___
Do not post admin requests to the list. They will be ignored.
Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com)
Help/Unsubscribe/Update your Subscription:
http://lists.apple.com/mailman/options/webobjects-dev/archive%40mail-archive.com

This email sent to arch...@mail-archive.com


Re: Jad?

2009-03-12 Thread Chuck Hill


On Mar 12, 2009, at 2:23 PM, Don Lindsay wrote:


I take it no boolean searches for goatz?


Only if the goat and sheep flocks get combined.



On Mar 12, 2009, at 2:45 PM, Chuck Hill wrote:



On Mar 12, 2009, at 11:26 AM, Stamenkovic Florijan wrote:


On Mar 12, 2009, at 14:03, Chuck Hill wrote:

No!  No loop holes either!  Codez bad, goatez good.  Sheep too if  
they can stand the heat.


Can we at least do manual quicksorting? Y'know, to keep the  
animals in order... Hey, we could have the annual sheep-sorting  
competition! And sheep-puzzlers... God, to imagine all the things  
deprived programmers could think of, I am not so sure anymore that  
this would be a pleasant place to live in.



Try that and there will be no beer ration for you!


--
Chuck Hill Senior Consultant / VP Development

Practical WebObjects - for developers who want to increase their  
overall knowledge of WebObjects or who are trying to solve specific  
problems.

http://www.global-village.net/products/practical_webobjects






___
Do not post admin requests to the list. They will be ignored.
Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com)
Help/Unsubscribe/Update your Subscription:
http://lists.apple.com/mailman/options/webobjects-dev/pccdonl%40mac.com

This email sent to pccd...@mac.com





--
Chuck Hill Senior Consultant / VP Development

Practical WebObjects - for developers who want to increase their  
overall knowledge of WebObjects or who are trying to solve specific  
problems.

http://www.global-village.net/products/practical_webobjects






___
Do not post admin requests to the list. They will be ignored.
Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com)
Help/Unsubscribe/Update your Subscription:
http://lists.apple.com/mailman/options/webobjects-dev/archive%40mail-archive.com

This email sent to arch...@mail-archive.com


Re: Jad?

2009-03-12 Thread John Huss
That's easy with Wonder -

NSArray goats = Animal.SPECIES.eq(goat).filtered(animals)

:-)

On Thu, Mar 12, 2009 at 4:28 PM, Chuck Hill ch...@global-village.netwrote:


 On Mar 12, 2009, at 2:23 PM, Don Lindsay wrote:

  I take it no boolean searches for goatz?


 Only if the goat and sheep flocks get combined.

 ___
Do not post admin requests to the list. They will be ignored.
Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com)
Help/Unsubscribe/Update your Subscription:
http://lists.apple.com/mailman/options/webobjects-dev/archive%40mail-archive.com

This email sent to arch...@mail-archive.com

Re: Jad?

2009-03-12 Thread Chuck Hill


On Mar 12, 2009, at 2:35 PM, John Huss wrote:


That's easy with Wonder -

NSArray goats = Animal.SPECIES.eq(goat).filtered(animals)

:-)


ROFLMAO!


On Thu, Mar 12, 2009 at 4:28 PM, Chuck Hill ch...@global- 
village.net wrote:


On Mar 12, 2009, at 2:23 PM, Don Lindsay wrote:

I take it no boolean searches for goatz?

Only if the goat and sheep flocks get combined.
___
Do not post admin requests to the list. They will be ignored.
Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com)
Help/Unsubscribe/Update your Subscription:
http://lists.apple.com/mailman/options/webobjects-dev/chill%40global-village.net

This email sent to ch...@global-village.net


--
Chuck Hill Senior Consultant / VP Development

Practical WebObjects - for developers who want to increase their  
overall knowledge of WebObjects or who are trying to solve specific  
problems.

http://www.global-village.net/products/practical_webobjects






___
Do not post admin requests to the list. They will be ignored.
Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com)
Help/Unsubscribe/Update your Subscription:
http://lists.apple.com/mailman/options/webobjects-dev/archive%40mail-archive.com

This email sent to arch...@mail-archive.com


Re: Jad?

2009-03-12 Thread TW

On Mar 12, 2009, at 2:35 PM, John Huss wrote:


That's easy with Wonder -

NSArray goats = Animal.SPECIES.eq(goat).filtered(animals)


See, I did learn something from this thread.
___
Do not post admin requests to the list. They will be ignored.
Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com)
Help/Unsubscribe/Update your Subscription:
http://lists.apple.com/mailman/options/webobjects-dev/archive%40mail-archive.com

This email sent to arch...@mail-archive.com


Re: Jad?

2009-03-12 Thread Atli Páll Hafsteinsson

Since I have years of experience herding sheep, farming and drinking beer on
an island (no that tropical though) I claim the possition as King of the
Goat Island!!


On 3/12/09 9:49 PM, TW li...@thetimmy.com wrote:

 On Mar 12, 2009, at 2:35 PM, John Huss wrote:
 
 That's easy with Wonder -
 
 NSArray goats = Animal.SPECIES.eq(goat).filtered(animals)
 
 See, I did learn something from this thread.
  ___
 Do not post admin requests to the list. They will be ignored.
 Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com)
 Help/Unsubscribe/Update your Subscription:
 http://lists.apple.com/mailman/options/webobjects-dev/atlip%40us.is
 
 This email sent to at...@us.is


Fyrirvari á tölvupósti / e-mail disclaimer
http://us.is/Apps/WebObjects/US.woa/wa/dp?id=3776

 ___
Do not post admin requests to the list. They will be ignored.
Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com)
Help/Unsubscribe/Update your Subscription:
http://lists.apple.com/mailman/options/webobjects-dev/archive%40mail-archive.com

This email sent to arch...@mail-archive.com

Re: Jad?

2009-03-12 Thread Chuck Hill


On Mar 12, 2009, at 2:57 PM, Atli Páll Hafsteinsson wrote:



Since I have years of experience herding sheep, farming and drinking  
beer on
an island (no that tropical though) I claim the possition as King of  
the

Goat Island!!


All Hail King Hafsteinsson


Chuck Hill, Minister of Beer




On 3/12/09 9:49 PM, TW li...@thetimmy.com wrote:


On Mar 12, 2009, at 2:35 PM, John Huss wrote:


That's easy with Wonder -

NSArray goats = Animal.SPECIES.eq(goat).filtered(animals)


See, I did learn something from this thread.
___
Do not post admin requests to the list. They will be ignored.
Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com)
Help/Unsubscribe/Update your Subscription:
http://lists.apple.com/mailman/options/webobjects-dev/atlip%40us.is

This email sent to at...@us.is



Fyrirvari á tölvupósti / e-mail disclaimer
http://us.is/Apps/WebObjects/US.woa/wa/dp?id=3776

___
Do not post admin requests to the list. They will be ignored.
Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com)
Help/Unsubscribe/Update your Subscription:
http://lists.apple.com/mailman/options/webobjects-dev/chill%40global-village.net

This email sent to ch...@global-village.net


--
Chuck Hill Senior Consultant / VP Development

Practical WebObjects - for developers who want to increase their  
overall knowledge of WebObjects or who are trying to solve specific  
problems.

http://www.global-village.net/products/practical_webobjects






___
Do not post admin requests to the list. They will be ignored.
Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com)
Help/Unsubscribe/Update your Subscription:
http://lists.apple.com/mailman/options/webobjects-dev/archive%40mail-archive.com

This email sent to arch...@mail-archive.com


Re: Jad?

2009-03-12 Thread Atli Páll Hafsteinsson
I belive Iceland is north, if you would bow in my direction

King Hafsteinsson the first


On 3/12/09 10:18 PM, Chuck Hill ch...@global-village.net wrote:

 
 On Mar 12, 2009, at 2:57 PM, Atli Páll Hafsteinsson wrote:
 
 
 Since I have years of experience herding sheep, farming and drinking
 beer on
 an island (no that tropical though) I claim the possition as King of
 the
 Goat Island!!
 
 All Hail King Hafsteinsson
 
 
 Chuck Hill, Minister of Beer
 
 
 
 On 3/12/09 9:49 PM, TW li...@thetimmy.com wrote:
 
 On Mar 12, 2009, at 2:35 PM, John Huss wrote:
 
 That's easy with Wonder -
 
 NSArray goats = Animal.SPECIES.eq(goat).filtered(animals)
 
 See, I did learn something from this thread.
 ___
 Do not post admin requests to the list. They will be ignored.
 Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com)
 Help/Unsubscribe/Update your Subscription:
 http://lists.apple.com/mailman/options/webobjects-dev/atlip%40us.is
 
 This email sent to at...@us.is
 
 
 Fyrirvari á tölvupósti / e-mail disclaimer
 http://us.is/Apps/WebObjects/US.woa/wa/dp?id=3776
 
 ___
 Do not post admin requests to the list. They will be ignored.
 Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com)
 Help/Unsubscribe/Update your Subscription:
 http://lists.apple.com/mailman/options/webobjects-dev/chill%40global-village.
 net
 
 This email sent to ch...@global-village.net


Fyrirvari á tölvupósti / e-mail disclaimer
http://us.is/Apps/WebObjects/US.woa/wa/dp?id=3776


 ___
Do not post admin requests to the list. They will be ignored.
Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com)
Help/Unsubscribe/Update your Subscription:
http://lists.apple.com/mailman/options/webobjects-dev/archive%40mail-archive.com

This email sent to arch...@mail-archive.com


Re: Jad?

2009-03-12 Thread Lon Varscsak
We're going to need a simpler name. ;)
-Lon

On Thu, Mar 12, 2009 at 3:34 PM, Atli Páll Hafsteinsson at...@us.is wrote:

 I belive Iceland is north, if you would bow in my direction

 King Hafsteinsson the first


 On 3/12/09 10:18 PM, Chuck Hill ch...@global-village.net wrote:

 
  On Mar 12, 2009, at 2:57 PM, Atli Páll Hafsteinsson wrote:
 
 
  Since I have years of experience herding sheep, farming and drinking
  beer on
  an island (no that tropical though) I claim the possition as King of
  the
  Goat Island!!
 
  All Hail King Hafsteinsson
 
 
  Chuck Hill, Minister of Beer
 
 
 
  On 3/12/09 9:49 PM, TW li...@thetimmy.com wrote:
 
  On Mar 12, 2009, at 2:35 PM, John Huss wrote:
 
  That's easy with Wonder -
 
  NSArray goats = Animal.SPECIES.eq(goat).filtered(animals)
 
  See, I did learn something from this thread.
  ___
  Do not post admin requests to the list. They will be ignored.
  Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com)
  Help/Unsubscribe/Update your Subscription:
  http://lists.apple.com/mailman/options/webobjects-dev/atlip%40us.is
 
  This email sent to at...@us.is
 
 
  Fyrirvari á tölvupósti / e-mail disclaimer
  http://us.is/Apps/WebObjects/US.woa/wa/dp?id=3776
 
  ___
  Do not post admin requests to the list. They will be ignored.
  Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com)
  Help/Unsubscribe/Update your Subscription:
 
 http://lists.apple.com/mailman/options/webobjects-dev/chill%40global-village
 .
  net
 
  This email sent to ch...@global-village.net


 Fyrirvari á tölvupósti / e-mail disclaimer
 http://us.is/Apps/WebObjects/US.woa/wa/dp?id=3776


  ___
 Do not post admin requests to the list. They will be ignored.
 Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com)
 Help/Unsubscribe/Update your Subscription:

 http://lists.apple.com/mailman/options/webobjects-dev/varscsak%40smarthealth.com

 This email sent to varsc...@smarthealth.com

 ___
Do not post admin requests to the list. They will be ignored.
Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com)
Help/Unsubscribe/Update your Subscription:
http://lists.apple.com/mailman/options/webobjects-dev/archive%40mail-archive.com

This email sent to arch...@mail-archive.com

Re: Jad?

2009-03-12 Thread Atli Páll Hafsteinsson
Its Your Majesty to you!


On 3/12/09 11:22 PM, Lon Varscsak varsc...@smarthealth.com wrote:

 We're going to need a simpler name. ;)
 
 -Lon
 
 On Thu, Mar 12, 2009 at 3:34 PM, Atli Páll Hafsteinsson at...@us.is wrote:
 I belive Iceland is north, if you would bow in my direction
 
 King Hafsteinsson the first
 
 
 On 3/12/09 10:18 PM, Chuck Hill ch...@global-village.net wrote:
 
 
  On Mar 12, 2009, at 2:57 PM, Atli Páll Hafsteinsson wrote:
 
 
  Since I have years of experience herding sheep, farming and drinking
  beer on
  an island (no that tropical though) I claim the possition as King of
  the
  Goat Island!!
 
  All Hail King Hafsteinsson
 
 
  Chuck Hill, Minister of Beer
 
 
 
  On 3/12/09 9:49 PM, TW li...@thetimmy.com wrote:
 
  On Mar 12, 2009, at 2:35 PM, John Huss wrote:
 
  That's easy with Wonder -
 
  NSArray goats = Animal.SPECIES.eq(goat).filtered(animals)
 
  See, I did learn something from this thread.
  ___
  Do not post admin requests to the list. They will be ignored.
  Webobjects-dev mailing list      (Webobjects-dev@lists.apple.com)
  Help/Unsubscribe/Update your Subscription:
  http://lists.apple.com/mailman/options/webobjects-dev/atlip%40us.is
 
  This email sent to at...@us.is
 
 
  Fyrirvari á tölvupósti / e-mail disclaimer
  http://us.is/Apps/WebObjects/US.woa/wa/dp?id=3776
 
  ___
  Do not post admin requests to the list. They will be ignored.
  Webobjects-dev mailing list      (Webobjects-dev@lists.apple.com)
  Help/Unsubscribe/Update your Subscription:
  
 
http://lists.apple.com/mailman/options/webobjects-dev/chill%40global-village.
  net
 
  This email sent to ch...@global-village.net
 
 
 Fyrirvari á tölvupósti / e-mail disclaimer
 http://us.is/Apps/WebObjects/US.woa/wa/dp?id=3776
 
 
  ___
 Do not post admin requests to the list. They will be ignored.
 Webobjects-dev mailing list      (Webobjects-dev@lists.apple.com)
 Help/Unsubscribe/Update your Subscription:
 http://lists.apple.com/mailman/options/webobjects-dev/varscsak%40smarthealth.
 com
 
 This email sent to varsc...@smarthealth.com
 
 


Fyrirvari á tölvupósti / e-mail disclaimer
http://us.is/Apps/WebObjects/US.woa/wa/dp?id=3776

 ___
Do not post admin requests to the list. They will be ignored.
Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com)
Help/Unsubscribe/Update your Subscription:
http://lists.apple.com/mailman/options/webobjects-dev/archive%40mail-archive.com

This email sent to arch...@mail-archive.com

Re: Jad?

2009-03-12 Thread Chuck Hill


On Mar 12, 2009, at 4:45 PM, Atli Páll Hafsteinsson wrote:


Its Your Majesty to you!


That will certainly be easier after several beers.


Drunk is feeling sophisticated but being unable to say it.





On 3/12/09 11:22 PM, Lon Varscsak varsc...@smarthealth.com wrote:


We're going to need a simpler name. ;)

-Lon

On Thu, Mar 12, 2009 at 3:34 PM, Atli Páll Hafsteinsson  
at...@us.is wrote:

I belive Iceland is north, if you would bow in my direction

King Hafsteinsson the first


On 3/12/09 10:18 PM, Chuck Hill ch...@global-village.net wrote:


 On Mar 12, 2009, at 2:57 PM, Atli Páll Hafsteinsson wrote:


 Since I have years of experience herding sheep, farming and  
drinking

 beer on
 an island (no that tropical though) I claim the possition as  
King of

 the
 Goat Island!!

 All Hail King Hafsteinsson


 Chuck Hill, Minister of Beer



 On 3/12/09 9:49 PM, TW li...@thetimmy.com wrote:

 On Mar 12, 2009, at 2:35 PM, John Huss wrote:

 That's easy with Wonder -

 NSArray goats = Animal.SPECIES.eq(goat).filtered(animals)

 See, I did learn something from this thread.
 ___
 Do not post admin requests to the list. They will be ignored.
 Webobjects-dev mailing list  (Webobjects- 
d...@lists.apple.com)

 Help/Unsubscribe/Update your Subscription:
 http://lists.apple.com/mailman/options/webobjects-dev/atlip%40us.is

 This email sent to at...@us.is


 Fyrirvari á tölvupósti / e-mail disclaimer
 http://us.is/Apps/WebObjects/US.woa/wa/dp?id=3776

 ___
 Do not post admin requests to the list. They will be ignored.
 Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com)
 Help/Unsubscribe/Update your Subscription:
 http://lists.apple.com/mailman/options/webobjects-dev/chill%40global-village 
.

 net

 This email sent to ch...@global-village.net


Fyrirvari á tölvupósti / e-mail disclaimer
http://us.is/Apps/WebObjects/US.woa/wa/dp?id=3776


 ___
Do not post admin requests to the list. They will be ignored.
Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com)
Help/Unsubscribe/Update your Subscription:
http://lists.apple.com/mailman/options/webobjects-dev/varscsak%40smarthealth.com

This email sent to varsc...@smarthealth.com



Fyrirvari á tölvupósti / e-mail disclaimer
http://us.is/Apps/WebObjects/US.woa/wa/dp?id=3776



--
Chuck Hill Senior Consultant / VP Development

Practical WebObjects - for developers who want to increase their  
overall knowledge of WebObjects or who are trying to solve specific  
problems.

http://www.global-village.net/products/practical_webobjects






___
Do not post admin requests to the list. They will be ignored.
Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com)
Help/Unsubscribe/Update your Subscription:
http://lists.apple.com/mailman/options/webobjects-dev/archive%40mail-archive.com

This email sent to arch...@mail-archive.com


Re: Jad?

2009-03-12 Thread Miguel Arroz

Hi!

  Alcohol is also not permitted on the island. I, Ministry of You're  
Gonna Do As I Want or Else, declare it.


  Yours

Miguel Arroz


On 2009/03/12, at 23:55, Chuck Hill wrote:



On Mar 12, 2009, at 4:45 PM, Atli Páll Hafsteinsson wrote:


Its Your Majesty to you!


That will certainly be easier after several beers.


Drunk is feeling sophisticated but being unable to say it.





On 3/12/09 11:22 PM, Lon Varscsak varsc...@smarthealth.com wrote:


We're going to need a simpler name. ;)

-Lon

On Thu, Mar 12, 2009 at 3:34 PM, Atli Páll Hafsteinsson  
at...@us.is wrote:

I belive Iceland is north, if you would bow in my direction

King Hafsteinsson the first


On 3/12/09 10:18 PM, Chuck Hill ch...@global-village.net wrote:


 On Mar 12, 2009, at 2:57 PM, Atli Páll Hafsteinsson wrote:


 Since I have years of experience herding sheep, farming and  
drinking

 beer on
 an island (no that tropical though) I claim the possition as  
King of

 the
 Goat Island!!

 All Hail King Hafsteinsson


 Chuck Hill, Minister of Beer



 On 3/12/09 9:49 PM, TW li...@thetimmy.com wrote:

 On Mar 12, 2009, at 2:35 PM, John Huss wrote:

 That's easy with Wonder -

 NSArray goats = Animal.SPECIES.eq(goat).filtered(animals)

 See, I did learn something from this thread.
 ___
 Do not post admin requests to the list. They will be ignored.
 Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com 
)

 Help/Unsubscribe/Update your Subscription:
 http://lists.apple.com/mailman/options/webobjects-dev/atlip%40us.is

 This email sent to at...@us.is


 Fyrirvari á tölvupósti / e-mail disclaimer
 http://us.is/Apps/WebObjects/US.woa/wa/dp?id=3776

 ___
 Do not post admin requests to the list. They will be ignored.
 Webobjects-dev mailing list  (Webobjects- 
d...@lists.apple.com)

 Help/Unsubscribe/Update your Subscription:
 http://lists.apple.com/mailman/options/webobjects-dev/chill%40global-village 
.

 net

 This email sent to ch...@global-village.net


Fyrirvari á tölvupósti / e-mail disclaimer
http://us.is/Apps/WebObjects/US.woa/wa/dp?id=3776


___
Do not post admin requests to the list. They will be ignored.
Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com)
Help/Unsubscribe/Update your Subscription:
http://lists.apple.com/mailman/options/webobjects-dev/varscsak%40smarthealth.com

This email sent to varsc...@smarthealth.com



Fyrirvari á tölvupósti / e-mail disclaimer
http://us.is/Apps/WebObjects/US.woa/wa/dp?id=3776



--
Chuck Hill Senior Consultant / VP Development

Practical WebObjects - for developers who want to increase their  
overall knowledge of WebObjects or who are trying to solve specific  
problems.

http://www.global-village.net/products/practical_webobjects






___
Do not post admin requests to the list. They will be ignored.
Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com)
Help/Unsubscribe/Update your Subscription:
http://lists.apple.com/mailman/options/webobjects-dev/arroz%40guiamac.com

This email sent to ar...@guiamac.com


...
http://www.survs.com



smime.p7s
Description: S/MIME cryptographic signature
 ___
Do not post admin requests to the list. They will be ignored.
Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com)
Help/Unsubscribe/Update your Subscription:
http://lists.apple.com/mailman/options/webobjects-dev/archive%40mail-archive.com

This email sent to arch...@mail-archive.com

Re: Jad?

2009-03-12 Thread Chuck Hill


On Mar 12, 2009, at 5:05 PM, Miguel Arroz wrote:


Hi!

  Alcohol is also not permitted on the island. I, Ministry of You're  
Gonna Do As I Want or Else, declare it.


BURN THE WITCH!  BURN THE WITCH!




On 2009/03/12, at 23:55, Chuck Hill wrote:



On Mar 12, 2009, at 4:45 PM, Atli Páll Hafsteinsson wrote:


Its Your Majesty to you!


That will certainly be easier after several beers.


Drunk is feeling sophisticated but being unable to say it.




On 3/12/09 11:22 PM, Lon Varscsak varsc...@smarthealth.com  
wrote:



We're going to need a simpler name. ;)

-Lon

On Thu, Mar 12, 2009 at 3:34 PM, Atli Páll Hafsteinsson at...@us.is 
 wrote:

I belive Iceland is north, if you would bow in my direction

King Hafsteinsson the first


On 3/12/09 10:18 PM, Chuck Hill ch...@global-village.net  
wrote:



 On Mar 12, 2009, at 2:57 PM, Atli Páll Hafsteinsson wrote:


 Since I have years of experience herding sheep, farming and  
drinking

 beer on
 an island (no that tropical though) I claim the possition as  
King of

 the
 Goat Island!!

 All Hail King Hafsteinsson


 Chuck Hill, Minister of Beer



 On 3/12/09 9:49 PM, TW li...@thetimmy.com wrote:

 On Mar 12, 2009, at 2:35 PM, John Huss wrote:

 That's easy with Wonder -

 NSArray goats = Animal.SPECIES.eq(goat).filtered(animals)

 See, I did learn something from this thread.
 ___
 Do not post admin requests to the list. They will be ignored.
 Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com 
)

 Help/Unsubscribe/Update your Subscription:
 http://lists.apple.com/mailman/options/webobjects-dev/atlip%40us.is

 This email sent to at...@us.is


 Fyrirvari á tölvupósti / e-mail disclaimer
 http://us.is/Apps/WebObjects/US.woa/wa/dp?id=3776

 ___
 Do not post admin requests to the list. They will be ignored.
 Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com 
)

 Help/Unsubscribe/Update your Subscription:
 http://lists.apple.com/mailman/options/webobjects-dev/chill%40global-village 
.

 net

 This email sent to ch...@global-village.net


Fyrirvari á tölvupósti / e-mail disclaimer
http://us.is/Apps/WebObjects/US.woa/wa/dp?id=3776


___
Do not post admin requests to the list. They will be ignored.
Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com)
Help/Unsubscribe/Update your Subscription:
http://lists.apple.com/mailman/options/webobjects-dev/varscsak%40smarthealth.com

This email sent to varsc...@smarthealth.com



Fyrirvari á tölvupósti / e-mail disclaimer
http://us.is/Apps/WebObjects/US.woa/wa/dp?id=3776



--
Chuck Hill Senior Consultant / VP Development

Practical WebObjects - for developers who want to increase their  
overall knowledge of WebObjects or who are trying to solve specific  
problems.

http://www.global-village.net/products/practical_webobjects






___
Do not post admin requests to the list. They will be ignored.
Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com)
Help/Unsubscribe/Update your Subscription:
http://lists.apple.com/mailman/options/webobjects-dev/arroz%40guiamac.com

This email sent to ar...@guiamac.com


...
http://www.survs.com



--
Chuck Hill Senior Consultant / VP Development

Practical WebObjects - for developers who want to increase their  
overall knowledge of WebObjects or who are trying to solve specific  
problems.

http://www.global-village.net/products/practical_webobjects






___
Do not post admin requests to the list. They will be ignored.
Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com)
Help/Unsubscribe/Update your Subscription:
http://lists.apple.com/mailman/options/webobjects-dev/archive%40mail-archive.com

This email sent to arch...@mail-archive.com


Re: Jad?

2009-03-12 Thread Miguel Arroz

Hi!

On 2009/03/13, at 00:07, Chuck Hill wrote:



On Mar 12, 2009, at 5:05 PM, Miguel Arroz wrote:


Hi!

 Alcohol is also not permitted on the island. I, Ministry of You're  
Gonna Do As I Want or Else, declare it.


BURN THE WITCH!  BURN THE WITCH!


  You can't. There's no alcohol. 8)

  Yours

Miguel Arroz

...
http://www.survs.com



smime.p7s
Description: S/MIME cryptographic signature
 ___
Do not post admin requests to the list. They will be ignored.
Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com)
Help/Unsubscribe/Update your Subscription:
http://lists.apple.com/mailman/options/webobjects-dev/archive%40mail-archive.com

This email sent to arch...@mail-archive.com

Re: Jad?

2009-03-12 Thread Joe Little
On Thu, Mar 12, 2009 at 5:12 PM, Miguel Arroz ar...@guiamac.com wrote:
 Hi!
 On 2009/03/13, at 00:07, Chuck Hill wrote:

 On Mar 12, 2009, at 5:05 PM, Miguel Arroz wrote:

 Hi!

  Alcohol is also not permitted on the island. I, Ministry of You're Gonna Do
 As I Want or Else, declare it.

 BURN THE WITCH!  BURN THE WITCH!

   You can't. There's no alcohol. 8)

Ah. but there is goat dung!

   Yours
 Miguel Arroz
 ...
 http://www.survs.com

  ___
 Do not post admin requests to the list. They will be ignored.
 Webobjects-dev mailing list      (Webobjects-dev@lists.apple.com)
 Help/Unsubscribe/Update your Subscription:
 http://lists.apple.com/mailman/options/webobjects-dev/jmlittle%40gmail.com

 This email sent to jmlit...@gmail.com

 ___
Do not post admin requests to the list. They will be ignored.
Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com)
Help/Unsubscribe/Update your Subscription:
http://lists.apple.com/mailman/options/webobjects-dev/archive%40mail-archive.com

This email sent to arch...@mail-archive.com


Re: Jad?

2009-03-12 Thread Miguel Arroz

On Thu, Mar 12, 2009 at 5:12 PM, Miguel Arroz ar...@guiamac.com wrote:

Hi!
On 2009/03/13, at 00:07, Chuck Hill wrote:

On Mar 12, 2009, at 5:05 PM, Miguel Arroz wrote:

Hi!

 Alcohol is also not permitted on the island. I, Ministry of You're  
Gonna Do

As I Want or Else, declare it.

BURN THE WITCH!  BURN THE WITCH!

  You can't. There's no alcohol. 8)


Ah. but there is goat dung!


  Yours
Miguel Arroz
...
http://www.survs.com

 ___
Do not post admin requests to the list. They will be ignored.
Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com)
Help/Unsubscribe/Update your Subscription:
http://lists.apple.com/mailman/options/webobjects-dev/jmlittle%40gmail.com

This email sent to jmlit...@gmail.com



smime.p7s
Description: S/MIME cryptographic signature
 ___
Do not post admin requests to the list. They will be ignored.
Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com)
Help/Unsubscribe/Update your Subscription:
http://lists.apple.com/mailman/options/webobjects-dev/archive%40mail-archive.com

This email sent to arch...@mail-archive.com

Re: Jad?

2009-03-12 Thread Miguel Arroz

Hi!

  Sorry for this... Why why why is the Send shortcut so close to  
the on-the-fly dictionary one? And yes, I needed to use the dictionary  
to check one word of your sentence... :P


  Yours

Miguel Arroz

On 2009/03/13, at 01:01, Miguel Arroz wrote:

On Thu, Mar 12, 2009 at 5:12 PM, Miguel Arroz ar...@guiamac.com  
wrote:

Hi!
On 2009/03/13, at 00:07, Chuck Hill wrote:

On Mar 12, 2009, at 5:05 PM, Miguel Arroz wrote:

Hi!

Alcohol is also not permitted on the island. I, Ministry of You're  
Gonna Do

As I Want or Else, declare it.

BURN THE WITCH!  BURN THE WITCH!

 You can't. There's no alcohol. 8)


Ah. but there is goat dung!


 Yours
Miguel Arroz
...
http://www.survs.com

___
Do not post admin requests to the list. They will be ignored.
Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com)
Help/Unsubscribe/Update your Subscription:
http://lists.apple.com/mailman/options/webobjects-dev/jmlittle%40gmail.com

This email sent to jmlit...@gmail.com


___
Do not post admin requests to the list. They will be ignored.
Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com)
Help/Unsubscribe/Update your Subscription:
http://lists.apple.com/mailman/options/webobjects-dev/arroz%40guiamac.com

This email sent to ar...@guiamac.com


...
http://www.survs.com



smime.p7s
Description: S/MIME cryptographic signature
 ___
Do not post admin requests to the list. They will be ignored.
Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com)
Help/Unsubscribe/Update your Subscription:
http://lists.apple.com/mailman/options/webobjects-dev/archive%40mail-archive.com

This email sent to arch...@mail-archive.com

Re: WebObjects Installer CD for Windows

2009-03-12 Thread Don Lindsay

Hello;

The WO Installer for Windows, Unix, Linux, and Solaris has been  
completed.  The installer can be downloaded from http://http://web.mac.com/pccdonl/wo.jar


1.  You must have Java 1.5 installed on your windows or *nix machine
2.  Start a command prompt and type java -jar wo.jar
3.  After the installation, start Eclipse, after it completes loading  
exit Eclipse.  When you start Eclipse again you will be able to select  
the WOLips perspective.  I do not know why this occurs, I expect that  
Eclipse is initializing the installed plugins on the first startup.


As always, your feedback is welcome.  I hope this is of use to  
people.  Please feel free to test on your operating systems, let me  
know what operating systems it works on well.


If you are installing on a *nix derivative ensure that you have the  
NEXT_ROOT environment variable by editing your .bashrc in your home  
directory BEFORE starting eclipse, otherwise you will encounter errors  
trying to create webObjects and wonder projects.  On windows and most  
operating systems this is done automatically by the installer.


Thanks

Don
On Mar 11, 2009, at 10:17 AM, Don Lindsay wrote:

You are running the older wo.jar, please download the latest wo.jar  
from http://web.me.com/pccdonl/wo.jar


You do not need the woinst.jar any longer.

You can then run the installer using

java -jar wo.jar from the windows command prompt.

For some odd reason you have to start eclipse one time before you  
can use any of the installed plugins (even the eclipse shipped  
plugins).  Start eclipse, click the iconic curved arrow on the right  
side of the intro screen, then exit and start eclipse again and you  
should be able to choose the WOLips perspective and create a project.


At this point I get an error about Initializing Java Tooling.  I do  
not know if this is just my machine, let me know if you also get  
this error after creating a new WebObjects Application.


Don
On Mar 11, 2009, at 5:13 AM, Frank Stock wrote:


Hello Don,

when installing with the new tools I get the following error:  
(screendump). The first part seems to be ok.


Afbeelding 6.png


Toegang geweigerd = access refused

Greetings,
Frank
Op 11-mrt-09, om 04:47 heeft Don Lindsay het volgende geschreven:


Hello;

The Error that I am seeing in the error view is:

eclipse.buildId=M20090211-1700
java.version=1.5.0_17
java.vendor=Sun Microsystems Inc.
BootLoader constants: OS=win32, ARCH=x86, WS=win32, NL=en_US
Command-line arguments:  -os win32 -ws win32 -arch x86


Error
Tue Mar 10 23:42:58 EDT 2009
Unable to find feature.xml in directory: C:\Apple\eclipse\features 
\org.objectstyle.wolips.apple.mavenintegration.feature_3.4.5693.jar


eclipse.buildId=M20090211-1700
java.version=1.5.0_17
java.vendor=Sun Microsystems Inc.
BootLoader constants: OS=win32, ARCH=x86, WS=win32, NL=en_US
Command-line arguments:  -os win32 -ws win32 -arch x86


Error
Tue Mar 10 23:42:58 EDT 2009
Unable to find feature.xml in directory: C:\Apple\eclipse\features 
\org.objectstyle.wolips.base.feature_3.4.5693.jar



This is repeated for each wolips plugin.

Don
On Mar 10, 2009, at 5:57 PM, Don Lindsay wrote:


Hello;

I have modified the installer, to install 5.3.3 or 5.4.3, however  
when the installer completes and I start eclipse and create a  
WebObjects Application project,  I am getting an error  
initializing java tooling, NullPointerException.   This only  
happens with WOLips projects, J2EE projects and other types of  
projects do not have the problem.   I do not get any further  
stack traces just a popup that says Initializing Java Tooling   
Clicking Details it says NullPointerException.  I am downloading  
and installing the http://webobjects.mdimension.com/wolips/wolips-HEAD-latest.tar.gz 
.


If I download eclipse separately and install WOLips through  
Ecilpse Tools I have no issues.


Thanks, without a stack trace I am at a loss as how to fix the  
problem.  Anyone else seen something like this?


Don

On Mar 8, 2009, at 7:52 PM, Don Lindsay wrote:

Excellent, I will update the installer to allow either 5.3 or 54  
installations.


Don
On Mar 8, 2009, at 5:15 PM, Q wrote:


WOinstaller will install 5.3.3 or 5.4.3

On 09/03/2009, at 5:20 AM, Don Lindsay wrote:


Hello;

It can install 5.4, I just have to enable the drop down, I am  
not sure if the WOInstaller has been updated to install all  
the way up to 5.4.3.   You may have to patch to that level  
manually.


Don
On Mar 7, 2009, at 9:41 AM, Frank Stock wrote:

This is working now, but only installs 5.3.3. Is there a way  
to change this 5.4.3.



Op 6-mrt-09, om 22:38 heeft John Ours het volgende geschreven:



On Mar 6, 2009, at 4:26 PM, Q wrote:



I think the problem you are having is that you cannot use - 
cp and -jar at the same time.




Q is correct.  You want to use something like this (which  
works for me):


java -cp wo.jar;woinst.jar run

That is start java with wo and woinst on the class path,  
and execute the class 

WebObjects with NetBeans 6.5

2009-03-12 Thread mike deavila

Hello,

Has anyone tried to use netbeans to do webobjects development? If so,  
how and how do you get it to build the correct woa package?


Thanks you the help.
mike
___
Do not post admin requests to the list. They will be ignored.
Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com)
Help/Unsubscribe/Update your Subscription:
http://lists.apple.com/mailman/options/webobjects-dev/archive%40mail-archive.com

This email sent to arch...@mail-archive.com


Re: WebObjects with NetBeans 6.5

2009-03-12 Thread Lachlan Deck

On 13/03/2009, at 3:04 PM, mike deavila wrote:


Has anyone tried to use netbeans to do webobjects development?


I doubt it. Or, if any had tried, they would not have lasted long  
knowing all the tools available in WOLips/eclipse.



If so, how and how do you get it to build the correct woa package?


If you do choose to go this route your best bet would be to use maven.

Not sure what you're going to do about building your eomodels etc  
though.


with regards,
--

Lachlan Deck

___
Do not post admin requests to the list. They will be ignored.
Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com)
Help/Unsubscribe/Update your Subscription:
http://lists.apple.com/mailman/options/webobjects-dev/archive%40mail-archive.com

This email sent to arch...@mail-archive.com


Re: WebObjects Installer CD for Windows

2009-03-12 Thread Don Lindsay

Hello;

Yes, unfortunately it does require internet access, due to licensing  
restrictions on distributing some components that are installed. I am  
not allowed to download those licensed components and include in my  
installer. :(


Don
On Mar 13, 2009, at 12:08 AM, mike deavila wrote:



Hi Don,
I have used you installer before. NIce job! I appreciate it. Does  
this installer require inter net access. I need to install it on a  
machine without internet access.

mike


On Mar 12, 2009, at 7:55 PM, Don Lindsay wrote:


Hello;

The WO Installer for Windows, Unix, Linux, and Solaris has been  
completed.  The installer can be downloaded from http://http://web.mac.com/pccdonl/wo.jar


1.  You must have Java 1.5 installed on your windows or *nix machine
2.  Start a command prompt and type java -jar wo.jar
3.  After the installation, start Eclipse, after it completes  
loading exit Eclipse.  When you start Eclipse again you will be  
able to select the WOLips perspective.  I do not know why this  
occurs, I expect that Eclipse is initializing the installed plugins  
on the first startup.


As always, your feedback is welcome.  I hope this is of use to  
people.  Please feel free to test on your operating systems, let me  
know what operating systems it works on well.


If you are installing on a *nix derivative ensure that you have the  
NEXT_ROOT environment variable by editing your .bashrc in your home  
directory BEFORE starting eclipse, otherwise you will encounter  
errors trying to create webObjects and wonder projects.  On windows  
and most operating systems this is done automatically by the  
installer.


Thanks

Don
On Mar 11, 2009, at 10:17 AM, Don Lindsay wrote:

You are running the older wo.jar, please download the latest  
wo.jar from http://web.me.com/pccdonl/wo.jar


You do not need the woinst.jar any longer.

You can then run the installer using

java -jar wo.jar from the windows command prompt.

For some odd reason you have to start eclipse one time before you  
can use any of the installed plugins (even the eclipse shipped  
plugins).  Start eclipse, click the iconic curved arrow on the  
right side of the intro screen, then exit and start eclipse again  
and you should be able to choose the WOLips perspective and create  
a project.


At this point I get an error about Initializing Java Tooling.  I  
do not know if this is just my machine, let me know if you also  
get this error after creating a new WebObjects Application.


Don
On Mar 11, 2009, at 5:13 AM, Frank Stock wrote:


Hello Don,

when installing with the new tools I get the following error:  
(screendump). The first part seems to be ok.


Afbeelding 6.png


Toegang geweigerd = access refused

Greetings,
Frank
Op 11-mrt-09, om 04:47 heeft Don Lindsay het volgende geschreven:


Hello;

The Error that I am seeing in the error view is:

eclipse.buildId=M20090211-1700
java.version=1.5.0_17
java.vendor=Sun Microsystems Inc.
BootLoader constants: OS=win32, ARCH=x86, WS=win32, NL=en_US
Command-line arguments:  -os win32 -ws win32 -arch x86


Error
Tue Mar 10 23:42:58 EDT 2009
Unable to find feature.xml in directory: C:\Apple\eclipse 
\features 
\org 
.objectstyle.wolips.apple.mavenintegration.feature_3.4.5693.jar


eclipse.buildId=M20090211-1700
java.version=1.5.0_17
java.vendor=Sun Microsystems Inc.
BootLoader constants: OS=win32, ARCH=x86, WS=win32, NL=en_US
Command-line arguments:  -os win32 -ws win32 -arch x86


Error
Tue Mar 10 23:42:58 EDT 2009
Unable to find feature.xml in directory: C:\Apple\eclipse 
\features\org.objectstyle.wolips.base.feature_3.4.5693.jar



This is repeated for each wolips plugin.

Don
On Mar 10, 2009, at 5:57 PM, Don Lindsay wrote:


Hello;

I have modified the installer, to install 5.3.3 or 5.4.3,  
however when the installer completes and I start eclipse and  
create a WebObjects Application project,  I am getting an error  
initializing java tooling, NullPointerException.   This only  
happens with WOLips projects, J2EE projects and other types of  
projects do not have the problem.   I do not get any further  
stack traces just a popup that says Initializing Java  
Tooling  Clicking Details it says NullPointerException.  I am  
downloading and installing the http://webobjects.mdimension.com/wolips/wolips-HEAD-latest.tar.gz 
.


If I download eclipse separately and install WOLips through  
Ecilpse Tools I have no issues.


Thanks, without a stack trace I am at a loss as how to fix the  
problem.  Anyone else seen something like this?


Don

On Mar 8, 2009, at 7:52 PM, Don Lindsay wrote:

Excellent, I will update the installer to allow either 5.3 or  
54 installations.


Don
On Mar 8, 2009, at 5:15 PM, Q wrote:


WOinstaller will install 5.3.3 or 5.4.3

On 09/03/2009, at 5:20 AM, Don Lindsay wrote:


Hello;

It can install 5.4, I just have to enable the drop down, I  
am not sure if the WOInstaller has been updated to install  
all the way up to 5.4.3.   You may have to patch to that  
level