科技行者

行者学院 转型私董会 科技行者专题报道 网红大战科技行者

知识库

知识库 安全导航

至顶网软件频道只需3步把您的Java程序转换为Web服务1

只需3步把您的Java程序转换为Web服务1

  • 扫一扫
    分享文章到微信

  • 扫一扫
    关注官方公众号
    至顶头条

只需3步把您的Java程序转换为Web服务

来源:IT专家网 2008年6月1日

关键字: 服务 转换 程序 java

  • 评论
  • 分享微博
  • 分享邮件

1、选择要转换的Java文件,生成class
2、写wsdd
3、发布

      剩下的就只有调用了wsdl2Java

      我原来的系统是CICS的,对后台封装了一层,现在用webservice再封装一层,前台页面,控制,数据传输,数据处理统统都可以分开了。

      一、Axis安装

      环境 J2SE SDK 1.3 or 1.4: 我使用 1.4.2 Servlet Container: 我使用的Tomcat 5.0

      到 http://ws.apache.org/Axis/网站下载Axis安装包

      解压缩安装包,将Axis_UNZIP_PATH\Axis-version\webapps下的Axis包拷贝到TOMCAT_HOME\webapps\下,以下约定Axis_HOME为该TOMCAT_HOME\webapps\Axis目录

       启动tomcat,访问http://localhost:8080/Axis检查安装是否成功

       以上步骤执行成功,可以开发webservice例子了

       Axis支持三种web service的部署和开发,分别为:

1、Dynamic Invocation Interface ( DII)
2、Stubs方式
3、Dynamic Proxy方式

       二、编写DII(Dynamic Invocation Interface )方式web服务

1.编写服务端程序HelloClient

public class HelloClient
{
    public String getName(String name)
    {
        return "hello "+name;
    }
}

 
2、将源码拷贝到Axis_HOME下,重命名为 HelloClient.jws

3、访问连接http://localhost:8080/Axis/HelloClient.jws wsdl,页面显示Axis自动生成的wsdl

4、编写访问服务的客户端 TestHelloClient.Java

import org.apache.Axis.client.Call;
import org.apache.Axis.client.Service;
import Javax.xml.namespace.QName;
import Javax.xml.rpc.ServiceException;
import Java.net.MalformedURLException;
import Java.rmi.RemoteException;

public class SayHelloClient2
{
    public static void main(String[] args)
        {
        try
                {
  String endpoint =
  "http://localhost:8080
  /Axis/HelloClient.jws";

    Service service = new Service();
            Call call = null;

            call = (Call) service.createCall();

            call.setOperationName
   (new QName(
               "http://localhost:
      8080/Axis/HelloClient.jws",
                           "getName"));
            call.setTargetEndpointAddress
  (new Java.net.URL(endpoint));

 String ret =
 (String) call.invoke(new Object[]
     {"zhangsan"});
  System.out.println
  ("return value is " + ret);
        }
                catch (Exception ex)
                {
       ex.printStackTrace();
        }
    }
}

三、编写Dynamic Proxy方式访问服务

1、编写部署服务端程序,同上边DII方式,本次仍使用上边部署的HelloClient

2、编写代理接口

public interface HelloClientInterface
extends Java.rmi.Remote
{
    public String getName(String name)
        throws Java.rmi.RemoteException;
}
 
3、编写并执行客户端程序TestHelloClient.Java

import Javax.xml.rpc.Service;
import Javax.xml.rpc.ServiceFactory;
import Java.net.URL;
import Javax.xml.namespace.QName;

public class TestHelloClient
{
    public static void main(String[] args)
        {
        try
        {
            String wsdlUrl =
"http://localhost:8080/Axis
/HelloClient.jws?wsdl";
   String nameSpaceUri =
"http://localhost:8080
/Axis/HelloClient.jws";
String serviceName = "HelloClientService";
String portName = "HelloClient";
 ServiceFactory serviceFactory =
   ServiceFactory.newInstance();
            Service afService =
serviceFactory.createService
(new URL(wsdlUrl),
         new QName
   (nameSpaceUri, serviceName));
 HelloClientInterface proxy =
 (HelloClientInterface)
      afService.getPort(new QName(
             nameSpaceUri, portName),
HelloClientInterface.class);
            System.out.println
 ("return value is "+proxy.getName("john") ) ;
        }catch(Exception ex)
        {
            ex.printStackTrace() ;
        }
    }
}
 
     四、编写wsdd发布web服务,编写stub client访问web服务

1、编写服务端程序server,SayHello.Java,编译server.SayHello.Java

package server;
public class SayHello
{
    public String getName(String name)
    {
        return "hello "+name;
    }
}

    • 评论
    • 分享微博
    • 分享邮件
    邮件订阅

    如果您非常迫切的想了解IT领域最新产品与技术信息,那么订阅至顶网技术邮件将是您的最佳途径之一。

    重磅专题
    往期文章
    最新文章