Expand my Community achievements bar.

AFCS(Cocomo) Explorer v 0.1

Avatar

Former Community Member
I finished a first raw version of AFC Explorer, basically its
functionally same as original AFCS.java.

here is brief rational behind it :
http://ledtechdesign.com/2009/02/afcscocomo-explorer-v-01/

and here is the distro with source :
http://ledtechdesign.com/examples/afcs_explorer/0.1/afcs_explorer.zip



I am still working on it, specifically on POJO part some code
cleanup and also to wrap a simple webapp around it. so will update
it periodically.



1 Reply

Avatar

Former Community Member
v2 (with POJO support)



download link :
afcs_explorer-0.9.1-0.2-all.jar



just pass (additional) --object flag after/instead of --debug
and service will return java Objects instead or XML Element.

for example:
java -jar afcs_explorer-0.9.1-0.2-all.jar --debug --object
myaccountname devemail@adobe.com mypass --list


Generates instance of Repository.java with Node etc.. full
replica of Repository XML.



Commons Digester is used to parse XML,so its very easy(and
will get easier) to change parsing rules, if AFCS API changes.



so far there is only Two result objects: Repository and
MeetingInfo, MeetingInfo is returned from create operations.



jar can be used to directly run program without extracting ;

it includes source (just unzip with zip extractor program).

and all dependencies: (commons: Digester, beanutils, and
Logger)



P.S: I am almost finished with flex&bazeDS demo to CRUD
on AFCS services,using this lib.