Your achievements

Level 1

0% to

Level 2

Tip /
Sign in

Sign in to Community

to gain points, level up, and earn exciting badges like the new
Bedrock Mission!

Learn more

View all

Sign in to view all badges

endryha
endryha
Offline

Badges

Badges
5

Accepted Solutions

Accepted Solutions
0

Likes Received

Likes Received
0

Posts & Comments

Posts & Comments
8

Discussions

Discussions
0

Questions

Questions
0

Ideas

Ideas
0

Blog Posts

Blog Posts
0
Top badges earned by endryha
Customize the badges you want to showcase on your profile
Re: RTMP Server Fails - Adobe LiveCycle 16-08-2010
Is there any way to use rtmp connectivity in cases when I have access to internet only via proxy and only 80 port is avaliable for me?

Views

172

Likes

0

Replies

0
Re: could not find MessageClient for clientId in pushMessageToClients - Adobe LiveCycle 19-02-2010
OMG. I am laughing on my self. The problem was in absolutely different place... So this code is works as well. You can use it as example...

Views

157

Likes

0

Replies

0
Re: could not find MessageClient for clientId in pushMessageToClients - Adobe LiveCycle 19-02-2010
Forgot to say. I am able to send message to all clients within following code:public void sendMessageToAllClients(Object msgBody) { log.debug("send message to all clients: " + msgBody); AcknowledgeMessage acknowledgeMessage = MessageBroker.getMessageBroker(null).routeMessageToService(createMessage(msgBody), null); log.debug("result: " + acknowledgeMessage); }In this case all currently subscribed users receiving message.here is method which creates AsyncMessageprivate AsyncMessage createMessage(O...

Views

157

Likes

0

Replies

0
could not find MessageClient for clientId in pushMessageToClients - Adobe LiveCycle 19-02-2010
Hello everybody. I was stuck with unpleasent problem using LCDS 2.5.1 and theirs messaging service. My aim is sending real time messages to particular client which already subscribed to the defined destination within java code. I have following situation:at first here is my messaging-config.xml: i am already know id of client consumer and pass it like input argument (Set clientIds)actual sending performing in following method: protected void sendMessageToClients(Object msgBody, Set clien...

Views

1.3K

Likes

0

Replies

2
Re: Send message to particular client via messaging - Adobe LiveCycle 04-08-2009
I have resolved this issue. To send message to client consumer you can use following code public void sendMessageToClient(Object msgBody, Object clientId) { Set clientIds = new TreeSet(); clientIds.add(clientId); sendMessageToClients(msgBody, clientIds); } public void sendMessageToClients(Object msgBody, Set clientIds) { log.debug("send message to clients [ids = " + clientIds + ", message = " + msgBody + "]"); MessageBroker messageBroker = MessageBroker.getMessageBroker(null); Object serviceId =...

Views

169

Likes

0

Replies

0
Re: Send message to particular client via messaging - Adobe LiveCycle 31-07-2009
I has understood wath's the reason of this exception. It's because i am tryin to send message to client via lcds messaging (consumer/producer) with simple flex client id and in practice ids for consumer is different and i am don't know where i can get this id. I can see it by messageDestination.getSubscriptionManager().getSubscriberIds() code, but i can't get consumer client id of current user. Can anybody help me?

Views

169

Likes

0

Replies

1
Send message to particular client via messaging - Adobe LiveCycle 31-07-2009
I want to send message to particular user via messaging (consumer/producer).I have following code for this:**********************************************************************public void sendMessageToClient(Object msgBody, String clientId) { MessageBroker.getMessageBroker(null).routeMessageToMessageClient(createMessage(msgBody), getMessageClient(clientId)); } private MessageClient getMessageClient(String clientId) { MessageBroker messageBroker = MessageBroker.getMessageBroker(null); Object ser...

Views

2.2K

Likes

0

Replies

2
Producer/Consumer java client - Adobe LiveCycle 29-07-2009
Hi all. Have anybody expiriens with lcds consumer tool only on java side. I mean client that perform all consumer/producer operations by means of java. I need it for testing and it very important task for me. Maybe exists any workaround or fully implemented java tool for this. Thanks

Views

1.7K

Likes

0

Replies

1