Search:

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

Page 1 of 2 1 2

Search: Search took 0.02 seconds.

  1. I don't use Castor anymore - I don't think it...

    I don't use Castor anymore - I don't think it supports namespaces very well - so now I use jaxb - more fiddly setting up but definitely worth it when you have a large webservice with all the wsdls...
  2. Replies
    0
    Views
    922

    JMS replyToName in URI

    Hi,

    I'm using Spring web services for the the first time and trying to connect to Websphere MQ as a client. I followed the receipe in the docs and was partly successful.

    The request queue and...
  3. Replies
    0
    Views
    741

    Action bean logging

    First of all, webflow is an excellent framework, i use it a lot. However:

    I'm annoyed by the verbose and hard to control logging produced by AbstractAction and its subclasses. It assumes that I'm...
  4. Apologies. I found the source under modules. I...

    Apologies. I found the source under modules. I was expecting projects or src. In any case, very nice work and thanks!
  5. I wrote my own CastorUnmarshaller based your...

    I wrote my own CastorUnmarshaller based your code. Unfortunately, all the relevent methods in the CastorMarshaller class are final (!), so extending it is not an option. What about include the source...
  6. Hi, I've got a client side Castor issue....

    Hi, I've got a client side Castor issue. Everything is working nice and simply, except for the unmarshalling.

    I'm using the WebServiceTemplate to send and receive, and also attempting...
  7. Perhaps I can shed some light on this issue. ...

    Perhaps I can shed some light on this issue.

    1) We observed that the IllegalAccessException is only caused when more than one concurrent request is made after system startup. If one conversation...
  8. Replies
    1
    Views
    796

    Embed view bean in view-state

    Sometimes I'd like to simply have the view-state contain its own view-bean. The XmlViewResolver is nice, but it can be tedious to maintain a list of bean names (in view.xml) that exactly mirror the...
  9. Keith + Erwin, OK cool. thanks for the tip. ...

    Keith + Erwin, OK cool. thanks for the tip.

    And thanks also for the whole Webflow thing, it's something that I've been using on several VoiceXml projects this year - it works very nicely, and...
  10. Klr8, I had adapted the previously posted viz...

    Klr8,

    I had adapted the previously posted viz code for RC3 and passed it though DOT - that worked nicely.

    My compiler complains about these lines from your latest 1.0 example:
  11. looks like a spring webflow issue

    looks like a spring webflow issue
  12. Custom XML bean parsing error (only with 2.0 final)

    Here's my custom bean:


    <e:state id="demo" parent="vecrema.recognition" xmlns:e="http://www.vecommerce.com/escalation-state"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"...
  13. Replies
    15
    Views
    2,084

    RC4 migration

    I'm at currently at RC3 and freaked when I found the RC4 classes had changed so much.

    I use the doPopulate method on the FlowRegistryFactoryBean to meddle with the flows after they are constructed...
  14. FlowExecutionListener - can it listen for Exceptions?

    We use a FlowExecutionListener for logging/tracing all events happening in webflow. It is possible to use this mechanism to log exceptions too, especially where exceptions are caught by webflow and...
  15. Replies
    6
    Views
    1,199

    Exception Handling

    I expect the exception transition handler to respond to all sub-classed exceptions (as per catch in Java).


    <transition on-exception="java.lang.Exception" to="displayError"/>

    This appears to...
  16. Colin, I agree with you - i think. The...

    Colin,

    I agree with you - i think.

    The behaviour you describe seems intuitive to me - but behaviour I found is different to that, even though I am using RC1.
  17. I have an output-mapping problem at the subflow...

    I have an output-mapping problem at the subflow level:


    <subflow-state id="selectAccount" flow="main.account.select">
    <attribute-mapper>
    <input-mapper>
    <mapping...
  18. I think I have solved this one. I had to...

    I think I have solved this one.

    I had to switch the target and source around.


    <output-mapper>
    <mapping source="accounts" target="flowScope.accounts"/>
    </output-mapper>

    </flow>
  19. output-mapping Exception

    I had this stuff working in EA release - getting many OGNL related issues now including the one mentioned above.

    I have a flow with an output-mapping


    <output-mapper>
    <mapping...
  20. Replies
    6
    Views
    961

    Factories and member variable initialisation

    Keith,

    This code ties the FlowRegistrar into the XmlFlowRegistryFactoryBean :


    public class XmlFlowRegistryFactoryBean extends AbstractFlowRegistryFactoryBean {

    /**
    * The flow registrar...
  21. Replies
    6
    Views
    961

    Yes, that looks good. So i'd override this...

    Yes, that looks good.

    So i'd override this with my own flow definition.


    /**
    * Factory method that creates a flow definition from an externalized resource location.
    * @param...
  22. Replies
    6
    Views
    961

    Extending XmlFlowRegistrar

    I like to name my flows from the name of the folder containing the flow.xml file rather than the flow file name itself. I had used -EA release interfaces :-) - specifically I overrode the getFlowId()...
  23. I'm trying to unit test my flows, and integration...

    I'm trying to unit test my flows, and integration test them too.

    All my flows import their own small beans.xml file that defines the FormAction bean (always called "action').


    <flow>
    ....
    ...
  24. Replies
    3
    Views
    3,361

    Session blob lifecycle

    I have a situation where a request to a clustered server may get a 500 code return (or something similar) - indicating that one of the servers went down. I'd like to be able to repeat the request on...
  25. Replies
    8
    Views
    3,988

    Keith, Thanks for the post. So given the...

    Keith,

    Thanks for the post.

    So given the following comment...



    ... it looks like i'd have to duplicate a fair amount of code around the place. I'm favouring the inheritance mechanism more...
Results 1 to 25 of 27
Page 1 of 2 1 2