Flamingo 学习笔记

最近学习了Flex,想与之前学的seam做个结合,就发现了Flamingo.。学习资料少之又少,只好去啃英文,做下笔记

1、Flamingo Seam 使用AMF的services-config.xml一般配置

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <services-config>
  3.     <services>
  4.         <service id="hello-service"
  5.             class="flex.messaging.services.RemotingService"
  6.             messageTypes="flex.messaging.messages.RemotingMessage">
  7. <!-- desination是FLex与Seam组件通信的关键,用@Name在组件中标示 -->
  8.             <destination id="person" />
  9.             <destination id="Person" />
  10.             <default-channels>
  11.                 <channel ref="seam-amf" />
  12.             </default-channels>
  13.         </service>
  14.     </services>
  15.         <!-- 通道定义,其中validation为项目名,/seam/resource为seam remoting的默认servlet-mapping uri -->
  16.     <channels>
  17.         <channel-definition id="seam-amf"
  18.             class="mx.messaging.channels.AMFChannel">
  19.             <endpoint
  20.                 uri="http://{server.name}:{server.port}/validation/seam/resource/amf"
  21.                 class="flex.messaging.endpoints.AMFEndpoint" />
  22.         </channel-definition>
  23.     </channels>
  24. </services-config>
2、Flex Builder中编译器的配置
    在Flex项目的选项中必须对Flex Compiler中加上参数 -services "services-config.xml"

3、SWF文件的位置
    编译后的swf文件必须放到应用服务器上的应用文件夹中,不然无法访问Seam组件,应该是安全机制的跨域保护问题吧。    

你可能感兴趣的:(应用服务器,xml,servlet,Flex,seam)