Your achievements

Level 1

0% to

Level 2

Tip /
Sign in

Sign in to Community

to gain points, level up, and earn exciting badges like the new
Bedrock Mission!

Learn more

View all

Sign in to view all badges

ChrisKStuart
ChrisKStuart
Offline

Badges

Badges
4

Accepted Solutions

Accepted Solutions
1

Likes Received

Likes Received
0

Posts & Comments

Posts & Comments
4

Discussions

Discussions
0

Questions

Questions
0

Ideas

Ideas
0

Blog Posts

Blog Posts
0
Top badges earned by ChrisKStuart
Customize the badges you want to showcase on your profile
Re: SQL to FLEX over the Internet - Adobe LiveCycle 19-03-2009
Consider encoding data into AMF format before sending toclient. This benchmark compares many data communication approaches,best performance was achieved with AMF (Select "Flex AMF - 5000Rows" from dropdown):http://www.jamesward.com/census/"The Flex AMF benchmark makes a RemoteObject request to theserver for 5000 rows. The server serializes the data in the AMFformat. AMF is a binary object format for ActionScript objects inthe Flash Virtual Machine. The client gets the AMF data over HTTP,shoves i...

Views

206

Likes

0

Replies

0
Re: Help with a few basic server concepts - Adobe LiveCycle 16-03-2009
Check out this benchmark, compares many data communicationapproaches, best performance was achieved with Flex RemoteObject(Select "Flex AMF - 5000 Rows" from dropdown):http://www.jamesward.com/census/"The Flex AMF benchmark makes a RemoteObject request to theserver for 5000 rows. The server serializes the data in the AMFformat. AMF is a binary object format for ActionScript objects inthe Flash Virtual Machine. The client gets the AMF data over HTTP,shoves it into memory, then updates the DataGri...

Views

213

Likes

0

Replies

0
Re: Cannot Set Text Value of "simpleContent" XML Element - Adobe LiveCycle 16-03-2009
Forgot to include generated code:/** * QueryType.as * This file was auto-generated from WSDL by the Apache Axis2generator modified by Adobe * Any change made to this file will be overwritten when thecode is re-generated. */package generated.webservices{ import mx.utils.ObjectProxy; import flash.utils.ByteArray; import mx.rpc.soap.types.*; /** * Wrapper class for a operation required type */ public class QueryType { /** * Constructor, initializes the type class */public function QueryType() {} pu...

Views

82

Likes

0

Replies

0
Cannot Set Text Value of "simpleContent" XML Element - Adobe LiveCycle 16-03-2009
Imported WSDL but cannot set the text value of"simpleContent" XML Elements. See WSDL element definition andsample code below:// WSDL Element Definition/* … */ // Instantiate objectvar opptyQuery:OpportunityQuery = new OpportunityQuery();// Instantiate typeopptyQuery.OpportunityName = new QueryType();// Set attribute valuesopptyQuery.OpportunityName.sortorder = "ASC";opptyQuery.OpportunityName.sortsequence = "1"; Resulting XML outputDesired XML output:Acme Inc*What is the ActionScript code...

Views

601

Likes

0

Replies

1