is there any way to intercept STOMP CONNECT frame in Spring and refuse it under some conditions?
The interception itself can be done using SessionConnectEvent but I would like to allow or refuse the connection based on headers. I cannot do it in the SessionConnectEvent listener.
Spring Websocket Stomp handle CONNECT frame
1.3k Views Asked by Damian At
1
There are 1 best solutions below
Related Questions in SPRING
- Redirect inside java interceptor
- Spring RestTemplate passing the type of the response
- spring-integration-dsl-groovy-http return null when i use httpGet method
- Custom Spring annotation for request parameters
- Spring - configure Jboss Intros for xml with java config?
- HTTP Status 404 - Not Found in Spring 3.2.7
- AndroidAnnotations how to use setBearerAuth
- android I/O error: java.security.cert.CertPathValidatorException: Trust anchor for certification path not found
- Show login dialog when not authenticated yet
- Spring Data Rest supporting json and xml
- @Value annotation not resolved in a class that belongs to dependency jar
- Remove nested _embedded fields while using projections
- How to send Rest GET request that contains "#" value in url parameters?
- How to inject spring bean into Validator(hibernate)
- How to keep a variable in the URL when using Spring LocaleChangeInterceptor
Related Questions in STOMP
- Spring Websocket Stomp handle CONNECT frame
- Sending binary data stompClient to Spring-websocket controller and consuming
- Spring security 4.0.1 and Spring 4.2.0.RC1 stompBrokerRelayMessageHandler bean error with RabbitMQ
- Manually setting authenticated user on a websocket session using spring security
- reconnect an activemq subscriber over stomp protocol written in ruby if activemq broker goes down
- Error during WebSocket handshake: Unexpected response code: 400 when using Spring Websocket, Stomp, SockJS in Openshift
- How to schedule delay message in activemq using python stomp.py client
- how to know if SimpMessagingTemplate.convertAndSend fails?
- How to read message from Topic in ActiveMQ + PHP + Stomp?
- set prefetch limit from stomp API
- Does it make sense to create promise from StompClient SEND request?
- Spring Websocket with SockJs switch from XHR streaming to Websocket
- how to solve spring sokjs android client broken pipe error
- Subscribers connecting to a STOMP queue don't get added to round-robin distribution
- Subscription with selector does not work from python - stomp.py
Related Questions in SPRING-WEBSOCKET
- Counting times a function is called via JUnit
- Web Socket issue In clustering Environment
- Spring SimpMessagingTemplate
- Spring Websocket Stomp handle CONNECT frame
- WebSocket with Spring backend loses connection after a while, onclose is not called
- Sending binary data stompClient to Spring-websocket controller and consuming
- How to enable cross-origin requests in Grails websocket plugin
- Manually setting authenticated user on a websocket session using spring security
- How to get WebSocketSession from ApplicationListener or interceptor
- Which context should websocket config go into?
- How to authenticate WebSocket within an existing HTTP environment with Spring Security
- The Spring 4 WebSocket integrates into a Spring MVC application
- can i connect client server(localhost:8082) and websocket(localhost:8080)?
- Spring WebSocket stopped working, how to find the reason?
- Spring Websocket STOMP load testing
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
If we take a look to the
StompSubProtocolHandlercode, we'll see this:So, the
CONNECTframe not only emitted as aSessionConnectEvent, but is sent to theclientInboundChannelas well.So, what you need to achieve you requirement is just providing a custom
ChannelInterceptorwithpreSendimplementation and register it overridingWebSocketMessageBrokerConfigurer.configureClientInboundChannel.