Persistence API, what to return when form or attachment not found

classic Classic list List threaded Threaded
3 messages Options
Reply | Threaded
Open this post in threaded view
|

Persistence API, what to return when form or attachment not found

bwallis42
What should I return to a request for something over the persistence API when that something doesn't exist. A particular case is when you publish a new form, the first thing Orbeon does is try to fetch that form to see if it is overwriting an existing form and I suppose also to check the current version if there is one already there by that application/name.

I'm currently returning an HTTP 404 Not Found response which seems to work OK but I am getting error messages in the log including a very long stack trace. As it is not an error I am somewhat surprised by this.

Am I supposed to return some other response for form/data/attachment not found?

The logging I have is (in JBoss 7): My AP logging comes first showing that it is returning a 404 error.

18:17:01,575 DEBUG [org.jboss.resteasy.core.SynchronousDispatcher] (http-localhost-127.0.0.1-8080-2) PathInfo: /crud/cpf/fdsa/form/form.xhtml
18:17:01,575 INFO  [au.com.infomedix.orbeon.prototype.persistence.Persistence] (http-localhost-127.0.0.1-8080-2) GET /crud/cpf/fdsa/form/form.xhtml Request Content-Type: null
18:17:01,575 DEBUG [au.com.infomedix.orbeon.prototype.persistence.Persistence] (http-localhost-127.0.0.1-8080-2) Path Parameters:
18:17:01,576 DEBUG [au.com.infomedix.orbeon.prototype.persistence.Persistence] (http-localhost-127.0.0.1-8080-2)   appname: [cpf]
18:17:01,576 DEBUG [au.com.infomedix.orbeon.prototype.persistence.Persistence] (http-localhost-127.0.0.1-8080-2)   formname: [fdsa]
18:17:01,576 DEBUG [au.com.infomedix.orbeon.prototype.persistence.Persistence] (http-localhost-127.0.0.1-8080-2) Query Parameters:
18:17:01,576 DEBUG [au.com.infomedix.orbeon.prototype.persistence.Persistence] (http-localhost-127.0.0.1-8080-2) Request Headers:
18:17:01,576 DEBUG [au.com.infomedix.orbeon.prototype.persistence.Persistence] (http-localhost-127.0.0.1-8080-2)   orbeon-token: 652123b21e24809261f3cb322ccdce36c32cf239
18:17:01,577 DEBUG [au.com.infomedix.orbeon.prototype.persistence.Persistence] (http-localhost-127.0.0.1-8080-2)   host: localhost:8080
18:17:01,577 DEBUG [au.com.infomedix.orbeon.prototype.persistence.Persistence] (http-localhost-127.0.0.1-8080-2)   connection: Keep-Alive
18:17:01,577 DEBUG [au.com.infomedix.orbeon.prototype.persistence.Persistence] (http-localhost-127.0.0.1-8080-2)   accept-encoding: gzip,deflate
18:17:01,577 INFO  [au.com.infomedix.orbeon.prototype.persistence.Persistence] (http-localhost-127.0.0.1-8080-2) template not found
18:17:01,578 DEBUG [org.jboss.resteasy.core.SynchronousDispatcher] (http-localhost-127.0.0.1-8080-2) Failed executing GET /crud/cpf/fdsa/form/form.xhtml: org.jboss.resteasy.spi.NotFoundException: Template fdsa not found
	at au.com.infomedix.orbeon.prototype.persistence.Persistence.formTemplateGet(Persistence.java:291) [classes:]
	at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) [rt.jar:1.7.0_45]
	at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) [rt.jar:1.7.0_45]
	at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) [rt.jar:1.7.0_45]
	at java.lang.reflect.Method.invoke(Method.java:606) [rt.jar:1.7.0_45]
	at org.jboss.resteasy.core.MethodInjectorImpl.invoke(MethodInjectorImpl.java:155) [resteasy-jaxrs-2.3.2.Final.jar:]
	at org.jboss.resteasy.core.ResourceMethod.invokeOnTarget(ResourceMethod.java:257) [resteasy-jaxrs-2.3.2.Final.jar:]
	at org.jboss.resteasy.core.ResourceMethod.invoke(ResourceMethod.java:222) [resteasy-jaxrs-2.3.2.Final.jar:]
	at org.jboss.resteasy.core.ResourceMethod.invoke(ResourceMethod.java:211) [resteasy-jaxrs-2.3.2.Final.jar:]
	at org.jboss.resteasy.core.SynchronousDispatcher.getResponse(SynchronousDispatcher.java:525) [resteasy-jaxrs-2.3.2.Final.jar:]
	at org.jboss.resteasy.core.SynchronousDispatcher.invoke(SynchronousDispatcher.java:502) [resteasy-jaxrs-2.3.2.Final.jar:]
	at org.jboss.resteasy.core.SynchronousDispatcher.invoke(SynchronousDispatcher.java:119) [resteasy-jaxrs-2.3.2.Final.jar:]
	at org.jboss.resteasy.plugins.server.servlet.ServletContainerDispatcher.service(ServletContainerDispatcher.java:208) [resteasy-jaxrs-2.3.2.Final.jar:]
	at org.jboss.resteasy.plugins.server.servlet.HttpServletDispatcher.service(HttpServletDispatcher.java:55) [resteasy-jaxrs-2.3.2.Final.jar:]
	at org.jboss.resteasy.plugins.server.servlet.HttpServletDispatcher.service(HttpServletDispatcher.java:50) [resteasy-jaxrs-2.3.2.Final.jar:]
	at javax.servlet.http.HttpServlet.service(HttpServlet.java:847) [jboss-servlet-api_3.0_spec-1.0.0.Final.jar:1.0.0.Final]
	at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:329) [jbossweb-7.0.13.Final.jar:]
	at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:248) [jbossweb-7.0.13.Final.jar:]
	at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:275) [jbossweb-7.0.13.Final.jar:]
	at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:161) [jbossweb-7.0.13.Final.jar:]
	at org.jboss.as.web.security.SecurityContextAssociationValve.invoke(SecurityContextAssociationValve.java:153) [jboss-as-web-7.1.1.Final.jar:7.1.1.Final]
	at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:155) [jbossweb-7.0.13.Final.jar:]
	at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) [jbossweb-7.0.13.Final.jar:]
	at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) [jbossweb-7.0.13.Final.jar:]
	at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:368) [jbossweb-7.0.13.Final.jar:]
	at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:877) [jbossweb-7.0.13.Final.jar:]
	at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:671) [jbossweb-7.0.13.Final.jar:]
	at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:930) [jbossweb-7.0.13.Final.jar:]
	at java.lang.Thread.run(Thread.java:744) [rt.jar:1.7.0_45]

