WOServletAdaptor decompile

2012-12-05 Thread Ron X
hello everybody
i have some proplem with WOServletAdaptor
i have decompiled it and that put it in my own class.
than i ran application, which runs good when use WOServletAdaptor.
when use own Adaptor which is a decompiled copy of WOServletAdaptor i get:
[2012-12-5 14:16:39 FET] localhost-startStop-1 The bundle
LegalSoundsRedesign has malformed version number:
NSProperties.NestedProperties.load(): /Users/esuser/WebObjects.properties
LegalSoundsRedesign[2012-12-5 14:16:39 FET] localhost-startStop-1
WebObjects version = 5.4.3
No loader:
/Users/esuser/Downloads/apache-tomcat-7.0.32/bin/bootstrap.jar:/Users/esuser/Downloads/apache-tomcat-7.0.32/bin/tomcat-juli.jar
java.lang.reflect.InvocationTargetException
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at
sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
at

 ___
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


Re: WOServletAdaptor decompile

2012-12-05 Thread John Huss
Decompilers don't always produce correct or identical code - it's more of
an art than a science.

On Wednesday, December 5, 2012, Ron X wrote:

 hello everybody
 i have some proplem with WOServletAdaptor
 i have decompiled it and that put it in my own class.
 than i ran application, which runs good when use WOServletAdaptor.
 when use own Adaptor which is a decompiled copy of WOServletAdaptor i get:
 [2012-12-5 14:16:39 FET] localhost-startStop-1 The bundle
 LegalSoundsRedesign has malformed version number:
 NSProperties.NestedProperties.load(): /Users/esuser/WebObjects.properties
 LegalSoundsRedesign[2012-12-5 14:16:39 FET] localhost-startStop-1
 WebObjects version = 5.4.3
 No loader:
 /Users/esuser/Downloads/apache-tomcat-7.0.32/bin/bootstrap.jar:/Users/esuser/Downloads/apache-tomcat-7.0.32/bin/tomcat-juli.jar
 java.lang.reflect.InvocationTargetException
 at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
 at
 sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
 at
 




 ___
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


Rép : Re: Wonder 5.8.2 and 6.0

2012-12-05 Thread Raymond NANEON
Hi Pascal,It's normal to have empty String when we want to check WO Version (JavaWebObjects) in the ERXProperties.class of the new Wonder? With Wonder 5.4 it works fine but with the new Wonder nothing works.When have Big diffrence between these methods :WONDER 5.8.Xpublic static String versionStringForFrameworkNamed(String frameworkName) { return valueFromPlistBundleWithKey(NSBundle.bundleForName(frameworkName), "CustomInfo.plist", "CFBundleShortVersionString"); }public static String valueFromPlistBundleWithKey(NSBundle bundle, String plist, String key) {  if (bundle == null)   return "";  String dictString = new String(bundle.bytesForResourcePath(plist));  NSDictionary versionDictionary = NSPropertyListSerialization.dictionaryForString(dictString);  String versionString = (String) versionDictionary.objectForKey(key);  return versionString == null ? "" : versionString.trim(); // trim() removes the line ending char }WONDER 5.4public static String versionStringForFrameworkNamed(String frameworkName) { NSBundle bundle = NSBundle.bundleForName(frameworkName); if (bundle == null) return "";  String versionString = (String) bundle.infoDictionary() .objectForKey("CFBundleShortVersionString"); return versionString == null ? "" : versionString.trim(); // trim() removes the line ending char }Thanks for détailsEnvoyé depuis iCloudLe 02 déc 2012 à 15:38, Pascal Robert prob...@macti.ca a écrit :New frameworks usually have examples with them.   Hi Pascal,Can we have example apps with the new Wonder's evolutions?Thanks  Envoyé depuis iCloudLe 02 déc 2012 à 13:01, Pascal Robert prob...@macti.ca a écrit :Hello everyone,Wonder 5.8.2 have been released today. All changes between 5.8.1 and 5.8.2:https://github.com/projectwonder/wonder/compare/wonder-5.8.1%E2%80%A6wonder-5.8.2Work on Wonder 6.0 have begun. The big changes have been added to the integration branch. Please check if the following changes affects you:https://github.com/projectwonder/wonder/pull/321  https://github.com/projectwonder/wonder/pull/315  https://github.com/pascalrobert/wonder/commit/1d7907152db2f44218e0fdf5c40096254550e0c2  https://github.com/projectwonder/wonder/pull/309  https://github.com/projectwonder/wonder/pull/298  https://github.com/projectwonder/wonder/pull/336It have built fine with Jenkins on jenkins.wocommunity.org so it should build fine for everyone.Wonder 6.0 will be merged into the master branch in the week of January 7th.  ___  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/rnaneon%40me.comThis email sent to rnan...@me.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


Re: Dev/Deploy

2012-12-05 Thread John Huss
Inside eclipse when you run it automatically adds an argument:
-DWOIDE=WOLips
That triggers debug mode.  Outside eclipse you won't have the arg, so debug
will be off.

On Wednesday, December 5, 2012, Ron X wrote:

 hi!

 how can i disable debug mode?
 i want to disable:

 Log4J
 D2W
 CSS
 Toggle SQL (off)
 Clear D2W Cache
 Page Metrics (off)
 Created keys
 Localization
 WOStats
 Run Test

 down the page

 i wrote in WebObjects.properties
 WODebuggingEnabled = false

 but nothing happened

 ___
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


deployment resources -?

2012-12-05 Thread Jesse Tayler
I seem to have lost my links to deployment resources from WOnder frameworks, 
like so:

/WebObjects/Frameworks/ERModernDefaultSkin.framework/WebServerResources/datepicker.css

Is this because of apache rules or something, or do I actually need to install 
new frameworks and resources on my old AWS server?

I'm uncertain when this error started and was looking through deployment docs

http://wiki.wocommunity.org/display/documentation/Deployment

