[flexcoders] Loading MXML via JSP on WebLogic

2005-08-03 Thread Dimitrios Gianninas
Hi guys, We are just getting ready to deploy a new Flex app and we encountered something we did not in our previous endeavors. This new Flex app is located inside a JSP page and seems to take a good 45 secs to load, if you access the MXML directly it comes up in 4 secs or so. In a

RE: [flexcoders] Login session problem:

2005-08-03 Thread Dimitrios Gianninas
Hi, Once a user logs in successfully (via login.jsp), you should save his data to the session and then load the MXML and the Flex UI can then load the session data to know who the user is.Also, you should configure the security section of your web.xml to allow only the properly roles to

RE: [flexcoders] ActionScript POS function

2005-08-12 Thread Dimitrios Gianninas
I think what you are looking for is: txt.indexOf("IA") You can read more here: http://livedocs.macromedia.com/flex/15/flex_docs_en/1706.htm Dimitrios "Jimmy" Gianninas RIADeveloper Optimal Payments Inc. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of

RE: [flexcoders] Problems with LocalConnection

2005-08-17 Thread Dimitrios Gianninas
My code is a bit different that yours, perhaps you should look at it and just change things around: Sender: myConnection = new LocalConnection(); myConnection.send("phxApp", "messagePosted", "uploadSuccess"); Receiver: cn = new LocalConnection(); cn.messagePosted = Delegate.create(

RE: [flexcoders] Cairngorm Development Cycle

2005-08-25 Thread Dimitrios Gianninas
start top-down or down-up,its got enough hooks in place to give you a nice footing on eitherdirection? or am i full of crap ? (could be the later, its quitepossible hehe).On 8/25/05, Dimitrios Gianninas [EMAIL PROTECTED] wrote: I've discovered the same thing here, with Flex, we typical prototype t

RE: [flexcoders] Cairngorm Development Cycle

2005-08-25 Thread Dimitrios Gianninas
ine with the DTO/VO vision.The "Gluer" can be a bludge/time wastage job at times but other times it can be very crucial as its the brains trust for the UI application.Make sense? On 8/25/05, Dimitrios Gianninas [EMAIL PROTECTED] wrote: I don't think your crazy eh. Being the

RE: [flexcoders] Help: link to a specific viewstack inside a specific tab

2005-09-06 Thread Dimitrios Gianninas
Hi, Most likely your problem is due to the fact that the viewstack has not yet been instantiated. You should set the creationPolicy="all" on your Tab Navigator for this to work. Hope that helps. Dimitrios "Jimmy" Gianninas RIADeveloper Optimal Payments Inc. From:

RE: [flexcoders] JSP to Flex / Flex to JSP

2005-09-16 Thread Dimitrios Gianninas
Hi, You need to use the HTTPService in order to pass parameters to a JSP and then retrieve the content it is send back to you. Best place to start is the online documentation in the "Using Data Services" section, start with the link below:

[flexcoders] Undefined weirdness

2005-09-20 Thread Dimitrios Gianninas
Maybe its late and just me, but maybe someone can shed some light on the subject. Here is a debug dump of the AgentVO coming back from the server. As you can see, it contains a field called acctList, which is an ArrayList that contains BasicListItem objects. (Typed Object #0

RE: [flexcoders] Undefined weirdness

2005-09-21 Thread Dimitrios Gianninas
ur dumping routine. try setting a dummy toString() method on the class. anyway, that would be strange since toString, I believe, is attached to Object prototype. On 9/20/05, Dimitrios Gianninas [EMAIL PROTECTED] wrote: Maybe its late and just me, but maybe someone can shed some light on the sub

RE: [flexcoders] Opening Browse Window In Flex like yahoo/rediff mail

2005-09-30 Thread Dimitrios Gianninas
Well the UI comes up, but cannot upload, its displays: fileReference: [object Object] type: onSelect fileReference: [object Object] type: onIOError Dimitrios "Jimmy" Gianninas RIADeveloper Optimal Payments Inc. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of

RE: [flexcoders] Opening Browse Window In Flex like yahoo/rediff mail

2005-09-30 Thread Dimitrios Gianninas
I have the same player version and using FFX 1.0.7. Nevermind I tried to upload a 0 bytes file. I just now uploaded a 504 byte file... all good! Dimitrios "Jimmy" Gianninas RIADeveloper Optimal Payments Inc. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Carson

RE: [flexcoders] Problem with ServiceLocator in Cairngorm

2005-10-03 Thread Dimitrios Gianninas
Perhaps if you showed us your Services.mxml and how it is declared your root MXML file. Dimitrios "Jimmy" Gianninas RIADeveloper Optimal Payments Inc. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Andora, GregSent: Monday, October 03, 2005 2:57 PMTo:

RE: [flexcoders] Problem with ServiceLocator in Cairngorm

2005-10-03 Thread Dimitrios Gianninas
What you have found is a workaround. Everything seems in order, apart from the endpoint which is specified. So the service being called is not on the same machine? You should also check what Malcolm mentioned as well. Dimitrios "Jimmy" Gianninas RIADeveloper Optimal Payments Inc.

RE: [flexcoders] Weird error

2005-10-04 Thread Dimitrios Gianninas
You would think... but the same servlet loaded in another web app works like charm. It seems likethe servlet never gets called. But its there are working, tried in the browser. I'm still looking. I'll check what Matt wrote as well. Dimitrios "Jimmy" Gianninas RIADeveloper Optimal

RE: [flexcoders] Authentication with Macromedia Flex

2005-10-07 Thread Dimitrios Gianninas
etc in th eother thread...I have not got it working 100% on JRun yet...but still banging away at it.DK On 9/26/05, Dimitrios Gianninas [EMAIL PROTECTED] wrote: Where did you hear that it was not the approach to take? We have it working this way for one of our projects. Yes, when you u

RE: [flexcoders] When ModelLocator Databinding does not work...

2005-10-07 Thread Dimitrios Gianninas
I think the only way to address your issue.Use the appropriate ViewHelper to tell the view to refresh itself because the data has been updated. Dimitrios "Jimmy" Gianninas RIADeveloper Optimal Payments Inc. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of

RE: [flexcoders] [Cairngorm] - Question about ViewHelpers

2005-10-08 Thread Dimitrios Gianninas
Hi, A ViewHelper is bound to a specific Form/View. If your case you can do it two ways. You can use one ViewHelper to set the data on the different fields OR the command can save the user data on a ModelLocator and that model is bound to the varius controls, like so: mx:TextInput id=name

RE: [flexcoders] Changing the applicaitons background color

2005-10-08 Thread Dimitrios Gianninas
mx:Application backgroundColor="#FF" /mx:Application Dimitrios "Jimmy" Gianninas RIADeveloper Optimal Payments Inc. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of [EMAIL PROTECTED]Sent: Saturday, October 08, 2005 2:59 PMTo:

RE: [flexcoders] Authentication with Macromedia Flex

2005-10-09 Thread Dimitrios Gianninas
using the service would need this check, eh? What other way can this be done possibly? Create a AuthCommand abstract class to extend or something?DK On 10/7/05, Dimitrios Gianninas [EMAIL PROTECTED] wrote: Ah yes about accessing the session, I read that article as well. I plan to change th

RE: [flexcoders] Changing color of font

2005-10-12 Thread Dimitrios Gianninas
The answer is in the API, which is located at: http://livedocs.macromedia.com/flex/15/ Dimitrios "Jimmy" Gianninas RIADeveloper Optimal Payments Inc. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of [EMAIL PROTECTED]Sent: Wednesday, October 12, 2005 12:59

RE: [flexcoders] How to save uploaded file in database

2005-10-14 Thread Dimitrios Gianninas
We use Oracle 9i around here and several applications store files in the DB as BLOBs and it works like charm. This is a DB issue, so you should speak with your Database Administrator to resolve the issue. Dimitrios "Jimmy" Gianninas RIADeveloper Optimal Payments Inc. From:

[flexcoders] Flex File Upload over HTTPS

2005-10-14 Thread Dimitrios Gianninas
Hi, anyone have trouble using the File Upload component in Player 8 over HTTPS ? Like it doesn't upload at all, gives an IO Error with no details? Dimitrios "Jimmy" Gianninas RIADeveloper Optimal Payments Inc. -- Flexcoders Mailing List FAQ:

RE: [flexcoders] How to save uploaded file in database

2005-10-14 Thread Dimitrios Gianninas
file to DB. Thx in advance, sandip patil Dimitrios Gianninas [EMAIL PROTECTED] wrote: We use Oracle 9i around here and several applications store files in the DB as BLOBs and it works like charm. This is a DB issue, so you should speak with your Database Adm

RE: [flexcoders] Flex File Upload over HTTPS

2005-10-14 Thread Dimitrios Gianninas
Yup thx Carson. We've run into the double-upload issue as well. Our problem is that Apache, sitting in front of WebLogic is blocking the upload for some reason. If you load the UI by accessing the UI directly from WebLogic under HTTPS, it works. But not thru Apache. Working with our

RE: [flexcoders] Regarding Session in macromedia flex

2005-10-18 Thread Dimitrios Gianninas
Hi, You don't need to do that. In Flex, you can load the user data using some remote call (using as example RemoteObject) and save it in a variable on the Flex side and use it whenever you want. Normally you would put the variable in the root MXML file and access it when needed. If you

RE: [flexcoders] reducing fileSize without RSL??!!

2005-10-18 Thread Dimitrios Gianninas
I don't think there is muchyou can do except use an RSL. I'm sure you have read the article on the MM web site about RSLs, if not, just search for it... I don't have the link handy right now. Or another solution might be to re-design the app and make a portion of the app entirely in Flex

RE: [flexcoders] Cairngorm and FrontControllers

2005-10-18 Thread Dimitrios Gianninas
Title: Cairngorm and FrontControllers Yup, one is really all you need to allow it to register all your commands. Its a central point where everything gets run thru before any logic is executed. Dimitrios "Jimmy" Gianninas RIADeveloper Optimal Payments Inc. From:

RE: [flexcoders] (2.0) App flow

2005-10-19 Thread Dimitrios Gianninas
Once you are done building simple Flex applications and ready to move on, you should take a look at the Cairngorm framework, follow the link below. http://www.iterationtwo.com/open_source_cairngorm.html Dimitrios "Jimmy" Gianninas RIADeveloper Optimal Payments Inc. From:

RE: [flexcoders] Opening for Flash ActionScript programmers with Japanese skillset for Japan.

2005-11-03 Thread Dimitrios Gianninas
I double-checked, didn't approve this one, learned my lesson the first time. Must be a little gremlin in the system :) Dimitrios "Jimmy" Gianninas RIADeveloper Optimal Payments Inc. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Steven WebsterSent: Wednesday,

RE: [flexcoders] For a strong career in Software testing !!!

2005-11-08 Thread Dimitrios Gianninas
yes it is... no excuses, my fault, I approved it when I shouldn't have. Dimitrios "Jimmy" Gianninas RIADeveloper Optimal Payments Inc. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Nick WeekesSent: Tuesday, November 08, 2005 8:28 AMTo:

RE: [flexcoders] File Upload over HTTPS: Solved!

2005-11-09 Thread Dimitrios Gianninas
This is a bug in the 8.0.22 player... if you use the 8.0.15 player, everything works fine. MM is going to fix it, we (me and another developer here) worked with MM Support and discovered this info last week. A bit late in posting, but I guess now with your info as well, this should help a few

RE: [flexcoders] sessions and maintenance questions

2005-11-14 Thread Dimitrios Gianninas
Hi Robert, To answer the first part, with our Flex applications we no longer store any data in the server session. We load any required data by the UI at start-upand cache it in a global model (ModelLocator if you are using Cairngorm). As for the session timeout, we config out

RE: [flexcoders] sessions and maintenance questions

2005-11-16 Thread Dimitrios Gianninas
e checking for? Also, I checked web.xml and I don't see any timeout setting. Thanks, Jaime On 11/14/05, Dimitrios Gianninas [EMAIL PROTECTED] wrote: Hi Robert, To answer the first part, with our Flex applications we no longer store any data in the server session. We load any required data

RE: [flexcoders] Error: Cannot invoke method

2005-11-20 Thread Dimitrios Gianninas
The Employee class must implement Serializable, that's missing, try that and see if it fixes your problem. Dimitrios "Jimmy" Gianninas RIADeveloper Optimal Payments Inc. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of babulj2003Sent: Sunday, November 20, 2005

[flexcoders] Web service question

2005-11-21 Thread Dimitrios Gianninas
Toying with calling web services for the first time in a long time with Flex... So here my question. I have a Java class exposed as a web service, and it has two methods exposed. When I call the first method from Flex, all is good. When I call the second one, its still calling the first

RE: [flexcoders] Web service question

2005-11-21 Thread Dimitrios Gianninas
Not at all... the two calls are done at every different points in the use of the UI. So even if I call methodB()... on the server I see that it is executing methodA(). Dimitrios "Jimmy" Gianninas RIADeveloper Optimal Payments Inc. From: flexcoders@yahoogroups.com [mailto:[EMAIL

RE: [flexcoders] Re: Web service question

2005-11-21 Thread Dimitrios Gianninas
s.comEmail: [EMAIL PROTECTED]Office: 866-CYNERGY --- In flexcoders@yahoogroups.com, "Dimitrios Gianninas"[EMAIL PROTECTED] wrote: Toying with calling web services for the first time in a long time with Flex... So here my question. I have a Java class exposed as a web service, and

RE: [flexcoders] Re: Web service question

2005-11-21 Thread Dimitrios Gianninas
r Flex 2? We useweb services a over the place and they work like a champ.--Dave WolfCynergy Systems, Inc.Macromedia Flex Alliance Partnerhttp://www.cynergysystems.comEmail: [EMAIL PROTECTED]Office: 866-CYNERGY --- In flexcoders@yahoogroups.com, "Dimitrios Gianninas"[EMAIL PROTECTED] w

RE: [flexcoders] Re: Web service question

2005-11-21 Thread Dimitrios Gianninas
edia Flex Alliance Partnerhttp://www.cynergysystems.comEmail: [EMAIL PROTECTED]Office: 866-CYNERGY--- In flexcoders@yahoogroups.com, "Dimitrios Gianninas"[EMAIL PROTECTED] wrote: Its Flex 1.5. What code do you want to see exactly? My AS delegate? The Services.mxml ? The WSDL ? Dimitrio

RE: Re: [flexcoders] Re: Is there a third-party or opensource market for Flex components?

2006-03-11 Thread Dimitrios Gianninas
This stuff I love... good work. One thing maybe to add is a PanelManager class, so that you can close all panels or allow a panel to be brought to the foreground programmatically. Dimitrios Gianninas RIADeveloper Optimal Payments Inc. From: flexcoders@yahoogroups.com [mailto:[EMAIL

RE: Re: Re: [flexcoders] Re: Is there a third-party or opensource market for Flex components?

2006-03-11 Thread Dimitrios Gianninas
a users is doing an action and then that action causes the UI to bring a panel to the foreground to alert/emphasize to the user that, that panel has the info he needs. Dimitrios Gianninas RIADeveloper Optimal Payments Inc. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf

RE: [flexcoders] Re: Flex 1.5 popup issue

2006-03-16 Thread Dimitrios Gianninas
use the fully qualified name: PopUpManager.createdPopUp( parent, some.folder.Wizard, isModal, initObj ); Dimitrios Gianninas RIADeveloper Optimal Payments Inc. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of digital_eyezedSent: Thursday, March 16, 2006 10:29

RE: [flexcoders] Re: Flex 1.5 popup issue

2006-03-16 Thread Dimitrios Gianninas
So you should have a Wizard.mxml under the /components folder right? At the main application lies in the root called app.mxml or something? Dimitrios Gianninas RIADeveloper Optimal Payments Inc. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf

RE: [flexcoders] Starting a Project Now! FLEX 1.5 or 2.0?

2006-03-19 Thread Dimitrios Gianninas
I'd go with Flex 2.0 if I were you. Jimmy -Original Message- From: flexcoders@yahoogroups.com on behalf of Richie Rich Sent: Sat 3/18/2006 9:59 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Starting a Project Now! FLEX 1.5 or 2.0? Hello, I am starting a project that I

RE: [flexcoders] Cairgnorm beta release?

2006-03-21 Thread Dimitrios Gianninas
Nope, keep using the same one you have for Flex 2, its the same. Dimitrios Gianninas RIADeveloper Optimal Payments Inc. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Oriol GualSent: Tuesday, March 21, 2006 11:08 AMTo: flexcoders@yahoogroups.comSubject

[flexcoders] Flex 1.5 MXMLC question

2006-03-24 Thread Dimitrios Gianninas
it loaded and remote calls worked. Now I tried it on our actual project, it compiles, but when I throw the SWF into my local web server folder, it loads but when it comes time to execute a remote call, it just sits there (wheel spins forever). Anyone ever experienced this before? Dimitrios

RE: [flexcoders] Re: Flex 1.5 MXMLC question

2006-03-24 Thread Dimitrios Gianninas
be using pre-compilation it right off the bat. Dimitrios Gianninas RIADeveloper Optimal Payments Inc. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Dave WolfSent: Friday, March 24, 2006 2:09 PMTo: flexcoders@yahoogroups.comSubject: [flexcoders] Re: Flex 1.5 MXMLC

RE: [flexcoders] FB2 :: New ActionScript File :: Package path error

2006-03-28 Thread Dimitrios Gianninas
You have to setup what is your source folder. 1) Right-click on your project and selected properties 2) Goto Flex Build Path 3) enter the appropriate source folder Dimitrios Gianninas RIADeveloper Optimal Payments Inc. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED

RE: [flexcoders] {flexcoders} Beta 2: ViewHelper, ViewLocator

2006-03-30 Thread Dimitrios Gianninas
Hi, First off, the ViewLocator gets setup the minute the first instance for any of your ViewHelpers is instantiated. Just look in the ViewHelper.as base class code and you will see this. Second, I guess you are asking how to convert and event broadcast from Flex 1.5 to Flex 2. Well in Flex 2

RE: Re: [flexcoders] Code formatter for action script

2006-04-03 Thread Dimitrios Gianninas
it, a build-in formatter is great. Then you can go slap the other developer on his hands :) Dimitrios Gianninas RIADeveloper Optimal Payments Inc. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Michael SchmalleSent: Sunday, April 02, 2006 9:10 PMTo: flexcoders

RE: [flexcoders] What upload servlet at server side to use along with FileReference class?

2006-04-05 Thread Dimitrios Gianninas
We've experienced the same error as well about a year ago with an we build in Flex 1.5 using flash Player 8.0.22. Currently I believe version 8.0.24 is available for download, not sure if this fixes the problem. Another issue we discovered is that version 8.0.22 doesn't allow file upload over

RE: [flexcoders] um, where is my session?

2006-04-11 Thread Dimitrios Gianninas
might need. Dimitrios Gianninas RIADeveloper Optimal Payments Inc. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of box110aSent: Monday, April 10, 2006 10:33 AMTo: flexcoders@yahoogroups.comSubject: [flexcoders] um, where is my session? I have been soaking up

[flexcoders] Random number or string utils?

2006-05-10 Thread Dimitrios Gianninas
I need to generate random numbers and strings... is this some AS class that already does this? Been looking but can't find it. Need it in Flex 2. Dimitrios Gianninas RIADeveloper Optimal Payments Inc. -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files

RE: [flexcoders] Random number or string utils?

2006-05-10 Thread Dimitrios Gianninas
Nevermind just found it Math.random() Dimitrios Gianninas RIADeveloper Optimal Payments Inc. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Dimitrios GianninasSent: Wednesday, May 10, 2006 3:07 PMTo: flexcoders@yahoogroups.comSubject: [flexcoders] Random

RE: [flexcoders] Random number or string utils?

2006-05-10 Thread Dimitrios Gianninas
thanks! Dimitrios Gianninas RIADeveloper Optimal Payments Inc. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Jim RobsonSent: Wednesday, May 10, 2006 3:12 PMTo: flexcoders@yahoogroups.comSubject: RE: [flexcoders] Random number or string utils

[flexcoders] FW: Flex, Hibernate and Coldfusion

2006-05-12 Thread Dimitrios Gianninas
-Original Message- From: cichlidguru79 [mailto:[EMAIL PROTECTED] Sent: Fri 5/12/2006 6:44 PM To: [EMAIL PROTECTED] Subject: Re: Flex, Hibernate and Coldfusion I am hoping to implement a ColdFusion / Java hybrid application that uses POJOs and Hibernate in the model, and

RE: [flexcoders] Re: Cairngorm microarchitecture. 2 instances of view with different data.

2006-05-15 Thread Dimitrios Gianninas
to a owner, which has more power. Yes? Dimitrios Gianninas -Original Message- From: flexcoders@yahoogroups.com on behalf of maxym.hryniv Sent: Mon 5/15/2006 3:29 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: Cairngorm microarchitecture. 2 instances of view with different data

RE: [flexcoders] Re: Cairngorm microarchitecture. 2 instances of view with different data.

2006-05-15 Thread Dimitrios Gianninas
Ok, maybe if you can provide some sample code or a screenshot of what these two views look like would help. Is it that the two views are going to update the data in two different fashions? Dimitrios Gianninas RIADeveloper Optimal Payments Inc. From: flexcoders@yahoogroups.com

RE: [flexcoders] Are ViewHelper and ViewLocator deprecated in Cairngorm 2?

2006-05-15 Thread Dimitrios Gianninas
along (not at all in my first Flex2 project). Dimitrios Gianninas RIADeveloper Optimal Payments Inc. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Larry LiangSent: Monday, May 15, 2006 7:53 AMTo: flexcoders@yahoogroups.comSubject: [flexcoders] Are ViewHelper

RE: [flexcoders] Re: Cairngorm microarchitecture. 2 instances of view with different data.

2006-05-15 Thread Dimitrios Gianninas
. Of course, because of Flex and the fact that you can pop-up multiple instances of the same view, this might be something that we will have to review in the future. Dimitrios Gianninas RIADeveloper Optimal Payments Inc. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf

RE: [flexcoders] Re: Are ViewHelper and ViewLocator deprecated in Cairngorm 2?

2006-05-15 Thread Dimitrios Gianninas
Basically I am using data binding to show/hide, enabled/disable different components on my viewwhereI need to. Also in Flex2 the view states are really nice as well, but you have to be careful of a few caveats (still in the middle of figuring out some details). Dimitrios Gianninas

RE: [flexcoders] question for cairngorm mavens

2006-05-15 Thread Dimitrios Gianninas
Actually I do this, I have several models, each model contains data that is logically group. This is left up to every developer to decide... eventually one model with hundreds of variables on it is not a good idea :) Dimitrios Gianninas RIADeveloper Optimal Payments Inc. From

RE: [flexcoders] Re: Cairngorm microarchitecture. 2 instances of view with different data.

2006-05-15 Thread Dimitrios Gianninas
. I'm going to change it next time I get the chance. Dimitrios Gianninas RIADeveloper Optimal Payments Inc. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Tim HoffSent: Monday, May 15, 2006 11:56 AMTo: flexcoders@yahoogroups.comSubject: [flexcoders] Re: Cairngorm

RE: [flexcoders] Cairngorm ServiceLocator and FDS

2006-07-12 Thread Dimitrios Gianninas
things done. Right now I am hanging my DataService instance on one of my models, and everything works great. I am only looking to make things a bit cleaner. Perhaps what you mentioned below works best for the Flex Messaging portion. Dimitrios Gianninas RIADeveloper Optimal Payments Inc. From

[flexcoders] Setting fill value of a pie chart programmatically

2006-07-12 Thread Dimitrios Gianninas
How in the world do u set the fill style of a pie chart in AS3 ? I tried pie.setStyle( "fills", someArray ); and it does nothing. Dimitrios Gianninas RIADeveloper Optimal Payments Inc. AVIS IMPORTANT WARNING Ce message électronique et ses pièc

RE: [flexcoders] Setting fill value of a pie chart programmatically

2006-07-12 Thread Dimitrios Gianninas
Thx that worked! Dimitrios Gianninas RIADeveloper Optimal Payments Inc. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Matt HornSent: Wednesday, July 12, 2006 3:11 PMTo: flexcoders@yahoogroups.comSubject: RE: [flexcoders] Setting fill value of a pie chart

RE: [flexcoders] Setting fill value of a pie chart programmatically

2006-07-12 Thread Dimitrios Gianninas
mailto:flexcoders%40yahoogroups.com [mailto:flexcoders@yahoogroups.com mailto:flexcoders%40yahoogroups.com ] On Behalf Of Dimitrios Gianninas Sent: Wednesday, July 12, 2006 2:23 PM To: flexcoders@yahoogroups.com mailto:flexcoders%40yahoogroups.com Subject: [flexcoders] Setting fill value of a pie chart

RE: [flexcoders] Setting fill value of a pie chart programmatically

2006-07-13 Thread Dimitrios Gianninas
yes noticed that too, thx Ely. Dimitrios Gianninas RIADeveloper Optimal Payments Inc. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Ely GreenfieldSent: Thursday, July 13, 2006 10:19 AMTo: flexcoders@yahoogroups.comSubject: RE: [flexcoders] Setting fill

RE: [flexcoders] crossdomain.xml on Weblogic

2006-07-13 Thread Dimitrios Gianninas
It needs to go at the root folder of your web applications. So if your app is in c:/samples ... then put the crossdomain.xml there and then point WL to that folder to deploy your app. Dimitrios Gianninas RIADeveloper Optimal Payments Inc. From: flexcoders@yahoogroups.com [mailto

RE: [flexcoders] Spring Enable Flex

2006-07-13 Thread Dimitrios Gianninas
Probably not can u describe the problem/issue you are having? Dimitrios Gianninas RIADeveloper Optimal Payments Inc. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Allen RiddleSent: Thursday, July 13, 2006 10:41 AMTo: flexcoders@yahoogroups.comSubject

RE: [flexcoders] efficient way of doing custom formatting on datagrid column values

2006-07-13 Thread Dimitrios Gianninas
Does the lag happen when the renderer is not there? Cause if it is, then are u loading all 1000 records into the client? Maybe you can use FDS and the paging feature. Dimitrios Optimal Payments. -Original Message- From: flexcoders@yahoogroups.com on behalf of Pan Troglodytes Sent:

RE: [flexcoders] DataGridColumn id attrubute is gone??

2006-07-13 Thread Dimitrios Gianninas
Hi, I've done this, but in a different way. The DataGrid's column property takes an array DataGridColumn objects, so what u do is create two sets of arrays: mx:Array id=columns1 mx:DataGridColumn ... / mx:DataGridColumn ... / ... /mx:Array mx:Array id=columns2 mx:DataGridColumn ... /

RE: [flexcoders] Re: DataGridColumn id attrubute is gone??

2006-07-14 Thread Dimitrios Gianninas
Use my solution and but have another array that gets constructed programmatically based on the use selection and get assigned to the DataGrid. That's how I would do it. Dimitrios Gianninas RIADeveloper Optimal Payments Inc. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED

[flexcoders] problem with secure RTMP

2006-07-17 Thread Dimitrios Gianninas
nect.Failed" level = "error"'my-rtmp' channel polling stopped.'my-rtmp' channel connect failed.'cds-consumer-consumerDS-null' consumer channel faulted with Channel.Connect.Failed null'cds-consumer-consumerDS-null' consumer starting resubscribe timer. Dimitrios Gianninas

RE: [flexcoders] Cairngorm starter question

2006-07-19 Thread Dimitrios Gianninas
will affect many things (data and views). Second, i've used fileReference in one app, but I didn't make it part of the ServiceLocator. Should be seperate as I see it. Dimitrios Gianninas RIADeveloper Optimal Payments Inc. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On

[flexcoders] RE: gradient background color on VBox

2006-07-19 Thread Dimitrios Gianninas
If not mistaken I don't think this is possible, this would be a nice feature, guess we will have to wait. Dimitrios Gianninas RIADeveloper Optimal Payments Inc. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Engkee KwangSent: Wednesday, July 19, 2006 8:03

RE: [flexcoders] FDS deployment issue

2006-07-19 Thread Dimitrios Gianninas
made the change and we can you what to correct. Dimitrios Gianninas RIADeveloper Optimal Payments Inc. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of hank williamsSent: Wednesday, July 19, 2006 10:37 PMTo: flexcoders@yahoogroups.comSubject: Re: [flexcoders] FDS

RE: [flexcoders] gradient background color on VBox

2006-07-19 Thread Dimitrios Gianninas
then again, Jesse might know a thing or two about that :) Dimitrios Gianninas RIADeveloper Optimal Payments Inc. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of JesterXLSent: Wednesday, July 19, 2006 8:38 PMTo: flexcoders@yahoogroups.comSubject: Re

RE: [flexcoders] So? What are folks here actually building...?

2006-07-20 Thread Dimitrios Gianninas
on the status via JMS. The rest of the app allows the editing of records and searches. Dimitrios Gianninas RIADeveloper Optimal Payments Inc. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Stacy YoungSent: Thursday, July 20, 2006 2:46 PMTo: flexcoders

RE: [flexcoders] Re: Strange issue with drag and drop between Lists

2006-07-20 Thread Dimitrios Gianninas
Dimitrios Gianninas RIADeveloper Optimal Payments Inc. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of gotgoose09Sent: Thursday, July 20, 2006 4:43 PMTo: flexcoders@yahoogroups.comSubject: [flexcoders] Re: Strange issue with drag and drop between Lists I

RE: [flexcoders] MXMLC and Cairngorm

2006-07-20 Thread Dimitrios Gianninas
No need to specify that namespace/manifest in the flex-config.xml. It should work just fine without it, I use the MXMLC myself. Dimitrios Gianninas RIADeveloper Optimal Payments Inc. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Mehdi, AghaSent: Thursday

RE: [flexcoders] MXMLC and Cairngorm

2006-07-20 Thread Dimitrios Gianninas
oh :) sorry was thinking u were using 2.0. maybe someone else can help you then. Dimitrios Gianninas RIADeveloper Optimal Payments Inc. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Mehdi, AghaSent: Thursday, July 20, 2006 8:36 PMTo: 'flexcoders

RE: [flexcoders] How to handle i18n in Flex

2006-07-31 Thread Dimitrios Gianninas
Use resource bundles. In Flex Builder search for that in the help and it will most likely send u to the correct documentation. I'm sure there is an online version of the docs, but can't find them now. Dimitrios Gianninas RIADeveloper Optimal Payments Inc. From: flexcoders

RE: [flexcoders] Re: Simple way to do Please wait... type window

2006-08-01 Thread Dimitrios Gianninas
have a status bar at the bottom of the screen displaying what action is currently occurring. Dimitrios Gianninas RIADeveloper Optimal Payments Inc. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Douglas KnudsenSent: Tuesday, August 01, 2006 9:01 AMTo: flexcoders

[flexcoders] retrieving user with FDS

2006-08-01 Thread Dimitrios Gianninas
Hi, When using RPC services, on the server-side I can FlexContext.getFlexSession().getUserPrincipal() to retrieve the name of the user authenticated by the system... in the get and sync methods of FDS, this method call returns null... what else can I use? Dimitrios Gianninas

RE: [flexcoders] retrieving user with FDS

2006-08-01 Thread Dimitrios Gianninas
I'm using RTMP channel... so I get that has something to do with it. Dimitrios Gianninas RIADeveloper Optimal Payments Inc. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Dimitrios GianninasSent: Tuesday, August 01, 2006 3:07 PMTo: flexcoders

[flexcoders] Retrieving remote username with FDS

2006-08-01 Thread Dimitrios Gianninas
Hi, When using RPC services, on the server-side I can FlexContext.getFlexSession().getUserPrincipal() to retrieve the name of the user authenticated by the system... in the get and sync methods of FDS, this method call returns null... what else can I use? Dimitrios Gianninas

RE: [flexcoders] Retrieving remote username with FDS

2006-08-01 Thread Dimitrios Gianninas
setCredentials() on any of the ROs or DSs... they Flex UI is embedded within a JSP app and it has a login page, so once they reach the Flex UI they are already authenticated and I don't need to call setCredentials(). Lovely how that works automatically. Dimitrios Gianninas RIADeveloper Optimal

RE: [flexcoders] Retrieving remote username with FDS

2006-08-01 Thread Dimitrios Gianninas
Actually based on your email, does this mean if you are using RTMP channel for FDMS, does this mean u can use it with RPC service as well? Cause I don't think this is mentioned in any docs/examples. Dimitrios Gianninas RIADeveloper Optimal Payments Inc. From: flexcoders

RE: [flexcoders] Chart highlights when hovering

2006-08-03 Thread Dimitrios Gianninas
art, that it gets highlighted so the user knows he/she can click/dclick on it. Dimitrios Gianninas RIADeveloper Optimal Payments Inc. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Stacy YoungSent: Thursday, August 03, 2006 11:53 AMTo: flexcoders@yahoogroups.comSub

RE: [flexcoders] Security Question

2006-08-07 Thread Dimitrios Gianninas
) use the role-based security provided by your J2EE server With #2, this means that before any incoming traffic is accepted by flex, the user will have to be authenticated and if it is not, the call is rejected. This is the same for RPC or using FDS. Hope that helps. Dimitrios Gianninas

