Csdn论坛没有高手!
如此冷清!
正的有些言过其实!!!!
只不过如此!!

解决方案 »

  1.   

    http://blog.csdn.net/vcvj/archive/2004/09/15/105217.aspxDelphi IDE->Import Webservices from URL
      

  2.   

    http://blog.csdn.net/vcvj/archive/2004/09/15/105217.aspxas a interface in your webservices, it's invoked by anyone, it also can use EJB or invoke any EJBs in your interface of webservices, for out of programme such Delphi,VB and so on, you can find the function in the IDE like:Delphi IDE->Import Webservices from URL
    JBuilder IDE->Import Webservices from URL
    (You should point the wsdl address, just like the xxxxWebservicesInterface?wsdl)it will build some class for your programm, good luck.
      

  3.   

    给个参考:
    http://e-docs.bea.com/wls/docs81/webserv/example.html#1056595
      

  4.   

    在J2EE应用服务器上Web Services实现则有两类方法:一是通过Apache Axis、Emerging Technologies Toolkit (ETTK)等相应的工具将EJB部署为Web Services;二是以Servlet为中介,将Servlet部署为Web Services端点,然后由Servlet调用EJB中的业务方法。前一种方法优点在于简单方便,但是只能将无状态会话Bean部署为Web Services。后一种方法虽然略微复杂,但是具有很好的扩展性,可以在Servlet处理请求中附加一系列的过滤器实现更复杂的处理,如加密、解密、格式转换、日志等,这种以Servlet作为服务入口点的实现方式由于可以将EJB的访问逻辑放在EJB容器这外,可以将Web Services部署到任何支持Servlet的Web服务器上,具有较强的部署灵活性。
      

  5.   

    weblogic web service 基本是用ant 组装的,一般写好一个ejb就可以,当然接受的business object是个麻烦,有可能ant自动编译不了,那就只能自己写了。
    可以参考bea 的document.