Re: Cocoon java function call Byte code verification failed

gelo1234 <[email protected]> Tue, 5 Feb 2019 11:56:09 +0100
Newsgroups gmane.text.xml.cocoon.user
Message-ID <CAPJaKUpr=C=4cGB3jmcbekE7GLCNZWx-OR4Rguv=m0aodnNeHA@mail.gmail.com>
--0000000000009961ea0581237544
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable

Hello Senthilkumar,

The problem is related to String Pool implementation that has changed in
the Java 8 spec. I suppose you were running the previous Java release (7,
6?) and switched now to Java 8?
Unfortunately you cannot use Java8 with the current Cocoon 2.1.11 stack
unless you change the Java compiler underneath or write your own
Classloader code to be compliant with the new String Pool
implementation used by Java8. The EASIEST way is to replace the current
Java compiler with NATIVE Java8 javac compiler inside Cocoon stack :) It
helped us get our Application "UNTOUCHED" onto Java 8 successfully :)

HERE is how:
1. Just look for "Programming languages" in WEB-INF/cocoon.xconf (old
config from Cocoon before Spring - from Avalon framework)

<!-- Programming Languages: -->
  <programming-languages>
    <java-language logger=3D"core.language.java" name=3D"java">
      <!-- Specifies which formatter to use to format source code.
           This parameter is optional.
           It is commented out because of bug #5689: Java "code-formatter"
incorrectly formats double values
      <parameter name=3D"code-formatter"
value=3D"org.apache.cocoon.components.language.programming.java.JstyleForma=
tter"/>
      -->
      <!-- A singleton-like implementation of a ClassLoader -->
      <parameter name=3D"class-loader"
value=3D"org.apache.cocoon.components.classloader.ClassLoaderManagerImpl"/>

      <!-- Compiler parameter specifies which class to use to compile Java.
           Possible variants are:
             Javac. Requires javac.jar (included with JDK as
lib/toools.jar).
             Pizza. Requires pizza.jar (included with Cocoon distribution).
             Jikes. Requires IBM jikes compiler to be present in the PATH
-->
      <parameter name=3D"compiler"
value=3D"org.apache.cocoon.components.language.programming.java.Javac"/>
</java-language>

    <!-- Interpreted JavaScript language -->
    <js-language logger=3D"core.language.js" name=3D"js"/>
</programming-languages>

You have 3 options:
1. Standard Javac
2. Pizza (open source)
3. Jikes from IBM

We tried Pizza but without success, that is why we switched to Oracle Javac
- just drop down: tools.jar (from standard Java SDK) into
WEB-INF/lib and Java8 support is added :) No fuss no sweat :)

Greetings,
Greg


wt., 5 lut 2019 o 06:06 Thangavel, Senthil Kumar (LNG-CON)
<[email protected]> napisa=C5=82(a):

