Dave,
Your are right, i deliberately set p:validateTransactionState="false" to avoid the exception that I think you are referring too ( AbstractJobRepositoryFactoryBean.java line 160 -167 ).
I...
Type: Posts; User: mjreged; Keyword(s):
Dave,
Your are right, i deliberately set p:validateTransactionState="false" to avoid the exception that I think you are referring too ( AbstractJobRepositoryFactoryBean.java line 160 -167 ).
I...
Hello Spring Batch Experts.
I came across a use case where my batch job hangs indefinitely.
I am in a middle of batch migration from 1.1.4 to 2.1.6. This issue is a show stopper for us right now....
Since we rely on Richfaces framework for ajax work. We had a queue not configured properly. Or at least we did not really understand how it works.
The only way we stopped our model from being...
Technology :
Spring Webflow 2.0.8
MyFaces 1.2.7
RichFaces 3.3.1
jboss el 2.0.1
tomcat5.5
Usecase : a main page contains <rich:tabPanel> with 6 <rich:tab> tags. switching is set as...
then i found this blog about opensso and spring.
http://blogs.sun.com/warren/entry/spring_comes_early_to_opensso
What Spring community think about this?
I am learning about security in general. I work at a software company that produces home owner insurance software. The new application takes advantage of spring 2.5.6, cxf, webflow 2, batch 1.3...
So it turns out with little help of Firebug on firefox that i just need to know better tundra theme and all of it's classes.
by overwriting
.dijitTextBox{
}
i now can control the width
Thanks for the Tip, adding class="tundra"
did have an effect on the text box itself at least it's not ugly now
the validation message box thought still has a plain look, i guess thundra class is...
I have the following code in facelet
<sf:clientTextValidator regExp="[0-9]" invalidMessage="A number is required.">
<t:inputText id="covDwelling"...
Our ItemWriter is delegating writing to a service layer.
for example.
public void write(Object item) throws Exception {
CancellationAction cancellationAction = (CancellationAction)item;...
here is an example of open() method
public void open(ExecutionContext arg0) throws ItemStreamException {
items = cancellationBatchService.getRisksToCancel(lobList);
}
...
With the help of my co-worker i finally realized why this occurred
and like in most cases i had my transaction aop misconfiguration
to fix it i had to add this to my config:
.........
This happens during Job launch
taking the strategy in the example with ClassPathXmlApplicationContextJobFactory
The difference is that i have a ApplicationContext created like this:
...
I do not create any threads explicitly.
<?xml version="1.0" encoding="UTF-8"?>
<web-app id="WebApp_ID" version="2.4" xmlns="http://java.sun.com/xml/ns/j2ee"...
The code that invokes the exception is as follows :
public void doFilter(ServletRequest request, ServletResponse response, FilterChain chain) throws IOException, ServletException {...
Really, i find hard to find good answers the real life questions.
The exception handling is really something mysterious using webflow.
Why Is that ?
what's the technical reason?
I mean, it seems to me that this EnterStateVetoException would make sense when entering the flow.
For example how do i handle a situation
like...
the current MyFaces 1.2.0 has a bug that will not allow you to deploy MyFaces on older then JSP 2.1 spec even if you are using Facelets to get rid of this dependency, you have to build the latest...
I cannot instantiate EnterStateVetoException
public class TivaSecurityFlowExecutionListener extends FlowExecutionListenerAdapter {
public void stateEntering(RequestContext context,...
I guess i should mention what platform i am on.
Using:
Websphere 6.1 patch 11 JDK 5 implementaion
Developing with: Eclipse 3.2 IBM RSA 7 extensions
Project includes:
Springframework 2.0...
This is exactly the section i was following
6.8.4. Load-time weaving with AspectJ in the Spring Framework
I am in this type of situation that the section is describing
mdeinum thank your...
I looked into springframework 2.5 as it has a greater support for native AspectJ Load time weaving making possible to omit autoproxing approach
This is as far as i got :
Error creating bean with...
thank you mdeinum for the swift clarification.
I understand now.
here is the CustomerAction
I have a public method called setup
public class CustomerAction extends MultiAction{
@Security(group="POLCUSTOMER" )
public Event setup( RequestContext...
In my Project i use Spring WebFlow.
I have a bean defined in one of my flow.xml files
<bean id="customerActions" class="com.system.actions.CustomerAction" >
<property name="webService"...