Axis2引用发布服务

wsdl生成客户端

Wsdl2java –uri http://localhost:8080/axis2/services/SimpleServer?wsdl –o d:" -d jaxbri

将生成的java文件拷贝到工程的src文件夹下

public   class  WsTest {

    
/**
     * 
@param  args
     * 
@throws  RemoteException 
     
*/
    
public   static   void  main(String[] args)  throws  RemoteException {
        
//  TODO Auto-generated method stub
        SimpleServerStub ssstub  =   new  SimpleServerStub();
        SimpleMethod sm 
=   new  SimpleMethod();
        sm.setName(
" xujun " );
        SimpleMethodResponse response 
=  ssstub.simpleMethod(sm);
        String result 
=  response.get_return();
        System.out.println(result);
    }

}

你可能感兴趣的:(Axis2引用发布服务)