Re: [flexcoders] Flex Remoting Options - Any Opinions?

2007-11-16 Thread Jens Halm
Hello, I am just starting to use graniteDS and starting to likie it. My -ONLY- problem was that, I cannot make it work from within my flexbuilder environment. I want to be able to debug my flexbuilder application talking to my Java All I want to do is have my Flex

Re: SPAM-LOW: Re: [flexcoders] Flex Remoting Options - Any Opinions?

2007-11-16 Thread Jeffry Houser
Jens Halm wrote: Hello, I am just starting to use graniteDS and starting to likie it. My -ONLY- problem was that, I cannot make it work from within my flexbuilder environment. I want to be able to debug my flexbuilder application talking to my Java All I want to do is

RE: [flexcoders] Flex Remoting Options - Any Opinions?

2007-11-15 Thread Samuel R. Neff
] -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of mattmadhavan Sent: Thursday, November 15, 2007 1:49 PM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] Flex Remoting Options - Any Opinions? Hello, I am just starting to use graniteDS and starting

RE: [flexcoders] Flex Remoting Options - Any Opinions?

2007-11-15 Thread mattmadhavan
PROTECTED] On Behalf Of mattmadhavan Sent: Thursday, November 15, 2007 1:49 PM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] Flex Remoting Options - Any Opinions? Hello, I am just starting to use graniteDS and starting to likie it. My -ONLY- problem was that, I cannot make it work

Re: [flexcoders] Flex Remoting Options - Any Opinions?

2007-11-15 Thread mattmadhavan
Hello, I am just starting to use graniteDS and starting to likie it. My -ONLY- problem was that, I cannot make it work from within my flexbuilder environment. I want to be able to debug my flexbuilder application talking to my Java side. Can someone please give me steps doing this - I would

Re: [flexcoders] flex remoting with cf7 running on weblogic

2007-10-16 Thread Tom Chiverton
On Tuesday 16 Oct 2007, [EMAIL PROTECTED] wrote: and the usual fixes don't seem to work or are not applicable. do you have to have JRun to make that work?? Nope, but you do need CF 7.0.2. -- Tom Chiverton. Are you a great Flex programmer, who knows Cairngorm, and has done some ColdFusion

Re: [flexcoders] flex remoting with cf7 running on weblogic

2007-10-16 Thread Derrick Anderson
ok, that's good to know. do you have any ideas of things to check? from what i can tell- this should be working, but my /flex2gateway still throws a 404. On 10/16/07, Tom Chiverton [EMAIL PROTECTED] wrote: On Tuesday 16 Oct 2007, [EMAIL PROTECTED] wrote: and the usual fixes don't seem to

Re: [flexcoders] flex remoting with cf7 running on weblogic

2007-10-16 Thread Derrick Anderson
and yes, i have 7.0.2 with flex integration turned on On 10/16/07, Derrick Anderson [EMAIL PROTECTED] wrote: ok, that's good to know. do you have any ideas of things to check? from what i can tell- this should be working, but my /flex2gateway still throws a 404. On 10/16/07, Tom Chiverton

Re: [flexcoders] flex remoting with cf7 running on weblogic

2007-10-16 Thread Tom Chiverton
On Tuesday 16 Oct 2007, [EMAIL PROTECTED] wrote: ok, that's good to know. do you have any ideas of things to check? from what i can tell- this should be working, but my /flex2gateway still throws It must be missing from your mappings, at a guess - WebLogic doesn't know the CF WAR should

Re: [flexcoders] flex remoting with cf7 running on weblogic

