LeoR
LeoR

Reputation: 716

What technologies exist for client- and serverside debugging for RIA development

I'd be interested to know in what the debugging approaches for RIA-development are. In particular i am curious whether there are tools which provide a kind of holistic debugging approach for the client and server side at the same time.

From what I've read you can do something like that with GWT using the hosted mode or in ASP.Net where the server side breakpoint gets somehow mapped to the client side (I haven't tried it).

Is there a method to debug client and server side integrated for more classical approaches with HTML+CSS+Javascript as the client technology and a separate server backend (with no restriction to its language).

I guess this would be a very specific implementation, since there is usually also a framework-specific way to communicate with the backend.

Maybe i am just ignorant to the restrictions and reasons as to why such an implementation wouldn't be sensible, which would then also interest me.

Upvotes: 1

Views: 120

Answers (1)

Paul Sweatte
Paul Sweatte

Reputation: 24627

XDebug has IDE and browser extensions. Watir on Rails is a good solution as well. For a language agnostic solution, Komodo IDE + Stackato + Feedhenry would provide the most flexibility.

Upvotes: 1

Related Questions