<html>
  <head>
    <meta content="text/html; charset=ISO-8859-1"
      http-equiv="Content-Type">
  </head>
  <body bgcolor="#FFFFFF" text="#000000">
    <br>
    <div class="moz-cite-prefix">Op 21-03-13 13:51, Andr&eacute; Fr&oacute;es schreef:<br>
    </div>
    <blockquote
cite="mid:CAC8f_wVHi+s316zomg5gricpzfF=BAd9tdw7Eq6hMz+4HBfPSA@mail.gmail.com"
      type="cite">
      <div dir="ltr">I forgot to mention, i changed my xml invoke.
        <div><br>
        </div>
        <div>-----</div>
        <div>SolverFactory solverFactory = new
          XmlSolverFactory().configure(getDroolsConfiguration());<br>
        </div>
        <div>-----</div>
        <div>
          <div>private static ByteArrayInputStream
            getDroolsConfiguration(){</div>
          <div>&nbsp; &nbsp; &nbsp; &nbsp; String t = "&lt;?xml version=\"1.0\"
            encoding=\"UTF-8\"?&gt;"</div>
          <div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; + "&lt;solver&gt;"</div>
          <div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; + "
&nbsp;&lt;solutionClass&gt;com.my.proj.planner.facts.PlannerConfig&lt;/solutionClass&gt;"</div>
          <div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; + "
&nbsp;&lt;planningEntityClass&gt;com.my.proj.planner.facts.WorkOrderFact&lt;/planningEntityClass&gt;"</div>
          <div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; + ""</div>
          <div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; + " &nbsp;&lt;scoreDirectorFactory&gt;"</div>
          <div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; + " &nbsp;
            &nbsp;&lt;scoreDefinitionType&gt;HARD_AND_SOFT&lt;/scoreDefinitionType&gt;"</div>
          <div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; + " &nbsp;
&nbsp;&lt;simpleScoreCalculatorClass&gt;com.my.proj.planner.solver.PlannerScoreCalculator&lt;/simpleScoreCalculatorClass&gt;"</div>
          <div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; + " &nbsp;&lt;/scoreDirectorFactory&gt;"</div>
          <div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; + ""</div>
          <div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; + " &nbsp;&lt;termination&gt;"</div>
          <div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; + " &nbsp;
            &nbsp;&lt;maximumSecondsSpend&gt;1&lt;/maximumSecondsSpend&gt;"</div>
          <div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; + " &nbsp;&lt;/termination&gt;"</div>
          <div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; + " &nbsp;&lt;constructionHeuristic&gt;"</div>
          <div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; + " &nbsp;
&nbsp;&lt;constructionHeuristicType&gt;FIRST_FIT_DECREASING&lt;/constructionHeuristicType&gt;"</div>
          <div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; + " &nbsp;
&nbsp;&lt;constructionHeuristicPickEarlyType&gt;FIRST_LAST_STEP_SCORE_EQUAL_OR_IMPROVING&lt;/constructionHeuristicPickEarlyType&gt;"</div>
          <div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; + " &nbsp;&lt;/constructionHeuristic&gt;"</div>
          <div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; + " &nbsp;&lt;localSearch&gt;"</div>
          <div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; + " &nbsp; &nbsp;&lt;acceptor&gt;"</div>
          <div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; + " &nbsp; &nbsp;
            &nbsp;&lt;planningEntityTabuSize&gt;7&lt;/planningEntityTabuSize&gt;"</div>
          <div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; + " &nbsp; &nbsp;&lt;/acceptor&gt;"</div>
          <div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; + " &nbsp; &nbsp;&lt;forager&gt;"</div>
          <div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; + " &nbsp; &nbsp;
            &nbsp;&lt;minimalAcceptedSelection&gt;1000&lt;/minimalAcceptedSelection&gt;"</div>
          <div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; + " &nbsp; &nbsp;&lt;/forager&gt;"</div>
          <div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; + " &nbsp;&lt;/localSearch&gt;"</div>
          <div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; + "&lt;/solver&gt;";</div>
          <div><br>
          </div>
          <div>&nbsp; &nbsp; <span class="" style="white-space:pre"> </span>byte
            b[] = t.getBytes();</div>
        </div>
      </div>
    </blockquote>
    getBytes() encodes this {@code String} into a sequence of bytes
    using the platform's default charset.<br>
    <br>
    But the XML says it's UTF-8.<br>
    <br>
    Not that that's causing your problem (it's all ascii compatible
    characters) - but just saying: be careful with InputStreams :)<br>
    <blockquote
