[flexcoders] Flex Modules and chaching

2009-06-23 Thread Ben Densmore
I have broken my application up to use multiple modules, with each module 
having it's own set of remoting calls.

For some reason when I go to deploy to my production server and swap out the 
services-config.xml and do a re-build of the Flex project the modules still try 
to access the Flex Gateway from my local machine.

I've deleted all the .swf files and do a new build but it seems as though the 
modules hold on to the old settings.

Is there a way when you build your project in Flex Builder to force it to grab 
the newest settings?

Thanks,
Ben


[flexcoders] [Flex Modules]

2009-05-13 Thread thelordsince1984
Hi,

A problem

i have a Flex Application that runs in Flas Player..This application is able to 
run modules downloaded from other servers? is the same scenario valid for air 
applications?

Thanks a lot
Best Regards
 



RE: [flexcoders] [Flex Modules]

2009-05-13 Thread Gregor Kiddie
The scenario in AIR isn't quite the same due to the restriction on
running remote executable code, but there is a solution of sorts.

Check out Ethan Malasky's blog for more details.

http://weblogs.macromedia.com/emalasky/

 

Gk.

Gregor Kiddie
Senior Developer
INPS

Tel:   01382 564343

Registered address: The Bread Factory, 1a Broughton Street, London SW8
3QJ

Registered Number: 1788577

Registered in the UK

Visit our Internet Web site at www.inps.co.uk
blocked::http://www.inps.co.uk/ 

The information in this internet email is confidential and is intended
solely for the addressee. Access, copying or re-use of information in it
by anyone else is not authorised. Any views or opinions presented are
solely those of the author and do not necessarily represent those of
INPS or any of its affiliates. If you are not the intended recipient
please contact is.helpd...@inps.co.uk



From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On
Behalf Of thelordsince1984
Sent: 13 May 2009 11:06
To: flexcoders@yahoogroups.com
Subject: [flexcoders] [Flex Modules]

 






Hi,

A problem

i have a Flex Application that runs in Flas Player..This application is
able to run modules downloaded from other servers? is the same scenario
valid for air applications?

Thanks a lot
Best Regards







[flexcoders] Flex Modules and external sources

2009-04-06 Thread thelordsince1984
Hi,

a little question for you..

i've a module that could load some images from an external directory.

The structure i use is:

projectname
---some sources classes
---imagedir
firstimage.jpg
secondimage.jpg
---modules
mymodule

So i create an mx:image tag into the module and i set the source property equal 
to the image file path (for example firstimage.jpg)..
this solution doesn't work..why?

any solutions?
thanks in advance

regards
Lorenzo





Re: [flexcoders] Flex Modules and external sources

2009-04-06 Thread Paresh M More
Lorenzo,
mx:Image source=@Embed('/imagedir/firstimage.jpg')  /

Use this it would work



-- 
Regards,
Paresh M. More
Senior Software Engineer

Nashik/Pune, Maharashtra, India.
Email - pareshm...@gmail.com

On Mon, Apr 6, 2009 at 7:07 PM, thelordsince1984 lore...@katamail.comwrote:

   Hi,

 a little question for you..

 i've a module that could load some images from an external directory.

 The structure i use is:

 projectname
 ---some sources classes
 ---imagedir
 firstimage.jpg
 secondimage.jpg
 ---modules
 mymodule

 So i create an mx:image tag into the module and i set the source property
 equal to the image file path (for example firstimage.jpg)..
 this solution doesn't work..why?

 any solutions?
 thanks in advance

 regards
 Lorenzo

  



RE: [flexcoders] Flex Modules and external sources

2009-04-06 Thread Alex Harui
Relative paths in modules are relative to the Application not the Module.  Make 
sure you're using the right path.

Alex Harui
Flex SDK Developer
Adobe Systems Inc.http://www.adobe.com/
Blog: http://blogs.adobe.com/aharui

From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf 
Of thelordsince1984
Sent: Monday, April 06, 2009 6:37 AM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Flex Modules and external sources


Hi,

a little question for you..

i've a module that could load some images from an external directory.

The structure i use is:

