[flexcoders] Re: Flex, HTML5, Javascript...oh my!

2011-10-18 Thread Mete Atamel
I discovered Google's Closure Library while working on a large JavaScript project. It was painful to switch to it in the middle of the project because you need to write JavaScript in a certain style and for advanced optimization to work, you need to annotate code and add exports but in the end i

[flexcoders] Re: Application requiring streaming data

2010-05-17 Thread Mete Atamel
7;t afford LCDS, then you can use BlazeDS which means you can still use the client side HTTP-streaming/long-polling/polling channels but on the server, you cannot use NIO-based endpoints, instead you need to use Servlet-based endpoints which means much less scalability per box. Mete Atamel Data Ser

[flexcoders] Re: Issue:Authentication issue on edge server + LCDS 3.1 java based loadtesting tool

2010-05-13 Thread Mete Atamel
alse under GatewayService configuration: false ... That basically disables the requirement that clients are authenticated at the edge tier. This should enable you to test your Edge+LCDS app without needing to add authentication stuff in the load-testing-tool. Mete Atame

[flexcoders] Re: BlazeDS conversion/transmission of numerics -- value-based rather than type-based?

2010-05-10 Thread Mete Atamel
Can you open a bug with a test case and your reasoning so this can be investigated whether it's a BlazeDS or documentation issue? http://bugs.adobe.com/jira/browse/BLZ Thanks, Mete --- In flexcoders@yahoogroups.com, William Mitchell wrote: > > The chapter on Data Serialization in the BlazeD

[flexcoders] Re: Flex load testing

2010-04-03 Thread Mete Atamel
; listen for specific message. In Flex we are using mx:consumer selector > property to get specific message for each user. But I am not be able to set > selector in this tool. Consumer class does not have setter or getter for it. > Is there any way to set the selector for consumer. >

[flexcoders] Re: Flex load testing

2010-04-02 Thread Mete Atamel
Are you using LCDS? Because starting in LCDS 3.0, LCDS comes with a Java based load testing tool. It's located under resources/load-testing-tool. We use it internally here at Adobe to do our scalability and performance testing. The latest version which will ship with LCDS 3.1 comes with more use

[flexcoders] Re: Blazeds security and custom messagingadapter fails

2010-03-26 Thread Mete Atamel
to get et up and running. > > Thanx in advance > > Steffen > > --- In flexcoders@yahoogroups.com, "Mete Atamel" wrote: > > > > What version of BlazeDS are you using? I just checked the latest BlazeDS > > and it doesn't have these issues. Y

[flexcoders] Re: Blazeds security and custom messagingadapter fails

2010-03-25 Thread Mete Atamel
What version of BlazeDS are you using? I just checked the latest BlazeDS and it doesn't have these issues. You might want to upgrade to the latest. -Mete --- In flexcoders@yahoogroups.com, "steffensphoto" wrote: > > Hi everyone > > Have someone figured out how to make server push work when en

[flexcoders] Change ComboBox default item renderer dynamically

2010-03-13 Thread Mete Atamel
What I want to do is simple but I'm a little lost in terms of what to overwrite, so I'm hoping someone can guide me in the right direction. Say I have the following list of countries in my standard Flex ComboBox: Cameroon Canada Cayman Islands When the user types in "C", I want the "C" in count

[flexcoders] Re: LCDS Configuration Settings - Best Practices?

2010-03-10 Thread Mete Atamel
You're getting that error because your messaging/data management destination has destination-level inbound throttling set to 500 which means that destination can accept 500 msg/sec max but instead it's getting 15K and hence the error. Re #1, you can refer to "Controlling data traffic" section

[flexcoders] Re: Flex stress Testing

2010-03-01 Thread Mete Atamel
LCDS 3.0 comes with a Java based load-testing-tool that can be used to stress LCDS/BlazeDS servers. -Mete --- In flexcoders@yahoogroups.com, as sass wrote: > > I'm really grateful to your answers, thanks  Mr. Tuli. > > --- On Sun, 2/28/10, Peeyush Tuli wrote: > > From: Peeyush Tuli > Subje

[flexcoders] Re: Flex/LCDS Enterprise

2010-02-03 Thread Mete Atamel
Yes, LCDS 3.0 has a free developer license. -Mete --- In flexcoders@yahoogroups.com, Dan Pride wrote: > > Ia there a way for startups to get low cost access to Flex/LCDS Enterprise > for development purposes only ? >

[flexcoders] Re: BlazeDS security for each messaging topic