but didn't really find anything that rang a bell.

thoughts on that?



 ___
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


Re: deployment resources -?

2012-12-05 Thread programmingosx
Have you set the -server flag in deployment recently? If so, you'll need to 
specify your frameworks URL in properties.

WOFrameworksBaseURL=/Webobjects/Application_v14.woa/Frameworks

David


On 2012-12-05, at 8:34 AM, Jesse Tayler jtay...@oeinc.com wrote:

 I seem to have lost my links to deployment resources from WOnder frameworks, 
 like so:
 
 /WebObjects/Frameworks/ERModernDefaultSkin.framework/WebServerResources/datepicker.css
 
 Is this because of apache rules or something, or do I actually need to 
 install new frameworks and resources on my old AWS server?
 
 I'm uncertain when this error started and was looking through deployment docs
 
 http://wiki.wocommunity.org/display/documentation/Deployment
 
 but didn't really find anything that rang a bell.
 
 thoughts on that?
 
 
 
 ___
 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/programmingosx%40mac.com
 
 This email sent to programming...@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:
https://lists.apple.com/mailman/options/webobjects-dev/archive%40mail-archive.com

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


Re: deployment resources -?

2012-12-05 Thread Jesse Tayler
Thanks David -

let me see if I understand -

do I even have a -server or WOFrameworksBaseURL in my properties? no. but I'd 
suppose I never have?

also, where's this actually pointing on the server?

 Webobjects/Application_v14.woa/Frameworks

into my app wrapper ? the .woa ?

of course, I'm using the embedded deployment but I was kinda looking for 
something outside the app?


On Dec 5, 2012, at 12:23 PM, programming...@mac.com wrote:

 Have you set the -server flag in deployment recently? If so, you'll need to 
 specify your frameworks URL in properties.
 
 WOFrameworksBaseURL=/Webobjects/Application_v14.woa/Frameworks
 
 David
 
 
 On 2012-12-05, at 8:34 AM, Jesse Tayler jtay...@oeinc.com wrote:
 
 I seem to have lost my links to deployment resources from WOnder frameworks, 
 like so:
 
 /WebObjects/Frameworks/ERModernDefaultSkin.framework/WebServerResources/datepicker.css
 
 Is this because of apache rules or something, or do I actually need to 
 install new frameworks and resources on my old AWS server?
 
 I'm uncertain when this error started and was looking through deployment docs
 
 http://wiki.wocommunity.org/display/documentation/Deployment
 
 but didn't really find anything that rang a bell.
 
 thoughts on that?
 
 
 
 ___
 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/programmingosx%40mac.com
 
 This email sent to programming...@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:
https://lists.apple.com/mailman/options/webobjects-dev/archive%40mail-archive.com

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


Re: deployment resources -?

2012-12-05 Thread Pascal Robert

Le 2012-12-05 à 12:23, programming...@mac.com a écrit :

 Have you set the -server flag in deployment recently? If so, you'll need to 
 specify your frameworks URL in properties.
 
 WOFrameworksBaseURL=/Webobjects/Application_v14.woa/Frameworks

That should be set in the script that launch the application when you build 
with Ant:

  echo ${JAVA_EXECUTABLE} ${JAVA_EXECUTABLE_ARGS} -classpath WOBootstrap.jar 
com.webobjects._bootstrap.WOBootstrap ${COMMAND_LINE_ARGS} -WOFrameworksBaseURL 
/WebObjects/MyApplication.woa/Frameworks

  eval exec ${JAVA_EXECUTABLE} ${JAVA_EXECUTABLE_ARGS} -classpath 
WOBootstrap.jar com.webobjects._bootstrap.WOBootstrap ${COMMAND_LINE_ARGS} 
-WOFrameworksBaseURL /WebObjects/MyApplication.woa/Frameworks

So you shouldn't need to add the property in JavaMonitor or anywhere else 
unless your build was done years ago. I think Maven builds don't have that by 
default.

 David
 
 
 On 2012-12-05, at 8:34 AM, Jesse Tayler jtay...@oeinc.com wrote:
 
 I seem to have lost my links to deployment resources from WOnder frameworks, 
 like so:
 
 /WebObjects/Frameworks/ERModernDefaultSkin.framework/WebServerResources/datepicker.css
 
 Is this because of apache rules or something, or do I actually need to 
 install new frameworks and resources on my old AWS server?
 
 I'm uncertain when this error started and was looking through deployment docs
 
 http://wiki.wocommunity.org/display/documentation/Deployment
 
 but didn't really find anything that rang a bell.
 
 thoughts on that?
 
 
 
 ___
 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/programmingosx%40mac.com
 
 This email sent to programming...@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:
 https://lists.apple.com/mailman/options/webobjects-dev/probert%40macti.ca
 
 This email sent to prob...@macti.ca


 ___
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

Re: deployment resources -?

2012-12-05 Thread Pascal Robert

Le 2012-12-05 à 12:43, Jesse Tayler jtay...@oeinc.com a écrit :

 Thanks David -
 
 let me see if I understand -
 
 do I even have a -server or WOFrameworksBaseURL in my properties? no. but I'd 
 suppose I never have?
 
 also, where's this actually pointing on the server?
 
 Webobjects/Application_v14.woa/Frameworks
 
 into my app wrapper ? the .woa ?
 
 of course, I'm using the embedded deployment but I was kinda looking for 
 something outside the app?

