We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hello, Recently I have been having problems with parsing some XML files using nusoap, these problems happen because the sent envelopes are too large.
Since this is legacy software, any kind of change has a monster impact.
I noticed that by changing a parameter within the nusoap lib this error stops occurring.
According to my understanding this piece of code just breaks the XML file into several smaller parts so that the parser process can be done.
nusoap.php line : 6793
$chunkSize = 256; for($pointer = 0; $pointer < strlen($xml) && empty($parseErrors); $pointer += $chunkSize) { $xmlString = substr($xml, $pointer, $chunkSize); if(!xml_parse($this->parser, $xmlString, false)) { $parseErrors['lineNumber'] = xml_get_current_line_number($this->parser); $parseErrors['errorString'] = xml_error_string(xml_get_error_code($this->parser)); }; }
The text was updated successfully, but these errors were encountered:
Hi. Could you please prepare PR?
Sorry, something went wrong.
No branches or pull requests
Hello,
Recently I have been having problems with parsing some XML files using nusoap, these problems happen because the sent envelopes are too large.
Since this is legacy software, any kind of change has a monster impact.
I noticed that by changing a parameter within the nusoap lib this error stops occurring.
According to my understanding this piece of code just breaks the XML file into several smaller parts so that the parser process can be done.
nusoap.php line : 6793
The text was updated successfully, but these errors were encountered: