[flexcoders] Re: Java/Flex questions answered by James Ward

2009-08-15 Thread meteatamel
Are you using AMFChannel? AMFChannel uses NetConnection and NetConnection, by default, batches request that are close in a single POST. You can try to increase the time between requests or you can wait for a result/fault before sending the next request. If I remember correctly, HTTPChannel does

[flexcoders] Re: LCDS : Looking for livecycle experts

2009-08-10 Thread meteatamel
Hi, Could you please give us a simple test case that shows the behavior? You can email me directly. Thanks, Mete - Adobe --- In flexcoders@yahoogroups.com, Johannes Nel johannes@... wrote: I personally have not used the MultiTopicConsumer class (unless its underlying in something else

[flexcoders] Re: DataService Destination Clustering is not working

2009-08-10 Thread meteatamel
Hi, Could you please open a bug with all this info in LCDS bugbase please? http://bugs.adobe.com/jira/browse/LCDS Thanks, Mete - Adobe --- In flexcoders@yahoogroups.com, Dharmendra Chauhan chauhan_i...@... wrote: Hi All , We are trying to get clustering configured for our application so

[flexcoders] Re: Lcds via Tomcat on Mac - possible?

2009-08-10 Thread meteatamel
I have LCDS and Tomcat running fine on Mac OS. -Mete --- In flexcoders@yahoogroups.com, Johannes Nel johannes@... wrote: just grab the latest version of tomcat, drop them lcds jars under tomcat/lib and remember to set the context in your application project xml under

[flexcoders] Re: LCDS: Destination inheritance - is this a working feature?

2009-08-10 Thread meteatamel
Hi Greg, Could you please open a bug for these issues so we can investigate? http://bugs.adobe.com/jira/browse/LCDS Thanks, Mete --- In flexcoders@yahoogroups.com, gordon_greg m...@... wrote: Greetings, I've got a problem with setting up a model hierarchy that requires using the extends

[flexcoders] Re: Looking for LCDS paging for server to datasource Example

2008-12-17 Thread meteatamel
Hi Bonny, Here's a reply from Ed Solovey, one of our engineers in the LCDS team: The first thing you want to do is enable Server-to-data-source paging, also referred to as paged-fill, by implementing the useFillPage method in your extension of AbstractAssembler: @Override public boolean

[flexcoders] Re: LCDS 2.6 Streaming endpoint problem

2008-08-11 Thread meteatamel
This is a bug with DataStore/DataService. It wrongly assumes that the channel is a polling channel and tries to call poll method on the streaming channel. Could you please open a bug with LCDS and let us know what the bug number is? Thanks, Mete --- In flexcoders@yahoogroups.com, João

[flexcoders] Re: Thick Java Client for LCDS - AIR is too restrictive on Desktop

2008-07-26 Thread meteatamel
perfect if it was as powerful as Java on desktop. -Shailesh --- In flexcoders@yahoogroups.com, meteatamel meteatamel@ wrote: By LCDS, you mean DataService in Java? I haven't heard anyone try implementing that in Java. I don't think it'll be that easy though because, first you need

[flexcoders] Re: LCDS paging exception

2008-07-25 Thread meteatamel
The newly released LCDS 2.6 developer's guide, has a good section on paging: http://livedocs.adobe.com/livecycle/8.2/programLC/programmer/lcds/dms_paging_1.html I encourage people to check out the new LCDS 2.6 developer's guide. It's been restructured and has lots of new information on LCDS

[flexcoders] Re: LCDS paging exception

2008-07-25 Thread meteatamel
. If you are not the intended recipient please contact [EMAIL PROTECTED] From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of meteatamel Sent: 25 July 2008 13:51 To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: LCDS paging

[flexcoders] Re: Thick Java Client for LCDS

2008-07-24 Thread meteatamel
By LCDS, you mean DataService in Java? I haven't heard anyone try implementing that in Java. I don't think it'll be that easy though because, first you need to implement all Channels (or at least one that you'll use in your application) in Java and that by itself is not trivial. You need to figure

[flexcoders] Re: how can I get the Java Session 's data from Flex cilent side

2008-07-10 Thread meteatamel
Expose a Java method that gets this info and your Flex application can use a RemoteObject to call that method. -Mete --- In flexcoders@yahoogroups.com, Ray Zhang [EMAIL PROTECTED] wrote: Our system uses java/jsp to do the login  function, but I want to get the login user 's information at the

[flexcoders] Re: Air and Blazeds?

2008-07-09 Thread meteatamel
Noone can help you if you can't tell us what kind of errors you're getting. -Mete --- In flexcoders@yahoogroups.com, markflex2007 [EMAIL PROTECTED] wrote: The Flex application link is here: http://techblogging.wordpress.com/2008/03/02/setting-up-blazeds-with- flex/ Thanks Mark ---

[flexcoders] Re: mxml to swf on a J2EE server

2008-07-09 Thread meteatamel
You can definitely compile mxml to swf on the LCDS server like jsps. You need something that used to be called Flex Webtier Compiler (in FDS 2.0/LCDS 2.5). I know it recently moved from the FDS/LCDS to Flex SDK and its name might be a little different that I don't remember right now. There's also

[flexcoders] Re: LCDS and AIR?

2008-07-02 Thread meteatamel
LCDS/BlazeDS is a server and a client product. On the server, it requires a J2EE server but on the client, it's simply a few swcs (rpc.swc in BlazeDS) and your AIR app would use this rpc.swc to talk to the LCDS server. So the fact that the LCDS server piece runs on a J2EE server is irrelevant to

[flexcoders] Re: LCDS and AIR?

2008-07-02 Thread meteatamel
--- In flexcoders@yahoogroups.com, markflex2007 [EMAIL PROTECTED] wrote: what is the name for client swc file for LCDS.where I can get it? thanks Mark --- In flexcoders@yahoogroups.com, meteatamel meteatamel@ wrote: LCDS/BlazeDS is a server and a client product. On the server

[flexcoders] Re: Flex server push solutions?

2008-06-23 Thread meteatamel
BlazeDS is an open source project (i.e. free) and it provides a good number of data push options (polling, long-polling, streaming). -Mete --- In flexcoders@yahoogroups.com, Mark Piller [EMAIL PROTECTED] wrote: Hi Mark, You can try WebORB as well. It is free, but not open source.

[flexcoders] Re: Calling a REST webservice from Flex

2008-06-02 Thread meteatamel
Yes, BlazeDS (which is an open source project) has Proxy Service that does exactly what you need. It proxies HTTP calls using Apache commons Http Client and it enables you to do HTTP GET, POST, PUT, DELETE. Check out BlazeDS here: http://opensource.adobe.com/wiki/display/blazeds -Mete --- In

[flexcoders] Re: messaging selector

2008-05-29 Thread meteatamel
Could it be because you're missing single quotes around id? -Mete --- In flexcoders@yahoogroups.com, netdeep [EMAIL PROTECTED] wrote: I am trying to filter my channel messaging with blazeDS so that it only gets read by specific clients, but it doesn't seem to be working as expected.

[flexcoders] Re: Is it possible to invoke a AMF call just before browser close?

2008-05-20 Thread meteatamel
I'd try onunload and onbeforeunload events to see they help. If that doesn't help, I'd try putting up an Alert box before making the AMF call to make sure AMF call is made before the browser is closed. -Mete --- In flexcoders@yahoogroups.com, Dan [EMAIL PROTECTED] wrote: Hi, I am trying to

[flexcoders] Re: RTMP port 2038

2008-05-15 Thread meteatamel
It is possible. In your Flex app, you can create a ChannelSet and add an RTMPChannel to it with the url that has the port, and then assign that ChannelSet to your Flex component (RemoteObject, Producer/Consumer, HTTPService/WebService, DataServcice). Check out the Actionscript API for these

