[flexcoders] [Flex2, Cairngorm 2.1] Trouble with ServiceLocator

2006-12-28 Thread Thomas Rühl -akitogo-

Hello flexcoders,

I'm sort of stuck at the moment; I think, I'm missing something here...
In my Services.mxml I configure a RemoteObject with the id 'testService':

cairngorm:ServiceLocator xmlns:mx=http://www.adobe.com/2006/mxml;
xmlns:cairngorm=com.adobe.cairngorm.business.* 
   mx:RemoteObject id=testService destination=ColdFusion
   source=some.path.to.cfc.StuffManagement showBusyCursor=true /
/cairngorm:ServiceLocator


I implemented a BusinessDelegate for testing, that should make use of
the above:

   ServiceLocator.getInstance().getRemoteObject(testService);


However, for some reason I don't see, this throws a reference error
(property not found):

ReferenceError: Error #1069: Eigenschaft testService für
com.adobe.cairngorm.business.ServiceLocator nicht gefunden und es ist
kein Standardwert vorhanden. at
com.adobe.cairngorm.business::ServiceLocator/::getServiceForId() at
com.adobe.cairngorm.business::ServiceLocator/getRemoteObject() at
customer.business::TestDelegate$iinit() at
customer.commands::ApplicationStartupCommand/execute() at
com.adobe.cairngorm.control::FrontController/com.adobe.cairngorm.control:FrontController::executeCommand()
at
flash.events::EventDispatcher/flash.events:EventDispatcher::dispatchEventFunction()
at flash.events::EventDispatcher/dispatchEvent() at
com.adobe.cairngorm.control::CairngormEventDispatcher/dispatchEvent() at
customer.control::CustomerManagementController$iinit() at
akibaseInternal_customerManagement$iinit() at
mx.managers::SystemManager/create() at
mx.managers::SystemManager/::initializeTopLevelWindow() at
mx.managers::SystemManager/::frameEndHandler()


Any help please...?
Cheers, Thomas




  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






Re: [flexcoders] Re: Value Object inside Value Object?

2006-10-23 Thread Thomas Rühl -akitogo-

you're welcome :D


Dan wrote:
 
 
 Oh, thanks. It is really that simple.
 Dan
 
 --- In flexcoders@yahoogroups.com mailto:flexcoders%40yahoogroups.com, 
 Thomas R?t;[EMAIL PROTECTED]
 wrote:
  
  
   Hi, yeah, sure... why not...?
  
   In your first VO:
   public var aString : String;
   public var anotherVO : anotherVO;
  
   In your second VO:
   public var anotherString : String;
  
   To use it:
  
   var localVO = new VO();
   localVO.aString = 'foo 1';
  
   var localOtherVO = new anotherVO();
   localAnotherVO.anotherString = 'foo 2';
  
   // assign the second VO to the first one...
   localVO.anotherVO = localAnotherVO;
  
   // localVO is now set with a string and another VO.
  
   Cheers, Thomas
  
   
  
   Thomas R?t; 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 http://www.akitogo.com
  
   
  
  
   Dan wrote:
   
   
Hi, does anyone know besides primitive type, is it possible to
 have a
value object as an element of another value object?
   
Thanks
   
   
  
 
 

-- 



   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






--
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/

* Your email settings:
Individual Email | Traditional

* To change settings online go to:
http://groups.yahoo.com/group/flexcoders/join
(Yahoo! ID required)

* To change settings via email:
mailto:[EMAIL PROTECTED] 
mailto:[EMAIL PROTECTED]

* 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/
 



Re: [flexcoders] Cairngorm 2 - Event propagation problem

2006-08-17 Thread Thomas Rühl -akitogo-

Hi hemantkamatgi,
just a few things I recognized:

1. When dispatching the Cairngorm event, you shouldn't create two 
instances of the LoginEvent here... just one and pass it!
  // { var eventObject : LoginEvent = new LoginEvent();
  // CairngormEventDispatcher.getInstance().dispatchEvent(new 
LoginEvent());

2. I assume, you LoginVO is only missing in your post, not in your 
code..!? The section above best looks like this (including the VO):
   var loginVO : LoginVO = new LoginVO();
   loginVO.xx = xx; /* add any values you need */
   var eventObject : LoginEvent = new LoginEvent(loginVO);
   CairngormEventDispatcher.getInstance().dispatchEvent(eventObject);

3. In your front controller you add the event using a string login. 
Same for the LoginEvent itself. You should create a constant variable in 
the controller to minimise the chances of errors.


Now, this is just some sommon stuff, don't know if this solves your 
problem, though...

Cheers, Thomas


hemantkamatgi wrote:
 
 
 Hi,
 
 I am trying to use Cairngorm 2 framework with Flex 2.
 This issue is that the event (login) does not seem to reach the
 FrontController.
 I am listing my application files with the significant code snippets:
 I have been struggling with this for the past 2 days but aint seem to
 figure out the problem.
 
 1) ApplicationFrontController.as
 
 // addCommand(login, LoginCommand);
 
 2) LoginCommand.as //implements Command
 
 //public function execute(event:CairngormEvent):void
 
 3) LoginEvent.as //extends CairngormEvent
 
 //public function LoginEvent()
 //{
 //super(login);
 //}
 
 4) Login.mxml
 
 // public function doLogin():void
 // { var eventObject : LoginEvent = new LoginEvent();
 // CairngormEventDispatcher.getInstance().dispatchEvent(new LoginEvent());
 // }
 
 

-- 



   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






--
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/
 




Re: [flexcoders] Split Application in Sections. Prevent one loading only.

2006-08-10 Thread Thomas Rühl -akitogo-

Hi there,

yes, this is possible. You'd need to create one application for each of 
the parts you want to be loaded during runtime. The compiler creates the 
additional swfs for you. Then take a look at the SWFLoader class and the 
events the TabNavidator dispatches.

Cheers, Thomas


falecomozig wrote:
 
 
 Hi,
 
 I´m new in Flex, so forgive me if this is a dumb question.
 I want to know what´s the normal way to split a application, so it
 doesn´t need to load everything at the begining.
 To make it clear, let´s say I have a form with 3 sections. Only the
 first section is needed, the section 2 and 3 are optional. So, I could
 have a TabNavigator and load Section 2 and 3 only when the user click
 on its tab. Is this possible?
 Can someone point me a direction for what to search? And where?
 Thank you
 
 Zig
 
 

-- 



   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






--
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/
 





Re: [flexcoders] Re: [Flex2] What do you use for modelling a Flex2 application...?

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

Thanks for your interest so far... but this isn't really the direction I 
intended to point out.

Dave, I know that the documentation and modelling process basically 
doesn't depend on HOW an application is written. I'm not trying from 
model to generated code, although it would be really neat to do so in 
some cases ;)

My concern is to evolve a process, starting with modelling an 
application the good old way using software architecture 
possibilities. This not only helps me to evaluate and improve an 
application, in fact it is also important for me regarding documentation 
and maintenance processes.

Again, I do not necessarily want to generate the code based on a UML or 
other kind of diagrams, my interest targets the development process 
before actual implementation starts.

As I said, for the Java world, there are lots of tools which we are 
missing for Flex at the moment. Problem being, these tools are mostly 
Java specific (for which I think they shouldn't), since they DO want to 
generate code out of the model. And this is the reason I am interested 
in how other folks do the modeling.

Cheers, Thomas


  
  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
  




Jason wrote:

 There are several AS2 model2code generators such as:
 http://www.darronschall.com/weblog/archives/000174.cfm 
 http://www.darronschall.com/weblog/archives/000174.cfm
 http://www.codealloy.com/umlconverter.htm 
 http://www.codealloy.com/umlconverter.htm
 and some others I can't remember right now.

 It will just be a matter of time untill someone updates one of the
 projects for AS3, and ideally for Cairngorm.
 I poked around on sourceforge, but did not see an started project.

 Darron Schall my be willing to provide his source as a starting point
 for anyone looking to pick up the project -- it looks like he has a
 SVN repository set for the source.

 --jason

 --- In flexcoders@yahoogroups.com 
 mailto:flexcoders%40yahoogroups.com, Joost Nuijten 
 [EMAIL PROTECTED] wrote:
 
  I think what Thomas is trying to say:
 
  In the Java world there are a lot of powerful tools that generate
 the base
  skeleton of code out of a model. For the Flex world this is all hand
 work.
  And how do we cope with this?
 
  That is why it is important that we have a framework such as
 Cairngorm. The
  one thing that we do not have is an automated tool that generates the
  Cairngorm base skeleton.
 
  ** thinking about creating one myself **
 
  Joost
 
  _
 
  Van: flexcoders@yahoogroups.com 
 mailto:flexcoders%40yahoogroups.com 
 [mailto:flexcoders@yahoogroups.com mailto:flexcoders%40yahoogroups.com]
 Namens
  Dave Wolf
  Verzonden: maandag 7 augustus 2006 2:33
  Aan: flexcoders@yahoogroups.com mailto:flexcoders%40yahoogroups.com
  Onderwerp: [flexcoders] Re: [Flex2] What do you use for modelling a
 Flex2
  application...?
 
 
 
  Why does the implementation language (the HOW) have anything
  significant to do with the modelling and documentation solution you
  use (the WHAT) ?
 
  Are you trying to go from model to generated code?
 
  If modelling is important to your development process, tried and
  trusted modelling solutions such as UML would be capable of
  documenting and managing the WHAT side of the development process
  regardless of the implementation HOW language.
 
  --
  Dave Wolf
  Cynergy Systems, Inc.
  Adobe Flex Alliance Partner
  http://www.cynergys http://www.cynergysystems.com 
 http://www.cynergysystems.com ystems.com
  http://www.cynergys http://www.cynergysystems.com/blogs 
 http://www.cynergysystems.com/blogs
 ystems.com/blogs
 
  Email: [EMAIL PROTECTED] mailto:dave.wolf%40cynergysystems.com
 stems.com
  Office: 866-CYNERGY
 
  --- In [EMAIL PROTECTED] mailto:flexcoders%40yahoogroups.com
 ups.com,
  Thomas R�hl -akitogo-
  thomas.ruehl@ wrote:
  
  
   Hi folks,
  
   it's been a while now, since the Flex2 SDK is out and rockin' ;)
  
   Not only for larger projects, multiple teams or team members and
   documentation purpose, I'd like to know, what everyone is using for
   modelling a Flex application. For the Java world I know, the tools
   available are very powerful and work very well out of the box and
   integrate with each other. There are also things like OmondoUML,
 which
   we can be used for designing Java apps (doing use case and sequential
   diagram sort of stuff) in conjunction with creating the
  corresponding code.
  
   The lack of Flex-specific tools for that kind of work still leads
   towards endless times spent on the drawing table - at least on my
 side..
  
   So, the question coming up my mind is, in what ways do you all design
   your Flex applications before/during or after implementation, if
 

[flexcoders] [Flex2] What do you use for modelling a Flex2 application...?

2006-08-06 Thread Thomas Rühl -akitogo-

Hi folks,

it's been a while now, since the Flex2 SDK is out and rockin' ;)

