Allow configuration of libxml options for decoding XML#43
Merged
veewee merged 1 commit intophp-soap:mainfrom Dec 17, 2025
Merged
Allow configuration of libxml options for decoding XML#43veewee merged 1 commit intophp-soap:mainfrom
veewee merged 1 commit intophp-soap:mainfrom
Conversation
b4cdeef to
137557a
Compare
rajivraman-MRM
approved these changes
Dec 16, 2025
There was a problem hiding this comment.
I've tested this against our failing code and it works! No longer errors with: [FATAL] : Resource limit exceeded: Text node too long, try XML_PARSE_HUGE. Tested against version 4.5.
I made this change to the generated client-factory in order to use it:
$engine = DefaultEngineFactory::create(
EngineOptions::defaults($wsdl)
->withEncoderRegistry(
EncoderRegistry::default()
->setDecoderLibXmlOptions(LIBXML_PARSEHUGE) // NEW
->addClassMapCollection(AdminClassmap::types())
->addBackedEnumClassMapCollection(AdminClassmap::enums())
)
...
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Fixes phpro/soap-client#598
This allows for configuring the LIBXML_* options for decoding XML requests from the
EncoderRegistry.