Some hints when debugging using a Browser
Currently (early 2008), FireFox has some of the best tools for debugging problem Web Service systems. To view the raw XML using the FireFox browser:
- Right click a page.
- Select View Source from the menu that displays.
If a blank page displays, an alternative is to call the system via a command line tool such as wget. For example, enter:
wget -O - "http://HOST/emuwebXXXX/webservices/mapper.php" | more
The response information will be displayed directly on the screen (including HTTP headers).