[
http://jira.jboss.com/jira/browse/JBWS-1710?page=comments#action_12365763 ]
David Owens commented on JBWS-1710:
-----------------------------------
No problem. Hope it helps. There are some other methods in there that look the same, but
I wasn't sure what the long term plan was for them.
StackOverflowError when calling SOAPDocument.createCDATASection
---------------------------------------------------------------
Key: JBWS-1710
URL:
http://jira.jboss.com/jira/browse/JBWS-1710
Project: JBoss Web Services
Issue Type: Bug
Security Level: Public(Everyone can see)
Affects Versions: jbossws-1.2.1
Reporter: David Owens
Assigned To: Thomas Diesler
Priority: Minor
Fix For: jbossws-2.0.0
Using JBoss 4.2.0.GA a call to createCDATASection(String data) will throw a
StackOverflowError.
I suspect this code:
public CDATASection createCDATASection(String data) throws DOMException
{
return createCDATASection(data);
}
should read:
public CDATASection createCDATASection(String data) throws DOMException
{
return doc.createCDATASection(data);
}
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
http://jira.jboss.com/jira/secure/Administrators.jspa
-
For more information on JIRA, see:
http://www.atlassian.com/software/jira