public static void main(String[] args)
{
HelloService service = new HelloServiceLocator();
Hello client = null;
try
{
client = service.getHello();
}
catch (ServiceException e)
{
e.printStackTrace();
}
try
{
System.out.println(client.hello("dd"));
}
catch (RemoteException e)
{
e.printStackTrace();
}
}
开发Soap客户端
最新推荐文章于 2024-09-24 07:48:33 发布
1809

被折叠的 条评论
为什么被折叠?



