RE: [flexcoders] Re: Flex and CF

2006-07-20 Thread Dirk Eismann
Unfortunately not - if your authenticated against FDS (or a service behind FDS 
by using setRemoteCredentials()) you're not automatically authenticated against 
the RPC destination as this is running in a different process and vice versa.

You'll have to set the same credentials on both RPC and DS service which of 
course makes things a bit more different to handle.

This is the major drawback when using both RPC and DMS with CF and I hope there 
will be a better solution in a future release.

Dirk.

 -Original Message-
 From: flexcoders@yahoogroups.com 
 [mailto:[EMAIL PROTECTED] On Behalf Of João Fernandes
 Sent: Thursday, July 20, 2006 12:14 AM
 To: flexcoders@yahoogroups.com
 Subject: RE: [flexcoders] Re: Flex and CF
 
 
 Mike,
 
 using this approach, will an authentication made by a RPC 
 call be available by the FDS assembler?
 Imagine that I want to filter some fill call based on the 
 value of the getauthuser(), do I need to use 
 setRemoteCredentials on my DS destination or it's already available?
 
 So basically, does a session created from a RPC call be the 
 same as the one created my FDS when calling the assembler?
 
 João Fernandes
 
 -Original Message-
 From: flexcoders@yahoogroups.com on behalf of Mike Nimer
 Sent: Wed 19-Jul-06 10:10 PM
 To: flexcoders@yahoogroups.com
 Subject: Re: [flexcoders] Re: Flex and CF
  
 Joao,
 Your right there isn't much information, and we need more. 
 We'll work on that.
  
 However, to answer you question now. To get this working so 
 you can call FDS destinations of CF via Flash Remoting you 
 would do it this way.
  
 1) Configure CF on 1 instance/server
 2) Configure FDS on 2nd instance/server
 3) Point your project at the services-config.xml in the FDS instance.
  
 Ok at this point you can easily call FDS destinations which 
 use CF (or not).  Now to also call Flash remoting.
  
 4) Define the destination and channel with Actionscript, 
 instead of letting the compiler do it when it is pointed at 
 the CF version of the services-config.xml
  
 To create you own ChannelSet the code would look something like this.
  
 --
 public var cSet:ChannelSet;
  
 public function initApp()
 {
 cSet = new ChannelSet();
 var customChannel:Channel = new AMFChannel(my-cfamf, 
 http://localhost:8500/flex2gateway/);
 // Add the Channel to the ChannelSet.
 cSet.addChannel(customChannel);
 foo.channelSet = cSet;
 }
 
  
 mx:RemoteObject 
 id=foo 
 destination=ColdFusion 
 source=com.foo.component /
 ---
  
 Note: You can use this ChannelSet technique instead of the 
 -services compiler flag too. And you can use it, if you want 
 to use something like FlashVars to change the endpoint url.
  
  
 hope that helps,
 ---nimer
 
 - Original Message 
 From: João Fernandes [EMAIL PROTECTED]
 To: flexcoders@yahoogroups.com
 Sent: Wednesday, July 19, 2006 1:52:29 PM
 Subject: RE: [flexcoders] Re: Flex and CF
 
 
 Damon,
 
 but there isn't much information if you want to use RPC + 
 FDS. All examples are RPC or FDS only, not the mix.
 
 If you define your CF RPC destination inside FDS it won't 
 work and there isn't any example, best-practice or a technote 
 how to implement this correcly.
 
 If you merge FDS+CF this works fine. If Adobe could publish 
 any additional documentation how to achieve this (RPC+FDS), I 
 think everyone would be grateful.
 
 João Fernandes
 
 -Original Message-
 From: [EMAIL PROTECTED] ups.com on behalf of dcooper2025
 Sent: Wed 19-Jul-06 6:38 PM
 To: [EMAIL PROTECTED] ups.com
 Subject: [flexcoders] Re: Flex and CF
 
 People seem to think they need to jam FDS into the CF 
 instance to get them to work together for some reason, likely 
 because that's the main config setup with CF + Flex 1.5, but 
 that's not necessary at all any longer with Flex 2 FDS. 
 
 With Flex 2 and FDS, you absolutely do not need FDS installed 
 into the CF app instance for things to work. We designed them 
 to live together on the same machine or seperately on 
 different machines/instances, but we didn't spend much time 
 on the case where people would try to get FDS inserted into 
 the CF instance itself. I suppose there are valid arguments 
 for wanting to do this, but with the RMI interface between 
 the two now with Flex 2, and the existing Flex 1.5 bits 
 already living in the CF7 instance for CF7 Flash Forms, etc 
 (and the potential for conflict between Flex 1.5 and Flex
 2 bits in package names, etc, etc), we thought it best to 
 recommend the use case where CF and Flex 2 FDS are not living 
 in the same webapp instance.
 
 Hopefully that makes sense.
 
 Damon
 
 
 --- In [EMAIL PROTECTED] ups.com, Jim jackofwebtrades@ 
 ... wrote:
 
  Damon,
  
  When you say, They live nicely side-by-side,  how is Coldfusion 
  loaded? Built-in Web Server, Multiserver (JRUN4), Using IIS or
 Apache?
  Do they work side-by-side if CF is loaded with JRUN and FDS is
 loaded
  with JRUN too, on the same machine

RE: [flexcoders] Re: Flex and CF

2006-07-19 Thread João Fernandes
Damon,

but there isn't much information if you want to use RPC + FDS. All examples are 
RPC or FDS only, not the mix.

If you define your CF RPC destination inside FDS it won't work and there isn't 
any example, best-practice or a technote how to implement this correcly.

If you merge FDS+CF this works fine. If Adobe could publish any additional 
documentation how to achieve this (RPC+FDS), I think everyone would be grateful.

João Fernandes

-Original Message-
From: flexcoders@yahoogroups.com on behalf of dcooper2025
Sent: Wed 19-Jul-06 6:38 PM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Re: Flex and CF
 
People seem to think they need to jam FDS into the CF instance to 
get them to work together for some reason, likely because that's the 
main config setup with CF + Flex 1.5, but that's not necessary at 
all any longer with Flex 2 FDS. 

With Flex 2 and FDS, you absolutely do not need FDS installed into 
the CF app instance for things to work.  We designed them to live 
together on the same machine or seperately on different 
machines/instances, but we didn't spend much time on the case where 
people would try to get FDS inserted into the CF instance itself.  I 
suppose there are valid arguments for wanting to do this, but with 
the RMI interface between the two now with Flex 2, and the existing 
Flex 1.5 bits already living in the CF7 instance for CF7 Flash 
Forms, etc (and the potential for conflict between Flex 1.5 and Flex 
2 bits in package names, etc, etc), we thought it best to recommend 
the use case where CF and Flex 2 FDS are not living in the same 
webapp instance.

Hopefully that makes sense.

Damon
  

--- In flexcoders@yahoogroups.com, Jim [EMAIL PROTECTED] wrote:

 Damon,
 
 When you say, They live nicely side-by-side, how is Coldfusion
 loaded? Built-in Web Server, Multiserver (JRUN4), Using IIS or 
Apache?
 Do they work side-by-side if CF is loaded with JRUN and FDS is 
loaded
 with JRUN too, on the same machine?
 
 Coldfusion developers everywhere are having issues getting FDS 
Express
 to work with CF. Sure we can update CF to 7.0.2. We can even 
install
 FDS. That's easy. But logic identifies one similarity between CF 
and
 FDS...ah, they both use JRun. So logic says, they should be able to
 use the same JRun installation; have one single JRun folder. Is 
that
 not the case? (I've seen the technote that has us combining web.xml
 files, coping over other files to the lib folder, etc...but that
 technote is bogus.)
 
 Thanks,
 
 Jim Pickering
 --- In flexcoders@yahoogroups.com, dcooper2025 dcooper@ wrote:
 
  Specifically, you can just install Flex Enterprise Services on a 
  J2EE server on the same machine as CF, configure everything and 
  you're good to go.  They live very nicely side-by-side.
  
  FYI, we've made the CF 7.0.2 doc for CF/Flex 2 integration 
available 
  online where you can quickly reference it as needed 
  
  http://www.adobe.com/go/cfmx702docs 
  
  and the ColdFusion 7.0.2 install instructions are here: 
  
  http://www.adobe.com/go/flex2_cf_installation 
  
  HTH
  
  Damon
  
  --- In flexcoders@yahoogroups.com, Brian Holmes bholme@ 
wrote:
  
   Hi everyone,
Can anyone point me in the right direction of getting CF and 
FDS 
  up on
   the same server, as it would be on production server. A 
deployment 
  guide
   or old thread would be nice. Specifically I'm trying to load 
flex
   applications and widgets in our already established CF 
framewok.


   Thanks,
   Brian
   
   
   ***
   The information in this e-mail is confidential and intended 
solely 
  for the individual or entity to whom it is addressed.  If you 
have 
  received this e-mail in error, please notify the sender by 
return e-
  mail, delete this e-mail, and refrain from any disclosure or 
action 
  based on the information.
   ***
  
 









 Yahoo! Groups Sponsor ~-- 
Great things are happening at Yahoo! Groups.  See the new email design.
http://us.click.yahoo.com/TISQkA/hOaOAA/yQLSAA/nhFolB/TM
~- 

--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 
Yahoo! Groups Links

* To visit your group on the web, go to:
http://groups.yahoo.com/group/flexcoders/

* To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

* Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 
winmail.dat

Re: [flexcoders] Re: Flex and CF

2006-07-19 Thread Thomas Rühl -akitogo-

Mark me supporting on this one...

Cheers, Thomas


João Fernandes wrote:
 
 
 Damon,
 
 but there isn't much information if you want to use RPC + FDS. All 
 examples are RPC or FDS only, not the mix.
 
 If you define your CF RPC destination inside FDS it won't work and there 
 isn't any example, best-practice or a technote how to implement this 
 correcly.
 
 If you merge FDS+CF this works fine. If Adobe could publish any 
 additional documentation how to achieve this (RPC+FDS), I think everyone 
 would be grateful.
 
 João Fernandes
 
 -Original Message-
 From: flexcoders@yahoogroups.com mailto:flexcoders%40yahoogroups.com 
 on behalf of dcooper2025
 Sent: Wed 19-Jul-06 6:38 PM
 To: flexcoders@yahoogroups.com mailto:flexcoders%40yahoogroups.com
 Subject: [flexcoders] Re: Flex and CF
 
 People seem to think they need to jam FDS into the CF instance to
 get them to work together for some reason, likely because that's the
 main config setup with CF + Flex 1.5, but that's not necessary at
 all any longer with Flex 2 FDS.
 
 With Flex 2 and FDS, you absolutely do not need FDS installed into
 the CF app instance for things to work. We designed them to live
 together on the same machine or seperately on different
 machines/instances, but we didn't spend much time on the case where
 people would try to get FDS inserted into the CF instance itself. I
 suppose there are valid arguments for wanting to do this, but with
 the RMI interface between the two now with Flex 2, and the existing
 Flex 1.5 bits already living in the CF7 instance for CF7 Flash
 Forms, etc (and the potential for conflict between Flex 1.5 and Flex
 2 bits in package names, etc, etc), we thought it best to recommend
 the use case where CF and Flex 2 FDS are not living in the same
 webapp instance.
 
 Hopefully that makes sense.
 
 Damon
 
 
 --- In flexcoders@yahoogroups.com mailto:flexcoders%40yahoogroups.com, 
 Jim [EMAIL PROTECTED] wrote:
  
   Damon,
  
   When you say, They live nicely side-by-side, how is Coldfusion
   loaded? Built-in Web Server, Multiserver (JRUN4), Using IIS or
 Apache?
   Do they work side-by-side if CF is loaded with JRUN and FDS is
 loaded
   with JRUN too, on the same machine?
  
   Coldfusion developers everywhere are having issues getting FDS
 Express
   to work with CF. Sure we can update CF to 7.0.2. We can even
 install
   FDS. That's easy. But logic identifies one similarity between CF
 and
   FDS...ah, they both use JRun. So logic says, they should be able to
   use the same JRun installation; have one single JRun folder. Is
 that
   not the case? (I've seen the technote that has us combining web.xml
   files, coping over other files to the lib folder, etc...but that
   technote is bogus.)
  
   Thanks,
  
   Jim Pickering
   --- In flexcoders@yahoogroups.com 
 mailto:flexcoders%40yahoogroups.com, dcooper2025 dcooper@ wrote:
   
Specifically, you can just install Flex Enterprise Services on a
J2EE server on the same machine as CF, configure everything and
you're good to go. They live very nicely side-by-side.
   
FYI, we've made the CF 7.0.2 doc for CF/Flex 2 integration
 available
online where you can quickly reference it as needed
   
http://www.adobe.com/go/cfmx702docs 
 http://www.adobe.com/go/cfmx702docs
   
and the ColdFusion 7.0.2 install instructions are here:
   
http://www.adobe.com/go/flex2_cf_installation 
 http://www.adobe.com/go/flex2_cf_installation
   
HTH
   
Damon
   
--- In flexcoders@yahoogroups.com 
 mailto:flexcoders%40yahoogroups.com, Brian Holmes bholme@
 wrote:

 Hi everyone,
 Can anyone point me in the right direction of getting CF and
 FDS
up on
 the same server, as it would be on production server. A
 deployment
guide
 or old thread would be nice. Specifically I'm trying to load
 flex
 applications and widgets in our already established CF
 framewok.


 Thanks,
 Brian


 ***
 The information in this e-mail is confidential and intended
 solely
for the individual or entity to whom it is addressed. If you
 have
received this e-mail in error, please notify the sender by
 return e-
mail, delete this e-mail, and refrain from any disclosure or
 action
based on the information.
 ***

   
  
 
 

-- 



   Thomas Rühl
   Design, Programming  Concepts

   akitogo OHG
   Hanauer Landstrasse 188
   60314 Frankfurt

   Telefon +49 (0) 69 800 69 445
   Fax +49 (0) 69 800 69 449
   Mobil   +49 (0) 179 750 75 87
   E-Mail  [EMAIL PROTECTED]
   Web http://www.akitogo.com






 Yahoo! Groups Sponsor ~-- 
Great things are happening at Yahoo! Groups.  See the new email design.
http://us.click.yahoo.com/TISQkA/hOaOAA/yQLSAA/nhFolB/TM
~- 

--
Flexcoders Mailing List
FAQ

Re: [flexcoders] Re: Flex and CF

2006-07-19 Thread Mike Nimer


Joao,
Your right there isn't much information, and we need more. We'll work on that.

However, to answer you question now. To get this working so you can call FDS destinations of CF via Flash Remoting you would do it this way.

1) Configure CF on 1 instance/server
2) Configure FDS on 2nd instance/server
3) Point your project at the services-config.xml in the FDS instance.