cite="mid:CAC8f_wVHi+s316zomg5gricpzfF=BAd9tdw7Eq6hMz+4HBfPSA@mail.gmail.com"
      type="cite">
      <div dir="ltr">
        <div>
          <div>&nbsp; &nbsp; <span class="" style="white-space:pre"> </span>return
            new ByteArrayInputStream(b);</div>
          <div>&nbsp; &nbsp; } &nbsp; &nbsp;</div>
        </div>
        <div><br>
        </div>
      </div>
      <div class="gmail_extra"><br>
        <br>
        <div class="gmail_quote">2013/3/21 Andr&eacute; Fr&oacute;es <span dir="ltr">&lt;<a
              moz-do-not-send="true" href="mailto:arfmoraes@gmail.com"
              target="_blank">arfmoraes@gmail.com</a>&gt;</span><br>
          <blockquote class="gmail_quote" style="margin:0 0 0
            .8ex;border-left:1px #ccc solid;padding-left:1ex">
            <div dir="ltr">The exception persist. I added the artifact
              at web project and also checked if it was there at the lib
              when compiled and also checked at glassfish lib folder, it
              is at both places. I still can't figure what is the
              problem with it, it runs perfectly in my mock, as I said
              before, but is not working when invoked by web.
              <div>
                <br>
              </div>
              <div>---------</div>
              <div>
                <div>
                  <div class="h5">
                    <div>SEVERE: Error Rendering
                      View[/protected/crud/planner.xhtml]</div>
                    <div>javax.el.ELException:
                      /protected/crud/planner.xhtml:
                      com.thoughtworks.xstream.io.StreamException:
                      Cannot create XmlPullParser</div>
                    <div><span style="white-space:pre-wrap"> </span>at
com.sun.faces.facelets.compiler.TextInstruction.write(TextInstruction.java:88)</div>
                    <div><span style="white-space:pre-wrap"> </span>at
com.sun.faces.facelets.compiler.UIInstructions.encodeBegin(UIInstructions.java:82)</div>
                    <div><span style="white-space:pre-wrap"> </span>at
com.sun.faces.facelets.compiler.UILeaf.encodeAll(UILeaf.java:183)</div>
                    <div><span style="white-space:pre-wrap"> </span>at
javax.faces.render.Renderer.encodeChildren(Renderer.java:168)</div>
                    <div><span style="white-space:pre-wrap"> </span>at
javax.faces.component.UIComponentBase.encodeChildren(UIComponentBase.java:845)</div>
                    <div><span style="white-space:pre-wrap"> </span>at
com.sun.faces.renderkit.html_basic.HtmlBasicRenderer.encodeRecursive(HtmlBasicRenderer.java:304)</div>
                    <div><span style="white-space:pre-wrap"> </span>at
com.sun.faces.renderkit.html_basic.GroupRenderer.encodeChildren(GroupRenderer.java:105)</div>
                    <div><span style="white-space:pre-wrap"> </span>at
javax.faces.component.UIComponentBase.encodeChildren(UIComponentBase.java:845)</div>
                    <div><span style="white-space:pre-wrap"> </span>at
com.sun.faces.renderkit.html_basic.HtmlBasicRenderer.encodeRecursive(HtmlBasicRenderer.java:304)</div>
                    <div><span style="white-space:pre-wrap"> </span>at
com.sun.faces.renderkit.html_basic.GroupRenderer.encodeChildren(GroupRenderer.java:105)</div>
                    <div><span style="white-space:pre-wrap"> </span>at