Not only for larger projects, multiple teams or team members and 
documentation purpose, I'd like to know, what everyone is using for 
modelling a Flex application. For the Java world I know, the tools 
available are very powerful and work very well out of the box and 
integrate with each other. There are also things like OmondoUML, which 
we can be used for designing Java apps (doing use case and sequential 
diagram sort of stuff) in conjunction with creating the corresponding code.

The lack of Flex-specific tools for that kind of work still leads 
towards endless times spent on the drawing table - at least on my side.

So, the question coming up my mind is, in what ways do you all design 
your Flex applications before/during or after implementation, if any...?


Cheers, Thomas




   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






--
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/
 




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: 

[flexcoders] [Flex2, FDS] Configuring RPC

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

Hi list,

I need to configure an RPC service in Flex Data Services. In addition, 
the desired application has to make use of a Messaging- and/or 
DataManagement-Service of the FDS environment. For that, the application 
needs to run under FDS, so the RPC configuration should be made in the 
Flax config files rather thatn inthe Coldfusion ones, right?
 
How do I manage to do so? I mean, with the application hosted under 
Coldfusion, I simply tell FlexBuilder to use ColdFusion with 
FlashRemoting and it publishes the app in the wwwroot of Coldfusion.

What I tried so far is to configure the Flex xml's just as the 
Coldfusion ones (regarding channel and service definition), but it does 
not find the adapter definition 
coldfusion.flash.messaging.ColdFusionAdapter, because it lies in the 
Coldfusion directories...

Or is this a wrong attempt of mine? Is there a better (possibly right) 
way to configure stuff?

Cheers, Thomas


  
  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 ~-- 
See what's inside the new Yahoo! Groups email.
http://us.click.yahoo.com/2pRQfA/bOaOAA/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/
 





Re: [flexcoders] [Flex2, FDS] Configuring RPC

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

Hi João,

thanks for the hints. Could you please please (with sugar on top of it 
;-)) provide me with some more information about these two things

* How can I merge the files into a single one (without FDS throwing 
errors all the time)? - tried that without success...
* What do you mean Duplicate the compile files? The config's or mxml's?

Is there a reliable documentation about these things? Everything I found 
seems somehow teared apart and I just don't get the big picture here...

Thanks very much,
Thomas


  
  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
  




João Fernandes wrote:


 Thomas,

 To achieve this you have 3 ways ,in case you compile your app in the 
 builder but if you compile at the server only the 2 first will work:

 1) Use a merged version of CF+FDS
 2) Create your RPC channel  destination at runtime (Mike Nimer gave 
 an example but can't remember where)

 this one will only work if it's the builder who compiles your app (and 
 not the server).
 3) Duplicate your compile file and in this one define your ColdFusion 
 destination so FDS doesn't know about it , then point the compile 
 argument to this one. FDS will use the regular one without the 
 ColdFusion destination and the builder will compile your app with no 
 problem.

 HTH,

 João Fernandes

 -Original Message-
 From: flexcoders@yahoogroups.com mailto:flexcoders%40yahoogroups.com 
 on behalf of Thomas Rühl -akitogo-
 Sent: Tue 18-Jul-06 12:15 PM
 To: flexcoders@yahoogroups.com mailto:flexcoders%40yahoogroups.com
 Subject: [flexcoders] [Flex2, FDS] Configuring RPC


 Hi list,

 I need to configure an RPC service in Flex Data Services. In addition,
 the desired application has to make use of a Messaging- and/or
 DataManagement- Service of the FDS environment. For that, the application
 needs to run under FDS, so the RPC configuration should be made in the
 Flax config files rather thatn inthe Coldfusion ones, right?

 How do I manage to do so? I mean, with the application hosted under
 Coldfusion, I simply tell FlexBuilder to use ColdFusion with
 FlashRemoting and it publishes the app in the wwwroot of Coldfusion.

 What I tried so far is to configure the Flex xml's just as the
 Coldfusion ones (regarding channel and service definition), but it does
 not find the adapter definition
 coldfusion.flash. messaging.ColdFusionAdapter, because it lies in the
 Coldfusion directories...

 Or is this a wrong attempt of mine? Is there a better (possibly right)
 way to configure stuff?

 Cheers, Thomas

  

 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] mailto:thomas.ruehl%40akitogo.com
 Web http://www.akitogo.com 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: 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/
 




Re: [flexcoders] [Flex2, FDS] Configuring RPC

2006-07-18 Thread Thomas Rühl -akitogo-
=flex.messaging.endpoints.RTMPEndpoint/
properties
idle-timeout-minutes20/idle-timeout-minutes
client-to-server-maxbps100K/client-to-server-maxbps
server-to-client-maxbps100K/server-to-client-maxbps
!-- for deployment on WebSphere, must be mapped to a 
WorkManager available in the web application's jndi context.

websphere-workmanager-jndi-namejava:comp/env/wm/MessagingWorkManager/websphere-workmanager-jndi-name
--
/properties
/channel-definition

channel-definition id=my-http 
class=mx.messaging.channels.HTTPChannel
endpoint 
uri=http://{server.name}:{server.port}/{context.root}/messagebroker/http; 
class=flex.messaging.endpoints.HTTPEndpoint/
/channel-definition

channel-definition id=my-secure-http 
class=mx.messaging.channels.SecureHTTPChannel
endpoint 
uri=https://{server.name}:9100/{context.root}/messagebroker/httpsecure; 
class=flex.messaging.endpoints.SecureHTTPEndpoint/
/channel-definition
   
/channels

logging
target class=flex.messaging.log.ConsoleTarget level=Error
properties
prefix[Flex] /prefix
includeDatefalse/includeDate
includeTimefalse/includeTime
includeLevelfalse/includeLevel
includeCategoryfalse/includeCategory
/properties
filters
patternEndpoint.*/pattern
patternService.*/pattern
patternConfiguration/pattern
/filters
/target
/logging

system
redeploy
enabledtrue/enabled
watch-interval20/watch-interval

watch-file{context.root}/WEB-INF/flex/services-config.xml/watch-file

watch-file{context.root}/WEB-INF/flex/proxy-config.xml/watch-file

watch-file{context.root}/WEB-INF/flex/remoting-config.xml/watch-file

watch-file{context.root}/WEB-INF/flex/messaging-config.xml/watch-file

watch-file{context.root}/WEB-INF/flex/data-management-config.xml/watch-file
touch-file{context.root}/WEB-INF/web.xml/touch-file
/redeploy
/system

/services-config
-


  
  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
  




Thomas Rühl -akitogo- wrote:


 Alright João, thanks! I'll give it a shot then.
 You'd be my personal hero of the week, if it works after all ;-)

 Cheers.

  

 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] mailto:thomas.ruehl%40akitogo.com
 Web http://www.akitogo.com http://www.akitogo.com

  

 João Fernandes wrote:
 
  It's the FDS one you'll need to duplicate. why? Because it's the FDS
  one that doesn't support ColdFusion remoting so, you duplicate that
  file, add the ColdFusion destination, change the -service arg to point
  to the new file and compile it. Deploy it in FDS and you should be
  able to invoke DS destinations and use remoting pointing to your CF
  instance.
 
  João Fernandes
 
  -Original Message-
  From: flexcoders@yahoogroups.com 
 mailto:flexcoders%40yahoogroups.com mailto:flexcoders% 
 40yahoogroups.com
  on behalf of Thomas Rühl -akitogo-
  Sent: Tue 18-Jul-06 2:02 PM
  To: flexcoders@yahoogroups.com mailto:flexcoders%40yahoogroups.com 
 mailto:flexcoders%40yahoogroups.com
  Subject: Re: [flexcoders] [Flex2, FDS] Configuring RPC
 
 
  When creating a new project, the services argument is set for you (go
  to properties then flex compiler) but you can change this an point
  to any xml file so you can have your FDS with your Messaging, DS
  Destinations, http, etc and a copy of that with the additional
  destination for ColdFusion just for compiling purpose.
 
  ...so, a roadmap might be something like this:
  * I make a copy of the services-config.xml. (The cf- or flex-version?)
  * In the new file, I set up a destination named Coldfusion for dummy
  purpose and the compiler not to moan.
  * In the project's properties, I select the duplicated file.
  * And in the end, I let FlexBuilder publish everything on FDS anyway,
  right?
 
  Sorry, but I feel a little unsafe here... ;-)
 
  Regards, Thomas
 
  
 
  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

Re: [flexcoders] [Flex2, FDS] Configuring RPC

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

YEEEAHH!! Rock 'n' Roll!!! It works, RPC works! And it's hosted on FDS, 
how cool's that...!?
Dunno exactly why, I didn't change anything about the config files 
anymore, just closed and re-opened eclipse, and see - it seems the RPC 
calls finally work :-)

Thanks again, João! You ARE my personal hero for the rest of the week now...

Trying to get the rest of the FDS working now ;-)
Cheers, Thomas


  
  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
  




Thomas Rühl -akitogo- wrote:


 Alright João, thanks! I'll give it a shot then.
 You'd be my personal hero of the week, if it works after all ;-)

 Cheers.

 

 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] mailto:thomas.ruehl%40akitogo.com
 Web http://www.akitogo.com http://www.akitogo.com

 

 João Fernandes wrote:
 
  It's the FDS one you'll need to duplicate. why? Because it's the FDS
  one that doesn't support ColdFusion remoting so, you duplicate that
  file, add the ColdFusion destination, change the -service arg to point
  to the new file and compile it. Deploy it in FDS and you should be
  able to invoke DS destinations and use remoting pointing to your CF
  instance.
 
  João Fernandes
 
  -Original Message-
  From: flexcoders@yahoogroups.com 
 mailto:flexcoders%40yahoogroups.com 
 mailto:flexcoders%40yahoogroups.com
  on behalf of Thomas Rühl -akitogo-
  Sent: Tue 18-Jul-06 2:02 PM
  To: flexcoders@yahoogroups.com mailto:flexcoders%40yahoogroups.com 
 mailto:flexcoders%40yahoogroups.com
  Subject: Re: [flexcoders] [Flex2, FDS] Configuring RPC
 
 
  When creating a new project, the services argument is set for you (go
  to properties then flex compiler) but you can change this an point
  to any xml file so you can have your FDS with your Messaging, DS
  Destinations, http, etc and a copy of that with the additional
  destination for ColdFusion just for compiling purpose.
 
  ...so, a roadmap might be something like this:
  * I make a copy of the services-config.xml. (The cf- or flex-version?)
  * In the new file, I set up a destination named Coldfusion for dummy
  purpose and the compiler not to moan.
  * In the project's properties, I select the duplicated file.
  * And in the end, I let FlexBuilder publish everything on FDS anyway,
  right?
 
  Sorry, but I feel a little unsafe here... ;-)
 
  Regards, Thomas
 
  
 
  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] mailto:thomas.ruehl%40akitogo.com 
 mailto:thomas.ruehl%40akitogo.com
  Web http://www.akitogo.com http://www.akitogo.com 
 http://www.akitogo.com http://www.akitogo.com
 
  
 
  João Fernandes wrote:
  
   Thomas,
  
   you couldn't find documentation because there isn't :p
  
   Adobe launched a technote how to merge cf + fds but Tom Jordahl
   doesn't like it very much.
   http://www.adobe.com/cfusion/knowledgebase/index.cfm?id=4f079a4d 
 http://www.adobe.com/cfusion/knowledgebase/index.cfm?id=4f079a4d
  http://www.adobe.com/cfusion/knowledgebase/index.cfm?id=4f079a4d 
 http://www.adobe.com/cfusion/knowledgebase/index.cfm?id=4f079a4d
   http://www.adobe.com/cfusion/knowledgebase/index.cfm?id=4f079a4d 
 http://www.adobe.com/cfusion/knowledgebase/index.cfm?id=4f079a4d
  http://www.adobe.com/cfusion/knowledgebase/index.cfm?id=4f079a4d 
 http://www.adobe.com/cfusion/knowledgebase/index.cfm?id=4f079a4d but
   in the merging web.xml from cf and flex you should keep the cf version
   of the MessageBrokerServlet.
  
   The compile files, I mean, the flex-config.xml file where you define
   your channels  destinations.
  
   When creating a new project, the services argument is set for you (go
   to properties then flex compiler) but you can change this an point
   to any xml file so you can have your FDS with your Messaging, DS
   Destinations, http, etc and a copy of that with the additional
   destination for ColdFusion just for compiling purpose.
  
   João Fernandes
  
   -Original Message-
   From: flexcoders@yahoogroups.com 
 mailto:flexcoders%40yahoogroups.com
  mailto:flexcoders%40yahoogroups.com
  mailto:flexcoders%40yahoogroups.com
   on behalf of Thomas Rühl -akitogo-
   Sent: Tue 18-Jul-06 1:15 PM
   To: flexcoders@yahoogroups.com 
 mailto:flexcoders%40yahoogroups.com 
 mailto:flexcoders

