cancel
Showing results for 
Search instead for 
Did you mean: 

how to check whether doProcessAfterInput() is getting called??

Former Member
0 Kudos

Hi..

After i click on save button in my jsp , i want to check wheteher control is coming to my DoProcessAfterInput() ..

how can i achive this?

i tried giving System.Out.Println();

but cant find in the logs

is thr any other means to do it?

plz help me!!

Thanks in Advance!!

Regards

Smita Mohanty

View Entire Topic
Former Member
0 Kudos

Hi..

After i click on save button in my jsp , i want to check wheteher control is coming to my DoProcessAfterInput() ..

how can i achive this?

i tried giving System.Out.Println();

but cant find in the logs

is thr any other means to do it?

plz help me!!

Thanks in Advance!!

Regards

Smita Mohanty

Former Member
0 Kudos

Use a global string in the class.

set some value for that in doProcessAfterInput() method.

set this to a bean and use this bean to display in JSP in event handler method.

This is how u can check it.

try changing the content using a global integer counter in the doProcessAfterInput() method.

Thanks.

Mohak

Former Member
0 Kudos

Try this line of code, it will print on the screen.

IPortalComponentResponse response = (IPortalComponentResponce)this.getResponse ();

response.write("In PAI");

Regards

Suresh

Former Member
0 Kudos

hi........thnx a lot for providing the solution.

It worked!!