Re: Main or other...

2012-05-04 Thread Ron X
but what is the cause of not-finding base-web-object classes - Main, DirectAction, Session? they are existing in the package! if i fix it with Patcher... then i have the same error with all components, PageWrapper for example: Error:

Re: Main or other...

2012-05-04 Thread Lachlan Deck
On 04/05/2012, at 4:09 PM, Ron X wrote: but what is the cause of not-finding base-web-object classes - Main, DirectAction, Session? Historically WO had no concept of java packages. Possibly classpath ordering. You could try it yourself with NS utilities looking up class for name. Lachlan

Re: Main or other...

2012-05-04 Thread Ron X
but what should i do now? every time when i try to convert project into Maven - 8 of 10 cases i get error of Session class or Main class or just nothing on page (defaultAction executes and nothing appears) how can i fix this? 2012/5/4 Lachlan Deck lachlan.d...@gmail.com On 04/05/2012, at

Re: Main or other...

2012-05-04 Thread Ron X
when displays nothing - something like this DEBUG 26.12 MB used/54.94 MB free [main] (ERXNSLogLog4jBridge.java:46) - Waiting for requests... DEBUG 27.24 MB used/53.82 MB free [WorkerThread0] (ERXNSLogLog4jBridge.java:46) - com.webobjects.appserver._private.WOComponentDefinition No template

Re: Main or other...

2012-05-04 Thread Lachlan Deck
On 04/05/2012, at 4:38 PM, Ron X wrote: but what should i do now? every time when i try to convert project into Maven - 8 of 10 cases i get error of Session class or Main class or just nothing on page (defaultAction executes and nothing appears) how can i fix this? This is the kind of

Re: Main or other...

2012-05-04 Thread Ron X
JarResourceRequestHandler - what is it? i can not import it 2012/5/4 Lachlan Deck lachlan.d...@gmail.com On 04/05/2012, at 4:38 PM, Ron X wrote: but what should i do now? every time when i try to convert project into Maven - 8 of 10 cases i get error of Session class or Main class or just

Re: Main or other...

2012-05-04 Thread Lachlan Deck
On 04/05/2012, at 5:15 PM, Ron X wrote: JarResourceRequestHandler - what is it? i can not import it It was posted by Henrique some time ago (not sure why it's not in Wonder yet?) I changed it slightly .. fixing a method signature to use long instead of int). 2012/5/4 Lachlan Deck

Re: Main or other...

2012-05-03 Thread Paul Hoadley
Hi Ron, On 03/05/2012, at 5:12 PM, Ron X wrote: hi for all i wanna to start application using another component - not Main! so i do: @Override public WOActionResults defaultAction() { return pageWithName(Start.class); } That alone is not quite sufficient, but

Re: Main or other...

2012-05-03 Thread Ron X
yes, now i do that: public LSXApplication() { setDefaultRequestHandler(new ERXDirectActionRequestHandler()); } but nothing changed :-( 2012/5/3 Paul Hoadley pa...@logicsquad.net Hi Ron, On 03/05/2012, at 5:12 PM, Ron X wrote: hi for all i wanna to start application

Re: Main or other...

2012-05-03 Thread Ron X
and it is very strange - because i have Main component. but i have exception, that i haven't it! 2012/5/3 Ron X ron.x.by...@gmail.com yes, now i do that: public LSXApplication() { setDefaultRequestHandler(new ERXDirectActionRequestHandler()); } but nothing changed :-(