I'm lost here… So your Web resources links right now are 
/WebObjects/Frameworks/ERModernDefaultSkin.framework and you want to switch 
them to /WebObjects/MyApp.woa/Frameworks, or it's the other way around. What is 
the problem you are facing?

 
 On Dec 5, 2012, at 12:23 PM, programming...@mac.com wrote:
 
 Have you set the -server flag in deployment recently? If so, you'll need to 
 specify your frameworks URL in properties.
 
 WOFrameworksBaseURL=/Webobjects/Application_v14.woa/Frameworks
 
 David
 
 
 On 2012-12-05, at 8:34 AM, Jesse Tayler jtay...@oeinc.com wrote:
 
 I seem to have lost my links to deployment resources from WOnder 
 frameworks, like so:
 
 /WebObjects/Frameworks/ERModernDefaultSkin.framework/WebServerResources/datepicker.css
 
 Is this because of apache rules or something, or do I actually need to 
 install new frameworks and resources on my old AWS server?
 
 I'm uncertain when this error started and was looking through deployment 
 docs
 
 http://wiki.wocommunity.org/display/documentation/Deployment
 
 but didn't really find anything that rang a bell.
 
 thoughts on that?
 
 
 
 ___
 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/programmingosx%40mac.com
 
 This email sent to programming...@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:
 https://lists.apple.com/mailman/options/webobjects-dev/probert%40macti.ca
 
 This email sent to prob...@macti.ca


 ___
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

Re: deployment resources -?

2012-12-05 Thread Jesse Tayler

Ok, from the top -

I am troubleshooting a small variety of deployment issues that popped up around 
the time I changed developer machines, the server stuff has been working a few 
years without much change which I found odd.

At this moment, the app is operating and connecting to the database etc., but 
it looks bad -- so, you notice links like:

https://ec.planaby.com/WebObjects/Frameworks/ERModernDefaultSkin.framework/WebServerResources/datepicker.css

don't work, eh? error 404 so - I figured I didn't install my webserverresources 
properly but they seem normal and then I wondered where that file should be 
residing or why it got moved or if it were apache configurations or something 
else entirely.

any idea what I'm missing here?

thanks!


On Dec 5, 2012, at 12:50 PM, Pascal Robert prob...@macti.ca wrote:

 
 Le 2012-12-05 à 12:23, programming...@mac.com a écrit :
 
 Have you set the -server flag in deployment recently? If so, you'll need to 
 specify your frameworks URL in properties.
 
 WOFrameworksBaseURL=/Webobjects/Application_v14.woa/Frameworks
 
 That should be set in the script that launch the application when you build 
 with Ant:
 
  echo ${JAVA_EXECUTABLE} ${JAVA_EXECUTABLE_ARGS} -classpath WOBootstrap.jar 
 com.webobjects._bootstrap.WOBootstrap ${COMMAND_LINE_ARGS} 
 -WOFrameworksBaseURL /WebObjects/MyApplication.woa/Frameworks
 
  eval exec ${JAVA_EXECUTABLE} ${JAVA_EXECUTABLE_ARGS} -classpath 
 WOBootstrap.jar com.webobjects._bootstrap.WOBootstrap ${COMMAND_LINE_ARGS} 
 -WOFrameworksBaseURL /WebObjects/MyApplication.woa/Frameworks
 
 So you shouldn't need to add the property in JavaMonitor or anywhere else 
 unless your build was done years ago. I think Maven builds don't have that by 
 default.
 
 David
 
 
 On 2012-12-05, at 8:34 AM, Jesse Tayler jtay...@oeinc.com wrote:
 
 I seem to have lost my links to deployment resources from WOnder 
 frameworks, like so:
 
 /WebObjects/Frameworks/ERModernDefaultSkin.framework/WebServerResources/datepicker.css
 
 Is this because of apache rules or something, or do I actually need to 
 install new frameworks and resources on my old AWS server?
 
 I'm uncertain when this error started and was looking through deployment 
 docs
 
 http://wiki.wocommunity.org/display/documentation/Deployment
 
 but didn't really find anything that rang a bell.
 
 thoughts on that?
 
 
 
 ___
 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/programmingosx%40mac.com
 
 This email sent to programming...@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:
 https://lists.apple.com/mailman/options/webobjects-dev/probert%40macti.ca
 
 This email sent to prob...@macti.ca
 


 ___
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

Re: deployment resources -?

2012-12-05 Thread Pascal Robert

Le 2012-12-05 à 13:01, Jesse Tayler jtay...@oeinc.com a écrit :

 
 Ok, from the top -
 
 I am troubleshooting a small variety of deployment issues that popped up 
 around the time I changed developer machines, the server stuff has been 
 working a few years without much change which I found odd.
 
 At this moment, the app is operating and connecting to the database etc., but 
 it looks bad -- so, you notice links like:
 
 https://ec.planaby.com/WebObjects/Frameworks/ERModernDefaultSkin.framework/WebServerResources/datepicker.css
 
 don't work, eh? error 404 so - I figured I didn't install my 
 webserverresources properly but they seem normal and then I wondered where 
 that file should be residing or why it got moved or if it were apache 
 configurations or something else entirely.
 
 any idea what I'm missing here?

