Expand my Community achievements bar.

aBill
aBill
Offline
Type
  • All
  • Questions
  • Discussions
  • Ideas
  • Blogs
Filter by user contributions
  • Hi,Is that all these 1000 users' data set have the affectedupdate, but the update should only send to selected users? You cantake a look on Quality of Service in lcds2.5. It puts the messageinto OutboundMessageQueue, and the queue determine to send ordiscardWilliam Chan

    Type

    Discussions

    Views

    341

    Likes

    0

    Replies

    0
  • HI,I don't see any problem from your code. I just verified withyour code and it worked (version LCDS 2.5.1)package pe.gob.inccusco;import javax.servlet.http.HttpServletRequest;import javax.servlet.http.HttpSession;import flex.messaging.FlexContext;public class InfoSesion{ public String getUserInfo()...

    Type

    Discussions

    Views

    397

    Likes

    0

    Replies

    0
  • HII use the server to compile the mxml to make sure servicesand the mxml in sync.William

    Type

    Discussions

    Views

    498

    Likes

    0

    Replies

    0
  • Hi,I think it is caused by the httpservice return a bad xml. Usea browser to navigate to the httpservice to verify the data is ingood formatWilliam Chan

    Type

    Discussions

    Views

    279

    Likes

    0

    Replies

    0
  • Hi,FDS and webservice provide higher level of applicationcommunication in different protocol supports to save developmenttime. However, you still can use raw socket to connect to otherapps.William Chan

    Type

    Discussions

    Views

    324

    Likes

    0

    Replies

    0
  • HiCan you check your services-config.xml have this if yourdestination is included in remoting-config.xml<service-includefile-path="remoting-config.xml"></service-include>Thanks.William Chan

    Type

    Discussions

    Views

    498

    Likes

    0

    Replies

    0
  • HiDid you get it working? I found there is an issue where thesubmitted client didn't get update message. I think the workaroundis the submitter refill after the result event. Would like to hearfrom you. Please free feel to email me if there is anything which Ican help. wichan@adobe.comWilliam Chan

    Type

    Discussions

    Views

    972

    Likes

    0

    Replies

    1
  • Hi,I think you can useorg.apache.commons.collections.CollectionUtils. When you run yourfill method, put all winners to a collection. At the end of thefill method compare lastWinnders collection byCollectionUtils.subtract(winners, lastWinner) if lastWinnerscollection is not null. You can get new winn...

    Type

    Discussions

    Views

    972

    Likes

    0

    Replies

    0
  • Hi,I made a mistake in previous message. It should use thecurrent transaction inside the create, since there is already adatatransaction. DataServiceTransaction dt =DataServiceTransaction.getCurrentDataServiceTransaction();You don't need to call commit in this case. I suggest to putthe updates in th...

    Type

    Discussions

    Views

    972

    Likes

    0

    Replies

    2
  • HiSuggest to have a previousWinner stored in your assembler,when there is an update, delete or create. Run your logic todetermine who is the winner.public void pushNewWinner(){ Member previousWinner = winner; winner = findWinner(); if (winner.id == previousWinner.id) return; DataServiceTransaction d...

    Type

    Discussions

    Views

    972

    Likes

    0

    Replies

    4