Search:

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

Page 1 of 3 1 2 3

Search: Search took 0.02 seconds.

  1. as far as I can tell, that is not in the scope of...

    as far as I can tell, that is not in the scope of this conversation (pun intended :P )
    browser tabs all share the same "session" and as such, you cannot log into the same app with different details...
  2. Replies
    4
    Views
    3,665

    I know this is an old thread, but for clarities...

    I know this is an old thread, but for clarities sake for others that come across this.

    Although you CAN use RowMapper and ResultSetExtractor in the way described above, this is actually the...
  3. Replies
    1
    Views
    235

    achieved this by overriding...

    achieved this by overriding determineUrlToUseForThisRequest in my existing AuthenticationProcessingFilterEntryPoint implementation



    @Override
    protected String...
  4. Replies
    1
    Views
    235

    Retaining URL parameters

    ok.

    lets say I have a secure url pattern

    eg. /secure/link-profile

    optionally, there can be url paramaters appended.

    eg....
  5. reload an authenticated user on frontend app via backoffice app

    we have 2 apps, frontend and backoffice webapps.

    on the frontend, users can purchase "credits"

    these purchases remain in a PENDING status until an admin authorizes them in the backoffice.
    ...
  6. redirecting authorised users when accessing @PreAuthorize("isAnonymous()")

    I have my registration controller setup to only allow anonymous users



    @Controller
    @PreAuthorize("isAnonymous()")
    public class RegistrationController {
    //snip
    }
  7. Replies
    8
    Views
    3,248

    swagger doesnt support @Controller,...

    swagger doesnt support @Controller, @RequestMapping, only JAX-RS

    there is a plugin, https://github.com/martypitt/swagger-springmvc, but it really doesnt work well.
  8. Replies
    3
    Views
    225

    this is how we do it

    this is how we do it



    <c:set var="ctx" value="${pageContext.request.contextPath}" />


    and then use $ctx in your urls
  9. Replies
    8
    Views
    3,248

    @Robert, thank you very much !!

    @Robert, thank you very much !!
  10. RequestMapping for urls with very large numbers of GET vars

    say we have a simple search mapping



    @RequestMapping(value = "/search", method = RequestMethod.GET)
    public String search(@RequestParam("q") String searchTerm) {
    //snipped
    }
  11. I hadnt actually set my client mode to passive,...

    I hadnt actually set my client mode to passive, when I thought I had :p
  12. FTP outbound gateway LS not "working" on unix machines

    I have a simple ftp outbound gateway configured for ls, get, rm



    <int-ftp:outbound-gateway id="gatewayLS"
    cache-sessions="false"
    session-factory="incomingCachingSessionFactory"...
  13. thinking about this, I can probably just use a...

    thinking about this, I can probably just use a file-name-generator on the out-bound-adapter that has a "subfolder" setting in it, that then does a count on the current subfolder
  14. enriching file:inbound-channel-adapter message header with poller execution data

    I have a simple file inbound channel adapter and file outbound channel adapter configuration to basically move files from one folder to another

    the source folder read by the inbound channel...
  15. Replies
    2
    Views
    191

    high volume messages channel

    how well does spring integration handle high volumes on a channel.

    eg an inbound file adapter listening to a folder with 50000+ files.
    is it better to to set a max-messages-per-poll in this case?...
  16. Thinking about this more, it is probably even...

    Thinking about this more, it is probably even better if I use an file-inbound-channel adapter
  17. as an update, I managed to "fix" my problem by...

    as an update, I managed to "fix" my problem by amending my "newFileChannel" like so, essentially adding a tast-executor

    ftp-context.xml


    <publish-subscribe-channel id="newFileChannel"...
  18. Exception in service activator is causing premature ending of process

    I have a basic flow:
    gateway
    3x ftp outbound gateway (ls, get, rm)
    a service activator (unzip's each file downloaded)
    transformer (exception handling)

    as a test, I put 2 zip files on my ftp...
  19. FTP Outbound Gateway. What a great piece of kit....

    FTP Outbound Gateway. What a great piece of kit. I completely looked this by, as I just saw outbound, and associated it with Outbound Channel Adapter

    thanks a stack guys
  20. hi oleg :) yes, essentially I want to replace...

    hi oleg

    :)
    yes, essentially I want to replace the "event" that happens on the polling interval, with my own event, eg control bus, or message on channel, etc

    more description of my usecase.
    ...
  21. FTP inbound channel adapter without poller and instead rely on control bus?

    One of the requirements for ftp-inbound-channel-adapter is a poller.

    is it possible to create a "non-polling" poller.

    I would like to fire it once per message via control bus.

    Basic flow:...
  22. Replies
    3
    Views
    523

    this is perfect, you really do learn something...

    this is perfect, you really do learn something new every day :)

    I suppose now that I see it, it makes absolute sense
  23. Replies
    3
    Views
    523

    thanks for your prompt reply Gary, I will take a...

    thanks for your prompt reply Gary, I will take a look at this
  24. Replies
    3
    Views
    523

    Dynamic Inbound Channel Adapter creation

    We are busy with a feed/content aggregation solution.

    The basis is that our clients will be able to register their own endpoints.

    In it's simplest form, lets say they can specifiy the FTP...
  25. Replies
    1
    Views
    1,164

    having the same issue, did you come right?

    having the same issue, did you come right?
Results 1 to 25 of 60
Page 1 of 3 1 2 3