Search:

Type: Posts; User: mjreged; Keyword(s):

Search: Search took 0.04 seconds.

  1. Without @Transactional

    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...
  2. TaskletStep semaphore.acquire() blocks. Can't migrate batch to 2.1.6.

    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....
  3. Using queue

    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...
  4. Data model corrupted with simultaneous requests

    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...
  5. Spring to OpenSSO

    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?
  6. Is Spring Security a direct competitor to OpenSSO

    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...
  7. Found the Answer

    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
  8. Thanks for the tip

    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...
  9. clientTextValidator effecting inputText look and feel

    I have the following code in facelet

    <sf:clientTextValidator regExp="[0-9]" invalidMessage="A number is required.">
    <t:inputText id="covDwelling"...
  10. Item skip dilemma in terms of Business derived Exceptions.

    Our ItemWriter is delegating writing to a service layer.
    for example.


    public void write(Object item) throws Exception {
    CancellationAction cancellationAction = (CancellationAction)item;...
  11. Requires Transactions

    here is an example of open() method


    public void open(ExecutionContext arg0) throws ItemStreamException {

    items = cancellationBatchService.getRisksToCancel(lobList);
    }

    ...
  12. Problem resolved

    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:


    .........
  13. OpenJPA throws InvalidStateException: The context has been closed. while using Batch

    This happens during Job launch

    taking the strategy in the example with ClassPathXmlApplicationContextJobFactory

    The difference is that i have a ApplicationContext created like this:

    ...
  14. This is the web.xml

    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"...
  15. No thread-bound request found ? I do Use RequestContextListener

    The code that invokes the exception is as follows :




    public void doFilter(ServletRequest request, ServletResponse response, FilterChain chain) throws IOException, ServletException {...
  16. Replies
    2
    Views
    1,207

    I have simular concers

    Really, i find hard to find good answers the real life questions.

    The exception handling is really something mysterious using webflow.
  17. Why is that ?

    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...
  18. Replies
    4
    Views
    4,363

    I know the answer

    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...
  19. NullPointerException in FlowExecutionListener

    I cannot instantiate EnterStateVetoException



    public class TivaSecurityFlowExecutionListener extends FlowExecutionListenerAdapter {

    public void stateEntering(RequestContext context,...
  20. Websphere 6.1

    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...
  21. AspectJ weaver

    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...
  22. Springframework 2.5 AspectJ weaving - addTransformer method

    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...
  23. Replies
    8
    Views
    2,884

    Thank you

    thank you mdeinum for the swift clarification.

    I understand now.
  24. Replies
    8
    Views
    2,884

    external method calls

    here is the CustomerAction
    I have a public method called setup


    public class CustomerAction extends MultiAction{

    @Security(group="POLCUSTOMER" )
    public Event setup( RequestContext...
  25. Replies
    8
    Views
    2,884

    WebFlow action bean needs AOP

    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"...
Results 1 to 25 of 25