javax.faces.component.UIComponentBase.encodeChildren(UIComponentBase.java:845)</div>
                    <div><span style="white-space:pre-wrap"> </span>at
javax.faces.component.UIComponent.encodeAll(UIComponent.java:1757)</div>
                    <div><span style="white-space:pre-wrap"> </span>at
javax.faces.component.UIComponent.encodeAll(UIComponent.java:1760)</div>
                    <div><span style="white-space:pre-wrap"> </span>at
javax.faces.component.UIComponent.encodeAll(UIComponent.java:1760)</div>
                    <div><span style="white-space:pre-wrap"> </span>at
com.sun.faces.application.view.FaceletViewHandlingStrategy.renderView(FaceletViewHandlingStrategy.java:402)</div>
                    <div><span style="white-space:pre-wrap"> </span>at
com.sun.faces.application.view.MultiViewHandler.renderView(MultiViewHandler.java:131)</div>
                    <div><span style="white-space:pre-wrap"> </span>at
javax.faces.application.ViewHandlerWrapper.renderView(ViewHandlerWrapper.java:288)</div>
                    <div><span style="white-space:pre-wrap"> </span>at
com.sun.faces.lifecycle.RenderResponsePhase.execute(RenderResponsePhase.java:121)</div>
                    <div><span style="white-space:pre-wrap"> </span>at
com.sun.faces.lifecycle.Phase.doPhase(Phase.java:101)</div>
                    <div><span style="white-space:pre-wrap"> </span>at
com.sun.faces.lifecycle.LifecycleImpl.render(LifecycleImpl.java:139)</div>
                    <div><span style="white-space:pre-wrap"> </span>at
javax.faces.webapp.FacesServlet.service(FacesServlet.java:594)</div>
                    <div><span style="white-space:pre-wrap"> </span>at
org.apache.catalina.core.StandardWrapper.service(StandardWrapper.java:1550)</div>
                    <div><span style="white-space:pre-wrap"> </span>at
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:343)</div>
                    <div><span style="white-space:pre-wrap"> </span>at
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:217)</div>
                    <div><span style="white-space:pre-wrap"> </span>at
org.primefaces.webapp.filter.FileUploadFilter.doFilter(FileUploadFilter.java:79)</div>
                    <div><span style="white-space:pre-wrap"> </span>at
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:256)</div>
                    <div><span style="white-space:pre-wrap"> </span>at
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:217)</div>
                    <div><span style="white-space:pre-wrap"> </span>at
com.my.proj.view.listener.LoginFilter.doFilter(LoginFilter.java:40)</div>
                    <div><span style="white-space:pre-wrap"> </span>at
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:256)</div>
                    <div><span style="white-space:pre-wrap"> </span>at
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:217)</div>
                    <div><span style="white-space:pre-wrap"> </span>at
org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:279)</div>
                    <div><span style="white-space:pre-wrap"> </span>at
org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:175)</div>
                    <div><span style="white-space:pre-wrap"> </span>at
org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:655)</div>
                    <div><span style="white-space:pre-wrap"> </span>at
org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:595)</div>
                    <div><span style="white-space:pre-wrap"> </span>at
org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:161)</div>
                    <div><span style="white-space:pre-wrap"> </span>at
org.apache.catalina.connector.CoyoteAdapter.doService(CoyoteAdapter.java:331)</div>
                    <div><span style="white-space:pre-wrap"> </span>at
org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:231)</div>
                    <div><span style="white-space:pre-wrap"> </span>at
com.sun.enterprise.v3.services.impl.ContainerMapper$AdapterCallable.call(ContainerMapper.java:317)</div>
                    <div><span style="white-space:pre-wrap"> </span>at
com.sun.enterprise.v3.services.impl.ContainerMapper.service(ContainerMapper.java:195)</div>
                    <div><span style="white-space:pre-wrap"> </span>at
com.sun.grizzly.http.ProcessorTask.invokeAdapter(ProcessorTask.java:860)</div>
                    <div><span style="white-space:pre-wrap"> </span>at
com.sun.grizzly.http.ProcessorTask.doProcess(ProcessorTask.java:757)</div>
                    <div><span style="white-space:pre-wrap"> </span>at
