Search:

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

Page 1 of 3 1 2 3

Search: Search took 0.03 seconds.

  1. Replies
    15
    Views
    1,704

    My new groovy transformer...

    My new groovy transformer (GroovyTransformer.groovy):



    class GroovyTransformer {

    public Transaction transform(Trade trade) {
    def t = new...
  2. You can look at samples:...

    You can look at samples: https://github.com/SpringSource/spring-integration
    ...and reference: http://static.springsource.org/spring/docs/3.0.x/spring-framework-reference/html/testing.html
  3. I think..that now I truely understand Your...

    I think..that now I truely understand Your mechanism.

    In my scenario I have some kind od message feeder (simple sending messages based on sequence).
    Then I have resequencer to maintain the proper...
  4. Thank YOU for Your help...I want to be clear..I...

    Thank YOU for Your help...I want to be clear..I have a configuration:



    <bean id="reaper" class="org.springframework.integration.store.MessageGroupStoreReaper">
    <property...
  5. This is my resequencer configuration: ...

    This is my resequencer configuration:


    <int:resequencer id="seqNumberResequencer" input-channel="packetFilteredChannel" output-channel="sequenceStoreChannel"
    discard-channel="discardChannel"...
  6. External system is sending us messages using...

    External system is sending us messages using UDP...we can not change that.
  7. Yes...something like that..but like Mark...

    Yes...something like that..but like Mark mentioned before...I can not assume that when messages have come in out-of-order I have to notify the re-send server imediatelly.
    In my case I have to do...
  8. Yes..now I understand..You are right..I can use...

    Yes..now I understand..You are right..I can use the timeout attribute to determine if I should notify the server to re-send
  9. In UDP environment...messages can be lost..You...

    In UDP environment...messages can be lost..You can not predict...in that case I have to send a request to synchronization server to send me (one more time) messages from 11-19 (see above). If I do...
  10. Next thing to mention...I would like to be able...

    Next thing to mention...I would like to be able to reset sequence number to 1 or custom value..is that posssible?

    Imagine the use-case:

    External system is sending us messages with sequnce...
  11. No no....no 'times out'..I would like to be...

    No no....no 'times out'..I would like to be notified in real time that Resequencer has found out that there is a gap in a sequence. Let say we are receiving messages from 1 to 10..then we have...
  12. INT-1769 Unbounded Message Store - Initial Commit

    Hi!

    Currently I am using resequencer component by this:



    <int:resequencer id="seqNumberResequencer" input-channel="inputChannel" output-channel="outputChannel"...
  13. Replies
    15
    Views
    1,704

    Hi! I have made some tests of object...

    Hi!
    I have made some tests of object transformations jn JDK6, JDK7 and Groovy 1.8.2 (using Spring Integration 2.1.0.M1). My use-case:

    1. Receive message from publish-subscribe channel by...
  14. Replies
    15
    Views
    1,704

    I am not an expert in Groovy and I dont know how...

    I am not an expert in Groovy and I dont know how it is done in spring integration. Do I have to provide (to my groovy transform classes) some kind of method signature?
    I can read Msg1 from context...
  15. Replies
    15
    Views
    1,704

    I would like to execute some method in groovy...

    I would like to execute some method in groovy class. Something like this:



    <transformer input-channel="input">
    <groovy:script location="Msg1Transformer .groovy"/>
    </transformer>
  16. Replies
    15
    Views
    1,704

    GroovyTransformerTests.groovy This is pure...

    GroovyTransformerTests.groovy

    This is pure business logic? Can it be some kind of:



    class Msg1Transformer {

    GroovyObject transform(Msg1 msg) {
    }
  17. Replies
    15
    Views
    1,704

    I think...30 types max...but how can I integrate...

    I think...30 types max...but how can I integrate Payload Type Router with groovy scripts? (each script = 1 transformer).
    I would like to have dynamic transformers (*.groovy files) and some kind of...
  18. Replies
    15
    Views
    1,704

    Transformer + Groovy

    Hi!

    I would like to implement custom Transformer component.
    In my use case I have some kind of message with a type. Depending of the message's type I have to make proper transformations.
    So my...
  19. Thread: JMX Export

    by snc85
    Replies
    3
    Views
    723

    Ok, thanks...I'd rather stay with proxying to...

    Ok, thanks...I'd rather stay with proxying to interface...
  20. Thread: JMX Export

    by snc85
    Replies
    3
    Views
    723

    OK..I have switched to interface:...

    OK..I have switched to interface:
    org.springframework.integration.MessageChannel

    ...and it works!
  21. Thread: JMX Export

    by snc85
    Replies
    3
    Views
    723

    JMX Export

    Hi!

    I have o problem with JMX export. I have some standard Spring Integration components and I would like to export them via JMX using '<jmx:mbean-export/>'. In my 'app-context.xml' I have added:...
  22. No, no...no removing from list :) To sum up, now...

    No, no...no removing from list :)
    To sum up, now I have such components as:
    - udp-inbound-channel-adapter
    - transformer
    - filter
    - resequencer
    - logging-channel-adapter
  23. Ok. THANK YOU GUYS!!!

    Ok. THANK YOU GUYS!!!
  24. I know that...but Splitter component should be...

    I know that...but Splitter component should be thread-safe...am I wrong?
  25. Ok.thanks for Your free time.

    Ok.thanks for Your free time.
Results 1 to 25 of 54
Page 1 of 3 1 2 3