Question

Im trying to identify which code from the client is calling a gwt rpc service but the stack on my debug view in eclipse doesnt show me the caller for the service.

Is there a way to figure it out this??

Thank you !

Was it helpful?

Solution 2

In eclipse go to your interface .class file. On press Ctrl+Shift+G. This will show you all occurrences of the interface and you can put breakpoints to all occurences.

Shortcut Ctrl+Shift+G work also with methods of inteface.

OTHER TIPS

If it's coming from your client side code, you can put a break point on the method signature in your <SERVICE_NAME>Async.java interface. Debugging should hit the break-point as long as you're running with the gwt codeserver.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top