Page 4 of 8 FirstFirst ... 23456 ... LastLast
Results 31 to 40 of 76

Thread: Reference Manual feedback please!

  1. #31

    Cool Building PDF Docs Runs Out of Heap Space - Succeeded

    That worked. Thanks.

  2. #32
    Join Date
    Dec 2010
    Posts
    4

    Default

    Thank you for giving me this! That's what I need!

  3. #33
    Join Date
    Dec 2010
    Posts
    1

    Default

    Quote Originally Posted by maalaoui Souheil View Post
    Je suis débutant avec Spring Integration,

    Je veux savoir comment faire pour pounoir communiquer deux programmes via Spring Integration.

    Merci bien d avance.
    I think the manual could use more detailed information on RMI integration. Specifically, exposing existing services using RMI and consuming an RMI service (i.e. hooking up to existing code.) I think I've finally figured out how to do this, but it took a fair bit of trial and error.



    ______________________
    electronic books online
    electronic books

  4. #34
    Join Date
    Jan 2011
    Posts
    4

    Default

    The code snippet on "13.2 Http Inbound Gateway"

    Code:
    <bean id="httpInbound" 
      class="org.springframework.integration.http.inbound.HttpRequestHandlingController">
      <constructor-arg value="true" /> <!-- indicates that a reply is expected -->
      <property name="requestChannel" ref="httpRequestChannel" />
      <property name="replyChannel" ref="httpReplyChannel" />
      <property name="viewName" value="jsonView" />
      <property name="supportedMethodNames" >
        <list>
          <value>GET</value>
          <value>DELETE</value>
        </list>
      </property>
      <property name="expectReply" value="true" />
    </bean>
    leads to error "property 'expectReply' is not writable or has an invalid setter method"

    The recent API shows "expectReply" may be passed as a constructor's parameters only.

    P.S.
    IMHO the reference manual it self looks like the set of promotional posters that shows - "Oh, we can do this, we can do that". But it does not explains "How To Do".
    Last edited by anachoret; Jan 13th, 2011 at 08:32 AM.

  5. #35
    Join Date
    Jan 2008
    Location
    Mohnton, PA USA (that's near Philadelphia)
    Posts
    2,148

    Default

    Fixed.

    That property was there as a leftover from the old implementation.

    Could you provide more details as far as your last point. What do you think is missing with regard to how?

  6. #36
    Join Date
    Oct 2009
    Location
    Minneapolis, MN
    Posts
    137

    Default

    Http Inbound adapter with expect-reply set as true. Im bit unclear how this works any examples? the current samples dont use this flag.

    Thanks
    Srinivas

  7. #37
    Join Date
    Jan 2008
    Location
    Mohnton, PA USA (that's near Philadelphia)
    Posts
    2,148

    Default

    Http Inbound Adapter does not have 'expect-reply' attribute.

    Internally we are using the same class HttpRequestHandlingController to construct Http Inbound Gateway and Http Inbound Adapter.

    Adapters are uni-directional while gateways are bi-directional.

    We simply invoke different constructor when creating Adapter or Gateway.

    Hope that clarifies.

  8. #38
    Join Date
    Oct 2009
    Location
    Minneapolis, MN
    Posts
    137

    Default

    Yes Thanks for the update

  9. #39
    Join Date
    Apr 2005
    Location
    New York
    Posts
    35

    Default 16.1 Inbound Channel Adapter sentence wording...

    16.1 Inbound Channel Adapter section has this:
    Optionally this can be changed by adding a reference to requires a reference to a RowMapper instance.
    Maybe should be this:
    Optionally this can be changed by adding a reference to a RowMapper instance.
    Tony Falabella

  10. #40
    Join Date
    Dec 2010
    Location
    Austin, Texas
    Posts
    13

    Default

    Expanding error handling section would be great. All we are doing right now is trial and error.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •