[flexcoders] RemoteObject Issue

2006-04-18 Thread Geoffrey
I've been trying for the last few days to get RemoteObject to work, but with little luck. I've searched this site, and have tried to implement the examples found in developing rich clients with macromedia FLEX. To make matters more confusing, I've also tried to implement the

[flexcoders] Re: RemoteObject Issue

2006-04-18 Thread Geoffrey
you never create a dependency on the class name (as mxmlc will optimize and remove unreferenced class definitions). An import statement is not enough to create a dependency. -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Geoffrey Sent

[flexcoders] Re: RemoteObject Issue

2006-04-18 Thread Geoffrey
--- In flexcoders@yahoogroups.com, Geoffrey gtb104@ wrote: I've been trying for the last few days to get RemoteObject to work, but with little luck. I've searched this site, and have tried to implement the examples found in developing rich clients with macromedia FLEX. To make matters more

[flexcoders] Re: RemoteObject Issue

2006-04-18 Thread Geoffrey
@yahoogroups.com, Geoffrey gtb104@ wrote: Hmm I replaced the service assignment with: this.service = parentApplication.myServices.siteDataServices; But I get the following error: There is no property with the name 'parentApplication'. Looking at the docs, parentApplication looks

[flexcoders] Re: RemoteObject Issue

2006-04-19 Thread Geoffrey
the service object exists, either way should work. I hope this helps, and another thing to note is that the work you're doing now to implement these design patterns will pay off down the road - especially if you're implementing a large-scale app. Doug --- In flexcoders@yahoogroups.com, Geoffrey

[flexcoders] asdoc help

2007-01-24 Thread Geoffrey
I'm trying to use asdoc (from Adobe Labs http://labs.adobe.com/wiki/index.php/ASDoc ) to document our API. I'm running across the following error: C:\workspace\components\tools\RubberbandTool.mxml: Error: Unable to locate specified base class 'components.tools.Tool' for component class

[flexcoders] Re: Box layout question - two children with 100% width

2007-01-24 Thread Geoffrey
--- In flexcoders@yahoogroups.com, Collin Peters [EMAIL PROTECTED] wrote: I am having some layout problems in my app. It is fairly complex with many levels of nesting of panels, viewstacks, boxes, etc... In the end I have an HBox with a width of '100%'. I assume this means take up 100% of

[flexcoders] Nested Repeater Issues

2007-04-03 Thread Geoffrey
I have a Repeater of CheckBoxes, which may or may not have a sublayer of CheckBoxes. It should look something like: [] archive 1 [] archive 2 [] dataSource 1 [] dataSource 2 [] dataSource 3 [] archive 3 By default all CheckBoxes are unselected, and any

[flexcoders] Re: Nested Repeater Issues

2007-04-04 Thread Geoffrey
Bump --- In flexcoders@yahoogroups.com, Geoffrey [EMAIL PROTECTED] wrote: I have a Repeater of CheckBoxes, which may or may not have a sublayer of CheckBoxes. It should look something like: [] archive 1 [] archive 2 [] dataSource 1 [] dataSource 2

[flexcoders] Getting Parent's Style

2007-05-15 Thread Geoffrey
I'm converting some Flex1.5 code to flex 2.0. One of the classes (a commonly used custom component) uses the following to set the background color to that of the parent container: __labelCanvas.setStyle(backgroundColor)=_parent.getStyle(backgroundCo\ lor); This doesn't work in Flex2.0, nor does

[flexcoders] Re: Getting Parent's Style

2007-05-15 Thread Geoffrey
).getStyle(backgroundColor); Or IStyleClient(parent).getStyle(backgroundColor); From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Geoffrey Sent: Tuesday, May 15, 2007 10:10 AM To: flexcoders@yahoogroups.com Subject

[flexcoders] Does Drag Drop Only Update the DataProvider?

2007-05-17 Thread Geoffrey
I have a DataGrid that has a dataProvider bound to an ArrayCollection. code mx:DataGrid id=dgEmployees dataProvider={__employees} ... /code I also have another DataGrid (dgAllEmployees) that is within a popup, which I use as a source for Drag Drop operations to populate the dgEmployee

[flexcoders] Re: Does Drag Drop Only Update the DataProvider?

2007-05-18 Thread Geoffrey
__employees? Can you post a mini-example in a couple of screenfuls of text? From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Geoffrey Sent: Thursday, May 17, 2007 6:11 PM To: flexcoders@yahoogroups.com Subject

