Debugging Tools and Tips for the KRL Dual-Ended Environment

Due to the dual KRL runtime, I'm looking for better ways to debug my Kynetx applications.

  • What applications can I run on my local computer to help debug Kynetx applications that interact with the web domain?
  • What web services can I use to debug applications since my users use this application?
  • What tools can I use to help debug Kynetx applications for twilio or webhook domain?
  • What tools can I use to monitor the running time of the Kynetx application in a web domain?
+4
source share
1 answer

Debug KRL Event Web Domain

Using the Firebug Net tab is really great for receiving responses to events while working in a web domain. You can filter by type, view the event URL and response from the Kynetx server.

Firebug Net tab showing all resources loaded on stackoverflow.com:

alt text

Filtering the Firebug Net tab with a JavaScript resource:

alt text

Firebug Net tab, showing page view event request parameters raised to the Kynetx server using the bookmarklet:

alt text

You can also see the response in which the server logs will be logged if logging is enabled in your application.

+2
source

All Articles