Я использую Spring Flex проект 1.5 .Я хочу создать службу с областью сеанса.
@Service("storeService")
@Scope(value = "session", proxyMode = ScopedProxyMode.INTERFACES)
@RemotingDestination(channels = { "my-amf" })
public class StoreService implements IStoreService {
Когда я получаю доступ к службе, я получаю No destination
ошибку.
org.springframework.flex.core.DefaultExceptionLogger - The following exception occurred during request processing by the BlazeDS MessageBroker and will be serialized back to the client:
flex.messaging.MessageException: No destination with id 'storeService' is registered with any service.
У меня нет проблем, если я не аннотируюс @Scope, но это одноэлементная область, а не область сеанса.Я что-то упустил?