[flexcoders] Re: Does Drag Drop Only Update the DataProvider?

2007-05-21 Thread Geoffrey
event is for when selection changes, not when the collection changes. Could that be the issue? collectionChange may be what you want. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Geoffrey Sent: Friday, May 18, 2007 10:12 AM

[flexcoders] Re: Does Drag Drop Only Update the DataProvider?

2007-05-21 Thread Geoffrey
. Binding to private variables is not recommended, but not the problem either. Can you fit an entire example in two screens of text? If so, post it. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Geoffrey Sent: Monday, May

[flexcoders] Re: Does Drag Drop Only Update the DataProvider?

2007-05-21 Thread Geoffrey
into the ArrayCollection should get modified when you drop into the dg. -Alex From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Geoffrey Sent: Monday, May 21, 2007 2:41 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: Does Drag

[flexcoders] Nested classes picking up CSS

2007-06-06 Thread Geoffrey
Here's the basic setup. On display 1 there is Panel A, on display 2 there is Panel B. Both Panels contain 'CommonPanel'. Using an external CSS file, how can I get CommonPanel to have different styles? I tried something like: Display_1.mxml mx:Panel id=panelA styleName=level1

[flexcoders] Re: Nested classes picking up CSS

2007-06-07 Thread Geoffrey
I guess it's imposibble Is there a good CSS reference in the Flex docs somewhere? I can't seem to find it. --- In flexcoders@yahoogroups.com, Geoffrey [EMAIL PROTECTED] wrote: Here's the basic setup. On display 1 there is Panel A, on display 2 there is Panel B. Both Panels contain

[flexcoders] Timeline Slider

2006-09-08 Thread Geoffrey
I'm trying to figure out how to make a custom slider... at least I think it's going to be a custom slider. What I want is a slider that allows me to select a time range based on a 24 hour clock. Here are the requirements: -Two thums on the slider(min, max) -Min value of 00:00:00 -Max value of

[flexcoders] AS to Java Translation Problems

2006-10-05 Thread Geoffrey
ENV: Flex 1.5 served from WebSphere6.1 All of our Java objects used to use java.util.Date for date properties, but we had to convert them to java.util.Calendar. Since Flex 1.5 doesn't support mapping from AS Date to Java Calendar and vise versa, I came up with another way of doing it.

[flexcoders] Re: AS to Java Translation Problems

2006-10-06 Thread Geoffrey
No ideas? Is this something no one has tried before? --- In flexcoders@yahoogroups.com, Geoffrey [EMAIL PROTECTED] wrote: ENV: Flex 1.5 served from WebSphere6.1 All of our Java objects used to use java.util.Date for date properties, but we had to convert them to java.util.Calendar. Since

[flexcoders] Re: AS to Java Translation Problems

2006-10-09 Thread Geoffrey
Could someone voice an opinion on this? Please. --- In flexcoders@yahoogroups.com, Geoffrey gtb104@ wrote: ENV: Flex 1.5 served from WebSphere6.1 All of our Java objects used to use java.util.Date for date properties, but we had to convert them to java.util.Calendar. Since Flex 1.5 doesn't

[flexcoders] Re: AS to Java Translation Problems

2006-10-09 Thread Geoffrey
get your meaning. Thanks, Geoff --- In flexcoders@yahoogroups.com, Doug Lowder [EMAIL PROTECTED] wrote: Geoffrey, you may or may not find this to be helpful but I've found it much easier to deal with times as longs than as instances of various date classes (java.util.Date, java.sql.Date

[flexcoders] Re: AS to Java Translation Problems

2006-10-10 Thread Geoffrey
if I picked up on this earlier instead of banging my head against the monitor! --- In flexcoders@yahoogroups.com, Geoffrey [EMAIL PROTECTED] wrote: I gotcha. I'll pass this on to the server-side engineers and see what they think. Thanks! Geoff --- In flexcoders@yahoogroups.com, Doug

[flexcoders] Passing values

2006-02-01 Thread Geoffrey
I'm trying to pass the dimensions of the main window to a component for positioning of a popup. I keep getting the following error: Error /Main.mxml:18 The property being referenced does not have the static attribute. Here are some code snippets: -- Main.mxml -- mx:Panel

[flexcoders] Re: Passing values

2006-02-02 Thread Geoffrey
--- In flexcoders@yahoogroups.com, Geoffrey [EMAIL PROTECTED] wrote: I'm trying to pass the dimensions of the main window to a component for positioning of a popup. I keep getting the following error: Error /Main.mxml:18 The property being referenced does not have the static

[flexcoders] Re: Passing values

2006-02-02 Thread Geoffrey
. Matt -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Geoffrey Sent: Thursday, February 02, 2006 12:36 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: Passing values --- In flexcoders@yahoogroups.com, Geoffrey gtb104@ wrote

[flexcoders] Deliver compiled actionscript

2006-02-17 Thread Geoffrey
The flex application that we are delivering to a third party contains some propriatary actionscript. Is there a way to compile the actionscript or convert it to a format that can not be reverse engineered? Thanks. -- Flexcoders Mailing List FAQ:

[flexcoders] Re: Deliver compiled actionscript

2006-02-17 Thread Geoffrey
--- In flexcoders@yahoogroups.com, Roger Gonzalez [EMAIL PROTECTED] wrote: The flex application that we are delivering to a third party contains some propriatary actionscript. Is there a way to compile the actionscript or convert it to a format that can not be reverse engineered?

[flexcoders] Item Renderer Not Updating

2007-11-13 Thread Geoffrey
I have a List that is bound to an ArrayCollection. If I programaticly update the ArrayCollection, the itemRenderer fails to update as well. mx:List id=userList dataProvider={__resourceModel.userSummaries} selectable=false itemClick=onItemClick(event)

[flexcoders] Re: Item Renderer Not Updating

2007-11-13 Thread Geoffrey
I know there's got to be something simple that I'm overlooking, and I thought that I read something pertaining to this in the docs, but for the life of me I can't find it. Thanks for any suggestions, Geoff --- In flexcoders@yahoogroups.com, Geoffrey [EMAIL PROTECTED] wrote: I have a List

[flexcoders] Re: Item Renderer Not Updating

2007-11-14 Thread Geoffrey
. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Geoffrey Sent: Tuesday, November 13, 2007 8:40 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: Item Renderer Not Updating I know there's got to be something simple that I'm

[flexcoders] Re: Item Renderer Not Updating

2007-11-14 Thread Geoffrey
on the collection. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Geoffrey Sent: Tuesday, November 13, 2007 8:40 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: Item Renderer Not Updating I know there's got

[flexcoders] Re: Item Renderer Not Updating

2007-11-14 Thread Geoffrey
all of the CheckBoxes. Yea not happening. --- In flexcoders@yahoogroups.com, Alex Harui [EMAIL PROTECTED] wrote: Oh, maybe you need to set selectedField=selected From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Geoffrey Sent

[flexcoders] Re: Item Renderer Not Updating

2007-11-14 Thread Geoffrey
the dp to see if it is picking it up. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Geoffrey Sent: Wednesday, November 14, 2007 9:27 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: Item Renderer Not Updating

[flexcoders] Re: Item Renderer Not Updating

2007-11-14 Thread Geoffrey
, Geoffrey [EMAIL PROTECTED] wrote: It's not picking it up. I did the following in my command class: for (var i:uint = 0; i data.result.length; i++) { // Get the current result and create a ResourceItemModel from it userSummaryVO = UserSummaryVO(data.result[i]); item = new ResourceItemModel

[flexcoders] Re: Item Renderer Not Updating - Fixed

2007-11-14 Thread Geoffrey
PROTECTED] wrote: Ok, next thing to see is if collectionChange events fire when the values are reset to false. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Geoffrey Sent: Wednesday, November 14, 2007 12:17 PM To: flexcoders

[flexcoders] BlazeDS - Unknown destination error

2008-02-14 Thread Geoffrey
I'm trying to get BlazeDS working with our existing Flex application. When the application starts and tried to subscribe to a publisher, I get the following error: [MessagingError message='Unknown destination 'userTopic'.'] at mx.messaging.config::ServerConfig$/getChannelSet()

[flexcoders] Re: BlazeDS - Unknown destination error

2008-02-14 Thread Geoffrey
From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Geoffrey Sent: Thursday, February 14, 2008 11:28 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] BlazeDS - Unknown destination error I'm trying to get BlazeDS working with our existing Flex

[flexcoders] Re: BlazeDS - Unknown destination error - SOLVED

