[flexcoders] SOLVED - AMF, IE, and a non-trusted certificate

2009-07-23 Thread Anthony DeBonis
but it never happened so we were chasing a ghost. Once we set up our own LCDS server we could isolate the problem fast. properties add-no-cache-headersfalse/add-no-cache-headers /properties --- In flexcoders@yahoogroups.com, Anthony DeBonis anth...@... wrote: Still not working in IE

[flexcoders] Re: AMF, IE, and a non-trusted certificate

2009-07-22 Thread Anthony DeBonis
SKD it works in IE... I tried monkey patching rpc.swc from 4.o to 4.2 and that did not seam to help. Any support would be appreciated. Anthony --- In flexcoders@yahoogroups.com, Tom Chiverton tom.chiver...@... wrote: On Tuesday 21 Jul 2009, Anthony DeBonis wrote: More information on this IE

[flexcoders] Re: AMF, IE, and a non-trusted certificate

2009-07-21 Thread Anthony DeBonis
Tom, More information on this IE issue - we don't think its a cert issue at all because if we compile with the Flex 4 SDK it works fine in IE. Any ideas? --- In flexcoders@yahoogroups.com, Tom Chiverton tom.chiver...@... wrote: On Friday 10 Jul 2009, jer_ela wrote: calls still fail, and

[flexcoders] Re: AMF, IE, and a non-trusted certificate

2009-07-17 Thread Anthony DeBonis
This is still a problem but we know more now.. It's not the cert or proxy. IF we compile the Flex application with Flex 4 IT WORKS. Tried 3.2, 3.3,3.4 and it does not work - remote object calls still fail when using IE Any ideas? Anthony --- In flexcoders@yahoogroups.com, Tom Chiverton

[flexcoders] Re: AMF, IE, and a non-trusted certificate

2009-07-17 Thread Anthony DeBonis
? Perhaps IE does not like to have both HTTP and HTTPS calls on the same page? Stabbing in the dark here ;-} --- In flexcoders@yahoogroups.com, Anthony DeBonis anthony@ wrote: This is still a problem but we know more now.. It's not the cert or proxy. IF we compile the Flex application

[flexcoders] Re: Remote AMF all in IE7 Fails NetConnection.Call.Failed: HTTP: Status 403

2009-07-15 Thread Anthony DeBonis
) or perhaps some registry error? --- In flexcoders@yahoogroups.com, Anthony DeBonis anthony@ wrote: Need a fix for this ASAP - any help would be great We have remote object calls to LCDS that work fine in Firefox and Chrome but fail when we user IE 7 as the browser. FaultDetail

[flexcoders] Remote AMF all in IE7 Fails NetConnection.Call.Failed: HTTP: Status 403

2009-07-14 Thread Anthony DeBonis
Need a fix for this ASAP - any help would be great We have remote object calls to LCDS that work fine in Firefox and Chrome but fail when we user IE 7 as the browser. FaultDetail: NetConnection.Call.Failed: HTTP: Status 403 Channel.Connect.Failed error NetConnection.Call.Failed: HTTP: Status

[flexcoders] Re: Mate CacheSetter

2009-06-26 Thread Anthony DeBonis
We use static constants for all these properties so we don't end up with simple type Os Example: static public const PROP_APPLICATION_IS_READY:String = applicationIsReady; private var _applicationIsReady:Boolean; + setter/getter And in the map mate:PropertyInjector

[flexcoders] Re: subversion ? where do i start

2009-06-23 Thread Anthony DeBonis
You can install SubClipse http://subclipse.tigris.org/ into FlexBuilder and follow instruction on pulling the src right into a Flex Project. Or install something like Tortois http://tortoisesvn.tigris.org/ --- In flexcoders@yahoogroups.com, luvfotography ygro...@... wrote: Hi, I want to

[flexcoders] Re: Flex / Fireworks integration

