[flexcoders] Web Service not returning all XML elements.

2009-10-14 Thread jc_bad28
Hi, I've created a simple Web Service for retrieving 25 columns. The ws is setup to return the data as type object. When I go into debug mode and inspect the results only show about 1/2 of the columns are being returned. If I invoke the service from my java client, all of the expected columns

[flexcoders] Re: Flex with .Net

2009-10-14 Thread jc_bad28
WebOrb is pretty sweet. I did run into some problems where our backend data wasn't setup very well and I couldn't assign table relations in WebOrb. Workaround was using views and stored procedures. I'm currently playing around with WSO2's Web Service Application Server (http://wso2.com). It

[flexcoders] Re: Question?? Best method for plotting a Moving Average

2009-10-20 Thread jc_bad28
How are you receiving your price data to plot? Price feed? Static file? What you could do is create a function to loop through the array and perform the moving average calculation and add the result as an extra column in the array. Are you plotting the full historic price data set? If so,

Re: [SPAM] [flexcoders] Web Service not returning all XML elements.

2009-10-20 Thread jc_bad28
, then process it yourself into an ArrayCollection of strongly typed value objects. Tracy Spratt, Lariat Services, development services available _ From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of jc_bad28 Sent: Wednesday, October 14, 2009 3:01

[flexcoders] Can't bind XMLListCollection to Datagrid

2009-10-24 Thread jc_bad28
I changed my webservice call to return e4x but I can't get the XMLListCollection to bind to the datagrid. Here is the pertinent AS code: [Bindable] private var Employees:XMLListCollection; private

[flexcoders] Re: Question?? Best method for plotting a Moving Average

2009-10-25 Thread jc_bad28
of the numbers by the count (20) and take the square root. It's a brain teaser and I am working on it a piece at a time. If anyone has a shortcut I'd take it. --- In flexcoders@yahoogroups.com flexcoders%40yahoogroups.com, jc_bad28 jc_bad28@ wrote: How are you receiving your price data

[SPAM] Re: [flexcoders] Can't bind XMLListCollection to Datagrid

2009-10-26 Thread jc_bad28
) ; } _ From: jc_bad28 jc_ba...@... To: flexcoders@yahoogroups.com Sent: Sunday, 25 October, 2009 13:30:24 Subject: [flexcoders] Can't bind XMLListCollection to Datagrid I changed my webservice call to return e4x but I can't get the XMLListCollection to bind to the datagrid. Here

[flexcoders] Handling Relational Data in a Form?

2009-11-02 Thread jc_bad28
I've created a web service that returns a dataset from some relational tables. Tables 1 and 2 are the source tables. View 1 is the selected data that I send out as XML from a web service for the Flex UI. View 1 lists out all of the operations and then a bunch of query stuff, I populate the

[flexcoders] Re: Handling Relational Data in a Form?

2009-11-02 Thread jc_bad28
); } --- In flexcoders@yahoogroups.com, jc_bad28 jc_ba...@... wrote: I've created a web service that returns a dataset from some relational tables. Tables 1 and 2 are the source tables. View 1 is the selected data that I send out as XML from a web service

[flexcoders] Re: the most popular way to be connected with sql server REFdn0085136210

2009-12-08 Thread jc_bad28
WSAS Web Service Application Server. http://wso2.com/products/web-services-application-server/ One of the cool things you can do is create web services from multiple data sources which means you could basically query across different servers/databases/platforms. --- In

[flexcoders] Re: How long does it take to learn Flex and get a job?

2010-01-18 Thread jc_bad28
One thing to consider is 1 year of experience or 1 month of experience repeated for 12 months. Big difference. What I mean is that learning the syntax and usage of Flex is one thing. Creating Flex apps to handle real world problems is another thing entirely. Most tutorials that have you

[flexcoders] Re: Should I follow this recommendation when it comes to Flex learning curve?

2010-01-21 Thread jc_bad28
Why can't you learn both at the same time? Flex by itself is all nice and dandy but the power comes from being able to create cross-browser, desk top deployable front-end to business processes and data. Techincally, the business logic can be built into Flex for a lot of stuff, but it's

[flexcoders] Re: Adobe pulls Single CPU and 100-user licenses

2010-01-21 Thread jc_bad28
It might be a good opportunity to loosely couple things and apply a more Service Oriented Architecture approach. Using SOA principles, changing out the business logic layer ie BlazeDS or LiveCycle wouldn't require a massive rewrite of the data or client layer. Just in how the data and

[flexcoders] Re: Adobe pulls Single CPU and 100-user licenses

2010-01-21 Thread jc_bad28
It might be a good opportunity to loosely couple things and apply a more Service Oriented Architecture approach. Using SOA principles, changing out the business logic layer ie BlazeDS or LiveCycle wouldn't require a massive rewrite of the data or client layer. Just in how the data and

[flexcoders] Re: [HELP] Little help with parsing datas

2010-01-23 Thread jc_bad28
My approach would be to load all the rows and parse the // characters as a column, get a count of rows where that column is not empty, and then delete them. --- In flexcoders@yahoogroups.com, ~[TM3]~[Dev]At0ng[/Dev]~[/TM3]~ atong...@... wrote: I recently have this code from

[flexcoders] Re: How to parse xml with namespaces

2010-01-23 Thread jc_bad28
Here's how I handle the messy SOAP and namespace returned from my web service application server: (I set the return format to e4x) private function webServiceResultHandler(event:ResultEvent):void { var xmlResult:XMLList = event.result as XMLList; var xmlSource:String =

[flexcoders] Re: Best practices regarding XML to VO conversion

2010-02-11 Thread jc_bad28
Here is how I convert XML from a SOAP web service into a VO. The VO Class: package vo { [Bindable] public class Product { public var ID:String; public var Category:String; public var Price:String; public var

[flexcoders] Re: access mdb files with flex 3 reside in same directory

2010-03-24 Thread jc_bad28
Flex can't natively connect directly to a database. There needs to be some sort of middle layer. (AIR apps can connect directly to SQLite, though.) For the Access DB I inherited, I ended up migrating the whole thing to MS SQL and then created web services. Then I use Flex's web service

[flexcoders] Re: From your own experience how long does it take to learn AS3?

2010-03-24 Thread jc_bad28
Don't worry about having to refer back to the materials. I'm almost a year into programming with AS3 and even though I've got a BS in IT and can program in a few other languages, I still have to refer to AS3 materials quite regularly. I'm betting it's the same case for a lot of developers