projectname
---some sources classes
---imagedir
firstimage.jpg
secondimage.jpg
---modules
mymodule

So i create an mx:image tag into the module and i set the source property equal 
to the image file path (for example firstimage.jpg)..
this solution doesn't work..why?

any solutions?
thanks in advance

regards
Lorenzo



[flexcoders] Flex Modules and LCDS FlexSessions

2008-02-13 Thread aduston1976
Hi,

I am creating a Flex/LCDS app that uses an RTMP channel for both RPC
and messaging. I noticed after modularizing my app (i.e. dividing it
into mx.modules.Modules) that, on the server,
FlexContext.getUserPrincipal would frequently return null during an
RPC call after FlexContext.setUserPrincipal was set in a previous RPC
call. This is unacceptable, since my server requires a notion of user
identity. Looking more closely, I see that
FlexContext.getFlexClient().getFlexSessions() always returns a list
containing k + 1 RTMPFlexSessions, where k is the number of modules
that have loaded so far. One of these FlexSessions contains the right
UserPrincipal. So that is nice; if I need to find my UserPrincipal I
can loop through the list of FlexSessions and get it. But isn't there
one connection per RTMPFlexSession? I think this means that I will
have four times the number of sockets open at any given point in time,
since I have three modules.

I have read Alex Harui's blog posts, btw, and there are zero
references to RemoteObject or my concrete RPC classes that use
RemoteObject anywhere in the module code.

Is there some salient explanation for this behavior?

Thank you,
Adam



[flexcoders] Flex modules and jms messaging

2007-10-15 Thread ivhaggi
Hi Group!!

Im working in a project with modules. In one of them im using a
consumer who is listening a JMS Topic. 

The problem is when i publish a java object to the jms topic the
consumer enters to the function handler i defined, but the
event.message.body is null. 

I repeat the same proof in the main mxml of my app(not in a module)
and the object was received sucessfully. So my question is why in the
module i can not reach the body of the message??

Thanks in advanced for your help!!




RE: [flexcoders] Flex modules and jms messaging

2007-10-15 Thread Alex Harui
Which swf the as data class and the webservices are in may make a
difference

 



From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of ivhaggi
Sent: Saturday, October 13, 2007 2:03 PM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Flex modules and jms messaging

 

Hi Group!!

Im working in a project with modules. In one of them im using a
consumer who is listening a JMS Topic. 

The problem is when i publish a java object to the jms topic the
consumer enters to the function handler i defined, but the
event.message.body is null. 

I repeat the same proof in the main mxml of my app(not in a module)
and the object was received sucessfully. So my question is why in the
module i can not reach the body of the message??

Thanks in advanced for your help!!

 



RE: [flexcoders] Flex modules

2006-10-17 Thread Dimitrios Gianninas

Thats what I like to hear! Thanks!

Dimitrios Gianninas
Optimal Payments Inc.



-Original Message-
From: flexcoders@yahoogroups.com on behalf of Matt Chotin
Sent: Tue 10/17/2006 12:20 AM
To: flexcoders@yahoogroups.com
Subject: RE: [flexcoders] Flex modules
 
It's finished in the next release, timing not yet announced.

 

Matt

 



From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of 
Dimitrios Gianninas
Sent: Monday, October 16, 2006 5:20 PM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Flex modules

 

Hi,

 

This is for Roger Gonzales the author of Modular Applications 
(http://blogs.adobe.com/rgonzalez/2006/06/modular_applications_part_2.html 
http://blogs.adobe.com/rgonzalez/2006/06/modular_applications_part_2.html ). 
I've download and played with the code in the last couple days and although it 
is raw stuff, it definitly shows the potiental of were this might go. Combined 
with RSLs this will make Flex apps lean and mean.

 

Question, when will it be finished ?!:) 

 

Here is some feedback:

 

1) the module loaded, doesn't take on its full size (it seems to be shrunk)

 

2) doesn't work when the module's main container is a TitleWindow

 