Re: [flexcoders] [Flex2] Cairngorm question

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

Yeah - about that, Tom...

if you took a look at the Cairngorm part of the labs site, you'd see the 
the only thing referenced under the Resources bit is in fact Steven's 
article. There are no demos for Cairngorm.

Cheers, Thomas


  
  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
  




Tom Chiverton wrote:
 On Wednesday 12 July 2006 14:05, Thomas Rühl -akitogo- wrote:
 Hi,
 I'm just walking through Steven's article about Cairngorm on the Adobe
 site 

 Unless something has changed, the DevNet article is for Cairngorm 
 0.something, 
 and their are a few subtle differences (like this) compaired to Flex 2.
 Might be best to grab the latest demos from Labs.



 Yahoo! Groups Sponsor ~-- 
Something is new at Yahoo! Groups.  Check out the enhanced email design.
http://us.click.yahoo.com/SISQkA/gOaOAA/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/
 




Re: [flexcoders] Re: [Flex2] Cairngorm question

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

Thanks, Tim! Looks like, that'll help me out here.

I'm as well watching the »WebServices  Cairngorm« thread, and I think
this is one heck of a solution for the matters Darron draws in his article.

Cheers, Thomas


  
  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
  




Tim Hoff wrote:

 Hi Thomas,

 Darron Schall's blog; Why I don't use Cairngorm's Responder 
 http://www.darronschall.com/weblog/archives/000234.cfm#more, shows 
 a couple of ways that this can be accomplished.

 -TH

 --- In flexcoders@yahoogroups.com, Thomas Rühl -akitogo- 
 [EMAIL PROTECTED] wrote:
 
 
  Sorry, but I'm still having questions...
  Following the Cairngorm architecture, I created a LoginDelegate class.
  It should call the service and the originating LoginCommand got its
  onFault() and onResult() methods and therefore implementes the 
 Responder
  interface.
 
  However, defining this in the LoginDelegate...
  public function authenticateUser():void
  {
  var call:AsyncToken = service.authenticateUser();
  call.addResponder(IResponder(this.responder.onFault()));
  call.addResponder(IResponder(this.responder.onResult()));
  }
 
  results in both, calling the onFault and onResult methods... why? How
  can I cope with that?
 
  Cheers, Thomas
 
  
 
  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
 
  
 
 
 
  JesterXL wrote:
  
   You don't need a Delegate. Before, functions were called in the 
 scope of
   the calling object, but now they are called in the scope of where 
 they
   are
   defined.
  
   Thus, this:
  
   myButton.addEventListener(click, Delegate.create(this, onClick));
  
   now becomes:
  
   myButton.addEventListener(click, onClick);
  
   No more need!
  
   - Original Message -
   From: Thomas Rühl -akitogo- [EMAIL PROTECTED]
   mailto:thomas.ruehl%40akitogo.com
   To: flexcoders@yahoogroups.com mailto:flexcoders%40yahoogroups.com
   Sent: Wednesday, July 12, 2006 9:05 AM
   Subject: [flexcoders] [Flex2] Cairngorm question
  
   Hi,
   I'm just walking through Steven's article about Cairngorm on the Adobe
   site again and I wonder where the mx.utils.Delegate class can be 
 found.
   Has it been renamed or replaced in some way? How can I create a 
 Delegate
   now?
  
   Cheers, Thomas
  
   
  
   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] mailto:thomas.ruehl%40akitogo.com
   Web http://www.akitogo.com http://www.akitogo.com
  
   
  
   --
   Flexcoders Mailing List
   FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
   http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
   Search Archives:
   http://www.mail-archive.com/flexcoders%40yahoogroups.com
   http://www.mail-archive.com/flexcoders%40yahoogroups.com
   Yahoo! Groups Links
  
  
 

  


--
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/
 





Re: [flexcoders] Re: [Flex2] Cairngorm question

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

Been there, done that... ;-)

I already spent a few weeks understanding Cairngorm and as of now,
I think it's a great approach and exactly what I've been looking for.

It's was just the backend integration, which made me fail the last two days,
but now it works and Darron's way is simple and easy to understand, so 
why not use it!?

Btw, in the meantime I got the Cairngorm way working.

Cheers, Thomas


  
  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
  




Ralf Bokelberg wrote:

 Hi Thomas,

 Cairngorm works quite well as is. Also there is a simple example
 coming with the distribution ( the famous loginExample). I would try
 to get used to the framework before applying patches.

 Cheers,
 Ralf.

 On 7/13/06, Thomas Rühl -akitogo- [EMAIL PROTECTED] 
 mailto:thomas.ruehl%40akitogo.com wrote:
 
  Thanks, Tim! Looks like, that'll help me out here.
 
  I'm as well watching the »WebServices  Cairngorm« thread, and I think
  this is one heck of a solution for the matters Darron draws in his 
 article.
 
  Cheers, Thomas
 
  
 
  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] mailto:thomas.ruehl%40akitogo.com
  Web http://www.akitogo.com http://www.akitogo.com
 
  
 
 
 
  Tim Hoff wrote:
  
   Hi Thomas,
  
   Darron Schall's blog; Why I don't use Cairngorm's Responder
   http://www.darronschall.com/weblog/archives/000234.cfm#more 
 http://www.darronschall.com/weblog/archives/000234.cfm#more, shows
   a couple of ways that this can be accomplished.
  
   -TH
  
   --- In flexcoders@yahoogroups.com 
 mailto:flexcoders%40yahoogroups.com, Thomas Rühl -akitogo-
   [EMAIL PROTECTED] wrote:
   
   
Sorry, but I'm still having questions...
Following the Cairngorm architecture, I created a LoginDelegate 
 class.
It should call the service and the originating LoginCommand got its
onFault() and onResult() methods and therefore implementes the
   Responder
interface.
   
However, defining this in the LoginDelegate...
public function authenticateUser():void
{
var call:AsyncToken = service.authenticateUser();
call.addResponder(IResponder(this.responder.onFault()));
call.addResponder(IResponder(this.responder.onResult()));
}
   
results in both, calling the onFault and onResult methods... 
 why? How
can I cope with that?
   
Cheers, Thomas
   

   
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 http://www.akitogo.com
   

   
   
   
JesterXL wrote:

 You don't need a Delegate. Before, functions were called in the
   scope of
 the calling object, but now they are called in the scope of where
   they
 are
 defined.

 Thus, this:

 myButton.addEventListener(click, Delegate.create(this, 
 onClick));

 now becomes:

 myButton.addEventListener(click, onClick);

 No more need!

 - Original Message -
 From: Thomas Rühl -akitogo- [EMAIL PROTECTED]
 mailto:thomas.ruehl%40akitogo.com
 To: flexcoders@yahoogroups.com 
 mailto:flexcoders%40yahoogroups.com 
 mailto:flexcoders%40yahoogroups.com
 Sent: Wednesday, July 12, 2006 9:05 AM
 Subject: [flexcoders] [Flex2] Cairngorm question

 Hi,
 I'm just walking through Steven's article about Cairngorm on 
 the Adobe
 site again and I wonder where the mx.utils.Delegate class can be
   found.
 Has it been renamed or replaced in some way? How can I create a
   Delegate
 now?

 Cheers, Thomas

 

 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] mailto:thomas.ruehl%40akitogo.com
 Web http://www.akitogo.com http://www.akitogo.com 
 http://www.akitogo.com http://www.akitogo.com

 

 --
 Flexcoders Mailing List
 FAQ: 
 http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt 
 http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
 
 http

Re: [flexcoders] [Flex2] Cairngorm question

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

lol, thanks anyway.
i got it to work with the help of darren's article about responder 
versus iresponder...

cheers, thomas


  
  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
  




Tom Chiverton wrote:
 On Thursday 13 July 2006 10:13, Thomas Rühl -akitogo- wrote:
   
 the only thing referenced under the Resources bit is in fact Steven's
 article. There are no demos for Cairngorm.
 

 Erk !
 You're stuck with the one that comes with it then :-)

   


 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/
 




Re: [flexcoders] [Flex2] Cairngorm question

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

Sorry, but I'm still having questions...
Following the Cairngorm architecture, I created a LoginDelegate class. 
It should call the service and the originating LoginCommand got its 
onFault() and onResult() methods and therefore implementes the Responder 
interface.

However, defining this in the LoginDelegate...
public function authenticateUser():void
{
var call:AsyncToken = service.authenticateUser();
call.addResponder(IResponder(this.responder.onFault()));
call.addResponder(IResponder(this.responder.onResult()));
}

results in both, calling the onFault and onResult methods... why? How 
can I cope with that?

Cheers, Thomas


  
  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
  




JesterXL wrote:

 You don't need a Delegate. Before, functions were called in the scope of
 the calling object, but now they are called in the scope of where they 
 are
 defined.

 Thus, this:

 myButton.addEventListener(click, Delegate.create(this, onClick));

 now becomes:

 myButton.addEventListener(click, onClick);

 No more need!

 - Original Message -
 From: Thomas Rühl -akitogo- [EMAIL PROTECTED] 
 mailto:thomas.ruehl%40akitogo.com
 To: flexcoders@yahoogroups.com mailto:flexcoders%40yahoogroups.com
 Sent: Wednesday, July 12, 2006 9:05 AM
 Subject: [flexcoders] [Flex2] Cairngorm question

 Hi,
 I'm just walking through Steven's article about Cairngorm on the Adobe
 site again and I wonder where the mx.utils.Delegate class can be found.
 Has it been renamed or replaced in some way? How can I create a Delegate
 now?

 Cheers, Thomas

 

 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] mailto:thomas.ruehl%40akitogo.com
 Web http://www.akitogo.com http://www.akitogo.com

 

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

  


 Yahoo! Groups Sponsor ~-- 
