Make sure you have a gwt.codesvr query parameter on the URL. Otherwise your development mode server won't be used. Then, as long as you have a debugger attached to your development mode process, you should be able to debug client side code.
Note that any RPC calls will be handled by server that the app is deployed to. When not using -noserver, this would be the Jetty instance started by development mode. In your case, it'll be your Websphere server. You'll have to attach a debugger to that to debug anything on the server. -Brian On Tue, Jan 4, 2011 at 9:52 AM, Srividhya Ramachandran <[email protected]> wrote: > I tried the -noserver option with devmode and changing the startupURL, but > the debugger does not break at the breakpoint (the appln runs fine). > Any ideas? I really want to debug this app in websphere... (Note: I am able > to debug other sample applns from the same development environment.). > Any help greatly appreciated. > thanks > > > On Tue, Jan 4, 2011 at 9:25 AM, Srividhya Ramachandran <[email protected]> > wrote: >> >> Is it possible to debug in Hosted Mode? >> >> On Tue, Jan 4, 2011 at 8:32 AM, Tobias <[email protected]> wrote: >>> >>> The documentation page that you mentioned has "-noserver" under >>> "Development Mode Options". If you want to debug your project using a >>> Websphere server as backend, you probably don't want to run the compiler but >>> the Development Mode anyway? "-startupUrl" is also a Development mode >>> option. I think you need to use com.google.gwt.dev.HostedMode instead of >>> com.google.gwt.dev.Compiler. >>> Regards, >>> Tobias >>> >>> -- >>> You received this message because you are subscribed to the Google Groups >>> "Google Web Toolkit" group. >>> To post to this group, send email to [email protected]. >>> To unsubscribe from this group, send email to >>> [email protected]. >>> For more options, visit this group at >>> http://groups.google.com/group/google-web-toolkit?hl=en. >> > > -- > You received this message because you are subscribed to the Google Groups > "Google Web Toolkit" group. > To post to this group, send email to [email protected]. > To unsubscribe from this group, send email to > [email protected]. > For more options, visit this group at > http://groups.google.com/group/google-web-toolkit?hl=en. > -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en.