> HI,
>
> I am currently running in to the below issue while executing my cocoon
> based web app.
>
> I use cocoon 2.1.11 version, Tomcat 9 and Java 8.
>
>
>
> Could some one help me in identifying the problem and possible fix. Thank=
s
> in advance.
>
>
>
> Caused by: org.apache.bcel.verifier.exc.StructuralCodeConstraintException=
: Instruction GETFIELD constraint violated: Class 'java.lang.String' is ref=
erenced, but cannot be loaded and resolved: 'VERIFIED_REJECTED
>
> full exception chain stacktrace
>
> org.apache.cocoon.ProcessingException: Sitemap: error calling function 'i=
dCheck'
>
>             at <map:call> - file:/C:/Users/IYAMPEAX/Desktop/LN/apache-tom=
cat-9.0.11/webapps/ROOT/tabula-rasa/sitemap.xmap:1463:34
>
>             at <map:serialize type=3D"xml"> - file:/C:/Users/IYAMPEAX/Des=
ktop/LN/apache-tomcat-9.0.11/webapps/ROOT/tabula-rasa/sitemap.xmap:1479:32
>
>             at <map:serialize type=3D"xhtml"> - file:/C:/Users/IYAMPEAX/D=
esktop/LN/apache-tomcat-9.0.11/webapps/ROOT/tabula-rasa/sitemap.xmap:1146:3=
4
>
>             at <map:transform> - file:/C:/Users/IYAMPEAX/Desktop/LN/apach=
e-tomcat-9.0.11/webapps/ROOT/tabula-rasa/sitemap.xmap:1141:67
>
>             at <map:mount> - file:/C:/Users/IYAMPEAX/Desktop/LN/apache-to=
mcat-9.0.11/webapps/ROOT/sitemap.xmap:692:121
>
>             at org.apache.cocoon.ProcessingException.throwLocated(Process=
ingException.java:113)
>
>             at org.apache.cocoon.components.treeprocessor.sitemap.CallFun=
ctionNode.invoke(CallFunctionNode.java:141)
>
>             at org.apache.cocoon.components.treeprocessor.AbstractParentP=
rocessingNode.invokeNodes(AbstractParentProcessingNode.java:47)
>
>             at org.apache.cocoon.components.treeprocessor.sitemap.MatchNo=
de.invoke(MatchNode.java:108)
>
>             at org.apache.cocoon.components.treeprocessor.AbstractParentP=
rocessingNode.invokeNodes(AbstractParentProcessingNode.java:69)
>
>             at org.apache.cocoon.components.treeprocessor.sitemap.Pipelin=
eNode.invoke(PipelineNode.java:143)
>
>             at org.apache.cocoon.components.treeprocessor.AbstractParentP=
rocessingNode.invokeNodes(AbstractParentProcessingNode.java:69)
>
>             at org.apache.cocoon.components.treeprocessor.sitemap.Pipelin=
esNode.invoke(PipelinesNode.java:93)
>
>             at org.apache.cocoon.components.treeprocessor.ConcreteTreePro=
cessor.process(ConcreteTreeProcessor.java:235)
>
>             at org.apache.cocoon.components.treeprocessor.ConcreteTreePro=
cessor.buildPipeline(ConcreteTreeProcessor.java:193)
>
>             at org.apache.cocoon.components.source.impl.SitemapSource.ini=
t(SitemapSource.java:333)
>
>             at org.apache.cocoon.components.source.impl.SitemapSource.<in=
it>(SitemapSource.java:215)
>
>             at org.apache.cocoon.components.source.impl.SitemapSourceFact=
ory.getSource(SitemapSourceFactory.java:68)
>
>             at org.apache.excalibur.source.impl.SourceResolverImpl.resolv=
eURI(SourceResolverImpl.java:208)
>
>             at org.apache.cocoon.components.CocoonComponentManager.resolv=
eURI(CocoonComponentManager.java:558)
>
>             at org.apache.cocoon.components.CocoonComponentManager.resolv=
eURI(CocoonComponentManager.java:558)
>
>             at org.apache.cocoon.components.CocoonComponentManager.resolv=
eURI(CocoonComponentManager.java:558)
>
>             at org.apache.cocoon.environment.AbstractEnvironment.resolveU=
RI(AbstractEnvironment.java:554)
>
>             at org.apache.cocoon.environment.AbstractEnvironment.resolveU=
RI(AbstractEnvironment.java:541)
>
>             at org.apache.cocoon.environment.wrapper.MutableEnvironmentFa=
cade.resolveURI(MutableEnvironmentFacade.java:299)
>
>             at org.apache.cocoon.sitemap.ContentAggregator.setup(ContentA=
ggregator.java:290)
>
>             at org.apache.cocoon.components.pipeline.AbstractProcessingPi=
peline.setupPipeline(AbstractProcessingPipeline.java:385)
>
>             at org.apache.cocoon.components.pipeline.AbstractProcessingPi=
peline.preparePipeline(AbstractProcessingPipeline.java:501)
>
>             at org.apache.cocoon.components.pipeline.AbstractProcessingPi=
peline.prepareInternal(AbstractProcessingPipeline.java:515)
>
>             at org.apache.cocoon.components.source.impl.SitemapSource.ini=
t(SitemapSource.java:343)
>
>             at org.apache.cocoon.components.source.impl.SitemapSource.<in=
it>(SitemapSource.java:215)
>
>             at org.apache.cocoon.components.source.impl.SitemapSourceFact=
ory.getSource(SitemapSourceFactory.java:68)
>
>             at org.apache.excalibur.source.impl.SourceResolverImpl.resolv=
eURI(SourceResolverImpl.java:208)
>
>             at org.apache.cocoon.components.CocoonComponentManager.resolv=
eURI(CocoonComponentManager.java:558)
>
>             at org.apache.cocoon.environment.AbstractEnvironment.resolveU=
RI(AbstractEnvironment.java:554)
>
>             at org.apache.cocoon.environment.AbstractEnvironment.resolveU=
RI(AbstractEnvironment.java:541)
>
>             at org.apache.cocoon.sitemap.ContentAggregator.setup(ContentA=
ggregator.java:290)
>
>             at org.apache.cocoon.components.pipeline.AbstractProcessingPi=
peline.setupPipeline(AbstractProcessingPipeline.java:385)
>
>             at org.apache.cocoon.components.pipeline.AbstractProcessingPi=
peline.preparePipeline(AbstractProcessingPipeline.java:501)
>
>             at org.apache.cocoon.components.pipeline.AbstractProcessingPi=
peline.process(AbstractProcessingPipeline.java:453)
>
>             at org.apache.cocoon.components.treeprocessor.sitemap.Seriali=
zeNode.invoke(SerializeNode.java:144)
>
>             at org.apache.cocoon.components.treeprocessor.AbstractParentP=
rocessingNode.invokeNodes(AbstractParentProcessingNode.java:47)
>
>             at org.apache.cocoon.components.treeprocessor.sitemap.MatchNo=
de.invoke(MatchNode.java:108)
>
>             at org.apache.cocoon.components.treeprocessor.AbstractParentP=
rocessingNode.invokeNodes(AbstractParentProcessingNode.java:69)
>
>             at org.apache.cocoon.components.treeprocessor.sitemap.Pipelin=
eNode.invoke(PipelineNode.java:143)
>
>             at org.apache.cocoon.components.treeprocessor.AbstractParentP=
rocessingNode.invokeNodes(AbstractParentProcessingNode.java:69)
>
>             at org.apache.cocoon.components.treeprocessor.sitemap.Pipelin=
esNode.invoke(PipelinesNode.java:93)
>
>             at org.apache.cocoon.components.treeprocessor.ConcreteTreePro=
cessor.process(ConcreteTreeProcessor.java:235)
>
>             at org.apache.cocoon.components.treeprocessor.ConcreteTreePro=
cessor.process(ConcreteTreeProcessor.java:177)
>
>             at org.apache.cocoon.components.treeprocessor.TreeProcessor.p=
rocess(TreeProcessor.java:254)
>
>             at org.apache.cocoon.components.treeprocessor.sitemap.MountNo=
de.invoke(MountNode.java:118)
>
>             at org.apache.cocoon.components.treeprocessor.AbstractParentP=
rocessingNode.invokeNodes(AbstractParentProcessingNode.java:47)
>
>             at org.apache.cocoon.components.treeprocessor.sitemap.MatchNo=
de.invoke(MatchNode.java:108)
>
>             at org.apache.cocoon.components.treeprocessor.AbstractParentP=
rocessingNode.invokeNodes(AbstractParentProcessingNode.java:69)
>
>             at org.apache.cocoon.components.treeprocessor.sitemap.Pipelin=
eNode.invoke(PipelineNode.java:143)
>
>             at org.apache.cocoon.components.treeprocessor.AbstractParentP=
rocessingNode.invokeNodes(AbstractParentProcessingNode.java:69)
>
>             at org.apache.cocoon.components.treeprocessor.sitemap.Pipelin=
esNode.invoke(PipelinesNode.java:93)
>
>             at org.apache.cocoon.components.treeprocessor.ConcreteTreePro=
cessor.process(ConcreteTreeProcessor.java:235)
>
>             at org.apache.cocoon.components.treeprocessor.ConcreteTreePro=
cessor.process(ConcreteTreeProcessor.java:177)
>
>             at org.apache.cocoon.components.treeprocessor.TreeProcessor.p=
rocess(TreeProcessor.java:254)
>
>             at org.apache.cocoon.Cocoon.process(Cocoon.java:699)
>
>             at org.apache.cocoon.servlet.CocoonServlet.service(CocoonServ=
let.java:1154)
>
>             at javax.servlet.http.HttpServlet.service(HttpServlet.java:74=
1)
>
>             at org.apache.catalina.core.ApplicationFilterChain.internalDo=
Filter(ApplicationFilterChain.java:231)
>
>             at org.apache.catalina.core.ApplicationFilterChain.doFilter(A=
pplicationFilterChain.java:166)
>
>             at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFil=
ter.java:53)
>
>             at org.apache.catalina.core.ApplicationFilterChain.internalDo=
Filter(ApplicationFilterChain.java:193)
>
>             at org.apache.catalina.core.ApplicationFilterChain.doFilter(A=
pplicationFilterChain.java:166)
>
>             at org.apache.catalina.core.StandardWrapperValve.invoke(Stand=
ardWrapperValve.java:199)
>
>             at org.apache.catalina.core.StandardContextValve.invoke(Stand=
ardContextValve.java:96)
>
>             at org.apache.catalina.authenticator.AuthenticatorBase.invoke=
(AuthenticatorBase.java:490)
>
>             at org.apache.catalina.core.StandardHostValve.invoke(Standard=
HostValve.java:139)
>
>             at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorRe=
portValve.java:92)
>
>             at org.apache.catalina.valves.AbstractAccessLogValve.invoke(A=
bstractAccessLogValve.java:668)
>
>             at org.apache.catalina.core.StandardEngineValve.invoke(Standa=
rdEngineValve.java:74)
>
>             at org.apache.catalina.connector.CoyoteAdapter.service(Coyote=
Adapter.java:343)
>
>             at org.apache.coyote.http11.Http11Processor.service(Http11Pro=
cessor.java:408)
>
>             at org.apache.coyote.AbstractProcessorLight.process(AbstractP=
rocessorLight.java:66)
>
>             at org.apache.coyote.AbstractProtocol$ConnectionHandler.proce=
ss(AbstractProtocol.java:770)
>
>             at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doR=
un(NioEndpoint.java:1415)
>
>             at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketP=
rocessorBase.java:49)
>
>             at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPo=
olExecutor.java:1149)
>
>             at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadP=
oolExecutor.java:624)
>
>             at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable=
.run(TaskThread.java:61)
>
>             at java.lang.Thread.run(Thread.java:748)
>
> Caused by: org.apache.avalon.framework.configuration.ConfigurationExcepti=
on: Cannot initialize JavaInterpreter
>
>             at org.apache.cocoon.components.flow.java.JavaInterpreter.ini=
tialize(JavaInterpreter.java:104)
>
>             at org.apache.cocoon.components.flow.java.JavaInterpreter.cal=
lFunction(JavaInterpreter.java:124)
>
>             at org.apache.cocoon.components.treeprocessor.sitemap.CallFun=
ctionNode.invoke(CallFunctionNode.java:139)
>
>             ... 78 more
>
> Caused by: org.apache.bcel.verifier.exc.StructuralCodeConstraintException=
: Instruction GETFIELD constraint violated: Class 'java.lang.String' is ref=
erenced, but cannot be loaded and resolved: 'VERIFIED_REJECTED
>
> Method 'public boolean contentEquals(CharSequence cs)' has an argument ty=
pe that does not pass verification pass 1: 'VERIFIED_REJECTED
>
> Invalid byte tag in constant pool: 18
>
>
>
>
>
> Regards,
>
> Senthilkumar.T
>

