Skip to main content
Participant
March 6, 2007
Question

Web Service Error - SAXParseException: Open quote is expected for attribute 'cellpadding'

  • March 6, 2007
  • 1 reply
  • 1620 views
Any idea where this type of erro comes from?

Could not perform web service invocation "allStudies".
AxisFault faultCode: { http://schemas.xmlsoap.org/soap/envelope/}Server.userException faultSubcode: faultString: org.xml.sax.SAXParseException: Open quote is expected for attribute 'cellpadding' associated with an element type 'table'
This topic has been closed for replies.

1 reply

Inspiring
March 6, 2007
Any idea where this type of erro comes from?

Could not perform web service invocation "allStudies".
AxisFault faultCode:
{ http://schemas.xmlsoap.org/soap/envelope/}Server.userException
faultSubcode:
faultString: org.xml.sax.SAXParseException: Open quote is expected for
attribute 'cellpadding' associated with an element type 'table'


Just reading the error, I would say you are trying to parse content that
looks something like this, probably from some old fashioned HTML.

<table cellpadding=4 ...>

This is not allowed in XML, which I guess is required for web services.
In XML all attribute values must be quoted. That sting would need to
be. <table cellpadding="4" ...>