What's missing is the WOFrameworksBaseURL in the application script if you are 
embedding frameworks (system and local). What is the two last lines in the 
application script (MyApplication.woa/MyApplication) ?

 thanks!
 
 
 On Dec 5, 2012, at 12:50 PM, Pascal Robert prob...@macti.ca wrote:
 
 
 Le 2012-12-05 à 12:23, programming...@mac.com a écrit :
 
 Have you set the -server flag in deployment recently? If so, you'll need to 
 specify your frameworks URL in properties.
 
 WOFrameworksBaseURL=/Webobjects/Application_v14.woa/Frameworks
 
 That should be set in the script that launch the application when you build 
 with Ant:
 
 echo ${JAVA_EXECUTABLE} ${JAVA_EXECUTABLE_ARGS} -classpath WOBootstrap.jar 
 com.webobjects._bootstrap.WOBootstrap ${COMMAND_LINE_ARGS} 
 -WOFrameworksBaseURL /WebObjects/MyApplication.woa/Frameworks
 
 eval exec ${JAVA_EXECUTABLE} ${JAVA_EXECUTABLE_ARGS} -classpath 
 WOBootstrap.jar com.webobjects._bootstrap.WOBootstrap ${COMMAND_LINE_ARGS} 
 -WOFrameworksBaseURL /WebObjects/MyApplication.woa/Frameworks
 
 So you shouldn't need to add the property in JavaMonitor or anywhere else 
 unless your build was done years ago. I think Maven builds don't have that 
 by default.
 
 David
 
 
 On 2012-12-05, at 8:34 AM, Jesse Tayler jtay...@oeinc.com wrote:
 
 I seem to have lost my links to deployment resources from WOnder 
 frameworks, like so:
 
 /WebObjects/Frameworks/ERModernDefaultSkin.framework/WebServerResources/datepicker.css
 
 Is this because of apache rules or something, or do I actually need to 
 install new frameworks and resources on my old AWS server?
 
 I'm uncertain when this error started and was looking through deployment 
 docs
 
 http://wiki.wocommunity.org/display/documentation/Deployment
 
 but didn't really find anything that rang a bell.
 
 thoughts on that?
 
 
 
 ___
 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/programmingosx%40mac.com
 
 This email sent to programming...@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:
 https://lists.apple.com/mailman/options/webobjects-dev/probert%40macti.ca
 
 This email sent to prob...@macti.ca
 
 


 ___
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

Re: deployment resources -?

2012-12-05 Thread Bastian Triller
There's also a parameter in build.xml, which sets the JVM Option field in
{mac,unix}classpath.txt, which is added to the command line options. But i
cannot remember it ...
Am 05.12.2012 18:51 schrieb Pascal Robert prob...@macti.ca:


 Le 2012-12-05 à 12:23, programming...@mac.com a écrit :

  Have you set the -server flag in deployment recently? If so, you'll need
 to specify your frameworks URL in properties.
 
  WOFrameworksBaseURL=/Webobjects/Application_v14.woa/Frameworks

 That should be set in the script that launch the application when you
 build with Ant:

   echo ${JAVA_EXECUTABLE} ${JAVA_EXECUTABLE_ARGS} -classpath
 WOBootstrap.jar com.webobjects._bootstrap.WOBootstrap ${COMMAND_LINE_ARGS}
 -WOFrameworksBaseURL /WebObjects/MyApplication.woa/Frameworks

   eval exec ${JAVA_EXECUTABLE} ${JAVA_EXECUTABLE_ARGS} -classpath
 WOBootstrap.jar com.webobjects._bootstrap.WOBootstrap ${COMMAND_LINE_ARGS}
 -WOFrameworksBaseURL /WebObjects/MyApplication.woa/Frameworks

 So you shouldn't need to add the property in JavaMonitor or anywhere else
 unless your build was done years ago. I think Maven builds don't have that
 by default.

  David
 
 
  On 2012-12-05, at 8:34 AM, Jesse Tayler jtay...@oeinc.com wrote:
 
  I seem to have lost my links to deployment resources from WOnder
 frameworks, like so:
 
 
 /WebObjects/Frameworks/ERModernDefaultSkin.framework/WebServerResources/datepicker.css
 
  Is this because of apache rules or something, or do I actually need to
 install new frameworks and resources on my old AWS server?
 
  I'm uncertain when this error started and was looking through
 deployment docs
 
  http://wiki.wocommunity.org/display/documentation/Deployment
 
  but didn't really find anything that rang a bell.
 
  thoughts on that?
 
 
 
  ___
  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/programmingosx%40mac.com
 
  This email sent to programming...@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:
 
 https://lists.apple.com/mailman/options/webobjects-dev/probert%40macti.ca
 
  This email sent to prob...@macti.ca


  ___
 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/bastian.triller%40gmail.com

 This email sent to bastian.tril...@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:
https://lists.apple.com/mailman/options/webobjects-dev/archive%40mail-archive.com

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


Re: deployment resources -?

2012-12-05 Thread Jesse Tayler

On Dec 5, 2012, at 1:06 PM, Pascal Robert prob...@macti.ca wrote:

 What's missing is the WOFrameworksBaseURL in the application script if you 
 are embedding frameworks (system and local). What is the two last lines in 
 the application script (MyApplication.woa/MyApplication) ?

I'm uncertain which script you mean? The WOMan.woa/WOMan would be the binary, 
no? in my developer system, I have no references to to that WOFrameworksBaseURL 
but --

Could this by my own linking?

I see in my PageWrapper a link like so:

link rel=stylesheet type=text/css media=screen 
href=/WebObjects/WOMan.woa/Frameworks/ERModernDefaultSkin.framework/WebServerResources/default_screen_stylesheet.css/


Should that href really be set with a direct path like that? Or did I just hard 
code that at some point I've forgotten of?

I didn't quite realize this link was a call from my own PageWrapper and not 
something embedded.

Maybe I just need to get my href's properly aligned with my deployment strategy 
there somehow?



 ___
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


Re: deployment resources -?

2012-12-05 Thread Pascal Robert

Le 2012-12-05 à 13:34, Jesse Tayler jtay...@oeinc.com a écrit :

 
 On Dec 5, 2012, at 1:06 PM, Pascal Robert prob...@macti.ca wrote:
 
 What's missing is the WOFrameworksBaseURL in the application script if you 
 are embedding frameworks (system and local). What is the two last lines in 
 the application script (MyApplication.woa/MyApplication) ?
 
 I'm uncertain which script you mean? The WOMan.woa/WOMan would be the binary, 
 no?

Have you looked at it? It's a shell script...

 in my developer system, I have no references to to that WOFrameworksBaseURL 
 but --
 
 Could this by my own linking?
 
 I see in my PageWrapper a link like so:
 
   link rel=stylesheet type=text/css media=screen 
 href=/WebObjects/WOMan.woa/Frameworks/ERModernDefaultSkin.framework/WebServerResources/default_screen_stylesheet.css/

So the problem is there.

 
 Should that href really be set with a direct path like that? Or did I just 
 hard code that at some point I've forgotten of?