--0000000000009961ea0581237544
Content-Type: text/html; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable

<div dir=3D"ltr"><div dir=3D"ltr"><div class=3D"gmail_default" style=3D"fon=
t-size:small">Hello Senthilkumar,</div><div class=3D"gmail_default" style=
=3D"font-size:small"><br></div><div class=3D"gmail_default" style=3D"font-s=
ize:small">The problem is related to String Pool implementation that has ch=
anged in the Java 8 spec. I suppose you were running the previous Java rele=
ase (7, 6?) and switched now to Java 8?</div><div class=3D"gmail_default" s=
tyle=3D"font-size:small">Unfortunately you cannot use Java8 with the curren=
t Cocoon 2.1.11 stack unless you change the Java compiler underneath or wri=
te your own Classloader code to be compliant with the new String Pool</div>=
<div class=3D"gmail_default" style=3D"font-size:small">implementation used =
by Java8. The EASIEST way is to replace the current Java compiler with NATI=
VE Java8 javac compiler inside Cocoon stack :) It helped us get our Applica=
tion &quot;UNTOUCHED&quot; onto Java 8 successfully :)=C2=A0</div><div clas=
s=3D"gmail_default" style=3D"font-size:small"><br></div><div class=3D"gmail=
_default" style=3D"font-size:small">HERE is how: <br></div><div class=3D"gm=
ail_default" style=3D"font-size:small">1. Just look for &quot;Programming l=
anguages&quot; in WEB-INF/cocoon.xconf (old config from Cocoon before Sprin=
g - from Avalon framework)</div><div class=3D"gmail_default" style=3D"font-=
size:small"><br></div><div class=3D"gmail_default" style=3D"font-size:small=
">&lt;!-- Programming Languages: --&gt;<br>=C2=A0 &lt;programming-languages=
&gt;<br>=C2=A0=C2=A0=C2=A0 &lt;java-language logger=3D&quot;core.language.j=
ava&quot; name=3D&quot;java&quot;&gt;<br>=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0 &lt=
;!-- Specifies which formatter to use to format source code.<br>=C2=A0=C2=
=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0 This parameter is optio=
nal. <br>=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0 It is=
 commented out because of bug #5689: Java &quot;code-formatter&quot; incorr=
