Hello all,
I have a Java class that has more than desired fields to be serialized to the Flex side.
I've followed the documentation and I've added some @AmfIgnore annotations on those Java...
Type: Posts; User: aalbericio; Keyword(s):
Hello all,
I have a Java class that has more than desired fields to be serialized to the Flex side.
I've followed the documentation and I've added some @AmfIgnore annotations on those Java...
Hi Jeremy,
I will check that listener and see if it fits all my needs. I'll post some thoughts in some days.
Thanks you, again.
A.
I want to add some information on what I exactly need:
1) When I ever call a channelSet.login() from Flex, I need to run a log.warn
2) On successful channelSet.logout(), I need to run a...
Hi all,
On SpringBlazeDS + Spring Security project, is there a recommended way to LOG ( using log4j ) any successful/not succesful login/logout?
Thank you.
I've removed that messageTemplate.getMessageBroker().getLoginManager ().logout() RPC call for a plain channel.logout() at Flex initialization. Works 100%.
Cheers.
Hi Jeremy,
Is 1.0.2 compatible with Spring 3.0.1 + Spring Security 3.0.2? Cause I'm getting this error at startup:
Cannot resolve reference to bean '_messageBrokerLoginCommand' while setting...
I started a project from zero and everything is working now. I probably forgot some filters or something.
A.
I think I should extend my question to:
I need my Spring Security + Spring BlazeDS application to work with any browser and any configuration? Is there any way to achieve this?
Thanks.
A.
...
Hello all,
I'm using Spring for blazeds 1.0.2 and Spring 2.5.6 in my application and I have a custom service that does something like this:
Authentication authentication =...
Hello Jeremy,
I have experienced this behaviour and, after reading this post, I followed your advice and added a service method to execute this:
...
For me, getting the authorities as an Array of Strings ( which is the default mode ) just works. I suggest you to debug your Spring security login process at the point where you get that user...
You forgot one first step: if you want that extra information to be available on your Security Context, you also need to implement a custom UserDetailsService and override the method...
That would be cool and useful.
Thanks Jeremy.
Thanks for the answer Jeremy.
I found it clean but also a bit tricky. At the moment, I dont see any trivial way to improve this; we dont need to forget we have a piece called "spring for blazeds"...
Okay, I got it working. I dont know if Jeremy will agree but... :)
I decided to code a custom message interceptor, a custom AuthenticationResultUtils and bingo! :)
Btw, I had to change these...
Browsing the spring for blazeDS code, I believe I have to customize this:
public abstract class AuthenticationResultUtils { ... }
Is that right? If so, how can I do that?
Thanks
Hello,
When working with spring for blazeds and spring security, as soon as I get logged in, I get a ResultEvent on the Flex side. That event is populated with important data such as username,...
Thank you Jeremy. For now, I can live with Spring 2.5.6 + Spring Security 2.0.5 but it's good to hear you are working to support Spring 3 products and BlazeDS 4.
Thanks.
Hi all,
Does "Spring for blazeDS 1.0.1" work with the latest "Spring security 3.0.0.*" ( current 3.0.0.M1 ) ?
Thanks
Hello all,
I want to ask a Spring Security question; here's the scenario:
Some very important user logs in a spring-security based application. This user has access to some secured methods (...
Hi Jeremy,
Please could you confirm what combinations of Spring versions are currently supported by SpringBlazeDS 1.0.1.RELEASE?
1) Spring 2.5.6 + Spring Security 2.0.5 ( works? )
2) Spring...
Hi all,
When defining a messaging destination, we use something like:
<flex:message-broker>
<flex:message-service default-adapter-id="my-default-messaging-adapter" ...
Hi Raduf,
I used the code from my first post. I just wanted to ask there was any other ( more high level ) way to send a message to a subtopic.
"messageChannel" was the message destination in...
Hi,
I'd like to know how can I use MessageTemplate to create and send a message to a given subtopic.
I'm meaning something like:
template.send( "messageChannel", whatever_i_want_to_send,...
Hi Jeremy,
I had a typo in the streamingAMF channel URL and the Flex app was connecting to a wrong messaging URL. Thanks to Raduf for pointing this out.
Please, feel free to remove the opened...