[flexcoders] Re: BlazeDS Security Confusion

2008-04-30 Thread meteatamel
Hi Jim, The short answer is that TomcatLoginCommand uses Tomcat valve to do its authentication/authorization but here's a writeup I have on BlazeDS security that should clarify things. -Mete = BlazeDS uses the security framework of the

[flexcoders] Re: Jboss + BlazeDS + Custom Java message producer = 5 to 6 days of up time

2008-04-22 Thread meteatamel
I've added some info to the bug report. Please take a look. -Mete --- In flexcoders@yahoogroups.com, jfujita1 [EMAIL PROTECTED] wrote: Hi, I've built a GIS FLEX application that uses blazeDS' messaging capability to push location (latitude/longitude/geocode) info to flex clients.

[flexcoders] Re: Can't connect to JMS with BlazeDS

2008-04-21 Thread meteatamel
Can you enable server side logging for JMSAdapter and let us know what you are seeing? To enable server side logging, go to services-config.xml and under logging section, make sure you have debug level and under patterns, have Service.Message.JMS. -Mete --- In flexcoders@yahoogroups.com,

[flexcoders] Re: BlazeDS/LCDS on Glassfish (TomcatLoginCommand issue)

2008-04-16 Thread meteatamel
Instead of server=Glassfish, can you try server=all and let us know if there's anything different? thanks, Mete --- In flexcoders@yahoogroups.com, cyberscriptnet [EMAIL PROTECTED] wrote: Hi, I've been using BlazeDS/LCDS on Glassfish without issues until now. I'm attempting to enable

[flexcoders] Re: blazeds NPE in MessageService incrementMessageCount

2008-03-28 Thread meteatamel
Thanks for reporting this. I think this might be caused by MessageService being managed but its destination being unmanaged. I'm not sure what causes the management discrepancy between MessageService and its destination but you should not get NPE either way so it is a bug. To work-around the

[flexcoders] Re: BlazeDS configuration

2008-03-26 Thread meteatamel
FlexBuilder licensing has nothing to do with BlazeDS licensing. Actually, the official BlazeDS release does not even have license checks. BlazeDS had beta expiration checks when it was still in beta and this is the error you're running into. I know you mentioned that you have a fresh copy of

[flexcoders] Re: blazeds and oc4j

2008-03-12 Thread meteatamel
Can you try the following to see if it can work around the issue for now? Edit services-config.xml in WEB-INF/flex folder and under server section change manageable to false: system manageablefalse/manageable -Mete --- In flexcoders@yahoogroups.com, netdeep [EMAIL PROTECTED] wrote:

[flexcoders] Re: Duplicate HTTP response headers

2008-03-11 Thread meteatamel
] On Behalf Of meteatamel Sent: Tuesday, 11 March 2008 9:48 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: Duplicate HTTP response headers You can also use ant to build BlazeDS. From the BlazeDS root directory, type ant clean main. -Mete --- In flexcoders@yahoogroups.com

[flexcoders] Re: RemoteObject + remote connection

2008-03-02 Thread meteatamel
What channel are you using? Every destination in BlazeDS has to use a channel. You define channels in services-config.xml and you use them in the destination configuration. So I suggest you take a look in your services-config.xml and see what channels you have. Then, pick one of those channels and

[flexcoders] Re: BlazeDS mailing list?

2008-02-19 Thread meteatamel
There isn't a mailing list for BlazeDS but there's a forum where you can ask questions. There is a link for it fro BlazeDS site: http://labs.adobe.com/technologies/blazeds/ -Mete --- In flexcoders@yahoogroups.com, Daniel Freiman [EMAIL PROTECTED] wrote: Is there a (pseudo)official developer

[flexcoders] Re: clear the cache