See what's inside the new Yahoo! Groups email.
http://us.click.yahoo.com/2pRQfA/bOaOAA/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/
 




[flexcoders] [Flex2/FlexBuilder] How can I add commands...

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

...to the little popup that comes up when i press [alt] [shift] [x]?

cheers, thomas


  
  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
  




--
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/
 





[flexcoders] [Flex2/FlexBuilder] ahh, alright

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

just found another way... sorry
cheers, thomas


  
  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 ~-- 
See what's inside the new Yahoo! Groups email.
http://us.click.yahoo.com/2pRQfA/bOaOAA/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/
 





[flexcoders] [Flex2] FlexBuilder throws Removing compiler problem markers

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

Hello list,

the attached error occurs randomly during saving files - mxml or as.
Even on clean/freshly created projects. Restarting Eclipse doesn't help 
on this.

Is this already known?

Cheers, Thomas



  
  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 ~-- 
Check out the new improvements in Yahoo! Groups email.
http://us.click.yahoo.com/6pRQfA/fOaOAA/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/
 
attachment: markerError.jpg


[flexcoders] [Flex2] Changes to the Cairngorm package structure

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

Hello list,

I just came across a question of architecture and I'm not quite sure, if 
it is well... sort of allowed to do what I'm about to do. Thing is, 
for the particular situation that I'm dealing with, I'd need to refactor 
Cairngorm regarding its package structure. Now, since this is Adobe's 
thing here, I don't know whether that correspond their licensing in 
terms of usage. Maybe someone, maybe folks from Adobe, could give me 
some hint here.

Thanks and cheers,
Thomas



  
  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 ~-- 
Yahoo! Groups gets a make over. See the new email design.
http://us.click.yahoo.com/XISQkA/lOaOAA/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/
 





Re: [flexcoders] [Flex2] Changes to the Cairngorm package structure

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

Yeah, I know and I really thought about it very well.
Fact is - to narrow it down roughly - the customer wants it that way 
(for an unknown reason) and for me that means, I'm the one in charge...

Thank you, Jean-Luc.
Cheers, Thomas


  
  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
  




Jean-Luc ESSER wrote:

 I believe Cairngorm is just Adobe's vision of architecture, there is 
 no licensing on this and you can refactor it as you wish.
 But what do you need to do ? Before refactoring, make sure you really 
 need to.
 Cairngorm has been created with the voice of large clients developping 
 large Flex Apps, and i see it as very flexible.
  
 Right know, i cannot see any reason for refactoring.
 Anyway, i'm sure Adobe will be very interested in your thoughts !
  
 Best,
 JL
  

 - Original Message -
 *From:* Thomas Rühl -akitogo- mailto:[EMAIL PROTECTED]
 *To:* flexcoders@yahoogroups.com mailto:flexcoders@yahoogroups.com
 *Sent:* Thursday, July 06, 2006 11:52 AM
 *Subject:* [flexcoders] [Flex2] Changes to the Cairngorm package
 structure


 Hello list,

 I just came across a question of architecture and I'm not quite
 sure, if
 it is well... sort of allowed to do what I'm about to do. Thing is,
 for the particular situation that I'm dealing with, I'd need to
 refactor
 Cairngorm regarding its package structure. Now, since this is Adobe's
 thing here, I don't know whether that correspond their licensing in
 terms of usage. Maybe someone, maybe folks from Adobe, could give me
 some hint here.

 Thanks and cheers,
 Thomas

 

 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] mailto:thomas.ruehl%40akitogo.com
 Web http://www.akitogo.com http://www.akitogo.com

 

  


 Yahoo! Groups Sponsor ~-- 
Yahoo! Groups gets a make over. See the new email design.
http://us.click.yahoo.com/XISQkA/lOaOAA/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/
 





Re: [flexcoders] [Flex2] Changes to the Cairngorm package structure

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

No big a deal, they just want to change the package names so far. We'll 
see, what comes afterwards...
I think it they want it to match with something else. Stragely enough, 
they won't really tell the reason
Ahh, I'm confused. However, I hope, this will be the last project with them.

Cheers, Thomas


  
  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
  




Tom Chiverton wrote:
 On Thursday 06 July 2006 11:44, Thomas Rühl -akitogo- wrote:
   
 the customer wants it that way
 

 What way ?

   


 Yahoo! Groups Sponsor ~-- 
Something is new at Yahoo! Groups.  Check out the enhanced email design.
http://us.click.yahoo.com/SISQkA/gOaOAA/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/
 




Re: [flexcoders] [Flex2] Changes to the Cairngorm package structure

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

I completely agree and in fact I'm looking forward to talking to my 
project manager and convincing him to kick their a**es.

Well, thanks everyone :o)
Cheers, Thomas


  
  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
  




Tom Chiverton wrote:
 On Thursday 06 July 2006 12:24, Thomas Rühl -akitogo- wrote:
   
 No big a deal, they just want to change the package names so far. We'll
 

 Much, much oddness.
 By definition, it can't because there is a package-space conflict, so beyond 
 that why do they care ?

 Hmmm. Maybe their showing your code to someone, and want to say 'its all our 
 work'.

   


 Yahoo! Groups Sponsor ~-- 
Something is new at Yahoo! Groups.  Check out the enhanced email design.
http://us.click.yahoo.com/SISQkA/gOaOAA/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/
 




Re: [flexcoders] [Flex2] Changes to the Cairngorm package structure

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

Yeah, I thought so, too.. The copyright notice was out of question 
anyways...

Cheers, Thomas


  
  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
  




Steven Webster wrote:

 Thomas,
  
 I'm not a lawyer, but I see no reason you cannot rename the package 
 structures if you have need to do so.  Consult the license, but I 
 would *expect* you are obliged to keep the (c) notice and the license 
 file in any distributions, but you are free to use and modify the source.
  
 Reminder.  I'm not a lawyer :)
  
 Best,
  
 Steven
  
   
 *Steven Webster*
 Practice Director (Rich Internet Applications)
 Adobe Consulting
 Westpoint, 4 Redheughs Rigg, South Gyle, Edinburgh, EH12 9DQ, UK
 p: +44 (0) 131 338 6108
 m: +44 (0) 7917 428 947 
 [EMAIL PROTECTED] mailto:[EMAIL PROTECTED]


  

 
 *From:* flexcoders@yahoogroups.com
 [mailto:[EMAIL PROTECTED] *On Behalf Of *Thomas Rühl
 -akitogo-
 *Sent:* 06 July 2006 10:53
 *To:* flexcoders@yahoogroups.com
 *Subject:* [flexcoders] [Flex2] Changes to the Cairngorm package
 structure


 Hello list,

 I just came across a question of architecture and I'm not quite
 sure, if
 it is well... sort of allowed to do what I'm about to do. Thing is,
 for the particular situation that I'm dealing with, I'd need to
 refactor
 Cairngorm regarding its package structure. Now, since this is Adobe's
 thing here, I don't know whether that correspond their licensing in
 terms of usage. Maybe someone, maybe folks from Adobe, could give me
 some hint here.

 Thanks and cheers,
 Thomas

 

 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] mailto:thomas.ruehl%40akitogo.com
 Web http://www.akitogo.com http://www.akitogo.com

 

  


 Yahoo! Groups Sponsor ~-- 
Check out the new improvements in Yahoo! Groups email.
http://us.click.yahoo.com/6pRQfA/fOaOAA/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/
 




[flexcoders] [Flex2] FDS as Windows system service?

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

Hello folks,

how can I set up a standalove installation of FDS to run as a Windows 
service? For J2EE (JRun) installations, there exists an entry for each 
of the servers in the Services panel, but I'd like to use the standalone 
version. However, always starting via console goes somewhat on my nerves

Cheers, Thomas




   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






--
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/
 





Re: [flexcoders] [Flex2] FDS as Windows system service?

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

Ahh cool, I didn't see that.
Thanks, Stacy :-)


Stacy Young wrote:
 
 
 You’d have to look to your app server for this …for instance, with jrun 
 you can use the {jrun root}/bin/jrunsvc.exe to create a windows service 
 to startup a particular jrun instance. From the docs:
 
  
 
 
 *Using the jrunsvc tool *
 
 Use the jrunsvc tool to execute command on a JRun server that is a 
 Windows service. With this tool, you can install, remove, start, and 
 stop the JRun server's Windows service.
 
 To install a JRun server as a Windows service, use the following syntax 
 from the jrun_root/bin directory:
 
 % jrunsvc -install jrun_server [service_name [service_display_name 
 [service_description]]]
 
 To remove, start or stop a JRun server that is currently a Windows 
 service, use the following syntax from the jrun_root/bin directory:
 
 % jrunsvc -[remove|start|stop service_name]
 
  
 
  
 
  
 
  
 
 
 
 *From:* flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] 
 *On Behalf Of *Thomas Rühl -akitogo-
 *Sent:* Wednesday, July 05, 2006 5:53 PM
 *To:* flexcoders@yahoogroups.com
 *Subject:* [flexcoders] [Flex2] FDS as Windows system service?
 
  
 
 
 Hello folks,
 
 how can I set up a standalove installation of FDS to run as a Windows
 service? For J2EE (JRun) installations, there exists an entry for each
 of the servers in the Services panel, but I'd like to use the standalone
 version. However, always starting via console goes somewhat on my nerves
 
 Cheers, Thomas
 
 
 
 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] mailto:thomas.ruehl%40akitogo.com
 Web http://www.akitogo.com http://www.akitogo.com
 
 
 
 *AVIS IMPORTANT*
 
   
 
 *WARNING*
 
 Ce message électronique et ses pièces jointes peuvent contenir des 
 renseignements confidentiels, exclusifs ou légalement privilégiés 
 destinés au seul usage du destinataire visé. L'expéditeur original ne 
 renonce à aucun privilège ou à aucun autre droit si le présent message a 
 été transmis involontairement ou s'il est retransmis sans son 
 autorisation. Si vous n'êtes pas le destinataire visé du présent message 
 ou si vous l'avez reçu par erreur, veuillez cesser immédiatement de le 
 lire et le supprimer, ainsi que toutes ses pièces jointes, de votre 
 système. La lecture, la distribution, la copie ou tout autre usage du 
 présent message ou de ses pièces jointes par des personnes autres que le 
 destinataire visé ne sont pas autorisés et pourraient être illégaux. Si 
 vous avez reçu ce courrier électronique par erreur, veuillez en aviser 
 l'expéditeur.
 
   
 
 This electronic message and its attachments may contain confidential, 
 proprietary or legally privileged information, which is solely for the 
 use of the intended recipient. No privilege or other rights are waived 
 by any unintended transmission or unauthorized retransmission of this 
 message. If you are not the intended recipient of this message, or if 
 you have received it in error, you should immediately stop reading this 
 message and delete it and all attachments from your system. The reading, 
 distribution, copying or other use of this message or its attachments by 
 unintended recipients is unauthorized and may be unlawful. If you have 
 received this e-mail in error, please notify the sender.
 
 

-- 



   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






--
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/
 