2009-06-03 Thread Anthony DeBonis
Yes we tried it for a while on a project with a UI designer... it generates allot of extra styles ie style_2 for something on one screen and style_2 for something else on another screen. Ok for quick mock up but not all that good for real UI development where you want to create custom

[flexcoders] Re: link examples to sell Flex apps to small business clients

2009-05-08 Thread Anthony DeBonis
For sending out emails with links and file download buttons I use www.kineticast.com - Flex based app that is perfect for this + it give the tracking to see who you sent the email to and if they pressed/followed the link or download button.

[flexcoders] LCDS - For a Chat Application

2009-04-21 Thread Anthony DeBonis
Anyone have an idea on how to use LCDS or BlazeDS for a Chat Application? Its easy to get your basic chat up and running with a simple producer/consumer messaging BUT its not clear on how to: 1)Set up a list of available rooms (Subtopics) so that all users get a pick list of available

[flexcoders] flex.portal.GenericFlexPortlet - app_uri on Web Logic

2009-04-14 Thread Anthony DeBonis
Has anyone got this to work and if so what did you put into app_uri? The GenericFlexPortlet class is not well documented but it sort of works when you need to deploy a Flex app inside a portal. I can get the application to come up inside the portal running on WebLogic Portal ONLY if I put the

[flexcoders] Re: Uploading file over HTTPS produces Error #2038: File I/O Error.

2009-04-13 Thread Anthony DeBonis
I ran into this exact issue with a self signed cert on a staging server- once we installed a valid cert all was well.

[flexcoders] Re: Spring vs Flex

2009-03-30 Thread Anthony DeBonis
Check out what Christophe Coenraets has put together using BlazeDS http://www.adobe.com/devnet/livecycle/articles/blazeds_spring.html --- In flexcoders@yahoogroups.com, senthilkumarirtt senthilkumari...@... wrote: hi i need to integrate spring and flex application. ( i want to get data

[flexcoders] Re: Database Viewer

2009-03-25 Thread Anthony DeBonis
If the DB is SqlLite you can use Christophs Coenraet's application http://coenraets.org/blog/2008/02/sqlite-admin-for-air-10/ If your are talking MySql, Oracle... you can't connect dirrect to DB and there are plenty of posts on this topic. We wrote a in-house tool that connects to DB though

[flexcoders] Re: Database Viewer

2009-03-25 Thread Anthony DeBonis
Very nice - thanks for the heads up on this tool. --- In flexcoders@yahoogroups.com, Alan K ultr...@... wrote: Dude, 4get that! Lita is where it¹s at. http://www.dehats.com/drupal/?q=node/58 HollA!!! Alan If the DB is SqlLite you can use Christophs Coenraet's application

[flexcoders] Re: comboBox in datagrid

