• Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
    Dedicated community for Japanese speakers
  • 한국 커뮤니티
    Dedicated community for Korean speakers
Exit
0

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

New Here ,
Mar 06, 2007 Mar 06, 2007

Copy link to clipboard

Copied

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'
TOPICS
Advanced techniques

Views

1.5K

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
LEGEND ,
Mar 06, 2007 Mar 06, 2007

Copy link to clipboard

Copied

LATEST
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" ...>

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Resources
Documentation