Re: [flexcoders] No0b: Help installing SDK with Eclipse 3.2

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

However, eclipse 3.2 is not supported by FlexBuilder, yet... you need to 
use version 3.1 or install FlexFuilder standalone alongside with the 
integrated eclipse.

cheers, thomas.



jeremiah johnson wrote:
 
 
 That's just the SDK. To get Eclipse integration you need the Flex
 Builder plugin. Download the Flex Builder trial and install the plugin
 to an existing Eclipse installation.
 
 Sadly, that bit isn't free.
 
 You are, of course, free to write your own Flex to Eclipse integration,
 as far as I know.
 
 jeremiah
 
 Count Schemula wrote:
   Hey, doubt this is the best place to ask, but, everything is in Flex
   right now. :rofl
  
   I have Eclipse 3.2 installed, but, I can't make sense of these install
   directions for the Flex 2 SDK.
  
   These instructions are either missing whole steps for no0bs, or is way
   over my head, or both. I get to step 5. I have a folder with the
   unzipped files. Now what?
  
   Thanks!
 
 

-- 



   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 ~-- 
Check out the new improvements in Yahoo! Groups email.
http://us.click.yahoo.com/6pRQfA/fOaOAA/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/
 




Re: [flexcoders] Re: FlexBuilder - error during help panel usage

2006-06-30 Thread Thomas Rühl -akitogo-

Thanks,
1) is already turned off, I'll try No 2) any time soon...

Cheers, Thomas


  
  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
  




jrunrandy wrote:

 There are a couple of ways out of this:
 1)Open IE, going to ToolsInternet Options  Advanced, and select the
 Disable Script Debugging (Other) checkbox.

 2) Try the fix suggested in
 http://groups.yahoo.com/group/flexcoders/message/41508 
 http://groups.yahoo.com/group/flexcoders/message/41508

 HTH
 Randy Nielsen
 Flex Documentation Manager
 Adobe Systems, Inc.

  


 Yahoo! Groups Sponsor ~-- 
See what's inside the new Yahoo! Groups email.
http://us.click.yahoo.com/2pRQfA/bOaOAA/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/
 




Re: [flexcoders] Making Cairngorm available to all projects

2006-06-30 Thread Thomas Rühl -akitogo-

Hi, just download the cairngorm zip file from the labs site, unextract 
it and import the classes neeted into your project's workspace. the zip 
file contains a complete project structure of cairngorm ready to use.

cheers, thomas


  
  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
  




ben.clinkinbeard wrote:

 Can someone please post more detailed instructions on how to make
 Cairngorm available to all of your Flex projects? The instructions
 provided simply say add the .swc to your classpath and I am not sure
 what that entails exactly. Where is the classpath for Flex 2/AS3 anyways?

 Thanks in advance,
 Ben

  


 Yahoo! Groups Sponsor ~-- 
Check out the new improvements in Yahoo! Groups email.
http://us.click.yahoo.com/6pRQfA/fOaOAA/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/
 





Re: [flexcoders] Re: Flash player is not a debugger?

2006-06-29 Thread Thomas Rühl -akitogo-
Hi, for me this did it...

# Deinstall FlexBuilder
# Download the FlashPlayer-Uninstaller from 
http://www.adobe.com/cfusion/knowledgebase/index.cfm?id=tn_14157 
http://www.adobe.com/cfusion/knowledgebase/index.cfm?id=tn_14157
# …execute it…
# Best to close your browsers befor the deinstallation, otherwise it will 
be done for you
# Reinstall FlexBuilder including the packaged Player (9.0.15)


cheers, thomas.



Jason Hawryluk wrote:

 Ok I give up, someone wanna help us out here? Almost 2 day's working 
 on this stupid problem, and no forward movement what so ever.

 Windows is not allowing me to register the ocx no matter what I have 
 tried it just don't like it. The ocx is FlDbg9.ocx in the 
 C:\WINNT\system32\Macromed\Flash.

 There are no registry keys being entered like in the beta (that worked 
 fine), so there must be some kind of conflict with either security 
 (unlikely). Incompatibility (more likely).

 I'm lost.

 It would certainly help if Adobe could chime in here, and propose an 
 idea or 2 that we could try out. Or suggest something we should look for.

 What are the exact dependencies of the Ocx?

 It's just not registering properly, and I don't get that. Never in all 
 the ocx files I’ve developed have I seen one occurrence of such a problem.

 Jason

 -Message d'origine-
 *De :* flexcoders@yahoogroups.com
 [mailto:[EMAIL PROTECTED] la part de* Jason Hawryluk
 *Envoyé :* jeudi 29 juin 2006 15:26
 *À :* flexcoders@yahoogroups.com
 *Objet :* RE: [flexcoders] Re: Flash player is not a debugger?

 Nope that unfortunatly did not work

 What is different between the new debug player and the beta
 version? The beta sets the keys properly in the registry the new
 final version does not. I can't see it being a security issue on
 my part as the beta worked fine. I don’t see any diff in the cab
 nor the inf files between the 2.

 I even tried uninstalling Norton 2006 and still nothing.

 There is definitely a bug here.
 On diff i see is the advpack.dll in the cab file for th installer
 I'm trying out by hand cutome install right now. Of the debug ocx
 jason

 -Message d'origine-
 *De :* flexcoders@yahoogroups.com
 [mailto:[EMAIL PROTECTED] la part de* Daniel Tuppeny
 *Envoyé :* jeudi 29 juin 2006 15:01
 *À :* flexcoders@yahoogroups.com
 *Objet :* RE: [flexcoders] Re: Flash player is not a debugger?

 Let me know if that works, and if so, I might have to try the
 same! :-(

 
 
 *From:* flexcoders@yahoogroups.com
 [mailto:[EMAIL PROTECTED] *On Behalf Of *Jason Hawryluk
 *Sent:* 29 June 2006 12:48
 *To:* flexcoders@yahoogroups.com
 *Subject:* RE: [flexcoders] Re: Flash player is not a debugger?

 So after installing beta 3 again i have debug for beta 3, and
 the ocx is correctly registered.

 I will now uninstall and reinstall final.

 This is weird

 -Message d'origine-
 *De :* flexcoders@yahoogroups.com
 [mailto:[EMAIL PROTECTED] la part de* Daniel
 Tuppeny
 *Envoyé :* jeudi 29 juin 2006 12:48
 *À :* flexcoders@yahoogroups.com
 *Objet :* RE: [flexcoders] Re: Flash player is not a debugger?

 I've got the same issues. I've got a file at c:\DELETE_ME
 which was originall one of the beta flash plugins, but
 although I can rename it, I can never delete it, even
 after reboots. I suspect XP is being clever and realising
 I'm moving it!
 I've got other stuff to do now, so no Flex for a while,
 but if I can't find a solution soon, it's going to have to
 be a reinstall, and that really annoys me! :-

 
 
 *From:* flexcoders@yahoogroups.com
 [mailto:[EMAIL PROTECTED] *On Behalf Of *Jason
 Hawryluk
 *Sent:* 29 June 2006 11:36
 *To:* flexcoders@yahoogroups.com
 *Subject:* RE: [flexcoders] Re: Flash player is not a
 debugger?

 I'm also still having the same problem 1.5 day's getting
 frustrated here :)

 I did however notice that the debug ocx is not getting
 registered and no matter what I do I can't get it
 registered properly. I had a look on a machine where it
 worked and it has all the necessary registry key's. After
 installing Flex builder final. on my machine (and it seems
 I’m not alone) There is no keys for the
 inproc/guid/classid's etc in the registry. I'm now
 convinced we have entered dll/com Hell.

 I tried copying 

[flexcoders] FlexBuilder refactoring capabilities

2006-06-28 Thread Thomas Rühl -akitogo-

Hello list,

is there a way to intelligent refactor a project? Like moving class 
files around or renaming packages with FlexBuilder maintaining the 
imports and code fragments as it is in Java projects for example?

I mean, this is most likely a common and important task. I can't imagine 
to manually change everything my hand, or do I have to do so?

Thanks,
Thomas


  
  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: 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/
 





Re: [flexcoders] FlexBuilder refactoring capabilities

2006-06-28 Thread Thomas Rühl -akitogo-

Great, thanks for your opinions. Good to be not the only one who's 
missing something there.

And for the germans:
Da hab' ich ja schon wieder was zum drauf freuen ;)

Cheers,
Thomas


Dirk Eismann wrote:
 
 
 Not yet. But that's the good thing about Flex Builder 2 being based on 
 Eclipse: we can expect *lots* of neat additions/plugins/fragments for 
 FB2 in the near future :)
 
 Dirk.
 
   -Original Message-
   From: flexcoders@yahoogroups.com mailto:flexcoders%40yahoogroups.com
   [mailto:flexcoders@yahoogroups.com 
 mailto:flexcoders%40yahoogroups.com] On Behalf Of Thomas Rühl -akitogo-
   Sent: Wednesday, June 28, 2006 5:24 PM
   To: flexcoders@yahoogroups.com mailto:flexcoders%40yahoogroups.com
   Subject: [flexcoders] FlexBuilder refactoring capabilities
  
  
   Hello list,
  
   is there a way to intelligent refactor a project? Like moving
   class files around or renaming packages with FlexBuilder
   maintaining the imports and code fragments as it is in Java
   projects for example?
  
   I mean, this is most likely a common and important task. I
   can't imagine to manually change everything my hand, or do I
   have to do so?
  
   Thanks,
   Thomas
  
   
  
   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] mailto:thomas.ruehl%40akitogo.com
   Web http://www.akitogo.com 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 
 http://us.click.yahoo.com/TISQkA/hOaOAA/yQLSAA/nhFolB/TM
   --
   --~-
  
   --
   Flexcoders Mailing List
   FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt 
 http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
   Search Archives:
   http://www.mail-archive.com/flexcoders%40yahoogroups.com 
 http://www.mail-archive.com/flexcoders%40yahoogroups.com
   Yahoo! Groups Links
  
  
  
  
  
  
  
  
 
 

-- 



   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 ~-- 
Something is new at Yahoo! Groups.  Check out the enhanced email design.
http://us.click.yahoo.com/SISQkA/gOaOAA/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/
 




Re: [flexcoders] Re: [Flex2Beta3] CF/Flex integration - 500 NULL

2006-06-22 Thread Thomas Rühl -akitogo-

Now, since this is not the first time I did something that requires the 
application server(s) to restart, I'm very well used to that process and 
I did exactly so - including to kill the processes if they were still 
running.

The odd thing was, however, the other start-gateway-buttons link to the 
same template (../gateways.cfm) and they worked, for example the 
directory watcher.

Strange enough, after a complete reboot of the system, also the 
FlexMessaging gateway finally works.

Thanks and greetings, Thomas


  
  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
  




Tom Chiverton wrote:
 On Wednesday 21 June 2006 12:43, Thomas Rühl -akitogo- wrote:
 This was in the cf exception log:
 Error,web-8,06/20/06,17:54:20,cfadmin, The specific sequence
 of files included or processed is:
 C:\CFusionMX7\wwwroot\CFIDE\administrator\eventgateway\gateways.cfm,
 line: 253 
 java.lang.NoClassDefFoundError

 This would be because some file is not in the right place or with the right 
 permissions.
 Stop CF and web server, and make sure all their process' are really gone, and 
 try installing again ?



 Yahoo! Groups Sponsor ~-- 
See what's inside the new Yahoo! Groups email.
http://us.click.yahoo.com/2pRQfA/bOaOAA/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/
 




Re: [flexcoders] Re: [Flex2Beta3] CF/Flex integration - 500 NULL

2006-06-22 Thread Thomas Rühl -akitogo-

yeeha, yay thomas'es ;)

thanks for your interest!



  
  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
  




Tom Chiverton wrote:
 On Thursday 22 June 2006 10:19, Thomas Rühl -akitogo- wrote:
 Strange enough, after a complete reboot of the system, also the
 FlexMessaging gateway finally works.

 Ahh well.
 Two Thomas' are better than one :-)



 Yahoo! Groups Sponsor ~-- 
Something is new at Yahoo! Groups.  Check out the enhanced email design.
http://us.click.yahoo.com/SISQkA/gOaOAA/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/
 





Re: [flexcoders] Re: [Flex2Beta3] CF/Flex integration - 500 NULL

2006-06-21 Thread Thomas Rühl -akitogo-

Hi Bill,
yes, in fact I am trying to get the SessionTracker sample running.

For some reason what-so-ever, it works as I'm typing this - I'm 
confused. Is it nesseccary to restart the whole system after the CF/Flex 
connectivity update? Didn't read that anywhere...

However, here is what I did, maybe it is helpful somehow:

* installed CF and FDS Beta3 as self-contained servers from scratch and
   into its every default directory
* installed the CF/Flex connectivity update - the CF version number
   after that however is 7,0,2,137072 + ColdFusion/Flex Connectivity
   Beta 3, not as it is written in the release notes
* the JRE version as shown in the cfide is 1.4.2_09
* configured the Flex Messaging Eventgateway and Data Services adapter
   as described in the release notes Part 1 on the labs site
* stopped and restarted both, first FDS then CF
* unzipped the SessionTracker example files into the designated
   directories of FDS and CF
* the sessionTracker main.mxml shows both at the bottom,
   Connected=true and Subscribed=true
* tried to set up an instance of FlexMassaging Event Gateway in the
   cfide as described in the docs shipped in the SessionTracker zip file
* then the Flex2CF gateway failed to start up - just a blank page with
   500 null on it. however, the other gateway types went well
* but now it works and possibly I can continue ;)


Greetings, Thomas




   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




Bill Sahlas wrote:
 
 
 Are you attempting the Sample app called SessionTracker?  Can you give 
 me more details?  
 
  
 
   
 
 **Bill Sahlas**
 ColdFusion QA
 Adobe Systems Inc.
 275 Grove Street
 
 Newton MA 02246
 p: 617.219.2167
 
 [EMAIL PROTECTED] mailto:[EMAIL PROTECTED]
 
  
 
  
 
  
 
 


 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/
 




Re: [flexcoders] Re: [Flex2Beta3] CF/Flex integration - 500 NULL

2006-06-21 Thread Thomas Rühl -akitogo-
Hi,

the link out of the cfide was and is...
http://127.0.0.1:8500/cfide/administrator/eventgateway/gateways.cfm?gwid=Flex2CFaction=start

so this addresses the same cfm as the start/stop buttons for the other
gateway instances, nothing inappropriate.

This was in the cf exception log:
Error,web-8,06/20/06,17:54:20,cfadmin, The specific sequence
of files included or processed is:
C:\CFusionMX7\wwwroot\CFIDE\administrator\eventgateway\gateways.cfm,
line: 253 
java.lang.NoClassDefFoundError
at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
at
sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:39)
at
sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:27)
at java.lang.reflect.Constructor.newInstance(Constructor.java:274)
at
coldfusion.eventgateway.EventServiceImpl.allocateEventGateway(EventServiceImpl.java:1058)
at
coldfusion.eventgateway.EventServiceImpl.startEventGateway(EventServiceImpl.java:404)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at
sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
at
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
at java.lang.reflect.Method.invoke(Method.java:324)
at coldfusion.runtime.StructBean.invoke(StructBean.java:391)
at coldfusion.runtime.CfJspPage._invoke(CfJspPage.java:1662)
at
cfgateways2ecfm1709667157._factor5(C:\blackstone_updates\cfusion\wwwroot\CFIDE\administrator\eventgateway\gateways.cfm:253)
at
cfgateways2ecfm1709667157._factor20(C:\blackstone_updates\cfusion\wwwroot\CFIDE\administrator\eventgateway\gateways.cfm:243)
at
cfgateways2ecfm1709667157.runPage(C:\blackstone_updates\cfusion\wwwroot\CFIDE\administrator\eventgateway\gateways.cfm:1)
at coldfusion.runtime.CfJspPage.invoke(CfJspPage.java:152)
at coldfusion.tagext.lang.IncludeTag.doStartTag(IncludeTag.java:349)
at coldfusion.filter.CfincludeFilter.invoke(CfincludeFilter.java:65)
at 
coldfusion.filter.ApplicationFilter.invoke(ApplicationFilter.java:225)
at
coldfusion.filter.RequestMonitorFilter.invoke(RequestMonitorFilter.java:51)
at coldfusion.filter.PathFilter.invoke(PathFilter.java:86)
at coldfusion.filter.LicenseFilter.invoke(LicenseFilter.java:27)
at coldfusion.filter.ExceptionFilter.invoke(ExceptionFilter.java:69)
at 
coldfusion.filter.BrowserDebugFilter.invoke(BrowserDebugFilter.java:52)
at
coldfusion.filter.ClientScopePersistenceFilter.invoke(ClientScopePersistenceFilter.java:28)
at coldfusion.filter.BrowserFilter.invoke(BrowserFilter.java:38)
at coldfusion.filter.GlobalsFilter.invoke(GlobalsFilter.java:38)
at coldfusion.filter.DatasourceFilter.invoke(DatasourceFilter.java:22)
at
coldfusion.filter.RequestThrottleFilter.invoke(RequestThrottleFilter.java:115)
at coldfusion.CfmServlet.service(CfmServlet.java:107)
at 
coldfusion.bootstrap.BootstrapServlet.service(BootstrapServlet.java:78)
at jrun.servlet.ServletInvoker.invoke(ServletInvoker.java:91)
at jrun.servlet.JRunInvokerChain.invokeNext(JRunInvokerChain.java:42)
at
jrun.servlet.JRunRequestDispatcher.invoke(JRunRequestDispatcher.java:257)
at
jrun.servlet.ServletEngineService.dispatch(ServletEngineService.java:541)
at jrun.servlet.http.WebService.invokeRunnable(WebService.java:172)
at
jrunx.scheduler.ThreadPool$DownstreamMetrics.invokeRunnable(ThreadPool.java:318)
at
jrunx.scheduler.ThreadPool$ThreadThrottle.invokeRunnable(ThreadPool.java:426)
at
jrunx.scheduler.ThreadPool$UpstreamMetrics.invokeRunnable(ThreadPool.java:264)
at jrunx.scheduler.WorkerThread.run(WorkerThread.java:66)


