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]

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

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

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

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

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

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

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

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?

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

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.

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

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

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

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

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

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.

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

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

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,

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

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:

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

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

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?

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

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

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