com.sun.grizzly.http.ProcessorTask.process(ProcessorTask.java:1056)</div>
                    <div><span style="white-space:pre-wrap"> </span>at
com.sun.grizzly.http.DefaultProtocolFilter.execute(DefaultProtocolFilter.java:229)</div>
                    <div><span style="white-space:pre-wrap"> </span>at
com.sun.grizzly.DefaultProtocolChain.executeProtocolFilter(DefaultProtocolChain.java:137)</div>
                    <div><span style="white-space:pre-wrap"> </span>at
com.sun.grizzly.DefaultProtocolChain.execute(DefaultProtocolChain.java:104)</div>
                    <div><span style="white-space:pre-wrap"> </span>at
com.sun.grizzly.DefaultProtocolChain.execute(DefaultProtocolChain.java:90)</div>
                    <div><span style="white-space:pre-wrap"> </span>at
com.sun.grizzly.http.HttpProtocolChain.execute(HttpProtocolChain.java:79)</div>
                    <div><span style="white-space:pre-wrap"> </span>at
com.sun.grizzly.ProtocolChainContextTask.doCall(ProtocolChainContextTask.java:54)</div>
                    <div><span style="white-space:pre-wrap"> </span>at
com.sun.grizzly.SelectionKeyContextTask.call(SelectionKeyContextTask.java:59)</div>
                    <div><span style="white-space:pre-wrap"> </span>at
com.sun.grizzly.ContextTask.run(ContextTask.java:71)</div>
                    <div><span style="white-space:pre-wrap"> </span>at
com.sun.grizzly.util.AbstractThreadPool$Worker.doWork(AbstractThreadPool.java:532)</div>
                    <div><span style="white-space:pre-wrap"> </span>at
com.sun.grizzly.util.AbstractThreadPool$Worker.run(AbstractThreadPool.java:513)</div>
                    <div><span style="white-space:pre-wrap"> </span>at
                      java.lang.Thread.run(Thread.java:722)</div>
                  </div>
                </div>
                <div class="im">
                  <div>Caused by:
                    com.thoughtworks.xstream.io.StreamException: Cannot
                    create XmlPullParser</div>
                  <div>
                    <span style="white-space:pre-wrap"> </span>at
com.thoughtworks.xstream.io.xml.AbstractXppDriver.createReader(AbstractXppDriver.java:60)</div>
                </div>
                <div class="im">
                  <div><span style="white-space:pre-wrap"> </span>at
                    com.thoughtworks.xstream.XStream.fromXML(XStream.java:895)</div>
                  <div><span style="white-space:pre-wrap"> </span>at
org.drools.planner.config.XmlSolverFactory.configure(XmlSolverFactory.java:87)</div>
                  <div><span style="white-space:pre-wrap"> </span>at
org.drools.planner.config.XmlSolverFactory.configure(XmlSolverFactory.java:77)</div>
                  <div><span style="white-space:pre-wrap"> </span>at
                    com.my.proj.planner.plan.ExecutePlan.doPlan(ExecutePlan.java:217)</div>
                  <div><span style="white-space:pre-wrap"> </span>at
com.my.proj.planner.plan.ExecutePlan.planWorkOrders(ExecutePlan.java:206)</div>
                  <div><span style="white-space:pre-wrap"> </span>at
com.my.proj.planner.plan.ExecutePlan.executePlanning(ExecutePlan.java:86)</div>
                  <div><span style="white-space:pre-wrap"> </span>at
com.my.proj.view.controller.crud.PlannerCrud.runPlanner(PlannerCrud.java:187)</div>
                  <div><span style="white-space:pre-wrap"> </span>at
com.my.proj.view.controller.crud.PlannerCrud.attributeResourceById(PlannerCrud.java:87)</div>
                  <div><span style="white-space:pre-wrap"> </span>at
                    sun.reflect.NativeMethodAccessorImpl.invoke0(Native
                    Method)</div>
                  <div><span style="white-space:pre-wrap"> </span>at
sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)</div>
                  <div><span style="white-space:pre-wrap"> </span>at
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)</div>
                  <div><span style="white-space:pre-wrap"> </span>at
                    java.lang.reflect.Method.invoke(Method.java:601)</div>
                  <div><span style="white-space:pre-wrap"> </span>at
                    javax.el.BeanELResolver.invokeMethod(BeanELResolver.java:779)</div>
                  <div><span style="white-space:pre-wrap"> </span>at
                    javax.el.BeanELResolver.invoke(BeanELResolver.java:528)</div>
                  <div><span style="white-space:pre-wrap"> </span>at
                    javax.el.CompositeELResolver.invoke(CompositeELResolver.java:257)</div>
                  <div><span style="white-space:pre-wrap"> </span>at
                    com.sun.el.parser.AstValue.getValue(AstValue.java:134)</div>
                  <div><span style="white-space:pre-wrap"> </span>at
                    com.sun.el.parser.AstValue.getValue(AstValue.java:183)</div>
                  <div><span style="white-space:pre-wrap"> </span>at
                    com.sun.el.ValueExpressionImpl.getValue(ValueExpressionImpl.java:224)</div>
                  <div><span style="white-space:pre-wrap"> </span>at
org.jboss.weld.el.WeldValueExpression.getValue(WeldValueExpression.java:50)</div>
                  <div><span style="white-space:pre-wrap"> </span>at
com.sun.faces.facelets.el.ELText$ELTextVariable.writeText(ELText.java:227)</div>
                  <div><span style="white-space:pre-wrap"> </span>at
com.sun.faces.facelets.el.ELText$ELTextComposite.writeText(ELText.java:150)</div>
                  <div><span style="white-space:pre-wrap"> </span>at
com.sun.faces.facelets.compiler.TextInstruction.write(TextInstruction.java:85)</div>
                  <div><span style="white-space:pre-wrap"> </span>...
                    52 more</div>
                  <div><br>
                  </div>
                  <div>WARNING: StandardWrapperValve[Faces Servlet]:
                    PWC1406: Servlet.service() for servlet Faces Servlet
                    threw exception</div>
                </div>
                <div class="im">
                  <div>com.thoughtworks.xstream.io.StreamException:
                    Cannot create XmlPullParser</div>
                  <div><span style="white-space:pre-wrap"> </span>at
com.thoughtworks.xstream.io.xml.AbstractXppDriver.createReader(AbstractXppDriver.java:60)</div>
                </div>
                <div>
                  <div class="h5">
                    <div><span style="white-space:pre-wrap"> </span>at
com.thoughtworks.xstream.XStream.fromXML(XStream.java:895)</div>
                    <div><span style="white-space:pre-wrap"> </span>at
org.drools.planner.config.XmlSolverFactory.configure(XmlSolverFactory.java:87)</div>
                    <div><span style="white-space:pre-wrap"> </span>at
org.drools.planner.config.XmlSolverFactory.configure(XmlSolverFactory.java:77)</div>
                    <div><span style="white-space:pre-wrap"> </span>at
com.my.proj.planner.plan.ExecutePlan.doPlan(ExecutePlan.java:217)</div>
                    <div><span style="white-space:pre-wrap"> </span>at
com.my.proj.planner.plan.ExecutePlan.planWorkOrders(ExecutePlan.java:206)</div>
                    <div><span style="white-space:pre-wrap"> </span>at
com.my.proj.planner.plan.ExecutePlan.executePlanning(ExecutePlan.java:86)</div>
                    <div><span style="white-space:pre-wrap"> </span>at
com.my.proj.view.controller.crud.PlannerCrud.runPlanner(PlannerCrud.java:187)</div>
                    <div><span style="white-space:pre-wrap"> </span>at
com.my.proj.view.controller.crud.PlannerCrud.attributeResourceById(PlannerCrud.java:87)</div>
                    <div><span style="white-space:pre-wrap"> </span>at
                      sun.reflect.NativeMethodAccessorImpl.invoke0(Native
                      Method)</div>
                    <div><span style="white-space:pre-wrap"> </span>at
sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)</div>
                    <div><span style="white-space:pre-wrap"> </span>at
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)</div>
                    <div><span style="white-space:pre-wrap"> </span>at
                      java.lang.reflect.Method.invoke(Method.java:601)</div>
                    <div><span style="white-space:pre-wrap"> </span>at
javax.el.BeanELResolver.invokeMethod(BeanELResolver.java:779)</div>
                    <div><span style="white-space:pre-wrap"> </span>at
javax.el.BeanELResolver.invoke(BeanELResolver.java:528)</div>
                    <div><span style="white-space:pre-wrap"> </span>at
javax.el.CompositeELResolver.invoke(CompositeELResolver.java:257)</div>
                    <div><span style="white-space:pre-wrap"> </span>at
com.sun.el.parser.AstValue.getValue(AstValue.java:134)</div>
                    <div><span style="white-space:pre-wrap"> </span>at
com.sun.el.parser.AstValue.getValue(AstValue.java:183)</div>
                    <div><span style="white-space:pre-wrap"> </span>at
com.sun.el.ValueExpressionImpl.getValue(ValueExpressionImpl.java:224)</div>
                    <div><span style="white-space:pre-wrap"> </span>at
org.jboss.weld.el.WeldValueExpression.getValue(WeldValueExpression.java:50)</div>
                    <div><span style="white-space:pre-wrap"> </span>at
com.sun.faces.facelets.el.ELText$ELTextVariable.writeText(ELText.java:227)</div>
                    <div><span style="white-space:pre-wrap"> </span>at
com.sun.faces.facelets.el.ELText$ELTextComposite.writeText(ELText.java:150)</div>
                    <div><span style="white-space:pre-wrap"> </span>at
com.sun.faces.facelets.compiler.TextInstruction.write(TextInstruction.java:85)</div>
                    <div><span style="white-space:pre-wrap"> </span>at
com.sun.faces.facelets.compiler.UIInstructions.encodeBegin(UIInstructions.java:82)</div>
                    <div><span style="white-space:pre-wrap"> </span>at
com.sun.faces.facelets.compiler.UILeaf.encodeAll(UILeaf.java:183)</div>
                    <div><span style="white-space:pre-wrap"> </span>at
javax.faces.render.Renderer.encodeChildren(Renderer.java:168)</div>
                    <div><span style="white-space:pre-wrap"> </span>at
javax.faces.component.UIComponentBase.encodeChildren(UIComponentBase.java:845)</div>
                    <div><span style="white-space:pre-wrap"> </span>at
com.sun.faces.renderkit.html_basic.HtmlBasicRenderer.encodeRecursive(HtmlBasicRenderer.java:304)</div>
                    <div><span style="white-space:pre-wrap"> </span>at
com.sun.faces.renderkit.html_basic.GroupRenderer.encodeChildren(GroupRenderer.java:105)</div>
                    <div><span style="white-space:pre-wrap"> </span>at
javax.faces.component.UIComponentBase.encodeChildren(UIComponentBase.java:845)</div>
                    <div><span style="white-space:pre-wrap"> </span>at
com.sun.faces.renderkit.html_basic.HtmlBasicRenderer.encodeRecursive(HtmlBasicRenderer.java:304)</div>
                    <div><span style="white-space:pre-wrap"> </span>at
com.sun.faces.renderkit.html_basic.GroupRenderer.encodeChildren(GroupRenderer.java:105)</div>
                    <div><span style="white-space:pre-wrap"> </span>at
javax.faces.component.UIComponentBase.encodeChildren(UIComponentBase.java:845)</div>
                    <div><span style="white-space:pre-wrap"> </span>at
javax.faces.component.UIComponent.encodeAll(UIComponent.java:1757)</div>
                    <div><span style="white-space:pre-wrap"> </span>at
javax.faces.component.UIComponent.encodeAll(UIComponent.java:1760)</div>
                    <div><span style="white-space:pre-wrap"> </span>at
javax.faces.component.UIComponent.encodeAll(UIComponent.java:1760)</div>
                    <div><span style="white-space:pre-wrap"> </span>at
