如何安全性启用一、修改eas\Server\eas\server\profiles\server1\config\webservice.propetties文件isRomoteLocate=false二、修改参数后,webservice调用端需要把登录返回的session传过去,java调用示例如下,其它语言调用参考EASLoginProxyproxy=null;WSContextcontext=null;try{//登录proxy=newEASLoginProxyServiceLocator().getEASLogin();context=proxy.login("kdjgf","","eas","zs70sp5","l2",1);//具体业务调用String[][]vouchers=null;WSGLWebServiceFacadeSrvProxyproxyWS=null;proxyWS=newWSGLWebServiceFacadeSrvProxyServiceLocator().getWSGLWebServiceFacade();//设置登录返回的session在soap头((Stub)proxyWS).setHeader("http://login.webservice.bos.kingdee.com","SessionId",context.getSessionId());vouchers=proxyWS.getVoucher("001","2008","5",0,0);}catch(ServiceExceptione){e.printStackTrace();}catch(RemoteExceptione){e.printStackTrace();}