Ticket #19 (closed defect: fixed)

Opened 3 years ago

Last modified 3 years ago

handleResponse

Reported by: anonymous Assigned to: anonymous
Priority: normal Milestone:
Component: other Version: 2.0
Severity: normal Keywords:
Cc:

Description

handleResponse (xmlrpc.js) tries to unmarshall respDoc directly when it should parse the XML. Adding an extra check to see if the respDoc contains documentElement.

This works for me:

From:

if((respDoc == null) {

To:

if((respDoc == null) || (respDoc.documentElement == null)){

Brgds, eh AT escio DOT no

Change History

03/09/06 10:15:25 changed by anonymous

  • status changed from new to assigned.
  • owner changed from Jan-Klaas Kollhof to anonymous.

03/10/06 10:38:59 changed by Jan-Klaas Kollhof

  • status changed from assigned to closed.
  • resolution set to fixed.