...and that in the application log:
Error,web-8,06/20/06,17:54:20,cfadmin, The specific sequence
of files included or processed is:
C:\CFusionMX7\wwwroot\CFIDE\administrator\eventgateway\gateways.cfm,
line: 253 


I couldn't find anything in the Flex logs regarding that error or the
timestamps.

Greetings, Thomas




   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




Tom Chiverton wrote:
 On Wednesday 21 June 2006 10:40, Thomas Rühl -akitogo- wrote:
 * then the Flex2CF gateway failed to start up - just a blank page with
500 null on it. however, the other gateway types went well
 
 What was this URL ?
 What is in the CF and FDS logs ?
 





 Yahoo! Groups Sponsor ~-- 
See what's inside the new Yahoo! Groups email.
http

[flexcoders] [Flex2Beta3] CF/Flex integration - 500 NULL

2006-06-20 Thread Thomas Rühl -akitogo-

Hello list,

I just tried to set up the FlexMessaging gateway instance in the 
Coldfusion administrator. Everything fine during the setup, but when I 
try to start up the instance, it returns a blank page with 500 null on 
it. Any idea what to do?

I already checked the jre version, but that matches the prerequisites...


Thanks and greetings,
Thomas





 Yahoo! Groups Sponsor ~-- 
Something is new at Yahoo! Groups.  Check out the enhanced email design.
http://us.click.yahoo.com/SISQkA/gOaOAA/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/
 





[flexcoders] Flex2Beta3: CF/FDS/FMS setup

2006-06-14 Thread Thomas Rühl -akitogo-

Hi all,

I'm in the process of planning a customer support application. Customers 
will be abel to reach an internal worker by using a Flex application. 
The worker sees a list of incoming requests and selects one he wants to 
answer. The conversation should be possible using chat, audio and video 
options.

For that, I need to setup Coldfusion with FDS and FMS (FlashMediaServer) 
integration. Question is how?

CF and Flex on a single server instance? I'd like to use JRun as the 
application server.

And for ausio/video streaming... Do I really need the FMS part? Or is 
that possible just with FDS?

Greetings, Thomas




 Yahoo! Groups Sponsor ~-- 
Protect your PC from spy ware with award winning anti spy technology. It's free.
http://us.click.yahoo.com/97bhrC/LGxNAA/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/
 





Re: [flexcoders] Jrun with update 6

2006-05-16 Thread Thomas Rühl -akitogo-




What is the issue you're having?

Greetings, Thomas



Devis wrote:
 Can you help to configure Jrun 4 updater 6 with Flex data Service beta 3 
 pls.
 Thank's devis
 
 
 
 --
 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 
 http://groups.yahoo.com/gads?t=msk=Web+site+design+developmentw1=Web+site+design+developmentw2=Computer+software+developmentw3=Software+design+and+developmentw4=Macromedia+flexw5=Software+development+best+practicec=5s=166.sig=L-4QTvxB_quFDtMyhrQaHQ 
  Computer software development 
 http://groups.yahoo.com/gads?t=msk=Computer+software+developmentw1=Web+site+design+developmentw2=Computer+software+developmentw3=Software+design+and+developmentw4=Macromedia+flexw5=Software+development+best+practicec=5s=166.sig=lvQjSRfQDfWudJSe1lLjHw 
  Software design and development 
 http://groups.yahoo.com/gads?t=msk=Software+design+and+developmentw1=Web+site+design+developmentw2=Computer+software+developmentw3=Software+design+and+developmentw4=Macromedia+flexw5=Software+development+best+practicec=5s=166.sig=1pMBCdo3DsJbuU9AEmO1oQ 
 
 Macromedia flex 
 http://groups.yahoo.com/gads?t=msk=Macromedia+flexw1=Web+site+design+developmentw2=Computer+software+developmentw3=Software+design+and+developmentw4=Macromedia+flexw5=Software+development+best+practicec=5s=166.sig=OO6nPIrz7_EpZI36cYzBjw 
  Software development best practice 
 http://groups.yahoo.com/gads?t=msk=Software+development+best+practicew1=Web+site+design+developmentw2=Computer+software+developmentw3=Software+design+and+developmentw4=Macromedia+flexw5=Software+development+best+practicec=5s=166.sig=f89quyyulIDsnABLD6IXIw 
 
 
 
 
 YAHOO! GROUPS LINKS
 
 * Visit your group flexcoders
 http://groups.yahoo.com/group/flexcoders on the web.
 
 * To unsubscribe from this group, send an email to:
 [EMAIL PROTECTED]
 mailto:[EMAIL PROTECTED]
 
 * Your use of Yahoo! Groups is subject to the Yahoo! Terms of
 Service http://docs.yahoo.com/info/terms/. 
 
 
 
 