com.sun.faces.application.view.FaceletViewHandlingStrategy.renderView(FaceletViewHandlingStrategy.java:402)</div>
                    <div><span style="white-space:pre-wrap"> </span>at
com.sun.faces.application.view.MultiViewHandler.renderView(MultiViewHandler.java:131)</div>
                    <div><span style="white-space:pre-wrap"> </span>at
javax.faces.application.ViewHandlerWrapper.renderView(ViewHandlerWrapper.java:288)</div>
                    <div><span style="white-space:pre-wrap"> </span>at
com.sun.faces.lifecycle.RenderResponsePhase.execute(RenderResponsePhase.java:121)</div>
                    <div><span style="white-space:pre-wrap"> </span>at
com.sun.faces.lifecycle.Phase.doPhase(Phase.java:101)</div>
                    <div><span style="white-space:pre-wrap"> </span>at
com.sun.faces.lifecycle.LifecycleImpl.render(LifecycleImpl.java:139)</div>
                    <div><span style="white-space:pre-wrap"> </span>at
javax.faces.webapp.FacesServlet.service(FacesServlet.java:594)</div>
                    <div><span style="white-space:pre-wrap"> </span>at
org.apache.catalina.core.StandardWrapper.service(StandardWrapper.java:1550)</div>
                    <div><span style="white-space:pre-wrap"> </span>at
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:343)</div>
                    <div><span style="white-space:pre-wrap"> </span>at
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:217)</div>
                    <div><span style="white-space:pre-wrap"> </span>at
org.primefaces.webapp.filter.FileUploadFilter.doFilter(FileUploadFilter.java:79)</div>
                    <div><span style="white-space:pre-wrap"> </span>at
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:256)</div>
                    <div><span style="white-space:pre-wrap"> </span>at
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:217)</div>
                    <div><span style="white-space:pre-wrap"> </span>at
com.my.proj.view.listener.LoginFilter.doFilter(LoginFilter.java:40)</div>
                    <div><span style="white-space:pre-wrap"> </span>at
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:256)</div>
                    <div><span style="white-space:pre-wrap"> </span>at
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:217)</div>
                    <div><span style="white-space:pre-wrap"> </span>at
org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:279)</div>
                    <div><span style="white-space:pre-wrap"> </span>at
org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:175)</div>
                    <div><span style="white-space:pre-wrap"> </span>at
org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:655)</div>
                    <div><span style="white-space:pre-wrap"> </span>at
org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:595)</div>
                    <div><span style="white-space:pre-wrap"> </span>at
org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:161)</div>
                    <div><span style="white-space:pre-wrap"> </span>at
org.apache.catalina.connector.CoyoteAdapter.doService(CoyoteAdapter.java:331)</div>
                    <div><span style="white-space:pre-wrap"> </span>at
org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:231)</div>
                    <div><span style="white-space:pre-wrap"> </span>at
com.sun.enterprise.v3.services.impl.ContainerMapper$AdapterCallable.call(ContainerMapper.java:317)</div>
                    <div><span style="white-space:pre-wrap"> </span>at
com.sun.enterprise.v3.services.impl.ContainerMapper.service(ContainerMapper.java:195)</div>
                    <div><span style="white-space:pre-wrap"> </span>at
com.sun.grizzly.http.ProcessorTask.invokeAdapter(ProcessorTask.java:860)</div>
                    <div><span style="white-space:pre-wrap"> </span>at
com.sun.grizzly.http.ProcessorTask.doProcess(ProcessorTask.java:757)</div>
                    <div><span style="white-space:pre-wrap"> </span>at
com.sun.grizzly.http.ProcessorTask.process(ProcessorTask.java:1056)</div>
                    <div><span style="white-space:pre-wrap"> </span>at
com.sun.grizzly.http.DefaultProtocolFilter.execute(DefaultProtocolFilter.java:229)</div>
                    <div><span style="white-space:pre-wrap"> </span>at