RE: [flexcoders] Security Question

2006-08-07 Thread Dimitrios Gianninas
and then configure your RPC and FDS services to use these roles. When a remote calls comes in and no valid authenticated session exists, the call will be rejected. So even if someone simulates this, it will fail. Dimitrios Gianninas RIADeveloper Optimal Payments Inc. From: flexcoders

RE: [flexcoders] Cairngorm:One controller, so many commands, so many delegates, so many events

2006-08-14 Thread Dimitrios Gianninas
(has several methods for interacting with a server... ex.: create, update, etc...) Hope that helps. Dimitrios Gianninas RIADeveloper Optimal Payments Inc. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of flxcoderSent: Monday, August 14, 2006 2:01 PMTo: flexcoders

RE: [flexcoders] Re: Cairngorm:One controller, so many commands, so many delegates, so many event

2006-08-14 Thread Dimitrios Gianninas
. That should save u some code. Also, if u are sending just one piece of data, which is not so detailed, then don't create a specific event class, just create and instance of the Cairngorm class and use its generic "data" field. Dimitrios Gianninas RIADeveloper Optimal Payments In

RE: [flexcoders] Web services or FDS: which are you using?

2006-08-15 Thread Dimitrios Gianninas
My projects uses a bit of everything, RPC, FDS and WS. But FDS is the main focus and probably will be in other projects. Dimitrios Gianninas RIADeveloper Optimal Payments Inc. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of ben.clinkinbeardSent: Tuesday