ectly formats double values<br>=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0 &lt;parameter=
 name=3D&quot;code-formatter&quot; value=3D&quot;org.apache.cocoon.componen=
ts.language.programming.java.JstyleFormatter&quot;/&gt;<br>=C2=A0=C2=A0=C2=
=A0=C2=A0=C2=A0 --&gt;<br>=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0 &lt;!-- A singleto=
n-like implementation of a ClassLoader --&gt;<br>=C2=A0=C2=A0=C2=A0=C2=A0=
=C2=A0 &lt;parameter name=3D&quot;class-loader&quot; value=3D&quot;org.apac=
he.cocoon.components.classloader.ClassLoaderManagerImpl&quot;/&gt;<br><br>=
=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0 &lt;!-- Compiler parameter specifies which c=
lass to use to compile Java.<br>=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=
=C2=A0=C2=A0=C2=A0 Possible variants are:<br>=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=
=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0 Javac. Requires javac.jar (inclu=
ded with JDK as lib/toools.jar).<br>=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=
=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0 Pizza. Requires pizza.jar (included with =
Cocoon distribution).<br>=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=
=C2=A0=C2=A0=C2=A0=C2=A0 Jikes. Requires IBM jikes compiler to be present i=
n the PATH=C2=A0 --&gt;<br>=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0 &lt;parameter nam=
e=3D&quot;compiler&quot; value=3D&quot;org.apache.cocoon.components.languag=
e.programming.java.Javac&quot;/&gt;<br>&lt;/java-language&gt;<br><br>=C2=A0=
=C2=A0=C2=A0 &lt;!-- Interpreted JavaScript language --&gt;<br>=C2=A0=C2=A0=
=C2=A0 &lt;js-language logger=3D&quot;core.language.js&quot; name=3D&quot;j=
s&quot;/&gt;<br>&lt;/programming-languages&gt;<br></div><div class=3D"gmail=
_default" style=3D"font-size:small"><br></div><div class=3D"gmail_default" =
style=3D"font-size:small">You have 3 options: <br></div><div class=3D"gmail=
_default" style=3D"font-size:small">1. Standard Javac</div><div class=3D"gm=
ail_default" style=3D"font-size:small">2. Pizza (open source)<br></div><div=
 class=3D"gmail_default" style=3D"font-size:small">3. Jikes from IBM<br></d=
iv><div class=3D"gmail_default" style=3D"font-size:small"><br></div><div cl=
ass=3D"gmail_default" style=3D"font-size:small">We tried Pizza but without =
success, that is why we switched to Oracle Javac - just drop down: tools.ja=
r (from standard Java SDK) into</div><div class=3D"gmail_default" style=3D"=
font-size:small">WEB-INF/lib and Java8 support is added :) No fuss no sweat=
 :)</div><div class=3D"gmail_default" style=3D"font-size:small"><br></div><=
div class=3D"gmail_default" style=3D"font-size:small">Greetings,</div><div =
class=3D"gmail_default" style=3D"font-size:small">Greg</div><div class=3D"g=
mail_default" style=3D"font-size:small"><br></div></div></div><br><div clas=
s=3D"gmail_quote"><div dir=3D"ltr" class=3D"gmail_attr">wt., 5 lut 2019 o 0=
6:06=C2=A0Thangavel, Senthil Kumar (LNG-CON) &lt;SenthilKumar.Thangavel@lex=
isnexis.com.invalid&gt; napisa=C5=82(a):<br></div><blockquote class=3D"gmai=
l_quote" style=3D"margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,20=
4,204);padding-left:1ex">





<div lang=3D"EN-US">
<div class=3D"gmail-m_3365527828426142004WordSection1">
<p class=3D"MsoNormal">HI,<u></u><u></u></p>
<p class=3D"MsoNormal">I am currently running in to the below issue while e=
xecuting my cocoon based web app.<u></u><u></u></p>
<p class=3D"MsoNormal">I use cocoon 2.1.11 version, Tomcat 9 and Java 8. <u=
></u><u></u></p>
<p class=3D"MsoNormal"><u></u>=C2=A0<u></u></p>
<p class=3D"MsoNormal">Could some one help me in identifying the problem an=
d possible fix. Thanks in advance.<u></u><u></u></p>
<p class=3D"MsoNormal"><u></u>=C2=A0<u></u></p>
<pre><span style=3D"font-family:&quot;Verdana&quot;,sans-serif;color:black"=
>Caused by: org.apache.bcel.verifier.exc.StructuralCodeConstraintException:=
 Instruction GETFIELD constraint violated: Class &#39;java.lang.String&#39;=
 is referenced, but cannot be loaded and resolved: &#39;VERIFIED_REJECTED<u=
></u><u></u></span></pre>
<p><span style=3D"font-size:12pt;font-family:&quot;Verdana&quot;,sans-serif=
;color:rgb(51,102,153)">full exception chain stacktrace</span><span style=
=3D"font-size:12pt;font-family:&quot;Verdana&quot;,sans-serif;color:black">=
<u></u><u></u></span></p>
<pre style=3D"word-spacing:0px"><span style=3D"font-family:&quot;Verdana&qu=
ot;,sans-serif;color:black">org.apache.cocoon.ProcessingException: Sitemap:=
 error calling function &#39;idCheck&#39;<u></u><u></u></span></pre>