2007-10-30 Thread meteatamel
Couldn't you call creationComplete method yourself from the logoff method? -Mete --- In flexcoders@yahoogroups.com, Aditya Kumar [EMAIL PROTECTED] wrote: Hi, I want to clear the cache so that after I logoff from the Flex Application and then login back again without closing the browser, I

[flexcoders] Re: Having really tough time with Data Services [EMAIL PROTECTED]!!

2007-05-20 Thread meteatamel
Another option is to set the binding yourself. So in this case, TextInput is binded to item.name but item.name is not binded back to the TextInput, so I'd create an explicit binding for that as follows: mx:Binding source=ti.text destination=item.name/ -Mete --- In flexcoders@yahoogroups.com,

[flexcoders] Re: Can I debug a flex app running in the browser?

2007-05-11 Thread meteatamel
Did you see James Ward's Debug Flex and Java together blog? http://www.jamesward.org/wordpress/2006/07/05/debug-flex-java-together-in-flex-builder-2/ -Mete --- In flexcoders@yahoogroups.com, Cosma [EMAIL PROTECTED] wrote: I have a WST/Flex project in Eclipse made up of some servlets and a

[flexcoders] Re: FDS Messaging error

2007-05-09 Thread meteatamel
How did you compile your application? Make sure you pointed to services-config.xml when you compiled your application and also make sure that your messaging-config.xml contains MyTransientTopic destination. -Mete --- In flexcoders@yahoogroups.com, Barry Evans [EMAIL PROTECTED] wrote: I was

[flexcoders] Re: FDS example

2007-04-12 Thread meteatamel
Let us know what's confusing so we can help. -Mete --- In [EMAIL PROTECTED], Robs [EMAIL PROTECTED] wrote: Hi all, Does anyone have a good example of a FDS application with proper deployment instructions? I've just started with it am finding some things a bit confusing. PLease help

[flexcoders] Re: Flex Config File DTDs or Schemas

2007-04-12 Thread meteatamel
In your flex installation, look for WEB-INF/flex/resources/config folder. There should be some sample configuration files (services-config.xml, remoting-service.xml, etc.) with all the explanations you need. -Mete --- In [EMAIL PROTECTED], neilac [EMAIL PROTECTED] wrote: Well, that's the

[flexcoders] Re: Flex 2.5 Beta Error

2007-04-11 Thread meteatamel
Can you give us more information such as when do you get this error? -Mete --- In flexcoders@yahoogroups.com, abdulqabiz3 [EMAIL PROTECTED] wrote: I didn't know there if Flex 2.5 beta also :-) Sorry for offtopic response.. -abdul --- In flexcoders@yahoogroups.com, graysonpierce

[flexcoders] Re: LiveCycle Data Services 2.5 - Using dynamically referenced queue destination

2007-03-21 Thread meteatamel
Hi Brian, BootstrapServices in LCDS 2.5 are special services used to create Services, Destinations, and Adapters without needing any configuration files. This is what you need to do: 1- Create a class that extends AbstractBootstrapService. 2- In that class, implement initialize() method. In

[flexcoders] Re: Programmatically Define Service Adapter

2007-03-21 Thread meteatamel
Adapters have nothing to do with the client really, that's why you didn't find any AS code for it. ServiceAdapters are set on the Destination on the server and they're defined in server configuration files where Destinations are defined. You can use Runtime Configuration feature of LCDS 2.5 (new

[flexcoders] Re: Help with HibernateAssembler

2006-12-20 Thread meteatamel
This is a good tutorial on HibernateAssembler as well: http://blogs.adobe.com/mtg/2006/08/my_first_hibernate_enabled_fle.html -Mete

[flexcoders] Re: webservice lastResult to a ComboBox

2006-09-05 Thread meteatamel
Can you more specific? It would be useful if you can post the code that you have right now and we can see what we need to change to make it work. --- In flexcoders@yahoogroups.com, Kristian [EMAIL PROTECTED] wrote: Hi. Hope someone can help me. I need to put the result from a webservice in