2008-02-20 Thread Geoffrey
to Jeff for the help. Geoff --- In flexcoders@yahoogroups.com, Geoffrey [EMAIL PROTECTED] wrote: I'm less than thrilled with BlazeDS right now. running their canned examples is no problem, but try to integrate it into your app and it's a bitch! Our environment is Eclipse 3.2.2, Apache

[flexcoders] BlazeDS Subtopics from Java

2008-02-20 Thread Geoffrey
I see plenty of examples of how to do subtopics all from MXML/AS code, but how to you create a message in Java that has a subtopic? Here are some code snippets: :::messaging-config.xml::: destination id=siteMessages properties server max-cache-size1000/max-cache-size

[flexcoders] Plot Graph and One Plot Point

2008-02-25 Thread Geoffrey
I have a PlotChart that uses a DateTimeAxis for the x, and a LinearAxis for the y. I get something strange when there is only one point to plot. The point renders fine on the chart, but the horizontal axis renderer only shows one date (1/1/70), and that's not the date of the plot point. I

[flexcoders] Zero line drawn on plot chart

2008-02-26 Thread Geoffrey
Is there a way to turn off the line that gets drawn to show where 0 (zero) is along the y axis? My y axis is a LinearAxis with a minimum less than 0 (zero). I have baseAtZero set to false, and autoAdjust set to false. Thanks, Geoff

[flexcoders] Re: Colouring the zero line on a chart axis

2008-02-26 Thread Geoffrey
Yea, and I want to turn it off (or set it to the same color as the background). --- In flexcoders@yahoogroups.com, leonpidgeon [EMAIL PROTECTED] wrote: Hi i have a chart with where the y-axis is -200 to 200 and want to know if there is a way to change the look of the zero axis which runs

[flexcoders] Re: Zero line drawn on plot chart

2008-02-26 Thread Geoffrey
--- In flexcoders@yahoogroups.com, Doug Lowder [EMAIL PROTECTED] wrote: Check out the showLine style of AxisRenderer. Seems like showLine=false ought to do what you want. --- In flexcoders@yahoogroups.com, Geoffrey gtb104@ wrote: Is there a way to turn off the line that gets drawn to show where 0

[flexcoders] Re: Zero line drawn on plot chart

2008-02-26 Thread Geoffrey
: mx:backgroundElements mx:GridLines horizontalShowOrigin=false/ /mx:backgroundElements There are other options with the GridLines class that you may want or need to set as well. --- In flexcoders@yahoogroups.com, Geoffrey gtb104@ wrote: That property actually removes the thick light blue line

[flexcoders] Re: Setting Chart Origin

2008-02-29 Thread Geoffrey
if you have a non-zero based axis. Geoff --- In flexcoders@yahoogroups.com, Sunil Bannur [EMAIL PROTECTED] wrote: Use the minimum property of the Axis Thanks -Sunil From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Geoffrey

[flexcoders] Re: Best practices for setting up large applications?

2008-02-29 Thread Geoffrey
February 2008 23:03 To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: Best practices for setting up large applications? --- In flexcoders@yahoogroups.com, Geoffrey gtb104@ wrote: We currently have a master project that links in 25 other projects

[flexcoders] Re: DateTimeAxis does not work correctly when minField set?

2008-02-29 Thread Geoffrey
I thought that I read somewhere that Flex assumes 2 digit dates are based off of 1900. Try setting the dates in your xml file to 4 character dates(2007, 2008, and 2009). Geoff --- In flexcoders@yahoogroups.com, Nate Pearson [EMAIL PROTECTED] wrote: Bump again. Someone has to have run

[flexcoders] Re: DateTimeAxis does not work correctly when minField set?

2008-02-29 Thread Geoffrey
on my datetimeaxis. I still only see years though Is there a way to custom render the tick marks on that axis? Thanks! Nate --- In flexcoders@yahoogroups.com, Geoffrey gtb104@ wrote: I thought that I read somewhere that Flex assumes 2 digit dates are based off of 1900. Try

[flexcoders] Re: Setting Chart Origin

2008-03-03 Thread Geoffrey
I've created a JIRA issue(Feature Request) for this. If anyone thinks this would be a useful feature, please vote for it. Issue number: FLEXDMV-1671 https://bugs.adobe.com/jira/browse/FLEXDMV-1671 Geoff --- In flexcoders@yahoogroups.com, Geoffrey [EMAIL PROTECTED] wrote: I do use

