0

我真的不知道还能尝试什么,任何帮助将不胜感激。谢谢

1)我正在使用weblogic 10,flashbuilder4 eclipse插件,一切都在windows xp上运行。

2)我在 weblogic 10 上部署了 blazeds tomcat 示例,并且能够成功地将其远程服务绑定到 fb4 中的新项目 DataGrid,一切正常。

3) 然后我修改了示例以使用我自己的 java 类。在 fb4 中数据提供程序绑定的最后一步,当我选择目标并单击完成按钮时,它会显示:

“com.hello.test.ProductSearch 在指定位置不可用。请尝试通过取消选择destniation productsearch 来导入”

我验证了类文件已正确部署在 weblogic 上,并且http://localhost:7001/hello/messagebroker/amf 没有显示错误。

此外,当我将相同的文件位置部署到 tomcat 时,它工作正常。总结一下:1)BlazeDS 示例在 weblogic10 和 tomcat 中都可以正常工作 2)我的 com.hello.test.ProductSearch 在 tomcat 中可以正常工作,但在 weblogic10 中会出现上述错误。

所以看起来问题出在 weblogic 10 部署上,我只是使用默认的标准 weblogic10 部署。不知道是什么问题,搞了好几天了。

------------------------------

远程配置.xml

<adapters>
    <adapter-definition id="java-object" class="flex.messaging.services.remoting.adapters.JavaAdapter" default="true"/>
</adapters>



<default-channels>
    <channel ref="my-amf"/>
</default-channels>



<destination id="productsearch">
    <properties>
        <source>com.hello.test.ProductSearch</source>
    </properties>
</destination>


服务-config.xml

<services>
    <service-include file-path="remoting-config.xml" />

    <default-channels>

       <channel ref="my-amf"/>

    </default-channels>

</services>





<channels>



    <channel-definition id="my-amf" class="mx.messaging.channels.AMFChannel">

        <endpoint url="http://{server.name}:{server.port}/{context.root}/messagebroker/amf" class="flex.messaging.endpoints.AMFEndpoint"/>

        <properties>
            <polling-enabled>false</polling-enabled>
        </properties>
    </channel-definition>

</channels>



<logging>
    <!-- You may also use flex.messaging.log.ServletLogTarget -->
    <target class="flex.messaging.log.ConsoleTarget" level="Error">
        <properties>
            <prefix>[BlazeDS] </prefix>
            <includeDate>false</includeDate>
            <includeTime>false</includeTime>
            <includeLevel>true</includeLevel>
            <includeCategory>false</includeCategory>
        </properties>
        <filters>
            <pattern>Endpoint.*</pattern>
            <pattern>Service.*</pattern>
            <pattern>Configuration</pattern>
        </filters>
    </target>
</logging>



<system>
    <redeploy>
        <enabled>true</enabled>
        <watch-interval>20</watch-interval>
        <watch-file>{context.root}/WEB-INF/flex/services-config.xml</watch-fi le>
        <watch-file>{context.root}/WEB-INF/flex/remoting-config.xml</watch-fi le>
        <touch-file>{context.root}/WEB-INF/web.xml</touch-file>
    </redeploy>
</system>


ProductSearch.java

package com.hello.test;
import java.util.ArrayList;
import java.util.List;



public class ProductSearch
{
     public AttributeVO[] search()
     {
         List<AttributeVO> retList = new ArrayList<AttributeVO>();

         retList.add(new AttributeVO("one","two", "three","four"));
         retList.add(new AttributeVO("five","six", "seven","eight"));

        return retList.toArray(new AttributeVO[retList.size()]);



     }
}

属性VO.java

package com.hello.test;



import java.io.Serializable;



public class AttributeVO implements Serializable
{



    static final long serialVersionUID = 1L;



    private String val1;
    private String val2;
    private String val3;
    private String val4;

    public AttributeVO()
    {}

    etc... all get getter/setters

}
4

1 回答 1

0

解决了。我使用jdk 1.6编译了服务器端java,显然最新版本的blazeDS与1.6不兼容(当然它不只是告诉你,那太容易了)。

一旦我使用 jdk 1.5 重新编译,一切正常。

说说挫折。。

于 2011-01-31T16:50:25.660 回答