com.sun.grizzly.DefaultProtocolChain.executeProtocolFilter(DefaultProtocolChain.java:137)</div>
                    <div><span style="white-space:pre-wrap"> </span>at
com.sun.grizzly.DefaultProtocolChain.execute(DefaultProtocolChain.java:104)</div>
                    <div><span style="white-space:pre-wrap"> </span>at
com.sun.grizzly.DefaultProtocolChain.execute(DefaultProtocolChain.java:90)</div>
                    <div><span style="white-space:pre-wrap"> </span>at
com.sun.grizzly.http.HttpProtocolChain.execute(HttpProtocolChain.java:79)</div>
                    <div><span style="white-space:pre-wrap"> </span>at
com.sun.grizzly.ProtocolChainContextTask.doCall(ProtocolChainContextTask.java:54)</div>
                    <div><span style="white-space:pre-wrap"> </span>at
com.sun.grizzly.SelectionKeyContextTask.call(SelectionKeyContextTask.java:59)</div>
                    <div><span style="white-space:pre-wrap"> </span>at
com.sun.grizzly.ContextTask.run(ContextTask.java:71)</div>
                    <div><span style="white-space:pre-wrap"> </span>at
com.sun.grizzly.util.AbstractThreadPool$Worker.doWork(AbstractThreadPool.java:532)</div>
                    <div><span style="white-space:pre-wrap"> </span>at
com.sun.grizzly.util.AbstractThreadPool$Worker.run(AbstractThreadPool.java:513)</div>
                    <div><span style="white-space:pre-wrap"> </span>at
                      java.lang.Thread.run(Thread.java:722)</div>
                  </div>
                </div>
              </div>
            </div>
            <div class="gmail_extra"><br>
              <br>
              <div class="gmail_quote">
                <div>
                  <div class="h5">2013/3/20 Geoffrey De Smet <span
                      dir="ltr">&lt;<a moz-do-not-send="true"
                        href="mailto:ge0ffrey.spam@gmail.com"
                        target="_blank">ge0ffrey.spam@gmail.com</a>&gt;</span><br>
                  </div>
                </div>
                <blockquote class="gmail_quote" style="margin:0 0 0
                  .8ex;border-left:1px #ccc solid;padding-left:1ex">
                  <div>
                    <div class="h5">
                      <div bgcolor="#FFFFFF" text="#000000"> Check
                        WEB-INF/lib of the build war for the xml pull
                        jar.<br>
                        <div>Op 20-03-13 20:05, Andr&eacute; Fr&oacute;es schreef:<br>
                        </div>
                        <div>
                          <blockquote type="cite">
                            <div>Caused by:
                              com.thoughtworks.xstream.io.StreamException:
                              Cannot create XmlPullParser</div>
                            <div><span style="white-space:pre-wrap"> </span>at
com.thoughtworks.xstream.io.xml.AbstractXppDriver.createReader(AbstractXppDriver.java:60)</div>
                          </blockquote>
                          <br>
                        </div>
                      </div>
                      <br>
                    </div>
                  </div>
                  _______________________________________________<br>
                  rules-users mailing list<br>
                  <a moz-do-not-send="true"
                    href="mailto:rules-users@lists.jboss.org"
                    target="_blank">rules-users@lists.jboss.org</a><br>
                  <a moz-do-not-send="true"
                    href="https://lists.jboss.org/mailman/listinfo/rules-users"
                    target="_blank">https://lists.jboss.org/mailman/listinfo/rules-users</a><br>
                </blockquote>
              </div>
              <br>
            </div>
          </blockquote>
        </div>
        <br>
      </div>
      <br>
      <fieldset class="mimeAttachmentHeader"></fieldset>
      <br>
      <pre wrap="">_______________________________________________
rules-users mailing list
<a class="moz-txt-link-abbreviated" href="mailto:rules-users@lists.jboss.org">rules-users@lists.jboss.org</a>
<a class="moz-txt-link-freetext" href="https://lists.jboss.org/mailman/listinfo/rules-users">https://lists.jboss.org/mailman/listinfo/rules-users</a></pre>
    </blockquote>
    <br>
  </body>
</html>