[flexcoders] Re: Can Flex 2.01 work with blazeds?

2008-03-11 Thread Geoffrey
In Flex 2.0.1, the attribute is uri not url. You would probably also need to add the 'messageTypes' attribute to the service tag for: proxy-config.xml messaging-config.xml remoteingConfig.xml You'll see the values required in your Flex 2.0.1 config files. Geoff --- In

[flexcoders] Re: BlazeDS Subtopics from Java - SOLVED

2008-03-12 Thread Geoffrey
= '*'. This resulted in an error when trying to actually publish a message. The subtopic must be nested, siteData.*. Hope this helps someone else. Geoff --- In flexcoders@yahoogroups.com, Geoffrey [EMAIL PROTECTED] wrote: I see plenty of examples of how to do subtopics all from MXML/AS code

[flexcoders] Re: Can't Get Socket Policy File

2008-03-24 Thread Geoffrey
No ideas? --- In flexcoders@yahoogroups.com, Geoffrey [EMAIL PROTECTED] wrote: A few points of clarrification. The OK: Policy file accepted status was there because I tried manually loading the policy file by doing: flash.system.Security.loadPolicyFile (http://removed:843/crossdomain.xml

[flexcoders] Can't connect to JMS with BlazeDS

2008-04-21 Thread Geoffrey
I'm trying to connect to our JMS service (Apache ActiveMQ), but am not having much luck. Here are some config files. message-config.xml destination id=flex-jms-topic adapter ref=jms/ properties server allow-subtopicstrue/allow-subtopics subtopic-separator./subtopic-separator

[flexcoders] Re: Can't connect to JMS with BlazeDS

2008-04-21 Thread Geoffrey
? To enable server side logging, go to services-config.xml and under logging section, make sure you have debug level and under patterns, have Service.Message.JMS. -Mete --- In flexcoders@yahoogroups.com, Geoffrey gtb104@ wrote: I'm trying to connect to our JMS service (Apache ActiveMQ

[flexcoders] Convert Flex App to AIR App

2008-05-07 Thread Geoffrey
I have an existing Flex app... a pretty complex one. Multiple projects, J2EE backend, RemoteObject calls, BlazeDS messaging with JMS, etc, etc. What's the best way to convert this existing app to an AIR app? Would it be possible to just reference the SWF from the main Flex app? I'd rather

[flexcoders] Re: Convert Flex App to AIR App

2008-05-07 Thread Geoffrey
for developers not used to ant to pick up and use in Flex Builder. If I had the time I would make an ant file but separating into a library is quick and easy. best of luck /r http://www.searchcoders.com/ On Wed, May 7, 2008 at 10:18 AM, Geoffrey [EMAIL PROTECTED] wrote: I have

[flexcoders] Can AIR app get Workstation Credentials?

2008-05-14 Thread Geoffrey
Our flex app requires a login(HTML page) before launching the main app(the SWF does not handle the logging in). Converting to an AIR app and I was wondering if I could get the logged in user's credentials from the workstation so we don't require a login screen.

[flexcoders] Re: Can AIR app get Workstation Credentials?

2008-05-14 Thread Geoffrey
From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Geoffrey Sent: Wednesday, May 14, 2008 2:11 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Can AIR app get Workstation Credentials? Our flex app requires a login(HTML

[flexcoders] Re: insidious gray bar in FULLSCREEN with OS X Air app

2008-05-15 Thread Geoffrey
I believe you mean WindowedApplication, not nativeWindow. --- In flexcoders@yahoogroups.com, Jim Hayes [EMAIL PROTECTED] wrote: Is it the status bar? If so, set the nativeWindow's showStatusBar = false. This one got me! (I felt stupid :-( ) -Original Message- From:

[flexcoders] Re: Can AIR app get Workstation Credentials?

2008-05-15 Thread Geoffrey
@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Geoffrey Sent: Wednesday, May 14, 2008 3:11 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Can AIR app get Workstation Credentials? Our flex app requires a login(HTML page) before launching the main app(the SWF does not handle

[flexcoders] Stress Testing a BlazeDS Application

2008-05-19 Thread Geoffrey
Is there a FREE way to stress test a real-time messaging BlazeDS application? I tried using JMeter, but I can't capture all of the http request data to set up the test because you need to use a proxy for that, and BlazeDS falls back to a polling channel if a proxy is used. I looked in flexunit,

[flexcoders] Automation libraries kill my app

2008-05-23 Thread Geoffrey
I'm trying to use FunFX(http://funfx.rubyforge.org/) to do some automated testing of our GUI. I noticed that after I add the automation libraries to the compiler options of my main project, I can no longer interact with various parts of the UI using the mouse. This includes textinput, textarea,

[flexcoders] Re: Automation libraries kill my app

2008-05-27 Thread Geoffrey
:08 AM, Geoffrey [EMAIL PROTECTED] wrote: I'm trying to use FunFX(http://funfx.rubyforge.org/) to do some automated testing of our GUI. I noticed that after I add the automation libraries to the compiler options of my main project, I can no longer interact with various parts of the UI

[flexcoders] Streaming BlazeDS connection reverting to polling

2008-06-05 Thread Geoffrey
I know there is a hardware imposed limitation to the number of BlazeDS real-time streaming connections that you can establish. I've heard it's in the hundreds, so I'm trying to see how many I can connect to my server(WinXP Pro 64-bit with two 3GHz Xeon CPUs and 8GB of RAM). Oddly enough after

[flexcoders] Re: Streaming BlazeDS connection reverting to polling

2008-06-05 Thread Geoffrey
Just what I was looking for. Thanks! Geoff --- In flexcoders@yahoogroups.com, Tim Hoff [EMAIL PROTECTED] wrote: Hi Geoffrey, Good info here: http://www.flexlive.net/?p=102 http://www.flexlive.net/?p=102 For long polling, looks like you can change the value for max-waiting-poll

[flexcoders] Missing AsnDecoder Class

2008-07-02 Thread Geoffrey
I seem to have the wrong version of the flex-messaging jar because when I start my server I get the spew below. I looked at all the flex-messaging jars on my system and I don't see it anywhere. All copies have the same manifest of: Manifest-Version: 1.0 Ant-Version: Apache Ant 1.6.2

[flexcoders] Re: Missing AsnDecoder Class

2008-07-02 Thread Geoffrey
Odd, the AsnDecoder class isn't listed in the online LCDS Java API. Maybe they didn't release this class. I can't seem to find any info about this class online. Jeeze, what the heck did I do? Geoff --- In flexcoders@yahoogroups.com, Geoffrey [EMAIL PROTECTED] wrote: I seem to have the wrong

[flexcoders] Re: Missing AsnDecoder Class - SOLVED

2008-07-07 Thread Geoffrey
I was missing the flex-messaging-req.jar. --- In flexcoders@yahoogroups.com, Geoffrey [EMAIL PROTECTED] wrote: Odd, the AsnDecoder class isn't listed in the online LCDS Java API. Maybe they didn't release this class. I can't seem to find any info about this class online. Jeeze, what

[flexcoders] RTMP and Spring Security(Acegi) Issues

2008-07-10 Thread Geoffrey
I'm wondering if anyone out there has implemented LiveCycle Data Services using Spring Security as their security layer? I'm having issues with RTMP communications between server/client, meaning I'm not getting any. I've modified our existing Java delegate to ast as the Assembler for a managed

[flexcoders] Re: RTMP and Spring Security(Acegi) Issues

2008-07-11 Thread Geoffrey
I've looked around the net and haven't found anything helpful. Any suggestions would be great. Thanks, Geoff --- In flexcoders@yahoogroups.com, Geoffrey [EMAIL PROTECTED] wrote: I'm wondering if anyone out there has implemented LiveCycle Data Services using Spring Security

[flexcoders] Re: RTMP and Spring Security(Acegi) Issues

2008-07-14 Thread Geoffrey
is cause by the RTMPFlexSession being outside the HTTPSession. Is there anyway to sync these up? Or is there anyway to do a single sign-on with RTMP? Jason --- In flexcoders@yahoogroups.com, Geoffrey gtb104@ wrote: I've looked around the net and haven't found anything helpful. Any

[flexcoders] Re: RTMP and Spring Security(Acegi) Issues - SOLVED

2008-07-15 Thread Geoffrey
().setAuthentication(auth); return auth; } This should authenticate the RTMP session. I don't know if this is the best way, but it seems to work. --- In flexcoders@yahoogroups.com, Geoffrey gtb104@ wrote: I'm guessing that we don't implement security the correct way

[flexcoders] Re: RTMP and Spring Security(Acegi) Issues - SOLVED

2008-07-16 Thread Geoffrey
, Geoffrey [EMAIL PROTECTED] wrote: I seem to have got it working. Thanks for your help jahhaj12345! What I ended up doing was to create a custom LoginCommand class. I used the one from here: http://blog.f4k3.net/fake/entry/acegi_logincommand_for_fds. I made two changes shown below

[flexcoders] LCDS Memory Usage

2008-07-23 Thread Geoffrey
Looking in the LiveCycle Data Services ES Developer's Guide, page 190, it states: By default, the Data Management Service caches items returned from fill() and getItem() calls and uses cached items to implement paging and to build object graphs on the server when implementing lazy

[flexcoders] Re: LCDS Memory Usage

2008-07-24 Thread Geoffrey
-data that is attached to all changes made. That meta-data is used to route changes to the right subscribed clients. Jeff From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Geoffrey Sent: Wednesday, July 23, 2008 5:21 PM To: flexcoders@yahoogroups.com Subject

[flexcoders] LCDS - Tomcat - JOTM Integration

2008-07-31 Thread Geoffrey
After a couple days of fussing around, I was able to successfully integrate JOTM into our webapp, and thought that I'd share what I did. Hopefully it will be useful to someone else. Environment: Eclipse 3.3.1.1 Tomcat 6.0.16 LCDS 2.5.1 JOTM 2.0.10 Installation: 1) Download JOTM 2.0.10 from

[flexcoders] How do you auto-refresh LCDS?

2008-07-31 Thread Geoffrey
I'm not sure how you refresh clients when there's a change on the server. After I perform a _ds.fill(), the user can delete 1+ of the items from the managed collection. The ActionScript looks like: private function deleteItems():void { var selectedTasks:Array = taskList.getSelectedTasks();

[flexcoders] Multiple AIR Instances

2008-08-04 Thread Geoffrey
Did I miss something? Can you only run one instance of an AIR app?

[flexcoders] DataServiceException

2008-08-04 Thread Geoffrey
I'm trying to create a DataServiceTransaction to push an update out to my DataService clients. I'm getting the below error when it tries to create the DataServiceTransaction. flex.data.DataServiceException: Unable to access UserTransaction in DataService. at

[flexcoders] Re: DataServiceException

2008-08-04 Thread Geoffrey
: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Geoffrey Sent: Monday, August 04, 2008 1:31 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] DataServiceException I'm trying to create a DataServiceTransaction to push an update out to my DataService clients. I'm getting

[flexcoders] Re: DataServiceException

2008-08-06 Thread Geoffrey
) { out.println(ne.toString()); } % done /body From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Geoffrey Sent: Monday, August 04, 2008 2:51 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: DataServiceException I just went

[flexcoders] Re: DataServiceException

2008-08-12 Thread Geoffrey
); out.print(seq.getItemInfo()); out.print(/pre); out.print(p); } } % done /code /body From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Geoffrey Sent: Wednesday, August 06, 2008 2:16 PM To: flexcoders