--
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
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



  Visit your group "flexcoders" on the web.
  To unsubscribe from this group, send an email to:[EMAIL PROTECTED]
  Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  












[flexcoders] Flex2 Beta3: Refactoring capabilities of FlexBuilder

2006-05-11 Thread Thomas Rühl -akitogo-




Okay, the Beta3 looks nice in my eyes so far, but one question came to 
my mind again...

What about any refactoring capabilities? For example, when I move an AS 
file to a new location, I have to manually change all the references at 
the moment, or how is it supposed to be done?

Greetings, Thomas




 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










--
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
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



  Visit your group "flexcoders" on the web.
  To unsubscribe from this group, send an email to:[EMAIL PROTECTED]
  Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  












[flexcoders] Flex2 Beta3: I just don't get it to work...

2006-05-10 Thread Thomas Rühl -akitogo-




Sorry, it's me again and I'm already stuck reading the documentation on 
the Labs site over an over again...

For »Task 4«, it says...
»»
 1. Start the ColdFusion/Flex Connectivity Beta 3 installation program
 and follow the instructions in the wizard.
 2. On the Configure Installation page, select the EAR/WAR file option.
««
- taken from -
http://labs.adobe.com/wiki/index.php/ColdFusion/Flex_Connectivity:Release_Notes_pt2#Installing_ColdFusion.2FFlex_Connectivity_Beta_3_J2EE_configuration


Have I lost vision, or is there not such an option during the Mystic 
installer? The filename of my installer package is - btw - 
'cf_flexconnect_B3_win_0428.exe'.

My configuration should finally look somehow like this:
* JRun as the application server (works using jre 1.4.2_11)
* Coldfusion for backend access (works)
* FDS for using the push-subscribe capabilities (works in sole install)

I don't get the Mystic thing up and running...

Thomas








--
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
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



  Visit your group "flexcoders" on the web.
  To unsubscribe from this group, send an email to:[EMAIL PROTECTED]
  Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  











Re: [flexcoders] Beta3 Tree Easy Question

2006-05-10 Thread Thomas Rühl -akitogo-




Hi Tim,

do you use the standalone FlexBuilder App?

When you're using Eclipse, just put the extracted jar's from the archive 
into eclipse's plugin-folder - no matter where you installed that 
before. The wizards should appear around somewhere then.

Greetings, Thomas



sufibaba wrote:
 Hello Everyone,
 
 I'm trying to find out if there is a way for new Tree Control to fire
 an event when it is finished loading all of its data.
 
 P.S. I have another bit of code that needs to run once after the tree
 finishes loading all of its data.
 
 Help on this is Greatly Apreciated.
 
 Cheers,
 
 Tim
 
 
 
 
 
 --
 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
 
 * Visit your group flexcoders
 http://groups.yahoo.com/group/flexcoders on the web.
 
 * To unsubscribe from this group, send an email to:
 [EMAIL PROTECTED]
 mailto:[EMAIL PROTECTED]
 
 * Your use of Yahoo! Groups is subject to the Yahoo! Terms of
 Service http://docs.yahoo.com/info/terms/. 
 
 
 
 

-- 



 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










--
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
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



  Visit your group "flexcoders" on the web.
  To unsubscribe from this group, send an email to:[EMAIL PROTECTED]
  Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  












[flexcoders] Flex2 Beta3 - Coldfusion Connectivity/Mystic

2006-05-09 Thread Thomas Rühl -akitogo-




Any news about Flex/Coldfusion connectivity (Mystic) now working with 
multiserver configurations? I'll try myself, otherwise :)

greetings,
thomas

 






--
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
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



  Visit your group "flexcoders" on the web.
  To unsubscribe from this group, send an email to:[EMAIL PROTECTED]
  Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  












Re: [flexcoders] Beta 3: All roads lead to Beta 2?

2006-05-09 Thread Thomas Rühl -akitogo-




no, actually it's *05-08* for all of the files
i just downloaded it and they look that way.
maybe try to clean up your browser's cache.

thomas



Sreejith Unnikrishnan wrote:
 Is this how it is?
 
 * Charting2-win_B3_*05-08*.exe
 * FDS2-win_B2_Install_*03-16*.exe
 * FlexBuilder2_B2_*03-16*.exe
 * Player_B2_Uninstaller_*03-20*.exe
 * Player8.5_B2_AX_*03-20*.exe
 * Player8.5_B2_PI_*03-20*.exe
 
 All the files except the charting exe refers to a 16 and 20th March ...!
 
 
 
 - Original Message -
 *From:* Manish Jethani mailto:[EMAIL PROTECTED]
 *To:* flexcoders@yahoogroups.com mailto:flexcoders@yahoogroups.com
 *Sent:* Tuesday, May 09, 2006 4:06 PM
 *Subject:* Re: [flexcoders] Beta 3: All roads lead to Beta 2?
 
 On 5/9/06, greenfishinwater [EMAIL PROTECTED]
 mailto:[EMAIL PROTECTED] wrote:
  I just tried to download Beta 3 of Flex and all the download pages
  refer to beta 2, I even downloaded the flex builder windows exe, and
  it is exactly the same size as beta 2.
 
 I just downloaded Beta 3 and it's working fine.
 
 
 --
 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
 http://groups.yahoo.com/gads?t=msk=Web+site+design+developmentw1=Web+site+design+developmentw2=Computer+software+developmentw3=Software+design+and+developmentw4=Macromedia+flexw5=Software+development+best+practicec=5s=166.sig=L-4QTvxB_quFDtMyhrQaHQ
  Computer software development
 http://groups.yahoo.com/gads?t=msk=Computer+software+developmentw1=Web+site+design+developmentw2=Computer+software+developmentw3=Software+design+and+developmentw4=Macromedia+flexw5=Software+development+best+practicec=5s=166.sig=lvQjSRfQDfWudJSe1lLjHw
  Software design and development
 http://groups.yahoo.com/gads?t=msk=Software+design+and+developmentw1=Web+site+design+developmentw2=Computer+software+developmentw3=Software+design+and+developmentw4=Macromedia+flexw5=Software+development+best+practicec=5s=166.sig=1pMBCdo3DsJbuU9AEmO1oQ
 
 Macromedia flex
 http://groups.yahoo.com/gads?t=msk=Macromedia+flexw1=Web+site+design+developmentw2=Computer+software+developmentw3=Software+design+and+developmentw4=Macromedia+flexw5=Software+development+best+practicec=5s=166.sig=OO6nPIrz7_EpZI36cYzBjw
  Software development best practice
 http://groups.yahoo.com/gads?t=msk=Software+development+best+practicew1=Web+site+design+developmentw2=Computer+software+developmentw3=Software+design+and+developmentw4=Macromedia+flexw5=Software+development+best+practicec=5s=166.sig=f89quyyulIDsnABLD6IXIw
 
 
 
 
 YAHOO! GROUPS LINKS
 
 * Visit your group flexcoders
 http://groups.yahoo.com/group/flexcoders on the web.
 
 * To unsubscribe from this group, send an email to:
 [EMAIL PROTECTED]
 mailto:[EMAIL PROTECTED]
 
 * Your use of Yahoo! Groups is subject to the Yahoo! Terms of
 Service http://docs.yahoo.com/info/terms/. 
 
 
 
 






--
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
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



  Visit your group "flexcoders" on the web.
  To unsubscribe from this group, send an email to:[EMAIL PROTECTED]
  Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  












[flexcoders] Flex2 Beta3: Mystic installation

2006-05-09 Thread Thomas Rühl -akitogo-




so, here i am, trying to install mystic on my multiserver configuration 
and guess what? it doesn't work.

setup as follows:
* winxp sp2
* jrun4 updater 6 with jre 1.4.2_11 in c:\JRun
* flex-stuff deployed in a servier instance 'flex'
* cf deployed in a server instance 'cfusion'
* all the server instances were stoppen during the mystic installation 
attempt

i ran the mystic b3 installer, the error message is like it was for 
beta2 '...not a valid jrun server root'. of course, i uninstalled 
everything before and even performed a reboot, which shouldn't have been 
neccessary...

any ideas, pls?

greetings, thomas







--
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
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



  Visit your group "flexcoders" on the web.
  To unsubscribe from this group, send an email to:[EMAIL PROTECTED]
  Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  












Re: [flexcoders] Flex2 Beta3: Mystic installation

2006-05-09 Thread Thomas Rühl -akitogo-




sorry, but I'm not participating in the beta programme, yet - just 
signed myself up there... so far, I downloaded all the stuff from the 
labs site.

can you possibly quicken my signup there ;) or just tell me another 
ressource where I can find more information regarding installation issues?

greetings, thomas


Bill Sahlas wrote:
 Please review the release notes for J2EE installs @ 
 http://mmbeta.macromedia.com/downloader.cfm?r=4463#j2ee
 
 
 
 
 
 
 
 *From:* flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] 
 *On Behalf Of *Thomas Rühl -akitogo-
 *Sent:* Tuesday, May 09, 2006 10:17 AM
 *To:* flexcoders@yahoogroups.com
 *Subject:* [flexcoders] Flex2 Beta3: Mystic installation
 
 
 
 
 so, here i am, trying to install mystic on my multiserver configuration
 and guess what? it doesn't work.
 
 setup as follows:
 * winxp sp2
 * jrun4 updater 6 with jre 1.4.2_11 in c:\JRun
 * flex-stuff deployed in a servier instance 'flex'
 * cf deployed in a server instance 'cfusion'
 * all the server instances were stoppen during the mystic installation
 attempt
 
 i ran the mystic b3 installer, the error message is like it was for
 beta2 '...not a valid jrun server root'. of course, i uninstalled
 everything before and even performed a reboot, which shouldn't have been
 neccessary...
 
 any ideas, pls?
 
 greetings, thomas
 
 
 
 
 --
 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 
 http://groups.yahoo.com/gads?t=msk=Web+site+design+developmentw1=Web+site+design+developmentw2=Computer+software+developmentw3=Software+design+and+developmentw4=Macromedia+flexw5=Software+development+best+practicec=5s=166.sig=L-4QTvxB_quFDtMyhrQaHQ 
  Computer software development 
 http://groups.yahoo.com/gads?t=msk=Computer+software+developmentw1=Web+site+design+developmentw2=Computer+software+developmentw3=Software+design+and+developmentw4=Macromedia+flexw5=Software+development+best+practicec=5s=166.sig=lvQjSRfQDfWudJSe1lLjHw 
  Software design and development 
 http://groups.yahoo.com/gads?t=msk=Software+design+and+developmentw1=Web+site+design+developmentw2=Computer+software+developmentw3=Software+design+and+developmentw4=Macromedia+flexw5=Software+development+best+practicec=5s=166.sig=1pMBCdo3DsJbuU9AEmO1oQ 
 
 Macromedia flex 
 http://groups.yahoo.com/gads?t=msk=Macromedia+flexw1=Web+site+design+developmentw2=Computer+software+developmentw3=Software+design+and+developmentw4=Macromedia+flexw5=Software+development+best+practicec=5s=166.sig=OO6nPIrz7_EpZI36cYzBjw 
  Software development best practice 
 http://groups.yahoo.com/gads?t=msk=Software+development+best+practicew1=Web+site+design+developmentw2=Computer+software+developmentw3=Software+design+and+developmentw4=Macromedia+flexw5=Software+development+best+practicec=5s=166.sig=f89quyyulIDsnABLD6IXIw 
 
 
 
 
 YAHOO! GROUPS LINKS
 
 * Visit your group flexcoders
 http://groups.yahoo.com/group/flexcoders on the web.
 
 * To unsubscribe from this group, send an email to:
 [EMAIL PROTECTED]
 mailto:[EMAIL PROTECTED]
 
 * Your use of Yahoo! Groups is subject to the Yahoo! Terms of
 Service http://docs.yahoo.com/info/terms/. 
 
 
 
 






