How to Convert to XML to JSON using XSLT 3.0
Below is my input XML which needs to converted into the below output JSON using XSLT 3.0.
how to enable streaming for the below code in the XSLT3.0, because the input payload can be more than 80MB and we are observing performance issues
Problem
The current issue is that with below XSLT code, when the input payload is large for example 80MB, the input payload is getting loaded into memory and because of which its consuming the memory and causing performance issue. So is there any way to handle this issue in XSLT3.0?
how to enable streaming for the below code in the XSLT3.0, because the input payload can be more than 80MB and we are observing performance issues
Problem
The current issue is that with below XSLT code, when the input payload is large for example 80MB, the input payload is getting loaded into memory and because of which its consuming the memory and causing performance issue. So is there any way to handle this issue in XSLT3.0?
how to enable streaming for the below code in the XSLT3.0, because the input payload can be more than 80MB and we are observing performance issues
Problem
The current issue is that with below XSLT code, when the input payload is large for example 80MB, the input payload is getting loaded into memory and because of which its consuming the memory and causing performance issue. So is there any way to handle this issue in XSLT3.0?
how to enable streaming for the below code in the XSLT3.0, because the input payload can be more than 80MB and we are observing performance issues
Problem
The current issue is that with below XSLT code, when the input payload is large for example 80MB, the input payload is getting loaded into memory and because of which its consuming the memory and causing performance issue. So is there any way to handle this issue in XSLT3.0?
how to enable streaming for the below code in the XSLT3.0, because the input payload can be more than 80MB and we are observing performance issues
Problem
The current issue is that with below XSLT code, when the input payload is large for example 80MB, the input payload is getting loaded into memory and because of which its consuming the memory and causing performance issue. So is there any way to handle this issue in XSLT3.0?
how to enable streaming for the below code in the XSLT3.0, because the input payload can be more than 80MB and we are observing performance issues
Problem
The current issue is that with below XSLT code, when the input payload is large for example 80MB, the input payload is getting loaded into memory and because of which its consuming the memory and causing performance issue. So is there any way to handle this issue in XSLT3.0?
How to deep copy xml element content and pass it to java method as string
I have the following xml element:
XSLT mapping to remove segment based on Key field value
i am trying to write XSLT3.0 mapping to delete Transmission segment when its subsegment Transmission1 has the key value //CAN BE REMOVED//, I am new to XSLT code, tried few but not able to get the desired output, Please assist me on this..
How to apply disable-output-escaping=’yes’ to some entity references (> and <) and exclude for &
I have citation text within span. The markup string has > and < and &. When I transform that citation text I am using disable-output-escaping=’yes’. It is working good for < and >. But I need to exclude this for &. Because I will use the output as an input for another xslt transformation.