[flexcoders] LCDS ds-console WAR

2008-08-19 Thread Geoffrey
Does anyone use it? What does it do? I deployed it, and can run it, but I'm getting NPE errors when I select the other tabs. Also, there are no Applications listed in my ComboBox. I have a LCDS application up and running on my server, so I'd expect to see something listed. Here's the error

[flexcoders] Re: FDS (or LCDS) and refreshFill() from Java

2008-08-21 Thread Geoffrey
I'm having the same issues that Dimitrios had below(changes to properties of items in managed collections not showing up). I was wondering if Jeff Vroom's advice is still the preferred method for LCDS2.6. quote To update those properties, you need to call dts.updateItem for each item where the

[flexcoders] Re: LCDS ds-console WAR

2008-08-25 Thread Geoffrey
@yahoogroups.com, Geoffrey gtb104@ wrote: Does anyone use it? What does it do? I deployed it, and can run it, but I'm getting NPE errors when I select the other tabs. Also, there are no Applications listed in my ComboBox. I have a LCDS application up and running on my server, so I'd expect

[flexcoders] Re: RTMP and Spring Security(Acegi) Issues - SOLVED

2008-08-25 Thread Geoffrey
I was wondering if anyone knows exactly when the AcegiLoginCommand class gets processes. Does it get processed once when you create a DataService object, or does it get processed every time an RTMP request is made? --- In flexcoders@yahoogroups.com, Geoffrey [EMAIL PROTECTED] wrote: One last

