Re: webobjects with maven

2016-08-01 Thread Hugi Thordarson
Indeed, it’s quite horrid. Sorry about not already having added the workaround 
to the wiki, I’ve been planning to document my WO/Maven migration for a while.


> On 1. ágú. 2016, at 20:25, anon  wrote:
> 
> Okay
> 
> It works. It sure does look like a top secret.
> 
> Who would have thought.
> 
> Thank you very much.
> 
> 
> On 01.08.2016 19:57, Hugi Thordarson wrote:
>> You probably need to open the Eclipse .project-file in your project and add:
>> 
>> org.maven.ide.eclipse.maven2Nature
>> 
>> …as a project nature (inside the “natures"-tag).
>> 
>> WebObjects uses this identifier to determine if the project is a Maven 
>> project, if it isn’t present it will think the bundle is FluffyBunny and 
>> looks for resources in wrong places.
>> 
>> The nature identifier was changed in Eclipse a while back (to 
>> “org.eclipse.m2e.core.maven2Nature”, which you’ll see listed in your 
>> natures) but unfortunately the old name is defined in ERFoundarion.jar, a 
>> top secret, closed source jar donated to Wonder by Apple, so fixing this 
>> isn’t straightforward.
>> 
>> Cheers,
>> - hugi
>> 
>> 
>> 
>>> On 1. ágú. 2016, at 17:41, anon  wrote:
>>> 
>>> I thought I had solved this problem but it turns out that I haven't. I have 
>>> been developing with WOApplication and everything is working fine. When I 
>>> switch to ERXApplication, then I get this error that I already showed here:
>>> 
>>>  No template found 
>>> for component Main at "null"
>>> 
>>> I am talking about the most basic of application (Hello World) which 
>>> returns a blank page. While debugging, It seems that the 
>>> _componentDefinitionCache.objectForKey(componentKey) returns a NullObject 
>>> instead of returning a null like in the original WOApplication. Anyone has 
>>> a quick fix for this?
>>> Thanks again.
>>> On 13.07.2016 18:14, Ramsey Gurley wrote:
 You’re missing some boilerplate in Application.java.
 
@Override
public void finishInitialization() {
super.finishInitialization();
if (isDirectConnectEnabled()) {
registerRequestHandler(new JarResourceRequestHandler(), 
 "_wr_");
registerRequestHandler(new JarResourceRequestHandler(), 
 "wr");
}
}
 
/**
 * Determines the WOSession class to instantiate.
 *
 * @see com.webobjects.appserver.WOApplication#_sessionClass()
 */
@Override
protected Class _sessionClass() {
return Session.class;
}
 
/**
 * Install patches including ensuring that Main is correctly resolved at
 * runtime.
 *
 * @see er.extensions.appserver.ERXApplication#installPatches()
 */
@Override
public void installPatches() {
super.installPatches();
 
// component classes
installPatch(Main.class);
 
// action classes
installPatch(DirectAction.class);
}
 
/**
 * Installs patching for a given class.
 *
 * @param clazz
 *the class to register.
 */
private static void installPatch(final Class clazz) {
ERXPatcher.setClassForName(clazz, clazz.getSimpleName());
_NSUtilities.registerPackage(clazz.getPackage().getName());
}
 
 
 
 
 On Jul 12, 2016, at 5:28 PM, anon  wrote:
 
> The first archetype I did use  was crashing on "Run as WOApplication". I 
> did try another one with "ERXApplication" and searched the mailing list 
> for an answer. I can now start the application, but now I get the 
> following error:
> 
> DEBUG NSLog  -  
> No template found for component Main...
> 
> I have searched the list and could not figure out what the solution was.
> 
> Are there people out there who have WOApplication running in big WO 
> Projects? I can see things like these getting out of control when the 
> project gets big.
> 
> On 07/13/2016 12:21 AM, Ramsey Gurley wrote:
>> This is what works for me, starting from nothing.
>> 
>> 0. Install Java8
>> 1. Install Eclipse for Committers
>> 2. Install WOLips and m2e plugins
>> 3. Create ~.m2/settings.xml that points to wocommunity repository
>> 
>> http://maven.wocommunity.org/content/groups/public/
>> 
>> (I actually have a Nexus repository manager I point to, and it does this 
>> part. The
>> wiki.wocommunity.org
>>  has an example settings.xml you can use though)
>> 4. Add WORemote archetypes catalog in eclipse:
>> 
>> http://maven.wocommunity.org/service/local/repositories/snapshots/content/archetype-catalog.xml
>> 
>> 5. Add lifecycle mappings in eclipse for any plugin executions you need 
>> eclipse to ignore.
>> 6. File, New, Other…, Maven Projec

Re: webobjects with maven

2016-08-01 Thread anon

Okay

It works. It sure does look like a top secret.

Who would have thought.

Thank you very much.


On 01.08.2016 19:57, Hugi Thordarson wrote:

You probably need to open the Eclipse .project-file in your project and add:

org.maven.ide.eclipse.maven2Nature

…as a project nature (inside the “natures"-tag).

WebObjects uses this identifier to determine if the project is a Maven project, 
if it isn’t present it will think the bundle is FluffyBunny and looks for 
resources in wrong places.

The nature identifier was changed in Eclipse a while back (to 
“org.eclipse.m2e.core.maven2Nature”, which you’ll see listed in your natures) 
but unfortunately the old name is defined in ERFoundarion.jar, a top secret, 
closed source jar donated to Wonder by Apple, so fixing this isn’t 
straightforward.

Cheers,
- hugi




On 1. ágú. 2016, at 17:41, anon  wrote:

I thought I had solved this problem but it turns out that I haven't. I have 
been developing with WOApplication and everything is working fine. When I 
switch to ERXApplication, then I get this error that I already showed here:

 No template found for component 
Main at "null"

I am talking about the most basic of application (Hello World) which returns a 
blank page. While debugging, It seems that the 
_componentDefinitionCache.objectForKey(componentKey) returns a NullObject 
instead of returning a null like in the original WOApplication. Anyone has a 
quick fix for this?
Thanks again.
On 13.07.2016 18:14, Ramsey Gurley wrote:

You’re missing some boilerplate in Application.java.

@Override
public void finishInitialization() {
super.finishInitialization();
if (isDirectConnectEnabled()) {
registerRequestHandler(new JarResourceRequestHandler(), 
"_wr_");
registerRequestHandler(new JarResourceRequestHandler(), 
"wr");
}
}

/**
 * Determines the WOSession class to instantiate.
 *
 * @see com.webobjects.appserver.WOApplication#_sessionClass()
 */
@Override
protected Class _sessionClass() {
return Session.class;
}

/**
 * Install patches including ensuring that Main is correctly resolved at
 * runtime.
 *
 * @see er.extensions.appserver.ERXApplication#installPatches()
 */
@Override
public void installPatches() {
super.installPatches();

// component classes
installPatch(Main.class);

// action classes
installPatch(DirectAction.class);
}

/**
 * Installs patching for a given class.
 *
 * @param clazz
 *the class to register.
 */
private static void installPatch(final Class clazz) {
ERXPatcher.setClassForName(clazz, clazz.getSimpleName());
_NSUtilities.registerPackage(clazz.getPackage().getName());
}




On Jul 12, 2016, at 5:28 PM, anon  wrote:


The first archetype I did use  was crashing on "Run as WOApplication". I did try another 
one with "ERXApplication" and searched the mailing list for an answer. I can now start 
the application, but now I get the following error:

DEBUG NSLog  -  No 
template found for component Main...

I have searched the list and could not figure out what the solution was.

Are there people out there who have WOApplication running in big WO Projects? I 
can see things like these getting out of control when the project gets big.

On 07/13/2016 12:21 AM, Ramsey Gurley wrote:

This is what works for me, starting from nothing.

0. Install Java8
1. Install Eclipse for Committers
2. Install WOLips and m2e plugins
3. Create ~.m2/settings.xml that points to wocommunity repository

http://maven.wocommunity.org/content/groups/public/

(I actually have a Nexus repository manager I point to, and it does this part. 
The
wiki.wocommunity.org
  has an example settings.xml you can use though)
4. Add WORemote archetypes catalog in eclipse:

http://maven.wocommunity.org/service/local/repositories/snapshots/content/archetype-catalog.xml

5. Add lifecycle mappings in eclipse for any plugin executions you need eclipse 
to ignore.
6. File, New, Other…, Maven Project, next>>, Catalog: WORemote, Include 
Snapshot Archetypes
Pick the appropriate project and create.

You probably also want to search the list for JarResourceRequestHandler and 
some additional boilerplate to stick in your application’s didFinishLaunching() 
method.

On Jul 12, 2016, at 3:05 PM, anon

  wrote:



Hello everyone,
after a 6 years hiatus from WebObjects, I am back again. Web development out there is in 
a sad state. I decided to give WO another try. I wanted to use maven to manage my 
dependencies; I like the predictability and the structure of maven instead of the free 
form of ant or gradle. Anyway, I was able to create a "Hello 

Re: webobjects with maven

2016-08-01 Thread Hugi Thordarson
You probably need to open the Eclipse .project-file in your project and add:

org.maven.ide.eclipse.maven2Nature

…as a project nature (inside the “natures"-tag).

WebObjects uses this identifier to determine if the project is a Maven project, 
if it isn’t present it will think the bundle is FluffyBunny and looks for 
resources in wrong places.

The nature identifier was changed in Eclipse a while back (to 
“org.eclipse.m2e.core.maven2Nature”, which you’ll see listed in your natures) 
but unfortunately the old name is defined in ERFoundarion.jar, a top secret, 
closed source jar donated to Wonder by Apple, so fixing this isn’t 
straightforward.

Cheers,
- hugi



> On 1. ágú. 2016, at 17:41, anon  wrote:
> 
> I thought I had solved this problem but it turns out that I haven't. I have 
> been developing with WOApplication and everything is working fine. When I 
> switch to ERXApplication, then I get this error that I already showed here:
> 
>  No template found 
> for component Main at "null"
> 
> I am talking about the most basic of application (Hello World) which returns 
> a blank page. While debugging, It seems that the 
> _componentDefinitionCache.objectForKey(componentKey) returns a NullObject 
> instead of returning a null like in the original WOApplication. Anyone has a 
> quick fix for this?
> Thanks again.
> On 13.07.2016 18:14, Ramsey Gurley wrote:
>> You’re missing some boilerplate in Application.java.
>> 
>>  @Override
>>  public void finishInitialization() {
>>  super.finishInitialization();
>>  if (isDirectConnectEnabled()) {
>>  registerRequestHandler(new JarResourceRequestHandler(), 
>> "_wr_");
>>  registerRequestHandler(new JarResourceRequestHandler(), 
>> "wr");
>>  }
>>  }
>> 
>>  /**
>>   * Determines the WOSession class to instantiate.
>>   *
>>   * @see com.webobjects.appserver.WOApplication#_sessionClass()
>>   */
>>  @Override
>>  protected Class _sessionClass() {
>>  return Session.class;
>>  }
>> 
>>  /**
>>   * Install patches including ensuring that Main is correctly resolved at
>>   * runtime.
>>   *
>>   * @see er.extensions.appserver.ERXApplication#installPatches()
>>   */
>>  @Override
>>  public void installPatches() {
>>  super.installPatches();
>> 
>>  // component classes
>>  installPatch(Main.class);
>> 
>>  // action classes
>>  installPatch(DirectAction.class);
>>  }
>> 
>>  /**
>>   * Installs patching for a given class.
>>   *
>>   * @param clazz
>>   *the class to register.
>>   */
>>  private static void installPatch(final Class clazz) {
>>  ERXPatcher.setClassForName(clazz, clazz.getSimpleName());
>>  _NSUtilities.registerPackage(clazz.getPackage().getName());
>>  }
>> 
>> 
>> 
>> 
>> On Jul 12, 2016, at 5:28 PM, anon  wrote:
>> 
>>> The first archetype I did use  was crashing on "Run as WOApplication". I 
>>> did try another one with "ERXApplication" and searched the mailing list for 
>>> an answer. I can now start the application, but now I get the following 
>>> error:
>>> 
>>> DEBUG NSLog  -  No 
>>> template found for component Main...
>>> 
>>> I have searched the list and could not figure out what the solution was.
>>> 
>>> Are there people out there who have WOApplication running in big WO 
>>> Projects? I can see things like these getting out of control when the 
>>> project gets big.
>>> 
>>> On 07/13/2016 12:21 AM, Ramsey Gurley wrote:
 This is what works for me, starting from nothing.
 
 0. Install Java8
 1. Install Eclipse for Committers
 2. Install WOLips and m2e plugins
 3. Create ~.m2/settings.xml that points to wocommunity repository
 
 http://maven.wocommunity.org/content/groups/public/
 
 (I actually have a Nexus repository manager I point to, and it does this 
 part. The 
 wiki.wocommunity.org
  has an example settings.xml you can use though)
 4. Add WORemote archetypes catalog in eclipse:
 
 http://maven.wocommunity.org/service/local/repositories/snapshots/content/archetype-catalog.xml
 
 5. Add lifecycle mappings in eclipse for any plugin executions you need 
 eclipse to ignore.
 6. File, New, Other…, Maven Project, next>>, Catalog: WORemote, Include 
 Snapshot Archetypes
 Pick the appropriate project and create.
 
 You probably also want to search the list for JarResourceRequestHandler 
 and some additional boilerplate to stick in your application’s 
 didFinishLaunching() method.
 
 On Jul 12, 2016, at 3:05 PM, anon 
 
  wrote:
 
 
> Hello everyone,
> after a 6 years hiatus from WebObjects, I am back again. Web development 
> out there is in a sad state. I decided to give WO another try. I wanted 
> to use ma

Re: webobjects with maven

2016-08-01 Thread anon
Yes, it is failing. I did use the maven archetype for erxapplication. 
The woapplication archetype is working fine.



On 01.08.2016 19:52, Theodore Petrosky wrote:
I am curious, what happens when you create a NEW wonder applicaiton 
and run it?  Is that failing?  Or is it when you are trying to update 
an old WO app to wonder?



On Aug 1, 2016, at 1:41 PM, anon > wrote:


I thought I had solved this problem but it turns out that I haven't. 
I have been developing with WOApplication and everything is working 
fine. When I switch to ERXApplication, then I get this error that I 
already showed here:


/ No 
template found for component Main at "null"/


I am talking about the most basic of application (Hello World)//which 
returns a blank page. While debugging, It seems that the 
*/_componentDefinitionCache.objectForKey(componentKey)/* returns a 
*/NullObject/* instead of returning a */null/* like in the original 
WOApplication. Anyone has a quick fix for this?


Thanks again.

On 13.07.2016 18:14, Ramsey Gurley wrote:

You’re missing some boilerplate in Application.java.

@Override
public void finishInitialization() {
super.finishInitialization();
if (isDirectConnectEnabled()) {
registerRequestHandler(new JarResourceRequestHandler(), "_wr_");
registerRequestHandler(new JarResourceRequestHandler(), "wr");
}
}

/**
* Determines the WOSession class to instantiate.
*
* @see com.webobjects.appserver.WOApplication#_sessionClass()
*/
@Override
protected Class _sessionClass() {
return Session.class;
}

/**
* Install patches including ensuring that Main is correctly resolved at
* runtime.
*
* @see er.extensions.appserver.ERXApplication#installPatches()
*/
@Override
public void installPatches() {
super.installPatches();

// component classes
installPatch(Main.class);

// action classes
installPatch(DirectAction.class);
}

/**
* Installs patching for a given class.
*
* @param clazz
*the class to register.
*/
private static void installPatch(final Class clazz) {
ERXPatcher.setClassForName(clazz, clazz.getSimpleName());
_NSUtilities.registerPackage(clazz.getPackage().getName());
}




On Jul 12, 2016, at 5:28 PM, anon > wrote:


The first archetype I did use  was crashing on "Run as 
WOApplication". I did try another one with "ERXApplication" and 
searched the mailing list for an answer. I can now start the 
application, but now I get the following error:


/DEBUG NSLog  - 
 No 
template found for component Main.../


I have searched the list and could not figure out what the solution 
was.


Are there people out there who have WOApplication running in big WO 
Projects? I can see things like these getting out of control when 
the project gets big.


On 07/13/2016 12:21 AM, Ramsey Gurley wrote:

This is what works for me, starting from nothing.

0. Install Java8
1. Install Eclipse for Committers
2. Install WOLips and m2e plugins
3. Create ~.m2/settings.xml that points to wocommunity repository
http://maven.wocommunity.org/content/groups/public/
(I actually have a Nexus repository manager I point to, and it does this part. 
Thewiki.wocommunity.org   has an example 
settings.xml you can use though)
4. Add WORemote archetypes catalog in eclipse:
http://maven.wocommunity.org/service/local/repositories/snapshots/content/archetype-catalog.xml
5. Add lifecycle mappings in eclipse for any plugin executions you need eclipse 
to ignore.
6. File, New, Other…, Maven Project, next>>, Catalog: WORemote, Include 
Snapshot Archetypes
Pick the appropriate project and create.

You probably also want to search the list for JarResourceRequestHandler and 
some additional boilerplate to stick in your application’s didFinishLaunching() 
method.

On Jul 12, 2016, at 3:05 PM, anon  wrote:


Hello everyone,
after a 6 years hiatus from WebObjects, I am back again. Web development out there is in 
a sad state. I decided to give WO another try. I wanted to use maven to manage my 
dependencies; I like the predictability and the structure of maven instead of the free 
form of ant or gradle. Anyway, I was able to create a "Hello World" Application 
but I was not able to run it as a WOApplication. This is the error that I get:

An internal error occurred during: "Launching New_configuration".
java.lang.NullPointerException

So I was wondering whether there are people out there who use maven but can 
still run the application like a regular WOApp?
After going through almost all JVM Webframeworks, I believe strongly that a 
framework that does not have a main class that one can run and that starts fast 
is not worth using. Thats one of the main reason I will use WebObjects for my 
next project.

I  really appreciate any help.
___
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:
https://lis

Re: webobjects with maven

2016-08-01 Thread Theodore Petrosky
I am curious, what happens when you create a NEW wonder applicaiton and run it? 
 Is that failing?  Or is it when you are trying to update an old WO app to 
wonder?


> On Aug 1, 2016, at 1:41 PM, anon  wrote:
> 
> I thought I had solved this problem but it turns out that I haven't. I have 
> been developing with WOApplication and everything is working fine. When I 
> switch to ERXApplication, then I get this error that I already showed here:
> 
>  No template found 
> for component Main at "null"
> 
> I am talking about the most basic of application (Hello World) which returns 
> a blank page. While debugging, It seems that the 
> _componentDefinitionCache.objectForKey(componentKey) returns a NullObject 
> instead of returning a null like in the original WOApplication. Anyone has a 
> quick fix for this?
> Thanks again.
> On 13.07.2016 18:14, Ramsey Gurley wrote:
>> You’re missing some boilerplate in Application.java.
>> 
>>  @Override
>>  public void finishInitialization() {
>>  super.finishInitialization();
>>  if (isDirectConnectEnabled()) {
>>  registerRequestHandler(new JarResourceRequestHandler(), 
>> "_wr_");
>>  registerRequestHandler(new JarResourceRequestHandler(), 
>> "wr");
>>  }
>>  }
>> 
>>  /**
>>   * Determines the WOSession class to instantiate.
>>   *
>>   * @see com.webobjects.appserver.WOApplication#_sessionClass()
>>   */
>>  @Override
>>  protected Class _sessionClass() {
>>  return Session.class;
>>  }
>> 
>>  /**
>>   * Install patches including ensuring that Main is correctly resolved at
>>   * runtime.
>>   *
>>   * @see er.extensions.appserver.ERXApplication#installPatches()
>>   */
>>  @Override
>>  public void installPatches() {
>>  super.installPatches();
>> 
>>  // component classes
>>  installPatch(Main.class);
>> 
>>  // action classes
>>  installPatch(DirectAction.class);
>>  }
>> 
>>  /**
>>   * Installs patching for a given class.
>>   *
>>   * @param clazz
>>   *the class to register.
>>   */
>>  private static void installPatch(final Class clazz) {
>>  ERXPatcher.setClassForName(clazz, clazz.getSimpleName());
>>  _NSUtilities.registerPackage(clazz.getPackage().getName());
>>  }
>> 
>> 
>> 
>> 
>> On Jul 12, 2016, at 5:28 PM, anon > > wrote:
>> 
>>> The first archetype I did use  was crashing on "Run as WOApplication". I 
>>> did try another one with "ERXApplication" and searched the mailing list for 
>>> an answer. I can now start the application, but now I get the following 
>>> error:
>>> 
>>> DEBUG NSLog  -  No 
>>> template found for component Main...
>>> 
>>> I have searched the list and could not figure out what the solution was.
>>> 
>>> Are there people out there who have WOApplication running in big WO 
>>> Projects? I can see things like these getting out of control when the 
>>> project gets big.
>>> 
>>> On 07/13/2016 12:21 AM, Ramsey Gurley wrote:
 This is what works for me, starting from nothing.
 
 0. Install Java8
 1. Install Eclipse for Committers
 2. Install WOLips and m2e plugins
 3. Create ~.m2/settings.xml that points to wocommunity repository
 http://maven.wocommunity.org/content/groups/public/ 
 
 (I actually have a Nexus repository manager I point to, and it does this 
 part. The wiki.wocommunity.org  has an 
 example settings.xml you can use though)
 4. Add WORemote archetypes catalog in eclipse:
 http://maven.wocommunity.org/service/local/repositories/snapshots/content/archetype-catalog.xml
  
 
 5. Add lifecycle mappings in eclipse for any plugin executions you need 
 eclipse to ignore.
 6. File, New, Other…, Maven Project, next>>, Catalog: WORemote, Include 
 Snapshot Archetypes
 Pick the appropriate project and create.
 
 You probably also want to search the list for JarResourceRequestHandler 
 and some additional boilerplate to stick in your application’s 
 didFinishLaunching() method.
 
 On Jul 12, 2016, at 3:05 PM, anon  
  wrote:
 
> Hello everyone,
> after a 6 years hiatus from WebObjects, I am back again. Web development 
> out there is in a sad state. I decided to give WO another try. I wanted 
> to use maven to manage my dependencies; I like the predictability and the 
> structure of maven instead of the free form of ant or gradle. Anyway, I 
> was able to create a "Hello World" Application but I was not able to run 
> it as a WOApplication. This is the error that I 

Re: webobjects with maven

2016-08-01 Thread anon
I thought I had solved this problem but it turns out that I haven't. I 
have been developing with WOApplication and everything is working fine. 
When I switch to ERXApplication, then I get this error that I already 
showed here:


/ No template 
found for component Main at "null"/


I am talking about the most basic of application (Hello World)//which 
returns a blank page. While debugging, It seems that the 
*/_componentDefinitionCache.objectForKey(componentKey)/* returns a 
*/NullObject/* instead of returning a */null/* like in the original 
WOApplication. Anyone has a quick fix for this?


Thanks again.

On 13.07.2016 18:14, Ramsey Gurley wrote:

You’re missing some boilerplate in Application.java.

@Override
public void finishInitialization() {
super.finishInitialization();
if (isDirectConnectEnabled()) {
registerRequestHandler(new JarResourceRequestHandler(), "_wr_");
registerRequestHandler(new JarResourceRequestHandler(), "wr");
}
}

/**
* Determines the WOSession class to instantiate.
*
* @see com.webobjects.appserver.WOApplication#_sessionClass()
*/
@Override
protected Class _sessionClass() {
return Session.class;
}

/**
* Install patches including ensuring that Main is correctly resolved at
* runtime.
*
* @see er.extensions.appserver.ERXApplication#installPatches()
*/
@Override
public void installPatches() {
super.installPatches();

// component classes
installPatch(Main.class);

// action classes
installPatch(DirectAction.class);
}

/**
* Installs patching for a given class.
*
* @param clazz
*the class to register.
*/
private static void installPatch(final Class clazz) {
ERXPatcher.setClassForName(clazz, clazz.getSimpleName());
_NSUtilities.registerPackage(clazz.getPackage().getName());
}




On Jul 12, 2016, at 5:28 PM, anon > wrote:


The first archetype I did use  was crashing on "Run as 
WOApplication". I did try another one with "ERXApplication" and 
searched the mailing list for an answer. I can now start the 
application, but now I get the following error:


/DEBUG NSLog  - 
 No template 
found for component Main.../


I have searched the list and could not figure out what the solution was.

Are there people out there who have WOApplication running in big WO 
Projects? I can see things like these getting out of control when the 
project gets big.


On 07/13/2016 12:21 AM, Ramsey Gurley wrote:

This is what works for me, starting from nothing.

0. Install Java8
1. Install Eclipse for Committers
2. Install WOLips and m2e plugins
3. Create ~.m2/settings.xml that points to wocommunity repository
http://maven.wocommunity.org/content/groups/public/
(I actually have a Nexus repository manager I point to, and it does this part. 
Thewiki.wocommunity.org   has an example 
settings.xml you can use though)
4. Add WORemote archetypes catalog in eclipse:
http://maven.wocommunity.org/service/local/repositories/snapshots/content/archetype-catalog.xml
5. Add lifecycle mappings in eclipse for any plugin executions you need eclipse 
to ignore.
6. File, New, Other…, Maven Project, next>>, Catalog: WORemote, Include 
Snapshot Archetypes
Pick the appropriate project and create.

You probably also want to search the list for JarResourceRequestHandler and 
some additional boilerplate to stick in your application’s didFinishLaunching() 
method.

On Jul 12, 2016, at 3:05 PM, anon  wrote:


Hello everyone,
after a 6 years hiatus from WebObjects, I am back again. Web development out there is in 
a sad state. I decided to give WO another try. I wanted to use maven to manage my 
dependencies; I like the predictability and the structure of maven instead of the free 
form of ant or gradle. Anyway, I was able to create a "Hello World" Application 
but I was not able to run it as a WOApplication. This is the error that I get:

An internal error occurred during: "Launching New_configuration".
java.lang.NullPointerException

So I was wondering whether there are people out there who use maven but can 
still run the application like a regular WOApp?
After going through almost all JVM Webframeworks, I believe strongly that a 
framework that does not have a main class that one can run and that starts fast 
is not worth using. Thats one of the main reason I will use WebObjects for my 
next project.

I  really appreciate any help.
___
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:
https://lists.apple.com/mailman/options/webobjects-dev/rgurley%40smarthealth.com

This email sent torgur...@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:
https://lists.apple.com/mailman/opt

Re: jrebel

2016-08-01 Thread Samuel Pelletier
Hi Ted,

The NSValidation cache clear was triggered only for classes instance 
NSValidation... I updated the plugin to clear it every time.

A pull request is already sent.

You can download an up to date binary with the fix in my repo:
https://github.com/spelletier/HotswapAgent/releases/tag/0.3-WO_validation_fix

Regards,

Samuel


> Le 31 juil. 2016 à 19:13, Theodore Petrosky  a écrit :
> 
> I’m using DCEVM and Hotswap for rapid turnaround. 
> 
> I did notice an oddity. I create a new method on an EO and save.
> 
>   public Object validateAddressLine2(Object line2) throws 
> NSValidation.ValidationException {
>   
>   System.out.println("validateAddressLine1 validating = " + 
> line2);
>   
>   return line2;
>   }
> 
> I see in the log:
> 
> HOTSWAP AGENT: 19:11:0.959 INFO 
> (org.hotswap.agent.plugin.webobjects.HotswapWebObjectsPlugin) - Resetting 
> KeyValueCoding caches
> 
> But the new method does not fire :(
> 
> I restart the app and the method fires fine.
> 
> Did I miss something in the setup or is this a limitation.
> 
> Ted
> 
> 
>> On Jul 14, 2016, at 5:23 PM, Samuel Pelletier > > wrote:
>> 
>> Aaron and all,
>> 
>> I wrote the Hotswap plugin for the the free Jrebel alternative.
>> 
>> Here is the short link to the WO Community page with the installation 
>> instructions:
>> 
>> http://wiki.wocommunity.org/x/LIDh 
>> 
>> I'm open to donation, beer of meal in next wowodc.
>> 
>> Samuel
>> 
>> 
>>> Le 14 juil. 2016 à 16:29, Aaron Rosenzweig >> > a écrit :
>>> 
>>> There was a talk in Montreal on how to use open source alternative to 
>>> JRebel that executes faster and is free.
>>> AARON ROSENZWEIG / Chat 'n Bike 
>>> e:  aa...@chatnbike.com   t:  (301) 956-2319
>>> 
>>> 
>>> On Jul 14, 2016, at 3:59 PM, Hugi Thordarson >> > wrote:
>>> 
 Yes, we use JRebel. Can’t live without it.
 
 - hugi
 
 
> On 14. júl. 2016, at 18:42, Theodore Petrosky  > wrote:
> 
> Is anyone using jrebel with WO? I used it in the past and it worked very 
> well. I want to know that it works with WOLips before I send them my 
> money.
> 
> Ted
> ___
> 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:
> https://lists.apple.com/mailman/options/webobjects-dev/hugi%40karlmenn.is 
> 
> 
> This email sent to h...@karlmenn.is 
 
 
 ___
 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:
 https://lists.apple.com/mailman/options/webobjects-dev/aaron%40chatnbike.com
  
 
 
 This email sent to aa...@chatnbike.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:
>>> https://lists.apple.com/mailman/options/webobjects-dev/samuel%40samkar.com 
>>> 
>>> 
>>> This email sent to sam...@samkar.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:
>> https://lists.apple.com/mailman/options/webobjects-dev/tedpet5%40yahoo.com 
>> 
>> 
>> This email sent to tedp...@yahoo.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:
https://lists.apple.com/mailman/options/webobjects-dev/archive%40mail-archive.com

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