<pre><span style=3D"font-family:&quot;Verdana&quot;,sans-serif;color:black"=
>=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0 at &lt;=
map:call&gt; - file:/C:/Users/IYAMPEAX/Desktop/LN/apache-tomcat-9.0.11/weba=
pps/ROOT/tabula-rasa/sitemap.xmap:1463:34<u></u><u></u></span></pre>
<pre><span style=3D"font-family:&quot;Verdana&quot;,sans-serif;color:black"=
>=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0 at &lt;=
map:serialize type=3D&quot;xml&quot;&gt; - file:/C:/Users/IYAMPEAX/Desktop/=
LN/apache-tomcat-9.0.11/webapps/ROOT/tabula-rasa/sitemap.xmap:1479:32<u></u=
><u></u></span></pre>
<pre><span style=3D"font-family:&quot;Verdana&quot;,sans-serif;color:black"=
>=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0 at &lt;=
map:serialize type=3D&quot;xhtml&quot;&gt; - file:/C:/Users/IYAMPEAX/Deskto=
p/LN/apache-tomcat-9.0.11/webapps/ROOT/tabula-rasa/sitemap.xmap:1146:34<u><=
/u><u></u></span></pre>
<pre><span style=3D"font-family:&quot;Verdana&quot;,sans-serif;color:black"=
>=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0 at &lt;=
map:transform&gt; - file:/C:/Users/IYAMPEAX/Desktop/LN/apache-tomcat-9.0.11=
/webapps/ROOT/tabula-rasa/sitemap.xmap:1141:67<u></u><u></u></span></pre>
<pre><span style=3D"font-family:&quot;Verdana&quot;,sans-serif;color:black"=
>=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0 at &lt;=
map:mount&gt; - file:/C:/Users/IYAMPEAX/Desktop/LN/apache-tomcat-9.0.11/web=
apps/ROOT/sitemap.xmap:692:121<u></u><u></u></span></pre>
<pre><span style=3D"font-family:&quot;Verdana&quot;,sans-serif;color:black"=
>=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0 at org.=
apache.cocoon.ProcessingException.throwLocated(ProcessingException.java:113=
)<u></u><u></u></span></pre>
<pre><span style=3D"font-family:&quot;Verdana&quot;,sans-serif;color:black"=
>=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0 at org.=
apache.cocoon.components.treeprocessor.sitemap.CallFunctionNode.invoke(Call=
FunctionNode.java:141)<u></u><u></u></span></pre>
<pre><span style=3D"font-family:&quot;Verdana&quot;,sans-serif;color:black"=
>=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0 at org.=
apache.cocoon.components.treeprocessor.AbstractParentProcessingNode.invokeN=
odes(AbstractParentProcessingNode.java:47)<u></u><u></u></span></pre>
<pre><span style=3D"font-family:&quot;Verdana&quot;,sans-serif;color:black"=
>=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0 at org.=
apache.cocoon.components.treeprocessor.sitemap.MatchNode.invoke(MatchNode.j=
ava:108)<u></u><u></u></span></pre>
<pre><span style=3D"font-family:&quot;Verdana&quot;,sans-serif;color:black"=
>=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0 at org.=
apache.cocoon.components.treeprocessor.AbstractParentProcessingNode.invokeN=
odes(AbstractParentProcessingNode.java:69)<u></u><u></u></span></pre>
<pre><span style=3D"font-family:&quot;Verdana&quot;,sans-serif;color:black"=
>=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0 at org.=
apache.cocoon.components.treeprocessor.sitemap.PipelineNode.invoke(Pipeline=
Node.java:143)<u></u><u></u></span></pre>
<pre><span style=3D"font-family:&quot;Verdana&quot;,sans-serif;color:black"=
>=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0 at org.=
apache.cocoon.components.treeprocessor.AbstractParentProcessingNode.invokeN=
odes(AbstractParentProcessingNode.java:69)<u></u><u></u></span></pre>
<pre><span style=3D"font-family:&quot;Verdana&quot;,sans-serif;color:black"=
>=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0 at org.=
apache.cocoon.components.treeprocessor.sitemap.PipelinesNode.invoke(Pipelin=
esNode.java:93)<u></u><u></u></span></pre>
<pre><span style=3D"font-family:&quot;Verdana&quot;,sans-serif;color:black"=
>=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0 at org.=
apache.cocoon.components.treeprocessor.ConcreteTreeProcessor.process(Concre=
teTreeProcessor.java:235)<u></u><u></u></span></pre>
<pre><span style=3D"font-family:&quot;Verdana&quot;,sans-serif;color:black"=
>=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0 at org.=
apache.cocoon.components.treeprocessor.ConcreteTreeProcessor.buildPipeline(=
ConcreteTreeProcessor.java:193)<u></u><u></u></span></pre>
<pre><span style=3D"font-family:&quot;Verdana&quot;,sans-serif;color:black"=
>=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0 at org.=
apache.cocoon.components.source.impl.SitemapSource.init(SitemapSource.java:=
333)<u></u><u></u></span></pre>
<pre><span style=3D"font-family:&quot;Verdana&quot;,sans-serif;color:black"=
>=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0 at org.=
apache.cocoon.components.source.impl.SitemapSource.&lt;init&gt;(SitemapSour=
ce.java:215)<u></u><u></u></span></pre>
<pre><span style=3D"font-family:&quot;Verdana&quot;,sans-serif;color:black"=
>=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0 at org.=
apache.cocoon.components.source.impl.SitemapSourceFactory.getSource(Sitemap=
SourceFactory.java:68)<u></u><u></u></span></pre>
<pre><span style=3D"font-family:&quot;Verdana&quot;,sans-serif;color:black"=
>=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0 at org.=
apache.excalibur.source.impl.SourceResolverImpl.resolveURI(SourceResolverIm=
pl.java:208)<u></u><u></u></span></pre>
<pre><span style=3D"font-family:&quot;Verdana&quot;,sans-serif;color:black"=
>=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0 at org.=
apache.cocoon.components.CocoonComponentManager.resolveURI(CocoonComponentM=
anager.java:558)<u></u><u></u></span></pre>
<pre><span style=3D"font-family:&quot;Verdana&quot;,sans-serif;color:black"=
>=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0 at org.=
apache.cocoon.components.CocoonComponentManager.resolveURI(CocoonComponentM=
anager.java:558)<u></u><u></u></span></pre>
<pre><span style=3D"font-family:&quot;Verdana&quot;,sans-serif;color:black"=
>=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0 at org.=
apache.cocoon.components.CocoonComponentManager.resolveURI(CocoonComponentM=
anager.java:558)<u></u><u></u></span></pre>
<pre><span style=3D"font-family:&quot;Verdana&quot;,sans-serif;color:black"=
>=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0 at org.=
apache.cocoon.environment.AbstractEnvironment.resolveURI(AbstractEnvironmen=
t.java:554)<u></u><u></u></span></pre>
<pre><span style=3D"font-family:&quot;Verdana&quot;,sans-serif;color:black"=
>=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0 at org.=
apache.cocoon.environment.AbstractEnvironment.resolveURI(AbstractEnvironmen=
t.java:541)<u></u><u></u></span></pre>
<pre><span style=3D"font-family:&quot;Verdana&quot;,sans-serif;color:black"=
>=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0 at org.=
apache.cocoon.environment.wrapper.MutableEnvironmentFacade.resolveURI(Mutab=
leEnvironmentFacade.java:299)<u></u><u></u></span></pre>
<pre><span style=3D"font-family:&quot;Verdana&quot;,sans-serif;color:black"=
>=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0 at org.=
apache.cocoon.sitemap.ContentAggregator.setup(ContentAggregator.java:290)<u=
></u><u></u></span></pre>
<pre><span style=3D"font-family:&quot;Verdana&quot;,sans-serif;color:black"=
>=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0 at org.=
apache.cocoon.components.pipeline.AbstractProcessingPipeline.setupPipeline(=
AbstractProcessingPipeline.java:385)<u></u><u></u></span></pre>
<pre><span style=3D"font-family:&quot;Verdana&quot;,sans-serif;color:black"=
>=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0 at org.=
apache.cocoon.components.pipeline.AbstractProcessingPipeline.preparePipelin=
e(AbstractProcessingPipeline.java:501)<u></u><u></u></span></pre>
<pre><span style=3D"font-family:&quot;Verdana&quot;,sans-serif;color:black"=
>=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0 at org.=
apache.cocoon.components.pipeline.AbstractProcessingPipeline.prepareInterna=
l(AbstractProcessingPipeline.java:515)<u></u><u></u></span></pre>
<pre><span style=3D"font-family:&quot;Verdana&quot;,sans-serif;color:black"=
>=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0 at org.=
apache.cocoon.components.source.impl.SitemapSource.init(SitemapSource.java:=
343)<u></u><u></u></span></pre>
<pre><span style=3D"font-family:&quot;Verdana&quot;,sans-serif;color:black"=
>=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0 at org.=
apache.cocoon.components.source.impl.SitemapSource.&lt;init&gt;(SitemapSour=
ce.java:215)<u></u><u></u></span></pre>
<pre><span style=3D"font-family:&quot;Verdana&quot;,sans-serif;color:black"=
>=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0 at org.=
apache.cocoon.components.source.impl.SitemapSourceFactory.getSource(Sitemap=
SourceFactory.java:68)<u></u><u></u></span></pre>
<pre><span style=3D"font-family:&quot;Verdana&quot;,sans-serif;color:black"=
>=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0 at org.=
apache.excalibur.source.impl.SourceResolverImpl.resolveURI(SourceResolverIm=
pl.java:208)<u></u><u></u></span></pre>
<pre><span style=3D"font-family:&quot;Verdana&quot;,sans-serif;color:black"=
>=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0 at org.=
apache.cocoon.components.CocoonComponentManager.resolveURI(CocoonComponentM=
anager.java:558)<u></u><u></u></span></pre>
<pre><span style=3D"font-family:&quot;Verdana&quot;,sans-serif;color:black"=
>=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0 at org.=
apache.cocoon.environment.AbstractEnvironment.resolveURI(AbstractEnvironmen=
t.java:554)<u></u><u></u></span></pre>
<pre><span style=3D"font-family:&quot;Verdana&quot;,sans-serif;color:black"=
>=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0 at org.=
apache.cocoon.environment.AbstractEnvironment.resolveURI(AbstractEnvironmen=
t.java:541)<u></u><u></u></span></pre>
<pre><span style=3D"font-family:&quot;Verdana&quot;,sans-serif;color:black"=
>=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0 at org.=
apache.cocoon.sitemap.ContentAggregator.setup(ContentAggregator.java:290)<u=
></u><u></u></span></pre>
<pre><span style=3D"font-family:&quot;Verdana&quot;,sans-serif;color:black"=
>=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0 at org.=
apache.cocoon.components.pipeline.AbstractProcessingPipeline.setupPipeline(=
AbstractProcessingPipeline.java:385)<u></u><u></u></span></pre>
<pre><span style=3D"font-family:&quot;Verdana&quot;,sans-serif;color:black"=
>=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0 at org.=
apache.cocoon.components.pipeline.AbstractProcessingPipeline.preparePipelin=
e(AbstractProcessingPipeline.java:501)<u></u><u></u></span></pre>
<pre><span style=3D"font-family:&quot;Verdana&quot;,sans-serif;color:black"=
>=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0 at org.=
apache.cocoon.components.pipeline.AbstractProcessingPipeline.process(Abstra=
ctProcessingPipeline.java:453)<u></u><u></u></span></pre>
<pre><span style=3D"font-family:&quot;Verdana&quot;,sans-serif;color:black"=
>=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0 at org.=
apache.cocoon.components.treeprocessor.sitemap.SerializeNode.invoke(Seriali=
zeNode.java:144)<u></u><u></u></span></pre>
<pre><span style=3D"font-family:&quot;Verdana&quot;,sans-serif;color:black"=
>=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0 at org.=
apache.cocoon.components.treeprocessor.AbstractParentProcessingNode.invokeN=
odes(AbstractParentProcessingNode.java:47)<u></u><u></u></span></pre>
<pre><span style=3D"font-family:&quot;Verdana&quot;,sans-serif;color:black"=
>=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0 at org.=
apache.cocoon.components.treeprocessor.sitemap.MatchNode.invoke(MatchNode.j=
ava:108)<u></u><u></u></span></pre>
<pre><span style=3D"font-family:&quot;Verdana&quot;,sans-serif;color:black"=
>=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0 at org.=
apache.cocoon.components.treeprocessor.AbstractParentProcessingNode.invokeN=
odes(AbstractParentProcessingNode.java:69)<u></u><u></u></span></pre>
<pre><span style=3D"font-family:&quot;Verdana&quot;,sans-serif;color:black"=
>=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0 at org.=
apache.cocoon.components.treeprocessor.sitemap.PipelineNode.invoke(Pipeline=
Node.java:143)<u></u><u></u></span></pre>
<pre><span style=3D"font-family:&quot;Verdana&quot;,sans-serif;color:black"=
>=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0 at org.=
apache.cocoon.components.treeprocessor.AbstractParentProcessingNode.invokeN=
odes(AbstractParentProcessingNode.java:69)<u></u><u></u></span></pre>
<pre><span style=3D"font-family:&quot;Verdana&quot;,sans-serif;color:black"=
>=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0 at org.=
apache.cocoon.components.treeprocessor.sitemap.PipelinesNode.invoke(Pipelin=
esNode.java:93)<u></u><u></u></span></pre>
<pre><span style=3D"font-family:&quot;Verdana&quot;,sans-serif;color:black"=
>=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0 at org.=
apache.cocoon.components.treeprocessor.ConcreteTreeProcessor.process(Concre=
teTreeProcessor.java:235)<u></u><u></u></span></pre>
<pre><span style=3D"font-family:&quot;Verdana&quot;,sans-serif;color:black"=
>=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0 at org.=
apache.cocoon.components.treeprocessor.ConcreteTreeProcessor.process(Concre=
teTreeProcessor.java:177)<u></u><u></u></span></pre>
<pre><span style=3D"font-family:&quot;Verdana&quot;,sans-serif;color:black"=
>=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0 at org.=
apache.cocoon.components.treeprocessor.TreeProcessor.process(TreeProcessor.=
java:254)<u></u><u></u></span></pre>
<pre><span style=3D"font-family:&quot;Verdana&quot;,sans-serif;color:black"=
>=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0 at org.=
apache.cocoon.components.treeprocessor.sitemap.MountNode.invoke(MountNode.j=
ava:118)<u></u><u></u></span></pre>
<pre><span style=3D"font-family:&quot;Verdana&quot;,sans-serif;color:black"=
>=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0 at org.=
apache.cocoon.components.treeprocessor.AbstractParentProcessingNode.invokeN=
odes(AbstractParentProcessingNode.java:47)<u></u><u></u></span></pre>
<pre><span style=3D"font-family:&quot;Verdana&quot;,sans-serif;color:black"=
>=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0 at org.=
apache.cocoon.components.treeprocessor.sitemap.MatchNode.invoke(MatchNode.j=
ava:108)<u></u><u></u></span></pre>
<pre><span style=3D"font-family:&quot;Verdana&quot;,sans-serif;color:black"=
>=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0 at org.=
apache.cocoon.components.treeprocessor.AbstractParentProcessingNode.invokeN=
odes(AbstractParentProcessingNode.java:69)<u></u><u></u></span></pre>
<pre><span style=3D"font-family:&quot;Verdana&quot;,sans-serif;color:black"=
>=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0 at org.=
apache.cocoon.components.treeprocessor.sitemap.PipelineNode.invoke(Pipeline=
Node.java:143)<u></u><u></u></span></pre>
<pre><span style=3D"font-family:&quot;Verdana&quot;,sans-serif;color:black"=
>=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0 at org.=
apache.cocoon.components.treeprocessor.AbstractParentProcessingNode.invokeN=
odes(AbstractParentProcessingNode.java:69)<u></u><u></u></span></pre>
<pre><span style=3D"font-family:&quot;Verdana&quot;,sans-serif;color:black"=
>=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0 at org.=
apache.cocoon.components.treeprocessor.sitemap.PipelinesNode.invoke(Pipelin=
esNode.java:93)<u></u><u></u></span></pre>
<pre><span style=3D"font-family:&quot;Verdana&quot;,sans-serif;color:black"=
>=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0 at org.=
apache.cocoon.components.treeprocessor.ConcreteTreeProcessor.process(Concre=
teTreeProcessor.java:235)<u></u><u></u></span></pre>
<pre><span style=3D"font-family:&quot;Verdana&quot;,sans-serif;color:black"=
>=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0 at org.=
apache.cocoon.components.treeprocessor.ConcreteTreeProcessor.process(Concre=
teTreeProcessor.java:177)<u></u><u></u></span></pre>
<pre><span style=3D"font-family:&quot;Verdana&quot;,sans-serif;color:black"=
>=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0 at org.=
apache.cocoon.components.treeprocessor.TreeProcessor.process(TreeProcessor.=
java:254)<u></u><u></u></span></pre>
<pre><span style=3D"font-family:&quot;Verdana&quot;,sans-serif;color:black"=
>=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0 at org.=
apache.cocoon.Cocoon.process(Cocoon.java:699)<u></u><u></u></span></pre>
<pre><span style=3D"font-family:&quot;Verdana&quot;,sans-serif;color:black"=
>=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0 at org.=
apache.cocoon.servlet.CocoonServlet.service(CocoonServlet.java:1154)<u></u>=
<u></u></span></pre>
<pre><span style=3D"font-family:&quot;Verdana&quot;,sans-serif;color:black"=
>=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0 at java=
x.servlet.http.HttpServlet.service(HttpServlet.java:741)<u></u><u></u></spa=
n></pre>
<pre><span style=3D"font-family:&quot;Verdana&quot;,sans-serif;color:black"=
>=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0 at org.=
apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFil=
terChain.java:231)<u></u><u></u></span></pre>
<pre><span style=3D"font-family:&quot;Verdana&quot;,sans-serif;color:black"=
>=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0 at org.=
apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain=
.java:166)<u></u><u></u></span></pre>
<pre><span style=3D"font-family:&quot;Verdana&quot;,sans-serif;color:black"=
>=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0 at org.=
apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53)<u></u><u=
></u></span></pre>
<pre><span style=3D"font-family:&quot;Verdana&quot;,sans-serif;color:black"=
>=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0 at org.=
apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFil=
terChain.java:193)<u></u><u></u></span></pre>
<pre><span style=3D"font-family:&quot;Verdana&quot;,sans-serif;color:black"=
>=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0 at org.=
apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain=
.java:166)<u></u><u></u></span></pre>
<pre><span style=3D"font-family:&quot;Verdana&quot;,sans-serif;color:black"=
>=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0 at org.=
apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:=
199)<u></u><u></u></span></pre>
<pre><span style=3D"font-family:&quot;Verdana&quot;,sans-serif;color:black"=
>=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0 at org.=
apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:=
96)<u></u><u></u></span></pre>
<pre><span style=3D"font-family:&quot;Verdana&quot;,sans-serif;color:black"=
>=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0 at org.=
apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.ja=
va:490)<u></u><u></u></span></pre>
<pre><span style=3D"font-family:&quot;Verdana&quot;,sans-serif;color:black"=
>=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0 at org.=
apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:139)<u=
></u><u></u></span></pre>
<pre><span style=3D"font-family:&quot;Verdana&quot;,sans-serif;color:black"=
>=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0 at org.=
apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92)<u>=
</u><u></u></span></pre>
<pre><span style=3D"font-family:&quot;Verdana&quot;,sans-serif;color:black"=
>=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0 at org.=
apache.catalina.valves.AbstractAccessLogValve.invoke(AbstractAccessLogValve=
.java:668)<u></u><u></u></span></pre>
<pre><span style=3D"font-family:&quot;Verdana&quot;,sans-serif;color:black"=
>=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0 at org.=
apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74=
)<u></u><u></u></span></pre>
<pre><span style=3D"font-family:&quot;Verdana&quot;,sans-serif;color:black"=
>=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0 at org.=
apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:343)<u><=
/u><u></u></span></pre>
<pre><span style=3D"font-family:&quot;Verdana&quot;,sans-serif;color:black"=
>=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0 at org.=
apache.coyote.http11.Http11Processor.service(Http11Processor.java:408)<u></=
u><u></u></span></pre>
<pre><span style=3D"font-family:&quot;Verdana&quot;,sans-serif;color:black"=
>=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0 at org.=
apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:66=
)<u></u><u></u></span></pre>
<pre><span style=3D"font-family:&quot;Verdana&quot;,sans-serif;color:black"=
>=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0 at org.=
apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.j=
ava:770)<u></u><u></u></span></pre>
<pre><span style=3D"font-family:&quot;Verdana&quot;,sans-serif;color:black"=
>=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0 at org.=
apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1=
415)<u></u><u></u></span></pre>
<pre><span style=3D"font-family:&quot;Verdana&quot;,sans-serif;color:black"=
>=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0 at org.=
apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49)=
<u></u><u></u></span></pre>
<pre><span style=3D"font-family:&quot;Verdana&quot;,sans-serif;color:black"=
>=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0 at java=
.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149)=
<u></u><u></u></span></pre>
<pre><span style=3D"font-family:&quot;Verdana&quot;,sans-serif;color:black"=
>=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0 at java=
.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)=
<u></u><u></u></span></pre>
<pre><span style=3D"font-family:&quot;Verdana&quot;,sans-serif;color:black"=
>=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0 at org.=
apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:=
61)<u></u><u></u></span></pre>
<pre><span style=3D"font-family:&quot;Verdana&quot;,sans-serif;color:black"=
>=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0 at java=
.lang.Thread.run(Thread.java:748)<u></u><u></u></span></pre>
<pre><span style=3D"font-family:&quot;Verdana&quot;,sans-serif;color:black"=
>Caused by: org.apache.avalon.framework.configuration.ConfigurationExceptio=
n: Cannot initialize JavaInterpreter<u></u><u></u></span></pre>
<pre><span style=3D"font-family:&quot;Verdana&quot;,sans-serif;color:black"=
>=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0 at org.=
apache.cocoon.components.flow.java.JavaInterpreter.initialize(JavaInterpret=
er.java:104)<u></u><u></u></span></pre>
<pre><span style=3D"font-family:&quot;Verdana&quot;,sans-serif;color:black"=
>=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0 at org.=
apache.cocoon.components.flow.java.JavaInterpreter.callFunction(JavaInterpr=
eter.java:124)<u></u><u></u></span></pre>
<pre><span style=3D"font-family:&quot;Verdana&quot;,sans-serif;color:black"=
>=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0 at org.=
apache.cocoon.components.treeprocessor.sitemap.CallFunctionNode.invoke(Call=
FunctionNode.java:139)<u></u><u></u></span></pre>
<pre><span style=3D"font-family:&quot;Verdana&quot;,sans-serif;color:black"=
>=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0 ... 78 =
more<u></u><u></u></span></pre>
<pre><span style=3D"font-family:&quot;Verdana&quot;,sans-serif;color:black"=
>Caused by: org.apache.bcel.verifier.exc.StructuralCodeConstraintException:=
 Instruction GETFIELD constraint violated: Class &#39;java.lang.String&#39;=
 is referenced, but cannot be loaded and resolved: &#39;VERIFIED_REJECTED<u=
></u><u></u></span></pre>
<pre><span style=3D"font-family:&quot;Verdana&quot;,sans-serif;color:black"=
>Method &#39;public boolean contentEquals(CharSequence cs)&#39; has an argu=
ment type that does not pass verification pass 1: &#39;VERIFIED_REJECTED<u>=
</u><u></u></span></pre>
<pre><span style=3D"font-family:&quot;Verdana&quot;,sans-serif;color:black"=
>Invalid byte tag in constant pool: 18<u></u><u></u></span></pre>
<p class=3D"MsoNormal"><u></u>=C2=A0<u></u></p>
<p class=3D"MsoNormal">=C2=A0<u></u><u></u></p>
<p class=3D"MsoNormal">Regards,<u></u><u></u></p>
<p class=3D"MsoNormal">Senthilkumar.T<u></u><u></u></p>
</div>
</div>

</blockquote></div>

--0000000000009961ea0581237544--