[flexcoders] LCDS: Debug RTMP Traffic

2008-09-19 Thread Geoffrey
I'm having some issues with 2 DataServices running over RTMP. The first DataService loads on application startup and work fine (I get data). The second load later on in the application, but this one get's no data. It doesn't appear that it even makes the connect request because my result and

[flexcoders] Re: LCDS: Debug RTMP Traffic

2008-09-21 Thread Geoffrey
From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Geoffrey Sent: Friday, September 19, 2008 7:35 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] LCDS: Debug RTMP Traffic I'm having some issues with 2 DataServices running over RTMP. The first DataService loads

[flexcoders] Re: LCDS: Debug RTMP Traffic

2008-09-21 Thread Geoffrey
'my-rtmp' channel is connected. 'ds-producer-configurationData' producer acknowledge of '0ADAF447-0616-0F7B-376A-8758AC3385D9'. 'ds-producer-configurationData' producer connected. ConfigDS.as: Connection to DataService success. --- In flexcoders@yahoogroups.com, Geoffrey [EMAIL PROTECTED] wrote

[flexcoders] Re: LCDS: Debug RTMP Traffic

2008-09-21 Thread Geoffrey
sure you are compiling against the services-config.mxml file (it is a project/compiler option). Jeff From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Geoffrey Sent: Sunday, September 21, 2008 5:04 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: LCDS: Debug

