You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
As described in #198 (Scala.js cannot load XML from String), it's not possible to use XML.loadString within scala.js. But that also seems to be true for any other load and save method within scala.xml.XML.
The errors are all similar: "Referring to non-existent class org.xml.sax..." and "Referring to non-existent class javax.xml.parsers.SAX..." obviously because of the dependency to sax.
Is there another way to load xml data without the usage of scala.xml.XML object and SAX?
The text was updated successfully, but these errors were encountered:
As described in #198 (Scala.js cannot load XML from String), it's not possible to use XML.loadString within scala.js. But that also seems to be true for any other load and save method within scala.xml.XML.
The errors are all similar: "Referring to non-existent class org.xml.sax..." and "Referring to non-existent class javax.xml.parsers.SAX..." obviously because of the dependency to sax.
Is there another way to load xml data without the usage of scala.xml.XML object and SAX?
The text was updated successfully, but these errors were encountered: