5 posts tagged “fds”
LiveCycleDataService Beta版がAdobe Labsに公開されました。
LiveCycleDataServiceとはFlexDataServiceの拡張版で、ドキュメント管理やプロセス管理のための
LiveCycle 製品群との連携機能を強化したものです。
FDSの本来のFlex、Ajaxなどへのデータサービス提供という本来の位置づけは変わっていないようです。
詳しくはこちら
追加された機能
・Flex SDK
・サーバーサイドPDF生成
・DataServiceのランタイム変更
・WSRPポータルサポート
・QoSサポート
・AjaxDataService
・Flex-Ajax Bridge
・オフラインメッセージキュー for Apollo
・ローカルデータキャッシュ for Apollo
・RTMPトンネリング
・SQLアダプタ
・新しいJSPタグライブラリ
・DataServiceのパフォーマンスを拡張性の向上
参考URL
http://technoracle.blogspot.com/2007/03/adobe-soa-platform-launches-data.html
FDS+TomcatによるRemotingを行う場合、FDSインストールフォルダにあるflex.warをTomcatにデプロイすることで
テンプレートとなるXMLファイルを手に入れることが出来る。
解凍され出来たフォルダの中にあるWEB-INF/flex/remoting-config.xmlがそのRemoteObjectの登録ファイルとなる。
以下、JavaObjectをRemoteとして登録する場合の設定ファイル
<?xml version="1.0" encoding="UTF-8"?>
<service id="remoting-service"
class="flex.messaging.services.RemotingService"
messageTypes="flex.messaging.messages.RemotingMessage">
<adapters>
<adapter-definition id="java-object" class="flex.messaging.services.remoting.adapters.JavaAdapter" default="true"/>
</adapters>
<default-channels>
<channel ref="my-amf"/>
</default-channels>
<!-- Remoteとして登録するための記述 -->
<destination id="remoteTest">
<properties>
<source>jp.nav.remote.RemoteTest</source>
<scope>request</scope>
</properties>
<adapter ref="java-object" />
</destination>
</service>
登録するRemoteJavaClassが複数ある場合は、destinationタグを記述し、ソースパスからのクラス指定。
Adobe.com でFlexBuilder2.0.1英語版がダウンロードできます。
FDSも2.0.1ですね。
変更点は...
・バグフィックス
・mx.modules パッケージの追加
・ランタイム CSS サポート
・ASDocのSDK標準装備
などなど
2.0.1にあわせて、そろそろApolloもお目見え?かな。