Java调用Webservice时如果网络中断,如何获取Exception
publicstaticvoidmain(String[]args)throwsException{try{Stringtarget=;MI_NONKA_SOAP_OUT...
public static void main(String[] args) throws Exception {
try{String target = ;
MI_NONKA_SOAP_OUT_AsynServiceLocator servicelocator=new MI_NONKA_SOAP_OUT_AsynServiceLocator();
MI_NONKA_SOAP_OUT_AsynBindingStub teststub=new MI_NONKA_SOAP_OUT_AsynBindingStub(new URL(target),servicelocator);
ZSD_SOCREATE_PI_INPUTParameter callso=new ZSD_SOCREATE_PI_INPUTParameter();
callso.setITEM(itemso);
ZSD_SOCREATE_PI_INPUTParameter []ABPP_NONKA_CALL_SO= new ZSD_SOCREATE_PI_INPUTParameter[2];
ABPP_NONKA_CALL_SO[0]=callso;
teststub.ABPP_NONKA_CALL_SO_Request(ABPP_NONKA_CALL_SO);
System.out.println("123123!");
}
catch(RemoteException conExp){
conExp.printStackTrace();
System.out.println("出异常了!");
} 展开
try{String target = ;
MI_NONKA_SOAP_OUT_AsynServiceLocator servicelocator=new MI_NONKA_SOAP_OUT_AsynServiceLocator();
MI_NONKA_SOAP_OUT_AsynBindingStub teststub=new MI_NONKA_SOAP_OUT_AsynBindingStub(new URL(target),servicelocator);
ZSD_SOCREATE_PI_INPUTParameter callso=new ZSD_SOCREATE_PI_INPUTParameter();
callso.setITEM(itemso);
ZSD_SOCREATE_PI_INPUTParameter []ABPP_NONKA_CALL_SO= new ZSD_SOCREATE_PI_INPUTParameter[2];
ABPP_NONKA_CALL_SO[0]=callso;
teststub.ABPP_NONKA_CALL_SO_Request(ABPP_NONKA_CALL_SO);
System.out.println("123123!");
}
catch(RemoteException conExp){
conExp.printStackTrace();
System.out.println("出异常了!");
} 展开
3个回答
展开全部
用try catch就可以,也可以直接用throw new +异常名字。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
如果网络中断,webservice抛出的是RemoteException,catch住即可。
try{
}catch(RemoteException conExp){
}
try{
}catch(RemoteException conExp){
}
更多追问追答
追问
try{ }
catch(RemoteException conExp){
conExp.printStackTrace();
System.out.println("出异常了!");
这样catch不到任何东西,是不是try里面还要有别的什么内容?
追答
try {}里面放你调用的websercie刘成啊。。
我是给你个思路而已,
try{
WebService svc = xxxx
svc.invoke()....;
}catch(RemoteException exp){
System.out.println("远程链接/调用失败");
}
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
呵呵……………………
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询