2009-11-10 Thread Mete Atamel
Yes, it's possible. You need to extend MessagingAdapter and override allowSend and allowSubscribe methods as needed. Currently, these methods return true but you can add your custom logic to allow/disallow subscribe and sends. -Mete --- In flexcoders@yahoogroups.com, "Benjamin" wrote: > > Hell

[flexcoders] Re: real time messanging... REFdn2025035484

2009-11-03 Thread Mete Atamel
You can use messaging service in BlazeDS: http://opensource.adobe.com/wiki/display/blazeds/BlazeDS/ -Mete --- In flexcoders@yahoogroups.com, "dennis" wrote: > > Suppose a flex. like a chat application, where the messages from other > clients it is required to be transferred immediately. > >

[flexcoders] Re: UDP via Flex socket

2009-10-30 Thread Mete Atamel
Is this what you're looking for? http://livedocs.adobe.com/flex/3/langref/flash/net/Socket.html -Mete --- In flexcoders@yahoogroups.com, "Simon" wrote: > > simple question... is it possible? I have a horrible feeling Flex may only > support HTTP and RPC but would love to be wrong. > > If m

[flexcoders] Re: LCDS : creating custom messaging service adapter

2009-10-27 Thread Mete Atamel
Not much difference really. Extending MessagingAdapter allows you to override allowSubscribe and allowSend methods which might be useful. If not, you can go with ServiceAdapter or even ActionscriptAdapter. -Mete --- In flexcoders@yahoogroups.com, Besite - Bart wrote: > > Hello, > A short quest

[flexcoders] Re: LCDS : number of flexsessions

2009-10-23 Thread Mete Atamel
Flex sessions should be invalidated once the client is gone or idle-timeout-minutes amount of time passed in RTMP. Which version of LCDS are you using? If you have a repro case that shows the behavior, please open a bug in LCDS bug base: http://bugs.adobe.com/jira/browse/LCDS -Mete --- In fle

[flexcoders] Re: BlazedS | message-time-to-live does not work appropiately

2009-10-14 Thread Mete Atamel
Note that message-time-to-live is in milliseconds. You're not receiving any messages? What if you try longer time-to-live values? If you're sure it's not working, please open a bug in BlazeDS bug base. Thanks, Mete --- In flexcoders@yahoogroups.com, "ilikeflex" wrote: > > Hi > > When i use

[flexcoders] Re: switching from lcds to blazeds

2009-09-18 Thread Mete Atamel
No, you cannot use Data Management Service (and many other LCDS features) in BlazeDS. -Mete --- In flexcoders@yahoogroups.com, "prince_arora84" wrote: > > > I am using live cycle data management services in my flex project for > backend connectivity. But now i am planning to switch from LCDS

Re: [flexcoders] Re: services-config.xml No Destination Found

2006-09-25 Thread Mete Atamel
How are you compiling your mxml? Are you pointing to the services-config.xml during compilation?-MeteBrendan Meutzner <[EMAIL PROTECTED]> wrote: Hi Jeff,Sorry to keep bugging you about this, but something in my brain obviously isn't connecting.  I see from your exampl

RE: [flexcoders] Moving flexcoders to Google Groups- would you come along?

2006-09-09 Thread Mete Atamel
Hi,Could someone who joins the list for the first time get a message stating that they might be moderated and their posts might be delayed as a result? I had no idea about this for a while and I was under the impression that Yahoo Groups simply didn't work until you pointed it out.-MeteSteven We

Re: [flexcoders] Re: Pre-compiled applications unable to access FDS based message queues

2006-09-08 Thread Mete Atamel
ut the issue persists. Any other thoughts? Jim --- In [EMAIL PROTECTED]ups.com, Mete Atamel ...> wrote: > > As somebody already pointed out, you need to use --compiler.services config.xml> during compilation. > > -Mete > > dadrobson ...> wrote:

Re: [flexcoders] Re: Pre-compiled applications unable to access FDS based message queues

2006-09-08 Thread Mete Atamel
As somebody already pointed out, you need to use --compiler.services   during compilation.-Metedadrobson <[EMAIL PROTECTED]> wrote: I'm having a similar problem, but in my case the path to services-config.xml is set. The app works fine with the web-tier compiler, but

Re: [flexcoders] Flex Training/Tutorials

2006-09-07 Thread Mete Atamel
I'd suggest these:Flex Whitepapers: http://www.adobe.com/products/flex/whitepapers/ Flex Developer Center: http://www.adobe.com/devnet/flex/ Flex Developer Center--Data Integration: http://www.adobe.com/devnet/flex/data_services.html (the article by JEff Vroom on Architecting RIA is a good sta