Expand my Community achievements bar.

Guidelines for the Responsible Use of Generative AI in the Experience Cloud Community.
SOLVED

org.apache.cocoon.xml.sax.AttributesImpl and org.apache.cocoon.xml.sax.AbstractSAXPipe are deprecated

Avatar

Level 4

Hi, would like to ask which are the equivalent libraries from XML APIs for the following items that are deprecated.
org.apache.cocoon.xml.sax.AttributesImpl

org.apache.cocoon.xml.sax.AbstractSAXPipe

Thanks!

1 Accepted Solution

Avatar

Correct answer by
Community Advisor

Hi Lyon,

 

There's more modern way than using the cocoon one. Luckly sling project does not force us to use it. Hene we can rely on org.xml packages.

 

Please see following excellent blog post by @ Imran Khan:

https://medium.com/@toimrank/link-checker-and-transformer-381d4f245d12

 

Here, we are using org.xml.sax.helpers.AttributesImpl as alternative to org.apache.cocoon.xml.sax.AttributesImpl and AbstractSAXPipe is no longer needed in this implementation.


Regards,

Peter

View solution in original post

2 Replies

Avatar

Correct answer by
Community Advisor

Hi Lyon,

 

There's more modern way than using the cocoon one. Luckly sling project does not force us to use it. Hene we can rely on org.xml packages.

 

Please see following excellent blog post by @ Imran Khan:

https://medium.com/@toimrank/link-checker-and-transformer-381d4f245d12

 

Here, we are using org.xml.sax.helpers.AttributesImpl as alternative to org.apache.cocoon.xml.sax.AttributesImpl and AbstractSAXPipe is no longer needed in this implementation.


Regards,

Peter