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

Bill_Sahlas
Bill_Sahlas
Offline

Badges

Badges
4

Accepted Solutions

Accepted Solutions
0

Likes Received

Likes Received
0

Posts

Posts
23

Discussions

Discussions
22

Questions

Questions
1

Ideas

Ideas
0

Blog Posts

Blog Posts
0
Top badges earned by Bill_Sahlas
Customize the badges you want to showcase on your profile
Re: Flex 2.0 WebService woes - Adobe LiveCycle 27-11-2006
I submitted a bug report along with this test case.

Views

182

Likes

0

Replies

0
Re: HTTP to xml and back - Adobe LiveCycle 27-11-2006
The article and documentation heretalks about this subject in detail. It talks about how to use anXML data model for the purpose of binding data.

Views

186

Likes

0

Replies

0
Re: WebService for SOAP - problem with wsdl file parser - Adobe LiveCycle 27-11-2006
From a quick look at this WSDL the issue looks like we don'tsupport SOAP encoded arrays of custom types (instead of built intypes) very well and therefore this is a bug. A suggested workaround may be to use a sequence of an unbounded number of elementsinstead of the deprecated soap encoded array for transmitting anArray.Also, I'll enter a bug for the second observation 'you can'tcreate a function without input, WebService won't parse the wsdlfile ' as well.

Views

491

Likes

0

Replies

3
Re: Java -> AS mapping for arrays - Adobe LiveCycle 27-11-2006
the RemoteClass and the AS Object must be identical and havean exact property match. Any deviation will cause the processor torevert back to Object instead of the Customer class due toinconsistancies that are there

Views

202

Likes

0

Replies

0
Re: Problem getting FDS and CF to communicate - Adobe LiveCycle 16-09-2006
point of clarification - set the to matchwhat you've added to the Allowed IP list in the cf admin,192.168.1.150. Setting this attribute is an all or nothing type ofsetting - if you set it on CF then you need/must set it on the Flexside. the use-case for this is if you've got CF on Server1 and FDSon Server 2 - this is how you tell each instances what IP addressesare allowed to communicate. If both instances of CF and FDS are onlocalhost - *leave that attribute alone* in both places aslocalhost i...

Views

248

Likes

0

Replies

0
Re: Problem getting FDS and CF to communicate - Adobe LiveCycle 16-09-2006
let's see if I can help you out. That permissions error isusually related to RMI registry having no knoledge of the IPaddress. On the FDS server installation the sampledata-management-config.xml file has a section has a section thatshows that you need to specify the attribute ofthe properties elements section. I didn't see that mentioned in thelist of things that you configured or modified or checked - I seethat you allowed it on the CF side (admin settings) but not on theFlex side. The sample localhost -->...

Views

248

Likes

0

Replies

0
Re: How to retrieve column names from XML or database? - Adobe LiveCycle 14-09-2006
You can set the dataProvider attribute such that it is boundto a representation of XML (the results of a web service callperhaps) or any number of other data representitive objects thatyou can define (ArrayCollection, XMLListCollection, etc). You candefine these abstract objects with your data base schema, manually.Does your database expose operations as web services? Like ifyou've got a coldfusion component class which you canreference/execute as a webservice you can define an operation toretre...

Views

126

Likes

0

Replies

0
Re: WebService and XMLListCollection - Adobe LiveCycle 14-09-2006
You can go right from the WS result to the DataGrid when theresultFormat is set to "object". Otherwise you should review thisdocument/sample for syntax and "caveats" - http://livedocs.macromedia.com/flex/2/docs/wwhelp/wwhimpl/common/html/wwhelp.htm?context=LiveDocs_Parts&file=00001142.htmlHave you given the "object" resultFormat a test? import mx.controls.Alert; private function initializeApp():void { wsBlogAggr.getMostPopularPosts.send(); } 30 5

Views

205

Likes

0

Replies

0
Re: grid is not populating on creationComplete - Adobe LiveCycle 14-09-2006
I've chaged your code slightly and added comments to helpexplain - import mx.rpc.events.ResultEvent;import mx.controls.Alert;import mx.collections.ArrayCollection; private function initApplication():void { // myService is the RemoteObject tag reference id // once the application creation is complete callmyService.sayHelloQuery() method this.myService.sayHelloQuery(); }[Bindable]public var qResult:ArrayCollection;}public function handleQueryResult(event:ResultEvent):void{qResult=event.result as ArrayCollection;}

Views

131

Likes

0

Replies

0
Re: Directory structure for the new Data Services Project - Adobe LiveCycle 14-09-2006
Hello -first, those folders are necessary in deployment - You needonly the contents of the bin folder for deployment, not thesources. Since you're compiling the application locally in FB2 itplaces all of the supporting and necessary files into one locationnamely the "bin" folder. You'd deploy the "bin" folder's contentsto the FDS server, perhaps another FDS server that is not your"development" server -- like a production server. The data andconfiguration information that your app needs for FDS s...

Views

164

Likes

0

Replies

1