2007-10-16 Thread Derrick Anderson
is it not the web.xml for my application that determines that? i have the following in my web.xml file: !-- start flex 2 -- servlet-mapping id=macromedia_mapping_0 servlet-nameMessageBrokerServlet/servlet-name url-pattern/flex2gateway/*/url-pattern /servlet-mapping

Re: [flexcoders] flex remoting with cf7 running on weblogic

2007-10-16 Thread Derrick Anderson
actually, i checked the BEA admin and in the servlets section i see MessageBrokerServlet /flex2gateway/ myserverhttp://localhost:7001/console/actions/mbean/EditMBeanAction?reloadNav=falseMBean=mydomain%3AName%3Dmyserver%2CType%3DServer 0 0 so weblogic does recognize it... On 10/16/07, Derrick

Re: [flexcoders] flex remoting with cf7 running on weblogic

2007-10-16 Thread Derrick Anderson
ok, i had a guy that actually knows weblogic come over and set me straight... i have to call the flex gateway like http://{ipaddress_or_domain}:7100/{appName}/flex2gateway/ and i get the blank page i've been waiting for.. but this brings up another problem, we are not going to want to be making

Re: [flexcoders] Flex Remoting

2007-09-15 Thread Giles Roadnight
Great, that looks very helpful. Thanks a lot On 9/14/07, Jeremy French [EMAIL PROTECTED] wrote: Giles, This should help you out a little. http://www.frenches.com/blog/index.cfm/2007/5/7/Flex-Coldfusion--Dont-make-me-have-to-separate-you-two On 9/14/07, Giles Roadnight [EMAIL

Re: [flexcoders] Flex Remoting

2007-09-14 Thread hua waveland
Hello Giles, for you second question, you can setup channels at run time // setup coldfusion AMFChannel private function setupCFChannel():void{ cSet = new ChannelSet(); var customChannel:Channel = new AMFChannel(my-cfamf,

Re: [flexcoders] Flex Remoting

2007-09-14 Thread Jeremy French
Giles, This should help you out a little. http://www.frenches.com/blog/index.cfm/2007/5/7/Flex-Coldfusion--Dont-make-me-have-to-separate-you-two On 9/14/07, Giles Roadnight [EMAIL PROTECTED] wrote: Hi Guys I've started looking into Flex Remoting again. I looked into this a while ago but

RE: [flexcoders] Flex Remoting and complex objects

2007-06-15 Thread Peter Farland
AS3 doesn't have the concept of generics, so yes, all collections should be instances of mx.collections.ArrayCollection by default. Types like mx.collections.ArrayCollection can only really be sent and received properly by AMF3, so any remoting endpoint would have to understand this version of the

Re: [flexcoders] Flex remoting, using a factory for beans

2007-04-10 Thread Tom Chiverton
On Thursday 05 Apr 2007, Adrian wrote: is possible to configure flex/CF to use a factory when translating* the .as instances to .cfc instances, instead of a plain createobject() call. Ah ha, right, with you now :-) You could do this in the endpoint CFC easily enough, no ? -- Tom Chiverton

Re: [flexcoders] Flex remoting, using a factory for beans

2007-04-05 Thread Tom Chiverton
On Thursday 05 Apr 2007, keryking0 wrote: Does anyone know if its possible to configure flex /cold fusion to use a factory to create beans when using remoting, managed classes and aliases? You mean manager-type beans to do the work ? Sure look at things like ColdSpring. -- Tom Chiverton

Re: [flexcoders] Flex remoting, using a factory for beans

2007-04-05 Thread Adrian
Sure look at things like ColdSpring I don't *think* ColdSpring can do this in and of itself, I'll try to clarify my original question (I'll start at the beginning, please don't take offence if it sounds condescending!) Using Flex remoting, you can specify that an actionscript class instance

RE: [flexcoders] Flex remoting, using a factory for beans

2007-04-05 Thread Peter Farland
adapter... but that adapter has no knowledge of CF). From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Adrian Sent: Thursday, April 05, 2007 9:41 AM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] Flex remoting, using a factory

Re: [flexcoders] flex remoting and query

2007-03-22 Thread Clint Tredway
return that query and bind it to an ArrayCollection in your AS. Then you can bind it to a grid or list, etc. On 3/22/07, Chad Gray [EMAIL PROTECTED] wrote: If in my CFC that I am connecting to with RemoteObject can I return a Query object to Flex? Here is an example cfc: cffunction

Re: [flexcoders] flex remoting and query

2007-03-22 Thread Clint Tredway
return that query and bind it to an ArrayCollection in your AS. Then you can bind it to a grid or list, etc. On 3/22/07, Chad Gray [EMAIL PROTECTED] wrote: If in my CFC that I am connecting to with RemoteObject can I return a Query object to Flex? Here is an example cfc: cffunction

Re: [flexcoders] Flex, remoting, and dev/production environments

2006-08-02 Thread Rick Root
Rick Root wrote: When building a flex app that uses remoting with coldfusion... if I'm building on my local machine and get it all working using my local coldfusion server, can I just copy the files to the production server, assuming the mappings and everything are set up the same? Or

Re: [flexcoders] Flex, remoting, and dev/production environments

2006-08-02 Thread Clint Tredway
I know that this isn't always possible, but if you make your dev production directory structure the same, then it will work. Thats how I am doing my development and it works for me. On 8/2/06, Rick Root [EMAIL PROTECTED] wrote: Rick Root wrote: When

Re: [flexcoders] Flex, remoting, and dev/production environments

2006-08-02 Thread Douglas Knudsen
as long as your paths are the same, no need to re-compile at all. Remember CFCs need a full dot path from the web root, custom tag directory, or mapping. DKOn 8/2/06, Rick Root [EMAIL PROTECTED] wrote: Rick Root wrote: When building a flex app that uses remoting with coldfusion... if I'm

RE: [flexcoders] Flex Remoting

2006-04-20 Thread Peter Farland
It depends on what the method signature for SampleDAO.getPersons looks like. Where did you find this sample? Note that the AS signature for NetConnection.call() is: public function call(command:String, responder:Responder, ... arguments):void So the ... syntax in AS means the rest of the

RE: [flexcoders] Flex, Remoting and more

2005-06-30 Thread Erik Westra
Sorry for this late reaction. I've done some tests with ColdFusion 7 and their new event gateways. I modified an existing Java socket server to be an event gateway type. This enabled me to be able to push data from ColdFusion to all connected Flash clients. In Flash I used XMLSocket. I don't

RE: [flexcoders] Flex, Remoting and more

2005-06-27 Thread Rick Bullotta
The danger of persistent connections is one of scaleabilityand of trying to manage a reliable protocol across those connections (as opposed to the relative simplicity of a request/response protocol). A hybrid that weve used is a server-based collector (listener) and clients that ping

RE: [flexcoders] Flex, Remoting and more

2005-06-27 Thread Abdul Qabiz
as local FCS, this flash application works as bridge between two... -abdul From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Rick BullottaSent: Monday, June 27, 2005 4:33 PMTo: flexcoders@yahoogroups.comSubject: RE: [flexcoders] Flex, Remoting and more The danger

Re: [flexcoders] Flex, Remoting and more

2005-06-27 Thread Alberto Albericio Salvador
In some scenarios, what your telling it makes sense.. anyway, Im reading about what the New Data Services in Flex 2.0 will bring and I get the feeling I will be able to use these new features to get this working :) Meantime, any other ideas are welcome. Rick Bullotta escribió: The danger of

Re: [flexcoders] Flex, Remoting and more

2005-06-27 Thread Alberto Albericio Salvador
*From:* flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] *On Behalf Of *Rick Bullotta *Sent:* Monday, June 27, 2005 4:33 PM *To:* flexcoders@yahoogroups.com *Subject:* RE: [flexcoders] Flex, Remoting and more The danger of persistent connections is one of scaleability

RE: [flexcoders] Flex, Remoting and more

2005-06-27 Thread Abdul Qabiz
. -abdul -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Alberto Albericio Salvador Sent: Monday, June 27, 2005 5:19 PM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] Flex, Remoting and more Hi Abdul, Is it possible from C# or any

RE: [flexcoders] Flex Remoting has UPPERCASE results

2005-03-22 Thread Peter Farland
This is an involved discussion with much to consider... Your request goes something like this when calling CFCs via RemoteObject: Flex - Flash - AMF - (AMF Gateway/Flash Remoting) - ColdFusion - Your CF Page In ActionScript 1.0, the Flash -- -- AMF interation is case insensitive merely because

Re: [flexcoders] Flex Remoting has UPPERCASE results

2005-03-22 Thread Scott Barnes
thanks all for the replies, helped me understand the mechanics of Remoting and work-arounds. I still prefer a consistent case to come back (lower/upper) as i think inheriting case sensitivity from CFMX is bad form? On Tue, 22 Mar 2005 19:04:42 -0500, Darron J. Schall [EMAIL PROTECTED] wrote:

RE: [flexcoders] Flex Remoting has UPPERCASE results

2005-03-22 Thread Dirk Eismann
://www.richinternet.de/blog/index.cfm?entry=74BA931D-C3DA-FDE0-C7959146205942DA Dirk. -Original Message- From: Scott Barnes [mailto:[EMAIL PROTECTED] Sent: Wednesday, March 23, 2005 1:45 AM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] Flex Remoting has UPPERCASE results thanks all