Re: Problems processing event: java.lang.NoSuchMethodException

2009-09-04 Thread su2
Hi Abdullah, Thanks for your response. I tried making a new .java class in src file and moving all my method there and it worked! I am not sure what might be the reason though its the same exact file but a fresh copy. Thanks for your help. abdullah shaikh wrote: > > You need to check the ret

Re: Problems processing event: java.lang.NoSuchMethodException

2009-09-04 Thread Abdullah Shaikh
You need to check the return statements of "receiveParams" method, and as you say that its happening to all your methods, then I don't know if this is the issue, but mostly likely it should be the response returned. Check all you return statements. On Fri, Sep 4, 2009 at 7:38 PM, su2 wrote: > >

Re: Problems processing event: java.lang.NoSuchMethodException

2009-09-04 Thread su2
Hi abdullah80, I am not sure, How would I check what my method is returning. And this happens to all my new as well as previously working methods. Thanks for your help. abdullah80 wrote: > > As it renders the screen, when you remove the java event, bcoz ofbiz by > default takes response as

Re: Problems processing event: java.lang.NoSuchMethodException

2009-09-04 Thread BJ Freeman
add a response error that goes to an error.jsp as do you have a view defined as WelcomeVisitor su2 sent the following on 9/3/2009 12:58 PM: > Hi Nicolas, > > Following is my request-map > > > path="org.ofbiz.

Re: Problems processing event: java.lang.NoSuchMethodException

2009-09-03 Thread Abdullah Shaikh
As it renders the screen, when you remove the java event, bcoz ofbiz by default takes response as "success", maybe then your "receiveParams" method must be returning some other response instead of "success" On Fri, Sep 4, 2009 at 1:00 AM, su2 wrote: > > Hi All, > > I am having issue with calling

Re: Problems processing event: java.lang.NoSuchMethodException

2009-09-03 Thread su2
Hi Nicolas, Following is my request-map Yeah, I think the path on the event is correct. I was little confuse on your l

Re: Problems processing event: java.lang.NoSuchMethodException

2009-09-03 Thread Malin Nicolas
Hi su2, What calling method or request-map uri ? Are you sure that your path on the event is good ? Are you sure that your class build is in the CLASS_PATH ? Nicolas su2 a écrit : Hi All, I am having issue with calling java event. If I remove java event call from request-map it renders th

Problems processing event: java.lang.NoSuchMethodException

2009-09-03 Thread su2
Hi All, I am having issue with calling java event. If I remove java event call from request-map it renders the screen (of course without processing anything since its not processing java event/method). And with the tag in request-map I get blank screen. I have stopped and re-compiled componen