No, you should use WOResourceManager or other components like ERXStyleSheet 
filename=default_screen_stylesheet.css framework=ERModernDefaultSkin /

 I didn't quite realize this link was a call from my own PageWrapper and not 
 something embedded.
 
 Maybe I just need to get my href's properly aligned with my deployment 
 strategy there somehow?
 
 


 ___
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

Re: deployment resources -?

2012-12-05 Thread Jesse Tayler
Thanks Pascal!

thats starting to look better for sure --


On Dec 5, 2012, at 2:35 PM, Pascal Robert prob...@macti.ca wrote:

 
 Le 2012-12-05 à 13:34, Jesse Tayler jtay...@oeinc.com a écrit :
 
 
 On Dec 5, 2012, at 1:06 PM, Pascal Robert prob...@macti.ca wrote:
 
 What's missing is the WOFrameworksBaseURL in the application script if you 
 are embedding frameworks (system and local). What is the two last lines in 
 the application script (MyApplication.woa/MyApplication) ?
 
 I'm uncertain which script you mean? The WOMan.woa/WOMan would be the 
 binary, no?
 
 Have you looked at it? It's a shell script...
 
 in my developer system, I have no references to to that WOFrameworksBaseURL 
 but --
 
 Could this by my own linking?
 
 I see in my PageWrapper a link like so:
 
  link rel=stylesheet type=text/css media=screen 
 href=/WebObjects/WOMan.woa/Frameworks/ERModernDefaultSkin.framework/WebServerResources/default_screen_stylesheet.css/
 
 So the problem is there.
 
 
 Should that href really be set with a direct path like that? Or did I just 
 hard code that at some point I've forgotten of?
 
 No, you should use WOResourceManager or other components like ERXStyleSheet 
 filename=default_screen_stylesheet.css framework=ERModernDefaultSkin /
 
 I didn't quite realize this link was a call from my own PageWrapper and not 
 something embedded.
 
 Maybe I just need to get my href's properly aligned with my deployment 
 strategy there somehow?
 
 
 


 ___
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

Model Frameworks and Library Conflict Question

2012-12-05 Thread James Cicenia
I have two frameworks. Each has its own model.

FrameworkModel1
FrameworkModel2

In order for me to see the models I have to import the other's framework.

This then causes a red explanation point error. Because they are referring to 
each other.
How do I get around this?

Thanks
James


 ___
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


Re: Model Frameworks and Library Conflict Question

2012-12-05 Thread Chuck Hill
Refactor so that you don't have cyclic references.  Or implement EOMöbius.


Chuck


On 2012-12-05, at 4:55 PM, James Cicenia wrote:

 I have two frameworks. Each has its own model.
 
 FrameworkModel1
 FrameworkModel2
 
 In order for me to see the models I have to import the other's framework.
 
 This then causes a red explanation point error. Because they are referring to 
 each other.
 How do I get around this?
 
 Thanks
 James
 
 
 ___
 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/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/gvc/practical_webobjects

Global Village Consulting ranks 13th in 2012 in BIV's Top 100 Fastest Growing 
Companies in B.C! 
Global Village Consulting ranks 76th in 24th annual PROFIT 200 ranking of 
Canada’s Fastest-Growing Companies by PROFIT Magazine!









 ___
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

Re: Model Frameworks and Library Conflict Question

2012-12-05 Thread Lon Varscsak
Yeah, I agree with Chuck.  Have 1 framework…if those types of
dependencies exist, keeping them separate isn't going to provide
anything other than headaches.

-Lon

On Wed, Dec 5, 2012 at 5:59 PM, Chuck Hill ch...@global-village.net wrote:
 Refactor so that you don't have cyclic references.  Or implement EOMöbius.


 Chuck


 On 2012-12-05, at 4:55 PM, James Cicenia wrote:

 I have two frameworks. Each has its own model.

 FrameworkModel1
 FrameworkModel2

 In order for me to see the models I have to import the other's framework.

 This then causes a red explanation point error. Because they are referring 
 to each other.
 How do I get around this?

 Thanks
 James


 ___
 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/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/gvc/practical_webobjects

 Global Village Consulting ranks 13th in 2012 in BIV's Top 100 Fastest Growing 
 Companies in B.C!
 Global Village Consulting ranks 76th in 24th annual PROFIT 200 ranking of 
 Canada’s Fastest-Growing Companies by PROFIT Magazine!









  ___
 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/lon.varscsak%40gmail.com

 This email sent to lon.varsc...@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:
https://lists.apple.com/mailman/options/webobjects-dev/archive%40mail-archive.com

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

Re: Model Frameworks and Library Conflict Question