3) The Module class extends VBox. Now the root container of every module will 
be either VBox, Panel, Canvas, whatever. Seems to me like thats heavy, since 
the outer container isn't really doing anything.. unless of course I am missing 
something. If it has to be a container, why not something lighter like Canvas? 
Or is it really not important?

 

I was using your MXML sample more than the AS one.

 

Thanks Roger and looking forward to more.

 

Dimitrios Gianninas

RIA Developer

Optimal Payments Inc.

 

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.

 


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

AVIS IMPORTANT
--
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.



--
Flexcoders

[flexcoders] Flex modules

2006-10-16 Thread Dimitrios Gianninas





Hi,

This is for 
Roger Gonzales the author of "Modular Applications" (http://blogs.adobe.com/rgonzalez/2006/06/modular_applications_part_2.html). 
I've download and played with the code in the last couple days and although it 
is raw stuff, it definitly shows the potiental of were this might go. Combined 
with RSLs this will make Flex apps lean and mean.

Question, 
when will it be finished ?!:) 

Here is 
some feedback:

1) the 
module loaded, doesn't take on its full size (it seems to be 
shrunk)

2) doesn't 
work when the module's main container is a TitleWindow

3) The 
Module class extends VBox. Now the root container of every module will be either 
VBox, Panel, Canvas, whatever. Seems to me like thats heavy, since the outer 
container isn't really doing anything.. unless of course I am missing something. 
If it has to be a container, why not something lighter like Canvas? Or is it 
really not important?

I was using 
your MXML sample more than the AS one.

Thanks Roger and looking forward to more.

Dimitrios 
Gianninas
RIA 
Developer
Optimal 
Payments Inc.

 
  
  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.
  
 

__._,_.___





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

Software development tool
  
  
Software development
  
  
Software development services
  
  


Home design software
  
  
Software development company
  

   
  






  
  Your email settings: Individual Email|Traditional 
  Change settings via the Web (Yahoo! ID required) 
  Change settings via email: Switch delivery to Daily Digest | Switch to Fully Featured 
   
Visit Your Group 
   |
  
Yahoo! Groups Terms of Use
   |
  
   Unsubscribe 
   
 

  




__,_._,___



RE: [flexcoders] Flex modules

2006-10-16 Thread Matt Chotin













Its finished in the next release, timing
not yet announced.



Matt











From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Dimitrios Gianninas
Sent: Monday, October 16, 2006
5:20 PM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Flex modules













Hi,











This is for Roger Gonzales the author of
Modular Applications (http://blogs.adobe.com/rgonzalez/2006/06/modular_applications_part_2.html).
I've download and played with the code in the last couple days and although it
is raw stuff, it definitly shows the potiental of were this might go. Combined
with RSLs this will make Flex apps lean and mean.











Question, when will it be finished ?!:) 











Here is some feedback:











1) the module loaded, doesn't take on its
full size (it seems to be shrunk)











2) doesn't work when the module's main
container is a TitleWindow











3) The Module class extends VBox. Now the
root container of every module will be either VBox, Panel, Canvas, whatever.
Seems to me like thats heavy, since the outer container isn't really doing
anything.. unless of course I am missing something. If it has to be a
container, why not something lighter like Canvas? Or is it really not
important?











I was using your MXML sample more than the
AS one.











Thanks Roger and looking forward to more.









Dimitrios
Gianninas

RIA Developer

Optimal Payments
Inc.








 
  
  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é. Lexpéditeur
  original ne renonce à aucun privilège ou à aucun autre droit si le présent
  message a été transmis involontairement ou sil est retransmis sans son
  autorisation. Si vous nêtes pas le destinataire visé du présent message ou
  si vous lavez 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 lexpé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.
  
 





__._,_.___





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

Software development tool
  
  
Software development
  
  
Software development services
  
  


Home design software
  
  
Software development company
  

   
  






  
  Your email settings: Individual Email|Traditional 
  Change settings via the Web (Yahoo! ID required) 
  Change settings via email: Switch delivery to Daily Digest | Switch to Fully Featured 
   
Visit Your Group 
   |
  
Yahoo! Groups Terms of Use
   |
  
   Unsubscribe 
   
 

  




__,_._,___