As StaxEventItemWriter can not be used as it always throws NullPointerException we are currently rewriting this to a custom item writer to marshal to xml and append to a file.
Shame, as...
Type: Posts; User: flurdy; Keyword(s):
As StaxEventItemWriter can not be used as it always throws NullPointerException we are currently rewriting this to a custom item writer to marshal to xml and append to a file.
Shame, as...
Hi we are getting an unexplained NullPointerException in StaxEventItemWriter.
Our Xml looks something like this:
<bean id="blahWriter"...
I have a reader that extends HibernatePagingReader, and I am concerned about data integrity with the pageing as we delete records in the writer, and how record duplication span page requests.
Our...
Changing my classes to use the native SLF4J loggers directly fixed the problem.
So yes it looks like some commons logging was intefering somewhere.
Our application structure:
app ear ->
-- jcl-over-slf4j-1.5.8.jar
-- log4j-1.2.16.jar
-- sl4fj-api-1.5.8.jar
-- sl4fj-log4j12-1.5.8.jar
-- spring-batch-core-2.1.6.RELEASE.jar
-- ...
Bump.
Any ideas how come log4j statements from classes in the same package gets ignored while listeners' log statements are printed?
Hi,
I have a strange issue regarding logging:
We are using Commons logging with log4j and any log statements are only printed to the specific log4j logfile if they are in a listner. Any log...
Hi, Im trying to implement a reader that will page through a few "parent objects" and their huge collections of "children".
<bean id="blahReader" scope="step"...
I have a similar requirement pattern, a main object with header info, and a collection of child objects.
The main difference is that our source is a database, as another database is the target for...
Thanks for pointing that out.
So it looks like I could look at something like what is explained here:
http://projects.kaare-nilsen.com/wiki/staged-spring
Using Environment Aware Properties...
Been searching around for clues how to do this, without writing custom implementations.
I have application xml like this:
<context:annotation-config/>
<context:component-scan...
Basically I think it was the wrong xmlsec.jar I had transatively received by excluding another from spring-ws-security
Playing around with the maven dependencies solved the issue, although i am not sure which specifically. I mostly removed them and relied on the transitive ones.
Also added unmarshaller setter to...
Hi,
I am setting up ws-security using wss4j, but the client drops the username from the request.
Here is my dump of soap message:
<SOAP-ENV:Envelope...
JIRA issue 362
http://jira.springframework.org/browse/SWS-362
was opened by Oliver regarding this specific issue.
Someone else created a JIRA issue regarding this:
http://jira.springframework.org/browse/SWS-362
Circumvented the issue since i merged to one xsd and not using the schemacollection bean.
Now use this instead
<property name="schema">
<bean...
I encounter this problem in jetty btw.
removed my rc1 transative dependencies. So the problem exists with 1.5.0 release
I do get the same problem.
May be irrelevant, but I did notice I have a maven dependency on spring-ws 1.5.0. However I notice in the build that ws-core is is version rc1:...
Has anyone implemented a database resource view resolver ?
I would like a view resolver which can be extended in real time.
Ie a live server where customers define their own templates,
thus not...