--
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
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



  Visit your group "flexcoders" on the web.
  To unsubscribe from this group, send an email to:[EMAIL PROTECTED]
  Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  












Re: [flexcoders] FDS2 on JBoss 4.03sp1 flex.messaging.MessageException:jms not bound

2006-04-28 Thread Thomas Rühl -akitogo-




Chris,

I came across a problem regarding the flex.messaging stuff myself, but I 
was trying to get it to work with the JRun4 application server and not 
JBoss. The trouble I had was caused by an incompatible version of the JRE.

If you're interested in the whole story, you can find it on my blog 
http://www.amenity.de in the Flex category.

Greetings, Thomas



christophers1228 wrote:
 I'm starting to mess with fds2, I deployed the sample.war file to
 jboss, most of the samples work but the chat app throws a
 flex.messaging.MessageException:jms not bound exception when sending a
 message. I'm somewhat new to jboss and it's probably somethingthing
 simple I'm missing but does anyone have any pointers?
 
 
 
 
 
 
 
 
 
 --
 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 
 http://groups.yahoo.com/gads?t=msk=Web+site+design+developmentw1=Web+site+design+developmentw2=Computer+software+developmentw3=Software+design+and+developmentw4=Macromedia+flexw5=Software+development+best+practicec=5s=166.sig=L-4QTvxB_quFDtMyhrQaHQ 
  Computer software development 
 http://groups.yahoo.com/gads?t=msk=Computer+software+developmentw1=Web+site+design+developmentw2=Computer+software+developmentw3=Software+design+and+developmentw4=Macromedia+flexw5=Software+development+best+practicec=5s=166.sig=lvQjSRfQDfWudJSe1lLjHw 
  Software design and development 
 http://groups.yahoo.com/gads?t=msk=Software+design+and+developmentw1=Web+site+design+developmentw2=Computer+software+developmentw3=Software+design+and+developmentw4=Macromedia+flexw5=Software+development+best+practicec=5s=166.sig=1pMBCdo3DsJbuU9AEmO1oQ 
 
 Macromedia flex 
 http://groups.yahoo.com/gads?t=msk=Macromedia+flexw1=Web+site+design+developmentw2=Computer+software+developmentw3=Software+design+and+developmentw4=Macromedia+flexw5=Software+development+best+practicec=5s=166.sig=OO6nPIrz7_EpZI36cYzBjw 
  Software development best practice 
 http://groups.yahoo.com/gads?t=msk=Software+development+best+practicew1=Web+site+design+developmentw2=Computer+software+developmentw3=Software+design+and+developmentw4=Macromedia+flexw5=Software+development+best+practicec=5s=166.sig=f89quyyulIDsnABLD6IXIw 
 
 
 
 
 YAHOO! GROUPS LINKS
 
 * Visit your group flexcoders
 http://groups.yahoo.com/group/flexcoders on the web.
 
 * To unsubscribe from this group, send an email to:
 [EMAIL PROTECTED]
 mailto:[EMAIL PROTECTED]
 
 * Your use of Yahoo! Groups is subject to the Yahoo! Terms of
 Service http://docs.yahoo.com/info/terms/. 
 
 
 
 






--
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
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



  Visit your group "flexcoders" on the web.
  To unsubscribe from this group, send an email to:[EMAIL PROTECTED]
  Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  











[flexcoders] [Flex2 Beta2] setting up flex/coldfusion connectivity on j2ee multiserver installations

2006-04-25 Thread Thomas Rühl -akitogo-




hi flexcoders,

is there any possibility to get the flex/coldfusion connectivity up and 
running already with the beta2 versions available from labs?

i read in some forums and ben's blog, that this will only be supported 
in the final version (or possibly later betas)... for that, the 
installer fails saying 'invalid JRun root directory' at the moment, no 
matter what directory i point it to.

now, since i spent the last week and a half concepting and configuring 
everything so far, it just would be extrmely nice not having to 
start all over again.

greetings,
thomas








--
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



  Visit your group "flexcoders" on the web.
  To unsubscribe from this group, send an email to:[EMAIL PROTECTED]
  Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  












Re: [flexcoders] Flex 2 Instalation And Development Guide

2006-04-21 Thread Thomas Rühl -akitogo-

Hi Bora,

I came around some installation issues as well in the last couple of 
days. For me, the folliwing works:

1.  Install a Java Runtime Environment (JRE) -
 anything above(!) version 1.4.2_05 should be okay.
2.  Install JRun4 or another J2EE server
2b. Make sure, the application server uses the correct
 installation of the jre you installed beofre!
3.  Create two server instances on the application server -
 one for Coldfusion, one for Flex - and assign ports and stuff...

--  Coldfusion installation

4.  Execute the Coldfusion installation package. Select 'Deploy as
 Enteprise Application', for that, it generates a cfusion.ear file
 in the destination directory.
5.  Deploy the file on the COLDFUSION server instance using
 the corresponding method of your application server.
6.  Restart the server instance and try if the sample files work!

--  Flex installation

7.  Execute the Flex Data Services install package and also select
 to create J2EE application files, not the standalone version!
8.  Deploy the three generated files on the FLEX server instance
 using the corresponding method of your application server again.
9.  Restart the server instance and try if the sample files work!

Notes:
- To access cf via flex, it should be neccessary to install the Flex 
Coldfusion Bridge-files...


Hope, that helps!
Greetings, Thomas



Bora Ünal wrote:
 Hi All,
  
 I'm new to this list. I tried Flex 1.0. In Flex 1.0 we needed some Java 
 Server to deploy Flex Server. But In Flex 2.0 I could not figure out 
 what to install to run Flex server. Actually I want to use Flex with 
 ColdFusion 7. What components should I install? Are there any tutorials 
 about CF  Flex?
  
 Best Regards
  
 Bora Unal
 
 
 --
 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
 
 *  Visit your group flexcoders
   http://groups.yahoo.com/group/flexcoders on the web.

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

 *  Your use of Yahoo! Groups is subject to the Yahoo! Terms of
   Service http://docs.yahoo.com/info/terms/. 
 
 
 
 

-- 



   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






--
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/
 




Re: [flexcoders] FDS - Problem configurating message destinations

2006-04-20 Thread Thomas Rühl -akitogo-




Thanks for the input, but that really wasn't the problem. In the 
meantime I figured out myself...

When I finally found the logfiles and detected that there was one called 
flex-errors.log, I looked into it and saw what? Right, what I didn't 
expect to see and was noted down nowhere on the way:
The Flex Data Services couldn't instanciate its MessageBroker servlet 
due to an unappropriate (»old«) version of the JRE. The version required 
for the Data Services is 1.4.2_06, the version installed with JRun4 is 
1.4.2_05 even after JRun4 Updater 6, which is the current one.

The reason for that was, with the failt after all at my side, that I 
used the JRun4 installation that ships with Coldfusion installer 
package, deployed Flex on an extra server instance on that and trusted 
in the all-in-one package.

To fix the roblem, I downloaded the latest JRE 1.4.2_11 (1.5 doesn't 
work with JRun4) extracted all the stuff and overwrote the jre folder of 
the JRun installation with the newer version. Since then it works 
without any bugs, as far as I tested it.

The final solution now, is to download everything seperately, the JRE 
1.4.2_06+ from Sun, then JRun4 from Adobe and finally to deploy the Flex 
application on that installation. I'm just re-doing it that way, while I 
write this...

Greetings, Thomas



Nirav Mehta wrote:
 Hi,
 
 This may not be relevant, but it's something we struggled with FDS so I
 will share.
 
 We had CF running on the machine, setup FDS and the built in JRun
 server. Made all the changes to the .xml files.
 
 The java-dao examples worked well, but when we moved to CF, it started
 giving weird problems.
 
 Specifically:
 
 'Error invoking fill method flex.data.adapters.javaadapter$fillmethod
 exception is : java.socket exception: software cause connection abort:
 socket write error'
 
 And this was because of some unmarshaling exception.
 
 We went beating around the bush for four days.
 
 Then figured that the problem was because we installed FDS in
 C:\Program Files\Adobe\Flex Data Service folder, instead of the
 default c:\fds2. Looks like it could not handle the spaces in the path.
 
 When we moved the installation to the default folder, it started working.
 
 :)
 
 :Nirav
 
 
 --
 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
 
 * Visit your group flexcoders
 http://groups.yahoo.com/group/flexcoders on the web.
 
 * To unsubscribe from this group, send an email to:
 [EMAIL PROTECTED]
 mailto:[EMAIL PROTECTED]
 
 * Your use of Yahoo! Groups is subject to the Yahoo! Terms of
 Service http://docs.yahoo.com/info/terms/. 
 
 
 
 






--
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
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



  Visit your group "flexcoders" on the web.
  To unsubscribe from this group, send an email to:[EMAIL PROTECTED]
  Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  











[flexcoders] FDS - Problem configurating message destinations

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

hi folks,

i just started playing around with the flex data services a little and 
tried out the sample chat application that aou can find on the labs site 
- it is called 'Simple Chat Application'. However, I quickly ran into a 
problem regading the configuration of dewstinations and channels in the 
xx-services.xml file. It just didn't seem to work, the runtime compiler 
always tole ma, that the destination does not exist, in fact it did and 
yes, it was the right configuration file

So, alone with my pain, I decided to work it all over again, deinstalled 
all the stuff and started again from scratch. This time I choose to 
install the FDS as a JRun server instance, since I'm running a 
coldfusion j2ee-instance on the same machine. Now I don't get the 
compile error anymore, and the application shows me, how the message 
format ist, it is about to send. However, the message doesn't arrive on 
a second instance of the same application.

One more disturbing thing... what do I need the flex-admin package for? 
It doesn't seem to be able to configure anything, does it? Is it for 
monitoring only? Couldn't find any documentation on that, unfortunately. 
However, since the ladder installation, the flash-UI of flex-admin 
doesn't show any data. in the installation before, it did at least...

Help, anyone?


greetings, thomas





--
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/