Ok at this point you can easily call FDS destinations which use CF (or not). Now to also call Flash remoting.

4) Define the destination and channel with Actionscript, instead of letting the compiler do it when it is pointed at the CF version of the services-config.xml

To create you own ChannelSet the code would look something like this.

--
public var cSet:ChannelSet;

public function initApp()
{
 cSet= new ChannelSet();
 var customChannel:Channel = new AMFChannel("my-cfamf", http://localhost:8500/flex2gateway/); // Add the Channel to the ChannelSet. cSet.addChannel(customChannel); foo.channelSet = cSet;
}

mx:RemoteObject 
 id="foo" 
 destination="ColdFusion" 
 source="com.foo.component"/
---

Note: You can use this ChannelSet technique instead of the -services compiler flag too. And you can use it, if you want to use something like FlashVars to change the endpoint url.


hope that helps,
---nimer
- Original Message From: João Fernandes [EMAIL PROTECTED]To: flexcoders@yahoogroups.comSent: Wednesday, July 19, 2006 1:52:29 PMSubject: RE: [flexcoders] Re: Flex and CF

Damon,but there isn't much information if you want to use RPC + FDS. All examples are RPC or FDS only, not the mix.If you define your CF RPC destination inside FDS it won't work and there isn't any example, best-practice or a technote how to implement this correcly.If you merge FDS+CF this works fine. If Adobe could publish any additional documentation how to achieve this (RPC+FDS), I think everyone would be grateful.João Fernandes-Original Message-From: [EMAIL PROTECTED] ups.com on behalf of dcooper2025Sent: Wed 19-Jul-06 6:38 PMTo: [EMAIL PROTECTED] ups.comSubject: [flexcoders] Re: Flex and CFPeople seem to think they need to jam FDS into the CF instance to get them to work together for some reason, likely
 because that's the main config setup with CF + Flex 1.5, but that's not necessary at all any longer with Flex 2 FDS. With Flex 2 and FDS, you absolutely do not need FDS installed into the CF app instance for things to work. We designed them to live together on the same machine or seperately on different machines/instances, but we didn't spend much time on the case where people would try to get FDS inserted into the CF instance itself. I suppose there are valid arguments for wanting to do this, but with the RMI interface between the two now with Flex 2, and the existing Flex 1.5 bits already living in the CF7 instance for CF7 Flash Forms, etc (and the potential for conflict between Flex 1.5 and Flex 2 bits in package names, etc, etc), we thought it best to recommend the use case where CF and Flex 2 FDS are not living in the same webapp instance.Hopefully that makes sense.Damon--- In [EMAIL PROTECTED] ups.com, "Jim" jackofwebtrades@ ... wrote: Damon,  When you say, "They live nicely side-by-side, " how is Coldfusion loaded? Built-in Web Server, Multiserver (JRUN4), Using IIS or Apache? Do they work side-by-side if CF is loaded with JRUN and FDS is loaded with JRUN too, on the same machine?  Coldfusion developers everywhere are having issues getting FDS Express to work with CF. Sure we can update CF to 7.0.2. We can even install FDS. That's easy. But logic identifies one similarity between CF and FDS...ah, they both use JRun. So logic says, they should be able to use the same JRun installation; have one single JRun folder. Is that not the case? (I've seen the technote that has us combining web.xml files, coping over
 other files to the lib folder, etc...but that technote is bogus.)  Thanks,  Jim Pickering --- In [EMAIL PROTECTED] ups.com, "dcooper2025" dcooper@ wrote:   Specifically, you can just install Flex Enterprise Services on a   J2EE server on the same machine as CF, configure everything and   you're good to go. They live very nicely side-by-side.FYI, we've made the CF 7.0.2 doc for CF/Flex 2 integration available   online where you can quickly reference it as needed" http://www.adobe. com/go/cfmx702do cs and the ColdFusion 7.0.2 install instructions are here: http://www.adobe. com/go/flex2_ cf_installation HTHDamon--- In [EMAIL PROTECTED] ups.com, "Brian Holmes" bholme@ wrote: Hi everyone,   Can anyone point me in the right direction of getting CF and FDS   up on   the same server, as it would be on production server. A deployment   guide   or old thread would be nice. Specifically I'm trying to load flex   applications and widgets in our already established CF framewok. Thanks,   Brian   
  ***   Th

RE: [flexcoders] Re: Flex and CF

2006-07-19 Thread João Fernandes

Mike,

using this approach, will an authentication made by a RPC call be available by 
the FDS assembler?
Imagine that I want to filter some fill call based on the value of the 
getauthuser(), do I need to use setRemoteCredentials on my DS destination or 
it's already available?

So basically, does a session created from a RPC call be the same as the one 
created my FDS when calling the assembler?

João Fernandes

-Original Message-
From: flexcoders@yahoogroups.com on behalf of Mike Nimer
Sent: Wed 19-Jul-06 10:10 PM
To: flexcoders@yahoogroups.com
Subject: Re: [flexcoders] Re: Flex and CF
 
Joao,
Your right there isn't much information, and we need more. We'll work on that.
 
However, to answer you question now. To get this working so you can call FDS 
destinations of CF via Flash Remoting you would do it this way.
 
1) Configure CF on 1 instance/server
2) Configure FDS on 2nd instance/server
3) Point your project at the services-config.xml in the FDS instance.
 
