Search:

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

Page 1 of 5 1 2 3 4

Search: Search took 0.02 seconds.

  1. How many processor cores do you have? Simply...

    How many processor cores do you have? Simply ramping up threads and expecting that to improve throughput wont work and as I suspect you are already seeing switching threads on and off the core can...
  2. Replies
    5
    Views
    1,018

    In general the programmatic creation of flows or...

    In general the programmatic creation of flows or parts of flows is not well supported at the moment in Spring Integration. This is in part due to the focus on the use of Spring namespaces. Often...
  3. Replies
    1
    Views
    377

    Spring Integration In Action is currently...

    Spring Integration In Action is currently available as pdf and is expected to be on the shelves shortly http://www.manning.com/fisher/ (note vested interest since I am one of the authors)

    Pro...
  4. The send-timeout is used to determine the timeout...

    The send-timeout is used to determine the timeout when sending the completed group on to the output-channel or messages to the discard-channel.
    I suspect you want a reaper, details of which can be...
  5. Replies
    7
    Views
    1,270

    This is now fixed in head although I may do some...

    This is now fixed in head although I may do some further refactoring to tidy up a bit more.
  6. Replies
    5
    Views
    1,187

    The name SourcePollingChannelAdapterFactoryBean...

    The name SourcePollingChannelAdapterFactoryBean is auto generated for your channel adapter stdin-channel-adapter. You can either define a poller as a child element of the stdin-channel-adapter or...
  7. Replies
    7
    Views
    1,270

    Looking at the code this appears to be a bug ...

    Looking at the code this appears to be a bug
    https://jira.springsource.org/browse/INT-1812
  8. Replies
    1
    Views
    817

    The XPathRouter class does expose a setter for...

    The XPathRouter class does expose a setter for the converter however this is not currently exposed in the Spring Integration XML namespace. Therefore to make use of this you would need to define the...
  9. BTW there is no getNodeValue() on DOMResult only...

    BTW there is no getNodeValue() on DOMResult only getNode().
  10. Still not clear what makes you think this is not...

    Still not clear what makes you think this is not working. Regarding
    "output is again seen as null instead of 'architecture'" this is for the same reason. You are printing out a Node so the null...
  11. Both DocumentImpl and NodeImpl in Xerces return...

    Both DocumentImpl and NodeImpl in Xerces return null for the getNodeValue() call used in toString() defined in NodeImpl. Hence the output you are seeing or have you converted this to a String to get...
  12. In the first case where you are printing out the...

    In the first case where you are printing out the result of toString on a org.w3c.Node or org.w3c.Document it will give you what you see ie '[interest: null' for the split node and '[#document: null]'...
  13. Replies
    6
    Views
    2,035

    The namespace for the XSL transformer allows the...

    The namespace for the XSL transformer allows the specification of a result-factory and a result-transformer. Providing custom implementations of these should give you the control you want by...
  14. Not easily at the moment since the XPath header...

    Not easily at the moment since the XPath header enricher exposes the standard return types provided by the instance of org.springframework.xml.xpath.XPathExpression it delegates to which only...
  15. Replies
    1
    Views
    1,283

    Are you defining a default poller anywhere else? ...

    Are you defining a default poller anywhere else? Maybe with rejection-policy="ABORT"?

    A long shot but this might cause this if the poll is slow since the default behaviour of your...
  16. In order to persist messages as they sit on the...

    In order to persist messages as they sit on the channel I would provide an implementation of PollableChannel or SubscribableChannel rather than attempt to use an interceptor to add this persistence...
  17. Replies
    14
    Views
    2,451

    Hi Gyuszi The behaviour you expect is the same...

    Hi Gyuszi

    The behaviour you expect is the same as I would expect. Could you post your xml configuration here. Also what mail server and version of Spring Integration are you using?

    Jonas
  18. Replies
    14
    Views
    2,451

    Not 100% clear on what you are saying. Are you...

    Not 100% clear on what you are saying. Are you saying that it works while there is mail but breaks once there is no more mail?

    The IampMailReceiver attempts to avoiding repeated selection of the...
  19. Use the depends-on attribute on the...

    Use the depends-on attribute on the SingleConnectionFactory bean(s) to ensure the pool is initialised after the broker and is destroyed before.

    see section 3.3.3
    ...
  20. JndiDestinationResolver has a setCache method...

    JndiDestinationResolver has a setCache method which defaults to true and also implements the CachingDestinationResolver interface which allows removal of specific items from the cache or the clearing...
  21. Glad you worked out the Xpath expression issue. ...

    Glad you worked out the Xpath expression issue.

    This issue with DOMSource is now fixed in head and will be part of 2.0 M1 release.

    Jonas
  22. As to why you are getting nulls, namespaces? ...

    As to why you are getting nulls, namespaces? Your example Xpath expression assumes everything is in the default namespace. Is that really the case?

    You might want to take a look at the...
  23. The XPath routers use the...

    The XPath routers use the DefaultXmlPayloadConverter which as Iwein says does not support sources however for the case where we are converting to a Node it seems so trivial that we should. I have...
  24. The main advantage is in giving greater...

    The main advantage is in giving greater flexibility both in the mapping and with regard to how you express your mapping. The one killer feature for me is the XPath support which allows you to use a...
  25. Writing your own marshaller/unmarshaller...

    Writing your own marshaller/unmarshaller implementations using XPath is also worth considering. It is more work up front but if done well will allow you to create a mapping that is less fragile in...
Results 1 to 25 of 109
Page 1 of 5 1 2 3 4