Search:

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

Page 1 of 2 1 2

Search: Search took 0.01 seconds.

  1. Replies
    2
    Views
    405

    Ok.Printing the headers revelaed that SI sends...

    Ok.Printing the headers revelaed that SI sends x-headerkey. Even camel case is overriden also. Is there a way to not append x- in SI when sending the header values ?
  2. Replies
    2
    Views
    405

    Headers not being sent to http post URL

    I have client A spring webapp which makes a call to servlet B. Servlet B has a method doPost() and accepts request. When making an http call via PostMethod from A i am able to retrieve the header...
  3. Replies
    1
    Views
    216

    Solved my own question

    Solved my own question
  4. Replies
    1
    Views
    216

    Question on ResponseBody as a parameter

    I am making a restful POST call to my controller where the contents sent to my method will be the contents of the PDF data.


    @RequestMapping(value = "{param1}", method = RequestMethod.POST)...
  5. Replies
    6
    Views
    347

    I feel bad now for making that simple mistake....

    I feel bad now for making that simple mistake. Thanks
  6. Replies
    5
    Views
    333

    You also might want to check the last date and...

    You also might want to check the last date and time stamp of the file when it was picked up in your filter. Compare the file.getLostModified time with whatever time you want to compare. If the...
  7. Replies
    6
    Views
    347

    Consider the following example Cleric :- ...

    Consider the following example Cleric :-




    public interface RequestGateway {

    List<Foo> hello(JsonObj json);
    }
  8. Replies
    5
    Views
    333

    http://static.springsource.org/spring-integration/...

    http://static.springsource.org/spring-integration/api/org/springframework/integration/file/filters/FileListFilter.html
  9. Replies
    5
    Views
    333

    Implement a custom filter for the file inbound...

    Implement a custom filter for the file inbound adapter which will get executed. lOOK at FileLISTFilter. Try to put your own logic on what files needs to be picked etc like a sorting algorithihm which...
  10. Replies
    25
    Views
    1,078

    Sprry disregard my previous post as you are...

    Sprry disregard my previous post as you are explicity setting in the code itself
  11. Replies
    6
    Views
    347

    Thanks for the reply Gary. I have a service with...

    Thanks for the reply Gary. I have a service with method getFoo(String name, int age); I have a POJO which contains fields which needs to be set to default values and then i am converting the POJO to...
  12. Replies
    25
    Views
    1,078

    Where is the config for setting hostname,...

    Where is the config for setting hostname, password, username, directory path etc on sftpSessionFactotry?
  13. Replies
    6
    Views
    347

    Copying Message Headers enhancement request

    I have struggled today for atleast 4 hours trying to figure out why i was getting an error stating 'no output channel exception' on my

    <int:chain input-channel="response">
    .
    .
    </int:chain>
    ...
  14. Replies
    25
    Views
    1,078

    Why not write a class which returns you back the...

    Why not write a class which returns you back the remote directory expression just a regular string and then use header enricher to set it ?. Much simpler..
  15. Replies
    1
    Views
    566

    resolved my...

    <int:object-to-json-transformer> resolved my issue.. Thanks
  16. Replies
    1
    Views
    566

    calling a remoting service via http outbound

    I have a web appication running on my local machine and my services are exposed as remoting on http URL via jsonrpc4j.


    <bean name="/UserService.json"...
  17. Replies
    0
    Views
    215

    calling a remoting service via http outbound

    Please delete this thread as i already have one created
  18. Thread: Scheduling

    by poly
    Replies
    8
    Views
    524

    Following cron expression will let you run at...

    Following cron expression will let you run at 12:00AM:-


    <property name="cronExpression" value="0 0 12 * * ?" />
  19. 1. Is this a common/advisable pattern ? A) This...

    1. Is this a common/advisable pattern ?
    A) This is what most of the ESB has to offer is to seperate most of your clutter code like making JDBC connection, orr http connection and running queries on...
  20. Err. So stupid that i was sending the output of...

    Err. So stupid that i was sending the output of the http outbound gateway to another reply channel which was using the unmarshal transformer and was causing the issue when putting the class name in...
  21. Hello Cleric. I forgot to tell you that i did try...

    Hello Cleric. I forgot to tell you that i did try putting my JaxB annotation class name in the expected response type and i got the followin exception 'Failed to create source for payload type [ Your...
  22. expected-response-type org.w3c.dom.Document issue

    Hello. I have been using Mule for quite some time but based on their recent releases which includes several bugs, i gave SI a shot and it's very impressive. While playing around with http:outbound...
  23. Replies
    1
    Views
    302

    I tried changing it to POST to see if it has any...

    I tried changing it to POST to see if it has any effect and now i get PageNotFound POST is not supported. Anyone ?
  24. Replies
    1
    Views
    302

    QUestion on Spring MVC REST

    I am working on spring rest WS. I have a controller with 2 methods. one which displays the JSP page with a textfield and the other which process the value of the textfield. When user types this URL...
  25. Wow i am stumped. When using this code :- ...

    Wow i am stumped. When using this code :-




    Session session = null;
    try {
    session = sessionFactory.getCurrentSession();
    .
    .
Results 1 to 25 of 28
Page 1 of 2 1 2