RE: [flexcoders] Emails take over a day to post - did someone say they could fix this?

2006-08-17 Thread Dimitrios Gianninas
of yours specifically. Dimitrios Gianninas RIADeveloper Optimal Payments Inc. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of flex-guitarSent: Wednesday, August 16, 2006 10:46 PMTo: flexcoders@yahoogroups.comSubject: [flexcoders] Emails take over a day to post - did

[flexcoders] removing exception when session is invalidated

2006-08-17 Thread Dimitrios Gianninas
) at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:219) at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:178) Dimitrios Gianninas RIADeveloper Optimal Payments Inc. AVIS IMPORTANT WARNING Ce message électronique et ses pièces jointes peuvent

RE: [flexcoders] scrolling issue in flex

2006-08-21 Thread Dimitrios Gianninas
Save the value of the vPosition property in a variable and reset it once done. Dimitrios Gianninas Optimal Payments -Original Message- From: flexcoders@yahoogroups.com on behalf of bhargavi L Sent: Mon 8/21/2006 7:40 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] scrolling

RE: [flexcoders] Cairngorm and MVC: Quickie

2006-08-21 Thread Dimitrios Gianninas
back and forth to the server CoreModel - holds static data bound to comboboxes and app state data IconModel - holds reference to several icons used throughout the app Dimitrios Gianninas RIADeveloper Optimal Payments Inc. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf

  1   2   3   4   5   6   >