Ok at this point you can easily call FDS destinations which use CF (or not).  
Now to also call Flash remoting.
 
4) Define the destination and channel with Actionscript, instead of letting the 
compiler do it when it is pointed at the CF version of the services-config.xml
 
To create you own ChannelSet the code would look something like this.
 
--
public var cSet:ChannelSet;
 
public function initApp()
{
cSet = new ChannelSet();
var customChannel:Channel = new AMFChannel(my-cfamf, 
http://localhost:8500/flex2gateway/);
// Add the Channel to the ChannelSet.
cSet.addChannel(customChannel);
foo.channelSet = cSet;
}

 
mx:RemoteObject 
id=foo 
destination=ColdFusion 
source=com.foo.component /
---
 
Note: You can use this ChannelSet technique instead of the -services compiler 
flag too. And you can use it, if you want to use something like FlashVars to 
change the endpoint url.
 
 
hope that helps,
---nimer

- Original Message 
From: João Fernandes [EMAIL PROTECTED]
To: flexcoders@yahoogroups.com
Sent: Wednesday, July 19, 2006 1:52:29 PM
Subject: RE: [flexcoders] Re: Flex and CF


Damon,

but there isn't much information if you want to use RPC + FDS. All examples are 
RPC or FDS only, not the mix.

If you define your CF RPC destination inside FDS it won't work and there isn't 
any example, best-practice or a technote how to implement this correcly.

If you merge FDS+CF this works fine. If Adobe could publish any additional 
documentation how to achieve this (RPC+FDS), I think everyone would be grateful.

João Fernandes

-Original Message-
From: [EMAIL PROTECTED] ups.com on behalf of dcooper2025
Sent: Wed 19-Jul-06 6:38 PM
To: [EMAIL PROTECTED] ups.com
Subject: [flexcoders] Re: Flex and CF

People seem to think they need to jam FDS into the CF instance to 
get them to work together for some reason, likely because that's the 
main config setup with CF + Flex 1.5, but that's not necessary at 
all any longer with Flex 2 FDS. 

With Flex 2 and FDS, you absolutely do not need FDS installed into 
the CF app instance for things to work. We designed them to live 
together on the same machine or seperately on different 
machines/instances, but we didn't spend much time on the case where 
people would try to get FDS inserted into the CF instance itself. I 
suppose there are valid arguments for wanting to do this, but with 
the RMI interface between the two now with Flex 2, and the existing 
Flex 1.5 bits already living in the CF7 instance for CF7 Flash 
Forms, etc (and the potential for conflict between Flex 1.5 and Flex 
2 bits in package names, etc, etc), we thought it best to recommend 
the use case where CF and Flex 2 FDS are not living in the same 
webapp instance.

Hopefully that makes sense.

Damon


--- In [EMAIL PROTECTED] ups.com, Jim jackofwebtrades@ ... wrote:

 Damon,
 
 When you say, They live nicely side-by-side,  how is Coldfusion
 loaded? Built-in Web Server, Multiserver (JRUN4), Using IIS or 
Apache?
 Do they work side-by-side if CF is loaded with JRUN and FDS is 
loaded
 with JRUN too, on the same machine?
 
 Coldfusion developers everywhere are having issues getting FDS 
Express
 to work with CF. Sure we can update CF to 7.0.2. We can even 
install
 FDS. That's easy. But logic identifies one similarity between CF 
and
 FDS...ah, they both use JRun. So logic says, they should be able to
 use the same JRun installation; have one single JRun folder. Is 
that
 not the case? (I've seen the technote that has us combining web.xml
 files, coping over other files to the lib folder, etc...but that
 technote is bogus.)
 
 Thanks,
 
 Jim Pickering
 --- In [EMAIL PROTECTED] ups.com, dcooper2025 dcooper@ wrote:
 
  Specifically, you can just install Flex Enterprise Services on a 
  J2EE server on the same machine as CF, configure everything and 
  you're good to go. They live very nicely side-by-side.
  
  FYI, we've made the CF 7.0.2 doc for CF/Flex 2 integration 
available 
  online

RE: [flexcoders] Re: Flex and CF

2006-07-19 Thread Brian Holmes





I agree. I have been able to get FDS and CF running 
together on my local machine, problem is we work in groups and have not been 
able to get it to work on our development server as it would run if moved into 
production.


From: flexcoders@yahoogroups.com 
[mailto:[EMAIL PROTECTED] On Behalf Of JimSent: 
Wednesday, July 19, 2006 2:45 PMTo: 
flexcoders@yahoogroups.comSubject: [flexcoders] Re: Flex and 
CF


Damon,Thanks. This technote http://www.adobe.com/go/4f079a4d 
is responsiblefor the jamming of FDS into CF. João says he was able to get 
FDS+CFworking, but I haven't. And João still wants to do the RPC+FDS too. 
SoI agree with João that Adobe needs to add a technote to help CF 
codersunderstand how to get FDS and CF working together; it'll open 
thefloodgates for CF coders to use FDS.Jim Pickering--- In 
[EMAIL PROTECTED]ups.com, 
"dcooper2025" [EMAIL PROTECTED] wrote: People seem to 
think they need to jam FDS into the CF instance to  get them to work 
together for some reason, likely because that's the  main config setup 
with CF + Flex 1.5, but that's not necessary at  all any longer with 
Flex 2 FDS.   With Flex 2 and FDS, you absolutely do not need 
FDS installed into  the CF app instance for things to work. We designed 
them to live  together on the same machine or seperately on different 
 machines/instances, but we didn't spend much time on the case where 
 people would try to get FDS inserted into the CF instance itself. I 
 suppose there are valid arguments for wanting to do this, but with 
 the RMI interface between the two now with Flex 2, and the existing 
 Flex 1.5 bits already living in the CF7 instance for CF7 Flash  
Forms, etc (and the potential for conflict between Flex 1.5 and Flex  2 
bits in package names, etc, etc), we thought it best to recommend  the 
use case where CF and Flex 2 FDS are not living in the same  webapp 
instance.  Hopefully that makes sense.  
Damon   --- In [EMAIL PROTECTED]ups.com, 
"Jim" jackofwebtrades@ wrote:   
Damon,When you say, "They live nicely 
side-by-side," how is Coldfusion  loaded? Built-in Web Server, 
Multiserver (JRUN4), Using IIS or  Apache?  Do they work 
side-by-side if CF is loaded with JRUN and FDS is  loaded  
with JRUN too, on the same machine?Coldfusion 
developers everywhere are having issues getting FDS  Express 
 to work with CF. Sure we can update CF to 7.0.2. We can even  
install  FDS. That's easy. But logic identifies one similarity 
between CF  and  FDS...ah, they both use JRun. So logic 
says, they should be able to  use the same JRun installation; have 
one single JRun folder. Is  that  not the case? (I've seen 
the technote that has us combining web.xml  files, coping over other 
files to the lib folder, etc...but that  technote is bogus.) 
   Thanks,Jim Pickering  
--- In [EMAIL PROTECTED]ups.com, 
"dcooper2025" dcooper@ wrote: 
Specifically, you can just install Flex Enterprise Services on a   
 J2EE server on the same machine as CF, configure everything and  
  you're good to go. They live very nicely side-by-side.  
FYI, we've made the CF 7.0.2 doc for CF/Flex 2 
integration  availableonline where you can quickly 
reference it as needed"   http://www.adobe.com/go/cfmx702docs 
  and the ColdFusion 7.0.2 install 
instructions are here:   http://www.adobe.com/go/flex2_cf_installation 
  HTH  
Damon  --- In [EMAIL PROTECTED]ups.com, 
"Brian Holmes" bholme@  wrote:
   Hi everyone,Can anyone point me in the 
right direction of getting CF and  FDSup on 
   the same server, as it would be on production server. A  
deploymentguideor old thread would 
be nice. Specifically I'm trying to load  flex
applications and widgets in our already established CF  
framewok.
Thanks,Brian   
 ***The information in this 
e-mail is confidential and intended  solelyfor the 
individual or entity to whom it is addressed. If you  have   
 received this e-mail in error, please notify the sender by  return 
e-   mail, delete this e-mail, and refrain from any disclosure 
or  actionbased on the information.  
  ***  


***
The information in this e-mail is confidential and intended solely for the individual or entity to whom it is addressed.  If you have received this e-mail in error, please notify the sender by return e-mail, delete this e-mail, and refrain from any disclosure or action based on the information.
*** 


__._,_.___





--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com








   






  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development