loadSubtreeFromXmlBuffer reported an error

When I was in use loadSubtreeFromXmlBuffers, normal xmlString unable to load, has been an error, as shown
image

But the same xmlString can use loadSubtreeFromScsXmlBuffer loading, is this why?

SCS and SC loading (streaming) can’t be used at the same time in the same viewing session, so when the viewer is started in one mode (e.g. scs loading), then using the functions that work with streaming (without the “scs” in the name) will fail.

Ok, I’m using loadSubtreeFromScsXmlBuffer, big load model will give me prompt an error, then the model will not be able to operate, appear this kind of circumstance should be how to solve? I also tried in Communicator. WebViewerConfig configuration memoryLimit inside, but it still won’t do

Error message: Cannot enlarge memory arrays. Either (1) compile with -s TOTAL_MEMORY=X with X higher than the current value 2147418112, (2) compile with -s ALLOW_MEMORY_GROWTH=1 which allows increasing the size at runtime, or (3) if you want malloc to return NULL (0) instead of this abort, compile with -s ABORTING_MALLOC=0

The memoryLimit only has an effect for SC streaming, so it won’t help with loading scs files. Unfortunately, if the content of the scs file is too large overall to fit into memory, there is not much you can do if you can’t switch to streaming, though you should look at my previous post here for some general tips & tricks.

Switching to SC streaming or even server-side rendering might be your best bet in this situation, if at all possible.