18:17:01,590 ERROR [org.orbeon.oxf.xforms.processor.XFormsServer] (http-localhost-127.0.0.1-8080-1) xforms-submit-error - setting throwable {throwable: "
18:17:01,590 ERROR [org.orbeon.oxf.xforms.processor.XFormsServer] (http-localhost-127.0.0.1-8080-1)     +----------------------------------------------------------------------------------------------------------------------+
18:17:01,591 ERROR [org.orbeon.oxf.xforms.processor.XFormsServer] (http-localhost-127.0.0.1-8080-1)     |An Error has Occurred                                                                                                 |
18:17:01,591 ERROR [org.orbeon.oxf.xforms.processor.XFormsServer] (http-localhost-127.0.0.1-8080-1)     |----------------------------------------------------------------------------------------------------------------------|
18:17:01,591 ERROR [org.orbeon.oxf.xforms.processor.XFormsServer] (http-localhost-127.0.0.1-8080-1)     |xf:submission for submission id: fb-read-form-definition, error code received when submitting instance: 404           |
18:17:01,592 ERROR [org.orbeon.oxf.xforms.processor.XFormsServer] (http-localhost-127.0.0.1-8080-1)     |----------------------------------------------------------------------------------------------------------------------|
18:17:01,592 ERROR [org.orbeon.oxf.xforms.processor.XFormsServer] (http-localhost-127.0.0.1-8080-1)     |Application Call Stack                                                                                                |
18:17:01,592 ERROR [org.orbeon.oxf.xforms.processor.XFormsServer] (http-localhost-127.0.0.1-8080-1)     |----------------------------------------------------------------------------------------------------------------------|
18:17:01,593 ERROR [org.orbeon.oxf.xforms.processor.XFormsServer] (http-localhost-127.0.0.1-8080-1)     |----------------------------------------------------------------------------------------------------------------------|
18:17:01,593 ERROR [org.orbeon.oxf.xforms.processor.XFormsServer] (http-localhost-127.0.0.1-8080-1)     |Exception: org.orbeon.oxf.xforms.submission.XFormsSubmissionException                                                 |
18:17:01,593 ERROR [org.orbeon.oxf.xforms.processor.XFormsServer] (http-localhost-127.0.0.1-8080-1)     |----------------------------------------------------------------------------------------------------------------------|
18:17:01,593 ERROR [org.orbeon.oxf.xforms.processor.XFormsServer] (http-localhost-127.0.0.1-8080-1)     |.orbeon.oxf.xforms.submission.XFormsModelSubmission|getReplacer                   |XFormsModelSubmission.java    | 729|
18:17:01,594 ERROR [org.orbeon.oxf.xforms.processor.XFormsServer] (http-localhost-127.0.0.1-8080-1)     |rg.orbeon.oxf.xforms.submission.RegularSubmission$1|call                          |RegularSubmission.java        | 108|
18:17:01,594 ERROR [org.orbeon.oxf.xforms.processor.XFormsServer] (http-localhost-127.0.0.1-8080-1)     |rg.orbeon.oxf.xforms.submission.RegularSubmission$1|call                          |RegularSubmission.java        |  78|
18:17:01,594 ERROR [org.orbeon.oxf.xforms.processor.XFormsServer] (http-localhost-127.0.0.1-8080-1)     |org.orbeon.oxf.xforms.submission.BaseSubmission    |submitCallable                |BaseSubmission.scala          |  89|
18:17:01,595 ERROR [org.orbeon.oxf.xforms.processor.XFormsServer] (http-localhost-127.0.0.1-8080-1)     |org.orbeon.oxf.xforms.submission.RegularSubmission |connect                       |RegularSubmission.java        | 131|
18:17:01,595 ERROR [org.orbeon.oxf.xforms.processor.XFormsServer] (http-localhost-127.0.0.1-8080-1)     |.orbeon.oxf.xforms.submission.XFormsModelSubmission|doSubmit                      |XFormsModelSubmission.java    | 460|
18:17:01,595 ERROR [org.orbeon.oxf.xforms.processor.XFormsServer] (http-localhost-127.0.0.1-8080-1)     |.orbeon.oxf.xforms.submission.XFormsModelSubmission|performDefaultAction          |XFormsModelSubmission.java    | 292|
18:17:01,595 ERROR [org.orbeon.oxf.xforms.processor.XFormsServer] (http-localhost-127.0.0.1-8080-1)     |.oxf.xforms.event.Dispatch$$anonfun$dispatchEvent$1|apply$mcV$sp                  |Dispatch.scala                | 137|
18:17:01,596 ERROR [org.orbeon.oxf.xforms.processor.XFormsServer] (http-localhost-127.0.0.1-8080-1)     |.oxf.xforms.event.Dispatch$$anonfun$dispatchEvent$1|apply                         |Dispatch.scala                |  73|
18:17:01,596 ERROR [org.orbeon.oxf.xforms.processor.XFormsServer] (http-localhost-127.0.0.1-8080-1)     |.oxf.xforms.event.Dispatch$$anonfun$dispatchEvent$1|apply                         |Dispatch.scala                |  73|
18:17:01,596 ERROR [org.orbeon.oxf.xforms.processor.XFormsServer] (http-localhost-127.0.0.1-8080-1)     |org.orbeon.oxf.xforms.event.Dispatch$              |withEvent$1                   |Dispatch.scala                |  38|
18:17:01,597 ERROR [org.orbeon.oxf.xforms.processor.XFormsServer] (http-localhost-127.0.0.1-8080-1)     |org.orbeon.oxf.xforms.event.Dispatch$              |dispatchEvent                 |Dispatch.scala                |  72|
18:17:01,597 ERROR [org.orbeon.oxf.xforms.processor.XFormsServer] (http-localhost-127.0.0.1-8080-1)     |g.orbeon.oxf.xforms.action.actions.XFormsSendAction|execute                       |XFormsSendAction.scala        |  51|
18:17:01,597 ERROR [org.orbeon.oxf.xforms.processor.XFormsServer] (http-localhost-127.0.0.1-8080-1)     |org.orbeon.oxf.xforms.action.XFormsAction          |execute                       |XFormsAction.scala            |  36|
18:17:01,597 ERROR [org.orbeon.oxf.xforms.processor.XFormsServer] (http-localhost-127.0.0.1-8080-1)     |rg.orbeon.oxf.xforms.action.XFormsActionInterpreter|runSingleIteration            |XFormsActionInterpreter.java  | 201|
18:17:01,598 ERROR [org.orbeon.oxf.xforms.processor.XFormsServer] (http-localhost-127.0.0.1-8080-1)     |rg.orbeon.oxf.xforms.action.XFormsActionInterpreter|runAction                     |XFormsActionInterpreter.java  | 147|
18:17:01,598 ERROR [org.orbeon.oxf.xforms.processor.XFormsServer] (http-localhost-127.0.0.1-8080-1)     |ction.actions.XFormsActionAction$$anonfun$execute$1|apply                         |XFormsActionAction.scala      |  52|
18:17:01,598 ERROR [org.orbeon.oxf.xforms.processor.XFormsServer] (http-localhost-127.0.0.1-8080-1)     |ction.actions.XFormsActionAction$$anonfun$execute$1|apply                         |XFormsActionAction.scala      |  40|
18:17:01,599 ERROR [org.orbeon.oxf.xforms.processor.XFormsServer] (http-localhost-127.0.0.1-8080-1)     |scala.collection.Iterator$class                    |foreach                       |Iterator.scala                | 727|
18:17:01,599 ERROR [org.orbeon.oxf.xforms.processor.XFormsServer] (http-localhost-127.0.0.1-8080-1)     |scala.collection.AbstractIterator                  |foreach                       |Iterator.scala                |1157|
18:17:01,599 ERROR [org.orbeon.oxf.xforms.processor.XFormsServer] (http-localhost-127.0.0.1-8080-1)     |scala.collection.IterableLike$class                |foreach                       |IterableLike.scala            |  72|
18:17:01,600 ERROR [org.orbeon.oxf.xforms.processor.XFormsServer] (http-localhost-127.0.0.1-8080-1)     |scala.collection.AbstractIterable                  |foreach                       |Iterable.scala                |  54|
18:17:01,600 ERROR [org.orbeon.oxf.xforms.processor.XFormsServer] (http-localhost-127.0.0.1-8080-1)     |orbeon.oxf.xforms.action.actions.XFormsActionAction|execute                       |XFormsActionAction.scala      |  40|
18:17:01,600 ERROR [org.orbeon.oxf.xforms.processor.XFormsServer] (http-localhost-127.0.0.1-8080-1)     |rg.orbeon.oxf.xforms.action.XFormsActionInterpreter|runSingleIteration            |XFormsActionInterpreter.java  | 201|
18:17:01,600 ERROR [org.orbeon.oxf.xforms.processor.XFormsServer] (http-localhost-127.0.0.1-8080-1)     |rg.orbeon.oxf.xforms.action.XFormsActionInterpreter|runAction                     |XFormsActionInterpreter.java  | 147|
18:17:01,601 ERROR [org.orbeon.oxf.xforms.processor.XFormsServer] (http-localhost-127.0.0.1-8080-1)     |forms.event.EventHandlerImpl$$anonfun$handleEvent$1|apply$mcV$sp                  |EventHandlerImpl.scala        | 257|
18:17:01,601 ERROR [org.orbeon.oxf.xforms.processor.XFormsServer] (http-localhost-127.0.0.1-8080-1)     |forms.event.EventHandlerImpl$$anonfun$handleEvent$1|apply                         |EventHandlerImpl.scala        | 257|
18:17:01,601 ERROR [org.orbeon.oxf.xforms.processor.XFormsServer] (http-localhost-127.0.0.1-8080-1)     |forms.event.EventHandlerImpl$$anonfun$handleEvent$1|apply                         |EventHandlerImpl.scala        | 257|
18:17:01,602 ERROR [org.orbeon.oxf.xforms.processor.XFormsServer] (http-localhost-127.0.0.1-8080-1)     |org.orbeon.oxf.util.DynamicVariable                |withValue                     |DynamicVariable.scala         |  42|
18:17:01,602 ERROR [org.orbeon.oxf.xforms.processor.XFormsServer] (http-localhost-127.0.0.1-8080-1)     |org.orbeon.oxf.xforms.action.XFormsAPI$            |withScalaAction               |XFormsAPI.scala               |  47|
18:17:01,602 ERROR [org.orbeon.oxf.xforms.processor.XFormsServer] (http-localhost-127.0.0.1-8080-1)     |org.orbeon.oxf.xforms.event.EventHandlerImpl       |handleEvent                   |EventHandlerImpl.scala        | 256|
18:17:01,602 ERROR [org.orbeon.oxf.xforms.processor.XFormsServer] (http-localhost-127.0.0.1-8080-1)     |$$anonfun$apply$2$$anonfun$apply$4$$anonfun$apply$1|apply$mcV$sp                  |Dispatch.scala                |  93|
18:17:01,603 ERROR [org.orbeon.oxf.xforms.processor.XFormsServer] (http-localhost-127.0.0.1-8080-1)     |$$anonfun$apply$2$$anonfun$apply$4$$anonfun$apply$1|apply                         |Dispatch.scala                |  92|
18:17:01,603 ERROR [org.orbeon.oxf.xforms.processor.XFormsServer] (http-localhost-127.0.0.1-8080-1)     |$$anonfun$apply$2$$anonfun$apply$4$$anonfun$apply$1|apply                         |Dispatch.scala                |  92|
18:17:01,603 ERROR [org.orbeon.oxf.xforms.processor.XFormsServer] (http-localhost-127.0.0.1-8080-1)     |org.orbeon.oxf.util.Logging$class                  |withDebug                     |Logging.scala                 |  50|
18:17:01,604 ERROR [org.orbeon.oxf.xforms.processor.XFormsServer] (http-localhost-127.0.0.1-8080-1)     |org.orbeon.oxf.xforms.event.Dispatch$              |withDebug                     |Dispatch.scala                |  23|
18:17:01,604 ERROR [org.orbeon.oxf.xforms.processor.XFormsServer] (http-localhost-127.0.0.1-8080-1)     |nfun$$doPhase$1$1$$anonfun$apply$2$$anonfun$apply$4|apply                         |Dispatch.scala                |  92|
18:17:01,604 ERROR [org.orbeon.oxf.xforms.processor.XFormsServer] (http-localhost-127.0.0.1-8080-1)     |nfun$$doPhase$1$1$$anonfun$apply$2$$anonfun$apply$4|apply                         |Dispatch.scala                |  86|
18:17:01,605 ERROR [org.orbeon.oxf.xforms.processor.XFormsServer] (http-localhost-127.0.0.1-8080-1)     |ollection.TraversableLike$WithFilter$$anonfun$map$2|apply                         |TraversableLike.scala         | 722|
18:17:01,605 ERROR [org.orbeon.oxf.xforms.processor.XFormsServer] (http-localhost-127.0.0.1-8080-1)     |scala.collection.immutable.List                    |foreach                       |List.scala                    | 318|
18:17:01,605 ERROR [org.orbeon.oxf.xforms.processor.XFormsServer] (http-localhost-127.0.0.1-8080-1)     |scala.collection.TraversableLike$WithFilter        |map                           |TraversableLike.scala         | 721|
18:17:01,606 ERROR [org.orbeon.oxf.xforms.processor.XFormsServer] (http-localhost-127.0.0.1-8080-1)     |tch$$anonfun$$anonfun$$doPhase$1$1$$anonfun$apply$2|apply                         |Dispatch.scala                |  86|
18:17:01,606 ERROR [org.orbeon.oxf.xforms.processor.XFormsServer] (http-localhost-127.0.0.1-8080-1)     |tch$$anonfun$$anonfun$$doPhase$1$1$$anonfun$apply$2|apply                         |Dispatch.scala                |  85|
18:17:01,606 ERROR [org.orbeon.oxf.xforms.processor.XFormsServer] (http-localhost-127.0.0.1-8080-1)     |scala.collection.TraversableLike$$anonfun$flatMap$1|apply                         |TraversableLike.scala         | 251|
18:17:01,607 ERROR [org.orbeon.oxf.xforms.processor.XFormsServer] (http-localhost-127.0.0.1-8080-1)     |scala.collection.TraversableLike$$anonfun$flatMap$1|apply                         |TraversableLike.scala         | 251|
18:17:01,607 ERROR [org.orbeon.oxf.xforms.processor.XFormsServer] (http-localhost-127.0.0.1-8080-1)     |scala.collection.immutable.List                    |foreach                       |List.scala                    | 318|
18:17:01,607 ERROR [org.orbeon.oxf.xforms.processor.XFormsServer] (http-localhost-127.0.0.1-8080-1)     |scala.collection.TraversableLike$class             |flatMap                       |TraversableLike.scala         | 251|
18:17:01,608 ERROR [org.orbeon.oxf.xforms.processor.XFormsServer] (http-localhost-127.0.0.1-8080-1)     |scala.collection.AbstractTraversable               |flatMap                       |Traversable.scala             | 105|
18:17:01,608 ERROR [org.orbeon.oxf.xforms.processor.XFormsServer] (http-localhost-127.0.0.1-8080-1)     |forms$event$Dispatch$$anonfun$$anonfun$$doPhase$1$1|apply                         |Dispatch.scala                |  85|
18:17:01,608 ERROR [org.orbeon.oxf.xforms.processor.XFormsServer] (http-localhost-127.0.0.1-8080-1)     |forms$event$Dispatch$$anonfun$$anonfun$$doPhase$1$1|apply                         |Dispatch.scala                |  84|
18:17:01,609 ERROR [org.orbeon.oxf.xforms.processor.XFormsServer] (http-localhost-127.0.0.1-8080-1)     |scala.collection.TraversableLike$$anonfun$flatMap$1|apply                         |TraversableLike.scala         | 251|
18:17:01,609 ERROR [org.orbeon.oxf.xforms.processor.XFormsServer] (http-localhost-127.0.0.1-8080-1)     |scala.collection.TraversableLike$$anonfun$flatMap$1|apply                         |TraversableLike.scala         | 251|
18:17:01,609 ERROR [org.orbeon.oxf.xforms.processor.XFormsServer] (http-localhost-127.0.0.1-8080-1)     |scala.collection.immutable.List                    |foreach                       |List.scala                    | 318|
18:17:01,609 ERROR [org.orbeon.oxf.xforms.processor.XFormsServer] (http-localhost-127.0.0.1-8080-1)     |scala.collection.TraversableLike$class             |flatMap                       |TraversableLike.scala         | 251|
18:17:01,610 ERROR [org.orbeon.oxf.xforms.processor.XFormsServer] (http-localhost-127.0.0.1-8080-1)     |scala.collection.AbstractTraversable               |flatMap                       |Traversable.scala             | 105|
18:17:01,610 ERROR [org.orbeon.oxf.xforms.processor.XFormsServer] (http-localhost-127.0.0.1-8080-1)     |ch$$anonfun$dispatchEvent$1$$anonfun$apply$mcV$sp$1|org$orbeon$oxf$xforms$event$Di|Dispatch.scala                |  84|
18:17:01,610 ERROR [org.orbeon.oxf.xforms.processor.XFormsServer] (http-localhost-127.0.0.1-8080-1)     |t$1$$anonfun$apply$mcV$sp$1$$anonfun$apply$mcV$sp$5|apply                         |Dispatch.scala                | 114|
18:17:01,611 ERROR [org.orbeon.oxf.xforms.processor.XFormsServer] (http-localhost-127.0.0.1-8080-1)     |t$1$$anonfun$apply$mcV$sp$1$$anonfun$apply$mcV$sp$5|apply                         |Dispatch.scala                | 114|
18:17:01,611 ERROR [org.orbeon.oxf.xforms.processor.XFormsServer] (http-localhost-127.0.0.1-8080-1)     |scala.Option                                       |foreach                       |Option.scala                  | 236|
18:17:01,611 ERROR [org.orbeon.oxf.xforms.processor.XFormsServer] (http-localhost-127.0.0.1-8080-1)     |ch$$anonfun$dispatchEvent$1$$anonfun$apply$mcV$sp$1|apply$mcV$sp                  |Dispatch.scala                | 114|
18:17:01,612 ERROR [org.orbeon.oxf.xforms.processor.XFormsServer] (http-localhost-127.0.0.1-8080-1)     |ch$$anonfun$dispatchEvent$1$$anonfun$apply$mcV$sp$1|apply                         |Dispatch.scala                |  74|
18:17:01,612 ERROR [org.orbeon.oxf.xforms.processor.XFormsServer] (http-localhost-127.0.0.1-8080-1)     |ch$$anonfun$dispatchEvent$1$$anonfun$apply$mcV$sp$1|apply                         |Dispatch.scala                |  74|
18:17:01,612 ERROR [org.orbeon.oxf.xforms.processor.XFormsServer] (http-localhost-127.0.0.1-8080-1)     |org.orbeon.oxf.util.Logging$class                  |withDebug                     |Logging.scala                 |  50|
18:17:01,613 ERROR [org.orbeon.oxf.xforms.processor.XFormsServer] (http-localhost-127.0.0.1-8080-1)     |org.orbeon.oxf.xforms.event.Dispatch$              |withDebug                     |Dispatch.scala                |  23|
18:17:01,613 ERROR [org.orbeon.oxf.xforms.processor.XFormsServer] (http-localhost-127.0.0.1-8080-1)     |.oxf.xforms.event.Dispatch$$anonfun$dispatchEvent$1|apply$mcV$sp                  |Dispatch.scala                |  74|
18:17:01,613 ERROR [org.orbeon.oxf.xforms.processor.XFormsServer] (http-localhost-127.0.0.1-8080-1)     |.oxf.xforms.event.Dispatch$$anonfun$dispatchEvent$1|apply                         |Dispatch.scala                |  73|
18:17:01,614 ERROR [org.orbeon.oxf.xforms.processor.XFormsServer] (http-localhost-127.0.0.1-8080-1)     |.oxf.xforms.event.Dispatch$$anonfun$dispatchEvent$1|apply                         |Dispatch.scala                |  73|
18:17:01,614 ERROR [org.orbeon.oxf.xforms.processor.XFormsServer] (http-localhost-127.0.0.1-8080-1)     |org.orbeon.oxf.xforms.event.Dispatch$              |withEvent$1                   |Dispatch.scala                |  38|
18:17:01,614 ERROR [org.orbeon.oxf.xforms.processor.XFormsServer] (http-localhost-127.0.0.1-8080-1)     |org.orbeon.oxf.xforms.event.Dispatch$              |dispatchEvent                 |Dispatch.scala                |  72|
18:17:01,614 ERROR [org.orbeon.oxf.xforms.processor.XFormsServer] (http-localhost-127.0.0.1-8080-1)     |orbeon.oxf.xforms.action.actions.XXFormsShowAction$|showDialog                    |XXFormsShowAction.scala       |  50|
18:17:01,615 ERROR [org.orbeon.oxf.xforms.processor.XFormsServer] (http-localhost-127.0.0.1-8080-1)     |.orbeon.oxf.xforms.action.XFormsAPI$$anonfun$show$1|apply                         |XFormsAPI.scala               | 313|
18:17:01,615 ERROR [org.orbeon.oxf.xforms.processor.XFormsServer] (http-localhost-127.0.0.1-8080-1)     |.orbeon.oxf.xforms.action.XFormsAPI$$anonfun$show$1|apply                         |XFormsAPI.scala               | 313|
18:17:01,615 ERROR [org.orbeon.oxf.xforms.processor.XFormsServer] (http-localhost-127.0.0.1-8080-1)     |scala.Option                                       |foreach                       |Option.scala                  | 236|
18:17:01,616 ERROR [org.orbeon.oxf.xforms.processor.XFormsServer] (http-localhost-127.0.0.1-8080-1)     |org.orbeon.oxf.xforms.action.XFormsAPI$            |show                          |XFormsAPI.scala               | 312|
18:17:01,616 ERROR [org.orbeon.oxf.xforms.processor.XFormsServer] (http-localhost-127.0.0.1-8080-1)     |ns$$anonfun$tryShowDialog$1$$anonfun$apply$mcV$sp$3|apply                         |XFormsActions.scala           |  59|
18:17:01,616 ERROR [org.orbeon.oxf.xforms.processor.XFormsServer] (http-localhost-127.0.0.1-8080-1)     |ns$$anonfun$tryShowDialog$1$$anonfun$apply$mcV$sp$3|apply                         |XFormsActions.scala           |  59|
18:17:01,617 ERROR [org.orbeon.oxf.xforms.processor.XFormsServer] (http-localhost-127.0.0.1-8080-1)     |scala.Option                                       |foreach                       |Option.scala                  | 236|
18:17:01,617 ERROR [org.orbeon.oxf.xforms.processor.XFormsServer] (http-localhost-127.0.0.1-8080-1)     |f.fr.process.XFormsActions$$anonfun$tryShowDialog$1|apply$mcV$sp                  |XFormsActions.scala           |  59|
18:17:01,617 ERROR [org.orbeon.oxf.xforms.processor.XFormsServer] (http-localhost-127.0.0.1-8080-1)     |f.fr.process.XFormsActions$$anonfun$tryShowDialog$1|apply                         |XFormsActions.scala           |  56|
18:17:01,617 ERROR [org.orbeon.oxf.xforms.processor.XFormsServer] (http-localhost-127.0.0.1-8080-1)     |f.fr.process.XFormsActions$$anonfun$tryShowDialog$1|apply                         |XFormsActions.scala           |  56|
18:17:01,618 ERROR [org.orbeon.oxf.xforms.processor.XFormsServer] (http-localhost-127.0.0.1-8080-1)     |scala.util.Try$                                    |apply                         |Try.scala                     | 161|
18:17:01,618 ERROR [org.orbeon.oxf.xforms.processor.XFormsServer] (http-localhost-127.0.0.1-8080-1)     |org.orbeon.oxf.fr.process.XFormsActions$class      |tryShowDialog                 |XFormsActions.scala           |  56|
18:17:01,618 ERROR [org.orbeon.oxf.xforms.processor.XFormsServer] (http-localhost-127.0.0.1-8080-1)     |org.orbeon.oxf.fr.process.SimpleProcess$           |tryShowDialog                 |SimpleProcess.scala           |  34|
18:17:01,619 ERROR [org.orbeon.oxf.xforms.processor.XFormsServer] (http-localhost-127.0.0.1-8080-1)     |ocess.XFormsActions$$anonfun$AllowedXFormsActions$3|apply                         |XFormsActions.scala           |  30|
18:17:01,619 ERROR [org.orbeon.oxf.xforms.processor.XFormsServer] (http-localhost-127.0.0.1-8080-1)     |ocess.XFormsActions$$anonfun$AllowedXFormsActions$3|apply                         |XFormsActions.scala           |  30|
18:17:01,619 ERROR [org.orbeon.oxf.xforms.processor.XFormsServer] (http-localhost-127.0.0.1-8080-1)     |ssInterpreter$ProcessRuntime$$anonfun$runAction$1$3|apply                         |ProcessInterpreter.scala      | 139|
18:17:01,620 ERROR [org.orbeon.oxf.xforms.processor.XFormsServer] (http-localhost-127.0.0.1-8080-1)     |ssInterpreter$ProcessRuntime$$anonfun$runAction$1$3|apply                         |ProcessInterpreter.scala      | 134|
18:17:01,620 ERROR [org.orbeon.oxf.xforms.processor.XFormsServer] (http-localhost-127.0.0.1-8080-1)     |org.orbeon.oxf.util.Logging$class                  |withDebug                     |Logging.scala                 |  50|
18:17:01,620 ERROR [org.orbeon.oxf.xforms.processor.XFormsServer] (http-localhost-127.0.0.1-8080-1)     |org.orbeon.oxf.fr.process.SimpleProcess$           |withDebug                     |SimpleProcess.scala           |  34|
18:17:01,620 ERROR [org.orbeon.oxf.xforms.processor.XFormsServer] (http-localhost-127.0.0.1-8080-1)     |n.oxf.fr.process.ProcessInterpreter$ProcessRuntime$|runAction$1                   |ProcessInterpreter.scala      | 134|
18:17:01,621 ERROR [org.orbeon.oxf.xforms.processor.XFormsServer] (http-localhost-127.0.0.1-8080-1)     |n.oxf.fr.process.ProcessInterpreter$ProcessRuntime$|org$orbeon$oxf$fr$process$Proc|ProcessInterpreter.scala      | 195|
18:17:01,621 ERROR [org.orbeon.oxf.xforms.processor.XFormsServer] (http-localhost-127.0.0.1-8080-1)     |essInterpreter$ProcessRuntime$$anonfun$runGroup$1$1|apply                         |ProcessInterpreter.scala      | 149|
18:17:01,621 ERROR [org.orbeon.oxf.xforms.processor.XFormsServer] (http-localhost-127.0.0.1-8080-1)     |essInterpreter$ProcessRuntime$$anonfun$runGroup$1$1|apply                         |ProcessInterpreter.scala      | 149|
18:17:01,622 ERROR [org.orbeon.oxf.xforms.processor.XFormsServer] (http-localhost-127.0.0.1-8080-1)     |n.oxf.fr.process.ProcessInterpreter$ProcessRuntime$|withStackFrame                |ProcessInterpreter.scala      | 104|
18:17:01,622 ERROR [org.orbeon.oxf.xforms.processor.XFormsServer] (http-localhost-127.0.0.1-8080-1)     |n.oxf.fr.process.ProcessInterpreter$ProcessRuntime$|runGroup$1                    |ProcessInterpreter.scala      | 149|
18:17:01,622 ERROR [org.orbeon.oxf.xforms.processor.XFormsServer] (http-localhost-127.0.0.1-8080-1)     |n.oxf.fr.process.ProcessInterpreter$ProcessRuntime$|org$orbeon$oxf$fr$process$Proc|ProcessInterpreter.scala      | 196|
18:17:01,623 ERROR [org.orbeon.oxf.xforms.processor.XFormsServer] (http-localhost-127.0.0.1-8080-1)     |n.oxf.fr.process.ProcessInterpreter$ProcessRuntime$|runSubProcess                 |ProcessInterpreter.scala      | 205|
18:17:01,623 ERROR [org.orbeon.oxf.xforms.processor.XFormsServer] (http-localhost-127.0.0.1-8080-1)     |nonfun$apply$11$$anonfun$apply$12$$anonfun$apply$13|apply                         |ProcessInterpreter.scala      | 231|
18:17:01,623 ERROR [org.orbeon.oxf.xforms.processor.XFormsServer] (http-localhost-127.0.0.1-8080-1)     |nonfun$apply$11$$anonfun$apply$12$$anonfun$apply$13|apply                         |ProcessInterpreter.scala      | 231|
18:17:01,624 ERROR [org.orbeon.oxf.xforms.processor.XFormsServer] (http-localhost-127.0.0.1-8080-1)     |scala.util.control.Breaks$$anon$1                  |catchBreak                    |Breaks.scala                  |  62|
18:17:01,624 ERROR [org.orbeon.oxf.xforms.processor.XFormsServer] (http-localhost-127.0.0.1-8080-1)     |---8<--------8<--------8<--------8<--------8<--------8<--------8<--------8<--------8<--------8<--------8<--------8<---|
18:17:01,624 ERROR [org.orbeon.oxf.xforms.processor.XFormsServer] (http-localhost-127.0.0.1-8080-1)     |scala.collection.TraversableLike$$anonfun$flatMap$1|apply                         |TraversableLike.scala         | 251|
18:17:01,625 ERROR [org.orbeon.oxf.xforms.processor.XFormsServer] (http-localhost-127.0.0.1-8080-1)     |scala.collection.immutable.List                    |foreach                       |List.scala                    | 318|
18:17:01,625 ERROR [org.orbeon.oxf.xforms.processor.XFormsServer] (http-localhost-127.0.0.1-8080-1)     |scala.collection.TraversableLike$class             |flatMap                       |TraversableLike.scala         | 251|
18:17:01,625 ERROR [org.orbeon.oxf.xforms.processor.XFormsServer] (http-localhost-127.0.0.1-8080-1)     |scala.collection.AbstractTraversable               |flatMap                       |Traversable.scala             | 105|
18:17:01,625 ERROR [org.orbeon.oxf.xforms.processor.XFormsServer] (http-localhost-127.0.0.1-8080-1)     |forms$event$Dispatch$$anonfun$$anonfun$$doPhase$1$1|apply                         |Dispatch.scala                |  85|
18:17:01,626 ERROR [org.orbeon.oxf.xforms.processor.XFormsServer] (http-localhost-127.0.0.1-8080-1)     |forms$event$Dispatch$$anonfun$$anonfun$$doPhase$1$1|apply                         |Dispatch.scala                |  84|
18:17:01,626 ERROR [org.orbeon.oxf.xforms.processor.XFormsServer] (http-localhost-127.0.0.1-8080-1)     |scala.collection.TraversableLike$$anonfun$flatMap$1|apply                         |TraversableLike.scala         | 251|
18:17:01,626 ERROR [org.orbeon.oxf.xforms.processor.XFormsServer] (http-localhost-127.0.0.1-8080-1)     |scala.collection.TraversableLike$$anonfun$flatMap$1|apply                         |TraversableLike.scala         | 251|
18:17:01,627 ERROR [org.orbeon.oxf.xforms.processor.XFormsServer] (http-localhost-127.0.0.1-8080-1)     |scala.collection.immutable.List                    |foreach                       |List.scala                    | 318|
18:17:01,627 ERROR [org.orbeon.oxf.xforms.processor.XFormsServer] (http-localhost-127.0.0.1-8080-1)     |scala.collection.TraversableLike$class             |flatMap                       |TraversableLike.scala         | 251|
18:17:01,627 ERROR [org.orbeon.oxf.xforms.processor.XFormsServer] (http-localhost-127.0.0.1-8080-1)     |scala.collection.AbstractTraversable               |flatMap                       |Traversable.scala             | 105|
18:17:01,627 ERROR [org.orbeon.oxf.xforms.processor.XFormsServer] (http-localhost-127.0.0.1-8080-1)     |ch$$anonfun$dispatchEvent$1$$anonfun$apply$mcV$sp$1|org$orbeon$oxf$xforms$event$Di|Dispatch.scala                |  84|
18:17:01,628 ERROR [org.orbeon.oxf.xforms.processor.XFormsServer] (http-localhost-127.0.0.1-8080-1)     |t$1$$anonfun$apply$mcV$sp$1$$anonfun$apply$mcV$sp$5|apply                         |Dispatch.scala                | 114|
18:17:01,628 ERROR [org.orbeon.oxf.xforms.processor.XFormsServer] (http-localhost-127.0.0.1-8080-1)     |t$1$$anonfun$apply$mcV$sp$1$$anonfun$apply$mcV$sp$5|apply                         |Dispatch.scala                | 114|
18:17:01,628 ERROR [org.orbeon.oxf.xforms.processor.XFormsServer] (http-localhost-127.0.0.1-8080-1)     |scala.Option                                       |foreach                       |Option.scala                  | 236|
18:17:01,629 ERROR [org.orbeon.oxf.xforms.processor.XFormsServer] (http-localhost-127.0.0.1-8080-1)     |ch$$anonfun$dispatchEvent$1$$anonfun$apply$mcV$sp$1|apply$mcV$sp                  |Dispatch.scala                | 114|
18:17:01,629 ERROR [org.orbeon.oxf.xforms.processor.XFormsServer] (http-localhost-127.0.0.1-8080-1)     |ch$$anonfun$dispatchEvent$1$$anonfun$apply$mcV$sp$1|apply                         |Dispatch.scala                |  74|
18:17:01,629 ERROR [org.orbeon.oxf.xforms.processor.XFormsServer] (http-localhost-127.0.0.1-8080-1)     |ch$$anonfun$dispatchEvent$1$$anonfun$apply$mcV$sp$1|apply                         |Dispatch.scala                |  74|
18:17:01,629 ERROR [org.orbeon.oxf.xforms.processor.XFormsServer] (http-localhost-127.0.0.1-8080-1)     |org.orbeon.oxf.util.Logging$class                  |withDebug                     |Logging.scala                 |  50|
18:17:01,630 ERROR [org.orbeon.oxf.xforms.processor.XFormsServer] (http-localhost-127.0.0.1-8080-1)     |org.orbeon.oxf.xforms.event.Dispatch$              |withDebug                     |Dispatch.scala                |  23|
18:17:01,630 ERROR [org.orbeon.oxf.xforms.processor.XFormsServer] (http-localhost-127.0.0.1-8080-1)     |.oxf.xforms.event.Dispatch$$anonfun$dispatchEvent$1|apply$mcV$sp                  |Dispatch.scala                |  74|
18:17:01,630 ERROR [org.orbeon.oxf.xforms.processor.XFormsServer] (http-localhost-127.0.0.1-8080-1)     |.oxf.xforms.event.Dispatch$$anonfun$dispatchEvent$1|apply                         |Dispatch.scala                |  73|
18:17:01,631 ERROR [org.orbeon.oxf.xforms.processor.XFormsServer] (http-localhost-127.0.0.1-8080-1)     |.oxf.xforms.event.Dispatch$$anonfun$dispatchEvent$1|apply                         |Dispatch.scala                |  73|
18:17:01,631 ERROR [org.orbeon.oxf.xforms.processor.XFormsServer] (http-localhost-127.0.0.1-8080-1)     |org.orbeon.oxf.xforms.event.Dispatch$              |withEvent$1                   |Dispatch.scala                |  38|
18:17:01,631 ERROR [org.orbeon.oxf.xforms.processor.XFormsServer] (http-localhost-127.0.0.1-8080-1)     |org.orbeon.oxf.xforms.event.Dispatch$              |dispatchEvent                 |Dispatch.scala                |  72|
18:17:01,631 ERROR [org.orbeon.oxf.xforms.processor.XFormsServer] (http-localhost-127.0.0.1-8080-1)     |org.orbeon.oxf.xforms.event.ClientEvents$          |org$orbeon$oxf$xforms$event$Cl|ClientEvents.scala            | 510|
18:17:01,632 ERROR [org.orbeon.oxf.xforms.processor.XFormsServer] (http-localhost-127.0.0.1-8080-1)     |f.xforms.event.ClientEvents$$anonfun$processEvent$1|apply$mcV$sp                  |ClientEvents.scala            | 554|
18:17:01,632 ERROR [org.orbeon.oxf.xforms.processor.XFormsServer] (http-localhost-127.0.0.1-8080-1)     |f.xforms.event.ClientEvents$$anonfun$processEvent$1|apply                         |ClientEvents.scala            | 517|
18:17:01,632 ERROR [org.orbeon.oxf.xforms.processor.XFormsServer] (http-localhost-127.0.0.1-8080-1)     |f.xforms.event.ClientEvents$$anonfun$processEvent$1|apply                         |ClientEvents.scala            | 517|
18:17:01,633 ERROR [org.orbeon.oxf.xforms.processor.XFormsServer] (http-localhost-127.0.0.1-8080-1)     |org.orbeon.oxf.util.Logging$class                  |withDebug                     |Logging.scala                 |  50|
18:17:01,633 ERROR [org.orbeon.oxf.xforms.processor.XFormsServer] (http-localhost-127.0.0.1-8080-1)     |org.orbeon.oxf.xforms.event.ClientEvents$          |withDebug                     |ClientEvents.scala            |  35|
18:17:01,633 ERROR [org.orbeon.oxf.xforms.processor.XFormsServer] (http-localhost-127.0.0.1-8080-1)     |org.orbeon.oxf.xforms.event.ClientEvents$          |processEvent                  |ClientEvents.scala            | 517|
18:17:01,633 ERROR [org.orbeon.oxf.xforms.processor.XFormsServer] (http-localhost-127.0.0.1-8080-1)     |.xforms.event.ClientEvents$$anonfun$processEvents$1|apply                         |ClientEvents.scala            | 141|
18:17:01,634 ERROR [org.orbeon.oxf.xforms.processor.XFormsServer] (http-localhost-127.0.0.1-8080-1)     |.xforms.event.ClientEvents$$anonfun$processEvents$1|apply                         |ClientEvents.scala            | 140|
18:17:01,634 ERROR [org.orbeon.oxf.xforms.processor.XFormsServer] (http-localhost-127.0.0.1-8080-1)     |scala.collection.immutable.List                    |foreach                       |List.scala                    | 318|
18:17:01,634 ERROR [org.orbeon.oxf.xforms.processor.XFormsServer] (http-localhost-127.0.0.1-8080-1)     |org.orbeon.oxf.xforms.event.ClientEvents$          |processEvents                 |ClientEvents.scala            | 140|
18:17:01,635 ERROR [org.orbeon.oxf.xforms.processor.XFormsServer] (http-localhost-127.0.0.1-8080-1)     |org.orbeon.oxf.xforms.event.ClientEvents           |processEvents                 |ClientEvents.scala            |    |
18:17:01,635 ERROR [org.orbeon.oxf.xforms.processor.XFormsServer] (http-localhost-127.0.0.1-8080-1)     |org.orbeon.oxf.xforms.processor.XFormsServer$2     |run                           |XFormsServer.java             | 222|
18:17:01,635 ERROR [org.orbeon.oxf.xforms.processor.XFormsServer] (http-localhost-127.0.0.1-8080-1)     |ion.XFormsAPI$$anonfun$withContainingDocumentJava$1|apply$mcV$sp                  |XFormsAPI.scala               |  55|
18:17:01,635 ERROR [org.orbeon.oxf.xforms.processor.XFormsServer] (http-localhost-127.0.0.1-8080-1)     |ion.XFormsAPI$$anonfun$withContainingDocumentJava$1|apply                         |XFormsAPI.scala               |  55|
18:17:01,636 ERROR [org.orbeon.oxf.xforms.processor.XFormsServer] (http-localhost-127.0.0.1-8080-1)     |ion.XFormsAPI$$anonfun$withContainingDocumentJava$1|apply                         |XFormsAPI.scala               |  55|
18:17:01,636 ERROR [org.orbeon.oxf.xforms.processor.XFormsServer] (http-localhost-127.0.0.1-8080-1)     |org.orbeon.oxf.util.DynamicVariable                |withValue                     |DynamicVariable.scala         |  42|
18:17:01,636 ERROR [org.orbeon.oxf.xforms.processor.XFormsServer] (http-localhost-127.0.0.1-8080-1)     |org.orbeon.oxf.xforms.action.XFormsAPI$            |withContainingDocument        |XFormsAPI.scala               |  60|
18:17:01,637 ERROR [org.orbeon.oxf.xforms.processor.XFormsServer] (http-localhost-127.0.0.1-8080-1)     |org.orbeon.oxf.xforms.action.XFormsAPI$            |withContainingDocumentJava    |XFormsAPI.scala               |  54|
18:17:01,637 ERROR [org.orbeon.oxf.xforms.processor.XFormsServer] (http-localhost-127.0.0.1-8080-1)     |org.orbeon.oxf.xforms.action.XFormsAPI             |withContainingDocumentJava    |XFormsAPI.scala               |    |
18:17:01,637 ERROR [org.orbeon.oxf.xforms.processor.XFormsServer] (http-localhost-127.0.0.1-8080-1)     |org.orbeon.oxf.xforms.processor.XFormsServer       |doIt                          |XFormsServer.java             | 205|
18:17:01,637 ERROR [org.orbeon.oxf.xforms.processor.XFormsServer] (http-localhost-127.0.0.1-8080-1)     |org.orbeon.oxf.xforms.processor.XFormsServer       |access$000                    |XFormsServer.java             |  59|
18:17:01,638 ERROR [org.orbeon.oxf.xforms.processor.XFormsServer] (http-localhost-127.0.0.1-8080-1)     |org.orbeon.oxf.xforms.processor.XFormsServer$1     |readImpl                      |XFormsServer.java             |  85|
18:17:01,638 ERROR [org.orbeon.oxf.xforms.processor.XFormsServer] (http-localhost-127.0.0.1-8080-1)     |essor.impl.ProcessorOutputImpl$TopLevelOutputFilter|read                          |ProcessorOutputImpl.java      | 257|
18:17:01,638 ERROR [org.orbeon.oxf.xforms.processor.XFormsServer] (http-localhost-127.0.0.1-8080-1)     |org.orbeon.oxf.processor.impl.ProcessorOutputImpl  |read                          |ProcessorOutputImpl.java      | 394|
18:17:01,639 ERROR [org.orbeon.oxf.xforms.processor.XFormsServer] (http-localhost-127.0.0.1-8080-1)     |org.orbeon.oxf.processor.ProcessorImpl             |readInputAsSAX                |ProcessorImpl.java            | 262|
18:17:01,639 ERROR [org.orbeon.oxf.xforms.processor.XFormsServer] (http-localhost-127.0.0.1-8080-1)     |cessor.pipeline.TeeProcessor$TeeProcessorOutputImpl|readImpl                      |TeeProcessor.java             |  88|
18:17:01,639 ERROR [org.orbeon.oxf.xforms.processor.XFormsServer] (http-localhost-127.0.0.1-8080-1)     |essor.impl.ProcessorOutputImpl$TopLevelOutputFilter|read                          |ProcessorOutputImpl.java      | 257|
18:17:01,640 ERROR [org.orbeon.oxf.xforms.processor.XFormsServer] (http-localhost-127.0.0.1-8080-1)     |org.orbeon.oxf.processor.impl.ProcessorOutputImpl  |read                          |ProcessorOutputImpl.java      | 394|
18:17:01,640 ERROR [org.orbeon.oxf.xforms.processor.XFormsServer] (http-localhost-127.0.0.1-8080-1)     |org.orbeon.oxf.processor.ProcessorImpl             |readInputAsSAX                |ProcessorImpl.java            | 262|
18:17:01,640 ERROR [org.orbeon.oxf.xforms.processor.XFormsServer] (http-localhost-127.0.0.1-8080-1)     |org.orbeon.oxf.processor.ProcessorImpl             |readInputAsTinyTree           |ProcessorImpl.java            | 288|
18:17:01,640 ERROR [org.orbeon.oxf.xforms.processor.XFormsServer] (http-localhost-127.0.0.1-8080-1)     |org.orbeon.oxf.processor.ProcessorImpl$3           |read                          |ProcessorImpl.java            | 317|
18:17:01,641 ERROR [org.orbeon.oxf.xforms.processor.XFormsServer] (http-localhost-127.0.0.1-8080-1)     |org.orbeon.oxf.processor.ProcessorImpl$3           |read                          |ProcessorImpl.java            | 315|
18:17:01,641 ERROR [org.orbeon.oxf.xforms.processor.XFormsServer] (http-localhost-127.0.0.1-8080-1)     |org.orbeon.oxf.processor.ProcessorImpl             |readCacheInputAsObject        |ProcessorImpl.java            | 363|
18:17:01,641 ERROR [org.orbeon.oxf.xforms.processor.XFormsServer] (http-localhost-127.0.0.1-8080-1)     |org.orbeon.oxf.processor.ProcessorImpl             |readCacheInputAsTinyTree      |ProcessorImpl.java            | 315|
18:17:01,642 ERROR [org.orbeon.oxf.xforms.processor.XFormsServer] (http-localhost-127.0.0.1-8080-1)     |f.processor.pipeline.choose.ConcreteChooseProcessor|start                         |ConcreteChooseProcessor.java  | 177|
18:17:01,642 ERROR [org.orbeon.oxf.xforms.processor.XFormsServer] (http-localhost-127.0.0.1-8080-1)     |g.orbeon.oxf.processor.pipeline.PipelineProcessor$4|run                           |PipelineProcessor.java        | 618|
18:17:01,642 ERROR [org.orbeon.oxf.xforms.processor.XFormsServer] (http-localhost-127.0.0.1-8080-1)     |org.orbeon.oxf.processor.pipeline.PipelineProcessor|executeChildren               |PipelineProcessor.java        | 680|
18:17:01,643 ERROR [org.orbeon.oxf.xforms.processor.XFormsServer] (http-localhost-127.0.0.1-8080-1)     |org.orbeon.oxf.processor.pipeline.PipelineProcessor|start                         |PipelineProcessor.java        | 615|
18:17:01,643 ERROR [org.orbeon.oxf.xforms.processor.XFormsServer] (http-localhost-127.0.0.1-8080-1)     |f.processor.pipeline.choose.ConcreteChooseProcessor|start                         |ConcreteChooseProcessor.java  | 231|
18:17:01,643 ERROR [org.orbeon.oxf.xforms.processor.XFormsServer] (http-localhost-127.0.0.1-8080-1)     |g.orbeon.oxf.processor.pipeline.PipelineProcessor$4|run                           |PipelineProcessor.java        | 618|
18:17:01,643 ERROR [org.orbeon.oxf.xforms.processor.XFormsServer] (http-localhost-127.0.0.1-8080-1)     |org.orbeon.oxf.processor.pipeline.PipelineProcessor|executeChildren               |PipelineProcessor.java        | 680|
18:17:01,644 ERROR [org.orbeon.oxf.xforms.processor.XFormsServer] (http-localhost-127.0.0.1-8080-1)     |org.orbeon.oxf.processor.pipeline.PipelineProcessor|start                         |PipelineProcessor.java        | 615|
18:17:01,644 ERROR [org.orbeon.oxf.xforms.processor.XFormsServer] (http-localhost-127.0.0.1-8080-1)     |g.orbeon.oxf.processor.pipeline.PipelineProcessor$4|run                           |PipelineProcessor.java        | 618|
18:17:01,644 ERROR [org.orbeon.oxf.xforms.processor.XFormsServer] (http-localhost-127.0.0.1-8080-1)     |org.orbeon.oxf.processor.pipeline.PipelineProcessor|executeChildren               |PipelineProcessor.java        | 680|
18:17:01,645 ERROR [org.orbeon.oxf.xforms.processor.XFormsServer] (http-localhost-127.0.0.1-8080-1)     |org.orbeon.oxf.processor.pipeline.PipelineProcessor|start                         |PipelineProcessor.java        | 615|
18:17:01,645 ERROR [org.orbeon.oxf.xforms.processor.XFormsServer] (http-localhost-127.0.0.1-8080-1)     |f.processor.pipeline.choose.ConcreteChooseProcessor|start                         |ConcreteChooseProcessor.java  | 231|
18:17:01,645 ERROR [org.orbeon.oxf.xforms.processor.XFormsServer] (http-localhost-127.0.0.1-8080-1)     |g.orbeon.oxf.processor.pipeline.PipelineProcessor$4|run                           |PipelineProcessor.java        | 618|
18:17:01,645 ERROR [org.orbeon.oxf.xforms.processor.XFormsServer] (http-localhost-127.0.0.1-8080-1)     |org.orbeon.oxf.processor.pipeline.PipelineProcessor|executeChildren               |PipelineProcessor.java        | 680|
18:17:01,646 ERROR [org.orbeon.oxf.xforms.processor.XFormsServer] (http-localhost-127.0.0.1-8080-1)     |org.orbeon.oxf.processor.pipeline.PipelineProcessor|start                         |PipelineProcessor.java        | 615|
18:17:01,646 ERROR [org.orbeon.oxf.xforms.processor.XFormsServer] (http-localhost-127.0.0.1-8080-1)     |org.orbeon.oxf.pipeline.InitUtils$                 |runProcessor                  |InitUtils.scala               |  82|
18:17:01,646 ERROR [org.orbeon.oxf.xforms.processor.XFormsServer] (http-localhost-127.0.0.1-8080-1)     |org.orbeon.oxf.webapp.ProcessorService             |service                       |ProcessorService.scala        |  40|
18:17:01,647 ERROR [org.orbeon.oxf.xforms.processor.XFormsServer] (http-localhost-127.0.0.1-8080-1)     |nServlet$$anonfun$service$1$$anonfun$apply$mcV$sp$1|apply$mcV$sp                  |OrbeonServlet.scala           |  79|
18:17:01,647 ERROR [org.orbeon.oxf.xforms.processor.XFormsServer] (http-localhost-127.0.0.1-8080-1)     |nServlet$$anonfun$service$1$$anonfun$apply$mcV$sp$1|apply                         |OrbeonServlet.scala           |  72|
18:17:01,647 ERROR [org.orbeon.oxf.xforms.processor.XFormsServer] (http-localhost-127.0.0.1-8080-1)     |nServlet$$anonfun$service$1$$anonfun$apply$mcV$sp$1|apply                         |OrbeonServlet.scala           |  72|
18:17:01,648 ERROR [org.orbeon.oxf.xforms.processor.XFormsServer] (http-localhost-127.0.0.1-8080-1)     |org.orbeon.oxf.util.ScalaUtils$                    |withRootException             |ScalaUtils.scala              |  83|
18:17:01,648 ERROR [org.orbeon.oxf.xforms.processor.XFormsServer] (http-localhost-127.0.0.1-8080-1)     |orbeon.oxf.servlet.OrbeonServlet$$anonfun$service$1|apply$mcV$sp                  |OrbeonServlet.scala           |  72|
18:17:01,648 ERROR [org.orbeon.oxf.xforms.processor.XFormsServer] (http-localhost-127.0.0.1-8080-1)     |orbeon.oxf.servlet.OrbeonServlet$$anonfun$service$1|apply                         |OrbeonServlet.scala           |  72|
18:17:01,648 ERROR [org.orbeon.oxf.xforms.processor.XFormsServer] (http-localhost-127.0.0.1-8080-1)     |orbeon.oxf.servlet.OrbeonServlet$$anonfun$service$1|apply                         |OrbeonServlet.scala           |  72|
18:17:01,649 ERROR [org.orbeon.oxf.xforms.processor.XFormsServer] (http-localhost-127.0.0.1-8080-1)     |org.orbeon.oxf.util.DynamicVariable                |withValue                     |DynamicVariable.scala         |  42|
18:17:01,649 ERROR [org.orbeon.oxf.xforms.processor.XFormsServer] (http-localhost-127.0.0.1-8080-1)     |org.orbeon.oxf.servlet.OrbeonServlet               |service                       |OrbeonServlet.scala           |  71|
18:17:01,649 ERROR [org.orbeon.oxf.xforms.processor.XFormsServer] (http-localhost-127.0.0.1-8080-1)     |javax.servlet.http.HttpServlet                     |service                       |HttpServlet.java              | 847|
18:17:01,650 ERROR [org.orbeon.oxf.xforms.processor.XFormsServer] (http-localhost-127.0.0.1-8080-1)     |org.apache.catalina.core.ApplicationFilterChain    |internalDoFilter              |ApplicationFilterChain.java   | 329|
18:17:01,650 ERROR [org.orbeon.oxf.xforms.processor.XFormsServer] (http-localhost-127.0.0.1-8080-1)     |org.apache.catalina.core.ApplicationFilterChain    |doFilter                      |ApplicationFilterChain.java   | 248|
18:17:01,650 ERROR [org.orbeon.oxf.xforms.processor.XFormsServer] (http-localhost-127.0.0.1-8080-1)     |org.apache.catalina.core.StandardWrapperValve      |invoke                        |StandardWrapperValve.java     | 275|
18:17:01,650 ERROR [org.orbeon.oxf.xforms.processor.XFormsServer] (http-localhost-127.0.0.1-8080-1)     |org.apache.catalina.core.StandardContextValve      |invoke                        |StandardContextValve.java     | 161|
18:17:01,651 ERROR [org.orbeon.oxf.xforms.processor.XFormsServer] (http-localhost-127.0.0.1-8080-1)     |oss.as.web.security.SecurityContextAssociationValve|invoke                        |SecurityContextAssociationValv| 153|
18:17:01,651 ERROR [org.orbeon.oxf.xforms.processor.XFormsServer] (http-localhost-127.0.0.1-8080-1)     |org.apache.catalina.core.StandardHostValve         |invoke                        |StandardHostValve.java        | 155|
18:17:01,651 ERROR [org.orbeon.oxf.xforms.processor.XFormsServer] (http-localhost-127.0.0.1-8080-1)     |org.apache.catalina.valves.ErrorReportValve        |invoke                        |ErrorReportValve.java         | 102|
18:17:01,652 ERROR [org.orbeon.oxf.xforms.processor.XFormsServer] (http-localhost-127.0.0.1-8080-1)     |org.apache.catalina.core.StandardEngineValve       |invoke                        |StandardEngineValve.java      | 109|
18:17:01,652 ERROR [org.orbeon.oxf.xforms.processor.XFormsServer] (http-localhost-127.0.0.1-8080-1)     |org.apache.catalina.connector.CoyoteAdapter        |service                       |CoyoteAdapter.java            | 368|
18:17:01,652 ERROR [org.orbeon.oxf.xforms.processor.XFormsServer] (http-localhost-127.0.0.1-8080-1)     |org.apache.coyote.http11.Http11Processor           |process                       |Http11Processor.java          | 877|
18:17:01,653 ERROR [org.orbeon.oxf.xforms.processor.XFormsServer] (http-localhost-127.0.0.1-8080-1)     |oyote.http11.Http11Protocol$Http11ConnectionHandler|process                       |Http11Protocol.java           | 671|
18:17:01,653 ERROR [org.orbeon.oxf.xforms.processor.XFormsServer] (http-localhost-127.0.0.1-8080-1)     |org.apache.tomcat.util.net.JIoEndpoint$Worker      |run                           |JIoEndpoint.java              | 930|
18:17:01,653 ERROR [org.orbeon.oxf.xforms.processor.XFormsServer] (http-localhost-127.0.0.1-8080-1)     |java.lang.Thread                                   |run                           |Thread.java                   | 744|
18:17:01,653 ERROR [org.orbeon.oxf.xforms.processor.XFormsServer] (http-localhost-127.0.0.1-8080-1)     +----------------------------------------------------------------------------------------------------------------------+"}

Reply | Threaded
Open this post in threaded view
|

Re: Persistence API, what to return when form or attachment not found

bwallis42
Oops, for got to say, running Orbeon 4.7 PE.
Reply | Threaded
Open this post in threaded view
|

Re: Persistence API, what to return when form or attachment not found

bwallis42
So, is 404 the correct response? Getting an error logged makes detecting real errors more difficult.