[flexcoders] Re: LCDS: Debug RTMP Traffic

2008-09-25 Thread Geoffrey
Adobe support thought that it might be that too, but it doesn't look like that's the issue since it didn't really do anything different when I commented that out. --- In flexcoders@yahoogroups.com, Geoffrey [EMAIL PROTECTED] wrote: I'll try using the TraceTarget class. Our config uses port

[flexcoders] Re: LCDS: Debug RTMP Traffic

2008-09-26 Thread Geoffrey
@yahoogroups.com, Geoffrey [EMAIL PROTECTED] wrote: Adobe support thought that it might be that too, but it doesn't look like that's the issue since it didn't really do anything different when I commented that out. --- In flexcoders@yahoogroups.com, Geoffrey gtb104@ wrote: I'll try using

[flexcoders] TextInput with Prompt

2008-10-07 Thread Geoffrey
If you don't have a lot of space for a label next to a TextInput, then you may want to try using my TextInputPrompted class. You use this class just like you would any other TextInput, but there's an extra prompt property. Whatever you set prompt to is displayed in the TextInput in light grey.

[flexcoders] Resource Bundle Missing in AIR

2008-10-13 Thread Geoffrey
I'm using localization on a flex project for a slightly different use. We have 2 projects that share the same code base, but we want to change some UI text that's displayed. So, we're using localization to swap certain text strings to be project specific. Everything works fine for the web

[flexcoders] Re: Resource Bundle Missing in AIR

2008-10-20 Thread Geoffrey
Still have not found a fix for this. Any one else run into an issue like this? Thanks, Geoff --- In flexcoders@yahoogroups.com, Geoffrey [EMAIL PROTECTED] wrote: I'm using localization on a flex project for a slightly different use. We have 2 projects that share the same code base, but we

[flexcoders] Re: Resource Bundle Missing in AIR - Solved

2008-10-20 Thread Geoffrey
RTFM mx:Metadata [ResourceBundle(Resource_file_name)] /mx:Metadata Forgot this part --- In flexcoders@yahoogroups.com, Geoffrey [EMAIL PROTECTED] wrote: Still have not found a fix for this. Any one else run into an issue like this? Thanks, Geoff --- In flexcoders

[flexcoders] saveCache() - Couldn't acquire lock error.

2008-11-11 Thread Geoffrey
I'm getting an error when trying to save fill results to the local cache. Here's the error spew: onSaveCacheFault(): ERROR: (mx.messaging.messages::ErrorMessage)#0 body = (Object)#1 clientId = (null) correlationId = destination = extendedData = (null) faultCode =

[flexcoders] LCDS: DataService.fill() not filling

2008-11-18 Thread Geoffrey
Does anyone know what would prevent a DataService.fill() call to not populate it's managed collection? I have an ArrayCollection that is the dataProvider for a DataGrid. I see that data is coming back from the fill() call, but it doesn't appear to be passing that data to the ArrayCollection.

  1   2   >