2009-03-10 Thread Anthony DeBonis
Are you talking about an example like this? You may be better off creating a reusable/testable component in separate AS or MXML file. mx:Component mx:CheckBox creationComplete=init() mx:Script ![CDATA[

[flexcoders] Re: How to acces POST of REST Service thru Flex (Couldn't establish a connection

2009-03-09 Thread Anthony DeBonis
Try switching destination to url destinations need to be preset in services-config.xml url=http://10.176.95.32:8889/SunRestTest/sunTest/testRest; Also add a fault handler would help so you can place a break point and look at fault event object for details. --- In flexcoders@yahoogroups.com,

[flexcoders] Re: writing data to SQL database

2009-02-17 Thread Anthony DeBonis
You may find not many people use the wizard - its ok for a quick demo (maybe code table admins) but not for real application development. Check the CF Logs under the CF install dir, there may be something in the logs to tell what the problem is IF its on the CF side. I often create a basic cfm

[flexcoders] Re: problem with services-config.xml in multiple work environments..

2009-02-17 Thread Anthony DeBonis
What is the service type? If you talking AMF be sure to use {server.name} and not hard code the name... this is the default for most of the services in the config... did you have to change yours? Example - channel-definition id=my-amf class=mx.messaging.channels.AMFChannel

[flexcoders] Re: Form on several page

2009-02-11 Thread Anthony DeBonis
/ Anthony DeBonis www.troywebconsulting.com --- In flexcoders@yahoogroups.com, christophe_jacquelin christophe_jacque...@... wrote: Hello, How to make a form inside several pages ? Thank you, Christophe,

[flexcoders] Re: Adobe Presentation Tool

2009-02-09 Thread Anthony DeBonis
If you need to send out and track views of a presentation checkout: http://www.kineticast.com Includes recording and embedding video too...

[flexcoders] Re: filtering blazeds messages

2009-01-21 Thread Anthony DeBonis
Message Service destinations support subtopics - The subtopic feature lets you divide the messages that a Producer component sends to a destination into specific categories in the destination. You can configure a Consumer component that subscribes to the destination to receive only messages

[flexcoders] Re: Accessibility stopped working

2009-01-15 Thread Anthony DeBonis
Try compiling with accessible turned off and get the swf size - when you turn accessible compile back on the swf size should be a bit larger. This will tell you if the compile is backing in the needed classes. If so it may be the client tool you're using to run the application. Can you give

[flexcoders] Re: warning on 'back' button before closing application?

2009-01-14 Thread Anthony DeBonis
Yes it is possible but you need some JavaScript You can create a js include file or put this in your wrapper template file. The idea is to put a event listener on the onbeforeunload function. I have tested this in a few more common browsers and it works. window.onbeforeunload =

[flexcoders] Re: ExternalInterface erros

2009-01-12 Thread Anthony DeBonis
-What browser are you using - or does it happen in all browsers - Can you get something simple to work like this ExternalInterface.call(alert('TEST')); -Can you post the code?

[flexcoders] Re: How to config LCDS in websphere 6?

2009-01-05 Thread Anthony DeBonis
LCDS can be deployed as a war (or part of ab ear) or even picked apart and integrated into an existing application if needed. Help Doc http://help.adobe.com/en_US/livecycle/es/lcds_installation.html#websph ere I have deployed it to WS in the past so I know it can be done - not sure if your

[flexcoders] Re: DataGrid - create dynamic columns

2008-12-29 Thread Anthony DeBonis
Here is a snip of code that shows you how to do this. Its from a tool that just dumps rows/columns based on some basic xml data. Hope it helps you out nameList = dvDmML.rawData.fld_names.fld_name; var rows:XMLList = dvDmML.rawData.rows.row;

[flexcoders] Re: Flex Certification for Flex 3

2008-12-11 Thread Anthony DeBonis
It already is http://www.adobe.com/devnet/flex/articles/flex_certification.html

[flexcoders] Re: Flex training

2008-12-10 Thread Anthony DeBonis
If you have a group I would recommend an Adobe Training Class If 1-2 people a custom class/mentoring works great. Farata Systems is a good call in NYC Troy Web Consulting - Albany NY Certified Adobe Instructors + Mentoring This link can help you find a training partner

[flexcoders] Re: Invoking Flex fuction from Javascript for close.window

2008-12-09 Thread Anthony DeBonis
With ExternalInterface.call you can inject JavaScript into the wrapper document. if ( ExternalInterface.available ) { ExternalInterface.call('alert(TEST)'); } A good example of what your talking about is here thanks to Greg Jessup

[flexcoders] Re: Invalid Login error connecting to salesforce.com using as3salesforce.swc

2008-12-04 Thread Anthony DeBonis
All my Flex/AS code still works with my ID that I have been using for 9+months. I am using as3Salesforce.swc 52KB in size as3Salesforce.swc is provide by SalesForce.com under developer.force.com so you would need to post a issue with them I believe.

[flexcoders] Re: data serialization

2008-12-03 Thread Anthony DeBonis
Need to add this to your UserList.as file [RemoteClass(alias=com.whatever.UserList) Read up on RemoteClass meta tag to be sure you get your data types from/to Java and AS correct. This works if the var names match and you get the data types correct - We do it all the time.

[flexcoders] Re: data serialization

2008-12-02 Thread Anthony DeBonis
You did not post your code for UserList.as Did you add the meta tag RemoteClass? If not Flex does not know how to map the class back... [RemoteClass(alias=com.whatever.UserList) --- In flexcoders@yahoogroups.com, cooleman_99 [EMAIL PROTECTED] wrote: Hello, Im having problem getting

[flexcoders] Re: how to play partially downloaded local flv file ?

2008-12-02 Thread Anthony DeBonis
Are you using FileStream? Are you calling open() with FileMode.READ ? On systems that support file locking, a file opened in write or update mode (FileMode.WRITE or FileMode.UPDATE) is not readable until it is closed.

[flexcoders] Re: Security sandbox and two domains

2008-11-24 Thread Anthony DeBonis
I don't think it matters what is in the swf it matters that one swf is requesting something from other then the server it was loaded from. If your running Flash 10 things have changed - you have to do more things then just a basic crossdomain file. Run your application in FireBug and you will

[flexcoders] Re: need help in BlazeDS

2008-11-21 Thread Anthony DeBonis
Try adding mx:TraceTarget / to you main application file and run the application in debug mode. You should get more information in the console window showing traffic. Also test that the endpoint is working: example: https://local/doh2/applinks/ServiceTester/messagebroker/amfsecure Also

[flexcoders] Re: Security Sandbox Violation message

2008-11-21 Thread Anthony DeBonis
A lot of people are having issues with this now: Adobe implemented the stricter requirements in Flash Player in three phases. In Phase 1, which began with Flash Player 9,0,115,0, a small number of strict rules were enforced immediately, but most violations of the strict rules resulted only in

[flexcoders] Re: how to improve performance in flex application

2008-11-06 Thread Anthony DeBonis
Can you test the back end http service independent of Flex to see how fast it is... Make as many improvements you can, including server side caching if possible. Firebug plug to Firefox in can give you a quick view of how fast your data is returned and what size the payload is If the data

[flexcoders] Re: Charts

2008-11-06 Thread Anthony DeBonis
Go to: http://examples.adobe.com/flex2/inproduct/sdk/dashboard/dashboard.html Right Click View Source on the app Dirrect link is here http://examples.adobe.com/flex2/inproduct/sdk/dashboard/srcview/index.ht ml Check out RegionalDetail.mxml This should help

[flexcoders] Re: flex and oracle

2008-10-21 Thread Anthony DeBonis
) directly connect to the database. Flex can be thought of N-tier because to get to the database you will normally use an application server. Thanks Tom --- In flexcoders@yahoogroups.com, Tom Chiverton [EMAIL PROTECTED] wrote: On Monday 20 Oct 2008, Anthony DeBonis wrote: You would not want

[flexcoders] Re: flex and oracle

2008-10-20 Thread Anthony DeBonis
You would not want to make a direct Oracle connection from Flex – old Client/Server technology does not work over the Intranet. You need to make service call either RemoteObject / WebService/HTTP Service calls. For RemoteObject calls you can look into BlazeDS

[flexcoders] Any luck with FlexBuilder Web Service Import Wizard and JAX-WS?

2008-10-20 Thread Anthony DeBonis
Has anyone had the with the FlexBuilder Web Service Import Wizard work with JAX –WS? Just checking - I am hearing reports it does not work. Looks to be a problem working with JAX-WS based web service – works with less complex JAX-RPC based service but can also fail on more complex RPC

[flexcoders] Re: handling data within a datagrid

2008-10-07 Thread Anthony DeBonis
I tend to use the Flex Debugger at this point and break in the result handler. Then right click the var in the code event and watch it it will be in the Expressions Tab and you can drill in to see exactly what is in the event object. You must be close so dont give give up.

[flexcoders] Re: Dynamic Embedded Images

2008-10-07 Thread Anthony DeBonis
You will increase the swf size if you just embed so you may want to look at using modules or check this cool idea out by Dirk Eismann. This will allow the application to load fast but then stream in the other graphics you need.

[flexcoders] Re: Livecycle / FMS3 - remote calls

2008-09-26 Thread Anthony DeBonis
Looks to be a bug that is solved in BlazeDS - so you would expect it to work in LCDS. Can you try it with BlazeDS? Bug https://bugs.adobe.com/jira/browse/BLZ-83

[flexcoders] Re: Java from Flex

2008-09-22 Thread Anthony DeBonis
You can call these libs from LCDS or BlazeDS (or WebOrb too) using the RemoteObject tag and alittle server side config - check out the example apps deployed. I would suggest creating a service facade layer of POJO, plan old Java objects, that abstract all your backend Java code/libs. Wrap any

[flexcoders] Re: Problem in Identfying Flash Objects in QTP 9.2

2008-08-07 Thread Anthony DeBonis
Did you include automation.swc, automation_agent.swc, and qtp.swc? Besure to use IE and not Firefox... but if your using ActiveX I would guess your already using firefox. Also - turn off Tabbed browsing - this can cause issues. It should work

[flexcoders] Re: Remote file accesing

2008-07-16 Thread Anthony DeBonis
Can you supply more information? Type of file, what server backend you have...

[flexcoders] Re: how can I get the Java Session 's data from Flex cilent side

2008-07-11 Thread Anthony DeBonis
If your not using RemoteObject (recommended) you could use a httpservice to a Servet that wrapped the session data in xml and return it. Just an idea.

[flexcoders] Re: Question about LCDS ES2.6 setting?

2008-06-25 Thread Anthony DeBonis
Under dir \tomcat\bin you will find server.xml file Change the port in this section: Connector port=8400 protocol=HTTP/1.1 connectionTimeout=2 redirectPort=9400 / to Connector port=80 protocol=HTTP/1.1 connectionTimeout=2

Re: RES: [flexcoders] Server to client calls

2008-06-23 Thread Anthony DeBonis
BlazeDS has some examples of dispatching events from Java but in your Flex application you will have to set up consumer to listen(pole) for messages. Sample in BlazeDS: http://localhost:8400/samples/#traderdesktop Start the feed triggers a JSP with code like this... Feed feed = new Feed();

[flexcoders] Re: How to convert Powerpoint presentation tp Flex or Flash?

2008-05-31 Thread Anthony DeBonis
We have used both flashSpring and dreamsoft on a Coldfusion server to take a upload PPT and convert them into swf files that get pulled back into the Flex application. --- In flexcoders@yahoogroups.com, markflex2007 [EMAIL PROTECTED] wrote: I have a ppt file and want to play it with Flex.

[flexcoders] Re: The BlazeDS server ?

2008-05-31 Thread Anthony DeBonis
CF can do RemoteObject no problem out of the Box. You can use BlazeDS if you want to do messaging... push or pull/ publish subscribe. It also allows you to call Java/pojo from Flex and other features too. --- In flexcoders@yahoogroups.com, markflex2007 [EMAIL PROTECTED] wrote: Hi Do I

[flexcoders] Re: 1120 Error

2008-04-29 Thread Anthony DeBonis
Try and do a full code/src search for Footarget maybe you had it at one time - if its not found try and do a Project Clean to get rid of the ghost. If not please post your code.

[flexcoders] Re: LinkButton in DataGrid

2008-04-29 Thread Anthony DeBonis
mx:DataGridColumn headerText=COlumn 1 mx:itemRenderer mx:Component mx:Button label=Click Test width=200 click=outerDocument.handleClick(event) / /mx:Component /mx:itemRenderer /mx:DataGridColumn Once you get this to work its the same idea but

[flexcoders] Re: Cache memory Issue (Strange)

2008-04-28 Thread Anthony DeBonis
Yes – we have seen this issue mainly in IE not Firefox. The browser cache would need to be cleared for it to pick up the new swf file. We ended up adding in a version check to be sure the user is running the latest swf Also see:

[flexcoders] Re: problem with MessageService in custom ServiceAdapter

2008-04-11 Thread Anthony DeBonis
In our application we have have set the destination messageChatConsumer = new Consumer(); messageChatConsumer.destination=evacML.messageChatDestinationName; destination is set in the config files: C:\fds2\jrun4\servers\default\{YOUR APP}\WEB-INF\flex data-management-config.xml or

[flexcoders] Re: Power point in FLEX

2008-02-20 Thread Anthony DeBonis
sliderocket creates presentation not in ppt format thought http://www.sliderocket.com I have code we use to import a ppt file and export .swf files for each slide in a ppt file - if you need it. Can be used with ColdFusion or Java. - one is using FlashSpring - one uses DreamSoft PPT import

[flexcoders] Re: Reset State in Flex

2008-02-20 Thread Anthony DeBonis
This will do it navigateToURL(new URLRequest(http://.;, _self);

[flexcoders] Re: Simulating Flex Client requests using Java?

2008-02-15 Thread Anthony DeBonis
Yes it supports Async calls using addAsync Here is a snip beerDataService.addEventListener(ResultEvent.RESULT, addAsync(result, 3000)); beerDataService.send();

[flexcoders] Re: Flex 3.0 Beta + QTP 9.2 Trial Version Problem

2008-02-15 Thread Anthony DeBonis
Did you include automation libraries (SWCs) at compile time -include- libraries C:\...\libs\automation.swc C:\...\libs\automation_agent.swc C:\...\libs\qtp.swc Besure not to use Tabbed Browser feature - turn it off. Compare project settings between your project and sample store looking for

[flexcoders] Re: Flex training classes in the east coast, USA

2008-02-04 Thread Anthony DeBonis
I recommend http://www.figleaf.com/training/flex.cfm --- In flexcoders@yahoogroups.com, Sharat Gajulapalli [EMAIL PROTECTED] wrote: Hi all, I'm looking for a 2-3 day Flex course anywhere in the east coast and preferably in the Washington DC metro area. Any recommendations would be

[flexcoders] Re: Please help - Flex component kit

2008-01-25 Thread Anthony DeBonis
I have this working in both Flex 1.2 w/Kit 1.0.1 and Flex 3 w/Kit 1.1.2 But what I found in Flex 3 is there are now 2 Commands: Convert Symbol to Flex Component Convert Symbol to Flex Container I needed to use the 1st one Flex Componet I also needed to change my code to use the Symbol Name

[flexcoders] Re: How to compile my application?

2008-01-25 Thread Anthony DeBonis
This is easy, just save (auto build will compile it) and run the app local to make sure it works. It will launch a browser and if you look at the path you will see it points to an html file in the /bin dir. You need almost everything in the /bin dir deployed/ftp to the web server... including

[flexcoders] Re: Access TWAIN scanners from Air

2008-01-23 Thread Anthony DeBonis
Everyone has opinions on AIR, but I can tell you I am writing some AIR base apps that solve some real life problems, I just can't wait for it to get out of Beta to share AIR with more customers. To me AIR is no Joke. Sorry I can't help you with the TWAIN issue. --- In

[flexcoders] Re: Multiple Files Download

2008-01-07 Thread Anthony DeBonis
We have used this component by Ryan Favroand it works great; http://ryanfavro.newmediateam.com/blog/index.cfm/2006/8/12/Flex-2-Multi- File-Upload-Example It's wired to CF in this example but could work with any backend.

[flexcoders] Re: How to use flexmdi framework in flex builder 2.0.1

2008-01-07 Thread Anthony DeBonis
I worked up 2 simple examples for you 1st in AIR and the 2nd one is Flex- hope this helps: The only thing I did under properties was add flexmdi.swc to library path using add swc ?xml version=1.0 encoding=utf-8? mx:WindowedApplication xmlns:mx=http://www.adobe.com/2006/mxml;

[flexcoders] Re: Multiple Files Download

2008-01-07 Thread Anthony DeBonis
Are you taking download to client desktop or download to server? Air or Flex Application

[flexcoders] Re: filedownload from internet to local disc

2007-12-12 Thread Anthony DeBonis
You can not in Flex because of the Flash/Browser security. The FileReferance obj will allow you to browse/pick a file and post it back to the server but you do not have access to the bits in Flash. You need to use AIR if this is a requirement. --- In flexcoders@yahoogroups.com, Enrico Hofmann

[flexcoders] Re: Printing a large string over multiple pages

2007-12-03 Thread Anthony DeBonis
Here is some code we use to slice up a long list and print on X# of pages. You should be able to do somethink like this... Hope the code gets formated ok // Add 2nd page displaying names of selected organizations var selectedOrgList:List = new List();

[flexcoders] Re: creationComplete Not Firing

2007-11-30 Thread Anthony DeBonis
Be sure you put () creationComplete=onCreationComplete() With out parentheses you get warning but no error - but the method does not fire...

[flexcoders] Re: How to open a flex project that was created elsewhere?

2007-11-30 Thread Anthony DeBonis
Go to Menu: File Import ... then choose Existing Project to Workspace. Then choose the directory where the project lives, works well. --- In flexcoders@yahoogroups.com, Michael Pengi [EMAIL PROTECTED] wrote: I've downloaded a sample flex application, how do I open it in the flex builder

[flexcoders] Re: QTP doesn't record any actions.

2007-10-19 Thread Anthony DeBonis
I am using IE 7.05 and to turn off Tabbing you just: Menu Tools Internet Options On General Tab click Settings button under Tabs... then Uncheck Enable Tabbing Hope this helps Anthony

[flexcoders] Re: QTP doesn't record any actions.

2007-10-15 Thread Anthony DeBonis
I want to confirm that this does work, I even demo'd it at MAX in Chicago, but I did find that every once and a while it will stop recording clicks. Be sure to turn off Tabbing in IE for sure. I just wish there were some other 3rd OS/free tools that could record and play back user test cases

[flexcoders] Re: Does anybody use JMeter for load testing?

2007-10-15 Thread Anthony DeBonis
Tom, http://jakarta.apache.org/jmeter/ says - JMeter does not execute the Javascript found in HTML pages - When you have used JMeter in the past is it to run a Flex/Flash app or http load test the backend services? Thanks in Advance, Anthony

[flexcoders] Re: Web Hosting and RemoteObject

2007-10-15 Thread Anthony DeBonis
Also check that they are using CF 7.0.2 + because 7.0.1 does not have remoting as far as I have seen.

[flexcoders] Re: Timezone Problem

2007-09-21 Thread Anthony DeBonis
This is correct - Flash is converting the datetime on you based on your TimeZOne/Daylight Savings setting. If you return just a string date back from you DB query (or what every dataprovider) Flash will not do the convert but may mess up your sort. The data is comming from the Date object and

[flexcoders] Re: Working with Session....

2007-05-24 Thread Anthony DeBonis
Hope one of these helps you: I have not tried this yet could not find any example code BUT if your using FDS you could try FlexSessionBindingEven http://docs.greendog.ru/Programming/Flex/docs/fds2javadoc/flex/messagi ng/class-use/FlexSessionBindingEvent.html OR mx:RemoteObject

[flexcoders] Re: Working with Session....

2007-05-23 Thread Anthony DeBonis
I am sure there are many ways to make this happen some better then others. -IF values never change once they are logged in then you could pass them in a FlashVars... kinda oldschool but still works - Write them as JavaScript vars on page and read them in, like with at External Interface

[flexcoders] Does Flex support Client Side Digital Certificates

2007-05-23 Thread Anthony DeBonis
Does Flex support Client Side Digital Certificates? I have been asked this question several times each time I have a hard time finding and answer/proof. Has anyone implemented this and do you have a code that tests it out. If it's all https traffic I am sure the browser handles this fine

[flexcoders] Re: XML, does it have to be RSS?

2007-05-21 Thread Anthony DeBonis
On your httpService setresultFormat=xml Then use debugger to see what you get back in result event to then see how to pick out what your looking for. Should work with out a problem. --- In flexcoders@yahoogroups.com, Jason [EMAIL PROTECTED] wrote: Does the XML data HAVE to be an RSS?

[flexcoders] FYI - SYS-CON.TV To Present RIA Shootout Live From Times Square

2007-05-17 Thread Anthony DeBonis
This should be interesting: Panel will discuss Adobe's Flex, Microsoft's Silverlight, and Sun' JavaFX technologies as compared to AJAX Monday, June 4, 2007 - 1 PM EST

[flexcoders] Re: Flex and responsiveness

2007-04-04 Thread Anthony DeBonis
Recommend you close projects that you do not need open. Make sure to close Help page or just not leave in Releated Topics mode because each time you change focuse (like click on a class name in code) it will search all help docs... Minimize your installed pugins - the more you have the more

[flexcoders] Re: Generate Flex Forms on the fly

2007-02-19 Thread Anthony DeBonis
I just coded something like this - a adhoc custom form builder. I store the form definition in XML like xforms and at runtime I use the xml to create a Flex from on the fly. Create a empty mx:form tag with a ID For each element in your xml create a form item ( control) and do a addChild() to

[flexcoders] Flex 2 Dynamic DataGrid column width issue

2006-08-04 Thread Anthony DeBonis
We are using a DataGrid and appending columns to the right side and it works fine ONLY if the DataGrid is visable. IF we add columns and the DataGrid is in a ViewStack and not the current visible item in the stack THEN make it visible – the column widths are all messed up. We can find no way

[flexcoders] Re: How do you install CF Extensions for Flex 2?

2006-08-04 Thread Anthony DeBonis
After installing FlexBuilder 2 I found this dir: C:\WINDOWS\Downloaded Installations\Adobe Flex Builder 2\ColdFusion Extensions for Flex Builder and it has a file called Installing the ColdFusion Extensions for Flex Builder 2.htm Here are the instructions that worked for me: Installing the

[flexcoders] Re: Variable number of columns in ColumnChart

2006-07-31 Thread Anthony DeBonis
I also ran into an issue like while dynamicly creating ColumnSeries() this and .push onto the Array worked BUT does not update the Legend. I have tired resetting leged's DP back to the Chart again but nothing. Any ideas? Flex 2 w/Charting -- Flexcoders Mailing List FAQ:

[flexcoders] Re: Variable number of columns in ColumnChart

2006-07-31 Thread Anthony DeBonis
legend wasn't getting updated... HTH, Brendan On 7/31/06, Anthony DeBonis [EMAIL PROTECTED] wrote: I also ran into an issue like while dynamicly creating ColumnSeries() this and .push onto the Array worked BUT does not update the Legend. I have tired resetting leged's DP back

[flexcoders] Re: Flex 2.0 Deployment with Remote Coldfusion Server

2006-07-31 Thread Anthony DeBonis
The short answer is yes you can but there are many variables that will effect you setup. I was able to do it no problem using ColdFusion CFCs - worked on my local laptop and have deployed to several servers. If Flex app is delivered from the same host/port name then Flex will have no problem

[flexcoders] Re: Flex 2.0 Deployment with Remote Coldfusion Server

2006-07-31 Thread Anthony DeBonis
The short answer is yes you can but there are many variables that will effect you setup. I was able to do it no problem using ColdFusion CFCs - worked on my local laptop and have deployed to several servers. If Flex app is delivered from the same host/port name then Flex will have no problem

[flexcoders] Re: Datagrids and Updating a database!!

2006-07-31 Thread Anthony DeBonis
Here is an exmple - hope it helps: http://livedocs.macromedia.com/flex/2/docs/wwhelp/wwhimpl/common/html /wwhelp.htm?context=LiveDocs_Partsfile=0509.html Unless your using ColdFusion and the CF Wizards or DataServices you will need to code action script objects and CFC by hand to handle