2012-12-05 Thread James Cicenia
Suboptimal. :-(

FM1.User == FM2.Person

Now I have to give up the reflexive relationship or the two one relationship.

How does one then ever fully bridge two models from two frameworks?

James


On Dec 5, 2012, at 6:59 PM, Chuck Hill ch...@global-village.net wrote:

 Refactor so that you don't have cyclic references.  Or implement EOMöbius.
 
 
 Chuck
 
 
 On 2012-12-05, at 4:55 PM, James Cicenia wrote:
 
 I have two frameworks. Each has its own model.
 
 FrameworkModel1
 FrameworkModel2
 
 In order for me to see the models I have to import the other's framework.
 
 This then causes a red explanation point error. Because they are referring 
 to each other.
 How do I get around this?
 
 Thanks
 James
 
 
 ___
 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/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/gvc/practical_webobjects
 
 Global Village Consulting ranks 13th in 2012 in BIV's Top 100 Fastest Growing 
 Companies in B.C! 
 Global Village Consulting ranks 76th in 24th annual PROFIT 200 ranking of 
 Canada’s Fastest-Growing Companies by PROFIT Magazine!
 
 
 
 
 
 
 
 

 ___
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


Re: Model Frameworks and Library Conflict Question

2012-12-05 Thread Chuck Hill
ERPartials


On 2012-12-05, at 5:33 PM, James Cicenia wrote:

 Suboptimal. :-(
 
 FM1.User == FM2.Person
 
 Now I have to give up the reflexive relationship or the two one relationship.
 
 How does one then ever fully bridge two models from two frameworks?
 
 James
 
 
 On Dec 5, 2012, at 6:59 PM, Chuck Hill ch...@global-village.net wrote:
 
 Refactor so that you don't have cyclic references.  Or implement EOMöbius.
 
 
 Chuck
 
 
 On 2012-12-05, at 4:55 PM, James Cicenia wrote:
 
 I have two frameworks. Each has its own model.
 
 FrameworkModel1
 FrameworkModel2
 
 In order for me to see the models I have to import the other's framework.
 
 This then causes a red explanation point error. Because they are referring 
 to each other.
 How do I get around this?
 
 Thanks
 James
 
 
 ___
 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/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/gvc/practical_webobjects
 
 Global Village Consulting ranks 13th in 2012 in BIV's Top 100 Fastest 
 Growing Companies in B.C! 
 Global Village Consulting ranks 76th in 24th annual PROFIT 200 ranking of 
 Canada’s Fastest-Growing Companies by PROFIT Magazine!
 
 
 
 
 
 
 
 
 
 ___
 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/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/gvc/practical_webobjects

Global Village Consulting ranks 13th in 2012 in BIV's Top 100 Fastest Growing 
Companies in B.C! 
Global Village Consulting ranks 76th in 24th annual PROFIT 200 ranking of 
Canada’s Fastest-Growing Companies by PROFIT Magazine!









 ___
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

Re: Model Frameworks and Library Conflict Question

2012-12-05 Thread James Cicenia
I don't think my pay grade give me the top secret clearance for those esoteric 
fringes of wonder.

I will brake the bound and move on.

Maybe one day to revisit it with some ERPartial magic.

Thanks


On Dec 5, 2012, at 7:35 PM, Chuck Hill ch...@global-village.net wrote:

 ERPartials
 
 
 On 2012-12-05, at 5:33 PM, James Cicenia wrote:
 
 Suboptimal. :-(
 
 FM1.User == FM2.Person
 
 Now I have to give up the reflexive relationship or the two one relationship.
 
 How does one then ever fully bridge two models from two frameworks?
 
 James
 
 
 On Dec 5, 2012, at 6:59 PM, Chuck Hill ch...@global-village.net wrote:
 
 Refactor so that you don't have cyclic references.  Or implement EOMöbius.
 
 
 Chuck
 
 
 On 2012-12-05, at 4:55 PM, James Cicenia wrote:
 
 I have two frameworks. Each has its own model.
 
 FrameworkModel1
 FrameworkModel2
 
 In order for me to see the models I have to import the other's framework.
 
 This then causes a red explanation point error. Because they are referring 
 to each other.
 How do I get around this?
 
 Thanks
 James
 
 
 ___
 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/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/gvc/practical_webobjects
 
 Global Village Consulting ranks 13th in 2012 in BIV's Top 100 Fastest 
 Growing Companies in B.C! 
 Global Village Consulting ranks 76th in 24th annual PROFIT 200 ranking of 
 Canada’s Fastest-Growing Companies by PROFIT Magazine!
 
 
 
 
 
 
 
 
 
 ___
 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/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/gvc/practical_webobjects
 
 Global Village Consulting ranks 13th in 2012 in BIV's Top 100 Fastest Growing 
 Companies in B.C! 
 Global Village Consulting ranks 76th in 24th annual PROFIT 200 ranking of 
 Canada’s Fastest-Growing Companies by PROFIT Magazine!
 
 
 
 
 
 
 
 

 ___
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


Re: Model Frameworks and Library Conflict Question

2012-12-05 Thread Ramsey Gurley
Subclass :-)

James Cicenia ja...@jimijon.com wrote:

 ___
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/ramseygurley%40gmail.com

This email sent to ramseygur...@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:
https://lists.apple.com/mailman/options/webobjects-dev/archive%40mail-archive.com

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


Re: Model Frameworks and Library Conflict Question

2012-12-05 Thread James Cicenia
Ramsey knows what I am trying to do.

But that leads to other quandaries:

We have an ERUser framework, and I have my project framework. 

I would like to separate User/Auth from my account, profile, business, etc.

So which is proper? Does a person subclass a user or does a user subclass a 
person.
In my case practicalities seem to dictate that I subclass user. But then the 
issue of actual
database storage comes into play. I want my user table separate for my person 
table.

So I still think I should punt and just break one side and and bridge where 
needed in code.


On Dec 5, 2012, at 8:07 PM, Ramsey Gurley ramseygur...@gmail.com wrote:

 Subclass :-)
 
 James Cicenia ja...@jimijon.com wrote:
 
 Suboptimal. :-(
 
 FM1.User == FM2.Person
 
 Now I have to give up the reflexive relationship or the two one relationship.
 
 How does one then ever fully bridge two models from two frameworks?
 
 James
 
 
 On Dec 5, 2012, at 6:59 PM, Chuck Hill ch...@global-village.net wrote:
 
 Refactor so that you don't have cyclic references.  Or implement EOMöbius.
 
 
 Chuck
 
 
 On 2012-12-05, at 4:55 PM, James Cicenia wrote:
 
 I have two frameworks. Each has its own model.
 
 FrameworkModel1
 FrameworkModel2
 
 In order for me to see the models I have to import the other's framework.
 
 This then causes a red explanation point error. Because they are referring 
 to each other.
 How do I get around this?
 
 Thanks
 James
 
 
 ___
 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/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/gvc/practical_webobjects
 
 Global Village Consulting ranks 13th in 2012 in BIV's Top 100 Fastest 
 Growing Companies in B.C! 
 Global Village Consulting ranks 76th in 24th annual PROFIT 200 ranking of 
 Canada’s Fastest-Growing Companies by PROFIT Magazine!
 
 
 
 
 
 
 
 
 

 ___
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


Re: Model Frameworks and Library Conflict Question

2012-12-05 Thread programmingosx
We've started using ERXPartial for just this purpose. With David's notes, it is 
pretty straightforward to implement.

On 2012-12-05, at 7:12 PM, James Cicenia ja...@jimijon.com wrote:

 Ramsey knows what I am trying to do.
 
 But that leads to other quandaries:
 
 We have an ERUser framework, and I have my project framework. 
 
 I would like to separate User/Auth from my account, profile, business, etc.
 
 So which is proper? Does a person subclass a user or does a user subclass a 
 person.
 In my case practicalities seem to dictate that I subclass user. But then the 
 issue of actual
 database storage comes into play. I want my user table separate for my person 
 table.
 
 So I still think I should punt and just break one side and and bridge where 
 needed in code.
 
 
 On Dec 5, 2012, at 8:07 PM, Ramsey Gurley ramseygur...@gmail.com wrote:
 
 Subclass :-)
 
 James Cicenia ja...@jimijon.com wrote:
 
 Suboptimal. :-(
 
 FM1.User == FM2.Person
 
 Now I have to give up the reflexive relationship or the two one relationship.
 
 How does one then ever fully bridge two models from two frameworks?
 
 James
 
 
 On Dec 5, 2012, at 6:59 PM, Chuck Hill ch...@global-village.net wrote:
 
 Refactor so that you don't have cyclic references.  Or implement EOMöbius.
 
 
 Chuck
 
 
 On 2012-12-05, at 4:55 PM, James Cicenia wrote:
 
 I have two frameworks. Each has its own model.
 
 FrameworkModel1
 FrameworkModel2
 
 In order for me to see the models I have to import the other's framework.
 
 This then causes a red explanation point error. Because they are referring 
 to each other.
 How do I get around this?
 
 Thanks
 James
 
 
 ___
 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/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/gvc/practical_webobjects
 
 Global Village Consulting ranks 13th in 2012 in BIV's Top 100 Fastest 
 Growing Companies in B.C! 
 Global Village Consulting ranks 76th in 24th annual PROFIT 200 ranking of 
 Canada’s Fastest-Growing Companies by PROFIT Magazine!
 
 
 
 
 
 
 
 
 
 
 ___
 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/programmingosx%40mac.com
 
 This email sent to programming...@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:
https://lists.apple.com/mailman/options/webobjects-dev/archive%40mail-archive.com

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


Re: Model Frameworks and Library Conflict Question

2012-12-05 Thread Ramsey Gurley
On Dec 5, 2012, at 8:12 PM, James Cicenia wrote:

 Ramsey knows what I am trying to do.
 
 But that leads to other quandaries:
 
 We have an ERUser framework, and I have my project framework. 
 
 I would like to separate User/Auth from my account, profile, business, etc.
 
 So which is proper? Does a person subclass a user or does a user subclass a 
 person.


I think you understood me to mean subclass User is Person. I mean have a 
subclass User is MyUser and relate it to Person. That's my plan with it anyway. 
Your subclass can live in framework 2 and you can relate it to anything you 
want there. Partials sounds appropriate if what you need is something like 
multiple inheritance.


 In my case practicalities seem to dictate that I subclass user. But then the 
 issue of actual
 database storage comes into play. I want my user table separate for my person 
 table.
 
 So I still think I should punt and just break one side and and bridge where 
 needed in code.
 
 
 On Dec 5, 2012, at 8:07 PM, Ramsey Gurley ramseygur...@gmail.com wrote:
 
 Subclass :-)
 
 James Cicenia ja...@jimijon.com wrote:
 
 Suboptimal. :-(
 
 FM1.User == FM2.Person
 
 Now I have to give up the reflexive relationship or the two one relationship.
 
 How does one then ever fully bridge two models from two frameworks?
 
 James
 
 
 On Dec 5, 2012, at 6:59 PM, Chuck Hill ch...@global-village.net wrote:
 
 Refactor so that you don't have cyclic references.  Or implement EOMöbius.
 
 
 Chuck
 
 
 On 2012-12-05, at 4:55 PM, James Cicenia wrote:
 
 I have two frameworks. Each has its own model.
 
 FrameworkModel1
 FrameworkModel2
 
 In order for me to see the models I have to import the other's framework.
 
 This then causes a red explanation point error. Because they are referring 
 to each other.
 How do I get around this?
 
 Thanks
 James
 
 
 ___
 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/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/gvc/practical_webobjects
 
 Global Village Consulting ranks 13th in 2012 in BIV's Top 100 Fastest 
 Growing Companies in B.C! 
 Global Village Consulting ranks 76th in 24th annual PROFIT 200 ranking of 
 Canada’s Fastest-Growing Companies by PROFIT Magazine!
 
 
 
 
 
 
 
 
 
 
 ___
 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/ramseygurley%40gmail.com
 
 This email sent to ramseygur...@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:
https://lists.apple.com/mailman/options/webobjects-dev/archive%40mail-archive.com

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


Re: Model Frameworks and Library Conflict Question

2012-12-05 Thread James Cicenia
At first blush it look perfect. However, it does flatten/merge the objects into 
one table. That was something I wanted to avoid.

I will need to digest it a bit more and weigh the tradeoffs.


On Dec 5, 2012, at 9:19 PM, programming...@mac.com wrote:

 We've started using ERXPartial for just this purpose. With David's notes, it 
 is pretty straightforward to implement.
 
 On 2012-12-05, at 7:12 PM, James Cicenia ja...@jimijon.com wrote:
 
 Ramsey knows what I am trying to do.
 
 But that leads to other quandaries:
 
 We have an ERUser framework, and I have my project framework. 
 
 I would like to separate User/Auth from my account, profile, business, etc.
 
 So which is proper? Does a person subclass a user or does a user subclass a 
 person.
 In my case practicalities seem to dictate that I subclass user. But then the 
 issue of actual
 database storage comes into play. I want my user table separate for my 
 person table.
 
 So I still think I should punt and just break one side and and bridge where 
 needed in code.
 
 
 On Dec 5, 2012, at 8:07 PM, Ramsey Gurley ramseygur...@gmail.com wrote:
 
 Subclass :-)
 
 James Cicenia ja...@jimijon.com wrote:
 
 Suboptimal. :-(
 
 FM1.User == FM2.Person
 
 Now I have to give up the reflexive relationship or the two one 
 relationship.
 
 How does one then ever fully bridge two models from two frameworks?
 
 James
 
 
 On Dec 5, 2012, at 6:59 PM, Chuck Hill ch...@global-village.net wrote:
 
 Refactor so that you don't have cyclic references.  Or implement EOMöbius.
 
 
 Chuck
 
 
 On 2012-12-05, at 4:55 PM, James Cicenia wrote:
 
 I have two frameworks. Each has its own model.
 
 FrameworkModel1
 FrameworkModel2
 
 In order for me to see the models I have to import the other's framework.
 
 This then causes a red explanation point error. Because they are 
 referring to each other.
 How do I get around this?
 
 Thanks
 James
 
 
 ___
 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/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/gvc/practical_webobjects
 
 Global Village Consulting ranks 13th in 2012 in BIV's Top 100 Fastest 
 Growing Companies in B.C! 
 Global Village Consulting ranks 76th in 24th annual PROFIT 200 ranking of 
 Canada’s Fastest-Growing Companies by PROFIT Magazine!
 
 
 
 
 
 
 
 
 
 
 ___
 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/programmingosx%40mac.com
 
 This email sent to programming...@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:
https://lists.apple.com/mailman/options/webobjects-dev/archive%40mail-archive.com

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


Re: Model Frameworks and Library Conflict Question

2012-12-05 Thread Chuck Hill
The database is just an artifact of the implementation.  :-)


On 2012-12-05, at 7:35 PM, James Cicenia wrote:

 At first blush it look perfect. However, it does flatten/merge the objects 
 into one table. That was something I wanted to avoid.
 
 I will need to digest it a bit more and weigh the tradeoffs.
 
 
 On Dec 5, 2012, at 9:19 PM, programming...@mac.com wrote:
 
 We've started using ERXPartial for just this purpose. With David's notes, it 
 is pretty straightforward to implement.
 
 On 2012-12-05, at 7:12 PM, James Cicenia ja...@jimijon.com wrote:
 
 Ramsey knows what I am trying to do.
 
 But that leads to other quandaries:
 
 We have an ERUser framework, and I have my project framework. 
 
 I would like to separate User/Auth from my account, profile, business, etc.
 
 So which is proper? Does a person subclass a user or does a user subclass a 
 person.
 In my case practicalities seem to dictate that I subclass user. But then 
 the issue of actual
 database storage comes into play. I want my user table separate for my 
 person table.
 
 So I still think I should punt and just break one side and and bridge where 
 needed in code.
 
 
 On Dec 5, 2012, at 8:07 PM, Ramsey Gurley ramseygur...@gmail.com wrote:
 
 Subclass :-)
 
 James Cicenia ja...@jimijon.com wrote:
 
 Suboptimal. :-(
 
 FM1.User == FM2.Person
 
 Now I have to give up the reflexive relationship or the two one 
 relationship.
 
 How does one then ever fully bridge two models from two frameworks?
 
 James
 
 
 On Dec 5, 2012, at 6:59 PM, Chuck Hill ch...@global-village.net wrote:
 
 Refactor so that you don't have cyclic references.  Or implement EOMöbius.
 
 
 Chuck
 
 
 On 2012-12-05, at 4:55 PM, James Cicenia wrote:
 
 I have two frameworks. Each has its own model.
 
 FrameworkModel1
 FrameworkModel2
 
 In order for me to see the models I have to import the other's framework.
 
 This then causes a red explanation point error. Because they are 
 referring to each other.
 How do I get around this?
 
 Thanks
 James
 
 
 ___
 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/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/gvc/practical_webobjects
 
 Global Village Consulting ranks 13th in 2012 in BIV's Top 100 Fastest 
 Growing Companies in B.C! 
 Global Village Consulting ranks 76th in 24th annual PROFIT 200 ranking of 
 Canada’s Fastest-Growing Companies by PROFIT Magazine!
 
 
 
 
 
 
 
 
 
 
 ___
 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/programmingosx%40mac.com
 
 This email sent to programming...@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:
 https://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/gvc/practical_webobjects

Global Village Consulting ranks 13th in 2012 in BIV's Top 100 Fastest Growing 
Companies in B.C! 
Global Village Consulting ranks 76th in 24th annual PROFIT 200 ranking of 
Canada’s Fastest-Growing Companies by PROFIT Magazine!









 ___
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

Re: Dev/Deploy

2012-12-05 Thread Ron X
i built woa with maven plugin and have debug((
how can i disable this -DWOIDE=WOLips ?

-DWOIDE=NO - will it work?


2012/12/5 John Huss johnth...@gmail.com

 Inside eclipse when you run it automatically adds an argument:
 -DWOIDE=WOLips
 That triggers debug mode.  Outside eclipse you won't have the arg, so
 debug will be off.


 On Wednesday, December 5, 2012, Ron X wrote:

 hi!

 how can i disable debug mode?
 i want to disable:

 Log4J
 D2W
 CSS
 Toggle SQL (off)
 Clear D2W Cache
 Page Metrics (off)
 Created keys
 Localization
 WOStats
 Run Test

 down the page

 i wrote in WebObjects.properties
 WODebuggingEnabled = false

 but nothing happened


 ___
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